Fix completion when selecting more than one tag
[org-mode/org-tableheadings.git] / lisp / org.el
blobd0aec2795d6f70be266a171901388bbd075cf163
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.
853 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
854 start selecting a region, or enlarge regions started in this way.
855 In Org-mode, in special contexts, these same keys are used for
856 other purposes, important enough to compete with shift selection.
857 Org tries to balance these needs by supporting `shift-select-mode'
858 outside these special contexts, under control of this variable.
860 The default of this variable is nil, to avoid confusing behavior. Shifted
861 cursor keys will then execute Org commands in the following contexts:
862 - on a headline, changing TODO state (left/right) and priority (up/down)
863 - on a time stamp, changing the time
864 - in a plain list item, changing the bullet type
865 - in a property definition line, switching between allowed values
866 - in the BEGIN line of a clock table (changing the time block).
867 Outside these contexts, the commands will throw an error.
869 When this variable is t and the cursor is not in a special
870 context, Org-mode will support shift-selection for making and
871 enlarging regions. To make this more effective, the bullet
872 cycling will no longer happen anywhere in an item line, but only
873 if the cursor is exactly on the bullet.
875 If you set this variable to the symbol `always', then the keys
876 will not be special in headlines, property lines, and item lines,
877 to make shift selection work there as well. If this is what you
878 want, you can use the following alternative commands: `C-c C-t'
879 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
880 can be used to switch TODO sets, `C-c -' to cycle item bullet
881 types, and properties can be edited by hand or in column view.
883 However, when the cursor is on a timestamp, shift-cursor commands
884 will still edit the time stamp - this is just too good to give up.
886 XEmacs user should have this variable set to nil, because
887 `shift-select-mode' is in Emacs 23 or later only."
888 :group 'org
889 :type '(choice
890 (const :tag "Never" nil)
891 (const :tag "When outside special context" t)
892 (const :tag "Everywhere except timestamps" always)))
894 (defcustom org-loop-over-headlines-in-active-region nil
895 "Shall some commands act upon headlines in the active region?
897 When set to t, some commands will be performed in all headlines
898 within the active region.
900 When set to `start-level', some commands will be performed in all
901 headlines within the active region, provided that these headlines
902 are of the same level than the first one.
904 When set to a string, those commands will be performed on the
905 matching headlines within the active region. Such string must be
906 a tags/property/todo match as it is used in the agenda tags view.
908 The list of commands is: `org-schedule', `org-deadline',
909 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
910 `org-archive-to-archive-sibling'. The archiving commands skip
911 already archived entries."
912 :type '(choice (const :tag "Don't loop" nil)
913 (const :tag "All headlines in active region" t)
914 (const :tag "In active region, headlines at the same level than the first one" start-level)
915 (string :tag "Tags/Property/Todo matcher"))
916 :version "24.1"
917 :group 'org-todo
918 :group 'org-archive)
920 (defgroup org-startup nil
921 "Options concerning startup of Org-mode."
922 :tag "Org Startup"
923 :group 'org)
925 (defcustom org-startup-folded t
926 "Non-nil means entering Org-mode will switch to OVERVIEW.
927 This can also be configured on a per-file basis by adding one of
928 the following lines anywhere in the buffer:
930 #+STARTUP: fold (or `overview', this is equivalent)
931 #+STARTUP: nofold (or `showall', this is equivalent)
932 #+STARTUP: content
933 #+STARTUP: showeverything
935 By default, this option is ignored when Org opens agenda files
936 for the first time. If you want the agenda to honor the startup
937 option, set `org-agenda-inhibit-startup' to nil."
938 :group 'org-startup
939 :type '(choice
940 (const :tag "nofold: show all" nil)
941 (const :tag "fold: overview" t)
942 (const :tag "content: all headlines" content)
943 (const :tag "show everything, even drawers" showeverything)))
945 (defcustom org-startup-truncated t
946 "Non-nil means entering Org-mode will set `truncate-lines'.
947 This is useful since some lines containing links can be very long and
948 uninteresting. Also tables look terrible when wrapped."
949 :group 'org-startup
950 :type 'boolean)
952 (defcustom org-startup-indented nil
953 "Non-nil means turn on `org-indent-mode' on startup.
954 This can also be configured on a per-file basis by adding one of
955 the following lines anywhere in the buffer:
957 #+STARTUP: indent
958 #+STARTUP: noindent"
959 :group 'org-structure
960 :type '(choice
961 (const :tag "Not" nil)
962 (const :tag "Globally (slow on startup in large files)" t)))
964 (defcustom org-use-sub-superscripts t
965 "Non-nil means interpret \"_\" and \"^\" for display.
967 If you want to control how Org exports those characters, see
968 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
969 used to be an alias for `org-export-with-sub-superscripts' in
970 Org <8.0, it is not anymore.
972 When this option is turned on, you can use TeX-like syntax for
973 sub- and superscripts within the buffer. Several characters after
974 \"_\" or \"^\" will be considered as a single item - so grouping
975 with {} is normally not needed. For example, the following things
976 will be parsed as single sub- or superscripts:
978 10^24 or 10^tau several digits will be considered 1 item.
979 10^-12 or 10^-tau a leading sign with digits or a word
980 x^2-y^3 will be read as x^2 - y^3, because items are
981 terminated by almost any nonword/nondigit char.
982 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
984 Still, ambiguity is possible. So when in doubt, use {} to enclose
985 the sub/superscript. If you set this variable to the symbol `{}',
986 the braces are *required* in order to trigger interpretations as
987 sub/superscript. This can be helpful in documents that need \"_\"
988 frequently in plain text."
989 :group 'org-startup
990 :version "24.4"
991 :package-version '(Org . "8.0")
992 :type '(choice
993 (const :tag "Always interpret" t)
994 (const :tag "Only with braces" {})
995 (const :tag "Never interpret" nil)))
997 (defcustom org-startup-with-beamer-mode nil
998 "Non-nil means turn on `org-beamer-mode' on startup.
999 This can also be configured on a per-file basis by adding one of
1000 the following lines anywhere in the buffer:
1002 #+STARTUP: beamer"
1003 :group 'org-startup
1004 :version "24.1"
1005 :type 'boolean)
1007 (defcustom org-startup-align-all-tables nil
1008 "Non-nil means align all tables when visiting a file.
1009 This is useful when the column width in tables is forced with <N> cookies
1010 in table fields. Such tables will look correct only after the first re-align.
1011 This can also be configured on a per-file basis by adding one of
1012 the following lines anywhere in the buffer:
1013 #+STARTUP: align
1014 #+STARTUP: noalign"
1015 :group 'org-startup
1016 :type 'boolean)
1018 (defcustom org-startup-with-inline-images nil
1019 "Non-nil means show inline images when loading a new Org file.
1020 This can also be configured on a per-file basis by adding one of
1021 the following lines anywhere in the buffer:
1022 #+STARTUP: inlineimages
1023 #+STARTUP: noinlineimages"
1024 :group 'org-startup
1025 :version "24.1"
1026 :type 'boolean)
1028 (defcustom org-startup-with-latex-preview nil
1029 "Non-nil means preview LaTeX fragments when loading a new Org file.
1031 This can also be configured on a per-file basis by adding one of
1032 the following lines anywhere in the buffer:
1033 #+STARTUP: latexpreview
1034 #+STARTUP: nolatexpreview"
1035 :group 'org-startup
1036 :version "24.4"
1037 :package-version '(Org . "8.0")
1038 :type 'boolean)
1040 (defcustom org-insert-mode-line-in-empty-file nil
1041 "Non-nil means insert the first line setting Org-mode in empty files.
1042 When the function `org-mode' is called interactively in an empty file, this
1043 normally means that the file name does not automatically trigger Org-mode.
1044 To ensure that the file will always be in Org-mode in the future, a
1045 line enforcing Org-mode will be inserted into the buffer, if this option
1046 has been set."
1047 :group 'org-startup
1048 :type 'boolean)
1050 (defcustom org-replace-disputed-keys nil
1051 "Non-nil means use alternative key bindings for some keys.
1052 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1053 These keys are also used by other packages like shift-selection-mode'
1054 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1055 If you want to use Org-mode together with one of these other modes,
1056 or more generally if you would like to move some Org-mode commands to
1057 other keys, set this variable and configure the keys with the variable
1058 `org-disputed-keys'.
1060 This option is only relevant at load-time of Org-mode, and must be set
1061 *before* org.el is loaded. Changing it requires a restart of Emacs to
1062 become effective."
1063 :group 'org-startup
1064 :type 'boolean)
1066 (defcustom org-use-extra-keys nil
1067 "Non-nil means use extra key sequence definitions for certain commands.
1068 This happens automatically if you run XEmacs or if `window-system'
1069 is nil. This variable lets you do the same manually. You must
1070 set it before loading org.
1072 Example: on Carbon Emacs 22 running graphically, with an external
1073 keyboard on a Powerbook, the default way of setting M-left might
1074 not work for either Alt or ESC. Setting this variable will make
1075 it work for ESC."
1076 :group 'org-startup
1077 :type 'boolean)
1079 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1081 (defcustom org-disputed-keys
1082 '(([(shift up)] . [(meta p)])
1083 ([(shift down)] . [(meta n)])
1084 ([(shift left)] . [(meta -)])
1085 ([(shift right)] . [(meta +)])
1086 ([(control shift right)] . [(meta shift +)])
1087 ([(control shift left)] . [(meta shift -)]))
1088 "Keys for which Org-mode and other modes compete.
1089 This is an alist, cars are the default keys, second element specifies
1090 the alternative to use when `org-replace-disputed-keys' is t.
1092 Keys can be specified in any syntax supported by `define-key'.
1093 The value of this option takes effect only at Org-mode's startup,
1094 therefore you'll have to restart Emacs to apply it after changing."
1095 :group 'org-startup
1096 :type 'alist)
1098 (defun org-key (key)
1099 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1100 Or return the original if not disputed.
1101 Also apply the translations defined in `org-xemacs-key-equivalents'."
1102 (when org-replace-disputed-keys
1103 (let* ((nkey (key-description key))
1104 (x (org-find-if (lambda (x)
1105 (equal (key-description (car x)) nkey))
1106 org-disputed-keys)))
1107 (setq key (if x (cdr x) key))))
1108 (when (featurep 'xemacs)
1109 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1110 key)
1112 (defun org-find-if (predicate seq)
1113 (catch 'exit
1114 (while seq
1115 (if (funcall predicate (car seq))
1116 (throw 'exit (car seq))
1117 (pop seq)))))
1119 (defun org-defkey (keymap key def)
1120 "Define a key, possibly translated, as returned by `org-key'."
1121 (define-key keymap (org-key key) def))
1123 (defcustom org-ellipsis nil
1124 "The ellipsis to use in the Org-mode outline.
1125 When nil, just use the standard three dots.
1126 When a string, use that string instead.
1127 When a face, use the standard 3 dots, but with the specified face.
1128 The change affects only Org-mode (which will then use its own display table).
1129 Changing this requires executing \\[org-mode] in a buffer to become
1130 effective."
1131 :group 'org-startup
1132 :type '(choice (const :tag "Default" nil)
1133 (face :tag "Face" :value org-warning)
1134 (string :tag "String" :value "...#")))
1136 (defvar org-display-table nil
1137 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1139 (defgroup org-keywords nil
1140 "Keywords in Org-mode."
1141 :tag "Org Keywords"
1142 :group 'org)
1144 (defcustom org-closed-keep-when-no-todo nil
1145 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1146 :group 'org-todo
1147 :group 'org-keywords
1148 :version "24.4"
1149 :package-version '(Org . "8.0")
1150 :type 'boolean)
1152 (defgroup org-structure nil
1153 "Options concerning the general structure of Org-mode files."
1154 :tag "Org Structure"
1155 :group 'org)
1157 (defgroup org-reveal-location nil
1158 "Options about how to make context of a location visible."
1159 :tag "Org Reveal Location"
1160 :group 'org-structure)
1162 (defcustom org-show-context-detail '((isearch . lineage)
1163 (bookmark-jump . lineage)
1164 (default . ancestors))
1165 "Alist between context and visibility span when revealing a location.
1167 \\<org-mode-map>Some actions may move point into invisible
1168 locations. As a consequence, Org always expose a neighborhood
1169 around point. How much is shown depends on the initial action,
1170 or context. Valid contexts are
1172 agenda when exposing an entry from the agenda
1173 org-goto when using the command `org-goto' (\\[org-goto])
1174 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1175 tags-tree when constructing a sparse tree based on tags matches
1176 link-search when exposing search matches associated with a link
1177 mark-goto when exposing the jump goal of a mark
1178 bookmark-jump when exposing a bookmark location
1179 isearch when exiting from an incremental search
1180 default default for all contexts not set explicitly
1182 Allowed visibility spans are
1184 minimal show current headline; if point is not on headline,
1185 also show entry
1187 local show current headline, entry and next headline
1189 ancestors show current headline and its direct ancestors; if
1190 point is not on headline, also show entry
1192 lineage show current headline, its direct ancestors and all
1193 their children; if point is not on headline, also show
1194 entry and first child
1196 tree show current headline, its direct ancestors and all
1197 their children; if point is not on headline, also show
1198 entry and all children
1200 canonical show current headline, its direct ancestors along with
1201 their entries and children; if point is not located on
1202 the headline, also show current entry and all children
1204 As special cases, a nil or t value means show all contexts in
1205 `minimal' or `canonical' view, respectively.
1207 Some views can make displayed information very compact, but also
1208 make it harder to edit the location of the match. In such
1209 a case, use the command `org-reveal' (\\[org-reveal]) to show
1210 more context."
1211 :group 'org-reveal-location
1212 :version "25.1"
1213 :package-version '(Org . "8.3")
1214 :type '(choice
1215 (const :tag "Canonical" t)
1216 (const :tag "Minimal" nil)
1217 (repeat :greedy t :tag "Individual contexts"
1218 (cons
1219 (choice :tag "Context"
1220 (const agenda)
1221 (const org-goto)
1222 (const occur-tree)
1223 (const tags-tree)
1224 (const link-search)
1225 (const mark-goto)
1226 (const bookmark-jump)
1227 (const isearch)
1228 (const default))
1229 (choice :tag "Detail level"
1230 (const minimal)
1231 (const local)
1232 (const ancestors)
1233 (const lineage)
1234 (const tree)
1235 (const canonical))))))
1237 (defcustom org-indirect-buffer-display 'other-window
1238 "How should indirect tree buffers be displayed?
1239 This applies to indirect buffers created with the commands
1240 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1241 Valid values are:
1242 current-window Display in the current window
1243 other-window Just display in another window.
1244 dedicated-frame Create one new frame, and re-use it each time.
1245 new-frame Make a new frame each time. Note that in this case
1246 previously-made indirect buffers are kept, and you need to
1247 kill these buffers yourself."
1248 :group 'org-structure
1249 :group 'org-agenda-windows
1250 :type '(choice
1251 (const :tag "In current window" current-window)
1252 (const :tag "In current frame, other window" other-window)
1253 (const :tag "Each time a new frame" new-frame)
1254 (const :tag "One dedicated frame" dedicated-frame)))
1256 (defcustom org-use-speed-commands nil
1257 "Non-nil means activate single letter commands at beginning of a headline.
1258 This may also be a function to test for appropriate locations where speed
1259 commands should be active.
1261 For example, to activate speed commands when the point is on any
1262 star at the beginning of the headline, you can do this:
1264 (setq org-use-speed-commands
1265 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1266 :group 'org-structure
1267 :type '(choice
1268 (const :tag "Never" nil)
1269 (const :tag "At beginning of headline stars" t)
1270 (function)))
1272 (defcustom org-speed-commands-user nil
1273 "Alist of additional speed commands.
1274 This list will be checked before `org-speed-commands-default'
1275 when the variable `org-use-speed-commands' is non-nil
1276 and when the cursor is at the beginning of a headline.
1277 The car if each entry is a string with a single letter, which must
1278 be assigned to `self-insert-command' in the global map.
1279 The cdr is either a command to be called interactively, a function
1280 to be called, or a form to be evaluated.
1281 An entry that is just a list with a single string will be interpreted
1282 as a descriptive headline that will be added when listing the speed
1283 commands in the Help buffer using the `?' speed command."
1284 :group 'org-structure
1285 :type '(repeat :value ("k" . ignore)
1286 (choice :value ("k" . ignore)
1287 (list :tag "Descriptive Headline" (string :tag "Headline"))
1288 (cons :tag "Letter and Command"
1289 (string :tag "Command letter")
1290 (choice
1291 (function)
1292 (sexp))))))
1294 (defcustom org-bookmark-names-plist
1295 '(:last-capture "org-capture-last-stored"
1296 :last-refile "org-refile-last-stored"
1297 :last-capture-marker "org-capture-last-stored-marker")
1298 "Names for bookmarks automatically set by some Org commands.
1299 This can provide strings as names for a number of bookmarks Org sets
1300 automatically. The following keys are currently implemented:
1301 :last-capture
1302 :last-capture-marker
1303 :last-refile
1304 When a key does not show up in the property list, the corresponding bookmark
1305 is not set."
1306 :group 'org-structure
1307 :type 'plist)
1309 (defgroup org-cycle nil
1310 "Options concerning visibility cycling in Org-mode."
1311 :tag "Org Cycle"
1312 :group 'org-structure)
1314 (defcustom org-cycle-skip-children-state-if-no-children t
1315 "Non-nil means skip CHILDREN state in entries that don't have any."
1316 :group 'org-cycle
1317 :type 'boolean)
1319 (defcustom org-cycle-max-level nil
1320 "Maximum level which should still be subject to visibility cycling.
1321 Levels higher than this will, for cycling, be treated as text, not a headline.
1322 When `org-odd-levels-only' is set, a value of N in this variable actually
1323 means 2N-1 stars as the limiting headline.
1324 When nil, cycle all levels.
1325 Note that the limiting level of cycling is also influenced by
1326 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1327 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1328 than its value."
1329 :group 'org-cycle
1330 :type '(choice
1331 (const :tag "No limit" nil)
1332 (integer :tag "Maximum level")))
1334 (defcustom org-hide-block-startup nil
1335 "Non-nil means entering Org-mode will fold all blocks.
1336 This can also be set in on a per-file basis with
1338 #+STARTUP: hideblocks
1339 #+STARTUP: showblocks"
1340 :group 'org-startup
1341 :group 'org-cycle
1342 :type 'boolean)
1344 (defcustom org-cycle-global-at-bob nil
1345 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1346 This makes it possible to do global cycling without having to use S-TAB or
1347 \\[universal-argument] TAB. For this special case to work, the first line
1348 of the buffer must not be a headline -- it may be empty or some other text.
1349 When used in this way, `org-cycle-hook' is disabled temporarily to make
1350 sure the cursor stays at the beginning of the buffer. When this option is
1351 nil, don't do anything special at the beginning of the buffer."
1352 :group 'org-cycle
1353 :type 'boolean)
1355 (defcustom org-cycle-level-after-item/entry-creation t
1356 "Non-nil means cycle entry level or item indentation in new empty entries.
1358 When the cursor is at the end of an empty headline, i.e., with only stars
1359 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1360 and then all possible ancestor states, before returning to the original state.
1361 This makes data entry extremely fast: M-RET to create a new headline,
1362 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1364 When the cursor is at the end of an empty plain list item, one TAB will
1365 make it a subitem, two or more tabs will back up to make this an item
1366 higher up in the item hierarchy."
1367 :group 'org-cycle
1368 :type 'boolean)
1370 (defcustom org-cycle-emulate-tab t
1371 "Where should `org-cycle' emulate TAB.
1372 nil Never
1373 white Only in completely white lines
1374 whitestart Only at the beginning of lines, before the first non-white char
1375 t Everywhere except in headlines
1376 exc-hl-bol Everywhere except at the start of a headline
1377 If TAB is used in a place where it does not emulate TAB, the current subtree
1378 visibility is cycled."
1379 :group 'org-cycle
1380 :type '(choice (const :tag "Never" nil)
1381 (const :tag "Only in completely white lines" white)
1382 (const :tag "Before first char in a line" whitestart)
1383 (const :tag "Everywhere except in headlines" t)
1384 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1386 (defcustom org-cycle-separator-lines 2
1387 "Number of empty lines needed to keep an empty line between collapsed trees.
1388 If you leave an empty line between the end of a subtree and the following
1389 headline, this empty line is hidden when the subtree is folded.
1390 Org-mode will leave (exactly) one empty line visible if the number of
1391 empty lines is equal or larger to the number given in this variable.
1392 So the default 2 means at least 2 empty lines after the end of a subtree
1393 are needed to produce free space between a collapsed subtree and the
1394 following headline.
1396 If the number is negative, and the number of empty lines is at least -N,
1397 all empty lines are shown.
1399 Special case: when 0, never leave empty lines in collapsed view."
1400 :group 'org-cycle
1401 :type 'integer)
1402 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1404 (defcustom org-pre-cycle-hook nil
1405 "Hook that is run before visibility cycling is happening.
1406 The function(s) in this hook must accept a single argument which indicates
1407 the new state that will be set right after running this hook. The
1408 argument is a symbol. Before a global state change, it can have the values
1409 `overview', `content', or `all'. Before a local state change, it can have
1410 the values `folded', `children', or `subtree'."
1411 :group 'org-cycle
1412 :type 'hook)
1414 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1415 org-cycle-hide-drawers
1416 org-cycle-show-empty-lines
1417 org-optimize-window-after-visibility-change)
1418 "Hook that is run after `org-cycle' has changed the buffer visibility.
1419 The function(s) in this hook must accept a single argument which indicates
1420 the new state that was set by the most recent `org-cycle' command. The
1421 argument is a symbol. After a global state change, it can have the values
1422 `overview', `contents', or `all'. After a local state change, it can have
1423 the values `folded', `children', or `subtree'."
1424 :group 'org-cycle
1425 :type 'hook
1426 :version "25.1"
1427 :package-version '(Org . "8.3"))
1429 (defgroup org-edit-structure nil
1430 "Options concerning structure editing in Org-mode."
1431 :tag "Org Edit Structure"
1432 :group 'org-structure)
1434 (defcustom org-odd-levels-only nil
1435 "Non-nil means skip even levels and only use odd levels for the outline.
1436 This has the effect that two stars are being added/taken away in
1437 promotion/demotion commands. It also influences how levels are
1438 handled by the exporters.
1439 Changing it requires restart of `font-lock-mode' to become effective
1440 for fontification also in regions already fontified.
1441 You may also set this on a per-file basis by adding one of the following
1442 lines to the buffer:
1444 #+STARTUP: odd
1445 #+STARTUP: oddeven"
1446 :group 'org-edit-structure
1447 :group 'org-appearance
1448 :type 'boolean)
1450 (defcustom org-adapt-indentation t
1451 "Non-nil means adapt indentation to outline node level.
1453 When this variable is set, Org assumes that you write outlines by
1454 indenting text in each node to align with the headline (after the
1455 stars). The following issues are influenced by this variable:
1457 - The indentation is increased by one space in a demotion
1458 command, and decreased by one in a promotion command. However,
1459 in the latter case, if shifting some line in the entry body
1460 would alter document structure (e.g., insert a new headline),
1461 indentation is not changed at all.
1463 - Property drawers and planning information is inserted indented
1464 when this variable is set. When nil, they will not be indented.
1466 - TAB indents a line relative to current level. The lines below
1467 a headline will be indented when this variable is set.
1469 Note that this is all about true indentation, by adding and
1470 removing space characters. See also `org-indent.el' which does
1471 level-dependent indentation in a virtual way, i.e. at display
1472 time in Emacs."
1473 :group 'org-edit-structure
1474 :type 'boolean)
1476 (defcustom org-special-ctrl-a/e nil
1477 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1479 When t, `C-a' will bring back the cursor to the beginning of the
1480 headline text, i.e. after the stars and after a possible TODO
1481 keyword. In an item, this will be the position after bullet and
1482 check-box, if any. When the cursor is already at that position,
1483 another `C-a' will bring it to the beginning of the line.
1485 `C-e' will jump to the end of the headline, ignoring the presence
1486 of tags in the headline. A second `C-e' will then jump to the
1487 true end of the line, after any tags. This also means that, when
1488 this variable is non-nil, `C-e' also will never jump beyond the
1489 end of the heading of a folded section, i.e. not after the
1490 ellipses.
1492 When set to the symbol `reversed', the first `C-a' or `C-e' works
1493 normally, going to the true line boundary first. Only a directly
1494 following, identical keypress will bring the cursor to the
1495 special positions.
1497 This may also be a cons cell where the behavior for `C-a' and
1498 `C-e' is set separately."
1499 :group 'org-edit-structure
1500 :type '(choice
1501 (const :tag "off" nil)
1502 (const :tag "on: after stars/bullet and before tags first" t)
1503 (const :tag "reversed: true line boundary first" reversed)
1504 (cons :tag "Set C-a and C-e separately"
1505 (choice :tag "Special C-a"
1506 (const :tag "off" nil)
1507 (const :tag "on: after stars/bullet first" t)
1508 (const :tag "reversed: before stars/bullet first" reversed))
1509 (choice :tag "Special C-e"
1510 (const :tag "off" nil)
1511 (const :tag "on: before tags first" t)
1512 (const :tag "reversed: after tags first" reversed)))))
1513 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1515 (defcustom org-special-ctrl-k nil
1516 "Non-nil means `C-k' will behave specially in headlines.
1517 When nil, `C-k' will call the default `kill-line' command.
1518 When t, the following will happen while the cursor is in the headline:
1520 - When the cursor is at the beginning of a headline, kill the entire
1521 line and possible the folded subtree below the line.
1522 - When in the middle of the headline text, kill the headline up to the tags.
1523 - When after the headline text, kill the tags."
1524 :group 'org-edit-structure
1525 :type 'boolean)
1527 (defcustom org-ctrl-k-protect-subtree nil
1528 "Non-nil means, do not delete a hidden subtree with C-k.
1529 When set to the symbol `error', simply throw an error when C-k is
1530 used to kill (part-of) a headline that has hidden text behind it.
1531 Any other non-nil value will result in a query to the user, if it is
1532 OK to kill that hidden subtree. When nil, kill without remorse."
1533 :group 'org-edit-structure
1534 :version "24.1"
1535 :type '(choice
1536 (const :tag "Do not protect hidden subtrees" nil)
1537 (const :tag "Protect hidden subtrees with a security query" t)
1538 (const :tag "Never kill a hidden subtree with C-k" error)))
1540 (defcustom org-special-ctrl-o t
1541 "Non-nil means, make `C-o' insert a row in tables."
1542 :group 'org-edit-structure
1543 :type 'boolean)
1545 (defcustom org-catch-invisible-edits nil
1546 "Check if in invisible region before inserting or deleting a character.
1547 Valid values are:
1549 nil Do not check, so just do invisible edits.
1550 error Throw an error and do nothing.
1551 show Make point visible, and do the requested edit.
1552 show-and-error Make point visible, then throw an error and abort the edit.
1553 smart Make point visible, and do insertion/deletion if it is
1554 adjacent to visible text and the change feels predictable.
1555 Never delete a previously invisible character or add in the
1556 middle or right after an invisible region. Basically, this
1557 allows insertion and backward-delete right before ellipses.
1558 FIXME: maybe in this case we should not even show?"
1559 :group 'org-edit-structure
1560 :version "24.1"
1561 :type '(choice
1562 (const :tag "Do not check" nil)
1563 (const :tag "Throw error when trying to edit" error)
1564 (const :tag "Unhide, but do not do the edit" show-and-error)
1565 (const :tag "Show invisible part and do the edit" show)
1566 (const :tag "Be smart and do the right thing" smart)))
1568 (defcustom org-yank-folded-subtrees t
1569 "Non-nil means when yanking subtrees, fold them.
1570 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1571 it starts with a heading and all other headings in it are either children
1572 or siblings, then fold all the subtrees. However, do this only if no
1573 text after the yank would be swallowed into a folded tree by this action."
1574 :group 'org-edit-structure
1575 :type 'boolean)
1577 (defcustom org-yank-adjusted-subtrees nil
1578 "Non-nil means when yanking subtrees, adjust the level.
1579 With this setting, `org-paste-subtree' is used to insert the subtree, see
1580 this function for details."
1581 :group 'org-edit-structure
1582 :type 'boolean)
1584 (defcustom org-M-RET-may-split-line '((default . t))
1585 "Non-nil means M-RET will split the line at the cursor position.
1586 When nil, it will go to the end of the line before making a
1587 new line.
1588 You may also set this option in a different way for different
1589 contexts. Valid contexts are:
1591 headline when creating a new headline
1592 item when creating a new item
1593 table in a table field
1594 default the value to be used for all contexts not explicitly
1595 customized"
1596 :group 'org-structure
1597 :group 'org-table
1598 :type '(choice
1599 (const :tag "Always" t)
1600 (const :tag "Never" nil)
1601 (repeat :greedy t :tag "Individual contexts"
1602 (cons
1603 (choice :tag "Context"
1604 (const headline)
1605 (const item)
1606 (const table)
1607 (const default))
1608 (boolean)))))
1611 (defcustom org-insert-heading-respect-content nil
1612 "Non-nil means insert new headings after the current subtree.
1613 When nil, the new heading is created directly after the current line.
1614 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1615 this variable on for the duration of the command."
1616 :group 'org-structure
1617 :type 'boolean)
1619 (defcustom org-blank-before-new-entry '((heading . auto)
1620 (plain-list-item . auto))
1621 "Should `org-insert-heading' leave a blank line before new heading/item?
1622 The value is an alist, with `heading' and `plain-list-item' as CAR,
1623 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1624 which case Org will look at the surrounding headings/items and try to
1625 make an intelligent decision whether to insert a blank line or not.
1627 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1628 the setting here is ignored and no empty line is inserted to avoid breaking
1629 the list structure."
1630 :group 'org-edit-structure
1631 :type '(list
1632 (cons (const heading)
1633 (choice (const :tag "Never" nil)
1634 (const :tag "Always" t)
1635 (const :tag "Auto" auto)))
1636 (cons (const plain-list-item)
1637 (choice (const :tag "Never" nil)
1638 (const :tag "Always" t)
1639 (const :tag "Auto" auto)))))
1641 (defcustom org-insert-heading-hook nil
1642 "Hook being run after inserting a new heading."
1643 :group 'org-edit-structure
1644 :type 'hook)
1646 (defcustom org-enable-fixed-width-editor t
1647 "Non-nil means lines starting with \":\" are treated as fixed-width.
1648 This currently only means they are never auto-wrapped.
1649 When nil, such lines will be treated like ordinary lines."
1650 :group 'org-edit-structure
1651 :type 'boolean)
1653 (defcustom org-goto-auto-isearch t
1654 "Non-nil means typing characters in `org-goto' starts incremental search.
1655 When nil, you can use these keybindings to navigate the buffer:
1657 q Quit the org-goto interface
1658 n Go to the next visible heading
1659 p Go to the previous visible heading
1660 f Go one heading forward on same level
1661 b Go one heading backward on same level
1662 u Go one heading up"
1663 :group 'org-edit-structure
1664 :type 'boolean)
1666 (defgroup org-sparse-trees nil
1667 "Options concerning sparse trees in Org-mode."
1668 :tag "Org Sparse Trees"
1669 :group 'org-structure)
1671 (defcustom org-highlight-sparse-tree-matches t
1672 "Non-nil means highlight all matches that define a sparse tree.
1673 The highlights will automatically disappear the next time the buffer is
1674 changed by an edit command."
1675 :group 'org-sparse-trees
1676 :type 'boolean)
1678 (defcustom org-remove-highlights-with-change t
1679 "Non-nil means any change to the buffer will remove temporary highlights.
1680 Such highlights are created by `org-occur' and `org-clock-display'.
1681 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1682 The highlights created by `org-toggle-latex-fragment' always need
1683 `C-c C-x C-l' to be removed."
1684 :group 'org-sparse-trees
1685 :group 'org-time
1686 :type 'boolean)
1689 (defcustom org-occur-hook '(org-first-headline-recenter)
1690 "Hook that is run after `org-occur' has constructed a sparse tree.
1691 This can be used to recenter the window to show as much of the structure
1692 as possible."
1693 :group 'org-sparse-trees
1694 :type 'hook)
1696 (defgroup org-imenu-and-speedbar nil
1697 "Options concerning imenu and speedbar in Org-mode."
1698 :tag "Org Imenu and Speedbar"
1699 :group 'org-structure)
1701 (defcustom org-imenu-depth 2
1702 "The maximum level for Imenu access to Org-mode headlines.
1703 This also applied for speedbar access."
1704 :group 'org-imenu-and-speedbar
1705 :type 'integer)
1707 (defgroup org-table nil
1708 "Options concerning tables in Org-mode."
1709 :tag "Org Table"
1710 :group 'org)
1712 (defcustom org-enable-table-editor 'optimized
1713 "Non-nil means lines starting with \"|\" are handled by the table editor.
1714 When nil, such lines will be treated like ordinary lines.
1716 When equal to the symbol `optimized', the table editor will be optimized to
1717 do the following:
1718 - Automatic overwrite mode in front of whitespace in table fields.
1719 This makes the structure of the table stay in tact as long as the edited
1720 field does not exceed the column width.
1721 - Minimize the number of realigns. Normally, the table is aligned each time
1722 TAB or RET are pressed to move to another field. With optimization this
1723 happens only if changes to a field might have changed the column width.
1724 Optimization requires replacing the functions `self-insert-command',
1725 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1726 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1727 very good at guessing when a re-align will be necessary, but you can always
1728 force one with \\[org-ctrl-c-ctrl-c].
1730 If you would like to use the optimized version in Org-mode, but the
1731 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1733 This variable can be used to turn on and off the table editor during a session,
1734 but in order to toggle optimization, a restart is required.
1736 See also the variable `org-table-auto-blank-field'."
1737 :group 'org-table
1738 :type '(choice
1739 (const :tag "off" nil)
1740 (const :tag "on" t)
1741 (const :tag "on, optimized" optimized)))
1743 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1744 (version<= emacs-version "24.1"))
1745 "Non-nil means cluster self-insert commands for undo when possible.
1746 If this is set, then, like in the Emacs command loop, 20 consecutive
1747 characters will be undone together.
1748 This is configurable, because there is some impact on typing performance."
1749 :group 'org-table
1750 :type 'boolean)
1752 (defcustom org-table-tab-recognizes-table.el t
1753 "Non-nil means TAB will automatically notice a table.el table.
1754 When it sees such a table, it moves point into it and - if necessary -
1755 calls `table-recognize-table'."
1756 :group 'org-table-editing
1757 :type 'boolean)
1759 (defgroup org-link nil
1760 "Options concerning links in Org-mode."
1761 :tag "Org Link"
1762 :group 'org)
1764 (defvar org-link-abbrev-alist-local nil
1765 "Buffer-local version of `org-link-abbrev-alist', which see.
1766 The value of this is taken from the #+LINK lines.")
1767 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1769 (defcustom org-link-abbrev-alist nil
1770 "Alist of link abbreviations.
1771 The car of each element is a string, to be replaced at the start of a link.
1772 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1773 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1775 [[linkkey:tag][description]]
1777 The 'linkkey' must be a word word, starting with a letter, followed
1778 by letters, numbers, '-' or '_'.
1780 If REPLACE is a string, the tag will simply be appended to create the link.
1781 If the string contains \"%s\", the tag will be inserted there. If the string
1782 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1783 at that point (see the function `url-hexify-string'). If the string contains
1784 the specifier \"%(my-function)\", then the custom function `my-function' will
1785 be invoked: this function takes the tag as its only argument and must return
1786 a string.
1788 REPLACE may also be a function that will be called with the tag as the
1789 only argument to create the link, which should be returned as a string.
1791 See the manual for examples."
1792 :group 'org-link
1793 :type '(repeat
1794 (cons
1795 (string :tag "Protocol")
1796 (choice
1797 (string :tag "Format")
1798 (function)))))
1800 (defcustom org-descriptive-links t
1801 "Non-nil means Org will display descriptive links.
1802 E.g. [[http://orgmode.org][Org website]] will be displayed as
1803 \"Org Website\", hiding the link itself and just displaying its
1804 description. When set to nil, Org will display the full links
1805 literally.
1807 You can interactively set the value of this variable by calling
1808 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1809 :group 'org-link
1810 :type 'boolean)
1812 (defcustom org-link-file-path-type 'adaptive
1813 "How the path name in file links should be stored.
1814 Valid values are:
1816 relative Relative to the current directory, i.e. the directory of the file
1817 into which the link is being inserted.
1818 absolute Absolute path, if possible with ~ for home directory.
1819 noabbrev Absolute path, no abbreviation of home directory.
1820 adaptive Use relative path for files in the current directory and sub-
1821 directories of it. For other files, use an absolute path."
1822 :group 'org-link
1823 :type '(choice
1824 (const relative)
1825 (const absolute)
1826 (const noabbrev)
1827 (const adaptive)))
1829 (defvaralias 'org-activate-links 'org-highlight-links)
1830 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1831 "Types of links that should be highlighted in Org-mode files.
1833 This is a list of symbols, each one of them leading to the
1834 highlighting of a certain link type.
1836 You can still open links that are not highlighted.
1838 In principle, it does not hurt to turn on highlighting for all
1839 link types. There may be a small gain when turning off unused
1840 link types. The types are:
1842 bracket The recommended [[link][description]] or [[link]] links with hiding.
1843 angle Links in angular brackets that may contain whitespace like
1844 <bbdb:Carsten Dominik>.
1845 plain Plain links in normal text, no whitespace, like http://google.com.
1846 radio Text that is matched by a radio target, see manual for details.
1847 tag Tag settings in a headline (link to tag search).
1848 date Time stamps (link to calendar).
1849 footnote Footnote labels.
1851 If you set this variable during an Emacs session, use `org-mode-restart'
1852 in the Org buffer so that the change takes effect."
1853 :group 'org-link
1854 :group 'org-appearance
1855 :type '(set :greedy t
1856 (const :tag "Double bracket links" bracket)
1857 (const :tag "Angular bracket links" angle)
1858 (const :tag "Plain text links" plain)
1859 (const :tag "Radio target matches" radio)
1860 (const :tag "Tags" tag)
1861 (const :tag "Timestamps" date)
1862 (const :tag "Footnotes" footnote)))
1864 (defcustom org-make-link-description-function nil
1865 "Function to use for generating link descriptions from links.
1866 When nil, the link location will be used. This function must take
1867 two parameters: the first one is the link, the second one is the
1868 description generated by `org-insert-link'. The function should
1869 return the description to use."
1870 :group 'org-link
1871 :type '(choice (const nil) (function)))
1873 (defgroup org-link-store nil
1874 "Options concerning storing links in Org-mode."
1875 :tag "Org Store Link"
1876 :group 'org-link)
1878 (defcustom org-url-hexify-p t
1879 "When non-nil, hexify URL when creating a link."
1880 :type 'boolean
1881 :version "24.3"
1882 :group 'org-link-store)
1884 (defcustom org-email-link-description-format "Email %c: %.30s"
1885 "Format of the description part of a link to an email or usenet message.
1886 The following %-escapes will be replaced by corresponding information:
1888 %F full \"From\" field
1889 %f name, taken from \"From\" field, address if no name
1890 %T full \"To\" field
1891 %t first name in \"To\" field, address if no name
1892 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1893 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1894 %s subject
1895 %d date
1896 %m message-id.
1898 You may use normal field width specification between the % and the letter.
1899 This is for example useful to limit the length of the subject.
1901 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1902 :group 'org-link-store
1903 :type 'string)
1905 (defcustom org-from-is-user-regexp
1906 (let (r1 r2)
1907 (when (and user-mail-address (not (string= user-mail-address "")))
1908 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1909 (when (and user-full-name (not (string= user-full-name "")))
1910 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1911 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1912 "Regexp matched against the \"From:\" header of an email or usenet message.
1913 It should match if the message is from the user him/herself."
1914 :group 'org-link-store
1915 :type 'regexp)
1917 (defcustom org-context-in-file-links t
1918 "Non-nil means file links from `org-store-link' contain context.
1919 A search string will be added to the file name with :: as separator and
1920 used to find the context when the link is activated by the command
1921 `org-open-at-point'. When this option is t, the entire active region
1922 will be placed in the search string of the file link. If set to a
1923 positive integer, only the first n lines of context will be stored.
1925 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1926 negates this setting for the duration of the command."
1927 :group 'org-link-store
1928 :type '(choice boolean integer))
1930 (defcustom org-keep-stored-link-after-insertion nil
1931 "Non-nil means keep link in list for entire session.
1933 The command `org-store-link' adds a link pointing to the current
1934 location to an internal list. These links accumulate during a session.
1935 The command `org-insert-link' can be used to insert links into any
1936 Org-mode file (offering completion for all stored links). When this
1937 option is nil, every link which has been inserted once using \\[org-insert-link]
1938 will be removed from the list, to make completing the unused links
1939 more efficient."
1940 :group 'org-link-store
1941 :type 'boolean)
1943 (defgroup org-link-follow nil
1944 "Options concerning following links in Org-mode."
1945 :tag "Org Follow Link"
1946 :group 'org-link)
1948 (defcustom org-link-translation-function nil
1949 "Function to translate links with different syntax to Org syntax.
1950 This can be used to translate links created for example by the Planner
1951 or emacs-wiki packages to Org syntax.
1952 The function must accept two parameters, a TYPE containing the link
1953 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1954 which is everything after the link protocol. It should return a cons
1955 with possibly modified values of type and path.
1956 Org contains a function for this, so if you set this variable to
1957 `org-translate-link-from-planner', you should be able follow many
1958 links created by planner."
1959 :group 'org-link-follow
1960 :type '(choice (const nil) (function)))
1962 (defcustom org-follow-link-hook nil
1963 "Hook that is run after a link has been followed."
1964 :group 'org-link-follow
1965 :type 'hook)
1967 (defcustom org-tab-follows-link nil
1968 "Non-nil means on links TAB will follow the link.
1969 Needs to be set before org.el is loaded.
1970 This really should not be used, it does not make sense, and the
1971 implementation is bad."
1972 :group 'org-link-follow
1973 :type 'boolean)
1975 (defcustom org-return-follows-link nil
1976 "Non-nil means on links RET will follow the link.
1977 In tables, the special behavior of RET has precedence."
1978 :group 'org-link-follow
1979 :type 'boolean)
1981 (defcustom org-mouse-1-follows-link
1982 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1983 "Non-nil means mouse-1 on a link will follow the link.
1984 A longer mouse click will still set point. Does not work on XEmacs.
1985 Needs to be set before org.el is loaded."
1986 :group 'org-link-follow
1987 :version "24.4"
1988 :package-version '(Org . "8.3")
1989 :type '(choice
1990 (const :tag "A double click follows the link" double)
1991 (const :tag "Unconditionally follow the link with mouse-1" t)
1992 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
1994 (defcustom org-mark-ring-length 4
1995 "Number of different positions to be recorded in the ring.
1996 Changing this requires a restart of Emacs to work correctly."
1997 :group 'org-link-follow
1998 :type 'integer)
2000 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2001 "Non-nil means internal links in Org files must exactly match a headline.
2002 When nil, the link search tries to match a phrase with all words
2003 in the search text."
2004 :group 'org-link-follow
2005 :version "24.1"
2006 :type '(choice
2007 (const :tag "Use fuzzy text search" nil)
2008 (const :tag "Match only exact headline" t)
2009 (const :tag "Match exact headline or query to create it"
2010 query-to-create)))
2012 (defcustom org-link-frame-setup
2013 '((vm . vm-visit-folder-other-frame)
2014 (vm-imap . vm-visit-imap-folder-other-frame)
2015 (gnus . org-gnus-no-new-news)
2016 (file . find-file-other-window)
2017 (wl . wl-other-frame))
2018 "Setup the frame configuration for following links.
2019 When following a link with Emacs, it may often be useful to display
2020 this link in another window or frame. This variable can be used to
2021 set this up for the different types of links.
2022 For VM, use any of
2023 `vm-visit-folder'
2024 `vm-visit-folder-other-window'
2025 `vm-visit-folder-other-frame'
2026 For Gnus, use any of
2027 `gnus'
2028 `gnus-other-frame'
2029 `org-gnus-no-new-news'
2030 For FILE, use any of
2031 `find-file'
2032 `find-file-other-window'
2033 `find-file-other-frame'
2034 For Wanderlust use any of
2035 `wl'
2036 `wl-other-frame'
2037 For the calendar, use the variable `calendar-setup'.
2038 For BBDB, it is currently only possible to display the matches in
2039 another window."
2040 :group 'org-link-follow
2041 :type '(list
2042 (cons (const vm)
2043 (choice
2044 (const vm-visit-folder)
2045 (const vm-visit-folder-other-window)
2046 (const vm-visit-folder-other-frame)))
2047 (cons (const vm-imap)
2048 (choice
2049 (const vm-visit-imap-folder)
2050 (const vm-visit-imap-folder-other-window)
2051 (const vm-visit-imap-folder-other-frame)))
2052 (cons (const gnus)
2053 (choice
2054 (const gnus)
2055 (const gnus-other-frame)
2056 (const org-gnus-no-new-news)))
2057 (cons (const file)
2058 (choice
2059 (const find-file)
2060 (const find-file-other-window)
2061 (const find-file-other-frame)))
2062 (cons (const wl)
2063 (choice
2064 (const wl)
2065 (const wl-other-frame)))))
2067 (defcustom org-display-internal-link-with-indirect-buffer nil
2068 "Non-nil means use indirect buffer to display infile links.
2069 Activating internal links (from one location in a file to another location
2070 in the same file) normally just jumps to the location. When the link is
2071 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2072 is displayed in
2073 another window. When this option is set, the other window actually displays
2074 an indirect buffer clone of the current buffer, to avoid any visibility
2075 changes to the current buffer."
2076 :group 'org-link-follow
2077 :type 'boolean)
2079 (defcustom org-open-non-existing-files nil
2080 "Non-nil means `org-open-file' will open non-existing files.
2081 When nil, an error will be generated.
2082 This variable applies only to external applications because they
2083 might choke on non-existing files. If the link is to a file that
2084 will be opened in Emacs, the variable is ignored."
2085 :group 'org-link-follow
2086 :type 'boolean)
2088 (defcustom org-open-directory-means-index-dot-org nil
2089 "Non-nil means a link to a directory really means to index.org.
2090 When nil, following a directory link will run dired or open a finder/explorer
2091 window on that directory."
2092 :group 'org-link-follow
2093 :type 'boolean)
2095 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2096 "Non-nil means ask for confirmation before executing shell links.
2097 Shell links can be dangerous: just think about a link
2099 [[shell:rm -rf ~/*][Google Search]]
2101 This link would show up in your Org-mode document as \"Google Search\",
2102 but really it would remove your entire home directory.
2103 Therefore we advise against setting this variable to nil.
2104 Just change it to `y-or-n-p' if you want to confirm with a
2105 single keystroke rather than having to type \"yes\"."
2106 :group 'org-link-follow
2107 :type '(choice
2108 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2109 (const :tag "with y-or-n (faster)" y-or-n-p)
2110 (const :tag "no confirmation (dangerous)" nil)))
2111 (put 'org-confirm-shell-link-function
2112 'safe-local-variable
2113 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2115 (defcustom org-confirm-shell-link-not-regexp ""
2116 "A regexp to skip confirmation for shell links."
2117 :group 'org-link-follow
2118 :version "24.1"
2119 :type 'regexp)
2121 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2122 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2123 Elisp links can be dangerous: just think about a link
2125 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2127 This link would show up in your Org-mode document as \"Google Search\",
2128 but really it would remove your entire home directory.
2129 Therefore we advise against setting this variable to nil.
2130 Just change it to `y-or-n-p' if you want to confirm with a
2131 single keystroke rather than having to type \"yes\"."
2132 :group 'org-link-follow
2133 :type '(choice
2134 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2135 (const :tag "with y-or-n (faster)" y-or-n-p)
2136 (const :tag "no confirmation (dangerous)" nil)))
2137 (put 'org-confirm-shell-link-function
2138 'safe-local-variable
2139 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2141 (defcustom org-confirm-elisp-link-not-regexp ""
2142 "A regexp to skip confirmation for Elisp links."
2143 :group 'org-link-follow
2144 :version "24.1"
2145 :type 'regexp)
2147 (defconst org-file-apps-defaults-gnu
2148 '((remote . emacs)
2149 (system . mailcap)
2150 (t . mailcap))
2151 "Default file applications on a UNIX or GNU/Linux system.
2152 See `org-file-apps'.")
2154 (defconst org-file-apps-defaults-macosx
2155 '((remote . emacs)
2156 (t . "open %s")
2157 (system . "open %s")
2158 ("ps.gz" . "gv %s")
2159 ("eps.gz" . "gv %s")
2160 ("dvi" . "xdvi %s")
2161 ("fig" . "xfig %s"))
2162 "Default file applications on a MacOS X system.
2163 The system \"open\" is known as a default, but we use X11 applications
2164 for some files for which the OS does not have a good default.
2165 See `org-file-apps'.")
2167 (defconst org-file-apps-defaults-windowsnt
2168 (list
2169 '(remote . emacs)
2170 (cons t
2171 (list (if (featurep 'xemacs)
2172 'mswindows-shell-execute
2173 'w32-shell-execute)
2174 "open" 'file))
2175 (cons 'system
2176 (list (if (featurep 'xemacs)
2177 'mswindows-shell-execute
2178 'w32-shell-execute)
2179 "open" 'file)))
2180 "Default file applications on a Windows NT system.
2181 The system \"open\" is used for most files.
2182 See `org-file-apps'.")
2184 (defcustom org-file-apps
2185 '((auto-mode . emacs)
2186 ("\\.mm\\'" . default)
2187 ("\\.x?html?\\'" . default)
2188 ("\\.pdf\\'" . default))
2189 "External applications for opening `file:path' items in a document.
2190 Org-mode uses system defaults for different file types, but
2191 you can use this variable to set the application for a given file
2192 extension. The entries in this list are cons cells where the car identifies
2193 files and the cdr the corresponding command. Possible values for the
2194 file identifier are
2195 \"string\" A string as a file identifier can be interpreted in different
2196 ways, depending on its contents:
2198 - Alphanumeric characters only:
2199 Match links with this file extension.
2200 Example: (\"pdf\" . \"evince %s\")
2201 to open PDFs with evince.
2203 - Regular expression: Match links where the
2204 filename matches the regexp. If you want to
2205 use groups here, use shy groups.
2207 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2208 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2209 to open *.html and *.xhtml with firefox.
2211 - Regular expression which contains (non-shy) groups:
2212 Match links where the whole link, including \"::\", and
2213 anything after that, matches the regexp.
2214 In a custom command string, %1, %2, etc. are replaced with
2215 the parts of the link that were matched by the groups.
2216 For backwards compatibility, if a command string is given
2217 that does not use any of the group matches, this case is
2218 handled identically to the second one (i.e. match against
2219 file name only).
2220 In a custom lisp form, you can access the group matches with
2221 (match-string n link).
2223 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2224 to open [[file:document.pdf::5]] with evince at page 5.
2226 `directory' Matches a directory
2227 `remote' Matches a remote file, accessible through tramp or efs.
2228 Remote files most likely should be visited through Emacs
2229 because external applications cannot handle such paths.
2230 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2231 so all files Emacs knows how to handle. Using this with
2232 command `emacs' will open most files in Emacs. Beware that this
2233 will also open html files inside Emacs, unless you add
2234 (\"html\" . default) to the list as well.
2235 t Default for files not matched by any of the other options.
2236 `system' The system command to open files, like `open' on Windows
2237 and Mac OS X, and mailcap under GNU/Linux. This is the command
2238 that will be selected if you call `C-c C-o' with a double
2239 \\[universal-argument] \\[universal-argument] prefix.
2241 Possible values for the command are:
2242 `emacs' The file will be visited by the current Emacs process.
2243 `default' Use the default application for this file type, which is the
2244 association for t in the list, most likely in the system-specific
2245 part.
2246 This can be used to overrule an unwanted setting in the
2247 system-specific variable.
2248 `system' Use the system command for opening files, like \"open\".
2249 This command is specified by the entry whose car is `system'.
2250 Most likely, the system-specific version of this variable
2251 does define this command, but you can overrule/replace it
2252 here.
2253 string A command to be executed by a shell; %s will be replaced
2254 by the path to the file.
2255 sexp A Lisp form which will be evaluated. The file path will
2256 be available in the Lisp variable `file'.
2257 For more examples, see the system specific constants
2258 `org-file-apps-defaults-macosx'
2259 `org-file-apps-defaults-windowsnt'
2260 `org-file-apps-defaults-gnu'."
2261 :group 'org-link-follow
2262 :type '(repeat
2263 (cons (choice :value ""
2264 (string :tag "Extension")
2265 (const :tag "System command to open files" system)
2266 (const :tag "Default for unrecognized files" t)
2267 (const :tag "Remote file" remote)
2268 (const :tag "Links to a directory" directory)
2269 (const :tag "Any files that have Emacs modes"
2270 auto-mode))
2271 (choice :value ""
2272 (const :tag "Visit with Emacs" emacs)
2273 (const :tag "Use default" default)
2274 (const :tag "Use the system command" system)
2275 (string :tag "Command")
2276 (sexp :tag "Lisp form")))))
2278 (defcustom org-doi-server-url "http://dx.doi.org/"
2279 "The URL of the DOI server."
2280 :type 'string
2281 :version "24.3"
2282 :group 'org-link-follow)
2284 (defgroup org-refile nil
2285 "Options concerning refiling entries in Org-mode."
2286 :tag "Org Refile"
2287 :group 'org)
2289 (defcustom org-directory "~/org"
2290 "Directory with org files.
2291 This is just a default location to look for Org files. There is no need
2292 at all to put your files into this directory. It is only used in the
2293 following situations:
2295 1. When a capture template specifies a target file that is not an
2296 absolute path. The path will then be interpreted relative to
2297 `org-directory'
2298 2. When a capture note is filed away in an interactive way (when exiting the
2299 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2300 with `org-directory' as the default path."
2301 :group 'org-refile
2302 :group 'org-capture
2303 :type 'directory)
2305 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2306 "Default target for storing notes.
2307 Used as a fall back file for org-capture.el, for templates that
2308 do not specify a target file."
2309 :group 'org-refile
2310 :group 'org-capture
2311 :type 'file)
2313 (defcustom org-goto-interface 'outline
2314 "The default interface to be used for `org-goto'.
2315 Allowed values are:
2316 outline The interface shows an outline of the relevant file
2317 and the correct heading is found by moving through
2318 the outline or by searching with incremental search.
2319 outline-path-completion Headlines in the current buffer are offered via
2320 completion. This is the interface also used by
2321 the refile command."
2322 :group 'org-refile
2323 :type '(choice
2324 (const :tag "Outline" outline)
2325 (const :tag "Outline-path-completion" outline-path-completion)))
2327 (defcustom org-goto-max-level 5
2328 "Maximum target level when running `org-goto' with refile interface."
2329 :group 'org-refile
2330 :type 'integer)
2332 (defcustom org-reverse-note-order nil
2333 "Non-nil means store new notes at the beginning of a file or entry.
2334 When nil, new notes will be filed to the end of a file or entry.
2335 This can also be a list with cons cells of regular expressions that
2336 are matched against file names, and values."
2337 :group 'org-capture
2338 :group 'org-refile
2339 :type '(choice
2340 (const :tag "Reverse always" t)
2341 (const :tag "Reverse never" nil)
2342 (repeat :tag "By file name regexp"
2343 (cons regexp boolean))))
2345 (defcustom org-log-refile nil
2346 "Information to record when a task is refiled.
2348 Possible values are:
2350 nil Don't add anything
2351 time Add a time stamp to the task
2352 note Prompt for a note and add it with template `org-log-note-headings'
2354 This option can also be set with on a per-file-basis with
2356 #+STARTUP: nologrefile
2357 #+STARTUP: logrefile
2358 #+STARTUP: lognoterefile
2360 You can have local logging settings for a subtree by setting the LOGGING
2361 property to one or more of these keywords.
2363 When bulk-refiling from the agenda, the value `note' is forbidden and
2364 will temporarily be changed to `time'."
2365 :group 'org-refile
2366 :group 'org-progress
2367 :version "24.1"
2368 :type '(choice
2369 (const :tag "No logging" nil)
2370 (const :tag "Record timestamp" time)
2371 (const :tag "Record timestamp with note." note)))
2373 (defcustom org-refile-targets nil
2374 "Targets for refiling entries with \\[org-refile].
2375 This is a list of cons cells. Each cell contains:
2376 - a specification of the files to be considered, either a list of files,
2377 or a symbol whose function or variable value will be used to retrieve
2378 a file name or a list of file names. If you use `org-agenda-files' for
2379 that, all agenda files will be scanned for targets. Nil means consider
2380 headings in the current buffer.
2381 - A specification of how to find candidate refile targets. This may be
2382 any of:
2383 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2384 This tag has to be present in all target headlines, inheritance will
2385 not be considered.
2386 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2387 todo keyword.
2388 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2389 headlines that are refiling targets.
2390 - a cons cell (:level . N). Any headline of level N is considered a target.
2391 Note that, when `org-odd-levels-only' is set, level corresponds to
2392 order in hierarchy, not to the number of stars.
2393 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2394 Note that, when `org-odd-levels-only' is set, level corresponds to
2395 order in hierarchy, not to the number of stars.
2397 Each element of this list generates a set of possible targets.
2398 The union of these sets is presented (with completion) to
2399 the user by `org-refile'.
2401 You can set the variable `org-refile-target-verify-function' to a function
2402 to verify each headline found by the simple criteria above.
2404 When this variable is nil, all top-level headlines in the current buffer
2405 are used, equivalent to the value `((nil . (:level . 1))'."
2406 :group 'org-refile
2407 :type '(repeat
2408 (cons
2409 (choice :value org-agenda-files
2410 (const :tag "All agenda files" org-agenda-files)
2411 (const :tag "Current buffer" nil)
2412 (function) (variable) (file))
2413 (choice :tag "Identify target headline by"
2414 (cons :tag "Specific tag" (const :value :tag) (string))
2415 (cons :tag "TODO keyword" (const :value :todo) (string))
2416 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2417 (cons :tag "Level number" (const :value :level) (integer))
2418 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2420 (defcustom org-refile-target-verify-function nil
2421 "Function to verify if the headline at point should be a refile target.
2422 The function will be called without arguments, with point at the
2423 beginning of the headline. It should return t and leave point
2424 where it is if the headline is a valid target for refiling.
2426 If the target should not be selected, the function must return nil.
2427 In addition to this, it may move point to a place from where the search
2428 should be continued. For example, the function may decide that the entire
2429 subtree of the current entry should be excluded and move point to the end
2430 of the subtree."
2431 :group 'org-refile
2432 :type '(choice
2433 (const nil)
2434 (function)))
2436 (defcustom org-refile-use-cache nil
2437 "Non-nil means cache refile targets to speed up the process.
2438 The cache for a particular file will be updated automatically when
2439 the buffer has been killed, or when any of the marker used for flagging
2440 refile targets no longer points at a live buffer.
2441 If you have added new entries to a buffer that might themselves be targets,
2442 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2443 find that easier, `C-u C-u C-u C-c C-w'."
2444 :group 'org-refile
2445 :version "24.1"
2446 :type 'boolean)
2448 (defcustom org-refile-use-outline-path nil
2449 "Non-nil means provide refile targets as paths.
2450 So a level 3 headline will be available as level1/level2/level3.
2452 When the value is `file', also include the file name (without directory)
2453 into the path. In this case, you can also stop the completion after
2454 the file name, to get entries inserted as top level in the file.
2456 When `full-file-path', include the full file path."
2457 :group 'org-refile
2458 :type '(choice
2459 (const :tag "Not" nil)
2460 (const :tag "Yes" t)
2461 (const :tag "Start with file name" file)
2462 (const :tag "Start with full file path" full-file-path)))
2464 (defcustom org-outline-path-complete-in-steps t
2465 "Non-nil means complete the outline path in hierarchical steps.
2466 When Org-mode uses the refile interface to select an outline path
2467 \(see variable `org-refile-use-outline-path'), the completion of
2468 the path can be done in a single go, or it can be done in steps down
2469 the headline hierarchy. Going in steps is probably the best if you
2470 do not use a special completion package like `ido' or `icicles'.
2471 However, when using these packages, going in one step can be very
2472 fast, while still showing the whole path to the entry."
2473 :group 'org-refile
2474 :type 'boolean)
2476 (defcustom org-refile-allow-creating-parent-nodes nil
2477 "Non-nil means allow to create new nodes as refile targets.
2478 New nodes are then created by adding \"/new node name\" to the completion
2479 of an existing node. When the value of this variable is `confirm',
2480 new node creation must be confirmed by the user (recommended).
2481 When nil, the completion must match an existing entry.
2483 Note that, if the new heading is not seen by the criteria
2484 listed in `org-refile-targets', multiple instances of the same
2485 heading would be created by trying again to file under the new
2486 heading."
2487 :group 'org-refile
2488 :type '(choice
2489 (const :tag "Never" nil)
2490 (const :tag "Always" t)
2491 (const :tag "Prompt for confirmation" confirm)))
2493 (defcustom org-refile-active-region-within-subtree nil
2494 "Non-nil means also refile active region within a subtree.
2496 By default `org-refile' doesn't allow refiling regions if they
2497 don't contain a set of subtrees, but it might be convenient to
2498 do so sometimes: in that case, the first line of the region is
2499 converted to a headline before refiling."
2500 :group 'org-refile
2501 :version "24.1"
2502 :type 'boolean)
2504 (defgroup org-todo nil
2505 "Options concerning TODO items in Org-mode."
2506 :tag "Org TODO"
2507 :group 'org)
2509 (defgroup org-progress nil
2510 "Options concerning Progress logging in Org-mode."
2511 :tag "Org Progress"
2512 :group 'org-time)
2514 (defvar org-todo-interpretation-widgets
2515 '((:tag "Sequence (cycling hits every state)" sequence)
2516 (:tag "Type (cycling directly to DONE)" type))
2517 "The available interpretation symbols for customizing `org-todo-keywords'.
2518 Interested libraries should add to this list.")
2520 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2521 "List of TODO entry keyword sequences and their interpretation.
2522 \\<org-mode-map>This is a list of sequences.
2524 Each sequence starts with a symbol, either `sequence' or `type',
2525 indicating if the keywords should be interpreted as a sequence of
2526 action steps, or as different types of TODO items. The first
2527 keywords are states requiring action - these states will select a headline
2528 for inclusion into the global TODO list Org-mode produces. If one of
2529 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2530 signify that no further action is necessary. If \"|\" is not found,
2531 the last keyword is treated as the only DONE state of the sequence.
2533 The command \\[org-todo] cycles an entry through these states, and one
2534 additional state where no keyword is present. For details about this
2535 cycling, see the manual.
2537 TODO keywords and interpretation can also be set on a per-file basis with
2538 the special #+SEQ_TODO and #+TYP_TODO lines.
2540 Each keyword can optionally specify a character for fast state selection
2541 \(in combination with the variable `org-use-fast-todo-selection')
2542 and specifiers for state change logging, using the same syntax that
2543 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2544 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2545 indicates to record a time stamp each time this state is selected.
2547 Each keyword may also specify if a timestamp or a note should be
2548 recorded when entering or leaving the state, by adding additional
2549 characters in the parenthesis after the keyword. This looks like this:
2550 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2551 record only the time of the state change. With X and Y being either
2552 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2553 Y when leaving the state if and only if the *target* state does not
2554 define X. You may omit any of the fast-selection key or X or /Y,
2555 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2557 For backward compatibility, this variable may also be just a list
2558 of keywords. In this case the interpretation (sequence or type) will be
2559 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2560 :group 'org-todo
2561 :group 'org-keywords
2562 :type '(choice
2563 (repeat :tag "Old syntax, just keywords"
2564 (string :tag "Keyword"))
2565 (repeat :tag "New syntax"
2566 (cons
2567 (choice
2568 :tag "Interpretation"
2569 ;;Quick and dirty way to see
2570 ;;`org-todo-interpretations'. This takes the
2571 ;;place of item arguments
2572 :convert-widget
2573 (lambda (widget)
2574 (widget-put widget
2575 :args (mapcar
2576 (lambda (x)
2577 (widget-convert
2578 (cons 'const x)))
2579 org-todo-interpretation-widgets))
2580 widget))
2581 (repeat
2582 (string :tag "Keyword"))))))
2584 (defvar org-todo-keywords-1 nil
2585 "All TODO and DONE keywords active in a buffer.")
2586 (make-variable-buffer-local 'org-todo-keywords-1)
2587 (defvar org-todo-keywords-for-agenda nil)
2588 (defvar org-done-keywords-for-agenda nil)
2589 (defvar org-todo-keyword-alist-for-agenda nil)
2590 (defvar org-tag-alist-for-agenda nil
2591 "Alist of all tags from all agenda files.")
2592 (defvar org-tag-groups-alist-for-agenda nil
2593 "Alist of all groups tags from all current agenda files.")
2594 (defvar org-tag-groups-alist nil)
2595 (make-variable-buffer-local 'org-tag-groups-alist)
2596 (defvar org-agenda-contributing-files nil)
2597 (defvar org-not-done-keywords nil)
2598 (make-variable-buffer-local 'org-not-done-keywords)
2599 (defvar org-done-keywords nil)
2600 (make-variable-buffer-local 'org-done-keywords)
2601 (defvar org-todo-heads nil)
2602 (make-variable-buffer-local 'org-todo-heads)
2603 (defvar org-todo-sets nil)
2604 (make-variable-buffer-local 'org-todo-sets)
2605 (defvar org-todo-log-states nil)
2606 (make-variable-buffer-local 'org-todo-log-states)
2607 (defvar org-todo-kwd-alist nil)
2608 (make-variable-buffer-local 'org-todo-kwd-alist)
2609 (defvar org-todo-key-alist nil)
2610 (make-variable-buffer-local 'org-todo-key-alist)
2611 (defvar org-todo-key-trigger nil)
2612 (make-variable-buffer-local 'org-todo-key-trigger)
2614 (defcustom org-todo-interpretation 'sequence
2615 "Controls how TODO keywords are interpreted.
2616 This variable is in principle obsolete and is only used for
2617 backward compatibility, if the interpretation of todo keywords is
2618 not given already in `org-todo-keywords'. See that variable for
2619 more information."
2620 :group 'org-todo
2621 :group 'org-keywords
2622 :type '(choice (const sequence)
2623 (const type)))
2625 (defcustom org-use-fast-todo-selection t
2626 "Non-nil means use the fast todo selection scheme with C-c C-t.
2627 This variable describes if and under what circumstances the cycling
2628 mechanism for TODO keywords will be replaced by a single-key, direct
2629 selection scheme.
2631 When nil, fast selection is never used.
2633 When the symbol `prefix', it will be used when `org-todo' is called
2634 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2635 `C-u t' in an agenda buffer.
2637 When t, fast selection is used by default. In this case, the prefix
2638 argument forces cycling instead.
2640 In all cases, the special interface is only used if access keys have
2641 actually been assigned by the user, i.e. if keywords in the configuration
2642 are followed by a letter in parenthesis, like TODO(t)."
2643 :group 'org-todo
2644 :type '(choice
2645 (const :tag "Never" nil)
2646 (const :tag "By default" t)
2647 (const :tag "Only with C-u C-c C-t" prefix)))
2649 (defcustom org-provide-todo-statistics t
2650 "Non-nil means update todo statistics after insert and toggle.
2651 ALL-HEADLINES means update todo statistics by including headlines
2652 with no TODO keyword as well, counting them as not done.
2653 A list of TODO keywords means the same, but skip keywords that are
2654 not in this list.
2655 When set to a list of two lists, the first list contains keywords
2656 to consider as TODO keywords, the second list contains keywords
2657 to consider as DONE keywords.
2659 When this is set, todo statistics is updated in the parent of the
2660 current entry each time a todo state is changed."
2661 :group 'org-todo
2662 :type '(choice
2663 (const :tag "Yes, only for TODO entries" t)
2664 (const :tag "Yes, including all entries" all-headlines)
2665 (repeat :tag "Yes, for TODOs in this list"
2666 (string :tag "TODO keyword"))
2667 (list :tag "Yes, for TODOs and DONEs in these lists"
2668 (repeat (string :tag "TODO keyword"))
2669 (repeat (string :tag "DONE keyword")))
2670 (other :tag "No TODO statistics" nil)))
2672 (defcustom org-hierarchical-todo-statistics t
2673 "Non-nil means TODO statistics covers just direct children.
2674 When nil, all entries in the subtree are considered.
2675 This has only an effect if `org-provide-todo-statistics' is set.
2676 To set this to nil for only a single subtree, use a COOKIE_DATA
2677 property and include the word \"recursive\" into the value."
2678 :group 'org-todo
2679 :type 'boolean)
2681 (defcustom org-after-todo-state-change-hook nil
2682 "Hook which is run after the state of a TODO item was changed.
2683 The new state (a string with a TODO keyword, or nil) is available in the
2684 Lisp variable `org-state'."
2685 :group 'org-todo
2686 :type 'hook)
2688 (defvar org-blocker-hook nil
2689 "Hook for functions that are allowed to block a state change.
2691 Functions in this hook should not modify the buffer.
2692 Each function gets as its single argument a property list,
2693 see `org-trigger-hook' for more information about this list.
2695 If any of the functions in this hook returns nil, the state change
2696 is blocked.")
2698 (defvar org-trigger-hook nil
2699 "Hook for functions that are triggered by a state change.
2701 Each function gets as its single argument a property list with at
2702 least the following elements:
2704 (:type type-of-change :position pos-at-entry-start
2705 :from old-state :to new-state)
2707 Depending on the type, more properties may be present.
2709 This mechanism is currently implemented for:
2711 TODO state changes
2712 ------------------
2713 :type todo-state-change
2714 :from previous state (keyword as a string), or nil, or a symbol
2715 'todo' or 'done', to indicate the general type of state.
2716 :to new state, like in :from")
2718 (defcustom org-enforce-todo-dependencies nil
2719 "Non-nil means undone TODO entries will block switching the parent to DONE.
2720 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2721 be blocked if any prior sibling is not yet done.
2722 Finally, if the parent is blocked because of ordered siblings of its own,
2723 the child will also be blocked."
2724 :set (lambda (var val)
2725 (set var val)
2726 (if val
2727 (add-hook 'org-blocker-hook
2728 'org-block-todo-from-children-or-siblings-or-parent)
2729 (remove-hook 'org-blocker-hook
2730 'org-block-todo-from-children-or-siblings-or-parent)))
2731 :group 'org-todo
2732 :type 'boolean)
2734 (defcustom org-enforce-todo-checkbox-dependencies nil
2735 "Non-nil means unchecked boxes will block switching the parent to DONE.
2736 When this is nil, checkboxes have no influence on switching TODO states.
2737 When non-nil, you first need to check off all check boxes before the TODO
2738 entry can be switched to DONE.
2739 This variable needs to be set before org.el is loaded, and you need to
2740 restart Emacs after a change to make the change effective. The only way
2741 to change is while Emacs is running is through the customize interface."
2742 :set (lambda (var val)
2743 (set var val)
2744 (if val
2745 (add-hook 'org-blocker-hook
2746 'org-block-todo-from-checkboxes)
2747 (remove-hook 'org-blocker-hook
2748 'org-block-todo-from-checkboxes)))
2749 :group 'org-todo
2750 :type 'boolean)
2752 (defcustom org-treat-insert-todo-heading-as-state-change nil
2753 "Non-nil means inserting a TODO heading is treated as state change.
2754 So when the command \\[org-insert-todo-heading] is used, state change
2755 logging will apply if appropriate. When nil, the new TODO item will
2756 be inserted directly, and no logging will take place."
2757 :group 'org-todo
2758 :type 'boolean)
2760 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2761 "Non-nil means switching TODO states with S-cursor counts as state change.
2762 This is the default behavior. However, setting this to nil allows a
2763 convenient way to select a TODO state and bypass any logging associated
2764 with that."
2765 :group 'org-todo
2766 :type 'boolean)
2768 (defcustom org-todo-state-tags-triggers nil
2769 "Tag changes that should be triggered by TODO state changes.
2770 This is a list. Each entry is
2772 (state-change (tag . flag) .......)
2774 State-change can be a string with a state, and empty string to indicate the
2775 state that has no TODO keyword, or it can be one of the symbols `todo'
2776 or `done', meaning any not-done or done state, respectively."
2777 :group 'org-todo
2778 :group 'org-tags
2779 :type '(repeat
2780 (cons (choice :tag "When changing to"
2781 (const :tag "Not-done state" todo)
2782 (const :tag "Done state" done)
2783 (string :tag "State"))
2784 (repeat
2785 (cons :tag "Tag action"
2786 (string :tag "Tag")
2787 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2789 (defcustom org-log-done nil
2790 "Information to record when a task moves to the DONE state.
2792 Possible values are:
2794 nil Don't add anything, just change the keyword
2795 time Add a time stamp to the task
2796 note Prompt for a note and add it with template `org-log-note-headings'
2798 This option can also be set with on a per-file-basis with
2800 #+STARTUP: nologdone
2801 #+STARTUP: logdone
2802 #+STARTUP: lognotedone
2804 You can have local logging settings for a subtree by setting the LOGGING
2805 property to one or more of these keywords."
2806 :group 'org-todo
2807 :group 'org-progress
2808 :type '(choice
2809 (const :tag "No logging" nil)
2810 (const :tag "Record CLOSED timestamp" time)
2811 (const :tag "Record CLOSED timestamp with note." note)))
2813 ;; Normalize old uses of org-log-done.
2814 (cond
2815 ((eq org-log-done t) (setq org-log-done 'time))
2816 ((and (listp org-log-done) (memq 'done org-log-done))
2817 (setq org-log-done 'note)))
2819 (defcustom org-log-reschedule nil
2820 "Information to record when the scheduling date of a tasks is modified.
2822 Possible values are:
2824 nil Don't add anything, just change the date
2825 time Add a time stamp to the task
2826 note Prompt for a note and add it with template `org-log-note-headings'
2828 This option can also be set with on a per-file-basis with
2830 #+STARTUP: nologreschedule
2831 #+STARTUP: logreschedule
2832 #+STARTUP: lognotereschedule"
2833 :group 'org-todo
2834 :group 'org-progress
2835 :type '(choice
2836 (const :tag "No logging" nil)
2837 (const :tag "Record timestamp" time)
2838 (const :tag "Record timestamp with note." note)))
2840 (defcustom org-log-redeadline nil
2841 "Information to record when the deadline date of a tasks is modified.
2843 Possible values are:
2845 nil Don't add anything, just change the date
2846 time Add a time stamp to the task
2847 note Prompt for a note and add it with template `org-log-note-headings'
2849 This option can also be set with on a per-file-basis with
2851 #+STARTUP: nologredeadline
2852 #+STARTUP: logredeadline
2853 #+STARTUP: lognoteredeadline
2855 You can have local logging settings for a subtree by setting the LOGGING
2856 property to one or more of these keywords."
2857 :group 'org-todo
2858 :group 'org-progress
2859 :type '(choice
2860 (const :tag "No logging" nil)
2861 (const :tag "Record timestamp" time)
2862 (const :tag "Record timestamp with note." note)))
2864 (defcustom org-log-note-clock-out nil
2865 "Non-nil means record a note when clocking out of an item.
2866 This can also be configured on a per-file basis by adding one of
2867 the following lines anywhere in the buffer:
2869 #+STARTUP: lognoteclock-out
2870 #+STARTUP: nolognoteclock-out"
2871 :group 'org-todo
2872 :group 'org-progress
2873 :type 'boolean)
2875 (defcustom org-log-done-with-time t
2876 "Non-nil means the CLOSED time stamp will contain date and time.
2877 When nil, only the date will be recorded."
2878 :group 'org-progress
2879 :type 'boolean)
2881 (defcustom org-log-note-headings
2882 '((done . "CLOSING NOTE %t")
2883 (state . "State %-12s from %-12S %t")
2884 (note . "Note taken on %t")
2885 (reschedule . "Rescheduled from %S on %t")
2886 (delschedule . "Not scheduled, was %S on %t")
2887 (redeadline . "New deadline from %S on %t")
2888 (deldeadline . "Removed deadline, was %S on %t")
2889 (refile . "Refiled on %t")
2890 (clock-out . ""))
2891 "Headings for notes added to entries.
2893 The value is an alist, with the car being a symbol indicating the
2894 note context, and the cdr is the heading to be used. The heading
2895 may also be the empty string. The following placeholders can be
2896 used:
2898 %t a time stamp.
2899 %T an active time stamp instead the default inactive one
2900 %d a short-format time stamp.
2901 %D an active short-format time stamp.
2902 %s the new TODO state or time stamp (inactive), in double quotes.
2903 %S the old TODO state or time stamp (inactive), in double quotes.
2904 %u the user name.
2905 %U full user name.
2907 In fact, it is not a good idea to change the `state' entry,
2908 because Agenda Log mode depends on the format of these entries."
2909 :group 'org-todo
2910 :group 'org-progress
2911 :type '(list :greedy t
2912 (cons (const :tag "Heading when closing an item" done) string)
2913 (cons (const :tag
2914 "Heading when changing todo state (todo sequence only)"
2915 state) string)
2916 (cons (const :tag "Heading when just taking a note" note) string)
2917 (cons (const :tag "Heading when rescheduling" reschedule) string)
2918 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2919 (cons (const :tag "Heading when changing deadline" redeadline) string)
2920 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2921 (cons (const :tag "Heading when refiling" refile) string)
2922 (cons (const :tag "Heading when clocking out" clock-out) string)))
2924 (unless (assq 'note org-log-note-headings)
2925 (push '(note . "%t") org-log-note-headings))
2927 (defcustom org-log-into-drawer nil
2928 "Non-nil means insert state change notes and time stamps into a drawer.
2929 When nil, state changes notes will be inserted after the headline and
2930 any scheduling and clock lines, but not inside a drawer.
2932 The value of this variable should be the name of the drawer to use.
2933 LOGBOOK is proposed as the default drawer for this purpose, you can
2934 also set this to a string to define the drawer of your choice.
2936 A value of t is also allowed, representing \"LOGBOOK\".
2938 A value of t or nil can also be set with on a per-file-basis with
2940 #+STARTUP: logdrawer
2941 #+STARTUP: nologdrawer
2943 If this variable is set, `org-log-state-notes-insert-after-drawers'
2944 will be ignored.
2946 You can set the property LOG_INTO_DRAWER to overrule this setting for
2947 a subtree.
2949 Do not check directly this variable in a Lisp program. Call
2950 function `org-log-into-drawer' instead."
2951 :group 'org-todo
2952 :group 'org-progress
2953 :type '(choice
2954 (const :tag "Not into a drawer" nil)
2955 (const :tag "LOGBOOK" t)
2956 (string :tag "Other")))
2958 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2960 (defun org-log-into-drawer ()
2961 "Name of the log drawer, as a string, or nil.
2962 This is the value of `org-log-into-drawer'. However, if the
2963 current entry has or inherits a LOG_INTO_DRAWER property, it will
2964 be used instead of the default value."
2965 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2966 (cond ((equal p "nil") nil)
2967 ((equal p "t") "LOGBOOK")
2968 ((stringp p) p)
2969 (p "LOGBOOK")
2970 ((stringp org-log-into-drawer) org-log-into-drawer)
2971 (org-log-into-drawer "LOGBOOK"))))
2973 (defcustom org-log-state-notes-insert-after-drawers nil
2974 "Non-nil means insert state change notes after any drawers in entry.
2975 Only the drawers that *immediately* follow the headline and the
2976 deadline/scheduled line are skipped.
2977 When nil, insert notes right after the heading and perhaps the line
2978 with deadline/scheduling if present.
2980 This variable will have no effect if `org-log-into-drawer' is
2981 set."
2982 :group 'org-todo
2983 :group 'org-progress
2984 :type 'boolean)
2986 (defcustom org-log-states-order-reversed t
2987 "Non-nil means the latest state note will be directly after heading.
2988 When nil, the state change notes will be ordered according to time.
2990 This option can also be set with on a per-file-basis with
2992 #+STARTUP: logstatesreversed
2993 #+STARTUP: nologstatesreversed"
2994 :group 'org-todo
2995 :group 'org-progress
2996 :type 'boolean)
2998 (defcustom org-todo-repeat-to-state nil
2999 "The TODO state to which a repeater should return the repeating task.
3000 By default this is the first task in a TODO sequence, or the previous state
3001 in a TODO_TYP set. But you can specify another task here.
3002 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3003 :group 'org-todo
3004 :version "24.1"
3005 :type '(choice (const :tag "Head of sequence" nil)
3006 (string :tag "Specific state")))
3008 (defcustom org-log-repeat 'time
3009 "Non-nil means record moving through the DONE state when triggering repeat.
3010 An auto-repeating task is immediately switched back to TODO when
3011 marked DONE. If you are not logging state changes (by adding \"@\"
3012 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3013 record a closing note, there will be no record of the task moving
3014 through DONE. This variable forces taking a note anyway.
3016 nil Don't force a record
3017 time Record a time stamp
3018 note Prompt for a note and add it with template `org-log-note-headings'
3020 This option can also be set with on a per-file-basis with
3022 #+STARTUP: nologrepeat
3023 #+STARTUP: logrepeat
3024 #+STARTUP: lognoterepeat
3026 You can have local logging settings for a subtree by setting the LOGGING
3027 property to one or more of these keywords."
3028 :group 'org-todo
3029 :group 'org-progress
3030 :type '(choice
3031 (const :tag "Don't force a record" nil)
3032 (const :tag "Force recording the DONE state" time)
3033 (const :tag "Force recording a note with the DONE state" note)))
3036 (defgroup org-priorities nil
3037 "Priorities in Org-mode."
3038 :tag "Org Priorities"
3039 :group 'org-todo)
3041 (defcustom org-enable-priority-commands t
3042 "Non-nil means priority commands are active.
3043 When nil, these commands will be disabled, so that you never accidentally
3044 set a priority."
3045 :group 'org-priorities
3046 :type 'boolean)
3048 (defcustom org-highest-priority ?A
3049 "The highest priority of TODO items. A character like ?A, ?B etc.
3050 Must have a smaller ASCII number than `org-lowest-priority'."
3051 :group 'org-priorities
3052 :type 'character)
3054 (defcustom org-lowest-priority ?C
3055 "The lowest priority of TODO items. A character like ?A, ?B etc.
3056 Must have a larger ASCII number than `org-highest-priority'."
3057 :group 'org-priorities
3058 :type 'character)
3060 (defcustom org-default-priority ?B
3061 "The default priority of TODO items.
3062 This is the priority an item gets if no explicit priority is given.
3063 When starting to cycle on an empty priority the first step in the cycle
3064 depends on `org-priority-start-cycle-with-default'. The resulting first
3065 step priority must not exceed the range from `org-highest-priority' to
3066 `org-lowest-priority' which means that `org-default-priority' has to be
3067 in this range exclusive or inclusive the range boundaries. Else the
3068 first step refuses to set the default and the second will fall back
3069 to (depending on the command used) the highest or lowest priority."
3070 :group 'org-priorities
3071 :type 'character)
3073 (defcustom org-priority-start-cycle-with-default t
3074 "Non-nil means start with default priority when starting to cycle.
3075 When this is nil, the first step in the cycle will be (depending on the
3076 command used) one higher or lower than the default priority.
3077 See also `org-default-priority'."
3078 :group 'org-priorities
3079 :type 'boolean)
3081 (defcustom org-get-priority-function nil
3082 "Function to extract the priority from a string.
3083 The string is normally the headline. If this is nil Org computes the
3084 priority from the priority cookie like [#A] in the headline. It returns
3085 an integer, increasing by 1000 for each priority level.
3086 The user can set a different function here, which should take a string
3087 as an argument and return the numeric priority."
3088 :group 'org-priorities
3089 :version "24.1"
3090 :type '(choice
3091 (const nil)
3092 (function)))
3094 (defgroup org-time nil
3095 "Options concerning time stamps and deadlines in Org-mode."
3096 :tag "Org Time"
3097 :group 'org)
3099 (defcustom org-time-stamp-rounding-minutes '(0 5)
3100 "Number of minutes to round time stamps to.
3101 These are two values, the first applies when first creating a time stamp.
3102 The second applies when changing it with the commands `S-up' and `S-down'.
3103 When changing the time stamp, this means that it will change in steps
3104 of N minutes, as given by the second value.
3106 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3107 numbers should be factors of 60, so for example 5, 10, 15.
3109 When this is larger than 1, you can still force an exact time stamp by using
3110 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3111 and by using a prefix arg to `S-up/down' to specify the exact number
3112 of minutes to shift."
3113 :group 'org-time
3114 :get (lambda (var) ; Make sure both elements are there
3115 (if (integerp (default-value var))
3116 (list (default-value var) 5)
3117 (default-value var)))
3118 :type '(list
3119 (integer :tag "when inserting times")
3120 (integer :tag "when modifying times")))
3122 ;; Normalize old customizations of this variable.
3123 (when (integerp org-time-stamp-rounding-minutes)
3124 (setq org-time-stamp-rounding-minutes
3125 (list org-time-stamp-rounding-minutes
3126 org-time-stamp-rounding-minutes)))
3128 (defcustom org-display-custom-times nil
3129 "Non-nil means overlay custom formats over all time stamps.
3130 The formats are defined through the variable `org-time-stamp-custom-formats'.
3131 To turn this on on a per-file basis, insert anywhere in the file:
3132 #+STARTUP: customtime"
3133 :group 'org-time
3134 :set 'set-default
3135 :type 'sexp)
3136 (make-variable-buffer-local 'org-display-custom-times)
3138 (defcustom org-time-stamp-custom-formats
3139 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3140 "Custom formats for time stamps. See `format-time-string' for the syntax.
3141 These are overlaid over the default ISO format if the variable
3142 `org-display-custom-times' is set. Time like %H:%M should be at the
3143 end of the second format. The custom formats are also honored by export
3144 commands, if custom time display is turned on at the time of export."
3145 :group 'org-time
3146 :type 'sexp)
3148 (defun org-time-stamp-format (&optional long inactive)
3149 "Get the right format for a time string."
3150 (let ((f (if long (cdr org-time-stamp-formats)
3151 (car org-time-stamp-formats))))
3152 (if inactive
3153 (concat "[" (substring f 1 -1) "]")
3154 f)))
3156 (defcustom org-time-clocksum-format
3157 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3158 "The format string used when creating CLOCKSUM lines.
3159 This is also used when Org mode generates a time duration.
3161 The value can be a single format string containing two
3162 %-sequences, which will be filled with the number of hours and
3163 minutes in that order.
3165 Alternatively, the value can be a plist associating any of the
3166 keys :years, :months, :weeks, :days, :hours or :minutes with
3167 format strings. The time duration is formatted using only the
3168 time components that are needed and concatenating the results.
3169 If a time unit in absent, it falls back to the next smallest
3170 unit.
3172 The keys :require-years, :require-months, :require-days,
3173 :require-weeks, :require-hours, :require-minutes are also
3174 meaningful. A non-nil value for these keys indicates that the
3175 corresponding time component should always be included, even if
3176 its value is 0.
3179 For example,
3181 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3182 :require-minutes t)
3184 means durations longer than a day will be expressed in days,
3185 hours and minutes, and durations less than a day will always be
3186 expressed in hours and minutes (even for durations less than an
3187 hour).
3189 The value
3191 \(:days \"%dd\" :minutes \"%dm\")
3193 means durations longer than a day will be expressed in days and
3194 minutes, and durations less than a day will be expressed entirely
3195 in minutes (even for durations longer than an hour)."
3196 :group 'org-time
3197 :group 'org-clock
3198 :version "24.4"
3199 :package-version '(Org . "8.0")
3200 :type '(choice (string :tag "Format string")
3201 (set :tag "Plist"
3202 (group :inline t (const :tag "Years" :years)
3203 (string :tag "Format string"))
3204 (group :inline t
3205 (const :tag "Always show years" :require-years)
3206 (const t))
3207 (group :inline t (const :tag "Months" :months)
3208 (string :tag "Format string"))
3209 (group :inline t
3210 (const :tag "Always show months" :require-months)
3211 (const t))
3212 (group :inline t (const :tag "Weeks" :weeks)
3213 (string :tag "Format string"))
3214 (group :inline t
3215 (const :tag "Always show weeks" :require-weeks)
3216 (const t))
3217 (group :inline t (const :tag "Days" :days)
3218 (string :tag "Format string"))
3219 (group :inline t
3220 (const :tag "Always show days" :require-days)
3221 (const t))
3222 (group :inline t (const :tag "Hours" :hours)
3223 (string :tag "Format string"))
3224 (group :inline t
3225 (const :tag "Always show hours" :require-hours)
3226 (const t))
3227 (group :inline t (const :tag "Minutes" :minutes)
3228 (string :tag "Format string"))
3229 (group :inline t
3230 (const :tag "Always show minutes" :require-minutes)
3231 (const t)))))
3233 (defcustom org-time-clocksum-use-fractional nil
3234 "When non-nil, \\[org-clock-display] uses fractional times.
3235 See `org-time-clocksum-format' for more on time clock formats."
3236 :group 'org-time
3237 :group 'org-clock
3238 :version "24.3"
3239 :type 'boolean)
3241 (defcustom org-time-clocksum-use-effort-durations nil
3242 "When non-nil, \\[org-clock-display] uses effort durations.
3243 E.g. by default, one day is considered to be a 8 hours effort,
3244 so a task that has been clocked for 16 hours will be displayed
3245 as during 2 days in the clock display or in the clocktable.
3247 See `org-effort-durations' on how to set effort durations
3248 and `org-time-clocksum-format' for more on time clock formats."
3249 :group 'org-time
3250 :group 'org-clock
3251 :version "24.4"
3252 :package-version '(Org . "8.0")
3253 :type 'boolean)
3255 (defcustom org-time-clocksum-fractional-format "%.2f"
3256 "The format string used when creating CLOCKSUM lines,
3257 or when Org mode generates a time duration, if
3258 `org-time-clocksum-use-fractional' is enabled.
3260 The value can be a single format string containing one
3261 %-sequence, which will be filled with the number of hours as
3262 a float.
3264 Alternatively, the value can be a plist associating any of the
3265 keys :years, :months, :weeks, :days, :hours or :minutes with
3266 a format string. The time duration is formatted using the
3267 largest time unit which gives a non-zero integer part. If all
3268 specified formats have zero integer part, the smallest time unit
3269 is used."
3270 :group 'org-time
3271 :type '(choice (string :tag "Format string")
3272 (set (group :inline t (const :tag "Years" :years)
3273 (string :tag "Format string"))
3274 (group :inline t (const :tag "Months" :months)
3275 (string :tag "Format string"))
3276 (group :inline t (const :tag "Weeks" :weeks)
3277 (string :tag "Format string"))
3278 (group :inline t (const :tag "Days" :days)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Hours" :hours)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Minutes" :minutes)
3283 (string :tag "Format string")))))
3285 (defcustom org-deadline-warning-days 14
3286 "Number of days before expiration during which a deadline becomes active.
3287 This variable governs the display in sparse trees and in the agenda.
3288 When 0 or negative, it means use this number (the absolute value of it)
3289 even if a deadline has a different individual lead time specified.
3291 Custom commands can set this variable in the options section."
3292 :group 'org-time
3293 :group 'org-agenda-daily/weekly
3294 :type 'integer)
3296 (defcustom org-scheduled-delay-days 0
3297 "Number of days before a scheduled item becomes active.
3298 This variable governs the display in sparse trees and in the agenda.
3299 The default value (i.e. 0) means: don't delay scheduled item.
3300 When negative, it means use this number (the absolute value of it)
3301 even if a scheduled item has a different individual delay time
3302 specified.
3304 Custom commands can set this variable in the options section."
3305 :group 'org-time
3306 :group 'org-agenda-daily/weekly
3307 :version "24.4"
3308 :package-version '(Org . "8.0")
3309 :type 'integer)
3311 (defcustom org-read-date-prefer-future t
3312 "Non-nil means assume future for incomplete date input from user.
3313 This affects the following situations:
3314 1. The user gives a month but not a year.
3315 For example, if it is April and you enter \"feb 2\", this will be read
3316 as Feb 2, *next* year. \"May 5\", however, will be this year.
3317 2. The user gives a day, but no month.
3318 For example, if today is the 15th, and you enter \"3\", Org-mode will
3319 read this as the third of *next* month. However, if you enter \"17\",
3320 it will be considered as *this* month.
3322 If you set this variable to the symbol `time', then also the following
3323 will work:
3325 3. If the user gives a time.
3326 If the time is before now, it will be interpreted as tomorrow.
3328 Currently none of this works for ISO week specifications.
3330 When this option is nil, the current day, month and year will always be
3331 used as defaults.
3333 See also `org-agenda-jump-prefer-future'."
3334 :group 'org-time
3335 :type '(choice
3336 (const :tag "Never" nil)
3337 (const :tag "Check month and day" t)
3338 (const :tag "Check month, day, and time" time)))
3340 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3341 "Should the agenda jump command prefer the future for incomplete dates?
3342 The default is to do the same as configured in `org-read-date-prefer-future'.
3343 But you can also set a deviating value here.
3344 This may t or nil, or the symbol `org-read-date-prefer-future'."
3345 :group 'org-agenda
3346 :group 'org-time
3347 :version "24.1"
3348 :type '(choice
3349 (const :tag "Use org-read-date-prefer-future"
3350 org-read-date-prefer-future)
3351 (const :tag "Never" nil)
3352 (const :tag "Always" t)))
3354 (defcustom org-read-date-force-compatible-dates t
3355 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3357 Depending on the system Emacs is running on, certain dates cannot
3358 be represented with the type used internally to represent time.
3359 Dates between 1970-1-1 and 2038-1-1 can always be represented
3360 correctly. Some systems allow for earlier dates, some for later,
3361 some for both. One way to find out it to insert any date into an
3362 Org buffer, putting the cursor on the year and hitting S-up and
3363 S-down to test the range.
3365 When this variable is set to t, the date/time prompt will not let
3366 you specify dates outside the 1970-2037 range, so it is certain that
3367 these dates will work in whatever version of Emacs you are
3368 running, and also that you can move a file from one Emacs implementation
3369 to another. WHenever Org is forcing the year for you, it will display
3370 a message and beep.
3372 When this variable is nil, Org will check if the date is
3373 representable in the specific Emacs implementation you are using.
3374 If not, it will force a year, usually the current year, and beep
3375 to remind you. Currently this setting is not recommended because
3376 the likelihood that you will open your Org files in an Emacs that
3377 has limited date range is not negligible.
3379 A workaround for this problem is to use diary sexp dates for time
3380 stamps outside of this range."
3381 :group 'org-time
3382 :version "24.1"
3383 :type 'boolean)
3385 (defcustom org-read-date-display-live t
3386 "Non-nil means display current interpretation of date prompt live.
3387 This display will be in an overlay, in the minibuffer."
3388 :group 'org-time
3389 :type 'boolean)
3391 (defcustom org-read-date-popup-calendar t
3392 "Non-nil means pop up a calendar when prompting for a date.
3393 In the calendar, the date can be selected with mouse-1. However, the
3394 minibuffer will also be active, and you can simply enter the date as well.
3395 When nil, only the minibuffer will be available."
3396 :group 'org-time
3397 :type 'boolean)
3398 (org-defvaralias 'org-popup-calendar-for-date-prompt
3399 'org-read-date-popup-calendar)
3401 (make-obsolete-variable
3402 'org-read-date-minibuffer-setup-hook
3403 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3404 (defcustom org-read-date-minibuffer-setup-hook nil
3405 "Hook to be used to set up keys for the date/time interface.
3406 Add key definitions to `minibuffer-local-map', which will be a
3407 temporary copy.
3409 WARNING: This option is obsolete, you should use
3410 `org-read-date-minibuffer-local-map' to set up keys."
3411 :group 'org-time
3412 :type 'hook)
3414 (defcustom org-extend-today-until 0
3415 "The hour when your day really ends. Must be an integer.
3416 This has influence for the following applications:
3417 - When switching the agenda to \"today\". It it is still earlier than
3418 the time given here, the day recognized as TODAY is actually yesterday.
3419 - When a date is read from the user and it is still before the time given
3420 here, the current date and time will be assumed to be yesterday, 23:59.
3421 Also, timestamps inserted in capture templates follow this rule.
3423 IMPORTANT: This is a feature whose implementation is and likely will
3424 remain incomplete. Really, it is only here because past midnight seems to
3425 be the favorite working time of John Wiegley :-)"
3426 :group 'org-time
3427 :type 'integer)
3429 (defcustom org-use-effective-time nil
3430 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3431 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3432 \"effective time\" of any timestamps between midnight and 8am will be
3433 23:59 of the previous day."
3434 :group 'org-time
3435 :version "24.1"
3436 :type 'boolean)
3438 (defcustom org-use-last-clock-out-time-as-effective-time nil
3439 "When non-nil, use the last clock out time for `org-todo'.
3440 Note that this option has precedence over the combined use of
3441 `org-use-effective-time' and `org-extend-today-until'."
3442 :group 'org-time
3443 :version "24.4"
3444 :package-version '(Org . "8.0")
3445 :type 'boolean)
3447 (defcustom org-edit-timestamp-down-means-later nil
3448 "Non-nil means S-down will increase the time in a time stamp.
3449 When nil, S-up will increase."
3450 :group 'org-time
3451 :type 'boolean)
3453 (defcustom org-calendar-follow-timestamp-change t
3454 "Non-nil means make the calendar window follow timestamp changes.
3455 When a timestamp is modified and the calendar window is visible, it will be
3456 moved to the new date."
3457 :group 'org-time
3458 :type 'boolean)
3460 (defgroup org-tags nil
3461 "Options concerning tags in Org-mode."
3462 :tag "Org Tags"
3463 :group 'org)
3465 (defcustom org-tag-alist nil
3466 "List of tags allowed in Org-mode files.
3467 When this list is nil, Org-mode will base TAG input on what is already in the
3468 buffer.
3469 The value of this variable is an alist, the car of each entry must be a
3470 keyword as a string, the cdr may be a character that is used to select
3471 that tag through the fast-tag-selection interface.
3472 See the manual for details."
3473 :group 'org-tags
3474 :type '(repeat
3475 (choice
3476 (cons (string :tag "Tag name")
3477 (character :tag "Access char"))
3478 (list :tag "Start radio group"
3479 (const :startgroup)
3480 (option (string :tag "Group description")))
3481 (list :tag "Start tag group, non distinct"
3482 (const :startgrouptag)
3483 (option (string :tag "Group description")))
3484 (list :tag "Group tags delimiter"
3485 (const :grouptags))
3486 (list :tag "End radio group"
3487 (const :endgroup)
3488 (option (string :tag "Group description")))
3489 (list :tag "End tag group, non distinct"
3490 (const :endgrouptag)
3491 (option (string :tag "Group description")))
3492 (const :tag "New line" (:newline)))))
3494 (defcustom org-tag-persistent-alist nil
3495 "List of tags that will always appear in all Org-mode files.
3496 This is in addition to any in buffer settings or customizations
3497 of `org-tag-alist'.
3498 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3499 The value of this variable is an alist, the car of each entry must be a
3500 keyword as a string, the cdr may be a character that is used to select
3501 that tag through the fast-tag-selection interface.
3502 See the manual for details.
3503 To disable these tags on a per-file basis, insert anywhere in the file:
3504 #+STARTUP: noptag"
3505 :group 'org-tags
3506 :type '(repeat
3507 (choice
3508 (cons (string :tag "Tag name")
3509 (character :tag "Access char"))
3510 (const :tag "Start radio group" (:startgroup))
3511 (const :tag "Group tags delimiter" (:grouptags))
3512 (const :tag "End radio group" (:endgroup))
3513 (const :tag "New line" (:newline)))))
3515 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3516 "If non-nil, always offer completion for all tags of all agenda files.
3517 Instead of customizing this variable directly, you might want to
3518 set it locally for capture buffers, because there no list of
3519 tags in that file can be created dynamically (there are none).
3521 (add-hook 'org-capture-mode-hook
3522 (lambda ()
3523 (set (make-local-variable
3524 'org-complete-tags-always-offer-all-agenda-tags)
3525 t)))"
3526 :group 'org-tags
3527 :version "24.1"
3528 :type 'boolean)
3530 (defvar org-file-tags nil
3531 "List of tags that can be inherited by all entries in the file.
3532 The tags will be inherited if the variable `org-use-tag-inheritance'
3533 says they should be.
3534 This variable is populated from #+FILETAGS lines.")
3536 (defcustom org-use-fast-tag-selection 'auto
3537 "Non-nil means use fast tag selection scheme.
3538 This is a special interface to select and deselect tags with single keys.
3539 When nil, fast selection is never used.
3540 When the symbol `auto', fast selection is used if and only if selection
3541 characters for tags have been configured, either through the variable
3542 `org-tag-alist' or through a #+TAGS line in the buffer.
3543 When t, fast selection is always used and selection keys are assigned
3544 automatically if necessary."
3545 :group 'org-tags
3546 :type '(choice
3547 (const :tag "Always" t)
3548 (const :tag "Never" nil)
3549 (const :tag "When selection characters are configured" auto)))
3551 (defcustom org-fast-tag-selection-single-key nil
3552 "Non-nil means fast tag selection exits after first change.
3553 When nil, you have to press RET to exit it.
3554 During fast tag selection, you can toggle this flag with `C-c'.
3555 This variable can also have the value `expert'. In this case, the window
3556 displaying the tags menu is not even shown, until you press C-c again."
3557 :group 'org-tags
3558 :type '(choice
3559 (const :tag "No" nil)
3560 (const :tag "Yes" t)
3561 (const :tag "Expert" expert)))
3563 (defvar org-fast-tag-selection-include-todo nil
3564 "Non-nil means fast tags selection interface will also offer TODO states.
3565 This is an undocumented feature, you should not rely on it.")
3567 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3568 "The column to which tags should be indented in a headline.
3569 If this number is positive, it specifies the column. If it is negative,
3570 it means that the tags should be flushright to that column. For example,
3571 -80 works well for a normal 80 character screen.
3572 When 0, place tags directly after headline text, with only one space in
3573 between."
3574 :group 'org-tags
3575 :type 'integer)
3577 (defcustom org-auto-align-tags t
3578 "Non-nil keeps tags aligned when modifying headlines.
3579 Some operations (i.e. demoting) change the length of a headline and
3580 therefore shift the tags around. With this option turned on, after
3581 each such operation the tags are again aligned to `org-tags-column'."
3582 :group 'org-tags
3583 :type 'boolean)
3585 (defcustom org-use-tag-inheritance t
3586 "Non-nil means tags in levels apply also for sublevels.
3587 When nil, only the tags directly given in a specific line apply there.
3588 This may also be a list of tags that should be inherited, or a regexp that
3589 matches tags that should be inherited. Additional control is possible
3590 with the variable `org-tags-exclude-from-inheritance' which gives an
3591 explicit list of tags to be excluded from inheritance, even if the value of
3592 `org-use-tag-inheritance' would select it for inheritance.
3594 If this option is t, a match early-on in a tree can lead to a large
3595 number of matches in the subtree when constructing the agenda or creating
3596 a sparse tree. If you only want to see the first match in a tree during
3597 a search, check out the variable `org-tags-match-list-sublevels'."
3598 :group 'org-tags
3599 :type '(choice
3600 (const :tag "Not" nil)
3601 (const :tag "Always" t)
3602 (repeat :tag "Specific tags" (string :tag "Tag"))
3603 (regexp :tag "Tags matched by regexp")))
3605 (defcustom org-tags-exclude-from-inheritance nil
3606 "List of tags that should never be inherited.
3607 This is a way to exclude a few tags from inheritance. For way to do
3608 the opposite, to actively allow inheritance for selected tags,
3609 see the variable `org-use-tag-inheritance'."
3610 :group 'org-tags
3611 :type '(repeat (string :tag "Tag")))
3613 (defun org-tag-inherit-p (tag)
3614 "Check if TAG is one that should be inherited."
3615 (cond
3616 ((member tag org-tags-exclude-from-inheritance) nil)
3617 ((eq org-use-tag-inheritance t) t)
3618 ((not org-use-tag-inheritance) nil)
3619 ((stringp org-use-tag-inheritance)
3620 (string-match org-use-tag-inheritance tag))
3621 ((listp org-use-tag-inheritance)
3622 (member tag org-use-tag-inheritance))
3623 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3625 (defcustom org-tags-match-list-sublevels t
3626 "Non-nil means list also sublevels of headlines matching a search.
3627 This variable applies to tags/property searches, and also to stuck
3628 projects because this search is based on a tags match as well.
3630 When set to the symbol `indented', sublevels are indented with
3631 leading dots.
3633 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3634 the sublevels of a headline matching a tag search often also match
3635 the same search. Listing all of them can create very long lists.
3636 Setting this variable to nil causes subtrees of a match to be skipped.
3638 This variable is semi-obsolete and probably should always be true. It
3639 is better to limit inheritance to certain tags using the variables
3640 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3641 :group 'org-tags
3642 :type '(choice
3643 (const :tag "No, don't list them" nil)
3644 (const :tag "Yes, do list them" t)
3645 (const :tag "List them, indented with leading dots" indented)))
3647 (defcustom org-tags-sort-function nil
3648 "When set, tags are sorted using this function as a comparator."
3649 :group 'org-tags
3650 :type '(choice
3651 (const :tag "No sorting" nil)
3652 (const :tag "Alphabetical" string<)
3653 (const :tag "Reverse alphabetical" string>)
3654 (function :tag "Custom function" nil)))
3656 (defvar org-tags-history nil
3657 "History of minibuffer reads for tags.")
3658 (defvar org-last-tags-completion-table nil
3659 "The last used completion table for tags.")
3660 (defvar org-after-tags-change-hook nil
3661 "Hook that is run after the tags in a line have changed.")
3663 (defgroup org-properties nil
3664 "Options concerning properties in Org-mode."
3665 :tag "Org Properties"
3666 :group 'org)
3668 (defcustom org-property-format "%-10s %s"
3669 "How property key/value pairs should be formatted by `indent-line'.
3670 When `indent-line' hits a property definition, it will format the line
3671 according to this format, mainly to make sure that the values are
3672 lined-up with respect to each other."
3673 :group 'org-properties
3674 :type 'string)
3676 (defcustom org-properties-postprocess-alist nil
3677 "Alist of properties and functions to adjust inserted values.
3678 Elements of this alist must be of the form
3680 ([string] [function])
3682 where [string] must be a property name and [function] must be a
3683 lambda expression: this lambda expression must take one argument,
3684 the value to adjust, and return the new value as a string.
3686 For example, this element will allow the property \"Remaining\"
3687 to be updated wrt the relation between the \"Effort\" property
3688 and the clock summary:
3690 ((\"Remaining\" (lambda(value)
3691 (let ((clocksum (org-clock-sum-current-item))
3692 (effort (org-duration-string-to-minutes
3693 (org-entry-get (point) \"Effort\"))))
3694 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3695 :group 'org-properties
3696 :version "24.1"
3697 :type '(alist :key-type (string :tag "Property")
3698 :value-type (function :tag "Function")))
3700 (defcustom org-use-property-inheritance nil
3701 "Non-nil means properties apply also for sublevels.
3703 This setting is chiefly used during property searches. Turning it on can
3704 cause significant overhead when doing a search, which is why it is not
3705 on by default.
3707 When nil, only the properties directly given in the current entry count.
3708 When t, every property is inherited. The value may also be a list of
3709 properties that should have inheritance, or a regular expression matching
3710 properties that should be inherited.
3712 However, note that some special properties use inheritance under special
3713 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3714 and the properties ending in \"_ALL\" when they are used as descriptor
3715 for valid values of a property.
3717 Note for programmers:
3718 When querying an entry with `org-entry-get', you can control if inheritance
3719 should be used. By default, `org-entry-get' looks only at the local
3720 properties. You can request inheritance by setting the inherit argument
3721 to t (to force inheritance) or to `selective' (to respect the setting
3722 in this variable)."
3723 :group 'org-properties
3724 :type '(choice
3725 (const :tag "Not" nil)
3726 (const :tag "Always" t)
3727 (repeat :tag "Specific properties" (string :tag "Property"))
3728 (regexp :tag "Properties matched by regexp")))
3730 (defun org-property-inherit-p (property)
3731 "Check if PROPERTY is one that should be inherited."
3732 (cond
3733 ((eq org-use-property-inheritance t) t)
3734 ((not org-use-property-inheritance) nil)
3735 ((stringp org-use-property-inheritance)
3736 (string-match org-use-property-inheritance property))
3737 ((listp org-use-property-inheritance)
3738 (member property org-use-property-inheritance))
3739 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3741 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3742 "The default column format, if no other format has been defined.
3743 This variable can be set on the per-file basis by inserting a line
3745 #+COLUMNS: %25ITEM ....."
3746 :group 'org-properties
3747 :type 'string)
3749 (defcustom org-columns-ellipses ".."
3750 "The ellipses to be used when a field in column view is truncated.
3751 When this is the empty string, as many characters as possible are shown,
3752 but then there will be no visual indication that the field has been truncated.
3753 When this is a string of length N, the last N characters of a truncated
3754 field are replaced by this string. If the column is narrower than the
3755 ellipses string, only part of the ellipses string will be shown."
3756 :group 'org-properties
3757 :type 'string)
3759 (defcustom org-columns-modify-value-for-display-function nil
3760 "Function that modifies values for display in column view.
3761 For example, it can be used to cut out a certain part from a time stamp.
3762 The function must take 2 arguments:
3764 column-title The title of the column (*not* the property name)
3765 value The value that should be modified.
3767 The function should return the value that should be displayed,
3768 or nil if the normal value should be used."
3769 :group 'org-properties
3770 :type '(choice (const nil) (function)))
3772 (defconst org-global-properties-fixed
3773 '(("VISIBILITY_ALL" . "folded children content all")
3774 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3775 "List of property/value pairs that can be inherited by any entry.
3777 These are fixed values, for the preset properties. The user variable
3778 that can be used to add to this list is `org-global-properties'.
3780 The entries in this list are cons cells where the car is a property
3781 name and cdr is a string with the value. If the value represents
3782 multiple items like an \"_ALL\" property, separate the items by
3783 spaces.")
3785 (defcustom org-global-properties nil
3786 "List of property/value pairs that can be inherited by any entry.
3788 This list will be combined with the constant `org-global-properties-fixed'.
3790 The entries in this list are cons cells where the car is a property
3791 name and cdr is a string with the value.
3793 You can set buffer-local values for the same purpose in the variable
3794 `org-file-properties' this by adding lines like
3796 #+PROPERTY: NAME VALUE"
3797 :group 'org-properties
3798 :type '(repeat
3799 (cons (string :tag "Property")
3800 (string :tag "Value"))))
3802 (defvar org-file-properties nil
3803 "List of property/value pairs that can be inherited by any entry.
3804 Valid for the current buffer.
3805 This variable is populated from #+PROPERTY lines.")
3806 (make-variable-buffer-local 'org-file-properties)
3808 (defgroup org-agenda nil
3809 "Options concerning agenda views in Org-mode."
3810 :tag "Org Agenda"
3811 :group 'org)
3813 (defvar org-category nil
3814 "Variable used by org files to set a category for agenda display.
3815 Such files should use a file variable to set it, for example
3817 # -*- mode: org; org-category: \"ELisp\"
3819 or contain a special line
3821 #+CATEGORY: ELisp
3823 If the file does not specify a category, then file's base name
3824 is used instead.")
3825 (make-variable-buffer-local 'org-category)
3826 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3828 (defcustom org-agenda-files nil
3829 "The files to be used for agenda display.
3830 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3831 \\[org-remove-file]. You can also use customize to edit the list.
3833 If an entry is a directory, all files in that directory that are matched by
3834 `org-agenda-file-regexp' will be part of the file list.
3836 If the value of the variable is not a list but a single file name, then
3837 the list of agenda files is actually stored and maintained in that file, one
3838 agenda file per line. In this file paths can be given relative to
3839 `org-directory'. Tilde expansion and environment variable substitution
3840 are also made."
3841 :group 'org-agenda
3842 :type '(choice
3843 (repeat :tag "List of files and directories" file)
3844 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3846 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3847 "Regular expression to match files for `org-agenda-files'.
3848 If any element in the list in that variable contains a directory instead
3849 of a normal file, all files in that directory that are matched by this
3850 regular expression will be included."
3851 :group 'org-agenda
3852 :type 'regexp)
3854 (defcustom org-agenda-text-search-extra-files nil
3855 "List of extra files to be searched by text search commands.
3856 These files will be searched in addition to the agenda files by the
3857 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3858 Note that these files will only be searched for text search commands,
3859 not for the other agenda views like todo lists, tag searches or the weekly
3860 agenda. This variable is intended to list notes and possibly archive files
3861 that should also be searched by these two commands.
3862 In fact, if the first element in the list is the symbol `agenda-archives',
3863 then all archive files of all agenda files will be added to the search
3864 scope."
3865 :group 'org-agenda
3866 :type '(set :greedy t
3867 (const :tag "Agenda Archives" agenda-archives)
3868 (repeat :inline t (file))))
3870 (org-defvaralias 'org-agenda-multi-occur-extra-files
3871 'org-agenda-text-search-extra-files)
3873 (defcustom org-agenda-skip-unavailable-files nil
3874 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3875 A nil value means to remove them, after a query, from the list."
3876 :group 'org-agenda
3877 :type 'boolean)
3879 (defcustom org-calendar-to-agenda-key [?c]
3880 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3881 The command `org-calendar-goto-agenda' will be bound to this key. The
3882 default is the character `c' because then `c' can be used to switch back and
3883 forth between agenda and calendar."
3884 :group 'org-agenda
3885 :type 'sexp)
3887 (defcustom org-calendar-insert-diary-entry-key [?i]
3888 "The key to be installed in `calendar-mode-map' for adding diary entries.
3889 This option is irrelevant until `org-agenda-diary-file' has been configured
3890 to point to an Org-mode file. When that is the case, the command
3891 `org-agenda-diary-entry' will be bound to the key given here, by default
3892 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3893 if you want to continue doing this, you need to change this to a different
3894 key."
3895 :group 'org-agenda
3896 :type 'sexp)
3898 (defcustom org-agenda-diary-file 'diary-file
3899 "File to which to add new entries with the `i' key in agenda and calendar.
3900 When this is the symbol `diary-file', the functionality in the Emacs
3901 calendar will be used to add entries to the `diary-file'. But when this
3902 points to a file, `org-agenda-diary-entry' will be used instead."
3903 :group 'org-agenda
3904 :type '(choice
3905 (const :tag "The standard Emacs diary file" diary-file)
3906 (file :tag "Special Org file diary entries")))
3908 (eval-after-load "calendar"
3909 '(progn
3910 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3911 'org-calendar-goto-agenda)
3912 (add-hook 'calendar-mode-hook
3913 (lambda ()
3914 (unless (eq org-agenda-diary-file 'diary-file)
3915 (define-key calendar-mode-map
3916 org-calendar-insert-diary-entry-key
3917 'org-agenda-diary-entry))))))
3919 (defgroup org-latex nil
3920 "Options for embedding LaTeX code into Org-mode."
3921 :tag "Org LaTeX"
3922 :group 'org)
3924 (defcustom org-format-latex-options
3925 '(:foreground default :background default :scale 1.0
3926 :html-foreground "Black" :html-background "Transparent"
3927 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3928 "Options for creating images from LaTeX fragments.
3929 This is a property list with the following properties:
3930 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3931 `default' means use the foreground of the default face.
3932 `auto' means use the foreground from the text face.
3933 :background the background color, or \"Transparent\".
3934 `default' means use the background of the default face.
3935 `auto' means use the background from the text face.
3936 :scale a scaling factor for the size of the images, to get more pixels
3937 :html-foreground, :html-background, :html-scale
3938 the same numbers for HTML export.
3939 :matchers a list indicating which matchers should be used to
3940 find LaTeX fragments. Valid members of this list are:
3941 \"begin\" find environments
3942 \"$1\" find single characters surrounded by $.$
3943 \"$\" find math expressions surrounded by $...$
3944 \"$$\" find math expressions surrounded by $$....$$
3945 \"\\(\" find math expressions surrounded by \\(...\\)
3946 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3947 :group 'org-latex
3948 :type 'plist)
3950 (defcustom org-format-latex-signal-error t
3951 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3952 When nil, just push out a message."
3953 :group 'org-latex
3954 :version "24.1"
3955 :type 'boolean)
3957 (defcustom org-latex-to-mathml-jar-file nil
3958 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3959 Use this to specify additional executable file say a jar file.
3961 When using MathToWeb as the converter, specify the full-path to
3962 your mathtoweb.jar file."
3963 :group 'org-latex
3964 :version "24.1"
3965 :type '(choice
3966 (const :tag "None" nil)
3967 (file :tag "JAR file" :must-match t)))
3969 (defcustom org-latex-to-mathml-convert-command nil
3970 "Command to convert LaTeX fragments to MathML.
3971 Replace format-specifiers in the command as noted below and use
3972 `shell-command' to convert LaTeX to MathML.
3973 %j: Executable file in fully expanded form as specified by
3974 `org-latex-to-mathml-jar-file'.
3975 %I: Input LaTeX file in fully expanded form.
3976 %i: The latex fragment to be converted.
3977 %o: Output MathML file.
3979 This command is used by `org-create-math-formula'.
3981 When using MathToWeb as the converter, set this option to
3982 \"java -jar %j -unicode -force -df %o %I\".
3984 When using LaTeXML set this option to
3985 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3986 :group 'org-latex
3987 :version "24.1"
3988 :type '(choice
3989 (const :tag "None" nil)
3990 (string :tag "\nShell command")))
3992 (defcustom org-latex-create-formula-image-program 'dvipng
3993 "Program to convert LaTeX fragments with.
3995 dvipng Process the LaTeX fragments to dvi file, then convert
3996 dvi files to png files using dvipng.
3997 This will also include processing of non-math environments.
3998 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3999 to convert pdf files to png files"
4000 :group 'org-latex
4001 :version "24.1"
4002 :type '(choice
4003 (const :tag "dvipng" dvipng)
4004 (const :tag "imagemagick" imagemagick)))
4006 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4007 "Path to store latex preview images.
4008 A relative path here creates many directories relative to the
4009 processed org files paths. An absolute path puts all preview
4010 images at the same place."
4011 :group 'org-latex
4012 :version "24.3"
4013 :type 'string)
4015 (defun org-format-latex-mathml-available-p ()
4016 "Return t if `org-latex-to-mathml-convert-command' is usable."
4017 (save-match-data
4018 (when (and (boundp 'org-latex-to-mathml-convert-command)
4019 org-latex-to-mathml-convert-command)
4020 (let ((executable (car (split-string
4021 org-latex-to-mathml-convert-command))))
4022 (when (executable-find executable)
4023 (if (string-match
4024 "%j" org-latex-to-mathml-convert-command)
4025 (file-readable-p org-latex-to-mathml-jar-file)
4026 t))))))
4028 (defcustom org-format-latex-header "\\documentclass{article}
4029 \\usepackage[usenames]{color}
4030 \[PACKAGES]
4031 \[DEFAULT-PACKAGES]
4032 \\pagestyle{empty} % do not remove
4033 % The settings below are copied from fullpage.sty
4034 \\setlength{\\textwidth}{\\paperwidth}
4035 \\addtolength{\\textwidth}{-3cm}
4036 \\setlength{\\oddsidemargin}{1.5cm}
4037 \\addtolength{\\oddsidemargin}{-2.54cm}
4038 \\setlength{\\evensidemargin}{\\oddsidemargin}
4039 \\setlength{\\textheight}{\\paperheight}
4040 \\addtolength{\\textheight}{-\\headheight}
4041 \\addtolength{\\textheight}{-\\headsep}
4042 \\addtolength{\\textheight}{-\\footskip}
4043 \\addtolength{\\textheight}{-3cm}
4044 \\setlength{\\topmargin}{1.5cm}
4045 \\addtolength{\\topmargin}{-2.54cm}"
4046 "The document header used for processing LaTeX fragments.
4047 It is imperative that this header make sure that no page number
4048 appears on the page. The package defined in the variables
4049 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4050 will either replace the placeholder \"[PACKAGES]\" in this
4051 header, or they will be appended."
4052 :group 'org-latex
4053 :type 'string)
4055 (defun org-set-packages-alist (var val)
4056 "Set the packages alist and make sure it has 3 elements per entry."
4057 (set var (mapcar (lambda (x)
4058 (if (and (consp x) (= (length x) 2))
4059 (list (car x) (nth 1 x) t)
4061 val)))
4063 (defun org-get-packages-alist (var)
4064 "Get the packages alist and make sure it has 3 elements per entry."
4065 (mapcar (lambda (x)
4066 (if (and (consp x) (= (length x) 2))
4067 (list (car x) (nth 1 x) t)
4069 (default-value var)))
4071 (defcustom org-latex-default-packages-alist
4072 '(("AUTO" "inputenc" t)
4073 ("T1" "fontenc" t)
4074 ("" "fixltx2e" nil)
4075 ("" "graphicx" t)
4076 ("" "grffile" t)
4077 ("" "longtable" nil)
4078 ("" "wrapfig" nil)
4079 ("" "rotating" nil)
4080 ("normalem" "ulem" t)
4081 ("" "amsmath" t)
4082 ("" "textcomp" t)
4083 ("" "amssymb" t)
4084 ("" "capt-of" nil)
4085 ("" "hyperref" nil))
4086 "Alist of default packages to be inserted in the header.
4088 Change this only if one of the packages here causes an
4089 incompatibility with another package you are using.
4091 The packages in this list are needed by one part or another of
4092 Org mode to function properly:
4094 - inputenc, fontenc: for basic font and character selection
4095 - fixltx2e: Important patches of LaTeX itself
4096 - graphicx: for including images
4097 - grffile: allow periods and spaces in graphics file names
4098 - longtable: For multipage tables
4099 - wrapfig: for figure placement
4100 - rotating: for sideways figures and tables
4101 - ulem: for underline and strike-through
4102 - amsmath: for subscript and superscript and math environments
4103 - textcomp, amssymb: for various symbols used
4104 for interpreting the entities in `org-entities'. You can skip
4105 some of these packages if you don't use any of their symbols.
4106 - capt-of: for captions outside of floats
4107 - hyperref: for cross references
4109 Therefore you should not modify this variable unless you know
4110 what you are doing. The one reason to change it anyway is that
4111 you might be loading some other package that conflicts with one
4112 of the default packages. Each element is either a cell or
4113 a string.
4115 A cell is of the format
4117 \(\"options\" \"package\" SNIPPET-FLAG)
4119 If SNIPPET-FLAG is non-nil, the package also needs to be included
4120 when compiling LaTeX snippets into images for inclusion into
4121 non-LaTeX output.
4123 A string will be inserted as-is in the header of the document."
4124 :group 'org-latex
4125 :group 'org-export-latex
4126 :set 'org-set-packages-alist
4127 :get 'org-get-packages-alist
4128 :version "25.1"
4129 :package-version '(Org . "8.3")
4130 :type '(repeat
4131 (choice
4132 (list :tag "options/package pair"
4133 (string :tag "options")
4134 (string :tag "package")
4135 (boolean :tag "Snippet"))
4136 (string :tag "A line of LaTeX"))))
4138 (defcustom org-latex-packages-alist nil
4139 "Alist of packages to be inserted in every LaTeX header.
4141 These will be inserted after `org-latex-default-packages-alist'.
4142 Each element is either a cell or a string.
4144 A cell is of the format:
4146 \(\"options\" \"package\" SNIPPET-FLAG)
4148 SNIPPET-FLAG, when non-nil, indicates that this package is also
4149 needed when turning LaTeX snippets into images for inclusion into
4150 non-LaTeX output.
4152 A string will be inserted as-is in the header of the document.
4154 Make sure that you only list packages here which:
4156 - you want in every file;
4157 - do not conflict with the setup in `org-format-latex-header';
4158 - do not conflict with the default packages in
4159 `org-latex-default-packages-alist'."
4160 :group 'org-latex
4161 :group 'org-export-latex
4162 :set 'org-set-packages-alist
4163 :get 'org-get-packages-alist
4164 :type '(repeat
4165 (choice
4166 (list :tag "options/package pair"
4167 (string :tag "options")
4168 (string :tag "package")
4169 (boolean :tag "Snippet"))
4170 (string :tag "A line of LaTeX"))))
4172 (defgroup org-appearance nil
4173 "Settings for Org-mode appearance."
4174 :tag "Org Appearance"
4175 :group 'org)
4177 (defcustom org-level-color-stars-only nil
4178 "Non-nil means fontify only the stars in each headline.
4179 When nil, the entire headline is fontified.
4180 Changing it requires restart of `font-lock-mode' to become effective
4181 also in regions already fontified."
4182 :group 'org-appearance
4183 :type 'boolean)
4185 (defcustom org-hide-leading-stars nil
4186 "Non-nil means hide the first N-1 stars in a headline.
4187 This works by using the face `org-hide' for these stars. This
4188 face is white for a light background, and black for a dark
4189 background. You may have to customize the face `org-hide' to
4190 make this work.
4191 Changing it requires restart of `font-lock-mode' to become effective
4192 also in regions already fontified.
4193 You may also set this on a per-file basis by adding one of the following
4194 lines to the buffer:
4196 #+STARTUP: hidestars
4197 #+STARTUP: showstars"
4198 :group 'org-appearance
4199 :type 'boolean)
4201 (defcustom org-hidden-keywords nil
4202 "List of symbols corresponding to keywords to be hidden the org buffer.
4203 For example, a value '(title) for this list will make the document's title
4204 appear in the buffer without the initial #+TITLE: keyword."
4205 :group 'org-appearance
4206 :version "24.1"
4207 :type '(set (const :tag "#+AUTHOR" author)
4208 (const :tag "#+DATE" date)
4209 (const :tag "#+EMAIL" email)
4210 (const :tag "#+TITLE" title)))
4212 (defcustom org-custom-properties nil
4213 "List of properties (as strings) with a special meaning.
4214 The default use of these custom properties is to let the user
4215 hide them with `org-toggle-custom-properties-visibility'."
4216 :group 'org-properties
4217 :group 'org-appearance
4218 :version "24.3"
4219 :type '(repeat (string :tag "Property Name")))
4221 (defcustom org-fontify-done-headline nil
4222 "Non-nil means change the face of a headline if it is marked DONE.
4223 Normally, only the TODO/DONE keyword indicates the state of a headline.
4224 When this is non-nil, the headline after the keyword is set to the
4225 `org-headline-done' as an additional indication."
4226 :group 'org-appearance
4227 :type 'boolean)
4229 (defcustom org-fontify-emphasized-text t
4230 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4231 Changing this variable requires a restart of Emacs to take effect."
4232 :group 'org-appearance
4233 :type 'boolean)
4235 (defcustom org-fontify-whole-heading-line nil
4236 "Non-nil means fontify the whole line for headings.
4237 This is useful when setting a background color for the
4238 org-level-* faces."
4239 :group 'org-appearance
4240 :type 'boolean)
4242 (defcustom org-highlight-latex-and-related nil
4243 "Non-nil means highlight LaTeX related syntax in the buffer.
4244 When non nil, the value should be a list containing any of the
4245 following symbols:
4246 `latex' Highlight LaTeX snippets and environments.
4247 `script' Highlight subscript and superscript.
4248 `entities' Highlight entities."
4249 :group 'org-appearance
4250 :version "24.4"
4251 :package-version '(Org . "8.0")
4252 :type '(choice
4253 (const :tag "No highlighting" nil)
4254 (set :greedy t :tag "Highlight"
4255 (const :tag "LaTeX snippets and environments" latex)
4256 (const :tag "Subscript and superscript" script)
4257 (const :tag "Entities" entities))))
4259 (defcustom org-hide-emphasis-markers nil
4260 "Non-nil mean font-lock should hide the emphasis marker characters."
4261 :group 'org-appearance
4262 :type 'boolean)
4264 (defcustom org-hide-macro-markers nil
4265 "Non-nil mean font-lock should hide the brackets marking macro calls."
4266 :group 'org-appearance
4267 :type 'boolean)
4269 (defcustom org-pretty-entities nil
4270 "Non-nil means show entities as UTF8 characters.
4271 When nil, the \\name form remains in the buffer."
4272 :group 'org-appearance
4273 :version "24.1"
4274 :type 'boolean)
4276 (defcustom org-pretty-entities-include-sub-superscripts t
4277 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4278 :group 'org-appearance
4279 :version "24.1"
4280 :type 'boolean)
4282 (defvar org-emph-re nil
4283 "Regular expression for matching emphasis.
4284 After a match, the match groups contain these elements:
4285 0 The match of the full regular expression, including the characters
4286 before and after the proper match
4287 1 The character before the proper match, or empty at beginning of line
4288 2 The proper match, including the leading and trailing markers
4289 3 The leading marker like * or /, indicating the type of highlighting
4290 4 The text between the emphasis markers, not including the markers
4291 5 The character after the match, empty at the end of a line")
4292 (defvar org-verbatim-re nil
4293 "Regular expression for matching verbatim text.")
4294 (defvar org-emphasis-regexp-components) ; defined just below
4295 (defvar org-emphasis-alist) ; defined just below
4296 (defun org-set-emph-re (var val)
4297 "Set variable and compute the emphasis regular expression."
4298 (set var val)
4299 (when (and (boundp 'org-emphasis-alist)
4300 (boundp 'org-emphasis-regexp-components)
4301 org-emphasis-alist org-emphasis-regexp-components)
4302 (let* ((e org-emphasis-regexp-components)
4303 (pre (car e))
4304 (post (nth 1 e))
4305 (border (nth 2 e))
4306 (body (nth 3 e))
4307 (nl (nth 4 e))
4308 (body1 (concat body "*?"))
4309 (markers (mapconcat 'car org-emphasis-alist ""))
4310 (vmarkers (mapconcat
4311 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4312 org-emphasis-alist "")))
4313 ;; make sure special characters appear at the right position in the class
4314 (if (string-match "\\^" markers)
4315 (setq markers (concat (replace-match "" t t markers) "^")))
4316 (if (string-match "-" markers)
4317 (setq markers (concat (replace-match "" t t markers) "-")))
4318 (if (string-match "\\^" vmarkers)
4319 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4320 (if (string-match "-" vmarkers)
4321 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4322 (if (> nl 0)
4323 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4324 (int-to-string nl) "\\}")))
4325 ;; Make the regexp
4326 (setq org-emph-re
4327 (concat "\\([" pre "]\\|^\\)"
4328 "\\("
4329 "\\([" markers "]\\)"
4330 "\\("
4331 "[^" border "]\\|"
4332 "[^" border "]"
4333 body1
4334 "[^" border "]"
4335 "\\)"
4336 "\\3\\)"
4337 "\\([" post "]\\|$\\)"))
4338 (setq org-verbatim-re
4339 (concat "\\([" pre "]\\|^\\)"
4340 "\\("
4341 "\\([" vmarkers "]\\)"
4342 "\\("
4343 "[^" border "]\\|"
4344 "[^" border "]"
4345 body1
4346 "[^" border "]"
4347 "\\)"
4348 "\\3\\)"
4349 "\\([" post "]\\|$\\)")))))
4351 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4352 ;; set this option proved cumbersome. See this message/thread:
4353 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4354 (defvar org-emphasis-regexp-components
4355 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4356 "Components used to build the regular expression for emphasis.
4357 This is a list with five entries. Terminology: In an emphasis string
4358 like \" *strong word* \", we call the initial space PREMATCH, the final
4359 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4360 and \"trong wor\" is the body. The different components in this variable
4361 specify what is allowed/forbidden in each part:
4363 pre Chars allowed as prematch. Beginning of line will be allowed too.
4364 post Chars allowed as postmatch. End of line will be allowed too.
4365 border The chars *forbidden* as border characters.
4366 body-regexp A regexp like \".\" to match a body character. Don't use
4367 non-shy groups here, and don't allow newline here.
4368 newline The maximum number of newlines allowed in an emphasis exp.
4370 You need to reload Org or to restart Emacs after customizing this.")
4372 (defcustom org-emphasis-alist
4373 `(("*" bold)
4374 ("/" italic)
4375 ("_" underline)
4376 ("=" org-verbatim verbatim)
4377 ("~" org-code verbatim)
4378 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4379 "Alist of characters and faces to emphasize text.
4380 Text starting and ending with a special character will be emphasized,
4381 for example *bold*, _underlined_ and /italic/. This variable sets the
4382 marker characters and the face to be used by font-lock for highlighting
4383 in Org-mode Emacs buffers.
4385 You need to reload Org or to restart Emacs after customizing this."
4386 :group 'org-appearance
4387 :set 'org-set-emph-re
4388 :version "24.4"
4389 :package-version '(Org . "8.0")
4390 :type '(repeat
4391 (list
4392 (string :tag "Marker character")
4393 (choice
4394 (face :tag "Font-lock-face")
4395 (plist :tag "Face property list"))
4396 (option (const verbatim)))))
4398 (defvar org-protecting-blocks
4399 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4400 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4401 This is needed for font-lock setup.")
4403 ;;; Miscellaneous options
4405 (defgroup org-completion nil
4406 "Completion in Org-mode."
4407 :tag "Org Completion"
4408 :group 'org)
4410 (defcustom org-completion-use-ido nil
4411 "Non-nil means use ido completion wherever possible.
4412 Note that `ido-mode' must be active for this variable to be relevant.
4413 If you decide to turn this variable on, you might well want to turn off
4414 `org-outline-path-complete-in-steps'.
4415 See also `org-completion-use-iswitchb'."
4416 :group 'org-completion
4417 :type 'boolean)
4419 (defcustom org-completion-use-iswitchb nil
4420 "Non-nil means use iswitchb completion wherever possible.
4421 Note that `iswitchb-mode' must be active for this variable to be relevant.
4422 If you decide to turn this variable on, you might well want to turn off
4423 `org-outline-path-complete-in-steps'.
4424 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4425 :group 'org-completion
4426 :type 'boolean)
4428 (defcustom org-completion-fallback-command 'hippie-expand
4429 "The expansion command called by \\[pcomplete] in normal context.
4430 Normal means, no org-mode-specific context."
4431 :group 'org-completion
4432 :type 'function)
4434 ;;; Functions and variables from their packages
4435 ;; Declared here to avoid compiler warnings
4437 ;; XEmacs only
4438 (defvar outline-mode-menu-heading)
4439 (defvar outline-mode-menu-show)
4440 (defvar outline-mode-menu-hide)
4441 (defvar zmacs-regions) ; XEmacs regions
4443 ;; Emacs only
4444 (defvar mark-active)
4446 ;; Various packages
4447 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4448 (declare-function calendar-forward-day "cal-move" (arg))
4449 (declare-function calendar-goto-date "cal-move" (date))
4450 (declare-function calendar-goto-today "cal-move" ())
4451 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4452 (defvar calc-embedded-close-formula)
4453 (defvar calc-embedded-open-formula)
4454 (declare-function cdlatex-tab "ext:cdlatex" ())
4455 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4456 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4457 (defvar font-lock-unfontify-region-function)
4458 (declare-function iswitchb-read-buffer "iswitchb"
4459 (prompt &optional default require-match start matches-set))
4460 (defvar iswitchb-temp-buflist)
4461 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4462 (defvar org-agenda-tags-todo-honor-ignore-options)
4463 (declare-function org-agenda-skip "org-agenda" ())
4464 (declare-function
4465 org-agenda-format-item "org-agenda"
4466 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4467 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4468 (declare-function org-agenda-change-all-lines "org-agenda"
4469 (newhead hdmarker &optional fixface just-this))
4470 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4471 (declare-function org-agenda-maybe-redo "org-agenda" ())
4472 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4473 (beg end))
4474 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4475 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4476 "org-agenda" (&optional end))
4477 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4478 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4479 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4480 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4481 (declare-function org-indent-mode "org-indent" (&optional arg))
4482 (declare-function parse-time-string "parse-time" (string))
4483 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4484 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4485 (defvar remember-data-file)
4486 (defvar texmathp-why)
4487 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4488 (declare-function table--at-cell-p "table" (position &optional object at-column))
4489 (declare-function calc-eval "calc" (str &optional separator &rest args))
4491 ;;;###autoload
4492 (defun turn-on-orgtbl ()
4493 "Unconditionally turn on `orgtbl-mode'."
4494 (require 'org-table)
4495 (orgtbl-mode 1))
4497 (defun org-at-table-p (&optional table-type)
4498 "Non-nil if the cursor is inside an Org table.
4499 If TABLE-TYPE is non-nil, also check for table.el-type tables.
4500 If `org-enable-table-editor' is nil, return nil unconditionally."
4501 (and
4502 org-enable-table-editor
4503 (save-excursion
4504 (beginning-of-line)
4505 (org-looking-at-p (if table-type "[ \t]*[|+]" "[ \t]*|")))
4506 (or (not (derived-mode-p 'org-mode))
4507 (let ((e (org-element-lineage (org-element-at-point) '(table) t)))
4508 (and e (or table-type (eq (org-element-property :type e) 'org)))))))
4509 (defsubst org-table-p () (org-at-table-p))
4511 (defun org-at-table.el-p ()
4512 "Non-nil when point is at a table.el table."
4513 (and (save-excursion (beginning-of-line) (looking-at "[ \t]*[|+]"))
4514 (let ((element (org-element-at-point)))
4515 (and (eq (org-element-type element) 'table)
4516 (eq (org-element-property :type element) 'table.el)))))
4518 (defun org-table-recognize-table.el ()
4519 "If there is a table.el table nearby, recognize it and move into it."
4520 (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
4521 (beginning-of-line)
4522 (unless (or (looking-at org-table-dataline-regexp)
4523 (not (looking-at org-table1-hline-regexp)))
4524 (forward-line)
4525 (when (looking-at org-table-any-border-regexp)
4526 (forward-line -2)))
4527 (if (re-search-forward "|" (org-table-end t) t)
4528 (progn
4529 (require 'table)
4530 (if (table--at-cell-p (point)) t
4531 (message "recognizing table.el table...")
4532 (table-recognize-table)
4533 (message "recognizing table.el table...done")))
4534 (error "This should not happen"))))
4536 (defun org-at-table-hline-p ()
4537 "Non-nil when point is inside a hline in a table.
4538 Assume point is already in a table. If `org-enable-table-editor'
4539 is nil, return nil unconditionally."
4540 (and org-enable-table-editor
4541 (save-excursion
4542 (beginning-of-line)
4543 (looking-at org-table-hline-regexp))))
4545 (defun org-table-map-tables (function &optional quietly)
4546 "Apply FUNCTION to the start of all tables in the buffer."
4547 (save-excursion
4548 (save-restriction
4549 (widen)
4550 (goto-char (point-min))
4551 (while (re-search-forward org-table-any-line-regexp nil t)
4552 (unless quietly
4553 (message "Mapping tables: %d%%"
4554 (floor (* 100.0 (point)) (buffer-size))))
4555 (beginning-of-line 1)
4556 (when (and (looking-at org-table-line-regexp)
4557 ;; Exclude tables in src/example/verbatim/clocktable blocks
4558 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4559 (save-excursion (funcall function))
4560 (or (looking-at org-table-line-regexp)
4561 (forward-char 1)))
4562 (re-search-forward org-table-any-border-regexp nil 1))))
4563 (unless quietly (message "Mapping tables: done")))
4565 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4566 (declare-function org-clock-update-mode-line "org-clock" ())
4567 (declare-function org-resolve-clocks "org-clock"
4568 (&optional also-non-dangling-p prompt last-valid))
4570 (defun org-at-TBLFM-p (&optional pos)
4571 "Non-nil when point (or POS) is in #+TBLFM line."
4572 (save-excursion
4573 (goto-char (or pos (point)))
4574 (beginning-of-line)
4575 (and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
4576 (eq (org-element-type (org-element-at-point)) 'table))))
4578 (defvar org-clock-start-time)
4579 (defvar org-clock-marker (make-marker)
4580 "Marker recording the last clock-in.")
4581 (defvar org-clock-hd-marker (make-marker)
4582 "Marker recording the last clock-in, but the headline position.")
4583 (defvar org-clock-heading ""
4584 "The heading of the current clock entry.")
4585 (defun org-clock-is-active ()
4586 "Return the buffer where the clock is currently running.
4587 Return nil if no clock is running."
4588 (marker-buffer org-clock-marker))
4590 (defun org-check-running-clock ()
4591 "Check if the current buffer contains the running clock.
4592 If yes, offer to stop it and to save the buffer with the changes."
4593 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4594 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4595 (buffer-name))))
4596 (org-clock-out)
4597 (when (y-or-n-p "Save changed buffer?")
4598 (save-buffer))))
4600 (defun org-clocktable-try-shift (dir n)
4601 "Check if this line starts a clock table, if yes, shift the time block."
4602 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4603 (org-clocktable-shift dir n)))
4605 ;;;###autoload
4606 (defun org-clock-persistence-insinuate ()
4607 "Set up hooks for clock persistence."
4608 (require 'org-clock)
4609 (add-hook 'org-mode-hook 'org-clock-load)
4610 (add-hook 'kill-emacs-hook 'org-clock-save))
4612 (defgroup org-archive nil
4613 "Options concerning archiving in Org-mode."
4614 :tag "Org Archive"
4615 :group 'org-structure)
4617 (defcustom org-archive-location "%s_archive::"
4618 "The location where subtrees should be archived.
4620 The value of this variable is a string, consisting of two parts,
4621 separated by a double-colon. The first part is a filename and
4622 the second part is a headline.
4624 When the filename is omitted, archiving happens in the same file.
4625 %s in the filename will be replaced by the current file
4626 name (without the directory part). Archiving to a different file
4627 is useful to keep archived entries from contributing to the
4628 Org-mode Agenda.
4630 The archived entries will be filed as subtrees of the specified
4631 headline. When the headline is omitted, the subtrees are simply
4632 filed away at the end of the file, as top-level entries. Also in
4633 the heading you can use %s to represent the file name, this can be
4634 useful when using the same archive for a number of different files.
4636 Here are a few examples:
4637 \"%s_archive::\"
4638 If the current file is Projects.org, archive in file
4639 Projects.org_archive, as top-level trees. This is the default.
4641 \"::* Archived Tasks\"
4642 Archive in the current file, under the top-level headline
4643 \"* Archived Tasks\".
4645 \"~/org/archive.org::\"
4646 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4648 \"~/org/archive.org::* From %s\"
4649 Archive in file ~/org/archive.org (absolute path), under headlines
4650 \"From FILENAME\" where file name is the current file name.
4652 \"~/org/datetree.org::datetree/* Finished Tasks\"
4653 The \"datetree/\" string is special, signifying to archive
4654 items to the datetree. Items are placed in either the CLOSED
4655 date of the item, or the current date if there is no CLOSED date.
4656 The heading will be a subentry to the current date. There doesn't
4657 need to be a heading, but there always needs to be a slash after
4658 datetree. For example, to store archived items directly in the
4659 datetree, use \"~/org/datetree.org::datetree/\".
4661 \"basement::** Finished Tasks\"
4662 Archive in file ./basement (relative path), as level 3 trees
4663 below the level 2 heading \"** Finished Tasks\".
4665 You may set this option on a per-file basis by adding to the buffer a
4666 line like
4668 #+ARCHIVE: basement::** Finished Tasks
4670 You may also define it locally for a subtree by setting an ARCHIVE property
4671 in the entry. If such a property is found in an entry, or anywhere up
4672 the hierarchy, it will be used."
4673 :group 'org-archive
4674 :type 'string)
4676 (defcustom org-agenda-skip-archived-trees t
4677 "Non-nil means the agenda will skip any items located in archived trees.
4678 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4679 variable is no longer recommended, you should leave it at the value t.
4680 Instead, use the key `v' to cycle the archives-mode in the agenda."
4681 :group 'org-archive
4682 :group 'org-agenda-skip
4683 :type 'boolean)
4685 (defcustom org-columns-skip-archived-trees t
4686 "Non-nil means ignore archived trees when creating column view."
4687 :group 'org-archive
4688 :group 'org-properties
4689 :type 'boolean)
4691 (defcustom org-cycle-open-archived-trees nil
4692 "Non-nil means `org-cycle' will open archived trees.
4693 An archived tree is a tree marked with the tag ARCHIVE.
4694 When nil, archived trees will stay folded. You can still open them with
4695 normal outline commands like `show-all', but not with the cycling commands."
4696 :group 'org-archive
4697 :group 'org-cycle
4698 :type 'boolean)
4700 (defcustom org-sparse-tree-open-archived-trees nil
4701 "Non-nil means sparse tree construction shows matches in archived trees.
4702 When nil, matches in these trees are highlighted, but the trees are kept in
4703 collapsed state."
4704 :group 'org-archive
4705 :group 'org-sparse-trees
4706 :type 'boolean)
4708 (defcustom org-sparse-tree-default-date-type nil
4709 "The default date type when building a sparse tree.
4710 When this is nil, a date is a scheduled or a deadline timestamp.
4711 Otherwise, these types are allowed:
4713 all: all timestamps
4714 active: only active timestamps (<...>)
4715 inactive: only inactive timestamps ([...])
4716 scheduled: only scheduled timestamps
4717 deadline: only deadline timestamps"
4718 :type '(choice (const :tag "Scheduled or deadline" nil)
4719 (const :tag "All timestamps" all)
4720 (const :tag "Only active timestamps" active)
4721 (const :tag "Only inactive timestamps" inactive)
4722 (const :tag "Only scheduled timestamps" scheduled)
4723 (const :tag "Only deadline timestamps" deadline)
4724 (const :tag "Only closed timestamps" closed))
4725 :version "25.1"
4726 :package-version '(Org . "8.3")
4727 :group 'org-sparse-trees)
4729 (defun org-cycle-hide-archived-subtrees (state)
4730 "Re-hide all archived subtrees after a visibility state change."
4731 (when (and (not org-cycle-open-archived-trees)
4732 (not (memq state '(overview folded))))
4733 (save-excursion
4734 (let* ((globalp (memq state '(contents all)))
4735 (beg (if globalp (point-min) (point)))
4736 (end (if globalp (point-max) (org-end-of-subtree t))))
4737 (org-hide-archived-subtrees beg end)
4738 (goto-char beg)
4739 (if (looking-at (concat ".*:" org-archive-tag ":"))
4740 (message "%s" (substitute-command-keys
4741 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4743 (defun org-force-cycle-archived ()
4744 "Cycle subtree even if it is archived."
4745 (interactive)
4746 (setq this-command 'org-cycle)
4747 (let ((org-cycle-open-archived-trees t))
4748 (call-interactively 'org-cycle)))
4750 (defun org-hide-archived-subtrees (beg end)
4751 "Re-hide all archived subtrees after a visibility state change."
4752 (org-with-wide-buffer
4753 (let ((case-fold-search nil)
4754 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4755 (goto-char beg)
4756 (while (and (< (point) end) (re-search-forward re end t))
4757 (when (member org-archive-tag (org-get-tags))
4758 (org-flag-subtree t)
4759 (org-end-of-subtree t))))))
4761 (declare-function outline-end-of-heading "outline" ())
4762 (declare-function outline-flag-region "outline" (from to flag))
4763 (defun org-flag-subtree (flag)
4764 (save-excursion
4765 (org-back-to-heading t)
4766 (outline-end-of-heading)
4767 (outline-flag-region (point)
4768 (progn (org-end-of-subtree t) (point))
4769 flag)))
4771 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4773 ;; Declare Column View Code
4775 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4776 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4777 (declare-function org-columns-compute "org-colview" (property))
4779 ;; Declare ID code
4781 (declare-function org-id-store-link "org-id")
4782 (declare-function org-id-locations-load "org-id")
4783 (declare-function org-id-locations-save "org-id")
4784 (defvar org-id-track-globally)
4786 ;;; Variables for pre-computed regular expressions, all buffer local
4788 (defvar org-todo-regexp nil
4789 "Matches any of the TODO state keywords.")
4790 (make-variable-buffer-local 'org-todo-regexp)
4791 (defvar org-not-done-regexp nil
4792 "Matches any of the TODO state keywords except the last one.")
4793 (make-variable-buffer-local 'org-not-done-regexp)
4794 (defvar org-not-done-heading-regexp nil
4795 "Matches a TODO headline that is not done.")
4796 (make-variable-buffer-local 'org-not-done-heading-regexp)
4797 (defvar org-todo-line-regexp nil
4798 "Matches a headline and puts TODO state into group 2 if present.")
4799 (make-variable-buffer-local 'org-todo-line-regexp)
4800 (defvar org-complex-heading-regexp nil
4801 "Matches a headline and puts everything into groups:
4802 group 1: the stars
4803 group 2: The todo keyword, maybe
4804 group 3: Priority cookie
4805 group 4: True headline
4806 group 5: Tags")
4807 (make-variable-buffer-local 'org-complex-heading-regexp)
4808 (defvar org-complex-heading-regexp-format nil
4809 "Printf format to make regexp to match an exact headline.
4810 This regexp will match the headline of any node which has the
4811 exact headline text that is put into the format, but may have any
4812 TODO state, priority and tags.")
4813 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4814 (defvar org-todo-line-tags-regexp nil
4815 "Matches a headline and puts TODO state into group 2 if present.
4816 Also put tags into group 4 if tags are present.")
4817 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4819 (defconst org-plain-time-of-day-regexp
4820 (concat
4821 "\\(\\<[012]?[0-9]"
4822 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4823 "\\(--?"
4824 "\\(\\<[012]?[0-9]"
4825 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4826 "\\)?")
4827 "Regular expression to match a plain time or time range.
4828 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4829 groups carry important information:
4830 0 the full match
4831 1 the first time, range or not
4832 8 the second time, if it is a range.")
4834 (defconst org-plain-time-extension-regexp
4835 (concat
4836 "\\(\\<[012]?[0-9]"
4837 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4838 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4839 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4840 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4841 groups carry important information:
4842 0 the full match
4843 7 hours of duration
4844 9 minutes of duration")
4846 (defconst org-stamp-time-of-day-regexp
4847 (concat
4848 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4849 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4850 "\\(--?"
4851 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4852 "Regular expression to match a timestamp time or time range.
4853 After a match, the following groups carry important information:
4854 0 the full match
4855 1 date plus weekday, for back referencing to make sure both times are on the same day
4856 2 the first time, range or not
4857 4 the second time, if it is a range.")
4859 (defconst org-startup-options
4860 '(("fold" org-startup-folded t)
4861 ("overview" org-startup-folded t)
4862 ("nofold" org-startup-folded nil)
4863 ("showall" org-startup-folded nil)
4864 ("showeverything" org-startup-folded showeverything)
4865 ("content" org-startup-folded content)
4866 ("indent" org-startup-indented t)
4867 ("noindent" org-startup-indented nil)
4868 ("hidestars" org-hide-leading-stars t)
4869 ("showstars" org-hide-leading-stars nil)
4870 ("odd" org-odd-levels-only t)
4871 ("oddeven" org-odd-levels-only nil)
4872 ("align" org-startup-align-all-tables t)
4873 ("noalign" org-startup-align-all-tables nil)
4874 ("inlineimages" org-startup-with-inline-images t)
4875 ("noinlineimages" org-startup-with-inline-images nil)
4876 ("latexpreview" org-startup-with-latex-preview t)
4877 ("nolatexpreview" org-startup-with-latex-preview nil)
4878 ("customtime" org-display-custom-times t)
4879 ("logdone" org-log-done time)
4880 ("lognotedone" org-log-done note)
4881 ("nologdone" org-log-done nil)
4882 ("lognoteclock-out" org-log-note-clock-out t)
4883 ("nolognoteclock-out" org-log-note-clock-out nil)
4884 ("logrepeat" org-log-repeat state)
4885 ("lognoterepeat" org-log-repeat note)
4886 ("logdrawer" org-log-into-drawer t)
4887 ("nologdrawer" org-log-into-drawer nil)
4888 ("logstatesreversed" org-log-states-order-reversed t)
4889 ("nologstatesreversed" org-log-states-order-reversed nil)
4890 ("nologrepeat" org-log-repeat nil)
4891 ("logreschedule" org-log-reschedule time)
4892 ("lognotereschedule" org-log-reschedule note)
4893 ("nologreschedule" org-log-reschedule nil)
4894 ("logredeadline" org-log-redeadline time)
4895 ("lognoteredeadline" org-log-redeadline note)
4896 ("nologredeadline" org-log-redeadline nil)
4897 ("logrefile" org-log-refile time)
4898 ("lognoterefile" org-log-refile note)
4899 ("nologrefile" org-log-refile nil)
4900 ("fninline" org-footnote-define-inline t)
4901 ("nofninline" org-footnote-define-inline nil)
4902 ("fnlocal" org-footnote-section nil)
4903 ("fnauto" org-footnote-auto-label t)
4904 ("fnprompt" org-footnote-auto-label nil)
4905 ("fnconfirm" org-footnote-auto-label confirm)
4906 ("fnplain" org-footnote-auto-label plain)
4907 ("fnadjust" org-footnote-auto-adjust t)
4908 ("nofnadjust" org-footnote-auto-adjust nil)
4909 ("constcgs" constants-unit-system cgs)
4910 ("constSI" constants-unit-system SI)
4911 ("noptag" org-tag-persistent-alist nil)
4912 ("hideblocks" org-hide-block-startup t)
4913 ("nohideblocks" org-hide-block-startup nil)
4914 ("beamer" org-startup-with-beamer-mode t)
4915 ("entitiespretty" org-pretty-entities t)
4916 ("entitiesplain" org-pretty-entities nil))
4917 "Variable associated with STARTUP options for org-mode.
4918 Each element is a list of three items: the startup options (as written
4919 in the #+STARTUP line), the corresponding variable, and the value to set
4920 this variable to if the option is found. An optional forth element PUSH
4921 means to push this value onto the list in the variable.")
4923 (defcustom org-group-tags t
4924 "When non-nil (the default), use group tags.
4925 This can be turned on/off through `org-toggle-tags-groups'."
4926 :group 'org-tags
4927 :group 'org-startup
4928 :type 'boolean)
4930 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4932 (defun org-toggle-tags-groups ()
4933 "Toggle support for group tags.
4934 Support for group tags is controlled by the option
4935 `org-group-tags', which is non-nil by default."
4936 (interactive)
4937 (setq org-group-tags (not org-group-tags))
4938 (cond ((and (derived-mode-p 'org-agenda-mode)
4939 org-group-tags)
4940 (org-agenda-redo))
4941 ((derived-mode-p 'org-mode)
4942 (let ((org-inhibit-startup t)) (org-mode))))
4943 (message "Groups tags support has been turned %s"
4944 (if org-group-tags "on" "off")))
4946 (defun org-set-regexps-and-options (&optional tags-only)
4947 "Precompute regular expressions used in the current buffer.
4948 When optional argument TAGS-ONLY is non-nil, only compute tags
4949 related expressions."
4950 (when (derived-mode-p 'org-mode)
4951 (let ((alist (org--setup-collect-keywords
4952 (org-make-options-regexp
4953 (append '("FILETAGS" "TAGS" "SETUPFILE")
4954 (and (not tags-only)
4955 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4956 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4957 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4958 (org--setup-process-tags
4959 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4960 (unless tags-only
4961 ;; File properties.
4962 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4963 ;; Archive location.
4964 (let ((archive (cdr (assq 'archive alist))))
4965 (when archive (org-set-local 'org-archive-location archive)))
4966 ;; Category.
4967 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4968 (when cat
4969 (org-set-local 'org-category (intern cat))
4970 (org-set-local 'org-file-properties
4971 (org--update-property-plist
4972 "CATEGORY" cat org-file-properties))))
4973 ;; Columns.
4974 (let ((column (cdr (assq 'columns alist))))
4975 (when column (org-set-local 'org-columns-default-format column)))
4976 ;; Constants.
4977 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4978 ;; Link abbreviations.
4979 (let ((links (cdr (assq 'link alist))))
4980 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4981 ;; Priorities.
4982 (let ((priorities (cdr (assq 'priorities alist))))
4983 (when priorities
4984 (org-set-local 'org-highest-priority (nth 0 priorities))
4985 (org-set-local 'org-lowest-priority (nth 1 priorities))
4986 (org-set-local 'org-default-priority (nth 2 priorities))))
4987 ;; Scripts.
4988 (let ((scripts (assq 'scripts alist)))
4989 (when scripts
4990 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4991 ;; Startup options.
4992 (let ((startup (cdr (assq 'startup alist))))
4993 (dolist (option startup)
4994 (let ((entry (assoc-string option org-startup-options t)))
4995 (when entry
4996 (let ((var (nth 1 entry))
4997 (val (nth 2 entry)))
4998 (if (not (nth 3 entry)) (org-set-local var val)
4999 (unless (listp (symbol-value var))
5000 (org-set-local var nil))
5001 (add-to-list var val)))))))
5002 ;; TODO keywords.
5003 (org-set-local 'org-todo-kwd-alist nil)
5004 (org-set-local 'org-todo-key-alist nil)
5005 (org-set-local 'org-todo-key-trigger nil)
5006 (org-set-local 'org-todo-keywords-1 nil)
5007 (org-set-local 'org-done-keywords nil)
5008 (org-set-local 'org-todo-heads nil)
5009 (org-set-local 'org-todo-sets nil)
5010 (org-set-local 'org-todo-log-states nil)
5011 (let ((todo-sequences
5012 (or (nreverse (cdr (assq 'todo alist)))
5013 (let ((d (default-value 'org-todo-keywords)))
5014 (if (not (stringp (car d))) d
5015 ;; XXX: Backward compatibility code.
5016 (list (cons org-todo-interpretation d)))))))
5017 (dolist (sequence todo-sequences)
5018 (let* ((sequence (or (run-hook-with-args-until-success
5019 'org-todo-setup-filter-hook sequence)
5020 sequence))
5021 (sequence-type (car sequence))
5022 (keywords (cdr sequence))
5023 (sep (member "|" keywords))
5024 names alist)
5025 (dolist (k (remove "|" keywords))
5026 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5028 (error "Invalid TODO keyword %s" k))
5029 (let ((name (match-string 1 k))
5030 (key (match-string 2 k))
5031 (log (org-extract-log-state-settings k)))
5032 (push name names)
5033 (push (cons name (and key (string-to-char key))) alist)
5034 (when log (push log org-todo-log-states))))
5035 (let* ((names (nreverse names))
5036 (done (if sep (org-remove-keyword-keys (cdr sep))
5037 (last names)))
5038 (head (car names))
5039 (tail (list sequence-type head (car done) (org-last done))))
5040 (add-to-list 'org-todo-heads head 'append)
5041 (push names org-todo-sets)
5042 (setq org-done-keywords (append org-done-keywords done nil))
5043 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5044 (setq org-todo-key-alist
5045 (append org-todo-key-alist
5046 (and alist
5047 (append '((:startgroup))
5048 (nreverse alist)
5049 '((:endgroup))))))
5050 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5051 (setq org-todo-sets (nreverse org-todo-sets)
5052 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5053 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5054 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5055 ;; Compute the regular expressions and other local variables.
5056 ;; Using `org-outline-regexp-bol' would complicate them much,
5057 ;; because of the fixed white space at the end of that string.
5058 (if (not org-done-keywords)
5059 (setq org-done-keywords
5060 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5061 (setq org-not-done-keywords
5062 (org-delete-all org-done-keywords
5063 (copy-sequence org-todo-keywords-1))
5064 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5065 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5066 org-not-done-heading-regexp
5067 (format org-heading-keyword-regexp-format org-not-done-regexp)
5068 org-todo-line-regexp
5069 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5070 org-complex-heading-regexp
5071 (concat "^\\(\\*+\\)"
5072 "\\(?: +" org-todo-regexp "\\)?"
5073 "\\(?: +\\(\\[#.\\]\\)\\)?"
5074 "\\(?: +\\(.*?\\)\\)??"
5075 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5076 "[ \t]*$")
5077 org-complex-heading-regexp-format
5078 (concat "^\\(\\*+\\)"
5079 "\\(?: +" org-todo-regexp "\\)?"
5080 "\\(?: +\\(\\[#.\\]\\)\\)?"
5081 "\\(?: +"
5082 ;; Stats cookies can be stuck to body.
5083 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5084 "\\(%s\\)"
5085 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5086 "\\)"
5087 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5088 "[ \t]*$")
5089 org-todo-line-tags-regexp
5090 (concat "^\\(\\*+\\)"
5091 "\\(?: +" org-todo-regexp "\\)?"
5092 "\\(?: +\\(.*?\\)\\)??"
5093 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5094 "[ \t]*$"))
5095 (org-compute-latex-and-related-regexp)))))
5097 (defun org--setup-collect-keywords (regexp &optional files alist)
5098 "Return setup keywords values as an alist.
5100 REGEXP matches a subset of setup keywords. FILES is a list of
5101 file names already visited. It is used to avoid circular setup
5102 files. ALIST, when non-nil, is the alist computed so far.
5104 Return value contains the following keys: `archive', `category',
5105 `columns', `constants', `filetags', `link', `priorities',
5106 `property', `scripts', `startup', `tags' and `todo'."
5107 (org-with-wide-buffer
5108 (goto-char (point-min))
5109 (let ((case-fold-search t))
5110 (while (re-search-forward regexp nil t)
5111 (let ((element (org-element-at-point)))
5112 (when (eq (org-element-type element) 'keyword)
5113 (let ((key (org-element-property :key element))
5114 (value (org-element-property :value element)))
5115 (cond
5116 ((equal key "ARCHIVE")
5117 (when (org-string-nw-p value)
5118 (push (cons 'archive value) alist)))
5119 ((equal key "CATEGORY") (push (cons 'category value) alist))
5120 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5121 ((equal key "CONSTANTS")
5122 (let* ((constants (assq 'constants alist))
5123 (store (cdr constants)))
5124 (dolist (pair (org-split-string value))
5125 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5126 pair)
5127 (let* ((name (match-string 1 pair))
5128 (value (match-string 2 pair))
5129 (old (assoc name store)))
5130 (if old (setcdr old value)
5131 (push (cons name value) store)))))
5132 (if constants (setcdr constants store)
5133 (push (cons 'constants store) alist))))
5134 ((equal key "FILETAGS")
5135 (when (org-string-nw-p value)
5136 (let ((old (assq 'filetags alist))
5137 (new (apply #'nconc
5138 (mapcar (lambda (x) (org-split-string x ":"))
5139 (org-split-string value)))))
5140 (if old (setcdr old (append new (cdr old)))
5141 (push (cons 'filetags new) alist)))))
5142 ((equal key "LINK")
5143 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5144 (let ((links (assq 'link alist))
5145 (pair (cons (org-match-string-no-properties 1 value)
5146 (org-match-string-no-properties 2 value))))
5147 (if links (push pair (cdr links))
5148 (push (list 'link pair) alist)))))
5149 ((equal key "OPTIONS")
5150 (when (and (org-string-nw-p value)
5151 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5152 (push (cons 'scripts (read (match-string 1 value))) alist)))
5153 ((equal key "PRIORITIES")
5154 (push (cons 'priorities
5155 (let ((prio (org-split-string value)))
5156 (if (< (length prio) 3) '(?A ?C ?B)
5157 (mapcar #'string-to-char prio))))
5158 alist))
5159 ((equal key "PROPERTY")
5160 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5161 (let* ((property (assq 'property alist))
5162 (value (org--update-property-plist
5163 (org-match-string-no-properties 1 value)
5164 (org-match-string-no-properties 2 value)
5165 (cdr property))))
5166 (if property (setcdr property value)
5167 (push (cons 'property value) alist)))))
5168 ((equal key "STARTUP")
5169 (let ((startup (assq 'startup alist)))
5170 (if startup
5171 (setcdr startup
5172 (append (cdr startup) (org-split-string value)))
5173 (push (cons 'startup (org-split-string value)) alist))))
5174 ((equal key "TAGS")
5175 (let ((tag-cell (assq 'tags alist)))
5176 (if tag-cell
5177 (setcdr tag-cell
5178 (append (cdr tag-cell)
5179 '("\\n")
5180 (org-split-string value)))
5181 (push (cons 'tags (org-split-string value)) alist))))
5182 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5183 (let ((todo (assq 'todo alist))
5184 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5185 (org-split-string value))))
5186 (if todo (push value (cdr todo))
5187 (push (list 'todo value) alist))))
5188 ((equal key "SETUPFILE")
5189 (unless buffer-read-only ; Do not check in Gnus messages.
5190 (let ((f (and (org-string-nw-p value)
5191 (expand-file-name
5192 (org-remove-double-quotes value)))))
5193 (when (and f (file-readable-p f) (not (member f files)))
5194 (with-temp-buffer
5195 (insert-file-contents f)
5196 (setq alist
5197 ;; Fake Org mode to benefit from cache
5198 ;; without recurring needlessly.
5199 (let ((major-mode 'org-mode))
5200 (org--setup-collect-keywords
5201 regexp (cons f files) alist)))))))))))))))
5202 alist)
5204 (defun org--setup-process-tags (tags filetags)
5205 "Precompute variables used for tags.
5206 TAGS is a list of tags and tag group symbols, as strings.
5207 FILETAGS is a list of tags, as strings."
5208 ;; Process the file tags.
5209 (org-set-local 'org-file-tags
5210 (mapcar #'org-add-prop-inherited filetags))
5211 ;; Provide default tags if no local tags are found.
5212 (when (and (not tags) org-tag-alist)
5213 (setq tags
5214 (mapcar (lambda (tag)
5215 (case (car tag)
5216 (:startgroup "{")
5217 (:endgroup "}")
5218 (:startgrouptag "[")
5219 (:endgrouptag "]")
5220 (:grouptags ":")
5221 (:newline "\\n")
5222 (otherwise (concat (car tag)
5223 (and (characterp (cdr tag))
5224 (format "(%c)" (cdr tag)))))))
5225 org-tag-alist)))
5226 ;; Process the tags.
5227 (org-set-local 'org-tag-groups-alist nil)
5228 (org-set-local 'org-tag-alist nil)
5229 (let (group-flag)
5230 (while tags
5231 (let ((e (car tags)))
5232 (setq tags (cdr tags))
5233 (cond
5234 ((equal e "{")
5235 (push '(:startgroup) org-tag-alist)
5236 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5237 ((equal e "}")
5238 (push '(:endgroup) org-tag-alist)
5239 (setq group-flag nil))
5240 ((equal e "[")
5241 (push '(:startgrouptag) org-tag-alist)
5242 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5243 ((equal e "]")
5244 (push '(:endgrouptag) org-tag-alist)
5245 (setq group-flag nil))
5246 ((equal e ":")
5247 (push '(:grouptags) org-tag-alist)
5248 (setq group-flag 'append))
5249 ((equal e "\\n") (push '(:newline) org-tag-alist))
5250 ((string-match
5251 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5252 "\\|{.+?}\\)" ; regular expression
5253 "\\(?:(\\(.\\))\\)?\\'")) e)
5254 (let ((tag (match-string 1 e))
5255 (key (and (match-beginning 2)
5256 (string-to-char (match-string 2 e)))))
5257 (cond ((eq group-flag 'append)
5258 (setcar org-tag-groups-alist
5259 (append (car org-tag-groups-alist) (list tag))))
5260 (group-flag (push (list tag) org-tag-groups-alist)))
5261 ;; Push all tags in groups, no matter if they already exist.
5262 (unless (and (not group-flag) (assoc tag org-tag-alist))
5263 (push (cons tag key) org-tag-alist))))))))
5264 (setq org-tag-alist (nreverse org-tag-alist)))
5266 (defun org-file-contents (file &optional noerror)
5267 "Return the contents of FILE, as a string."
5268 (if (and file (file-readable-p file))
5269 (with-temp-buffer
5270 (insert-file-contents file)
5271 (buffer-string))
5272 (funcall (if noerror 'message 'error)
5273 "Cannot read file \"%s\"%s"
5274 file
5275 (let ((from (buffer-file-name (buffer-base-buffer))))
5276 (if from (concat " (referenced in file \"" from "\")") "")))))
5278 (defun org-extract-log-state-settings (x)
5279 "Extract the log state setting from a TODO keyword string.
5280 This will extract info from a string like \"WAIT(w@/!)\"."
5281 (let (kw key log1 log2)
5282 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5283 (setq kw (match-string 1 x)
5284 key (and (match-end 2) (match-string 2 x))
5285 log1 (and (match-end 3) (match-string 3 x))
5286 log2 (and (match-end 4) (match-string 4 x)))
5287 (and (or log1 log2)
5288 (list kw
5289 (and log1 (if (equal log1 "!") 'time 'note))
5290 (and log2 (if (equal log2 "!") 'time 'note)))))))
5292 (defun org-remove-keyword-keys (list)
5293 "Remove a pair of parenthesis at the end of each string in LIST."
5294 (mapcar (lambda (x)
5295 (if (string-match "(.*)$" x)
5296 (substring x 0 (match-beginning 0))
5298 list))
5300 (defun org-assign-fast-keys (alist)
5301 "Assign fast keys to a keyword-key alist.
5302 Respect keys that are already there."
5303 (let (new e (alt ?0))
5304 (while (setq e (pop alist))
5305 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5306 (cdr e)) ;; Key already assigned.
5307 (push e new)
5308 (let ((clist (string-to-list (downcase (car e))))
5309 (used (append new alist)))
5310 (when (= (car clist) ?@)
5311 (pop clist))
5312 (while (and clist (rassoc (car clist) used))
5313 (pop clist))
5314 (unless clist
5315 (while (rassoc alt used)
5316 (incf alt)))
5317 (push (cons (car e) (or (car clist) alt)) new))))
5318 (nreverse new)))
5320 ;;; Some variables used in various places
5322 (defvar org-window-configuration nil
5323 "Used in various places to store a window configuration.")
5324 (defvar org-selected-window nil
5325 "Used in various places to store a window configuration.")
5326 (defvar org-finish-function nil
5327 "Function to be called when `C-c C-c' is used.
5328 This is for getting out of special buffers like capture.")
5331 ;; FIXME: Occasionally check by commenting these, to make sure
5332 ;; no other functions uses these, forgetting to let-bind them.
5333 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5334 (defvar org-last-state)
5335 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5337 ;; Defined somewhere in this file, but used before definition.
5338 (defvar org-entities) ;; defined in org-entities.el
5339 (defvar org-struct-menu)
5340 (defvar org-org-menu)
5341 (defvar org-tbl-menu)
5343 ;;;; Define the Org-mode
5345 ;; We use a before-change function to check if a table might need
5346 ;; an update.
5347 (defvar org-table-may-need-update t
5348 "Indicates that a table might need an update.
5349 This variable is set by `org-before-change-function'.
5350 `org-table-align' sets it back to nil.")
5351 (defun org-before-change-function (beg end)
5352 "Every change indicates that a table might need an update."
5353 (setq org-table-may-need-update t))
5354 (defvar org-mode-map)
5355 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5356 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5357 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5358 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5359 (defvar org-table-buffer-is-an nil)
5361 (defvar bidi-paragraph-direction)
5362 (defvar buffer-face-mode-face)
5364 (require 'outline)
5365 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5366 (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"))
5367 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5369 ;; Other stuff we need.
5370 (require 'time-date)
5371 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5372 (require 'easymenu)
5373 (autoload 'easy-menu-add "easymenu")
5374 (require 'overlay)
5376 ;; (require 'org-macs) moved higher up in the file before it is first used
5377 (require 'org-entities)
5378 ;; (require 'org-compat) moved higher up in the file before it is first used
5379 (require 'org-faces)
5380 (require 'org-list)
5381 (require 'org-pcomplete)
5382 (require 'org-src)
5383 (require 'org-footnote)
5384 (require 'org-macro)
5386 ;; babel
5387 (require 'ob)
5389 ;;;###autoload
5390 (define-derived-mode org-mode outline-mode "Org"
5391 "Outline-based notes management and organizer, alias
5392 \"Carsten's outline-mode for keeping track of everything.\"
5394 Org-mode develops organizational tasks around a NOTES file which
5395 contains information about projects as plain text. Org-mode is
5396 implemented on top of outline-mode, which is ideal to keep the content
5397 of large files well structured. It supports ToDo items, deadlines and
5398 time stamps, which magically appear in the diary listing of the Emacs
5399 calendar. Tables are easily created with a built-in table editor.
5400 Plain text URL-like links connect to websites, emails (VM), Usenet
5401 messages (Gnus), BBDB entries, and any files related to the project.
5402 For printing and sharing of notes, an Org-mode file (or a part of it)
5403 can be exported as a structured ASCII or HTML file.
5405 The following commands are available:
5407 \\{org-mode-map}"
5409 ;; Get rid of Outline menus, they are not needed
5410 ;; Need to do this here because define-derived-mode sets up
5411 ;; the keymap so late. Still, it is a waste to call this each time
5412 ;; we switch another buffer into org-mode.
5413 (if (featurep 'xemacs)
5414 (when (boundp 'outline-mode-menu-heading)
5415 ;; Assume this is Greg's port, it uses easymenu
5416 (easy-menu-remove outline-mode-menu-heading)
5417 (easy-menu-remove outline-mode-menu-show)
5418 (easy-menu-remove outline-mode-menu-hide))
5419 (define-key org-mode-map [menu-bar headings] 'undefined)
5420 (define-key org-mode-map [menu-bar hide] 'undefined)
5421 (define-key org-mode-map [menu-bar show] 'undefined))
5423 (org-load-modules-maybe)
5424 (when (featurep 'xemacs)
5425 (easy-menu-add org-org-menu)
5426 (easy-menu-add org-tbl-menu))
5427 (org-install-agenda-files-menu)
5428 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5429 (add-to-invisibility-spec '(org-cwidth))
5430 (add-to-invisibility-spec '(org-hide-block . t))
5431 (when (featurep 'xemacs)
5432 (org-set-local 'line-move-ignore-invisible t))
5433 (org-set-local 'outline-regexp org-outline-regexp)
5434 (org-set-local 'outline-level 'org-outline-level)
5435 (setq bidi-paragraph-direction 'left-to-right)
5436 (when (and org-ellipsis
5437 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5438 (fboundp 'make-glyph-code))
5439 (unless org-display-table
5440 (setq org-display-table (make-display-table)))
5441 (set-display-table-slot
5442 org-display-table 4
5443 (vconcat (mapcar
5444 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5445 org-ellipsis)))
5446 (if (stringp org-ellipsis) org-ellipsis "..."))))
5447 (setq buffer-display-table org-display-table))
5448 (org-set-regexps-and-options)
5449 (org-set-font-lock-defaults)
5450 (when (and org-tag-faces (not org-tags-special-faces-re))
5451 ;; tag faces set outside customize.... force initialization.
5452 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5453 ;; Calc embedded
5454 (org-set-local 'calc-embedded-open-mode "# ")
5455 ;; Modify a few syntax entries
5456 (modify-syntax-entry ?@ "w")
5457 (modify-syntax-entry ?\" "\"")
5458 (modify-syntax-entry ?\\ "_")
5459 (modify-syntax-entry ?~ "_")
5460 (if org-startup-truncated (setq truncate-lines t))
5461 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5462 (org-set-local 'font-lock-unfontify-region-function
5463 'org-unfontify-region)
5464 ;; Activate before-change-function
5465 (org-set-local 'org-table-may-need-update t)
5466 (org-add-hook 'before-change-functions 'org-before-change-function nil
5467 'local)
5468 ;; Check for running clock before killing a buffer
5469 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5470 ;; Initialize macros templates.
5471 (org-macro-initialize-templates)
5472 ;; Initialize radio targets.
5473 (org-update-radio-target-regexp)
5474 ;; Indentation.
5475 (org-set-local 'indent-line-function 'org-indent-line)
5476 (org-set-local 'indent-region-function 'org-indent-region)
5477 ;; Filling and auto-filling.
5478 (org-setup-filling)
5479 ;; Comments.
5480 (org-setup-comments-handling)
5481 ;; Initialize cache.
5482 (org-element-cache-reset)
5483 ;; Beginning/end of defun
5484 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5485 (org-set-local 'end-of-defun-function
5486 (lambda ()
5487 (if (not (org-at-heading-p))
5488 (org-forward-element)
5489 (org-forward-element)
5490 (forward-char -1))))
5491 ;; Next error for sparse trees
5492 (org-set-local 'next-error-function 'org-occur-next-match)
5493 ;; Make sure dependence stuff works reliably, even for users who set it
5494 ;; too late :-(
5495 (if org-enforce-todo-dependencies
5496 (add-hook 'org-blocker-hook
5497 'org-block-todo-from-children-or-siblings-or-parent)
5498 (remove-hook 'org-blocker-hook
5499 'org-block-todo-from-children-or-siblings-or-parent))
5500 (if org-enforce-todo-checkbox-dependencies
5501 (add-hook 'org-blocker-hook
5502 'org-block-todo-from-checkboxes)
5503 (remove-hook 'org-blocker-hook
5504 'org-block-todo-from-checkboxes))
5506 ;; Align options lines
5507 (org-set-local
5508 'align-mode-rules-list
5509 '((org-in-buffer-settings
5510 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5511 (modes . '(org-mode)))))
5513 ;; Imenu
5514 (org-set-local 'imenu-create-index-function
5515 'org-imenu-get-tree)
5517 ;; Make isearch reveal context
5518 (if (or (featurep 'xemacs)
5519 (not (boundp 'outline-isearch-open-invisible-function)))
5520 ;; Emacs 21 and XEmacs make use of the hook
5521 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5522 ;; Emacs 22 deals with this through a special variable
5523 (org-set-local 'outline-isearch-open-invisible-function
5524 (lambda (&rest ignore) (org-show-context 'isearch))))
5526 ;; Setup the pcomplete hooks
5527 (set (make-local-variable 'pcomplete-command-completion-function)
5528 'org-pcomplete-initial)
5529 (set (make-local-variable 'pcomplete-command-name-function)
5530 'org-command-at-point)
5531 (set (make-local-variable 'pcomplete-default-completion-function)
5532 'ignore)
5533 (set (make-local-variable 'pcomplete-parse-arguments-function)
5534 'org-parse-arguments)
5535 (set (make-local-variable 'pcomplete-termination-string) "")
5536 (when (>= emacs-major-version 23)
5537 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5539 ;; If empty file that did not turn on org-mode automatically, make it to.
5540 (if (and org-insert-mode-line-in-empty-file
5541 (org-called-interactively-p 'any)
5542 (= (point-min) (point-max)))
5543 (insert "# -*- mode: org -*-\n\n"))
5544 (unless org-inhibit-startup
5545 (org-unmodified
5546 (and org-startup-with-beamer-mode (org-beamer-mode))
5547 (when org-startup-align-all-tables
5548 (org-table-map-tables 'org-table-align 'quietly))
5549 (when org-startup-with-inline-images
5550 (org-display-inline-images))
5551 (when org-startup-with-latex-preview
5552 (org-toggle-latex-fragment))
5553 (unless org-inhibit-startup-visibility-stuff
5554 (org-set-startup-visibility))
5555 (org-refresh-effort-properties)))
5556 ;; Try to set org-hide correctly
5557 (let ((foreground (org-find-invisible-foreground)))
5558 (if foreground
5559 (set-face-foreground 'org-hide foreground))))
5561 ;; Update `customize-package-emacs-version-alist'
5562 (add-to-list 'customize-package-emacs-version-alist
5563 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5564 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5565 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5567 (defvar org-mode-transpose-word-syntax-table
5568 (let ((st (make-syntax-table text-mode-syntax-table)))
5569 (mapc (lambda(c) (modify-syntax-entry
5570 (string-to-char (car c)) "w p" st))
5571 org-emphasis-alist)
5572 st))
5574 (when (fboundp 'abbrev-table-put)
5575 (abbrev-table-put org-mode-abbrev-table
5576 :parents (list text-mode-abbrev-table)))
5578 (defun org-find-invisible-foreground ()
5579 (let ((candidates (remove
5580 "unspecified-bg"
5581 (nconc
5582 (list (face-background 'default)
5583 (face-background 'org-default))
5584 (mapcar
5585 (lambda (alist)
5586 (when (boundp alist)
5587 (cdr (assoc 'background-color (symbol-value alist)))))
5588 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5589 (list (face-foreground 'org-hide))))))
5590 (car (remove nil candidates))))
5592 (defun org-current-time (&optional rounding-minutes past)
5593 "Current time, possibly rounded to ROUNDING-MINUTES.
5594 When ROUNDING-MINUTES is not an integer, fall back on the car of
5595 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5596 the rounding returns a past time."
5597 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5598 (car org-time-stamp-rounding-minutes)))
5599 (time (decode-time)) res)
5600 (if (< r 1)
5601 (current-time)
5602 (setq res
5603 (apply 'encode-time
5604 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5605 (nthcdr 2 time))))
5606 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5607 (seconds-to-time (- (org-float-time res) (* r 60)))
5608 res))))
5610 (defun org-today ()
5611 "Return today date, considering `org-extend-today-until'."
5612 (time-to-days
5613 (time-subtract (current-time)
5614 (list 0 (* 3600 org-extend-today-until) 0))))
5616 ;;;; Font-Lock stuff, including the activators
5618 (defvar org-mouse-map (make-sparse-keymap))
5619 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5620 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5621 (when org-mouse-1-follows-link
5622 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5623 (when org-tab-follows-link
5624 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5625 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5627 (require 'font-lock)
5629 (defconst org-non-link-chars "]\t\n\r<>")
5630 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5631 "file+sys" "news" "shell" "elisp" "doi" "message"
5632 "help"))
5633 (defvar org-link-types-re nil
5634 "Matches a link that has a url-like prefix like \"http:\"")
5635 (defvar org-link-re-with-space nil
5636 "Matches a link with spaces, optional angular brackets around it.")
5637 (defvar org-link-re-with-space2 nil
5638 "Matches a link with spaces, optional angular brackets around it.")
5639 (defvar org-link-re-with-space3 nil
5640 "Matches a link with spaces, only for internal part in bracket links.")
5641 (defvar org-angle-link-re nil
5642 "Matches link with angular brackets, spaces are allowed.")
5643 (defvar org-plain-link-re nil
5644 "Matches plain link, without spaces.")
5645 (defvar org-bracket-link-regexp nil
5646 "Matches a link in double brackets.")
5647 (defvar org-bracket-link-analytic-regexp nil
5648 "Regular expression used to analyze links.
5649 Here is what the match groups contain after a match:
5650 1: http:
5651 2: http
5652 3: path
5653 4: [desc]
5654 5: desc")
5655 (defvar org-bracket-link-analytic-regexp++ nil
5656 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5657 (defvar org-any-link-re nil
5658 "Regular expression matching any link.")
5660 (defconst org-match-sexp-depth 3
5661 "Number of stacked braces for sub/superscript matching.")
5663 (defun org-create-multibrace-regexp (left right n)
5664 "Create a regular expression which will match a balanced sexp.
5665 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5666 as single character strings.
5667 The regexp returned will match the entire expression including the
5668 delimiters. It will also define a single group which contains the
5669 match except for the outermost delimiters. The maximum depth of
5670 stacked delimiters is N. Escaping delimiters is not possible."
5671 (let* ((nothing (concat "[^" left right "]*?"))
5672 (or "\\|")
5673 (re nothing)
5674 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5675 (while (> n 1)
5676 (setq n (1- n)
5677 re (concat re or next)
5678 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5679 (concat left "\\(" re "\\)" right)))
5681 (defconst org-match-substring-regexp
5682 (concat
5683 "\\(\\S-\\)\\([_^]\\)\\("
5684 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5685 "\\|"
5686 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5687 "\\|"
5688 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5689 "The regular expression matching a sub- or superscript.")
5691 (defconst org-match-substring-with-braces-regexp
5692 (concat
5693 "\\(\\S-\\)\\([_^]\\)"
5694 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5695 "The regular expression matching a sub- or superscript, forcing braces.")
5697 (defun org-make-link-regexps ()
5698 "Update the link regular expressions.
5699 This should be called after the variable `org-link-types' has changed."
5700 (let ((types-re (regexp-opt org-link-types t)))
5701 (setq org-link-types-re
5702 (concat "\\`" types-re ":")
5703 org-link-re-with-space
5704 (concat "<?" types-re ":"
5705 "\\([^" org-non-link-chars " ]"
5706 "[^" org-non-link-chars "]*"
5707 "[^" org-non-link-chars " ]\\)>?")
5708 org-link-re-with-space2
5709 (concat "<?" types-re ":"
5710 "\\([^" org-non-link-chars " ]"
5711 "[^\t\n\r]*"
5712 "[^" org-non-link-chars " ]\\)>?")
5713 org-link-re-with-space3
5714 (concat "<?" types-re ":"
5715 "\\([^" org-non-link-chars " ]"
5716 "[^\t\n\r]*\\)")
5717 org-angle-link-re
5718 (format "<%s:\\([^>\n]*\\(?:\n[ \t]*[^> \t\n][^>\n]*\\)*\\)>"
5719 types-re)
5720 org-plain-link-re
5721 (concat
5722 "\\<" types-re ":"
5723 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5724 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5725 org-bracket-link-regexp
5726 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5727 org-bracket-link-analytic-regexp
5728 (concat
5729 "\\[\\["
5730 "\\(" types-re ":\\)?"
5731 "\\([^]]+\\)"
5732 "\\]"
5733 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5734 "\\]")
5735 org-bracket-link-analytic-regexp++
5736 (concat
5737 "\\[\\["
5738 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5739 "\\([^]]+\\)"
5740 "\\]"
5741 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5742 "\\]")
5743 org-any-link-re
5744 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5745 org-angle-link-re "\\)\\|\\("
5746 org-plain-link-re "\\)"))))
5748 (org-make-link-regexps)
5750 (defvar org-emph-face nil)
5752 (defun org-do-emphasis-faces (limit)
5753 "Run through the buffer and emphasize strings."
5754 (let (rtn a)
5755 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5756 (let* ((border (char-after (match-beginning 3)))
5757 (bre (regexp-quote (char-to-string border))))
5758 (if (and (not (= border (char-after (match-beginning 4))))
5759 (not (save-match-data
5760 (string-match (concat bre ".*" bre)
5761 (replace-regexp-in-string
5762 "\n" " "
5763 (substring (match-string 2) 1 -1))))))
5764 (progn
5765 (setq rtn t)
5766 (setq a (assoc (match-string 3) org-emphasis-alist))
5767 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5768 'face
5769 (nth 1 a))
5770 (and (nth 2 a)
5771 (org-remove-flyspell-overlays-in
5772 (match-beginning 0) (match-end 0)))
5773 (add-text-properties (match-beginning 2) (match-end 2)
5774 '(font-lock-multiline t org-emphasis t))
5775 (when org-hide-emphasis-markers
5776 (add-text-properties (match-end 4) (match-beginning 5)
5777 '(invisible org-link))
5778 (add-text-properties (match-beginning 3) (match-end 3)
5779 '(invisible org-link))))))
5780 (goto-char (1+ (match-beginning 0))))
5781 rtn))
5783 (defun org-emphasize (&optional char)
5784 "Insert or change an emphasis, i.e. a font like bold or italic.
5785 If there is an active region, change that region to a new emphasis.
5786 If there is no region, just insert the marker characters and position
5787 the cursor between them.
5788 CHAR should be the marker character. If it is a space, it means to
5789 remove the emphasis of the selected region.
5790 If CHAR is not given (for example in an interactive call) it will be
5791 prompted for."
5792 (interactive)
5793 (let ((erc org-emphasis-regexp-components)
5794 (prompt "")
5795 (string "") beg end move c s)
5796 (if (org-region-active-p)
5797 (setq beg (region-beginning) end (region-end)
5798 string (buffer-substring beg end))
5799 (setq move t))
5801 (unless char
5802 (message "Emphasis marker or tag: [%s]"
5803 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5804 (setq char (read-char-exclusive)))
5805 (if (equal char ?\ )
5806 (setq s "" move nil)
5807 (unless (assoc (char-to-string char) org-emphasis-alist)
5808 (user-error "No such emphasis marker: \"%c\"" char))
5809 (setq s (char-to-string char)))
5810 (while (and (> (length string) 1)
5811 (equal (substring string 0 1) (substring string -1))
5812 (assoc (substring string 0 1) org-emphasis-alist))
5813 (setq string (substring string 1 -1)))
5814 (setq string (concat s string s))
5815 (if beg (delete-region beg end))
5816 (unless (or (bolp)
5817 (string-match (concat "[" (nth 0 erc) "\n]")
5818 (char-to-string (char-before (point)))))
5819 (insert " "))
5820 (unless (or (eobp)
5821 (string-match (concat "[" (nth 1 erc) "\n]")
5822 (char-to-string (char-after (point)))))
5823 (insert " ") (backward-char 1))
5824 (insert string)
5825 (and move (backward-char 1))))
5827 (defconst org-nonsticky-props
5828 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5830 (defsubst org-rear-nonsticky-at (pos)
5831 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5833 (defun org-activate-plain-links (limit)
5834 "Add link properties for plain links."
5835 (let (f hl)
5836 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5837 (not (member 'org-tag
5838 (get-text-property (1- (match-beginning 0)) 'face)))
5839 (not (org-in-src-block-p)))
5840 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5841 (setq f (get-text-property (match-beginning 0) 'face))
5842 (setq hl (org-match-string-no-properties 0))
5843 (if (or (eq f 'org-tag)
5844 (and (listp f) (memq 'org-tag f)))
5846 (add-text-properties (match-beginning 0) (match-end 0)
5847 (list 'mouse-face 'highlight
5848 'face 'org-link
5849 'htmlize-link `(:uri ,hl)
5850 'keymap org-mouse-map))
5851 (org-rear-nonsticky-at (match-end 0)))
5852 t)))
5854 (defun org-activate-code (limit)
5855 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5856 (progn
5857 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5858 (remove-text-properties (match-beginning 0) (match-end 0)
5859 '(display t invisible t intangible t))
5860 t)))
5862 (defcustom org-src-fontify-natively t
5863 "When non-nil, fontify code in code blocks."
5864 :type 'boolean
5865 :version "24.4"
5866 :package-version '(Org . "8.3")
5867 :group 'org-appearance
5868 :group 'org-babel)
5870 (defcustom org-allow-promoting-top-level-subtree nil
5871 "When non-nil, allow promoting a top level subtree.
5872 The leading star of the top level headline will be replaced
5873 by a #."
5874 :type 'boolean
5875 :version "24.1"
5876 :group 'org-appearance)
5878 (defun org-fontify-meta-lines-and-blocks (limit)
5879 (condition-case nil
5880 (org-fontify-meta-lines-and-blocks-1 limit)
5881 (error (message "org-mode fontification error"))))
5883 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5884 "Fontify #+ lines and blocks."
5885 (let ((case-fold-search t))
5886 (if (re-search-forward
5887 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5888 limit t)
5889 (let ((beg (match-beginning 0))
5890 (block-start (match-end 0))
5891 (block-end nil)
5892 (lang (match-string 7))
5893 (beg1 (line-beginning-position 2))
5894 (dc1 (downcase (match-string 2)))
5895 (dc3 (downcase (match-string 3)))
5896 end end1 quoting block-type ovl)
5897 (cond
5898 ((and (match-end 4) (equal dc3 "+begin"))
5899 ;; Truly a block
5900 (setq block-type (downcase (match-string 5))
5901 quoting (member block-type org-protecting-blocks))
5902 (when (re-search-forward
5903 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5904 nil t) ;; on purpose, we look further than LIMIT
5905 (setq end (min (point-max) (match-end 0))
5906 end1 (min (point-max) (1- (match-beginning 0))))
5907 (setq block-end (match-beginning 0))
5908 (when quoting
5909 (org-remove-flyspell-overlays-in beg1 end1)
5910 (remove-text-properties beg end
5911 '(display t invisible t intangible t)))
5912 (add-text-properties
5913 beg end '(font-lock-fontified t font-lock-multiline t))
5914 (add-text-properties beg beg1 '(face org-meta-line))
5915 (org-remove-flyspell-overlays-in beg beg1)
5916 (add-text-properties ; For end_src
5917 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5918 (org-remove-flyspell-overlays-in end1 end)
5919 (cond
5920 ((and lang (not (string= lang "")) org-src-fontify-natively)
5921 (org-src-font-lock-fontify-block lang block-start block-end)
5922 (add-text-properties beg1 block-end '(src-block t)))
5923 (quoting
5924 (add-text-properties beg1 (min (point-max) (1+ end1))
5925 '(face org-block))) ; end of source block
5926 ((not org-fontify-quote-and-verse-blocks))
5927 ((string= block-type "quote")
5928 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5929 ((string= block-type "verse")
5930 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5931 (add-text-properties beg beg1 '(face org-block-begin-line))
5932 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5933 '(face org-block-end-line))
5935 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5936 (org-remove-flyspell-overlays-in
5937 (match-beginning 0)
5938 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5939 (add-text-properties
5940 beg (match-end 3)
5941 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5942 '(font-lock-fontified t invisible t)
5943 '(font-lock-fontified t face org-document-info-keyword)))
5944 (add-text-properties
5945 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5946 (if (string-equal dc1 "+title:")
5947 '(font-lock-fontified t face org-document-title)
5948 '(font-lock-fontified t face org-document-info))))
5949 ((equal dc1 "+caption:")
5950 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5951 (remove-text-properties (match-beginning 0) (match-end 0)
5952 '(display t invisible t intangible t))
5953 (add-text-properties (match-beginning 1) (match-end 3)
5954 '(font-lock-fontified t face org-meta-line))
5955 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5956 '(font-lock-fontified t face org-block))
5958 ((member dc3 '(" " ""))
5959 (org-remove-flyspell-overlays-in beg (match-end 0))
5960 (add-text-properties
5961 beg (match-end 0)
5962 '(font-lock-fontified t face font-lock-comment-face)))
5963 (t ;; just any other in-buffer setting, but not indented
5964 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5965 (remove-text-properties (match-beginning 0) (match-end 0)
5966 '(display t invisible t intangible t))
5967 (add-text-properties beg (match-end 0)
5968 '(font-lock-fontified t face org-meta-line))
5969 t))))))
5971 (defun org-fontify-drawers (limit)
5972 "Fontify drawers."
5973 (when (re-search-forward org-drawer-regexp limit t)
5974 (add-text-properties
5975 (match-beginning 0) (match-end 0)
5976 '(font-lock-fontified t face org-special-keyword))
5977 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5980 (defun org-fontify-macros (limit)
5981 "Fontify macros."
5982 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5983 (add-text-properties
5984 (match-beginning 0) (match-end 0)
5985 '(font-lock-fontified t face org-macro))
5986 (when org-hide-macro-markers
5987 (add-text-properties (match-end 2) (match-beginning 2)
5988 '(invisible t))
5989 (add-text-properties (match-beginning 1) (match-end 1)
5990 '(invisible t)))
5991 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5994 (defun org-activate-angle-links (limit)
5995 "Add text properties for angle links."
5996 (if (and (re-search-forward org-angle-link-re limit t)
5997 (not (org-in-src-block-p)))
5998 (progn
5999 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6000 (add-text-properties (match-beginning 0) (match-end 0)
6001 (list 'mouse-face 'highlight
6002 'keymap org-mouse-map
6003 'font-lock-multiline t))
6004 (org-rear-nonsticky-at (match-end 0))
6005 t)))
6007 (defun org-activate-footnote-links (limit)
6008 "Add text properties for footnotes."
6009 (let ((fn (org-footnote-next-reference-or-definition limit)))
6010 (when fn
6011 (let* ((beg (nth 1 fn))
6012 (end (nth 2 fn))
6013 (label (car fn))
6014 (referencep (/= (line-beginning-position) beg)))
6015 (when (and referencep (nth 3 fn))
6016 (save-excursion
6017 (goto-char beg)
6018 (search-forward (or label "fn:"))
6019 (org-remove-flyspell-overlays-in beg (match-end 0))))
6020 (add-text-properties beg end
6021 (list 'mouse-face 'highlight
6022 'keymap org-mouse-map
6023 'help-echo
6024 (if referencep "Footnote reference"
6025 "Footnote definition")
6026 'font-lock-fontified t
6027 'font-lock-multiline t
6028 'face 'org-footnote))))))
6030 (defun org-activate-bracket-links (limit)
6031 "Add text properties for bracketed links."
6032 (if (and (re-search-forward org-bracket-link-regexp limit t)
6033 (not (org-in-src-block-p)))
6034 (let* ((hl (org-match-string-no-properties 1))
6035 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6036 (ip (org-maybe-intangible
6037 (list 'invisible 'org-link
6038 'keymap org-mouse-map 'mouse-face 'highlight
6039 'font-lock-multiline t 'help-echo help
6040 'htmlize-link `(:uri ,hl))))
6041 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6042 'font-lock-multiline t 'help-echo help
6043 'htmlize-link `(:uri ,hl))))
6044 ;; We need to remove the invisible property here. Table narrowing
6045 ;; may have made some of this invisible.
6046 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6047 (remove-text-properties (match-beginning 0) (match-end 0)
6048 '(invisible nil))
6049 (if (match-end 3)
6050 (progn
6051 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6052 (org-rear-nonsticky-at (match-beginning 3))
6053 (add-text-properties (match-beginning 3) (match-end 3) vp)
6054 (org-rear-nonsticky-at (match-end 3))
6055 (add-text-properties (match-end 3) (match-end 0) ip)
6056 (org-rear-nonsticky-at (match-end 0)))
6057 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6058 (org-rear-nonsticky-at (match-beginning 1))
6059 (add-text-properties (match-beginning 1) (match-end 1) vp)
6060 (org-rear-nonsticky-at (match-end 1))
6061 (add-text-properties (match-end 1) (match-end 0) ip)
6062 (org-rear-nonsticky-at (match-end 0)))
6063 t)))
6065 (defun org-activate-dates (limit)
6066 "Add text properties for dates."
6067 (if (and (re-search-forward org-tsr-regexp-both limit t)
6068 (not (equal (char-before (match-beginning 0)) 91)))
6069 (progn
6070 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6071 (add-text-properties (match-beginning 0) (match-end 0)
6072 (list 'mouse-face 'highlight
6073 'keymap org-mouse-map))
6074 (org-rear-nonsticky-at (match-end 0))
6075 (when org-display-custom-times
6076 (if (match-end 3)
6077 (org-display-custom-time (match-beginning 3) (match-end 3)))
6078 (org-display-custom-time (match-beginning 1) (match-end 1)))
6079 t)))
6081 (defvar org-target-link-regexp nil
6082 "Regular expression matching radio targets in plain text.")
6083 (make-variable-buffer-local 'org-target-link-regexp)
6085 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6086 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6087 border border border))
6088 "Regular expression matching a link target.")
6090 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6091 "Regular expression matching a radio target.")
6093 (defconst org-any-target-regexp
6094 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6095 "Regular expression matching any target.")
6097 (defun org-activate-target-links (limit)
6098 "Add text properties for target matches."
6099 (when org-target-link-regexp
6100 (let ((case-fold-search t))
6101 (if (re-search-forward org-target-link-regexp limit t)
6102 (progn
6103 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6104 (add-text-properties (match-beginning 1) (match-end 1)
6105 (list 'mouse-face 'highlight
6106 'keymap org-mouse-map
6107 'help-echo "Radio target link"
6108 'org-linked-text t))
6109 (org-rear-nonsticky-at (match-end 1))
6110 t)))))
6112 (defun org-update-radio-target-regexp ()
6113 "Find all radio targets in this file and update the regular expression.
6114 Also refresh fontification if needed."
6115 (interactive)
6116 (let ((old-regexp org-target-link-regexp)
6117 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6118 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6119 (targets
6120 (org-with-wide-buffer
6121 (goto-char (point-min))
6122 (let (rtn)
6123 (while (re-search-forward org-radio-target-regexp nil t)
6124 ;; Make sure point is really within the object.
6125 (backward-char)
6126 (let ((obj (org-element-context)))
6127 (when (eq (org-element-type obj) 'radio-target)
6128 (add-to-list 'rtn (org-element-property :value obj)))))
6129 rtn))))
6130 (setq org-target-link-regexp
6131 (and targets
6132 (concat before-re
6133 (mapconcat
6134 (lambda (x)
6135 (replace-regexp-in-string
6136 " +" "\\s-+" (regexp-quote x) t t))
6137 targets
6138 "\\|")
6139 after-re)))
6140 (unless (equal old-regexp org-target-link-regexp)
6141 ;; Clean-up cache.
6142 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6143 ((not org-target-link-regexp) old-regexp)
6145 (concat before-re
6146 (mapconcat
6147 (lambda (re)
6148 (substring re (length before-re)
6149 (- (length after-re))))
6150 (list old-regexp org-target-link-regexp)
6151 "\\|")
6152 after-re)))))
6153 (org-with-wide-buffer
6154 (goto-char (point-min))
6155 (while (re-search-forward regexp nil t)
6156 (org-element-cache-refresh (match-beginning 1)))))
6157 ;; Re fontify buffer.
6158 (when (memq 'radio org-highlight-links)
6159 (org-restart-font-lock)))))
6161 (defun org-hide-wide-columns (limit)
6162 (let (s e)
6163 (setq s (text-property-any (point) (or limit (point-max))
6164 'org-cwidth t))
6165 (when s
6166 (setq e (next-single-property-change s 'org-cwidth))
6167 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6168 (goto-char e)
6169 t)))
6171 (defvar org-latex-and-related-regexp nil
6172 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6174 (defun org-compute-latex-and-related-regexp ()
6175 "Compute regular expression for LaTeX, entities and sub/superscript.
6176 Result depends on variable `org-highlight-latex-and-related'."
6177 (org-set-local
6178 'org-latex-and-related-regexp
6179 (let* ((re-sub
6180 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6181 ((eq org-use-sub-superscripts '{})
6182 (list org-match-substring-with-braces-regexp))
6183 (org-use-sub-superscripts (list org-match-substring-regexp))))
6184 (re-latex
6185 (when (memq 'latex org-highlight-latex-and-related)
6186 (let ((matchers (plist-get org-format-latex-options :matchers)))
6187 (delq nil
6188 (mapcar (lambda (x)
6189 (and (member (car x) matchers) (nth 1 x)))
6190 org-latex-regexps)))))
6191 (re-entities
6192 (when (memq 'entities org-highlight-latex-and-related)
6193 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6194 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6196 (defun org-do-latex-and-related (limit)
6197 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6198 LIMIT bounds the search for syntax to highlight. Stop at first
6199 highlighted object, if any. Return t if some highlighting was
6200 done, nil otherwise."
6201 (when (org-string-nw-p org-latex-and-related-regexp)
6202 (catch 'found
6203 (while (re-search-forward org-latex-and-related-regexp limit t)
6204 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6205 'face))
6206 '(org-code org-verbatim underline))
6207 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6208 '(?_ ?^))
6210 0)))
6211 (font-lock-prepend-text-property
6212 (+ offset (match-beginning 0)) (match-end 0)
6213 'face 'org-latex-and-related)
6214 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6215 '(font-lock-multiline t)))
6216 (throw 'found t)))
6217 nil)))
6219 (defun org-restart-font-lock ()
6220 "Restart `font-lock-mode', to force refontification."
6221 (when (and (boundp 'font-lock-mode) font-lock-mode)
6222 (font-lock-mode -1)
6223 (font-lock-mode 1)))
6225 (defun org-activate-tags (limit)
6226 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6227 (progn
6228 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6229 (add-text-properties (match-beginning 1) (match-end 1)
6230 (list 'mouse-face 'highlight
6231 'keymap org-mouse-map))
6232 (org-rear-nonsticky-at (match-end 1))
6233 t)))
6235 (defun org-outline-level ()
6236 "Compute the outline level of the heading at point.
6238 If this is called at a normal headline, the level is the number
6239 of stars. Use `org-reduced-level' to remove the effect of
6240 `org-odd-levels'. Unlike to `org-current-level', this function
6241 takes into consideration inlinetasks."
6242 (org-with-wide-buffer
6243 (end-of-line)
6244 (if (re-search-backward org-outline-regexp-bol nil t)
6245 (1- (- (match-end 0) (match-beginning 0)))
6246 0)))
6248 (defvar org-font-lock-keywords nil)
6250 (defsubst org-re-property (property &optional literal allow-null value)
6251 "Return a regexp matching a PROPERTY line.
6253 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6254 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6255 non-nil, match properties even without a value.
6257 Match group 3 is set to the value when it exists. If there is no
6258 value and ALLOW-NULL is non-nil, it is set to the empty string.
6260 With optional argument VALUE, match only property lines with
6261 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6262 unless LITERAL is non-nil."
6263 (concat
6264 "^\\(?4:[ \t]*\\)"
6265 (format "\\(?1::\\(?2:%s\\):\\)"
6266 (if literal property (regexp-quote property)))
6267 (cond (value
6268 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6269 (if literal value (regexp-quote value))))
6270 (allow-null
6271 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6273 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6275 (defconst org-property-re
6276 (org-re-property "\\S-+" 'literal t)
6277 "Regular expression matching a property line.
6278 There are four matching groups:
6279 1: :PROPKEY: including the leading and trailing colon,
6280 2: PROPKEY without the leading and trailing colon,
6281 3: PROPVAL without leading or trailing spaces,
6282 4: the indentation of the current line,
6283 5: trailing whitespace.")
6285 (defvar org-font-lock-hook nil
6286 "Functions to be called for special font lock stuff.")
6288 (defvar org-font-lock-set-keywords-hook nil
6289 "Functions that can manipulate `org-font-lock-extra-keywords'.
6290 This is called after `org-font-lock-extra-keywords' is defined, but before
6291 it is installed to be used by font lock. This can be useful if something
6292 needs to be inserted at a specific position in the font-lock sequence.")
6294 (defun org-font-lock-hook (limit)
6295 "Run `org-font-lock-hook' within LIMIT."
6296 (run-hook-with-args 'org-font-lock-hook limit))
6298 (defun org-set-font-lock-defaults ()
6299 "Set font lock defaults for the current buffer."
6300 (let* ((em org-fontify-emphasized-text)
6301 (lk org-highlight-links)
6302 (org-font-lock-extra-keywords
6303 (list
6304 ;; Call the hook
6305 '(org-font-lock-hook)
6306 ;; Headlines
6307 `(,(if org-fontify-whole-heading-line
6308 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6309 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6310 (1 (org-get-level-face 1))
6311 (2 (org-get-level-face 2))
6312 (3 (org-get-level-face 3)))
6313 ;; Table lines
6314 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6315 (1 'org-table t))
6316 ;; Table internals
6317 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6318 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6319 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6320 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6321 ;; Drawers
6322 '(org-fontify-drawers)
6323 ;; Properties
6324 (list org-property-re
6325 '(1 'org-special-keyword t)
6326 '(3 'org-property-value t))
6327 ;; Links
6328 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6329 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6330 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6331 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6332 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6333 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6334 (if (memq 'footnote lk) '(org-activate-footnote-links))
6335 ;; Targets.
6336 (list org-any-target-regexp '(0 'org-target t))
6337 ;; Diary sexps.
6338 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6339 ;; Macro
6340 '(org-fontify-macros)
6341 '(org-hide-wide-columns (0 nil append))
6342 ;; TODO keyword
6343 (list (format org-heading-keyword-regexp-format
6344 org-todo-regexp)
6345 '(2 (org-get-todo-face 2) t))
6346 ;; DONE
6347 (if org-fontify-done-headline
6348 (list (format org-heading-keyword-regexp-format
6349 (concat
6350 "\\(?:"
6351 (mapconcat 'regexp-quote org-done-keywords "\\|")
6352 "\\)"))
6353 '(2 'org-headline-done t))
6354 nil)
6355 ;; Priorities
6356 '(org-font-lock-add-priority-faces)
6357 ;; Tags
6358 '(org-font-lock-add-tag-faces)
6359 ;; Tags groups
6360 (if (and org-group-tags org-tag-groups-alist)
6361 (list (concat org-outline-regexp-bol ".+\\(:"
6362 (regexp-opt (mapcar 'car org-tag-groups-alist))
6363 ":\\).*$")
6364 '(1 'org-tag-group prepend)))
6365 ;; Special keywords
6366 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6367 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6368 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6369 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6370 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6371 ;; Emphasis
6372 (if em
6373 (if (featurep 'xemacs)
6374 '(org-do-emphasis-faces (0 nil append))
6375 '(org-do-emphasis-faces)))
6376 ;; Checkboxes
6377 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6378 1 'org-checkbox prepend)
6379 (if (cdr (assq 'checkbox org-list-automatic-rules))
6380 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6381 (0 (org-get-checkbox-statistics-face) t)))
6382 ;; Description list items
6383 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6384 1 'org-list-dt prepend)
6385 ;; ARCHIVEd headings
6386 (list (concat
6387 org-outline-regexp-bol
6388 "\\(.*:" org-archive-tag ":.*\\)")
6389 '(1 'org-archived prepend))
6390 ;; Specials
6391 '(org-do-latex-and-related)
6392 '(org-fontify-entities)
6393 '(org-raise-scripts)
6394 ;; Code
6395 '(org-activate-code (1 'org-code t))
6396 ;; COMMENT
6397 (list (format
6398 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6399 org-todo-regexp
6400 org-comment-string)
6401 '(9 'org-special-keyword t))
6402 ;; Blocks and meta lines
6403 '(org-fontify-meta-lines-and-blocks))))
6404 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6405 (run-hooks 'org-font-lock-set-keywords-hook)
6406 ;; Now set the full font-lock-keywords
6407 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6408 (org-set-local 'font-lock-defaults
6409 '(org-font-lock-keywords t nil nil backward-paragraph))
6410 (kill-local-variable 'font-lock-keywords) nil))
6412 (defun org-toggle-pretty-entities ()
6413 "Toggle the composition display of entities as UTF8 characters."
6414 (interactive)
6415 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6416 (org-restart-font-lock)
6417 (if org-pretty-entities
6418 (message "Entities are now displayed as UTF8 characters")
6419 (save-restriction
6420 (widen)
6421 (org-decompose-region (point-min) (point-max))
6422 (message "Entities are now displayed as plain text"))))
6424 (defvar org-custom-properties-overlays nil
6425 "List of overlays used for custom properties.")
6426 (make-variable-buffer-local 'org-custom-properties-overlays)
6428 (defun org-toggle-custom-properties-visibility ()
6429 "Display or hide properties in `org-custom-properties'."
6430 (interactive)
6431 (if org-custom-properties-overlays
6432 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6433 (setq org-custom-properties-overlays nil))
6434 (when org-custom-properties
6435 (org-with-wide-buffer
6436 (goto-char (point-min))
6437 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6438 (while (re-search-forward regexp nil t)
6439 (let ((end (cdr (save-match-data (org-get-property-block)))))
6440 (when (and end (< (point) end))
6441 ;; Hide first custom property in current drawer.
6442 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6443 (overlay-put o 'invisible t)
6444 (overlay-put o 'org-custom-property t)
6445 (push o org-custom-properties-overlays))
6446 ;; Hide additional custom properties in the same drawer.
6447 (while (re-search-forward regexp end t)
6448 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6449 (overlay-put o 'invisible t)
6450 (overlay-put o 'org-custom-property t)
6451 (push o org-custom-properties-overlays)))))
6452 ;; Each entry is limited to a single property drawer.
6453 (outline-next-heading)))))))
6455 (defun org-fontify-entities (limit)
6456 "Find an entity to fontify."
6457 (let (ee)
6458 (when org-pretty-entities
6459 (catch 'match
6460 ;; "\_ "-family is left out on purpose. Only the first one,
6461 ;; i.e., "\_ ", could be fontified anyway, and it would be
6462 ;; confusing when adding a second white space character.
6463 (while (re-search-forward
6464 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6465 limit t)
6466 (if (and (not (org-at-comment-p))
6467 (setq ee (org-entity-get (match-string 1)))
6468 (= (length (nth 6 ee)) 1))
6469 (let*
6470 ((end (if (equal (match-string 2) "{}")
6471 (match-end 2)
6472 (match-end 1))))
6473 (add-text-properties
6474 (match-beginning 0) end
6475 (list 'font-lock-fontified t))
6476 (compose-region (match-beginning 0) end
6477 (nth 6 ee) nil)
6478 (backward-char 1)
6479 (throw 'match t))))
6480 nil))))
6482 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6483 "Fontify string S like in Org-mode."
6484 (with-temp-buffer
6485 (insert s)
6486 (let ((org-odd-levels-only odd-levels))
6487 (org-mode)
6488 (font-lock-ensure)
6489 (buffer-string))))
6491 (defvar org-m nil)
6492 (defvar org-l nil)
6493 (defvar org-f nil)
6494 (defun org-get-level-face (n)
6495 "Get the right face for match N in font-lock matching of headlines."
6496 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6497 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6498 (if org-cycle-level-faces
6499 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6500 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6501 (cond
6502 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6503 ((eq n 2) org-f)
6504 (t (if org-level-color-stars-only nil org-f))))
6506 (defun org-face-from-face-or-color (context inherit face-or-color)
6507 "Create a face list that inherits INHERIT, but sets the foreground color.
6508 When FACE-OR-COLOR is not a string, just return it."
6509 (if (stringp face-or-color)
6510 (list :inherit inherit
6511 (cdr (assoc context org-faces-easy-properties))
6512 face-or-color)
6513 face-or-color))
6515 (defun org-get-todo-face (kwd)
6516 "Get the right face for a TODO keyword KWD.
6517 If KWD is a number, get the corresponding match group."
6518 (if (numberp kwd) (setq kwd (match-string kwd)))
6519 (or (org-face-from-face-or-color
6520 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6521 (and (member kwd org-done-keywords) 'org-done)
6522 'org-todo))
6524 (defun org-get-priority-face (priority)
6525 "Get the right face for PRIORITY.
6526 PRIORITY is a character."
6527 (or (org-face-from-face-or-color
6528 'priority 'org-priority (cdr (assq priority org-priority-faces)))
6529 'org-priority))
6531 (defun org-get-tag-face (tag)
6532 "Get the right face for TAG.
6533 If TAG is a number, get the corresponding match group."
6534 (let ((tag (if (wholenump tag) (match-string tag) tag)))
6535 (or (org-face-from-face-or-color
6536 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
6537 'org-tag)))
6539 (defun org-font-lock-add-priority-faces (limit)
6540 "Add the special priority faces."
6541 (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
6542 (add-text-properties
6543 (match-beginning 1) (match-end 1)
6544 (list 'face (org-get-priority-face (string-to-char (match-string 2)))
6545 'font-lock-fontified t))))
6547 (defun org-font-lock-add-tag-faces (limit)
6548 "Add the special tag faces."
6549 (when (and org-tag-faces org-tags-special-faces-re)
6550 (while (re-search-forward org-tags-special-faces-re limit t)
6551 (add-text-properties (match-beginning 1) (match-end 1)
6552 (list 'face (org-get-tag-face 1)
6553 'font-lock-fontified t))
6554 (backward-char 1))))
6556 (defun org-unfontify-region (beg end &optional maybe_loudly)
6557 "Remove fontification and activation overlays from links."
6558 (font-lock-default-unfontify-region beg end)
6559 (let* ((buffer-undo-list t)
6560 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6561 (inhibit-modification-hooks t)
6562 deactivate-mark buffer-file-name buffer-file-truename)
6563 (org-decompose-region beg end)
6564 (remove-text-properties beg end
6565 '(mouse-face t keymap t org-linked-text t
6566 invisible t intangible t
6567 org-emphasis t))
6568 (org-remove-font-lock-display-properties beg end)))
6570 (defconst org-script-display '(((raise -0.3) (height 0.7))
6571 ((raise 0.3) (height 0.7))
6572 ((raise -0.5))
6573 ((raise 0.5)))
6574 "Display properties for showing superscripts and subscripts.")
6576 (defun org-remove-font-lock-display-properties (beg end)
6577 "Remove specific display properties that have been added by font lock.
6578 The will remove the raise properties that are used to show superscripts
6579 and subscripts."
6580 (let (next prop)
6581 (while (< beg end)
6582 (setq next (next-single-property-change beg 'display nil end)
6583 prop (get-text-property beg 'display))
6584 (if (member prop org-script-display)
6585 (put-text-property beg next 'display nil))
6586 (setq beg next))))
6588 (defun org-raise-scripts (limit)
6589 "Add raise properties to sub/superscripts."
6590 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6591 (if (re-search-forward
6592 (if (eq org-use-sub-superscripts t)
6593 org-match-substring-regexp
6594 org-match-substring-with-braces-regexp)
6595 limit t)
6596 (let* ((pos (point)) table-p comment-p
6597 (mpos (match-beginning 3))
6598 (emph-p (get-text-property mpos 'org-emphasis))
6599 (link-p (get-text-property mpos 'mouse-face))
6600 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6601 (goto-char (point-at-bol))
6602 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6603 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6604 (goto-char pos)
6605 ;; Handle a_b^c
6606 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6607 (if (or comment-p emph-p link-p keyw-p)
6609 (put-text-property (match-beginning 3) (match-end 0)
6610 'display
6611 (if (equal (char-after (match-beginning 2)) ?^)
6612 (nth (if table-p 3 1) org-script-display)
6613 (nth (if table-p 2 0) org-script-display)))
6614 (add-text-properties (match-beginning 2) (match-end 2)
6615 (list 'invisible t
6616 'org-dwidth t 'org-dwidth-n 1))
6617 (if (and (eq (char-after (match-beginning 3)) ?{)
6618 (eq (char-before (match-end 3)) ?}))
6619 (progn
6620 (add-text-properties
6621 (match-beginning 3) (1+ (match-beginning 3))
6622 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6623 (add-text-properties
6624 (1- (match-end 3)) (match-end 3)
6625 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6626 t)))))
6628 ;;;; Visibility cycling, including org-goto and indirect buffer
6630 ;;; Cycling
6632 (defvar org-cycle-global-status nil)
6633 (make-variable-buffer-local 'org-cycle-global-status)
6634 (put 'org-cycle-global-status 'org-state t)
6635 (defvar org-cycle-subtree-status nil)
6636 (make-variable-buffer-local 'org-cycle-subtree-status)
6637 (put 'org-cycle-subtree-status 'org-state t)
6639 (defvar org-inlinetask-min-level)
6641 (defun org-unlogged-message (&rest args)
6642 "Display a message, but avoid logging it in the *Messages* buffer."
6643 (let ((message-log-max nil))
6644 (apply 'message args)))
6646 ;;;###autoload
6647 (defun org-cycle (&optional arg)
6648 "TAB-action and visibility cycling for Org-mode.
6650 This is the command invoked in Org-mode by the TAB key. Its main purpose
6651 is outline visibility cycling, but it also invokes other actions
6652 in special contexts.
6654 - When this function is called with a prefix argument, rotate the entire
6655 buffer through 3 states (global cycling)
6656 1. OVERVIEW: Show only top-level headlines.
6657 2. CONTENTS: Show all headlines of all levels, but no body text.
6658 3. SHOW ALL: Show everything.
6659 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6660 determined by the variable `org-startup-folded', and by any VISIBILITY
6661 properties in the buffer.
6662 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6663 including any drawers.
6665 - When inside a table, re-align the table and move to the next field.
6667 - When point is at the beginning of a headline, rotate the subtree started
6668 by this line through 3 different states (local cycling)
6669 1. FOLDED: Only the main headline is shown.
6670 2. CHILDREN: The main headline and the direct children are shown.
6671 From this state, you can move to one of the children
6672 and zoom in further.
6673 3. SUBTREE: Show the entire subtree, including body text.
6674 If there is no subtree, switch directly from CHILDREN to FOLDED.
6676 - When point is at the beginning of an empty headline and the variable
6677 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6678 of the headline by demoting and promoting it to likely levels. This
6679 speeds up creation document structure by pressing TAB once or several
6680 times right after creating a new headline.
6682 - When there is a numeric prefix, go up to a heading with level ARG, do
6683 a `show-subtree' and return to the previous cursor position. If ARG
6684 is negative, go up that many levels.
6686 - When point is not at the beginning of a headline, execute the global
6687 binding for TAB, which is re-indenting the line. See the option
6688 `org-cycle-emulate-tab' for details.
6690 - Special case: if point is at the beginning of the buffer and there is
6691 no headline in line 1, this function will act as if called with prefix arg
6692 (C-u TAB, same as S-TAB) also when called without prefix arg.
6693 But only if also the variable `org-cycle-global-at-bob' is t."
6694 (interactive "P")
6695 (org-load-modules-maybe)
6696 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6697 (and org-cycle-level-after-item/entry-creation
6698 (or (org-cycle-level)
6699 (org-cycle-item-indentation))))
6700 (let* ((limit-level
6701 (or org-cycle-max-level
6702 (and (boundp 'org-inlinetask-min-level)
6703 org-inlinetask-min-level
6704 (1- org-inlinetask-min-level))))
6705 (nstars (and limit-level
6706 (if org-odd-levels-only
6707 (and limit-level (1- (* limit-level 2)))
6708 limit-level)))
6709 (org-outline-regexp
6710 (if (not (derived-mode-p 'org-mode))
6711 outline-regexp
6712 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6713 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6714 (not (looking-at org-outline-regexp))))
6715 (org-cycle-hook
6716 (if bob-special
6717 (delq 'org-optimize-window-after-visibility-change
6718 (copy-sequence org-cycle-hook))
6719 org-cycle-hook))
6720 (pos (point)))
6722 (if (or bob-special (equal arg '(4)))
6723 ;; special case: use global cycling
6724 (setq arg t))
6726 (cond
6728 ((equal arg '(16))
6729 (setq last-command 'dummy)
6730 (org-set-startup-visibility)
6731 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6733 ((equal arg '(64))
6734 (show-all)
6735 (org-unlogged-message "Entire buffer visible, including drawers"))
6737 ;; Try cdlatex TAB completion
6738 ((org-try-cdlatex-tab))
6740 ;; Table: enter it or move to the next field.
6741 ((org-at-table-p 'any)
6742 (if (org-at-table.el-p)
6743 (message "Use C-c ' to edit table.el tables")
6744 (if arg (org-table-edit-field t)
6745 (org-table-justify-field-maybe)
6746 (call-interactively 'org-table-next-field))))
6748 ((run-hook-with-args-until-success
6749 'org-tab-after-check-for-table-hook))
6751 ;; Global cycling: delegate to `org-cycle-internal-global'.
6752 ((eq arg t) (org-cycle-internal-global))
6754 ;; Drawers: delegate to `org-flag-drawer'.
6755 ((save-excursion
6756 (beginning-of-line 1)
6757 (looking-at org-drawer-regexp))
6758 (org-flag-drawer ; toggle block visibility
6759 (not (get-char-property (match-end 0) 'invisible))))
6761 ;; Show-subtree, ARG levels up from here.
6762 ((integerp arg)
6763 (save-excursion
6764 (org-back-to-heading)
6765 (outline-up-heading (if (< arg 0) (- arg)
6766 (- (funcall outline-level) arg)))
6767 (org-show-subtree)))
6769 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6770 ((and (featurep 'org-inlinetask)
6771 (org-inlinetask-at-task-p)
6772 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6773 (org-inlinetask-toggle-visibility))
6775 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6776 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6777 (save-excursion (move-beginning-of-line 1)
6778 (looking-at org-outline-regexp)))
6779 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6780 (org-cycle-internal-local))
6782 ;; From there: TAB emulation and template completion.
6783 (buffer-read-only (org-back-to-heading))
6785 ((run-hook-with-args-until-success
6786 'org-tab-after-check-for-cycling-hook))
6788 ((org-try-structure-completion))
6790 ((run-hook-with-args-until-success
6791 'org-tab-before-tab-emulation-hook))
6793 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6794 (or (not (bolp))
6795 (not (looking-at org-outline-regexp))))
6796 (call-interactively (global-key-binding "\t")))
6798 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6799 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6800 (or (and (eq org-cycle-emulate-tab 'white)
6801 (= (match-end 0) (point-at-eol)))
6802 (and (eq org-cycle-emulate-tab 'whitestart)
6803 (>= (match-end 0) pos))))
6805 (eq org-cycle-emulate-tab t))
6806 (call-interactively (global-key-binding "\t")))
6808 (t (save-excursion
6809 (org-back-to-heading)
6810 (org-cycle)))))))
6812 (defun org-cycle-internal-global ()
6813 "Do the global cycling action."
6814 ;; Hack to avoid display of messages for .org attachments in Gnus
6815 (let ((ga (string-match "\\*fontification" (buffer-name))))
6816 (cond
6817 ((and (eq last-command this-command)
6818 (eq org-cycle-global-status 'overview))
6819 ;; We just created the overview - now do table of contents
6820 ;; This can be slow in very large buffers, so indicate action
6821 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6822 (unless ga (org-unlogged-message "CONTENTS..."))
6823 (org-content)
6824 (unless ga (org-unlogged-message "CONTENTS...done"))
6825 (setq org-cycle-global-status 'contents)
6826 (run-hook-with-args 'org-cycle-hook 'contents))
6828 ((and (eq last-command this-command)
6829 (eq org-cycle-global-status 'contents))
6830 ;; We just showed the table of contents - now show everything
6831 (run-hook-with-args 'org-pre-cycle-hook 'all)
6832 (show-all)
6833 (unless ga (org-unlogged-message "SHOW ALL"))
6834 (setq org-cycle-global-status 'all)
6835 (run-hook-with-args 'org-cycle-hook 'all))
6838 ;; Default action: go to overview
6839 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6840 (org-overview)
6841 (unless ga (org-unlogged-message "OVERVIEW"))
6842 (setq org-cycle-global-status 'overview)
6843 (run-hook-with-args 'org-cycle-hook 'overview)))))
6845 (defvar org-called-with-limited-levels nil
6846 "Non-nil when `org-with-limited-levels' is currently active.")
6848 (defun org-cycle-internal-local ()
6849 "Do the local cycling action."
6850 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6851 ;; First, determine end of headline (EOH), end of subtree or item
6852 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6853 (save-excursion
6854 (if (org-at-item-p)
6855 (progn
6856 (beginning-of-line)
6857 (setq struct (org-list-struct))
6858 (setq eoh (point-at-eol))
6859 (setq eos (org-list-get-item-end-before-blank (point) struct))
6860 (setq has-children (org-list-has-child-p (point) struct)))
6861 (org-back-to-heading)
6862 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6863 (setq eos (save-excursion (org-end-of-subtree t t)
6864 (when (bolp) (backward-char)) (point)))
6865 (setq has-children
6866 (or (save-excursion
6867 (let ((level (funcall outline-level)))
6868 (outline-next-heading)
6869 (and (org-at-heading-p t)
6870 (> (funcall outline-level) level))))
6871 (save-excursion
6872 (org-list-search-forward (org-item-beginning-re) eos t)))))
6873 ;; Determine end invisible part of buffer (EOL)
6874 (beginning-of-line 2)
6875 ;; XEmacs doesn't have `next-single-char-property-change'
6876 (if (featurep 'xemacs)
6877 (while (and (not (eobp)) ;; this is like `next-line'
6878 (get-char-property (1- (point)) 'invisible))
6879 (beginning-of-line 2))
6880 (while (and (not (eobp)) ;; this is like `next-line'
6881 (get-char-property (1- (point)) 'invisible))
6882 (goto-char (next-single-char-property-change (point) 'invisible))
6883 (and (eolp) (beginning-of-line 2))))
6884 (setq eol (point)))
6885 ;; Find out what to do next and set `this-command'
6886 (cond
6887 ((= eos eoh)
6888 ;; Nothing is hidden behind this heading
6889 (unless (org-before-first-heading-p)
6890 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6891 (org-unlogged-message "EMPTY ENTRY")
6892 (setq org-cycle-subtree-status nil)
6893 (save-excursion
6894 (goto-char eos)
6895 (outline-next-heading)
6896 (if (outline-invisible-p) (org-flag-heading nil))))
6897 ((and (or (>= eol eos)
6898 (not (string-match "\\S-" (buffer-substring eol eos))))
6899 (or has-children
6900 (not (setq children-skipped
6901 org-cycle-skip-children-state-if-no-children))))
6902 ;; Entire subtree is hidden in one line: children view
6903 (unless (org-before-first-heading-p)
6904 (run-hook-with-args 'org-pre-cycle-hook 'children))
6905 (if (org-at-item-p)
6906 (org-list-set-item-visibility (point-at-bol) struct 'children)
6907 (org-show-entry)
6908 (org-with-limited-levels (show-children))
6909 ;; FIXME: This slows down the func way too much.
6910 ;; How keep drawers hidden in subtree anyway?
6911 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6912 ;; (org-cycle-hide-drawers 'subtree))
6914 ;; Fold every list in subtree to top-level items.
6915 (when (eq org-cycle-include-plain-lists 'integrate)
6916 (save-excursion
6917 (org-back-to-heading)
6918 (while (org-list-search-forward (org-item-beginning-re) eos t)
6919 (beginning-of-line 1)
6920 (let* ((struct (org-list-struct))
6921 (prevs (org-list-prevs-alist struct))
6922 (end (org-list-get-bottom-point struct)))
6923 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6924 (org-list-get-all-items (point) struct prevs))
6925 (goto-char (if (< end eos) end eos)))))))
6926 (org-unlogged-message "CHILDREN")
6927 (save-excursion
6928 (goto-char eos)
6929 (outline-next-heading)
6930 (if (outline-invisible-p) (org-flag-heading nil)))
6931 (setq org-cycle-subtree-status 'children)
6932 (unless (org-before-first-heading-p)
6933 (run-hook-with-args 'org-cycle-hook 'children)))
6934 ((or children-skipped
6935 (and (eq last-command this-command)
6936 (eq org-cycle-subtree-status 'children)))
6937 ;; We just showed the children, or no children are there,
6938 ;; now show everything.
6939 (unless (org-before-first-heading-p)
6940 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6941 (outline-flag-region eoh eos nil)
6942 (org-unlogged-message
6943 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6944 (setq org-cycle-subtree-status 'subtree)
6945 (unless (org-before-first-heading-p)
6946 (run-hook-with-args 'org-cycle-hook 'subtree)))
6948 ;; Default action: hide the subtree.
6949 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6950 (outline-flag-region eoh eos t)
6951 (org-unlogged-message "FOLDED")
6952 (setq org-cycle-subtree-status 'folded)
6953 (unless (org-before-first-heading-p)
6954 (run-hook-with-args 'org-cycle-hook 'folded))))))
6956 ;;;###autoload
6957 (defun org-global-cycle (&optional arg)
6958 "Cycle the global visibility. For details see `org-cycle'.
6959 With \\[universal-argument] prefix arg, switch to startup visibility.
6960 With a numeric prefix, show all headlines up to that level."
6961 (interactive "P")
6962 (let ((org-cycle-include-plain-lists
6963 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6964 (cond
6965 ((integerp arg)
6966 (show-all)
6967 (hide-sublevels arg)
6968 (setq org-cycle-global-status 'contents))
6969 ((equal arg '(4))
6970 (org-set-startup-visibility)
6971 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6973 (org-cycle '(4))))))
6975 (defun org-set-startup-visibility ()
6976 "Set the visibility required by startup options and properties."
6977 (cond
6978 ((eq org-startup-folded t)
6979 (org-overview))
6980 ((eq org-startup-folded 'content)
6981 (org-content))
6982 ((or (eq org-startup-folded 'showeverything)
6983 (eq org-startup-folded nil))
6984 (show-all)))
6985 (unless (eq org-startup-folded 'showeverything)
6986 (if org-hide-block-startup (org-hide-block-all))
6987 (org-set-visibility-according-to-property 'no-cleanup)
6988 (org-cycle-hide-archived-subtrees 'all)
6989 (org-cycle-hide-drawers 'all)
6990 (org-cycle-show-empty-lines t)))
6992 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6993 "Switch subtree visibilities according to :VISIBILITY: property."
6994 (interactive)
6995 (let (org-show-entry-below)
6996 (org-with-wide-buffer
6997 (goto-char (point-min))
6998 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
6999 (if (not (org-at-property-p)) (outline-next-heading)
7000 (let ((state (match-string 3)))
7001 (save-excursion
7002 (org-back-to-heading t)
7003 (hide-subtree)
7004 (org-reveal)
7005 (cond
7006 ((equal state "folded")
7007 (hide-subtree))
7008 ((equal state "children")
7009 (org-show-hidden-entry)
7010 (show-children))
7011 ((equal state "content")
7012 (save-excursion
7013 (save-restriction
7014 (org-narrow-to-subtree)
7015 (org-content))))
7016 ((member state '("all" "showall"))
7017 (show-subtree)))))))
7018 (unless no-cleanup
7019 (org-cycle-hide-archived-subtrees 'all)
7020 (org-cycle-hide-drawers 'all)
7021 (org-cycle-show-empty-lines 'all)))))
7023 ;; This function uses outline-regexp instead of the more fundamental
7024 ;; org-outline-regexp so that org-cycle-global works outside of Org
7025 ;; buffers, where outline-regexp is needed.
7026 (defun org-overview ()
7027 "Switch to overview mode, showing only top-level headlines.
7028 This shows all headlines with a level equal or greater than the level
7029 of the first headline in the buffer. This is important, because if the
7030 first headline is not level one, then (hide-sublevels 1) gives confusing
7031 results."
7032 (interactive)
7033 (save-excursion
7034 (let ((level
7035 (save-excursion
7036 (goto-char (point-min))
7037 (if (re-search-forward (concat "^" outline-regexp) nil t)
7038 (progn
7039 (goto-char (match-beginning 0))
7040 (funcall outline-level))))))
7041 (and level (hide-sublevels level)))))
7043 (defun org-content (&optional arg)
7044 "Show all headlines in the buffer, like a table of contents.
7045 With numerical argument N, show content up to level N."
7046 (interactive "P")
7047 (org-overview)
7048 (save-excursion
7049 ;; Visit all headings and show their offspring
7050 (and (integerp arg) (org-overview))
7051 (goto-char (point-max))
7052 (catch 'exit
7053 (while (and (progn (condition-case nil
7054 (outline-previous-visible-heading 1)
7055 (error (goto-char (point-min))))
7057 (looking-at org-outline-regexp))
7058 (if (integerp arg)
7059 (show-children (1- arg))
7060 (show-branches))
7061 (if (bobp) (throw 'exit nil))))))
7063 (defun org-optimize-window-after-visibility-change (state)
7064 "Adjust the window after a change in outline visibility.
7065 This function is the default value of the hook `org-cycle-hook'."
7066 (when (get-buffer-window (current-buffer))
7067 (cond
7068 ((eq state 'content) nil)
7069 ((eq state 'all) nil)
7070 ((eq state 'folded) nil)
7071 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7072 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7074 (defun org-remove-empty-overlays-at (pos)
7075 "Remove outline overlays that do not contain non-white stuff."
7076 (mapc
7077 (lambda (o)
7078 (and (eq 'outline (overlay-get o 'invisible))
7079 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7080 (overlay-end o))))
7081 (delete-overlay o)))
7082 (overlays-at pos)))
7084 (defun org-clean-visibility-after-subtree-move ()
7085 "Fix visibility issues after moving a subtree."
7086 ;; First, find a reasonable region to look at:
7087 ;; Start two siblings above, end three below
7088 (let* ((beg (save-excursion
7089 (and (org-get-last-sibling)
7090 (org-get-last-sibling))
7091 (point)))
7092 (end (save-excursion
7093 (and (org-get-next-sibling)
7094 (org-get-next-sibling)
7095 (org-get-next-sibling))
7096 (if (org-at-heading-p)
7097 (point-at-eol)
7098 (point))))
7099 (level (looking-at "\\*+"))
7100 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7101 (save-excursion
7102 (save-restriction
7103 (narrow-to-region beg end)
7104 (when re
7105 ;; Properly fold already folded siblings
7106 (goto-char (point-min))
7107 (while (re-search-forward re nil t)
7108 (if (and (not (outline-invisible-p))
7109 (save-excursion
7110 (goto-char (point-at-eol)) (outline-invisible-p)))
7111 (hide-entry))))
7112 (org-cycle-show-empty-lines 'overview)
7113 (org-cycle-hide-drawers 'overview)))))
7115 (defun org-cycle-show-empty-lines (state)
7116 "Show empty lines above all visible headlines.
7117 The region to be covered depends on STATE when called through
7118 `org-cycle-hook'. Lisp program can use t for STATE to get the
7119 entire buffer covered. Note that an empty line is only shown if there
7120 are at least `org-cycle-separator-lines' empty lines before the headline."
7121 (when (/= org-cycle-separator-lines 0)
7122 (save-excursion
7123 (let* ((n (abs org-cycle-separator-lines))
7124 (re (cond
7125 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7126 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7127 (t (let ((ns (number-to-string (- n 2))))
7128 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7129 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7130 beg end)
7131 (cond
7132 ((memq state '(overview contents t))
7133 (setq beg (point-min) end (point-max)))
7134 ((memq state '(children folded))
7135 (setq beg (point)
7136 end (progn (org-end-of-subtree t t)
7137 (line-beginning-position 2)))))
7138 (when beg
7139 (goto-char beg)
7140 (while (re-search-forward re end t)
7141 (unless (get-char-property (match-end 1) 'invisible)
7142 (let ((e (match-end 1))
7143 (b (if (>= org-cycle-separator-lines 0)
7144 (match-beginning 1)
7145 (save-excursion
7146 (goto-char (match-beginning 0))
7147 (skip-chars-backward " \t\n")
7148 (line-end-position)))))
7149 (outline-flag-region b e nil))))))))
7150 ;; Never hide empty lines at the end of the file.
7151 (save-excursion
7152 (goto-char (point-max))
7153 (outline-previous-heading)
7154 (outline-end-of-heading)
7155 (if (and (looking-at "[ \t\n]+")
7156 (= (match-end 0) (point-max)))
7157 (outline-flag-region (point) (match-end 0) nil))))
7159 (defun org-show-empty-lines-in-parent ()
7160 "Move to the parent and re-show empty lines before visible headlines."
7161 (save-excursion
7162 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7163 (org-cycle-show-empty-lines context))))
7165 (defun org-files-list ()
7166 "Return `org-agenda-files' list, plus all open org-mode files.
7167 This is useful for operations that need to scan all of a user's
7168 open and agenda-wise Org files."
7169 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7170 (dolist (buf (buffer-list))
7171 (with-current-buffer buf
7172 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7173 (let ((file (expand-file-name (buffer-file-name))))
7174 (unless (member file files)
7175 (push file files))))))
7176 files))
7178 (defsubst org-entry-beginning-position ()
7179 "Return the beginning position of the current entry."
7180 (save-excursion (outline-back-to-heading t) (point)))
7182 (defsubst org-entry-end-position ()
7183 "Return the end position of the current entry."
7184 (save-excursion (outline-next-heading) (point)))
7186 (defun org-cycle-hide-drawers (state &optional exceptions)
7187 "Re-hide all drawers after a visibility state change.
7188 When non-nil, optional argument EXCEPTIONS is a list of strings
7189 specifying which drawers should not be hidden."
7190 (when (and (derived-mode-p 'org-mode)
7191 (not (memq state '(overview folded contents))))
7192 (save-excursion
7193 (let* ((globalp (memq state '(contents all)))
7194 (beg (if globalp (point-min) (point)))
7195 (end (if globalp (point-max)
7196 (if (eq state 'children)
7197 (save-excursion (outline-next-heading) (point))
7198 (org-end-of-subtree t)))))
7199 (goto-char beg)
7200 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7201 (unless (member-ignore-case (match-string 1) exceptions)
7202 (let ((drawer (org-element-at-point)))
7203 (when (memq (org-element-type drawer) '(drawer property-drawer))
7204 (org-flag-drawer t drawer)
7205 ;; Make sure to skip drawer entirely or we might flag
7206 ;; it another time when matching its ending line with
7207 ;; `org-drawer-regexp'.
7208 (goto-char (org-element-property :end drawer))))))))))
7210 (defun org-flag-drawer (flag &optional element)
7211 "When FLAG is non-nil, hide the drawer we are at.
7212 Otherwise make it visible. When optional argument ELEMENT is
7213 a parsed drawer, as returned by `org-element-at-point', hide or
7214 show that drawer instead."
7215 (when (save-excursion
7216 (beginning-of-line)
7217 (org-looking-at-p org-drawer-regexp))
7218 (let ((drawer (or element (org-element-at-point))))
7219 (when (memq (org-element-type drawer) '(drawer property-drawer))
7220 (let ((post (org-element-property :post-affiliated drawer)))
7221 (save-excursion
7222 (outline-flag-region
7223 (progn (goto-char post) (line-end-position))
7224 (progn (goto-char (org-element-property :end drawer))
7225 (skip-chars-backward " \r\t\n")
7226 (line-end-position))
7227 flag))
7228 ;; When the drawer is hidden away, make sure point lies in
7229 ;; a visible part of the buffer.
7230 (when (and flag (> (line-beginning-position) post))
7231 (goto-char post)))))))
7233 (defun org-subtree-end-visible-p ()
7234 "Is the end of the current subtree visible?"
7235 (pos-visible-in-window-p
7236 (save-excursion (org-end-of-subtree t) (point))))
7238 (defun org-first-headline-recenter ()
7239 "Move cursor to the first headline and recenter the headline."
7240 (goto-char (point-min))
7241 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7242 (set-window-start (selected-window) (point-at-bol))))
7244 ;;; Saving and restoring visibility
7246 (defun org-outline-overlay-data (&optional use-markers)
7247 "Return a list of the locations of all outline overlays.
7248 These are overlays with the `invisible' property value `outline'.
7249 The return value is a list of cons cells, with start and stop
7250 positions for each overlay.
7251 If USE-MARKERS is set, return the positions as markers."
7252 (let (beg end)
7253 (save-excursion
7254 (save-restriction
7255 (widen)
7256 (delq nil
7257 (mapcar (lambda (o)
7258 (when (eq (overlay-get o 'invisible) 'outline)
7259 (setq beg (overlay-start o)
7260 end (overlay-end o))
7261 (and beg end (> end beg)
7262 (if use-markers
7263 (cons (copy-marker beg)
7264 (copy-marker end t))
7265 (cons beg end)))))
7266 (overlays-in (point-min) (point-max))))))))
7268 (defun org-set-outline-overlay-data (data)
7269 "Create visibility overlays for all positions in DATA.
7270 DATA should have been made by `org-outline-overlay-data'."
7271 (let (o)
7272 (save-excursion
7273 (save-restriction
7274 (widen)
7275 (show-all)
7276 (mapc (lambda (c)
7277 (outline-flag-region (car c) (cdr c) t))
7278 data)))))
7280 ;;; Folding of blocks
7282 (defvar org-hide-block-overlays nil
7283 "Overlays hiding blocks.")
7284 (make-variable-buffer-local 'org-hide-block-overlays)
7286 (defun org-block-map (function &optional start end)
7287 "Call FUNCTION at the head of all source blocks in the current buffer.
7288 Optional arguments START and END can be used to limit the range."
7289 (let ((start (or start (point-min)))
7290 (end (or end (point-max))))
7291 (save-excursion
7292 (goto-char start)
7293 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7294 (save-excursion
7295 (save-match-data
7296 (goto-char (match-beginning 0))
7297 (funcall function)))))))
7299 (defun org-hide-block-toggle-all ()
7300 "Toggle the visibility of all blocks in the current buffer."
7301 (org-block-map 'org-hide-block-toggle))
7303 (defun org-hide-block-all ()
7304 "Fold all blocks in the current buffer."
7305 (interactive)
7306 (org-show-block-all)
7307 (org-block-map 'org-hide-block-toggle-maybe))
7309 (defun org-show-block-all ()
7310 "Unfold all blocks in the current buffer."
7311 (interactive)
7312 (mapc 'delete-overlay org-hide-block-overlays)
7313 (setq org-hide-block-overlays nil))
7315 (defun org-hide-block-toggle-maybe ()
7316 "Toggle visibility of block at point.
7317 Unlike to `org-hide-block-toggle', this function does not throw
7318 an error. Return a non-nil value when toggling is successful."
7319 (interactive)
7320 (ignore-errors (org-hide-block-toggle)))
7322 (defun org-hide-block-toggle (&optional force)
7323 "Toggle the visibility of the current block.
7324 When optional argument FORCE is `off', make block visible. If it
7325 is non-nil, hide it unconditionally. Throw an error when not at
7326 a block. Return a non-nil value when toggling is successful."
7327 (interactive)
7328 (let ((element (org-element-at-point)))
7329 (unless (memq (org-element-type element)
7330 '(center-block comment-block dynamic-block example-block
7331 export-block quote-block special-block
7332 src-block verse-block))
7333 (user-error "Not at a block"))
7334 (let* ((start (save-excursion
7335 (goto-char (org-element-property :post-affiliated element))
7336 (line-end-position)))
7337 (end (save-excursion
7338 (goto-char (org-element-property :end element))
7339 (skip-chars-backward " \r\t\n")
7340 (line-end-position)))
7341 (overlays (overlays-at start)))
7342 (cond
7343 ;; Do nothing when not before or at the block opening line or
7344 ;; at the block closing line.
7345 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7346 ((and (not (eq force 'off))
7347 (not (memq t (mapcar
7348 (lambda (o)
7349 (eq (overlay-get o 'invisible) 'org-hide-block))
7350 overlays))))
7351 (let ((ov (make-overlay start end)))
7352 (overlay-put ov 'invisible 'org-hide-block)
7353 ;; Make the block accessible to `isearch'.
7354 (overlay-put
7355 ov 'isearch-open-invisible
7356 (lambda (ov)
7357 (when (memq ov org-hide-block-overlays)
7358 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7359 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7360 (delete-overlay ov))))
7361 (push ov org-hide-block-overlays)
7362 ;; When the block is hidden away, make sure point is left in
7363 ;; a visible part of the buffer.
7364 (when (> (line-beginning-position) start)
7365 (goto-char start)
7366 (beginning-of-line))
7367 ;; Signal successful toggling.
7369 ((or (not force) (eq force 'off))
7370 (dolist (ov overlays t)
7371 (when (memq ov org-hide-block-overlays)
7372 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7373 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7374 (delete-overlay ov))))))))
7376 ;; org-tab-after-check-for-cycling-hook
7377 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7378 ;; Remove overlays when changing major mode
7379 (add-hook 'org-mode-hook
7380 (lambda () (org-add-hook 'change-major-mode-hook
7381 'org-show-block-all 'append 'local)))
7383 ;;; Org-goto
7385 (defvar org-goto-window-configuration nil)
7386 (defvar org-goto-marker nil)
7387 (defvar org-goto-map)
7388 (defun org-goto-map ()
7389 "Set the keymap `org-goto'."
7390 (setq org-goto-map
7391 (let ((map (make-sparse-keymap)))
7392 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7393 mouse-drag-region universal-argument org-occur)))
7394 (dolist (cmd cmds)
7395 (substitute-key-definition cmd cmd map global-map)))
7396 (suppress-keymap map)
7397 (org-defkey map "\C-m" 'org-goto-ret)
7398 (org-defkey map [(return)] 'org-goto-ret)
7399 (org-defkey map [(left)] 'org-goto-left)
7400 (org-defkey map [(right)] 'org-goto-right)
7401 (org-defkey map [(control ?g)] 'org-goto-quit)
7402 (org-defkey map "\C-i" 'org-cycle)
7403 (org-defkey map [(tab)] 'org-cycle)
7404 (org-defkey map [(down)] 'outline-next-visible-heading)
7405 (org-defkey map [(up)] 'outline-previous-visible-heading)
7406 (if org-goto-auto-isearch
7407 (if (fboundp 'define-key-after)
7408 (define-key-after map [t] 'org-goto-local-auto-isearch)
7409 nil)
7410 (org-defkey map "q" 'org-goto-quit)
7411 (org-defkey map "n" 'outline-next-visible-heading)
7412 (org-defkey map "p" 'outline-previous-visible-heading)
7413 (org-defkey map "f" 'outline-forward-same-level)
7414 (org-defkey map "b" 'outline-backward-same-level)
7415 (org-defkey map "u" 'outline-up-heading))
7416 (org-defkey map "/" 'org-occur)
7417 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7418 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7419 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7420 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7421 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7422 map)))
7424 (defconst org-goto-help
7425 "Browse buffer copy, to find location or copy text.%s
7426 RET=jump to location C-g=quit and return to previous location
7427 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7429 (defvar org-goto-start-pos) ; dynamically scoped parameter
7431 (defun org-goto (&optional alternative-interface)
7432 "Look up a different location in the current file, keeping current visibility.
7434 When you want look-up or go to a different location in a
7435 document, the fastest way is often to fold the entire buffer and
7436 then dive into the tree. This method has the disadvantage, that
7437 the previous location will be folded, which may not be what you
7438 want.
7440 This command works around this by showing a copy of the current
7441 buffer in an indirect buffer, in overview mode. You can dive
7442 into the tree in that copy, use org-occur and incremental search
7443 to find a location. When pressing RET or `Q', the command
7444 returns to the original buffer in which the visibility is still
7445 unchanged. After RET it will also jump to the location selected
7446 in the indirect buffer and expose the headline hierarchy above.
7448 With a prefix argument, use the alternative interface: e.g. if
7449 `org-goto-interface' is 'outline use 'outline-path-completion."
7450 (interactive "P")
7451 (org-goto-map)
7452 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7453 (org-refile-use-outline-path t)
7454 (org-refile-target-verify-function nil)
7455 (interface
7456 (if (not alternative-interface)
7457 org-goto-interface
7458 (if (eq org-goto-interface 'outline)
7459 'outline-path-completion
7460 'outline)))
7461 (org-goto-start-pos (point))
7462 (selected-point
7463 (if (eq interface 'outline)
7464 (car (org-get-location (current-buffer) org-goto-help))
7465 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7466 (org-refile-check-position pa)
7467 (nth 3 pa)))))
7468 (if selected-point
7469 (progn
7470 (org-mark-ring-push org-goto-start-pos)
7471 (goto-char selected-point)
7472 (if (or (outline-invisible-p) (org-invisible-p2))
7473 (org-show-context 'org-goto)))
7474 (message "Quit"))))
7476 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7477 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7478 (defvar org-goto-local-auto-isearch-map) ; defined below
7480 (defun org-get-location (buf help)
7481 "Let the user select a location in the Org-mode buffer BUF.
7482 This function uses a recursive edit. It returns the selected position
7483 or nil."
7484 (org-no-popups
7485 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7486 (isearch-hide-immediately nil)
7487 (isearch-search-fun-function
7488 (lambda () 'org-goto-local-search-headings))
7489 (org-goto-selected-point org-goto-exit-command))
7490 (save-excursion
7491 (save-window-excursion
7492 (delete-other-windows)
7493 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7494 (org-pop-to-buffer-same-window
7495 (condition-case nil
7496 (make-indirect-buffer (current-buffer) "*org-goto*")
7497 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7498 (with-output-to-temp-buffer "*Org Help*"
7499 (princ (format help (if org-goto-auto-isearch
7500 " Just type for auto-isearch."
7501 " n/p/f/b/u to navigate, q to quit."))))
7502 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7503 (setq buffer-read-only nil)
7504 (let ((org-startup-truncated t)
7505 (org-startup-folded nil)
7506 (org-startup-align-all-tables nil))
7507 (org-mode)
7508 (org-overview))
7509 (setq buffer-read-only t)
7510 (if (and (boundp 'org-goto-start-pos)
7511 (integer-or-marker-p org-goto-start-pos))
7512 (progn (goto-char org-goto-start-pos)
7513 (when (outline-invisible-p)
7514 (org-show-set-visibility 'lineage)))
7515 (goto-char (point-min)))
7516 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7517 (message "Select location and press RET")
7518 (use-local-map org-goto-map)
7519 (recursive-edit)))
7520 (kill-buffer "*org-goto*")
7521 (cons org-goto-selected-point org-goto-exit-command))))
7523 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7524 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7525 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7526 (if (fboundp 'isearch-other-control-char)
7527 (progn
7528 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7529 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7530 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7531 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7532 (define-key org-goto-local-auto-isearch-map [return] nil))
7534 (defun org-goto-local-search-headings (string bound noerror)
7535 "Search and make sure that any matches are in headlines."
7536 (catch 'return
7537 (while (if isearch-forward
7538 (search-forward string bound noerror)
7539 (search-backward string bound noerror))
7540 (when (save-match-data
7541 (and (save-excursion
7542 (beginning-of-line)
7543 (looking-at org-complex-heading-regexp))
7544 (or (not (match-beginning 5))
7545 (< (point) (match-beginning 5)))))
7546 (throw 'return (point))))))
7548 (defun org-goto-local-auto-isearch ()
7549 "Start isearch."
7550 (interactive)
7551 (goto-char (point-min))
7552 (let ((keys (this-command-keys)))
7553 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7554 (isearch-mode t)
7555 (isearch-process-search-char (string-to-char keys)))))
7557 (defun org-goto-ret (&optional arg)
7558 "Finish `org-goto' by going to the new location."
7559 (interactive "P")
7560 (setq org-goto-selected-point (point)
7561 org-goto-exit-command 'return)
7562 (throw 'exit nil))
7564 (defun org-goto-left ()
7565 "Finish `org-goto' by going to the new location."
7566 (interactive)
7567 (if (org-at-heading-p)
7568 (progn
7569 (beginning-of-line 1)
7570 (setq org-goto-selected-point (point)
7571 org-goto-exit-command 'left)
7572 (throw 'exit nil))
7573 (user-error "Not on a heading")))
7575 (defun org-goto-right ()
7576 "Finish `org-goto' by going to the new location."
7577 (interactive)
7578 (if (org-at-heading-p)
7579 (progn
7580 (setq org-goto-selected-point (point)
7581 org-goto-exit-command 'right)
7582 (throw 'exit nil))
7583 (user-error "Not on a heading")))
7585 (defun org-goto-quit ()
7586 "Finish `org-goto' without cursor motion."
7587 (interactive)
7588 (setq org-goto-selected-point nil)
7589 (setq org-goto-exit-command 'quit)
7590 (throw 'exit nil))
7592 ;;; Indirect buffer display of subtrees
7594 (defvar org-indirect-dedicated-frame nil
7595 "This is the frame being used for indirect tree display.")
7596 (defvar org-last-indirect-buffer nil)
7598 (defun org-tree-to-indirect-buffer (&optional arg)
7599 "Create indirect buffer and narrow it to current subtree.
7600 With a numerical prefix ARG, go up to this level and then take that tree.
7601 If ARG is negative, go up that many levels.
7603 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7604 indirect buffer previously made with this command, to avoid proliferation of
7605 indirect buffers. However, when you call the command with a \
7606 \\[universal-argument] prefix, or
7607 when `org-indirect-buffer-display' is `new-frame', the last buffer
7608 is kept so that you can work with several indirect buffers at the same time.
7609 If `org-indirect-buffer-display' is `dedicated-frame', the \
7610 \\[universal-argument] prefix also
7611 requests that a new frame be made for the new buffer, so that the dedicated
7612 frame is not changed."
7613 (interactive "P")
7614 (let ((cbuf (current-buffer))
7615 (cwin (selected-window))
7616 (pos (point))
7617 beg end level heading ibuf)
7618 (save-excursion
7619 (org-back-to-heading t)
7620 (when (numberp arg)
7621 (setq level (org-outline-level))
7622 (if (< arg 0) (setq arg (+ level arg)))
7623 (while (> (setq level (org-outline-level)) arg)
7624 (org-up-heading-safe)))
7625 (setq beg (point)
7626 heading (org-get-heading))
7627 (org-end-of-subtree t t)
7628 (if (org-at-heading-p) (backward-char 1))
7629 (setq end (point)))
7630 (if (and (buffer-live-p org-last-indirect-buffer)
7631 (not (eq org-indirect-buffer-display 'new-frame))
7632 (not arg))
7633 (kill-buffer org-last-indirect-buffer))
7634 (setq ibuf (org-get-indirect-buffer cbuf heading)
7635 org-last-indirect-buffer ibuf)
7636 (cond
7637 ((or (eq org-indirect-buffer-display 'new-frame)
7638 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7639 (select-frame (make-frame))
7640 (delete-other-windows)
7641 (org-pop-to-buffer-same-window ibuf)
7642 (org-set-frame-title heading))
7643 ((eq org-indirect-buffer-display 'dedicated-frame)
7644 (raise-frame
7645 (select-frame (or (and org-indirect-dedicated-frame
7646 (frame-live-p org-indirect-dedicated-frame)
7647 org-indirect-dedicated-frame)
7648 (setq org-indirect-dedicated-frame (make-frame)))))
7649 (delete-other-windows)
7650 (org-pop-to-buffer-same-window ibuf)
7651 (org-set-frame-title (concat "Indirect: " heading)))
7652 ((eq org-indirect-buffer-display 'current-window)
7653 (org-pop-to-buffer-same-window ibuf))
7654 ((eq org-indirect-buffer-display 'other-window)
7655 (pop-to-buffer ibuf))
7656 (t (error "Invalid value")))
7657 (if (featurep 'xemacs)
7658 (save-excursion (org-mode) (turn-on-font-lock)))
7659 (narrow-to-region beg end)
7660 (show-all)
7661 (goto-char pos)
7662 (run-hook-with-args 'org-cycle-hook 'all)
7663 (and (window-live-p cwin) (select-window cwin))))
7665 (defun org-get-indirect-buffer (&optional buffer heading)
7666 (setq buffer (or buffer (current-buffer)))
7667 (let ((n 1) (base (buffer-name buffer)) bname)
7668 (while (buffer-live-p
7669 (get-buffer
7670 (setq bname
7671 (concat base "-"
7672 (if heading (concat heading "-" (number-to-string n))
7673 (number-to-string n))))))
7674 (setq n (1+ n)))
7675 (condition-case nil
7676 (make-indirect-buffer buffer bname 'clone)
7677 (error (make-indirect-buffer buffer bname)))))
7679 (defun org-set-frame-title (title)
7680 "Set the title of the current frame to the string TITLE."
7681 ;; FIXME: how to name a single frame in XEmacs???
7682 (unless (featurep 'xemacs)
7683 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7685 ;;;; Structure editing
7687 ;;; Inserting headlines
7689 (defun org-previous-line-empty-p (&optional next)
7690 "Is the previous line a blank line?
7691 When NEXT is non-nil, check the next line instead."
7692 (save-excursion
7693 (and (not (bobp))
7694 (or (beginning-of-line (if next 2 0)) t)
7695 (save-match-data
7696 (looking-at "[ \t]*$")))))
7698 (defun org-insert-heading (&optional arg invisible-ok top-level)
7699 "Insert a new heading or an item with the same depth at point.
7701 If point is at the beginning of a heading or a list item, insert
7702 a new heading or a new item above the current one. If point is
7703 at the beginning of a normal line, turn the line into a heading.
7705 If point is in the middle of a headline or a list item, split the
7706 headline or the item and create a new headline/item with the text
7707 in the current line after point \(see `org-M-RET-may-split-line'
7708 on how to modify this behavior).
7710 With one universal prefix argument, set the user option
7711 `org-insert-heading-respect-content' to t for the duration of
7712 the command. This modifies the behavior described above in this
7713 ways: on list items and at the beginning of normal lines, force
7714 the insertion of a heading after the current subtree.
7716 With two universal prefix arguments, insert the heading at the
7717 end of the grandparent subtree. For example, if point is within
7718 a 2nd-level heading, then it will insert a 2nd-level heading at
7719 the end of the 1st-level parent heading.
7721 If point is at the beginning of a headline, insert a sibling
7722 before the current headline. If point is not at the beginning,
7723 split the line and create a new headline with the text in the
7724 current line after point \(see `org-M-RET-may-split-line' on how
7725 to modify this behavior).
7727 If point is at the beginning of a normal line, turn this line
7728 into a heading.
7730 When INVISIBLE-OK is set, stop at invisible headlines when going
7731 back. This is important for non-interactive uses of the
7732 command.
7734 When optional argument TOP-LEVEL is non-nil, insert a level 1
7735 heading, unconditionally."
7736 (interactive "P")
7737 (if (org-called-interactively-p 'any) (org-reveal))
7738 (let ((itemp (and (not top-level) (org-in-item-p)))
7739 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7740 (respect-content (or org-insert-heading-respect-content
7741 (equal arg '(4))))
7742 (initial-content ""))
7744 (cond
7746 ((or (= (buffer-size) 0)
7747 (and (not (save-excursion
7748 (and (ignore-errors (org-back-to-heading invisible-ok))
7749 (org-at-heading-p))))
7750 (or arg (not itemp))))
7751 ;; At beginning of buffer or so high up that only a heading
7752 ;; makes sense.
7753 (cond ((and (bolp) (not respect-content)) (insert "* "))
7754 ((not respect-content)
7755 (unless may-split (end-of-line))
7756 (insert "\n* "))
7757 ((re-search-forward org-outline-regexp-bol nil t)
7758 (beginning-of-line)
7759 (insert "* \n")
7760 (backward-char))
7761 (t (goto-char (point-max))
7762 (insert "\n* ")))
7763 (run-hooks 'org-insert-heading-hook))
7765 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7768 ;; Maybe move at the end of the subtree
7769 (when (equal arg '(16))
7770 (org-up-heading-safe)
7771 (org-end-of-subtree t))
7772 ;; Insert a heading
7773 (save-restriction
7774 (widen)
7775 (let* ((level nil)
7776 (on-heading (org-at-heading-p))
7777 (empty-line-p (if on-heading
7778 (org-previous-line-empty-p)
7779 ;; We will decide later
7780 nil))
7781 ;; Get a level string to fall back on.
7782 (fix-level
7783 (if (org-before-first-heading-p) "*"
7784 (save-excursion
7785 (org-back-to-heading t)
7786 (if (org-previous-line-empty-p) (setq empty-line-p t))
7787 (looking-at org-outline-regexp)
7788 (make-string (1- (length (match-string 0))) ?*))))
7789 (stars
7790 (save-excursion
7791 (condition-case nil
7792 (if top-level "* "
7793 (org-back-to-heading invisible-ok)
7794 (when (and (not on-heading)
7795 (featurep 'org-inlinetask)
7796 (integerp org-inlinetask-min-level)
7797 (>= (length (match-string 0))
7798 org-inlinetask-min-level))
7799 ;; Find a heading level before the inline
7800 ;; task.
7801 (while (and (setq level (org-up-heading-safe))
7802 (>= level org-inlinetask-min-level)))
7803 (if (org-at-heading-p)
7804 (org-back-to-heading invisible-ok)
7805 (error "This should not happen")))
7806 (unless (and (save-excursion
7807 (save-match-data
7808 (org-backward-heading-same-level
7809 1 invisible-ok))
7810 (= (point) (match-beginning 0)))
7811 (not (org-previous-line-empty-p t)))
7812 (setq empty-line-p (or empty-line-p
7813 (org-previous-line-empty-p))))
7814 (match-string 0))
7815 (error (or fix-level "* ")))))
7816 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7817 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7818 pos hide-previous previous-pos)
7820 ;; If we insert after content, move there and clean up
7821 ;; whitespace.
7822 (when (and respect-content
7823 (not (org-looking-at-p org-outline-regexp-bol)))
7824 (if (not (org-before-first-heading-p))
7825 (org-end-of-subtree nil t)
7826 (re-search-forward org-outline-regexp-bol)
7827 (beginning-of-line 0))
7828 (skip-chars-backward " \r\t\n")
7829 (and (not (looking-back "^\\*+" (line-beginning-position)))
7830 (looking-at "[ \t]+") (replace-match ""))
7831 (unless (eobp) (forward-char 1))
7832 (when (looking-at "^\\*")
7833 (unless (bobp) (backward-char 1))
7834 (insert "\n")))
7836 ;; If we are splitting, grab the text that should be moved
7837 ;; to the new headline.
7838 (when may-split
7839 (if (org-on-heading-p)
7840 ;; This is a heading: split intelligently (keeping
7841 ;; tags).
7842 (let ((pos (point)))
7843 (beginning-of-line)
7844 (unless (looking-at org-complex-heading-regexp)
7845 (error "This should not happen"))
7846 (when (and (match-beginning 4)
7847 (> pos (match-beginning 4))
7848 (< pos (match-end 4)))
7849 (setq initial-content (buffer-substring pos (match-end 4)))
7850 (goto-char pos)
7851 (delete-region (point) (match-end 4))
7852 (if (looking-at "[ \t]*$")
7853 (replace-match "")
7854 (insert (make-string (length initial-content) ?\s)))
7855 (setq initial-content (org-trim initial-content)))
7856 (goto-char pos))
7857 ;; A normal line.
7858 (setq initial-content
7859 (org-trim
7860 (delete-and-extract-region (point) (line-end-position))))))
7862 ;; If we are at the beginning of the line, insert before it.
7863 ;; Otherwise, after it.
7864 (cond
7865 ((and (bolp) (looking-at "[ \t]*$")))
7866 ((bolp) (save-excursion (insert "\n")))
7867 (t (end-of-line)
7868 (insert "\n")))
7870 ;; Insert the new heading
7871 (insert stars)
7872 (just-one-space)
7873 (insert initial-content)
7874 (unless (and blank (org-previous-line-empty-p))
7875 (org-N-empty-lines-before-current (if blank 1 0)))
7876 ;; Adjust visibility, which may be messed up if we removed
7877 ;; blank lines while previous entry was hidden.
7878 (let ((bol (line-beginning-position)))
7879 (dolist (o (overlays-at (1- bol)))
7880 (when (and (eq (overlay-get o 'invisible) 'outline)
7881 (eq (overlay-end o) bol))
7882 (move-overlay o (overlay-start o) (1- bol)))))
7883 (run-hooks 'org-insert-heading-hook)))))))
7885 (defun org-N-empty-lines-before-current (N)
7886 "Make the number of empty lines before current exactly N.
7887 So this will delete or add empty lines."
7888 (save-excursion
7889 (beginning-of-line)
7890 (let ((p (point)))
7891 (skip-chars-backward " \r\t\n")
7892 (unless (bolp) (forward-line))
7893 (delete-region (point) p))
7894 (when (> N 0) (insert (make-string N ?\n)))))
7896 (defun org-get-heading (&optional no-tags no-todo)
7897 "Return the heading of the current entry, without the stars.
7898 When NO-TAGS is non-nil, don't include tags.
7899 When NO-TODO is non-nil, don't include TODO keywords."
7900 (save-excursion
7901 (org-back-to-heading t)
7902 (cond
7903 ((and no-tags no-todo)
7904 (looking-at org-complex-heading-regexp)
7905 (match-string 4))
7906 (no-tags
7907 (looking-at (concat org-outline-regexp
7908 "\\(.*?\\)"
7909 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7910 (match-string 1))
7911 (no-todo
7912 (looking-at org-todo-line-regexp)
7913 (match-string 3))
7914 (t (looking-at org-heading-regexp)
7915 (match-string 2)))))
7917 (defvar orgstruct-mode) ; defined below
7919 (defun org-heading-components ()
7920 "Return the components of the current heading.
7921 This is a list with the following elements:
7922 - the level as an integer
7923 - the reduced level, different if `org-odd-levels-only' is set.
7924 - the TODO keyword, or nil
7925 - the priority character, like ?A, or nil if no priority is given
7926 - the headline text itself, or the tags string if no headline text
7927 - the tags string, or nil."
7928 (save-excursion
7929 (org-back-to-heading t)
7930 (if (let (case-fold-search)
7931 (looking-at
7932 (if orgstruct-mode
7933 org-heading-regexp
7934 org-complex-heading-regexp)))
7935 (if orgstruct-mode
7936 (list (length (match-string 1))
7937 (org-reduced-level (length (match-string 1)))
7940 (match-string 2)
7941 nil)
7942 (list (length (match-string 1))
7943 (org-reduced-level (length (match-string 1)))
7944 (org-match-string-no-properties 2)
7945 (and (match-end 3) (aref (match-string 3) 2))
7946 (org-match-string-no-properties 4)
7947 (org-match-string-no-properties 5))))))
7949 (defun org-get-entry ()
7950 "Get the entry text, after heading, entire subtree."
7951 (save-excursion
7952 (org-back-to-heading t)
7953 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7955 (defun org-insert-heading-after-current ()
7956 "Insert a new heading with same level as current, after current subtree."
7957 (interactive)
7958 (org-back-to-heading)
7959 (org-insert-heading)
7960 (org-move-subtree-down)
7961 (end-of-line 1))
7963 (defun org-insert-heading-respect-content (&optional invisible-ok)
7964 "Insert heading with `org-insert-heading-respect-content' set to t."
7965 (interactive)
7966 (org-insert-heading '(4) invisible-ok))
7968 (defun org-insert-todo-heading-respect-content (&optional force-state)
7969 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7970 (interactive)
7971 (org-insert-todo-heading force-state '(4)))
7973 (defun org-insert-todo-heading (arg &optional force-heading)
7974 "Insert a new heading with the same level and TODO state as current heading.
7975 If the heading has no TODO state, or if the state is DONE, use the first
7976 state (TODO by default). Also with one prefix arg, force first state. With
7977 two prefix args, force inserting at the end of the parent subtree."
7978 (interactive "P")
7979 (when (or force-heading (not (org-insert-item 'checkbox)))
7980 (org-insert-heading (or (and (equal arg '(16)) '(16))
7981 force-heading))
7982 (save-excursion
7983 (org-back-to-heading)
7984 (outline-previous-heading)
7985 (looking-at org-todo-line-regexp))
7986 (let*
7987 ((new-mark-x
7988 (if (or (equal arg '(4))
7989 (not (match-beginning 2))
7990 (member (match-string 2) org-done-keywords))
7991 (car org-todo-keywords-1)
7992 (match-string 2)))
7993 (new-mark
7995 (run-hook-with-args-until-success
7996 'org-todo-get-default-hook new-mark-x nil)
7997 new-mark-x)))
7998 (beginning-of-line 1)
7999 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8000 (if org-treat-insert-todo-heading-as-state-change
8001 (org-todo new-mark)
8002 (insert new-mark " "))))
8003 (when org-provide-todo-statistics
8004 (org-update-parent-todo-statistics))))
8006 (defun org-insert-subheading (arg)
8007 "Insert a new subheading and demote it.
8008 Works for outline headings and for plain lists alike."
8009 (interactive "P")
8010 (org-insert-heading arg)
8011 (cond
8012 ((org-at-heading-p) (org-do-demote))
8013 ((org-at-item-p) (org-indent-item))))
8015 (defun org-insert-todo-subheading (arg)
8016 "Insert a new subheading with TODO keyword or checkbox and demote it.
8017 Works for outline headings and for plain lists alike."
8018 (interactive "P")
8019 (org-insert-todo-heading arg)
8020 (cond
8021 ((org-at-heading-p) (org-do-demote))
8022 ((org-at-item-p) (org-indent-item))))
8024 ;;; Promotion and Demotion
8026 (defvar org-after-demote-entry-hook nil
8027 "Hook run after an entry has been demoted.
8028 The cursor will be at the beginning of the entry.
8029 When a subtree is being demoted, the hook will be called for each node.")
8031 (defvar org-after-promote-entry-hook nil
8032 "Hook run after an entry has been promoted.
8033 The cursor will be at the beginning of the entry.
8034 When a subtree is being promoted, the hook will be called for each node.")
8036 (defun org-promote-subtree ()
8037 "Promote the entire subtree.
8038 See also `org-promote'."
8039 (interactive)
8040 (save-excursion
8041 (org-with-limited-levels (org-map-tree 'org-promote)))
8042 (org-fix-position-after-promote))
8044 (defun org-demote-subtree ()
8045 "Demote the entire subtree. See `org-demote'.
8046 See also `org-promote'."
8047 (interactive)
8048 (save-excursion
8049 (org-with-limited-levels (org-map-tree 'org-demote)))
8050 (org-fix-position-after-promote))
8053 (defun org-do-promote ()
8054 "Promote the current heading higher up the tree.
8055 If the region is active in `transient-mark-mode', promote all headings
8056 in the region."
8057 (interactive)
8058 (save-excursion
8059 (if (org-region-active-p)
8060 (org-map-region 'org-promote (region-beginning) (region-end))
8061 (org-promote)))
8062 (org-fix-position-after-promote))
8064 (defun org-do-demote ()
8065 "Demote the current heading lower down the tree.
8066 If the region is active in `transient-mark-mode', demote all headings
8067 in the region."
8068 (interactive)
8069 (save-excursion
8070 (if (org-region-active-p)
8071 (org-map-region 'org-demote (region-beginning) (region-end))
8072 (org-demote)))
8073 (org-fix-position-after-promote))
8075 (defun org-fix-position-after-promote ()
8076 "Make sure that after pro/demotion cursor position is right."
8077 (let ((pos (point)))
8078 (when (save-excursion
8079 (beginning-of-line 1)
8080 (looking-at org-todo-line-regexp)
8081 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8082 (cond ((eobp) (insert " "))
8083 ((eolp) (insert " "))
8084 ((equal (char-after) ?\ ) (forward-char 1))))))
8086 (defun org-current-level ()
8087 "Return the level of the current entry, or nil if before the first headline.
8088 The level is the number of stars at the beginning of the
8089 headline. Use `org-reduced-level' to remove the effect of
8090 `org-odd-levels'. Unlike to `org-outline-level', this function
8091 ignores inlinetasks."
8092 (let ((level (org-with-limited-levels (org-outline-level))))
8093 (and (> level 0) level)))
8095 (defun org-get-previous-line-level ()
8096 "Return the outline depth of the last headline before the current line.
8097 Returns 0 for the first headline in the buffer, and nil if before the
8098 first headline."
8099 (and (org-current-level)
8100 (or (and (/= (line-beginning-position) (point-min))
8101 (save-excursion (beginning-of-line 0) (org-current-level)))
8102 0)))
8104 (defun org-reduced-level (l)
8105 "Compute the effective level of a heading.
8106 This takes into account the setting of `org-odd-levels-only'."
8107 (cond
8108 ((zerop l) 0)
8109 (org-odd-levels-only (1+ (floor (/ l 2))))
8110 (t l)))
8112 (defun org-level-increment ()
8113 "Return the number of stars that will be added or removed at a
8114 time to headlines when structure editing, based on the value of
8115 `org-odd-levels-only'."
8116 (if org-odd-levels-only 2 1))
8118 (defun org-get-valid-level (level &optional change)
8119 "Rectify a level change under the influence of `org-odd-levels-only'
8120 LEVEL is a current level, CHANGE is by how much the level should be
8121 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8122 even level numbers will become the next higher odd number."
8123 (if org-odd-levels-only
8124 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8125 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8126 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8127 (max 1 (+ level (or change 0)))))
8129 (if (boundp 'define-obsolete-function-alias)
8130 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8131 (define-obsolete-function-alias 'org-get-legal-level
8132 'org-get-valid-level)
8133 (define-obsolete-function-alias 'org-get-legal-level
8134 'org-get-valid-level "23.1")))
8136 (defun org-promote ()
8137 "Promote the current heading higher up the tree."
8138 (org-with-wide-buffer
8139 (org-back-to-heading t)
8140 (let* ((after-change-functions (remq 'flyspell-after-change-function
8141 after-change-functions))
8142 (level (save-match-data (funcall outline-level)))
8143 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8144 (diff (abs (- level (length up-head) -1))))
8145 (cond
8146 ((and (= level 1) org-allow-promoting-top-level-subtree)
8147 (replace-match "# " nil t))
8148 ((= level 1)
8149 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8150 (t (replace-match up-head nil t)))
8151 (unless (= level 1)
8152 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8153 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8154 (run-hooks 'org-after-promote-entry-hook))))
8156 (defun org-demote ()
8157 "Demote the current heading lower down the tree."
8158 (org-with-wide-buffer
8159 (org-back-to-heading t)
8160 (let* ((after-change-functions (remq 'flyspell-after-change-function
8161 after-change-functions))
8162 (level (save-match-data (funcall outline-level)))
8163 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8164 (diff (abs (- level (length down-head) -1))))
8165 (replace-match down-head nil t)
8166 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8167 (when org-adapt-indentation (org-fixup-indentation diff))
8168 (run-hooks 'org-after-demote-entry-hook))))
8170 (defun org-cycle-level ()
8171 "Cycle the level of an empty headline through possible states.
8172 This goes first to child, then to parent, level, then up the hierarchy.
8173 After top level, it switches back to sibling level."
8174 (interactive)
8175 (let ((org-adapt-indentation nil))
8176 (when (org-point-at-end-of-empty-headline)
8177 (setq this-command 'org-cycle-level) ; Only needed for caching
8178 (let ((cur-level (org-current-level))
8179 (prev-level (org-get-previous-line-level)))
8180 (cond
8181 ;; If first headline in file, promote to top-level.
8182 ((= prev-level 0)
8183 (loop repeat (/ (- cur-level 1) (org-level-increment))
8184 do (org-do-promote)))
8185 ;; If same level as prev, demote one.
8186 ((= prev-level cur-level)
8187 (org-do-demote))
8188 ;; If parent is top-level, promote to top level if not already.
8189 ((= prev-level 1)
8190 (loop repeat (/ (- cur-level 1) (org-level-increment))
8191 do (org-do-promote)))
8192 ;; If top-level, return to prev-level.
8193 ((= cur-level 1)
8194 (loop repeat (/ (- prev-level 1) (org-level-increment))
8195 do (org-do-demote)))
8196 ;; If less than prev-level, promote one.
8197 ((< cur-level prev-level)
8198 (org-do-promote))
8199 ;; If deeper than prev-level, promote until higher than
8200 ;; prev-level.
8201 ((> cur-level prev-level)
8202 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8203 do (org-do-promote))))
8204 t))))
8206 (defun org-map-tree (fun)
8207 "Call FUN for every heading underneath the current one."
8208 (org-back-to-heading)
8209 (let ((level (funcall outline-level)))
8210 (save-excursion
8211 (funcall fun)
8212 (while (and (progn
8213 (outline-next-heading)
8214 (> (funcall outline-level) level))
8215 (not (eobp)))
8216 (funcall fun)))))
8218 (defun org-map-region (fun beg end)
8219 "Call FUN for every heading between BEG and END."
8220 (let ((org-ignore-region t))
8221 (save-excursion
8222 (setq end (copy-marker end))
8223 (goto-char beg)
8224 (if (and (re-search-forward org-outline-regexp-bol nil t)
8225 (< (point) end))
8226 (funcall fun))
8227 (while (and (progn
8228 (outline-next-heading)
8229 (< (point) end))
8230 (not (eobp)))
8231 (funcall fun)))))
8233 (defun org-fixup-indentation (diff)
8234 "Change the indentation in the current entry by DIFF.
8236 DIFF is an integer. Indentation is done according to the
8237 following rules:
8239 - Planning information and property drawers are always indented
8240 according to the new level of the headline;
8242 - Footnote definitions and their contents are ignored;
8244 - Inlinetasks' boundaries are not shifted;
8246 - Empty lines are ignored;
8248 - Other lines' indentation are shifted by DIFF columns, unless
8249 it would introduce a structural change in the document, in
8250 which case no shifting is done at all.
8252 Assume point is at a heading or an inlinetask beginning."
8253 (org-with-wide-buffer
8254 (narrow-to-region (line-beginning-position)
8255 (save-excursion
8256 (if (org-with-limited-levels (org-at-heading-p))
8257 (org-with-limited-levels (outline-next-heading))
8258 (org-inlinetask-goto-end))
8259 (point)))
8260 (forward-line)
8261 ;; Indent properly planning info and property drawer.
8262 (when (org-looking-at-p org-planning-line-re)
8263 (org-indent-line)
8264 (forward-line))
8265 (when (looking-at org-property-drawer-re)
8266 (goto-char (match-end 0))
8267 (forward-line)
8268 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8269 (catch 'no-shift
8270 (when (zerop diff) (throw 'no-shift nil))
8271 ;; If DIFF is negative, first check if a shift is possible at all
8272 ;; (e.g., it doesn't break structure). This can only happen if
8273 ;; some contents are not properly indented.
8274 (let ((case-fold-search t))
8275 (when (< diff 0)
8276 (let ((diff (- diff))
8277 (forbidden-re (concat org-outline-regexp
8278 "\\|"
8279 (substring org-footnote-definition-re 1))))
8280 (save-excursion
8281 (while (not (eobp))
8282 (cond
8283 ((org-looking-at-p "[ \t]*$") (forward-line))
8284 ((and (org-looking-at-p org-footnote-definition-re)
8285 (let ((e (org-element-at-point)))
8286 (and (eq (org-element-type e) 'footnote-definition)
8287 (goto-char (org-element-property :end e))))))
8288 ((org-looking-at-p org-outline-regexp) (forward-line))
8289 ;; Give up if shifting would move before column 0 or
8290 ;; if it would introduce a headline or a footnote
8291 ;; definition.
8293 (skip-chars-forward " \t")
8294 (let ((ind (current-column)))
8295 (when (or (< ind diff)
8296 (and (= ind diff) (org-looking-at-p forbidden-re)))
8297 (throw 'no-shift nil)))
8298 ;; Ignore contents of example blocks and source
8299 ;; blocks if their indentation is meant to be
8300 ;; preserved. Jump to block's closing line.
8301 (beginning-of-line)
8302 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8303 (let ((e (org-element-at-point)))
8304 (and (memq (org-element-type e)
8305 '(example-block src-block))
8306 (or org-src-preserve-indentation
8307 (org-element-property :preserve-indent e))
8308 (goto-char (org-element-property :end e))
8309 (progn (skip-chars-backward " \r\t\n")
8310 (beginning-of-line)
8311 t))))
8312 (forward-line))))))))
8313 ;; Shift lines but footnote definitions, inlinetasks boundaries
8314 ;; by DIFF. Also skip contents of source or example blocks
8315 ;; when indentation is meant to be preserved.
8316 (while (not (eobp))
8317 (cond
8318 ((and (org-looking-at-p org-footnote-definition-re)
8319 (let ((e (org-element-at-point)))
8320 (and (eq (org-element-type e) 'footnote-definition)
8321 (goto-char (org-element-property :end e))))))
8322 ((org-looking-at-p org-outline-regexp) (forward-line))
8323 ((org-looking-at-p "[ \t]*$") (forward-line))
8325 (org-indent-line-to (+ (org-get-indentation) diff))
8326 (beginning-of-line)
8327 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8328 (let ((e (org-element-at-point)))
8329 (and (memq (org-element-type e)
8330 '(example-block src-block))
8331 (or org-src-preserve-indentation
8332 (org-element-property :preserve-indent e))
8333 (goto-char (org-element-property :end e))
8334 (progn (skip-chars-backward " \r\t\n")
8335 (beginning-of-line)
8336 t))))
8337 (forward-line)))))))))
8339 (defun org-convert-to-odd-levels ()
8340 "Convert an org-mode file with all levels allowed to one with odd levels.
8341 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8342 level 5 etc."
8343 (interactive)
8344 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8345 (let ((outline-level 'org-outline-level)
8346 (org-odd-levels-only nil) n)
8347 (save-excursion
8348 (goto-char (point-min))
8349 (while (re-search-forward "^\\*\\*+ " nil t)
8350 (setq n (- (length (match-string 0)) 2))
8351 (while (>= (setq n (1- n)) 0)
8352 (org-demote))
8353 (end-of-line 1))))))
8355 (defun org-convert-to-oddeven-levels ()
8356 "Convert an org-mode file with only odd levels to one with odd/even levels.
8357 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8358 file contains a section with an even level, conversion would
8359 destroy the structure of the file. An error is signaled in this
8360 case."
8361 (interactive)
8362 (goto-char (point-min))
8363 ;; First check if there are no even levels
8364 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8365 (org-show-set-visibility 'canonical)
8366 (error "Not all levels are odd in this file. Conversion not possible"))
8367 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8368 (let ((outline-regexp org-outline-regexp)
8369 (outline-level 'org-outline-level)
8370 (org-odd-levels-only nil) n)
8371 (save-excursion
8372 (goto-char (point-min))
8373 (while (re-search-forward "^\\*\\*+ " nil t)
8374 (setq n (/ (1- (length (match-string 0))) 2))
8375 (while (>= (setq n (1- n)) 0)
8376 (org-promote))
8377 (end-of-line 1))))))
8379 (defun org-tr-level (n)
8380 "Make N odd if required."
8381 (if org-odd-levels-only (1+ (/ n 2)) n))
8383 ;;; Vertical tree motion, cutting and pasting of subtrees
8385 (defun org-move-subtree-up (&optional arg)
8386 "Move the current subtree up past ARG headlines of the same level."
8387 (interactive "p")
8388 (org-move-subtree-down (- (prefix-numeric-value arg))))
8390 (defun org-move-subtree-down (&optional arg)
8391 "Move the current subtree down past ARG headlines of the same level."
8392 (interactive "p")
8393 (setq arg (prefix-numeric-value arg))
8394 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8395 'org-get-last-sibling))
8396 (ins-point (make-marker))
8397 (cnt (abs arg))
8398 (col (current-column))
8399 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8400 ;; Select the tree
8401 (org-back-to-heading)
8402 (setq beg0 (point))
8403 (save-excursion
8404 (setq ne-beg (org-back-over-empty-lines))
8405 (setq beg (point)))
8406 (save-match-data
8407 (save-excursion (outline-end-of-heading)
8408 (setq folded (outline-invisible-p)))
8409 (progn (org-end-of-subtree nil t)
8410 (unless (eobp) (backward-char))))
8411 (outline-next-heading)
8412 (setq ne-end (org-back-over-empty-lines))
8413 (setq end (point))
8414 (goto-char beg0)
8415 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8416 ;; include less whitespace
8417 (save-excursion
8418 (goto-char beg)
8419 (forward-line (- ne-beg ne-end))
8420 (setq beg (point))))
8421 ;; Find insertion point, with error handling
8422 (while (> cnt 0)
8423 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8424 (progn (goto-char beg0)
8425 (user-error "Cannot move past superior level or buffer limit")))
8426 (setq cnt (1- cnt)))
8427 (if (> arg 0)
8428 ;; Moving forward - still need to move over subtree
8429 (progn (org-end-of-subtree t t)
8430 (save-excursion
8431 (org-back-over-empty-lines)
8432 (or (bolp) (newline)))))
8433 (setq ne-ins (org-back-over-empty-lines))
8434 (move-marker ins-point (point))
8435 (setq txt (buffer-substring beg end))
8436 (org-save-markers-in-region beg end)
8437 (delete-region beg end)
8438 (org-remove-empty-overlays-at beg)
8439 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8440 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8441 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8442 (let ((bbb (point)))
8443 (insert-before-markers txt)
8444 (org-reinstall-markers-in-region bbb)
8445 (move-marker ins-point bbb))
8446 (or (bolp) (insert "\n"))
8447 (setq ins-end (point))
8448 (goto-char ins-point)
8449 (org-skip-whitespace)
8450 (when (and (< arg 0)
8451 (org-first-sibling-p)
8452 (> ne-ins ne-beg))
8453 ;; Move whitespace back to beginning
8454 (save-excursion
8455 (goto-char ins-end)
8456 (let ((kill-whole-line t))
8457 (kill-line (- ne-ins ne-beg)) (point)))
8458 (insert (make-string (- ne-ins ne-beg) ?\n)))
8459 (move-marker ins-point nil)
8460 (if folded
8461 (hide-subtree)
8462 (org-show-entry)
8463 (show-children)
8464 (org-cycle-hide-drawers 'children))
8465 (org-clean-visibility-after-subtree-move)
8466 ;; move back to the initial column we were at
8467 (move-to-column col)))
8469 (defvar org-subtree-clip ""
8470 "Clipboard for cut and paste of subtrees.
8471 This is actually only a copy of the kill, because we use the normal kill
8472 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8474 (defvar org-subtree-clip-folded nil
8475 "Was the last copied subtree folded?
8476 This is used to fold the tree back after pasting.")
8478 (defun org-cut-subtree (&optional n)
8479 "Cut the current subtree into the clipboard.
8480 With prefix arg N, cut this many sequential subtrees.
8481 This is a short-hand for marking the subtree and then cutting it."
8482 (interactive "p")
8483 (org-copy-subtree n 'cut))
8485 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8486 "Copy the current subtree it in the clipboard.
8487 With prefix arg N, copy this many sequential subtrees.
8488 This is a short-hand for marking the subtree and then copying it.
8489 If CUT is non-nil, actually cut the subtree.
8490 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8491 of some markers in the region, even if CUT is non-nil. This is
8492 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8493 (interactive "p")
8494 (let (beg end folded (beg0 (point)))
8495 (if (org-called-interactively-p 'any)
8496 (org-back-to-heading nil) ; take what looks like a subtree
8497 (org-back-to-heading t)) ; take what is really there
8498 (setq beg (point))
8499 (skip-chars-forward " \t\r\n")
8500 (save-match-data
8501 (if nosubtrees
8502 (outline-next-heading)
8503 (save-excursion (outline-end-of-heading)
8504 (setq folded (outline-invisible-p)))
8505 (ignore-errors (org-forward-heading-same-level (1- n) t))
8506 (org-end-of-subtree t t)))
8507 ;; Include the end of an inlinetask
8508 (when (and (featurep 'org-inlinetask)
8509 (looking-at-p (concat (org-inlinetask-outline-regexp)
8510 "END[ \t]*$")))
8511 (end-of-line))
8512 (setq end (point))
8513 (goto-char beg0)
8514 (when (> end beg)
8515 (setq org-subtree-clip-folded folded)
8516 (when (or cut force-store-markers)
8517 (org-save-markers-in-region beg end))
8518 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8519 (setq org-subtree-clip (current-kill 0))
8520 (message "%s: Subtree(s) with %d characters"
8521 (if cut "Cut" "Copied")
8522 (length org-subtree-clip)))))
8524 (defun org-paste-subtree (&optional level tree for-yank remove)
8525 "Paste the clipboard as a subtree, with modification of headline level.
8526 The entire subtree is promoted or demoted in order to match a new headline
8527 level.
8529 If the cursor is at the beginning of a headline, the same level as
8530 that headline is used to paste the tree.
8532 If not, the new level is derived from the *visible* headings
8533 before and after the insertion point, and taken to be the inferior headline
8534 level of the two. So if the previous visible heading is level 3 and the
8535 next is level 4 (or vice versa), level 4 will be used for insertion.
8536 This makes sure that the subtree remains an independent subtree and does
8537 not swallow low level entries.
8539 You can also force a different level, either by using a numeric prefix
8540 argument, or by inserting the heading marker by hand. For example, if the
8541 cursor is after \"*****\", then the tree will be shifted to level 5.
8543 If optional TREE is given, use this text instead of the kill ring.
8545 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8546 move back over whitespace before inserting, and move point to the end of
8547 the inserted text when done.
8549 When REMOVE is non-nil, remove the subtree from the clipboard."
8550 (interactive "P")
8551 (setq tree (or tree (and kill-ring (current-kill 0))))
8552 (unless (org-kill-is-subtree-p tree)
8553 (user-error "%s"
8554 (substitute-command-keys
8555 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8556 (org-with-limited-levels
8557 (let* ((visp (not (outline-invisible-p)))
8558 (txt tree)
8559 (^re_ "\\(\\*+\\)[ \t]*")
8560 (old-level (if (string-match org-outline-regexp-bol txt)
8561 (- (match-end 0) (match-beginning 0) 1)
8562 -1))
8563 (force-level (cond (level (prefix-numeric-value level))
8564 ((and (looking-at "[ \t]*$")
8565 (string-match
8566 "^\\*+$" (buffer-substring
8567 (point-at-bol) (point))))
8568 (- (match-end 0) (match-beginning 0)))
8569 ((and (bolp)
8570 (looking-at org-outline-regexp))
8571 (- (match-end 0) (point) 1))))
8572 (previous-level (save-excursion
8573 (condition-case nil
8574 (progn
8575 (outline-previous-visible-heading 1)
8576 (if (looking-at ^re_)
8577 (- (match-end 0) (match-beginning 0) 1)
8579 (error 1))))
8580 (next-level (save-excursion
8581 (condition-case nil
8582 (progn
8583 (or (looking-at org-outline-regexp)
8584 (outline-next-visible-heading 1))
8585 (if (looking-at ^re_)
8586 (- (match-end 0) (match-beginning 0) 1)
8588 (error 1))))
8589 (new-level (or force-level (max previous-level next-level)))
8590 (shift (if (or (= old-level -1)
8591 (= new-level -1)
8592 (= old-level new-level))
8594 (- new-level old-level)))
8595 (delta (if (> shift 0) -1 1))
8596 (func (if (> shift 0) 'org-demote 'org-promote))
8597 (org-odd-levels-only nil)
8598 beg end newend)
8599 ;; Remove the forced level indicator
8600 (if force-level
8601 (delete-region (point-at-bol) (point)))
8602 ;; Paste
8603 (beginning-of-line (if (bolp) 1 2))
8604 (setq beg (point))
8605 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8606 (insert-before-markers txt)
8607 (unless (string-match "\n\\'" txt) (insert "\n"))
8608 (setq newend (point))
8609 (org-reinstall-markers-in-region beg)
8610 (setq end (point))
8611 (goto-char beg)
8612 (skip-chars-forward " \t\n\r")
8613 (setq beg (point))
8614 (if (and (outline-invisible-p) visp)
8615 (save-excursion (outline-show-heading)))
8616 ;; Shift if necessary
8617 (unless (= shift 0)
8618 (save-restriction
8619 (narrow-to-region beg end)
8620 (while (not (= shift 0))
8621 (org-map-region func (point-min) (point-max))
8622 (setq shift (+ delta shift)))
8623 (goto-char (point-min))
8624 (setq newend (point-max))))
8625 (when (or (org-called-interactively-p 'interactive) for-yank)
8626 (message "Clipboard pasted as level %d subtree" new-level))
8627 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8628 kill-ring
8629 (eq org-subtree-clip (current-kill 0))
8630 org-subtree-clip-folded)
8631 ;; The tree was folded before it was killed/copied
8632 (hide-subtree))
8633 (and for-yank (goto-char newend))
8634 (and remove (setq kill-ring (cdr kill-ring))))))
8636 (defun org-kill-is-subtree-p (&optional txt)
8637 "Check if the current kill is an outline subtree, or a set of trees.
8638 Returns nil if kill does not start with a headline, or if the first
8639 headline level is not the largest headline level in the tree.
8640 So this will actually accept several entries of equal levels as well,
8641 which is OK for `org-paste-subtree'.
8642 If optional TXT is given, check this string instead of the current kill."
8643 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8644 (re (org-get-limited-outline-regexp))
8645 (^re (concat "^" re))
8646 (start-level (and kill
8647 (string-match
8648 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8649 kill)
8650 (- (match-end 2) (match-beginning 2) 1)))
8651 (start (1+ (or (match-beginning 2) -1))))
8652 (if (not start-level)
8653 (progn
8654 nil) ;; does not even start with a heading
8655 (catch 'exit
8656 (while (setq start (string-match ^re kill (1+ start)))
8657 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8658 (throw 'exit nil)))
8659 t))))
8661 (defvar org-markers-to-move nil
8662 "Markers that should be moved with a cut-and-paste operation.
8663 Those markers are stored together with their positions relative to
8664 the start of the region.")
8666 (defun org-save-markers-in-region (beg end)
8667 "Check markers in region.
8668 If these markers are between BEG and END, record their position relative
8669 to BEG, so that after moving the block of text, we can put the markers back
8670 into place.
8671 This function gets called just before an entry or tree gets cut from the
8672 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8673 called immediately, to move the markers with the entries."
8674 (setq org-markers-to-move nil)
8675 (when (featurep 'org-clock)
8676 (org-clock-save-markers-for-cut-and-paste beg end))
8677 (when (featurep 'org-agenda)
8678 (org-agenda-save-markers-for-cut-and-paste beg end)))
8680 (defun org-check-and-save-marker (marker beg end)
8681 "Check if MARKER is between BEG and END.
8682 If yes, remember the marker and the distance to BEG."
8683 (when (and (marker-buffer marker)
8684 (equal (marker-buffer marker) (current-buffer)))
8685 (if (and (>= marker beg) (< marker end))
8686 (push (cons marker (- marker beg)) org-markers-to-move))))
8688 (defun org-reinstall-markers-in-region (beg)
8689 "Move all remembered markers to their position relative to BEG."
8690 (mapc (lambda (x)
8691 (move-marker (car x) (+ beg (cdr x))))
8692 org-markers-to-move)
8693 (setq org-markers-to-move nil))
8695 (defun org-narrow-to-subtree ()
8696 "Narrow buffer to the current subtree."
8697 (interactive)
8698 (save-excursion
8699 (save-match-data
8700 (org-with-limited-levels
8701 (narrow-to-region
8702 (progn (org-back-to-heading t) (point))
8703 (progn (org-end-of-subtree t t)
8704 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8705 (point)))))))
8707 (defun org-narrow-to-block ()
8708 "Narrow buffer to the current block."
8709 (interactive)
8710 (let* ((case-fold-search t)
8711 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8712 "^[ \t]*#\\+end_.*")))
8713 (if blockp
8714 (narrow-to-region (car blockp) (cdr blockp))
8715 (user-error "Not in a block"))))
8717 (defun org-clone-subtree-with-time-shift (n &optional shift)
8718 "Clone the task (subtree) at point N times.
8719 The clones will be inserted as siblings.
8721 In interactive use, the user will be prompted for the number of
8722 clones to be produced. If the entry has a timestamp, the user
8723 will also be prompted for a time shift, which may be a repeater
8724 as used in time stamps, for example `+3d'. To disable this,
8725 you can call the function with a universal prefix argument.
8727 When a valid repeater is given and the entry contains any time
8728 stamps, the clones will become a sequence in time, with time
8729 stamps in the subtree shifted for each clone produced. If SHIFT
8730 is nil or the empty string, time stamps will be left alone. The
8731 ID property of the original subtree is removed.
8733 If the original subtree did contain time stamps with a repeater,
8734 the following will happen:
8735 - the repeater will be removed in each clone
8736 - an additional clone will be produced, with the current, unshifted
8737 date(s) in the entry.
8738 - the original entry will be placed *after* all the clones, with
8739 repeater intact.
8740 - the start days in the repeater in the original entry will be shifted
8741 to past the last clone.
8742 In this way you can spell out a number of instances of a repeating task,
8743 and still retain the repeater to cover future instances of the task.
8745 As described above, N+1 clones are produced when the original
8746 subtree has a repeater. Setting N to 0, then, can be used to
8747 remove the repeater from a subtree and create a shifted clone
8748 with the original repeater."
8749 (interactive "nNumber of clones to produce: ")
8750 (let ((shift
8751 (or shift
8752 (if (and (not (equal current-prefix-arg '(4)))
8753 (save-excursion
8754 (re-search-forward org-ts-regexp-both
8755 (save-excursion
8756 (org-end-of-subtree t)
8757 (point)) t)))
8758 (read-from-minibuffer
8759 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8760 ""))) ;; No time shift
8761 (n-no-remove -1)
8762 (drawer-re org-drawer-regexp)
8763 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8764 beg end template task idprop
8765 shift-n shift-what doshift nmin nmax)
8766 (unless (wholenump n)
8767 (user-error "Invalid number of replications %s" n))
8768 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8769 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8770 shift)))
8771 (user-error "Invalid shift specification %s" shift))
8772 (when doshift
8773 (setq shift-n (string-to-number (match-string 1 shift))
8774 shift-what (cdr (assoc (match-string 2 shift)
8775 '(("d" . day) ("w" . week)
8776 ("m" . month) ("y" . year))))))
8777 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8778 (setq nmin 1 nmax n)
8779 (org-back-to-heading t)
8780 (setq beg (point))
8781 (setq idprop (org-entry-get nil "ID"))
8782 (org-end-of-subtree t t)
8783 (or (bolp) (insert "\n"))
8784 (setq end (point))
8785 (setq template (buffer-substring beg end))
8786 (when (and doshift
8787 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8788 (delete-region beg end)
8789 (setq end beg)
8790 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8791 (goto-char end)
8792 (loop for n from nmin to nmax do
8793 ;; prepare clone
8794 (with-temp-buffer
8795 (insert template)
8796 (org-mode)
8797 (goto-char (point-min))
8798 (org-show-subtree)
8799 (and idprop (if org-clone-delete-id
8800 (org-entry-delete nil "ID")
8801 (org-id-get-create t)))
8802 (unless (= n 0)
8803 (while (re-search-forward org-clock-re nil t)
8804 (kill-whole-line))
8805 (goto-char (point-min))
8806 (while (re-search-forward drawer-re nil t)
8807 (org-remove-empty-drawer-at (point))))
8808 (goto-char (point-min))
8809 (when doshift
8810 (while (re-search-forward org-ts-regexp-both nil t)
8811 (org-timestamp-change (* n shift-n) shift-what))
8812 (unless (= n n-no-remove)
8813 (goto-char (point-min))
8814 (while (re-search-forward org-ts-regexp nil t)
8815 (save-excursion
8816 (goto-char (match-beginning 0))
8817 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8818 (delete-region (match-beginning 1) (match-end 1)))))))
8819 (setq task (buffer-string)))
8820 (insert task))
8821 (goto-char beg)))
8823 ;;; Outline Sorting
8825 (defun org-sort (with-case)
8826 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8827 Optional argument WITH-CASE means sort case-sensitively."
8828 (interactive "P")
8829 (cond
8830 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8831 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8833 (org-call-with-arg 'org-sort-entries with-case))))
8835 (defun org-sort-remove-invisible (s)
8836 "Remove invisible links from string S."
8837 (remove-text-properties 0 (length s) org-rm-props s)
8838 (while (string-match org-bracket-link-regexp s)
8839 (setq s (replace-match (if (match-end 2)
8840 (match-string 3 s)
8841 (match-string 1 s))
8842 t t s)))
8843 (let ((st (format " %s " s)))
8844 (while (string-match org-emph-re st)
8845 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8846 (setq s (substring st 1 -1)))
8849 (defvar org-priority-regexp) ; defined later in the file
8851 (defvar org-after-sorting-entries-or-items-hook nil
8852 "Hook that is run after a bunch of entries or items have been sorted.
8853 When children are sorted, the cursor is in the parent line when this
8854 hook gets called. When a region or a plain list is sorted, the cursor
8855 will be in the first entry of the sorted region/list.")
8857 (defun org-sort-entries
8858 (&optional with-case sorting-type getkey-func compare-func property)
8859 "Sort entries on a certain level of an outline tree.
8860 If there is an active region, the entries in the region are sorted.
8861 Else, if the cursor is before the first entry, sort the top-level items.
8862 Else, the children of the entry at point are sorted.
8864 Sorting can be alphabetically, numerically, by date/time as given by
8865 a time stamp, by a property, by priority order, or by a custom function.
8867 The command prompts for the sorting type unless it has been given to the
8868 function through the SORTING-TYPE argument, which needs to be a character,
8869 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8870 the precise meaning of each character:
8872 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8873 c By creation time, which is assumed to be the first inactive time stamp
8874 at the beginning of a line.
8875 d By deadline date/time.
8876 k By clocking time.
8877 n Numerically, by converting the beginning of the entry/item to a number.
8878 o By order of TODO keywords.
8879 p By priority according to the cookie.
8880 r By the value of a property.
8881 s By scheduled date/time.
8882 t By date/time, either the first active time stamp in the entry, or, if
8883 none exist, by the first inactive one.
8885 Capital letters will reverse the sort order.
8887 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8888 called with point at the beginning of the record. It must return either
8889 a string or a number that should serve as the sorting key for that record.
8891 Comparing entries ignores case by default. However, with an optional argument
8892 WITH-CASE, the sorting considers case as well.
8894 Sorting is done against the visible part of the headlines, it ignores hidden
8895 links.
8897 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8898 (interactive "P")
8899 (let ((case-func (if with-case 'identity 'downcase))
8900 (cmstr
8901 ;; The clock marker is lost when using `sort-subr', let's
8902 ;; store the clocking string.
8903 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8904 (save-excursion
8905 (goto-char org-clock-marker)
8906 (buffer-substring-no-properties (line-beginning-position)
8907 (point)))))
8908 start beg end stars re re2
8909 txt what tmp)
8910 ;; Find beginning and end of region to sort
8911 (cond
8912 ((org-region-active-p)
8913 ;; we will sort the region
8914 (setq end (region-end)
8915 what "region")
8916 (goto-char (region-beginning))
8917 (if (not (org-at-heading-p)) (outline-next-heading))
8918 (setq start (point)))
8919 ((or (org-at-heading-p)
8920 (ignore-errors (progn (org-back-to-heading) t)))
8921 ;; we will sort the children of the current headline
8922 (org-back-to-heading)
8923 (setq start (point)
8924 end (progn (org-end-of-subtree t t)
8925 (or (bolp) (insert "\n"))
8926 (when (>= (org-back-over-empty-lines) 1)
8927 (forward-line 1))
8928 (point))
8929 what "children")
8930 (goto-char start)
8931 (show-subtree)
8932 (outline-next-heading))
8934 ;; we will sort the top-level entries in this file
8935 (goto-char (point-min))
8936 (or (org-at-heading-p) (outline-next-heading))
8937 (setq start (point))
8938 (goto-char (point-max))
8939 (beginning-of-line 1)
8940 (when (looking-at ".*?\\S-")
8941 ;; File ends in a non-white line
8942 (end-of-line 1)
8943 (insert "\n"))
8944 (setq end (point-max))
8945 (setq what "top-level")
8946 (goto-char start)
8947 (show-all)))
8949 (setq beg (point))
8950 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8952 (looking-at "\\(\\*+\\)")
8953 (setq stars (match-string 1)
8954 re (concat "^" (regexp-quote stars) " +")
8955 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8956 txt (buffer-substring beg end))
8957 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8958 (if (and (not (equal stars "*")) (string-match re2 txt))
8959 (user-error "Region to sort contains a level above the first entry"))
8961 (unless sorting-type
8962 (message
8963 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8964 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8965 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8966 what)
8967 (setq sorting-type (read-char-exclusive))
8969 (unless getkey-func
8970 (and (= (downcase sorting-type) ?f)
8971 (setq getkey-func
8972 (org-icompleting-read "Sort using function: "
8973 obarray 'fboundp t nil nil))
8974 (setq getkey-func (intern getkey-func))))
8976 (and (= (downcase sorting-type) ?r)
8977 (not property)
8978 (setq property
8979 (org-icompleting-read "Property: "
8980 (mapcar 'list (org-buffer-property-keys t))
8981 nil t))))
8983 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8984 (message "Sorting entries...")
8986 (save-restriction
8987 (narrow-to-region start end)
8988 (let ((dcst (downcase sorting-type))
8989 (case-fold-search nil)
8990 (now (current-time)))
8991 (sort-subr
8992 (/= dcst sorting-type)
8993 ;; This function moves to the beginning character of the "record" to
8994 ;; be sorted.
8995 (lambda nil
8996 (if (re-search-forward re nil t)
8997 (goto-char (match-beginning 0))
8998 (goto-char (point-max))))
8999 ;; This function moves to the last character of the "record" being
9000 ;; sorted.
9001 (lambda nil
9002 (save-match-data
9003 (condition-case nil
9004 (outline-forward-same-level 1)
9005 (error
9006 (goto-char (point-max))))))
9007 ;; This function returns the value that gets sorted against.
9008 (lambda nil
9009 (cond
9010 ((= dcst ?n)
9011 (if (looking-at org-complex-heading-regexp)
9012 (string-to-number (org-sort-remove-invisible (match-string 4)))
9013 nil))
9014 ((= dcst ?a)
9015 (if (looking-at org-complex-heading-regexp)
9016 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9017 nil))
9018 ((= dcst ?k)
9019 (or (get-text-property (point) :org-clock-minutes) 0))
9020 ((= dcst ?t)
9021 (let ((end (save-excursion (outline-next-heading) (point))))
9022 (if (or (re-search-forward org-ts-regexp end t)
9023 (re-search-forward org-ts-regexp-both end t))
9024 (org-time-string-to-seconds (match-string 0))
9025 (org-float-time now))))
9026 ((= dcst ?c)
9027 (let ((end (save-excursion (outline-next-heading) (point))))
9028 (if (re-search-forward
9029 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9030 end t)
9031 (org-time-string-to-seconds (match-string 0))
9032 (org-float-time now))))
9033 ((= dcst ?s)
9034 (let ((end (save-excursion (outline-next-heading) (point))))
9035 (if (re-search-forward org-scheduled-time-regexp end t)
9036 (org-time-string-to-seconds (match-string 1))
9037 (org-float-time now))))
9038 ((= dcst ?d)
9039 (let ((end (save-excursion (outline-next-heading) (point))))
9040 (if (re-search-forward org-deadline-time-regexp end t)
9041 (org-time-string-to-seconds (match-string 1))
9042 (org-float-time now))))
9043 ((= dcst ?p)
9044 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9045 (string-to-char (match-string 2))
9046 org-default-priority))
9047 ((= dcst ?r)
9048 (or (org-entry-get nil property) ""))
9049 ((= dcst ?o)
9050 (if (looking-at org-complex-heading-regexp)
9051 (let* ((m (match-string 2))
9052 (s (if (member m org-done-keywords) '- '+)))
9053 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9054 ((= dcst ?f)
9055 (if getkey-func
9056 (progn
9057 (setq tmp (funcall getkey-func))
9058 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9059 tmp)
9060 (error "Invalid key function `%s'" getkey-func)))
9061 (t (error "Invalid sorting type `%c'" sorting-type))))
9063 (cond
9064 ((= dcst ?a) 'string<)
9065 ((= dcst ?f) compare-func)
9066 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9067 (run-hooks 'org-after-sorting-entries-or-items-hook)
9068 ;; Reset the clock marker if needed
9069 (when cmstr
9070 (save-excursion
9071 (goto-char start)
9072 (search-forward cmstr nil t)
9073 (move-marker org-clock-marker (point))))
9074 (message "Sorting entries...done")))
9076 ;;; The orgstruct minor mode
9078 ;; Define a minor mode which can be used in other modes in order to
9079 ;; integrate the org-mode structure editing commands.
9081 ;; This is really a hack, because the org-mode structure commands use
9082 ;; keys which normally belong to the major mode. Here is how it
9083 ;; works: The minor mode defines all the keys necessary to operate the
9084 ;; structure commands, but wraps the commands into a function which
9085 ;; tests if the cursor is currently at a headline or a plain list
9086 ;; item. If that is the case, the structure command is used,
9087 ;; temporarily setting many Org-mode variables like regular
9088 ;; expressions for filling etc. However, when any of those keys is
9089 ;; used at a different location, function uses `key-binding' to look
9090 ;; up if the key has an associated command in another currently active
9091 ;; keymap (minor modes, major mode, global), and executes that
9092 ;; command. There might be problems if any of the keys is otherwise
9093 ;; used as a prefix key.
9095 (defcustom orgstruct-heading-prefix-regexp ""
9096 "Regexp that matches the custom prefix of Org headlines in
9097 orgstruct(++)-mode."
9098 :group 'org
9099 :version "24.4"
9100 :package-version '(Org . "8.3")
9101 :type 'regexp)
9102 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9104 (defcustom orgstruct-setup-hook nil
9105 "Hook run after orgstruct-mode-map is filled."
9106 :group 'org
9107 :version "24.4"
9108 :package-version '(Org . "8.0")
9109 :type 'hook)
9111 (defvar orgstruct-initialized nil)
9113 (defvar org-local-vars nil
9114 "List of local variables, for use by `orgstruct-mode'.")
9116 ;;;###autoload
9117 (define-minor-mode orgstruct-mode
9118 "Toggle the minor mode `orgstruct-mode'.
9119 This mode is for using Org-mode structure commands in other
9120 modes. The following keys behave as if Org-mode were active, if
9121 the cursor is on a headline, or on a plain list item (both as
9122 defined by Org-mode)."
9123 nil " OrgStruct" (make-sparse-keymap)
9124 (funcall (if orgstruct-mode
9125 'add-to-invisibility-spec
9126 'remove-from-invisibility-spec)
9127 '(outline . t))
9128 (when orgstruct-mode
9129 (org-load-modules-maybe)
9130 (unless orgstruct-initialized
9131 (orgstruct-setup)
9132 (setq orgstruct-initialized t))))
9134 ;;;###autoload
9135 (defun turn-on-orgstruct ()
9136 "Unconditionally turn on `orgstruct-mode'."
9137 (orgstruct-mode 1))
9139 (defvar org-fb-vars nil)
9140 (make-variable-buffer-local 'org-fb-vars)
9141 (defun orgstruct++-mode (&optional arg)
9142 "Toggle `orgstruct-mode', the enhanced version of it.
9143 In addition to setting orgstruct-mode, this also exports all
9144 indentation and autofilling variables from org-mode into the
9145 buffer. It will also recognize item context in multiline items."
9146 (interactive "P")
9147 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9148 (if (< arg 1)
9149 (progn (orgstruct-mode -1)
9150 (mapc (lambda(v)
9151 (org-set-local (car v)
9152 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9153 org-fb-vars))
9154 (orgstruct-mode 1)
9155 (setq org-fb-vars nil)
9156 (unless org-local-vars
9157 (setq org-local-vars (org-get-local-variables)))
9158 (let (var val)
9159 (mapc
9160 (lambda (x)
9161 (when (string-match
9162 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9163 (symbol-name (car x)))
9164 (setq var (car x) val (nth 1 x))
9165 (push (list var `(quote ,(eval var))) org-fb-vars)
9166 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9167 org-local-vars)
9168 (org-set-local 'orgstruct-is-++ t))))
9170 (defvar orgstruct-is-++ nil
9171 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9172 (make-variable-buffer-local 'orgstruct-is-++)
9174 ;;;###autoload
9175 (defun turn-on-orgstruct++ ()
9176 "Unconditionally turn on `orgstruct++-mode'."
9177 (orgstruct++-mode 1))
9179 (defun orgstruct-error ()
9180 "Error when there is no default binding for a structure key."
9181 (interactive)
9182 (funcall (if (fboundp 'user-error)
9183 'user-error
9184 'error)
9185 "This key has no function outside structure elements"))
9187 (defun orgstruct-setup ()
9188 "Setup orgstruct keymap."
9189 (dolist (cell '((org-demote . t)
9190 (org-metaleft . t)
9191 (org-metaright . t)
9192 (org-promote . t)
9193 (org-shiftmetaleft . t)
9194 (org-shiftmetaright . t)
9195 org-backward-element
9196 org-backward-heading-same-level
9197 org-ctrl-c-ret
9198 org-ctrl-c-minus
9199 org-ctrl-c-star
9200 org-cycle
9201 org-forward-heading-same-level
9202 org-insert-heading
9203 org-insert-heading-respect-content
9204 org-kill-note-or-show-branches
9205 org-mark-subtree
9206 org-meta-return
9207 org-metadown
9208 org-metaup
9209 org-narrow-to-subtree
9210 org-promote-subtree
9211 org-reveal
9212 org-shiftdown
9213 org-shiftleft
9214 org-shiftmetadown
9215 org-shiftmetaup
9216 org-shiftright
9217 org-shifttab
9218 org-shifttab
9219 org-shiftup
9220 org-show-subtree
9221 org-sort
9222 org-up-element
9223 outline-demote
9224 outline-next-visible-heading
9225 outline-previous-visible-heading
9226 outline-promote
9227 outline-up-heading
9228 show-children))
9229 (let ((f (or (car-safe cell) cell))
9230 (disable-when-heading-prefix (cdr-safe cell)))
9231 (when (fboundp f)
9232 (let ((new-bindings))
9233 (dolist (binding (nconc (where-is-internal f org-mode-map)
9234 (where-is-internal f outline-mode-map)))
9235 (push binding new-bindings)
9236 ;; TODO use local-function-key-map
9237 (dolist (rep '(("<tab>" . "TAB")
9238 ("<return>" . "RET")
9239 ("<escape>" . "ESC")
9240 ("<delete>" . "DEL")))
9241 (setq binding (read-kbd-macro
9242 (let ((case-fold-search))
9243 (replace-regexp-in-string
9244 (regexp-quote (cdr rep))
9245 (car rep)
9246 (key-description binding)))))
9247 (pushnew binding new-bindings :test 'equal)))
9248 (dolist (binding new-bindings)
9249 (let ((key (lookup-key orgstruct-mode-map binding)))
9250 (when (or (not key) (numberp key))
9251 (ignore-errors
9252 (org-defkey orgstruct-mode-map
9253 binding
9254 (orgstruct-make-binding
9255 f binding disable-when-heading-prefix))))))))))
9256 (run-hooks 'orgstruct-setup-hook))
9258 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9259 "Create a function for binding in the structure minor mode.
9260 FUN is the command to call inside a table. KEY is the key that
9261 should be checked in for a command to execute outside of tables.
9262 Non-nil `disable-when-heading-prefix' means to disable the command
9263 if `orgstruct-heading-prefix-regexp' is not empty."
9264 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9265 (let ((nname name)
9266 (i 0))
9267 (while (fboundp (intern nname))
9268 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9269 (setq name (intern nname)))
9270 (eval
9271 (let ((bindings '((org-heading-regexp
9272 (concat "^"
9273 orgstruct-heading-prefix-regexp
9274 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9275 (org-outline-regexp
9276 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9277 (org-outline-regexp-bol
9278 (concat "^" org-outline-regexp))
9279 (outline-regexp org-outline-regexp)
9280 (outline-heading-end-regexp "\n")
9281 (outline-level 'org-outline-level)
9282 (outline-heading-alist))))
9283 `(defun ,name (arg)
9284 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9285 "Outside of structure, run the binding of `"
9286 (key-description key) "'."
9287 (when disable-when-heading-prefix
9288 (concat
9289 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9290 "back to the default binding due to limitations of Org's implementation of\n"
9291 "`" (symbol-name fun) "'.")))
9292 (interactive "p")
9293 (let* ((disable
9294 ,(and disable-when-heading-prefix
9295 '(not (string= orgstruct-heading-prefix-regexp ""))))
9296 (fallback
9297 (or disable
9298 (not
9299 (let* ,bindings
9300 (org-context-p 'headline 'item
9301 ,(when (memq fun
9302 '(org-insert-heading
9303 org-insert-heading-respect-content
9304 org-meta-return))
9305 '(when orgstruct-is-++
9306 'item-body))))))))
9307 (if fallback
9308 (let* ((orgstruct-mode)
9309 (binding
9310 (let ((key ,key))
9311 (catch 'exit
9312 (dolist
9313 (rep
9314 '(nil
9315 ("<\\([^>]*\\)tab>" . "\\1TAB")
9316 ("<\\([^>]*\\)return>" . "\\1RET")
9317 ("<\\([^>]*\\)escape>" . "\\1ESC")
9318 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9319 nil)
9320 (when rep
9321 (setq key (read-kbd-macro
9322 (let ((case-fold-search))
9323 (replace-regexp-in-string
9324 (car rep)
9325 (cdr rep)
9326 (key-description key))))))
9327 (when (key-binding key)
9328 (throw 'exit (key-binding key))))))))
9329 (if (keymapp binding)
9330 (org-set-transient-map binding)
9331 (let ((func (or binding
9332 (unless disable
9333 'orgstruct-error))))
9334 (when func
9335 (call-interactively func)))))
9336 (org-run-like-in-org-mode
9337 (lambda ()
9338 (interactive)
9339 (let* ,bindings
9340 (call-interactively ',fun)))))))))
9341 name))
9343 (defun org-contextualize-keys (alist contexts)
9344 "Return valid elements in ALIST depending on CONTEXTS.
9346 `org-agenda-custom-commands' or `org-capture-templates' are the
9347 values used for ALIST, and `org-agenda-custom-commands-contexts'
9348 or `org-capture-templates-contexts' are the associated contexts
9349 definitions."
9350 (let ((contexts
9351 ;; normalize contexts
9352 (mapcar
9353 (lambda(c) (cond ((listp (cadr c))
9354 (list (car c) (car c) (cadr c)))
9355 ((string= "" (cadr c))
9356 (list (car c) (car c) (caddr c)))
9357 (t c)))
9358 contexts))
9359 (a alist) r s)
9360 ;; loop over all commands or templates
9361 (dolist (c a)
9362 (let (vrules repl)
9363 (cond
9364 ((not (assoc (car c) contexts))
9365 (push c r))
9366 ((and (assoc (car c) contexts)
9367 (setq vrules (org-contextualize-validate-key
9368 (car c) contexts)))
9369 (mapc (lambda (vr)
9370 (when (not (equal (car vr) (cadr vr)))
9371 (setq repl vr)))
9372 vrules)
9373 (if (not repl) (push c r)
9374 (push (cadr repl) s)
9375 (push
9376 (cons (car c)
9377 (cdr (or (assoc (cadr repl) alist)
9378 (error "Undefined key `%s' as contextual replacement for `%s'"
9379 (cadr repl) (car c)))))
9380 r))))))
9381 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9382 (delq
9384 (delete-dups
9385 (mapcar (lambda (x)
9386 (let ((tpl (car x)))
9387 (when (not (delq
9389 (mapcar (lambda (y)
9390 (equal y tpl))
9391 s)))
9392 x)))
9393 (reverse r))))))
9395 (defun org-contextualize-validate-key (key contexts)
9396 "Check CONTEXTS for agenda or capture KEY."
9397 (let (rr res)
9398 (dolist (r contexts)
9399 (mapc
9400 (lambda (rr)
9401 (when
9402 (and (equal key (car r))
9403 (if (functionp rr) (funcall rr)
9404 (or (and (eq (car rr) 'in-file)
9405 (buffer-file-name)
9406 (string-match (cdr rr) (buffer-file-name)))
9407 (and (eq (car rr) 'in-mode)
9408 (string-match (cdr rr) (symbol-name major-mode)))
9409 (and (eq (car rr) 'in-buffer)
9410 (string-match (cdr rr) (buffer-name)))
9411 (when (and (eq (car rr) 'not-in-file)
9412 (buffer-file-name))
9413 (not (string-match (cdr rr) (buffer-file-name))))
9414 (when (eq (car rr) 'not-in-mode)
9415 (not (string-match (cdr rr) (symbol-name major-mode))))
9416 (when (eq (car rr) 'not-in-buffer)
9417 (not (string-match (cdr rr) (buffer-name)))))))
9418 (push r res)))
9419 (car (last r))))
9420 (delete-dups (delq nil res))))
9422 (defun org-context-p (&rest contexts)
9423 "Check if local context is any of CONTEXTS.
9424 Possible values in the list of contexts are `table', `headline', and `item'."
9425 (let ((pos (point)))
9426 (goto-char (point-at-bol))
9427 (prog1 (or (and (memq 'table contexts)
9428 (looking-at "[ \t]*|"))
9429 (and (memq 'headline contexts)
9430 (looking-at org-outline-regexp))
9431 (and (memq 'item contexts)
9432 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9433 (and (memq 'item-body contexts)
9434 (org-in-item-p)))
9435 (goto-char pos))))
9437 (defun org-get-local-variables ()
9438 "Return a list of all local variables in an Org mode buffer."
9439 (let (varlist)
9440 (with-current-buffer (get-buffer-create "*Org tmp*")
9441 (erase-buffer)
9442 (org-mode)
9443 (setq varlist (buffer-local-variables)))
9444 (kill-buffer "*Org tmp*")
9445 (delq nil
9446 (mapcar
9447 (lambda (x)
9448 (setq x
9449 (if (symbolp x)
9450 (list x)
9451 (list (car x) (cdr x))))
9452 (if (and (not (get (car x) 'org-state))
9453 (string-match
9454 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9455 (symbol-name (car x))))
9456 x nil))
9457 varlist))))
9459 (defun org-clone-local-variables (from-buffer &optional regexp)
9460 "Clone local variables from FROM-BUFFER.
9461 Optional argument REGEXP selects variables to clone."
9462 (mapc
9463 (lambda (pair)
9464 (and (symbolp (car pair))
9465 (or (null regexp)
9466 (string-match regexp (symbol-name (car pair))))
9467 (set (make-local-variable (car pair))
9468 (cdr pair))))
9469 (buffer-local-variables from-buffer)))
9471 ;;;###autoload
9472 (defun org-run-like-in-org-mode (cmd)
9473 "Run a command, pretending that the current buffer is in Org-mode.
9474 This will temporarily bind local variables that are typically bound in
9475 Org-mode to the values they have in Org-mode, and then interactively
9476 call CMD."
9477 (org-load-modules-maybe)
9478 (unless org-local-vars
9479 (setq org-local-vars (org-get-local-variables)))
9480 (let (binds)
9481 (dolist (var org-local-vars)
9482 (when (or (not (boundp (car var)))
9483 (eq (symbol-value (car var))
9484 (default-value (car var))))
9485 (push (list (car var) `(quote ,(cadr var))) binds)))
9486 (eval `(let ,binds
9487 (call-interactively (quote ,cmd))))))
9489 (defun org-get-category (&optional pos force-refresh)
9490 "Get the category applying to position POS."
9491 (save-match-data
9492 (if force-refresh (org-refresh-category-properties))
9493 (let ((pos (or pos (point))))
9494 (or (get-text-property pos 'org-category)
9495 (progn (org-refresh-category-properties)
9496 (get-text-property pos 'org-category))))))
9498 ;;; Refresh properties
9500 (defun org-refresh-properties (dprop tprop)
9501 "Refresh buffer text properties.
9502 DPROP is the drawer property and TPROP is either the
9503 corresponding text property to set, or an alist with each element
9504 being a text property (as a symbol) and a function to apply to
9505 the value of the drawer property."
9506 (let ((case-fold-search t)
9507 (inhibit-read-only t))
9508 (org-with-silent-modifications
9509 (save-excursion
9510 (save-restriction
9511 (widen)
9512 (goto-char (point-min))
9513 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9514 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9516 (defun org-refresh-property (tprop p)
9517 "Refresh the buffer text property TPROP from the drawer property P.
9518 The refresh happens only for the current tree (not subtree)."
9519 (unless (org-before-first-heading-p)
9520 (save-excursion
9521 (org-back-to-heading t)
9522 (if (symbolp tprop)
9523 ;; TPROP is a text property symbol
9524 (put-text-property
9525 (point) (or (outline-next-heading) (point-max)) tprop p)
9526 ;; TPROP is an alist with (properties . function) elements
9527 (dolist (al tprop)
9528 (save-excursion
9529 (put-text-property
9530 (line-beginning-position) (or (outline-next-heading) (point-max))
9531 (car al)
9532 (funcall (cdr al) p))))))))
9534 (defun org-refresh-category-properties ()
9535 "Refresh category text properties in the buffer."
9536 (let ((case-fold-search t)
9537 (inhibit-read-only t)
9538 (default-category
9539 (cond ((null org-category)
9540 (if buffer-file-name
9541 (file-name-sans-extension
9542 (file-name-nondirectory buffer-file-name))
9543 "???"))
9544 ((symbolp org-category) (symbol-name org-category))
9545 (t org-category))))
9546 (org-with-silent-modifications
9547 (org-with-wide-buffer
9548 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9549 ;; This is the default category for the buffer. If none is
9550 ;; found, fall-back to `org-category' or buffer file name.
9551 (put-text-property
9552 (point-min) (point-max)
9553 'org-category
9554 (catch 'buffer-category
9555 (goto-char (point-max))
9556 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9557 (let ((element (org-element-at-point)))
9558 (when (eq (org-element-type element) 'keyword)
9559 (throw 'buffer-category
9560 (org-element-property :value element)))))
9561 default-category))
9562 ;; Set sub-tree specific categories.
9563 (goto-char (point-min))
9564 (let ((regexp (org-re-property "CATEGORY")))
9565 (while (re-search-forward regexp nil t)
9566 (let ((value (org-match-string-no-properties 3)))
9567 (when (org-at-property-p)
9568 (put-text-property
9569 (save-excursion (org-back-to-heading t) (point))
9570 (save-excursion (org-end-of-subtree t t) (point))
9571 'org-category
9572 value)))))))))
9574 (defun org-refresh-stats-properties ()
9575 "Refresh stats text properties in the buffer."
9576 (let (stats)
9577 (org-with-silent-modifications
9578 (save-excursion
9579 (save-restriction
9580 (widen)
9581 (goto-char (point-min))
9582 (while (re-search-forward
9583 (concat org-outline-regexp-bol ".*"
9584 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9585 nil t)
9586 (setq stats (cond ((equal (match-string 3) "0") 0)
9587 ((match-string 2)
9588 (/ (* (string-to-number (match-string 2)) 100)
9589 (string-to-number (match-string 3))))
9590 (t (string-to-number (match-string 1)))))
9591 (org-back-to-heading t)
9592 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9593 'org-stats stats)))))))
9595 (defun org-refresh-effort-properties ()
9596 "Refresh effort properties"
9597 (org-refresh-properties
9598 org-effort-property
9599 '((effort . identity)
9600 (effort-minutes . org-duration-string-to-minutes))))
9602 ;;;; Link Stuff
9604 ;;; Link abbreviations
9606 (defun org-link-expand-abbrev (link)
9607 "Apply replacements as defined in `org-link-abbrev-alist'."
9608 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9609 (let* ((key (match-string 1 link))
9610 (as (or (assoc key org-link-abbrev-alist-local)
9611 (assoc key org-link-abbrev-alist)))
9612 (tag (and (match-end 2) (match-string 3 link)))
9613 rpl)
9614 (if (not as)
9615 link
9616 (setq rpl (cdr as))
9617 (cond
9618 ((symbolp rpl) (funcall rpl tag))
9619 ((string-match "%(\\([^)]+\\))" rpl)
9620 (replace-match
9621 (save-match-data
9622 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9623 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9624 ((string-match "%h" rpl)
9625 (replace-match (url-hexify-string (or tag "")) t t rpl))
9626 (t (concat rpl tag)))))
9627 link))
9629 ;;; Storing and inserting links
9631 (defvar org-insert-link-history nil
9632 "Minibuffer history for links inserted with `org-insert-link'.")
9634 (defvar org-stored-links nil
9635 "Contains the links stored with `org-store-link'.")
9637 (defvar org-store-link-plist nil
9638 "Plist with info about the most recently link created with `org-store-link'.")
9640 (defvar org-link-protocols nil
9641 "Link protocols added to Org-mode using `org-add-link-type'.")
9643 (defvar org-store-link-functions nil
9644 "List of functions that are called to create and store a link.
9645 Each function will be called in turn until one returns a non-nil
9646 value. Each function should check if it is responsible for creating
9647 this link (for example by looking at the major mode).
9648 If not, it must exit and return nil.
9649 If yes, it should return a non-nil value after a calling
9650 `org-store-link-props' with a list of properties and values.
9651 Special properties are:
9653 :type The link prefix, like \"http\". This must be given.
9654 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9655 This is obligatory as well.
9656 :description Optional default description for the second pair
9657 of brackets in an Org-mode link. The user can still change
9658 this when inserting this link into an Org-mode buffer.
9660 In addition to these, any additional properties can be specified
9661 and then used in capture templates.")
9663 (defun org-add-link-type (type &optional follow export)
9664 "Add TYPE to the list of `org-link-types'.
9665 Re-compute all regular expressions depending on `org-link-types'
9667 FOLLOW and EXPORT are two functions.
9669 FOLLOW should take the link path as the single argument and do whatever
9670 is necessary to follow the link, for example find a file or display
9671 a mail message.
9673 EXPORT should format the link path for export to one of the export formats.
9674 It should be a function accepting three arguments:
9676 path the path of the link, the text after the prefix (like \"http:\")
9677 desc the description of the link, if any
9678 format the export format, a symbol like `html' or `latex' or `ascii'.
9680 The function may use the FORMAT information to return different values
9681 depending on the format. The return value will be put literally into
9682 the exported file. If the return value is nil, this means Org should
9683 do what it normally does with links which do not have EXPORT defined.
9685 Org mode has a built-in default for exporting links. If you are happy with
9686 this default, there is no need to define an export function for the link
9687 type. For a simple example of an export function, see `org-bbdb.el'."
9688 (add-to-list 'org-link-types type t)
9689 (org-make-link-regexps)
9690 (org-element-update-syntax)
9691 (if (assoc type org-link-protocols)
9692 (setcdr (assoc type org-link-protocols) (list follow export))
9693 (push (list type follow export) org-link-protocols)))
9695 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9696 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9698 ;;;###autoload
9699 (defun org-store-link (arg)
9700 "\\<org-mode-map>Store an org-link to the current location.
9701 This link is added to `org-stored-links' and can later be inserted
9702 into an Org buffer with \\[org-insert-link].
9704 For some link types, a prefix ARG is interpreted.
9705 For links to Usenet articles, ARG negates `org-gnus-prefer-web-links'.
9706 For file links, ARG negates `org-context-in-file-links'.
9708 A double prefix ARG force skipping storing functions that are not
9709 part of Org's core.
9711 A triple prefix ARG force storing a link for each line in the
9712 active region."
9713 (interactive "P")
9714 (org-load-modules-maybe)
9715 (if (and (equal arg '(64)) (org-region-active-p))
9716 (save-excursion
9717 (let ((end (region-end)))
9718 (goto-char (region-beginning))
9719 (set-mark (point))
9720 (while (< (point-at-eol) end)
9721 (move-end-of-line 1) (activate-mark)
9722 (let (current-prefix-arg)
9723 (call-interactively 'org-store-link))
9724 (move-beginning-of-line 2)
9725 (set-mark (point)))))
9726 (org-with-limited-levels
9727 (setq org-store-link-plist nil)
9728 (let (link cpltxt desc description search
9729 txt custom-id agenda-link sfuns sfunsn)
9730 (cond
9732 ;; Store a link using an external link type
9733 ((and (not (equal arg '(16)))
9734 (setq sfuns
9735 (delq
9736 nil (mapcar (lambda (f)
9737 (let (fs) (if (funcall f) (push f fs))))
9738 org-store-link-functions))
9739 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9740 (or (and (cdr sfuns)
9741 (funcall (intern
9742 (completing-read
9743 "Which function for creating the link? "
9744 sfunsn nil t (car sfunsn)))))
9745 (funcall (caar sfuns)))
9746 (setq link (plist-get org-store-link-plist :link)
9747 desc (or (plist-get org-store-link-plist
9748 :description)
9749 link))))
9751 ;; Store a link from a source code buffer.
9752 ((org-src-edit-buffer-p)
9753 (cond
9754 ((save-excursion
9755 (beginning-of-line)
9756 (looking-at (concat (format org-coderef-label-format "\\(.*?\\)")
9757 "[ \t]*$")))
9758 (setq link (format "(%s)" (org-match-string-no-properties 1))))
9759 ((org-called-interactively-p 'any)
9760 (let (label)
9761 (while (or (not label)
9762 (org-with-wide-buffer
9763 (goto-char (point-min))
9764 (re-search-forward
9765 (regexp-quote (format org-coderef-label-format label))
9766 nil t)))
9767 (when label (message "Label exists already") (sit-for 2))
9768 (setq label (read-string "Code line label: " label)))
9769 (end-of-line)
9770 (setq link (format org-coderef-label-format label))
9771 (let ((gc (- 79 (length link))))
9772 (if (< (current-column) gc) (org-move-to-column gc t)
9773 (insert " ")))
9774 (insert link)
9775 (setq link (concat "(" label ")") desc nil)))
9776 (t (setq link nil))))
9778 ;; We are in the agenda, link to referenced location
9779 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9780 (let ((m (or (get-text-property (point) 'org-hd-marker)
9781 (get-text-property (point) 'org-marker))))
9782 (when m
9783 (org-with-point-at m
9784 (setq agenda-link
9785 (if (org-called-interactively-p 'any)
9786 (call-interactively 'org-store-link)
9787 (org-store-link nil)))))))
9789 ((eq major-mode 'calendar-mode)
9790 (let ((cd (calendar-cursor-to-date)))
9791 (setq link
9792 (format-time-string
9793 (car org-time-stamp-formats)
9794 (apply 'encode-time
9795 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9796 nil nil nil))))
9797 (org-store-link-props :type "calendar" :date cd)))
9799 ((eq major-mode 'help-mode)
9800 (setq link (concat "help:" (save-excursion
9801 (goto-char (point-min))
9802 (looking-at "^[^ ]+")
9803 (match-string 0))))
9804 (org-store-link-props :type "help"))
9806 ((eq major-mode 'w3-mode)
9807 (setq cpltxt (if (and (buffer-name)
9808 (not (string-match "Untitled" (buffer-name))))
9809 (buffer-name)
9810 (url-view-url t))
9811 link (url-view-url t))
9812 (org-store-link-props :type "w3" :url (url-view-url t)))
9814 ((eq major-mode 'image-mode)
9815 (setq cpltxt (concat "file:"
9816 (abbreviate-file-name buffer-file-name))
9817 link cpltxt)
9818 (org-store-link-props :type "image" :file buffer-file-name))
9820 ;; In dired, store a link to the file of the current line
9821 ((derived-mode-p 'dired-mode)
9822 (let ((file (dired-get-filename nil t)))
9823 (setq file (if file
9824 (abbreviate-file-name
9825 (expand-file-name (dired-get-filename nil t)))
9826 ;; otherwise, no file so use current directory.
9827 default-directory))
9828 (setq cpltxt (concat "file:" file)
9829 link cpltxt)))
9831 ((setq search (run-hook-with-args-until-success
9832 'org-create-file-search-functions))
9833 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9834 "::" search))
9835 (setq cpltxt (or description link)))
9837 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9838 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9839 (cond
9840 ;; Store a link using the target at point
9841 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9842 (setq cpltxt
9843 (concat "file:"
9844 (abbreviate-file-name
9845 (buffer-file-name (buffer-base-buffer)))
9846 "::" (match-string 1))
9847 link cpltxt))
9848 ((and (featurep 'org-id)
9849 (or (eq org-id-link-to-org-use-id t)
9850 (and (org-called-interactively-p 'any)
9851 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9852 (and (eq org-id-link-to-org-use-id
9853 'create-if-interactive-and-no-custom-id)
9854 (not custom-id))))
9855 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9856 ;; Store a link using the ID at point
9857 (setq link (condition-case nil
9858 (prog1 (org-id-store-link)
9859 (setq desc (or (plist-get org-store-link-plist
9860 :description)
9861 "")))
9862 (error
9863 ;; Probably before first headline, link only to file
9864 (concat "file:"
9865 (abbreviate-file-name
9866 (buffer-file-name (buffer-base-buffer))))))))
9868 ;; Just link to current headline
9869 (setq cpltxt (concat "file:"
9870 (abbreviate-file-name
9871 (buffer-file-name (buffer-base-buffer)))))
9872 ;; Add a context search string
9873 (when (org-xor org-context-in-file-links arg)
9874 (let* ((ee (org-element-at-point))
9875 (et (org-element-type ee))
9876 (ev (plist-get (cadr ee) :value))
9877 (ek (plist-get (cadr ee) :key))
9878 (eok (and (stringp ek) (string-match "name" ek))))
9879 (setq txt (cond
9880 ((org-at-heading-p) nil)
9881 ((and (eq et 'keyword) eok) ev)
9882 ((org-region-active-p)
9883 (buffer-substring (region-beginning) (region-end)))))
9884 (when (or (null txt) (string-match "\\S-" txt))
9885 (setq cpltxt
9886 (concat cpltxt "::"
9887 (condition-case nil
9888 (org-make-org-heading-search-string txt)
9889 (error "")))
9890 desc (or (and (eq et 'keyword) eok ev)
9891 (nth 4 (ignore-errors (org-heading-components)))
9892 "NONE")))))
9893 (if (string-match "::\\'" cpltxt)
9894 (setq cpltxt (substring cpltxt 0 -2)))
9895 (setq link cpltxt))))
9897 ((buffer-file-name (buffer-base-buffer))
9898 ;; Just link to this file here.
9899 (setq cpltxt (concat "file:"
9900 (abbreviate-file-name
9901 (buffer-file-name (buffer-base-buffer)))))
9902 ;; Add a context string.
9903 (when (org-xor org-context-in-file-links arg)
9904 (setq txt (if (org-region-active-p)
9905 (buffer-substring (region-beginning) (region-end))
9906 (buffer-substring (point-at-bol) (point-at-eol))))
9907 ;; Only use search option if there is some text.
9908 (when (string-match "\\S-" txt)
9909 (setq cpltxt
9910 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9911 desc "NONE")))
9912 (setq link cpltxt))
9914 ((org-called-interactively-p 'interactive)
9915 (user-error "No method for storing a link from this buffer"))
9917 (t (setq link nil)))
9919 ;; We're done setting link and desc, clean up
9920 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9921 (setq link (or link cpltxt)
9922 desc (or desc cpltxt))
9923 (cond ((equal desc "NONE") (setq desc nil))
9924 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9925 (let ((d0 (match-string 3 desc))
9926 (p0 (match-string 5 desc)))
9927 (setq desc
9928 (replace-regexp-in-string
9929 org-bracket-link-regexp
9930 (concat (or p0 d0)
9931 (if (equal (length (match-string 0 desc))
9932 (length desc)) "*" "")) desc)))))
9934 ;; Return the link
9935 (if (not (and (or (org-called-interactively-p 'any)
9936 executing-kbd-macro)
9937 link))
9938 (or agenda-link (and link (org-make-link-string link desc)))
9939 (push (list link desc) org-stored-links)
9940 (message "Stored: %s" (or desc link))
9941 (when custom-id
9942 (setq link (concat "file:" (abbreviate-file-name
9943 (buffer-file-name)) "::#" custom-id))
9944 (push (list link desc) org-stored-links))
9945 (car org-stored-links))))))
9947 (defun org-store-link-props (&rest plist)
9948 "Store link properties, extract names and addresses."
9949 (let (x adr)
9950 (when (setq x (plist-get plist :from))
9951 (setq adr (mail-extract-address-components x))
9952 (setq plist (plist-put plist :fromname (car adr)))
9953 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9954 (when (setq x (plist-get plist :to))
9955 (setq adr (mail-extract-address-components x))
9956 (setq plist (plist-put plist :toname (car adr)))
9957 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9958 (let ((from (plist-get plist :from))
9959 (to (plist-get plist :to)))
9960 (when (and from to org-from-is-user-regexp)
9961 (setq plist
9962 (plist-put plist :fromto
9963 (if (string-match org-from-is-user-regexp from)
9964 (concat "to %t")
9965 (concat "from %f"))))))
9966 (setq org-store-link-plist plist))
9968 (defun org-add-link-props (&rest plist)
9969 "Add these properties to the link property list."
9970 (let (key value)
9971 (while plist
9972 (setq key (pop plist) value (pop plist))
9973 (setq org-store-link-plist
9974 (plist-put org-store-link-plist key value)))))
9976 (defun org-email-link-description (&optional fmt)
9977 "Return the description part of an email link.
9978 This takes information from `org-store-link-plist' and formats it
9979 according to FMT (default from `org-email-link-description-format')."
9980 (setq fmt (or fmt org-email-link-description-format))
9981 (let* ((p org-store-link-plist)
9982 (to (plist-get p :toaddress))
9983 (from (plist-get p :fromaddress))
9984 (table
9985 (list
9986 (cons "%c" (plist-get p :fromto))
9987 (cons "%F" (plist-get p :from))
9988 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9989 (cons "%T" (plist-get p :to))
9990 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9991 (cons "%s" (plist-get p :subject))
9992 (cons "%d" (plist-get p :date))
9993 (cons "%m" (plist-get p :message-id)))))
9994 (when (string-match "%c" fmt)
9995 ;; Check if the user wrote this message
9996 (if (and org-from-is-user-regexp from to
9997 (save-match-data (string-match org-from-is-user-regexp from)))
9998 (setq fmt (replace-match "to %t" t t fmt))
9999 (setq fmt (replace-match "from %f" t t fmt))))
10000 (org-replace-escapes fmt table)))
10002 (defun org-make-org-heading-search-string (&optional string)
10003 "Make search string for the current headline or STRING."
10004 (let ((s (or string
10005 (and (derived-mode-p 'org-mode)
10006 (save-excursion
10007 (org-back-to-heading t)
10008 (org-element-property :raw-value (org-element-at-point))))))
10009 (lines org-context-in-file-links))
10010 (or string (setq s (concat "*" s))) ; Add * for headlines
10011 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10012 (when (and string (integerp lines) (> lines 0))
10013 (let ((slines (org-split-string s "\n")))
10014 (when (< lines (length slines))
10015 (setq s (mapconcat
10016 'identity
10017 (reverse (nthcdr (- (length slines) lines)
10018 (reverse slines))) "\n")))))
10019 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10021 (defun org-make-link-string (link &optional description)
10022 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10023 (unless (org-string-nw-p link) (error "Empty link"))
10024 (let ((uri (cond ((string-match org-link-types-re link)
10025 (concat (match-string 1 link)
10026 (org-link-escape (substring link (match-end 1)))))
10027 ;; For readability, url-encode internal links only
10028 ;; when absolutely needed (i.e, when they contain
10029 ;; square brackets). File links however, are
10030 ;; encoded since, e.g., spaces are significant.
10031 ((or (file-name-absolute-p link)
10032 (org-string-match-p "\\`\\.\\.?/\\|[][]" link))
10033 (org-link-escape link))
10034 (t link)))
10035 (description
10036 (and (org-string-nw-p description)
10037 ;; Remove brackets from description, as they are fatal.
10038 (replace-regexp-in-string
10039 "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
10040 (org-trim description)))))
10041 (format "[[%s]%s]"
10043 (if description (format "[%s]" description) ""))))
10045 (defconst org-link-escape-chars
10046 ;;%20 %5B %5D %25
10047 '(?\s ?\[ ?\] ?%)
10048 "List of characters that should be escaped in a link when stored to Org.
10049 This is the list that is used for internal purposes.")
10051 (defconst org-link-escape-chars-browser
10052 ;;%20 %22
10053 '(?\s ?\")
10054 "List of characters to be escaped before handing over to the browser.
10055 If you consider using this constant then you probably want to use
10056 the function `org-link-escape-browser' instead. See there why
10057 this constant is a candidate to be removed once Org drops support
10058 for Emacs 24.1 and 24.2.")
10060 (defun org-link-escape (text &optional table merge)
10061 "Return percent escaped representation of TEXT.
10062 TEXT is a string with the text to escape.
10063 Optional argument TABLE is a list with characters that should be
10064 escaped. When nil, `org-link-escape-chars' is used.
10065 If optional argument MERGE is set, merge TABLE into
10066 `org-link-escape-chars'."
10067 (let ((characters-to-encode
10068 (cond ((null table) org-link-escape-chars)
10069 (merge (append org-link-escape-chars table))
10070 (t table))))
10071 (mapconcat
10072 (lambda (c)
10073 (if (or (memq c characters-to-encode)
10074 (and org-url-hexify-p (or (< c 32) (> c 126))))
10075 (mapconcat (lambda (e) (format "%%%.2X" e))
10076 (or (encode-coding-char c 'utf-8)
10077 (error "Unable to percent escape character: %c" c))
10079 (char-to-string c)))
10080 text "")))
10082 (defun org-link-escape-browser (text)
10083 "Escape some characters before handing over to the browser.
10084 This function is a candidate to be removed together with the
10085 constant `org-link-escape-chars-browser' once Org drops support
10086 for Emacs 24.1 and 24.2. All calls to this function will have to
10087 be replaced with `url-encode-url' which is available since Emacs
10088 24.3.1."
10089 ;; Example with the Org link
10090 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10091 ;; to open the browser with +subject:"Release 8.2" filled into the
10092 ;; query field: In this case the variable TEXT contains the
10093 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10094 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10095 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10096 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10097 (if (fboundp 'url-encode-url)
10098 (url-encode-url text)
10099 (if (org-string-match-p
10100 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10101 text)
10102 (org-link-escape text org-link-escape-chars-browser)
10103 text)))
10105 (defun org-link-unescape (str)
10106 "Unhex hexified Unicode parts in string STR.
10107 E.g. `%C3%B6' becomes the german o-Umlaut. This is the
10108 reciprocal of `org-link-escape', which see."
10109 (if (org-string-nw-p str)
10110 (replace-regexp-in-string
10111 "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
10112 str))
10114 (defun org-link-unescape-compound (hex)
10115 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10116 Note: this function also decodes single byte encodings like
10117 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10118 (save-match-data
10119 (let* ((bytes (cdr (split-string hex "%")))
10120 (ret "")
10121 (eat 0)
10122 (sum 0))
10123 (while bytes
10124 (let* ((val (string-to-number (pop bytes) 16))
10125 (shift-xor
10126 (if (= 0 eat)
10127 (cond
10128 ((>= val 252) (cons 6 252))
10129 ((>= val 248) (cons 5 248))
10130 ((>= val 240) (cons 4 240))
10131 ((>= val 224) (cons 3 224))
10132 ((>= val 192) (cons 2 192))
10133 (t (cons 0 0)))
10134 (cons 6 128))))
10135 (if (>= val 192) (setq eat (car shift-xor)))
10136 (setq val (logxor val (cdr shift-xor)))
10137 (setq sum (+ (lsh sum (car shift-xor)) val))
10138 (if (> eat 0) (setq eat (- eat 1)))
10139 (cond
10140 ((= 0 eat) ;multi byte
10141 (setq ret (concat ret (org-char-to-string sum)))
10142 (setq sum 0))
10143 ((not bytes) ; single byte(s)
10144 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10145 ret)))
10147 (defun org-link-unescape-single-byte-sequence (hex)
10148 "Unhexify hex-encoded single byte character sequences."
10149 (mapconcat (lambda (byte)
10150 (char-to-string (string-to-number byte 16)))
10151 (cdr (split-string hex "%")) ""))
10153 (defun org-xor (a b)
10154 "Exclusive or."
10155 (if a (not b) b))
10157 (defun org-fixup-message-id-for-http (s)
10158 "Replace special characters in a message id, so it can be used in an http query."
10159 (when (string-match "%" s)
10160 (setq s (mapconcat (lambda (c)
10161 (if (eq c ?%)
10162 "%25"
10163 (char-to-string c)))
10164 s "")))
10165 (while (string-match "<" s)
10166 (setq s (replace-match "%3C" t t s)))
10167 (while (string-match ">" s)
10168 (setq s (replace-match "%3E" t t s)))
10169 (while (string-match "@" s)
10170 (setq s (replace-match "%40" t t s)))
10173 (defun org-link-prettify (link)
10174 "Return a human-readable representation of LINK.
10175 The car of LINK must be a raw link.
10176 The cdr of LINK must be either a link description or nil."
10177 (let ((desc (or (cadr link) "<no description>")))
10178 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10179 "<" (car link) ">")))
10181 ;;;###autoload
10182 (defun org-insert-link-global ()
10183 "Insert a link like Org-mode does.
10184 This command can be called in any mode to insert a link in Org-mode syntax."
10185 (interactive)
10186 (org-load-modules-maybe)
10187 (org-run-like-in-org-mode 'org-insert-link))
10189 (defun org-insert-all-links (arg &optional pre post)
10190 "Insert all links in `org-stored-links'.
10191 When a universal prefix, do not delete the links from `org-stored-links'.
10192 When `ARG' is a number, insert the last N link(s).
10193 `PRE' and `POST' are optional arguments to define a string to
10194 prepend or to append."
10195 (interactive "P")
10196 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10197 (links (copy-seq org-stored-links))
10198 (pr (or pre "- "))
10199 (po (or post "\n"))
10200 (cnt 1) l)
10201 (if (null org-stored-links)
10202 (message "No link to insert")
10203 (while (and (or (listp arg) (>= arg cnt))
10204 (setq l (if (listp arg)
10205 (pop links)
10206 (pop org-stored-links))))
10207 (setq cnt (1+ cnt))
10208 (insert pr)
10209 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10210 (insert po)))))
10212 (defun org-insert-last-stored-link (arg)
10213 "Insert the last link stored in `org-stored-links'."
10214 (interactive "p")
10215 (org-insert-all-links arg "" "\n"))
10217 (defun org-link-fontify-links-to-this-file ()
10218 "Fontify links to the current file in `org-stored-links'."
10219 (let ((f (buffer-file-name)) a b)
10220 (setq a (mapcar (lambda(l)
10221 (let ((ll (car l)))
10222 (when (and (string-match "^file:\\(.+\\)::" ll)
10223 (equal f (expand-file-name (match-string 1 ll))))
10224 ll)))
10225 org-stored-links))
10226 (when (featurep 'org-id)
10227 (setq b (mapcar (lambda(l)
10228 (let ((ll (car l)))
10229 (when (and (string-match "^id:\\(.+\\)$" ll)
10230 (equal f (expand-file-name
10231 (or (org-id-find-id-file
10232 (match-string 1 ll)) ""))))
10233 ll)))
10234 org-stored-links)))
10235 (mapcar (lambda(l)
10236 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10237 (delq nil (append a b)))))
10239 (defvar org-link-links-in-this-file nil)
10240 (defun org-insert-link (&optional complete-file link-location default-description)
10241 "Insert a link. At the prompt, enter the link.
10243 Completion can be used to insert any of the link protocol prefixes like
10244 http or ftp in use.
10246 The history can be used to select a link previously stored with
10247 `org-store-link'. When the empty string is entered (i.e. if you just
10248 press RET at the prompt), the link defaults to the most recently
10249 stored link. As SPC triggers completion in the minibuffer, you need to
10250 use M-SPC or C-q SPC to force the insertion of a space character.
10252 You will also be prompted for a description, and if one is given, it will
10253 be displayed in the buffer instead of the link.
10255 If there is already a link at point, this command will allow you to edit link
10256 and description parts.
10258 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10259 be selected using completion. The path to the file will be relative to the
10260 current directory if the file is in the current directory or a subdirectory.
10261 Otherwise, the link will be the absolute path as completed in the minibuffer
10262 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10263 option `org-link-file-path-type'.
10265 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10266 the current directory or below.
10268 With three \\[universal-argument] prefixes, negate the meaning of
10269 `org-keep-stored-link-after-insertion'.
10271 If `org-make-link-description-function' is non-nil, this function will be
10272 called with the link target, and the result will be the default
10273 link description.
10275 If the LINK-LOCATION parameter is non-nil, this value will be
10276 used as the link location instead of reading one interactively.
10278 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10279 be used as the default description."
10280 (interactive "P")
10281 (let* ((wcf (current-window-configuration))
10282 (origbuf (current-buffer))
10283 (region (if (org-region-active-p)
10284 (buffer-substring (region-beginning) (region-end))))
10285 (remove (and region (list (region-beginning) (region-end))))
10286 (desc region)
10287 tmphist ; byte-compile incorrectly complains about this
10288 (link link-location)
10289 (abbrevs org-link-abbrev-alist-local)
10290 entry file all-prefixes auto-desc)
10291 (cond
10292 (link-location) ; specified by arg, just use it.
10293 ((org-in-regexp org-bracket-link-regexp 1)
10294 ;; We do have a link at point, and we are going to edit it.
10295 (setq remove (list (match-beginning 0) (match-end 0)))
10296 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10297 (setq link (read-string "Link: "
10298 (org-link-unescape
10299 (org-match-string-no-properties 1)))))
10300 ((or (org-in-regexp org-angle-link-re)
10301 (org-in-regexp org-plain-link-re))
10302 ;; Convert to bracket link
10303 (setq remove (list (match-beginning 0) (match-end 0))
10304 link (read-string "Link: "
10305 (org-remove-angle-brackets (match-string 0)))))
10306 ((member complete-file '((4) (16)))
10307 ;; Completing read for file names.
10308 (setq link (org-file-complete-link complete-file)))
10310 ;; Read link, with completion for stored links.
10311 (org-link-fontify-links-to-this-file)
10312 (org-switch-to-buffer-other-window "*Org Links*")
10313 (with-current-buffer "*Org Links*"
10314 (erase-buffer)
10315 (insert "Insert a link.
10316 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10317 (when org-stored-links
10318 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10319 (insert (mapconcat 'org-link-prettify
10320 (reverse org-stored-links) "\n")))
10321 (goto-char (point-min)))
10322 (let ((cw (selected-window)))
10323 (select-window (get-buffer-window "*Org Links*" 'visible))
10324 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10325 (unless (pos-visible-in-window-p (point-max))
10326 (org-fit-window-to-buffer))
10327 (and (window-live-p cw) (select-window cw)))
10328 ;; Fake a link history, containing the stored links.
10329 (setq tmphist (append (mapcar 'car org-stored-links)
10330 org-insert-link-history))
10331 (setq all-prefixes (append (mapcar 'car abbrevs)
10332 (mapcar 'car org-link-abbrev-alist)
10333 org-link-types))
10334 (unwind-protect
10335 (progn
10336 (setq link
10337 (org-completing-read
10338 "Link: "
10339 (append
10340 (mapcar (lambda (x) (concat x ":"))
10341 all-prefixes)
10342 (mapcar 'car org-stored-links))
10343 nil nil nil
10344 'tmphist
10345 (caar org-stored-links)))
10346 (if (not (string-match "\\S-" link))
10347 (user-error "No link selected"))
10348 (mapc (lambda(l)
10349 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10350 org-stored-links)
10351 (if (or (member link all-prefixes)
10352 (and (equal ":" (substring link -1))
10353 (member (substring link 0 -1) all-prefixes)
10354 (setq link (substring link 0 -1))))
10355 (setq link (with-current-buffer origbuf
10356 (org-link-try-special-completion link)))))
10357 (set-window-configuration wcf)
10358 (kill-buffer "*Org Links*"))
10359 (setq entry (assoc link org-stored-links))
10360 (or entry (push link org-insert-link-history))
10361 (setq desc (or desc (nth 1 entry)))))
10363 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10364 (not org-keep-stored-link-after-insertion))
10365 (setq org-stored-links (delq (assoc link org-stored-links)
10366 org-stored-links)))
10368 (if (and (string-match org-plain-link-re link)
10369 (not (string-match org-ts-regexp link)))
10370 ;; URL-like link, normalize the use of angular brackets.
10371 (setq link (org-remove-angle-brackets link)))
10373 ;; Check if we are linking to the current file with a search
10374 ;; option If yes, simplify the link by using only the search
10375 ;; option.
10376 (when (and buffer-file-name
10377 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10378 (let* ((path (match-string 1 link))
10379 (case-fold-search nil)
10380 (search (match-string 2 link)))
10381 (save-match-data
10382 (if (equal (file-truename buffer-file-name) (file-truename path))
10383 ;; We are linking to this same file, with a search option
10384 (setq link search)))))
10386 ;; Check if we can/should use a relative path. If yes, simplify the link
10387 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10388 (let* ((type (match-string 1 link))
10389 (path (match-string 2 link))
10390 (origpath path)
10391 (case-fold-search nil))
10392 (cond
10393 ((or (eq org-link-file-path-type 'absolute)
10394 (equal complete-file '(16)))
10395 (setq path (abbreviate-file-name (expand-file-name path))))
10396 ((eq org-link-file-path-type 'noabbrev)
10397 (setq path (expand-file-name path)))
10398 ((eq org-link-file-path-type 'relative)
10399 (setq path (file-relative-name path)))
10401 (save-match-data
10402 (if (string-match (concat "^" (regexp-quote
10403 (expand-file-name
10404 (file-name-as-directory
10405 default-directory))))
10406 (expand-file-name path))
10407 ;; We are linking a file with relative path name.
10408 (setq path (substring (expand-file-name path)
10409 (match-end 0)))
10410 (setq path (abbreviate-file-name (expand-file-name path)))))))
10411 (setq link (concat type path))
10412 (if (equal desc origpath)
10413 (setq desc path))))
10415 (if org-make-link-description-function
10416 (setq desc
10417 (or (condition-case nil
10418 (funcall org-make-link-description-function link desc)
10419 (error (progn (message "Can't get link description from `%s'"
10420 (symbol-name org-make-link-description-function))
10421 (sit-for 2) nil)))
10422 (read-string "Description: " default-description)))
10423 (if default-description (setq desc default-description)
10424 (setq desc (or (and auto-desc desc)
10425 (read-string "Description: " desc)))))
10427 (unless (string-match "\\S-" desc) (setq desc nil))
10428 (if remove (apply 'delete-region remove))
10429 (insert (org-make-link-string link desc))))
10431 (defun org-link-try-special-completion (type)
10432 "If there is completion support for link type TYPE, offer it."
10433 (let ((fun (intern (concat "org-" type "-complete-link"))))
10434 (if (functionp fun)
10435 (funcall fun)
10436 (read-string "Link (no completion support): " (concat type ":")))))
10438 (defun org-file-complete-link (&optional arg)
10439 "Create a file link using completion."
10440 (let ((file (org-iread-file-name "File: "))
10441 (pwd (file-name-as-directory (expand-file-name ".")))
10442 (pwd1 (file-name-as-directory (abbreviate-file-name
10443 (expand-file-name ".")))))
10444 (cond ((equal arg '(16))
10445 (concat "file:"
10446 (abbreviate-file-name (expand-file-name file))))
10447 ((string-match
10448 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10449 (concat "file:" (match-string 1 file)))
10450 ((string-match
10451 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10452 (expand-file-name file))
10453 (concat "file:"
10454 (match-string 1 (expand-file-name file))))
10455 (t (concat "file:" file)))))
10457 (defun org-iread-file-name (&rest args)
10458 "Read-file-name using `ido-mode' speedup if available.
10459 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10460 See `read-file-name' for a description of parameters."
10461 (org-without-partial-completion
10462 (if (and org-completion-use-ido
10463 (fboundp 'ido-read-file-name)
10464 (org-bound-and-true-p ido-mode)
10465 (listp (nth 1 args)))
10466 (let ((ido-enter-matching-directory nil))
10467 (apply #'ido-read-file-name args))
10468 (apply #'read-file-name args))))
10470 (defun org-completing-read (&rest args)
10471 "Completing-read with SPACE being a normal character."
10472 (let ((enable-recursive-minibuffers t)
10473 (minibuffer-local-completion-map
10474 (copy-keymap minibuffer-local-completion-map)))
10475 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10476 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10477 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10478 (apply 'org-icompleting-read args)))
10480 (defun org-completing-read-no-i (&rest args)
10481 (let (org-completion-use-ido org-completion-use-iswitchb)
10482 (apply 'org-completing-read args)))
10484 (defun org-iswitchb-completing-read (prompt choices &rest args)
10485 "Use iswitch as a completing-read replacement to choose from choices.
10486 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10487 from."
10488 (let* ((iswitchb-use-virtual-buffers nil)
10489 (iswitchb-make-buflist-hook
10490 (lambda ()
10491 (setq iswitchb-temp-buflist choices))))
10492 (iswitchb-read-buffer prompt)))
10494 (defun org-icompleting-read (&rest args)
10495 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10496 Should be called like `completing-read'."
10497 (org-without-partial-completion
10498 (if (not (listp (nth 1 args)))
10499 ;; Ido only supports lists as the COLLECTION argument. Use
10500 ;; default completion function when second argument is not
10501 ;; a list.
10502 (apply #'completing-read args)
10503 (let ((ido-enter-matching-directory nil))
10504 (apply (cond ((and org-completion-use-ido
10505 (fboundp 'ido-completing-read)
10506 (org-bound-and-true-p ido-mode))
10507 #'ido-completing-read)
10508 ((and org-completion-use-iswitchb
10509 (org-bound-and-true-p iswitchb-mode))
10510 #'org-iswitchb-completing-read)
10511 (t #'completing-read))
10512 args)))))
10514 ;;; Opening/following a link
10516 (defvar org-link-search-failed nil)
10518 (defvar org-open-link-functions nil
10519 "Hook for functions finding a plain text link.
10520 These functions must take a single argument, the link content.
10521 They will be called for links that look like [[link text][description]]
10522 when LINK TEXT does not have a protocol like \"http:\" and does not look
10523 like a filename (e.g. \"./blue.png\").
10525 These functions will be called *before* Org attempts to resolve the
10526 link by doing text searches in the current buffer - so if you want a
10527 link \"[[target]]\" to still find \"<<target>>\", your function should
10528 handle this as a special case.
10530 When the function does handle the link, it must return a non-nil value.
10531 If it decides that it is not responsible for this link, it must return
10532 nil to indicate that that Org-mode can continue with other options
10533 like exact and fuzzy text search.")
10535 (defun org-next-link (&optional search-backward)
10536 "Move forward to the next link.
10537 If the link is in hidden text, expose it."
10538 (interactive "P")
10539 (when (and org-link-search-failed (eq this-command last-command))
10540 (goto-char (point-min))
10541 (message "Link search wrapped back to beginning of buffer"))
10542 (setq org-link-search-failed nil)
10543 (let* ((pos (point))
10544 (ct (org-context))
10545 (a (assoc :link ct))
10546 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10547 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10548 ((looking-at org-any-link-re)
10549 ;; Don't stay stuck at link without an org-link face
10550 (forward-char (if search-backward -1 1))))
10551 (if (funcall srch-fun org-any-link-re nil t)
10552 (progn
10553 (goto-char (match-beginning 0))
10554 (if (outline-invisible-p) (org-show-context)))
10555 (goto-char pos)
10556 (setq org-link-search-failed t)
10557 (message "No further link found"))))
10559 (defun org-previous-link ()
10560 "Move backward to the previous link.
10561 If the link is in hidden text, expose it."
10562 (interactive)
10563 (funcall 'org-next-link t))
10565 (defun org-translate-link (s)
10566 "Translate a link string if a translation function has been defined."
10567 (if (and org-link-translation-function
10568 (fboundp org-link-translation-function)
10569 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10570 (progn
10571 (setq s (funcall org-link-translation-function
10572 (match-string 1 s) (match-string 2 s)))
10573 (concat (car s) ":" (cdr s)))
10576 (defun org-translate-link-from-planner (type path)
10577 "Translate a link from Emacs Planner syntax so that Org can follow it.
10578 This is still an experimental function, your mileage may vary."
10579 (cond
10580 ((member type '("http" "https" "news" "ftp"))
10581 ;; standard Internet links are the same.
10582 nil)
10583 ((and (equal type "irc") (string-match "^//" path))
10584 ;; Planner has two / at the beginning of an irc link, we have 1.
10585 ;; We should have zero, actually....
10586 (setq path (substring path 1)))
10587 ((and (equal type "lisp") (string-match "^/" path))
10588 ;; Planner has a slash, we do not.
10589 (setq type "elisp" path (substring path 1)))
10590 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10591 ;; A typical message link. Planner has the id after the final slash,
10592 ;; we separate it with a hash mark
10593 (setq path (concat (match-string 1 path) "#"
10594 (org-remove-angle-brackets (match-string 2 path))))))
10595 (cons type path))
10597 (defun org-find-file-at-mouse (ev)
10598 "Open file link or URL at mouse."
10599 (interactive "e")
10600 (mouse-set-point ev)
10601 (org-open-at-point 'in-emacs))
10603 (defun org-open-at-mouse (ev)
10604 "Open file link or URL at mouse.
10605 See the docstring of `org-open-file' for details."
10606 (interactive "e")
10607 (mouse-set-point ev)
10608 (if (eq major-mode 'org-agenda-mode)
10609 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10610 (org-open-at-point))
10612 (defvar org-window-config-before-follow-link nil
10613 "The window configuration before following a link.
10614 This is saved in case the need arises to restore it.")
10616 ;;;###autoload
10617 (defun org-open-at-point-global ()
10618 "Follow a link like Org-mode does.
10619 This command can be called in any mode to follow a link that has
10620 Org-mode syntax."
10621 (interactive)
10622 (org-run-like-in-org-mode 'org-open-at-point))
10624 ;;;###autoload
10625 (defun org-open-link-from-string (s &optional arg reference-buffer)
10626 "Open a link in the string S, as if it was in Org-mode."
10627 (interactive "sLink: \nP")
10628 (let ((reference-buffer (or reference-buffer (current-buffer))))
10629 (with-temp-buffer
10630 (let ((org-inhibit-startup (not reference-buffer)))
10631 (org-mode)
10632 (insert s)
10633 (goto-char (point-min))
10634 (when reference-buffer
10635 (setq org-link-abbrev-alist-local
10636 (with-current-buffer reference-buffer
10637 org-link-abbrev-alist-local)))
10638 (org-open-at-point arg reference-buffer)))))
10640 (defvar org-open-at-point-functions nil
10641 "Hook that is run when following a link at point.
10643 Functions in this hook must return t if they identify and follow
10644 a link at point. If they don't find anything interesting at point,
10645 they must return nil.")
10647 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10648 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10649 (defun org-open-at-point (&optional arg reference-buffer)
10650 "Open link, timestamp, footnote or tags at point.
10652 When point is on a link, follow it. Normally, files will be
10653 opened by an appropriate application. If the optional prefix
10654 argument ARG is non-nil, Emacs will visit the file. With
10655 a double prefix argument, try to open outside of Emacs, in the
10656 application the system uses for this file type.
10658 When point is on a timestamp, open the agenda at the day
10659 specified.
10661 When point is a footnote definition, move to the first reference
10662 found. If it is on a reference, move to the associated
10663 definition.
10665 When point is on a headline, display a list of every link in the
10666 entry, so it is possible to pick one, or all, of them. If point
10667 is on a tag, call `org-tags-view' instead.
10669 When optional argument REFERENCE-BUFFER is non-nil, it should
10670 specify a buffer from where the link search should happen. This
10671 is used internally by `org-open-link-from-string'.
10673 On top of syntactically correct links, this function will open
10674 the link at point in comments or comment blocks and the first
10675 link in a property drawer line."
10676 (interactive "P")
10677 ;; On a code block, open block's results.
10678 (unless (call-interactively 'org-babel-open-src-block-result)
10679 (org-load-modules-maybe)
10680 (setq org-window-config-before-follow-link (current-window-configuration))
10681 (org-remove-occur-highlights nil nil t)
10682 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10683 (let* ((context
10684 ;; Only consider supported types, even if they are not
10685 ;; the closest one.
10686 (org-element-lineage
10687 (org-element-context)
10688 '(clock comment comment-block footnote-definition
10689 footnote-reference headline inlinetask keyword link
10690 node-property timestamp)
10692 (type (org-element-type context))
10693 (value (org-element-property :value context)))
10694 (cond
10695 ((not context) (user-error "No link found"))
10696 ;; Exception: open timestamps and links in properties
10697 ;; drawers, keywords and comments.
10698 ((memq type '(comment comment-block keyword node-property))
10699 (cond ((org-in-regexp org-any-link-re)
10700 (org-open-link-from-string (match-string-no-properties 0)))
10701 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10702 (org-follow-timestamp-link))
10703 (t (user-error "No link found"))))
10704 ;; On a headline or an inlinetask, but not on a timestamp,
10705 ;; a link, a footnote reference or on tags.
10706 ((and (memq type '(headline inlinetask))
10707 ;; Not on tags.
10708 (progn (save-excursion (beginning-of-line)
10709 (looking-at org-complex-heading-regexp))
10710 (or (not (match-beginning 5))
10711 (< (point) (match-beginning 5)))))
10712 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10713 (links (car data))
10714 (links-end (cdr data)))
10715 (if links
10716 (dolist (link (if (stringp links) (list links) links))
10717 (search-forward link nil links-end)
10718 (goto-char (match-beginning 0))
10719 (org-open-at-point))
10720 (require 'org-attach)
10721 (org-attach-reveal 'if-exists))))
10722 ;; On a clock line, make sure point is on the timestamp
10723 ;; before opening it.
10724 ((and (eq type 'clock)
10725 value
10726 (>= (point) (org-element-property :begin value))
10727 (<= (point) (org-element-property :end value)))
10728 (org-follow-timestamp-link))
10729 ;; Do nothing on white spaces after an object, unless point
10730 ;; is right after it.
10731 ((> (point)
10732 (save-excursion
10733 (goto-char (org-element-property :end context))
10734 (skip-chars-backward " \t")
10735 (point)))
10736 (user-error "No link found"))
10737 ((eq type 'timestamp) (org-follow-timestamp-link))
10738 ;; On tags within a headline or an inlinetask.
10739 ((and (memq type '(headline inlinetask))
10740 (progn (save-excursion (beginning-of-line)
10741 (looking-at org-complex-heading-regexp))
10742 (and (match-beginning 5)
10743 (>= (point) (match-beginning 5)))))
10744 (org-tags-view arg (substring (match-string 5) 0 -1)))
10745 ((eq type 'link)
10746 ;; When link is located within the description of another
10747 ;; link (e.g., an inline image), always open the parent
10748 ;; link.
10749 (let*((link (let ((up (org-element-property :parent context)))
10750 (if (eq (org-element-type up) 'link) up context)))
10751 (type (org-element-property :type link))
10752 (path (org-link-unescape (org-element-property :path link))))
10753 ;; Switch back to REFERENCE-BUFFER needed when called in
10754 ;; a temporary buffer through `org-open-link-from-string'.
10755 (with-current-buffer (or reference-buffer (current-buffer))
10756 (cond
10757 ((equal type "file")
10758 (if (string-match "[*?{]" (file-name-nondirectory path))
10759 (dired path)
10760 ;; Look into `org-link-protocols' in order to find
10761 ;; a DEDICATED-FUNCTION to open file. The function
10762 ;; will be applied on raw link instead of parsed
10763 ;; link due to the limitation in `org-add-link-type'
10764 ;; ("open" function called with a single argument).
10765 ;; If no such function is found, fallback to
10766 ;; `org-open-file'.
10768 ;; Note : "file+emacs" and "file+sys" types are
10769 ;; hard-coded in order to escape the previous
10770 ;; limitation.
10771 (let* ((option (org-element-property :search-option link))
10772 (app (org-element-property :application link))
10773 (dedicated-function
10774 (nth 1 (assoc app org-link-protocols))))
10775 (if dedicated-function
10776 (funcall dedicated-function
10777 (concat path
10778 (and option (concat "::" option))))
10779 (apply #'org-open-file
10780 path
10781 (cond (arg)
10782 ((equal app "emacs") 'emacs)
10783 ((equal app "sys") 'system))
10784 (cond ((not option) nil)
10785 ((org-string-match-p "\\`[0-9]+\\'" option)
10786 (list (string-to-number option)))
10787 (t (list nil
10788 (org-link-unescape option)))))))))
10789 ((assoc type org-link-protocols)
10790 (funcall (nth 1 (assoc type org-link-protocols)) path))
10791 ((equal type "help")
10792 (let ((f-or-v (intern path)))
10793 (cond ((fboundp f-or-v) (describe-function f-or-v))
10794 ((boundp f-or-v) (describe-variable f-or-v))
10795 (t (error "Not a known function or variable")))))
10796 ((member type '("http" "https" "ftp" "mailto" "news"))
10797 (browse-url (org-link-escape-browser (concat type ":" path))))
10798 ((equal type "doi")
10799 (browse-url
10800 (org-link-escape-browser (concat org-doi-server-url path))))
10801 ((equal type "message") (browse-url (concat type ":" path)))
10802 ((equal type "shell")
10803 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10804 (cmd path))
10805 (if (or (and (org-string-nw-p
10806 org-confirm-shell-link-not-regexp)
10807 (string-match
10808 org-confirm-shell-link-not-regexp cmd))
10809 (not org-confirm-shell-link-function)
10810 (funcall org-confirm-shell-link-function
10811 (format "Execute \"%s\" in shell? "
10812 (org-add-props cmd nil
10813 'face 'org-warning))))
10814 (progn
10815 (message "Executing %s" cmd)
10816 (shell-command cmd buf)
10817 (when (featurep 'midnight)
10818 (setq clean-buffer-list-kill-buffer-names
10819 (cons (buffer-name buf)
10820 clean-buffer-list-kill-buffer-names))))
10821 (user-error "Abort"))))
10822 ((equal type "elisp")
10823 (let ((cmd path))
10824 (if (or (and (org-string-nw-p
10825 org-confirm-elisp-link-not-regexp)
10826 (org-string-match-p
10827 org-confirm-elisp-link-not-regexp cmd))
10828 (not org-confirm-elisp-link-function)
10829 (funcall org-confirm-elisp-link-function
10830 (format "Execute \"%s\" as elisp? "
10831 (org-add-props cmd nil
10832 'face 'org-warning))))
10833 (message "%s => %s" cmd
10834 (if (eq (string-to-char cmd) ?\()
10835 (eval (read cmd))
10836 (call-interactively (read cmd))))
10837 (user-error "Abort"))))
10838 ((equal type "id")
10839 (require 'ord-id)
10840 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10841 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10842 (unless (run-hook-with-args-until-success
10843 'org-open-link-functions path)
10844 (if (not arg) (org-mark-ring-push)
10845 (switch-to-buffer-other-window
10846 (org-get-buffer-for-internal-link (current-buffer))))
10847 (let ((destination
10848 (org-with-wide-buffer
10849 (if (equal type "radio")
10850 (org-search-radio-target
10851 (org-element-property :path link))
10852 (org-link-search
10853 (if (member type '("custom-id" "coderef"))
10854 (org-element-property :raw-link link)
10855 path)
10856 ;; Prevent fuzzy links from matching
10857 ;; themselves.
10858 (and (equal type "fuzzy")
10859 (+ 2 (org-element-property :begin link)))))
10860 (point))))
10861 (unless (and (<= (point-min) destination)
10862 (>= (point-max) destination))
10863 (widen))
10864 (goto-char destination))))
10865 (t (browse-url-at-point))))))
10866 ;; On a footnote reference or at a footnote definition's label.
10867 ((or (eq type 'footnote-reference)
10868 (and (eq type 'footnote-definition)
10869 (save-excursion
10870 ;; Do not validate action when point is on the
10871 ;; spaces right after the footnote label, in
10872 ;; order to be on par with behaviour on links.
10873 (skip-chars-forward " \t")
10874 (let ((begin
10875 (org-element-property :contents-begin context)))
10876 (if begin (< (point) begin)
10877 (= (org-element-property :post-affiliated context)
10878 (line-beginning-position)))))))
10879 (org-footnote-action))
10880 (t (user-error "No link found")))))
10881 (run-hook-with-args 'org-follow-link-hook)))
10883 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10884 "Offer links in the current entry and return the selected link.
10885 If there is only one link, return it.
10886 If NTH is an integer, return the NTH link found.
10887 If ZERO is a string, check also this string for a link, and if
10888 there is one, return it."
10889 (with-current-buffer buffer
10890 (save-excursion
10891 (save-restriction
10892 (widen)
10893 (goto-char marker)
10894 (let ((cnt ?0)
10895 (in-emacs (if (integerp nth) nil nth))
10896 have-zero end links link c)
10897 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10898 (push (match-string 0 zero) links)
10899 (setq cnt (1- cnt) have-zero t))
10900 (save-excursion
10901 (org-back-to-heading t)
10902 (setq end (save-excursion (outline-next-heading) (point)))
10903 (while (re-search-forward org-any-link-re end t)
10904 (push (match-string 0) links))
10905 (setq links (org-uniquify (reverse links))))
10906 (cond
10907 ((null links)
10908 (message "No links"))
10909 ((equal (length links) 1)
10910 (setq link (car links)))
10911 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10912 (setq link (nth (if have-zero nth (1- nth)) links)))
10913 (t ; we have to select a link
10914 (save-excursion
10915 (save-window-excursion
10916 (delete-other-windows)
10917 (with-output-to-temp-buffer "*Select Link*"
10918 (mapc (lambda (l)
10919 (if (not (string-match org-bracket-link-regexp l))
10920 (princ (format "[%c] %s\n" (incf cnt)
10921 (org-remove-angle-brackets l)))
10922 (if (match-end 3)
10923 (princ (format "[%c] %s (%s)\n" (incf cnt)
10924 (match-string 3 l) (match-string 1 l)))
10925 (princ (format "[%c] %s\n" (incf cnt)
10926 (match-string 1 l))))))
10927 links))
10928 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10929 (message "Select link to open, RET to open all:")
10930 (setq c (read-char-exclusive))
10931 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10932 (when (equal c ?q) (user-error "Abort"))
10933 (if (equal c ?\C-m)
10934 (setq link links)
10935 (setq nth (- c ?0))
10936 (if have-zero (setq nth (1+ nth)))
10937 (unless (and (integerp nth) (>= (length links) nth))
10938 (user-error "Invalid link selection"))
10939 (setq link (nth (1- nth) links)))))
10940 (cons link end))))))
10942 ;; TODO: These functions are deprecated since `org-open-at-point'
10943 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10944 (defun org-open-file-with-system (path)
10945 "Open file at PATH using the system way of opening it."
10946 (org-open-file path 'system))
10947 (defun org-open-file-with-emacs (path)
10948 "Open file at PATH in Emacs."
10949 (org-open-file path 'emacs))
10952 ;;; File search
10954 (defvar org-create-file-search-functions nil
10955 "List of functions to construct the right search string for a file link.
10956 These functions are called in turn with point at the location to
10957 which the link should point.
10959 A function in the hook should first test if it would like to
10960 handle this file type, for example by checking the `major-mode'
10961 or the file extension. If it decides not to handle this file, it
10962 should just return nil to give other functions a chance. If it
10963 does handle the file, it must return the search string to be used
10964 when following the link. The search string will be part of the
10965 file link, given after a double colon, and `org-open-at-point'
10966 will automatically search for it. If special measures must be
10967 taken to make the search successful, another function should be
10968 added to the companion hook `org-execute-file-search-functions',
10969 which see.
10971 A function in this hook may also use `setq' to set the variable
10972 `description' to provide a suggestion for the descriptive text to
10973 be used for this link when it gets inserted into an Org-mode
10974 buffer with \\[org-insert-link].")
10976 (defvar org-execute-file-search-functions nil
10977 "List of functions to execute a file search triggered by a link.
10979 Functions added to this hook must accept a single argument, the
10980 search string that was part of the file link, the part after the
10981 double colon. The function must first check if it would like to
10982 handle this search, for example by checking the `major-mode' or
10983 the file extension. If it decides not to handle this search, it
10984 should just return nil to give other functions a chance. If it
10985 does handle the search, it must return a non-nil value to keep
10986 other functions from trying.
10988 Each function can access the current prefix argument through the
10989 variable `current-prefix-arg'. Note that a single prefix is used
10990 to force opening a link in Emacs, so it may be good to only use a
10991 numeric or double prefix to guide the search function.
10993 In case this is needed, a function in this hook can also restore
10994 the window configuration before `org-open-at-point' was called using:
10996 (set-window-configuration org-window-config-before-follow-link)")
10998 (defun org-search-radio-target (target)
10999 "Search a radio target matching TARGET in current buffer.
11000 White spaces are not significant."
11001 (let ((re (format "<<<%s>>>"
11002 (mapconcat #'regexp-quote
11003 (org-split-string target "[ \t\n]+")
11004 "[ \t]+\\(?:\n[ \t]*\\)?")))
11005 (origin (point)))
11006 (goto-char (point-min))
11007 (catch :radio-match
11008 (while (re-search-forward re nil t)
11009 (backward-char)
11010 (let ((object (org-element-context)))
11011 (when (eq (org-element-type object) 'radio-target)
11012 (goto-char (org-element-property :begin object))
11013 (org-show-context 'link-search)
11014 (throw :radio-match nil))))
11015 (goto-char origin)
11016 (user-error "No match for radio target: %s" target))))
11018 (defun org-link-search (s &optional avoid-pos stealth)
11019 "Search for a search string S.
11021 If S starts with \"#\", it triggers a custom ID search.
11023 If S is enclosed within parenthesis, it initiates a coderef
11024 search.
11026 If S is surrounded by forward slashes, it is interpreted as
11027 a regular expression. In Org mode files, this will create an
11028 `org-occur' sparse tree. In ordinary files, `occur' will be used
11029 to list matches. If the current buffer is in `dired-mode', grep
11030 will be used to search in all files.
11032 When AVOID-POS is given, ignore matches near that position.
11034 When optional argument STEALTH is non-nil, do not modify
11035 visibility around point, thus ignoring `org-show-context-detail'
11036 variable.
11038 Search is case-insensitive and ignores white spaces. Return type
11039 of matched result, with is either `dedicated' or `fuzzy'."
11040 (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
11041 (let* ((case-fold-search t)
11042 (origin (point))
11043 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
11044 (words (org-split-string s "[ \t\n]+"))
11045 (s-multi-re (mapconcat #'regexp-quote words "[ \t]+\\(?:\n[ \t]*\\)?"))
11046 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
11047 type)
11048 (cond
11049 ;; Check if there are any special search functions.
11050 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11051 ((eq (string-to-char s) ?#)
11052 ;; Look for a custom ID S if S starts with "#".
11053 (let* ((id (substring normalized 1))
11054 (match (org-find-property "CUSTOM_ID" id)))
11055 (if match (progn (goto-char match) (setf type 'dedicated))
11056 (error "No match for custom ID: %s" id))))
11057 ((string-match "\\`(\\(.*\\))\\'" normalized)
11058 ;; Look for coderef targets if S is enclosed within parenthesis.
11059 (let ((coderef (match-string-no-properties 1 normalized))
11060 (re (substring s-single-re 1 -1)))
11061 (goto-char (point-min))
11062 (catch :coderef-match
11063 (while (re-search-forward re nil t)
11064 (let ((element (org-element-at-point)))
11065 (when (and (memq (org-element-type element)
11066 '(example-block src-block))
11067 ;; Build proper regexp according to current
11068 ;; block's label format.
11069 (let ((label-fmt
11070 (regexp-quote
11071 (or (org-element-property :label-fmt element)
11072 org-coderef-label-format))))
11073 (save-excursion
11074 (beginning-of-line)
11075 (looking-at (format ".*?\\(%s\\)[ \t]*$"
11076 (format label-fmt coderef))))))
11077 (setq type 'dedicated)
11078 (goto-char (match-beginning 1))
11079 (throw :coderef-match nil))))
11080 (goto-char origin)
11081 (error "No match for coderef: %s" coderef))))
11082 ((string-match "\\`/\\(.*\\)/\\'" normalized)
11083 ;; Look for a regular expression.
11084 (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
11085 (match-string 1 s)))
11086 ;; Fuzzy links.
11088 (let* ((starred (eq (string-to-char normalized) ?*))
11089 (headline-search (and (derived-mode-p 'org-mode)
11090 (or org-link-search-must-match-exact-headline
11091 starred))))
11092 (cond
11093 ;; Look for targets, only if not in a headline search.
11094 ((and (not starred)
11095 (let ((target (format "<<%s>>" s-multi-re)))
11096 (catch :target-match
11097 (goto-char (point-min))
11098 (while (re-search-forward target nil t)
11099 (backward-char)
11100 (let ((context (org-element-context)))
11101 (when (eq (org-element-type context) 'target)
11102 (setq type 'dedicated)
11103 (goto-char (org-element-property :begin context))
11104 (throw :target-match t))))
11105 nil))))
11106 ;; Look for elements named after S, only if not in a headline
11107 ;; search.
11108 ((and (not starred)
11109 (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
11110 (catch :name-match
11111 (goto-char (point-min))
11112 (while (re-search-forward name nil t)
11113 (let ((element (org-element-at-point)))
11114 (when (equal (org-split-string
11115 (org-element-property :name element)
11116 "[ \t]+")
11117 words)
11118 (setq type 'dedicated)
11119 (beginning-of-line)
11120 (throw :name-match t))))
11121 nil))))
11122 ;; Regular text search. Prefer headlines in Org mode
11123 ;; buffers.
11124 ((and (derived-mode-p 'org-mode)
11125 (let* ((wspace "[ \t]")
11126 (wspaceopt (concat wspace "*"))
11127 (cookie (concat "\\(?:"
11128 wspaceopt
11129 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11130 wspaceopt
11131 "\\)"))
11132 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)"))
11133 (re (concat
11134 org-outline-regexp-bol
11135 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11136 "\\(?:\\[#.\\][ \t]+\\)?"
11137 "\\(?:" org-comment-string "[ \t]+\\)?"
11138 sep "*"
11139 (let ((title (mapconcat #'regexp-quote
11140 words
11141 (concat sep "+"))))
11142 (if starred (substring title 1) title))
11143 sep "*"
11144 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11145 "[ \t]*$")))
11146 (goto-char (point-min))
11147 (re-search-forward re nil t)))
11148 (goto-char (match-beginning 0))
11149 (setq type 'dedicated))
11150 ;; Offer to create non-existent headline depending on
11151 ;; `org-link-search-must-match-exact-headline'.
11152 ((and (derived-mode-p 'org-mode)
11153 (not org-link-search-inhibit-query)
11154 (eq org-link-search-must-match-exact-headline 'query-to-create)
11155 (yes-or-no-p "No match - create this as a new heading? "))
11156 (goto-char (point-max))
11157 (unless (bolp) (newline))
11158 (org-insert-heading nil t t)
11159 (insert s "\n")
11160 (beginning-of-line 0))
11161 ;; Only headlines are looked after. No need to process
11162 ;; further: throw an error.
11163 ((and (derived-mode-p 'org-mode)
11164 (or starred org-link-search-must-match-exact-headline))
11165 (goto-char origin)
11166 (error "No match for fuzzy expression: %s" normalized))
11167 ;; Regular text search.
11168 ((catch :fuzzy-match
11169 (goto-char (point-min))
11170 (while (re-search-forward s-multi-re nil t)
11171 ;; Skip match if it contains AVOID-POS or it is included
11172 ;; in a link with a description but outside the
11173 ;; description.
11174 (unless (or (and avoid-pos
11175 (<= (match-beginning 0) avoid-pos)
11176 (> (match-end 0) avoid-pos))
11177 (and (save-match-data
11178 (org-in-regexp org-bracket-link-regexp))
11179 (match-beginning 3)
11180 (or (> (match-beginning 3) (point))
11181 (<= (match-end 3) (point)))
11182 (org-element-lineage
11183 (save-match-data (org-element-context))
11184 '(link) t)))
11185 (goto-char (match-beginning 0))
11186 (setq type 'fuzzy)
11187 (throw :fuzzy-match t)))
11188 nil))
11189 ;; All failed. Throw an error.
11190 (t (goto-char origin)
11191 (error "No match for fuzzy expression: %s" normalized))))))
11192 ;; Disclose surroundings of match, if appropriate.
11193 (when (and (derived-mode-p 'org-mode) (not stealth))
11194 (org-show-context 'link-search))
11195 type))
11197 (defun org-get-buffer-for-internal-link (buffer)
11198 "Return a buffer to be used for displaying the link target of internal links."
11199 (cond
11200 ((not org-display-internal-link-with-indirect-buffer)
11201 buffer)
11202 ((string-match "(Clone)$" (buffer-name buffer))
11203 (message "Buffer is already a clone, not making another one")
11204 ;; we also do not modify visibility in this case
11205 buffer)
11206 (t ; make a new indirect buffer for displaying the link
11207 (let* ((bn (buffer-name buffer))
11208 (ibn (concat bn "(Clone)"))
11209 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11210 (with-current-buffer ib (org-overview))
11211 ib))))
11213 (defun org-do-occur (regexp &optional cleanup)
11214 "Call the Emacs command `occur'.
11215 If CLEANUP is non-nil, remove the printout of the regular expression
11216 in the *Occur* buffer. This is useful if the regex is long and not useful
11217 to read."
11218 (occur regexp)
11219 (when cleanup
11220 (let ((cwin (selected-window)) win beg end)
11221 (when (setq win (get-buffer-window "*Occur*"))
11222 (select-window win))
11223 (goto-char (point-min))
11224 (when (re-search-forward "match[a-z]+" nil t)
11225 (setq beg (match-end 0))
11226 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11227 (setq end (1- (match-beginning 0)))))
11228 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11229 (goto-char (point-min))
11230 (select-window cwin))))
11232 ;;; The mark ring for links jumps
11234 (defvar org-mark-ring nil
11235 "Mark ring for positions before jumps in Org-mode.")
11236 (defvar org-mark-ring-last-goto nil
11237 "Last position in the mark ring used to go back.")
11238 ;; Fill and close the ring
11239 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11240 (loop for i from 1 to org-mark-ring-length do
11241 (push (make-marker) org-mark-ring))
11242 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11243 org-mark-ring)
11245 (defun org-mark-ring-push (&optional pos buffer)
11246 "Put the current position or POS into the mark ring and rotate it."
11247 (interactive)
11248 (setq pos (or pos (point)))
11249 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11250 (move-marker (car org-mark-ring)
11251 (or pos (point))
11252 (or buffer (current-buffer)))
11253 (message "%s"
11254 (substitute-command-keys
11255 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11257 (defun org-mark-ring-goto (&optional n)
11258 "Jump to the previous position in the mark ring.
11259 With prefix arg N, jump back that many stored positions. When
11260 called several times in succession, walk through the entire ring.
11261 Org-mode commands jumping to a different position in the current file,
11262 or to another Org-mode file, automatically push the old position
11263 onto the ring."
11264 (interactive "p")
11265 (let (p m)
11266 (if (eq last-command this-command)
11267 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11268 (setq p org-mark-ring))
11269 (setq org-mark-ring-last-goto p)
11270 (setq m (car p))
11271 (org-pop-to-buffer-same-window (marker-buffer m))
11272 (goto-char m)
11273 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11275 (defun org-remove-angle-brackets (s)
11276 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11277 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11279 (defun org-add-angle-brackets (s)
11280 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11281 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11283 (defun org-remove-double-quotes (s)
11284 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11285 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11288 ;;; Following specific links
11290 (defun org-follow-timestamp-link ()
11291 "Open an agenda view for the time-stamp date/range at point."
11292 (cond
11293 ((org-at-date-range-p t)
11294 (let ((org-agenda-start-on-weekday)
11295 (t1 (match-string 1))
11296 (t2 (match-string 2)) tt1 tt2)
11297 (setq tt1 (time-to-days (org-time-string-to-time t1))
11298 tt2 (time-to-days (org-time-string-to-time t2)))
11299 (let ((org-agenda-buffer-tmp-name
11300 (format "*Org Agenda(a:%s)"
11301 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11302 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11303 ((org-at-timestamp-p t)
11304 (let ((org-agenda-buffer-tmp-name
11305 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11306 (org-agenda-list nil (time-to-days (org-time-string-to-time
11307 (substring (match-string 1) 0 10)))
11308 1)))
11309 (t (error "This should not happen"))))
11312 ;;; Following file links
11313 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11314 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11315 (declare-function mailcap-mime-info
11316 "mailcap" (string &optional request no-decode))
11317 (defvar org-wait nil)
11318 (defun org-open-file (path &optional in-emacs line search)
11319 "Open the file at PATH.
11320 First, this expands any special file name abbreviations. Then the
11321 configuration variable `org-file-apps' is checked if it contains an
11322 entry for this file type, and if yes, the corresponding command is launched.
11324 If no application is found, Emacs simply visits the file.
11326 With optional prefix argument IN-EMACS, Emacs will visit the file.
11327 With a double \\[universal-argument] \\[universal-argument] \
11328 prefix arg, Org tries to avoid opening in Emacs
11329 and to use an external application to visit the file.
11331 Optional LINE specifies a line to go to, optional SEARCH a string
11332 to search for. If LINE or SEARCH is given, the file will be
11333 opened in Emacs, unless an entry from org-file-apps that makes
11334 use of groups in a regexp matches.
11336 If you want to change the way frames are used when following a
11337 link, please customize `org-link-frame-setup'.
11339 If the file does not exist, an error is thrown."
11340 (let* ((file (if (equal path "")
11341 buffer-file-name
11342 (substitute-in-file-name (expand-file-name path))))
11343 (file-apps (append org-file-apps (org-default-apps)))
11344 (apps (org-remove-if
11345 'org-file-apps-entry-match-against-dlink-p file-apps))
11346 (apps-dlink (org-remove-if-not
11347 'org-file-apps-entry-match-against-dlink-p file-apps))
11348 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11349 (dirp (if remp nil (file-directory-p file)))
11350 (file (if (and dirp org-open-directory-means-index-dot-org)
11351 (concat (file-name-as-directory file) "index.org")
11352 file))
11353 (a-m-a-p (assq 'auto-mode apps))
11354 (dfile (downcase file))
11355 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11356 (link (cond ((and (eq line nil)
11357 (eq search nil))
11358 file)
11359 (line
11360 (concat file "::" (number-to-string line)))
11361 (search
11362 (concat file "::" search))))
11363 (dlink (downcase link))
11364 (old-buffer (current-buffer))
11365 (old-pos (point))
11366 (old-mode major-mode)
11367 ext cmd link-match-data)
11368 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11369 (setq ext (match-string 1 dfile))
11370 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11371 (setq ext (match-string 1 dfile))))
11372 (cond
11373 ((member in-emacs '((16) system))
11374 (setq cmd (cdr (assoc 'system apps))))
11375 (in-emacs (setq cmd 'emacs))
11377 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11378 (and dirp (cdr (assoc 'directory apps)))
11379 ; first, try matching against apps-dlink
11380 ; if we get a match here, store the match data for later
11381 (let ((match (assoc-default dlink apps-dlink
11382 'string-match)))
11383 (if match
11384 (progn (setq link-match-data (match-data))
11385 match)
11386 (progn (setq in-emacs (or in-emacs line search))
11387 nil))) ; if we have no match in apps-dlink,
11388 ; always open the file in emacs if line or search
11389 ; is given (for backwards compatibility)
11390 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11391 'string-match)
11392 (cdr (assoc ext apps))
11393 (cdr (assoc t apps))))))
11394 (when (eq cmd 'system)
11395 (setq cmd (cdr (assoc 'system apps))))
11396 (when (eq cmd 'default)
11397 (setq cmd (cdr (assoc t apps))))
11398 (when (eq cmd 'mailcap)
11399 (require 'mailcap)
11400 (mailcap-parse-mailcaps)
11401 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11402 (command (mailcap-mime-info mime-type)))
11403 (if (stringp command)
11404 (setq cmd command)
11405 (setq cmd 'emacs))))
11406 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11407 (not (file-exists-p file))
11408 (not org-open-non-existing-files))
11409 (user-error "No such file: %s" file))
11410 (cond
11411 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11412 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11413 (while (string-match "['\"]%s['\"]" cmd)
11414 (setq cmd (replace-match "%s" t t cmd)))
11415 (while (string-match "%s" cmd)
11416 (setq cmd (replace-match
11417 (save-match-data
11418 (shell-quote-argument
11419 (convert-standard-filename file)))
11420 t t cmd)))
11422 ;; Replace "%1", "%2" etc. in command with group matches from regex
11423 (save-match-data
11424 (let ((match-index 1)
11425 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11426 (set-match-data link-match-data)
11427 (while (<= match-index number-of-groups)
11428 (let ((regex (concat "%" (number-to-string match-index)))
11429 (replace-with (match-string match-index dlink)))
11430 (while (string-match regex cmd)
11431 (setq cmd (replace-match replace-with t t cmd))))
11432 (setq match-index (+ match-index 1)))))
11434 (save-window-excursion
11435 (message "Running %s...done" cmd)
11436 (start-process-shell-command cmd nil cmd)
11437 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11438 ((or (stringp cmd)
11439 (eq cmd 'emacs))
11440 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11441 (widen)
11442 (if line (progn (org-goto-line line)
11443 (if (derived-mode-p 'org-mode)
11444 (org-reveal)))
11445 (if search (org-link-search search))))
11446 ((consp cmd)
11447 (let ((file (convert-standard-filename file)))
11448 (save-match-data
11449 (set-match-data link-match-data)
11450 (eval cmd))))
11451 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11452 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11453 (or (not (equal old-buffer (current-buffer)))
11454 (not (equal old-pos (point))))
11455 (org-mark-ring-push old-pos old-buffer))))
11457 (defun org-file-apps-entry-match-against-dlink-p (entry)
11458 "This function returns non-nil if `entry' uses a regular
11459 expression which should be matched against the whole link by
11460 org-open-file.
11462 It assumes that is the case when the entry uses a regular
11463 expression which has at least one grouping construct and the
11464 action is either a lisp form or a command string containing
11465 '%1', i.e. using at least one subexpression match as a
11466 parameter."
11467 (let ((selector (car entry))
11468 (action (cdr entry)))
11469 (if (stringp selector)
11470 (and (> (regexp-opt-depth selector) 0)
11471 (or (and (stringp action)
11472 (string-match "%[0-9]" action))
11473 (consp action)))
11474 nil)))
11476 (defun org-default-apps ()
11477 "Return the default applications for this operating system."
11478 (cond
11479 ((eq system-type 'darwin)
11480 org-file-apps-defaults-macosx)
11481 ((eq system-type 'windows-nt)
11482 org-file-apps-defaults-windowsnt)
11483 (t org-file-apps-defaults-gnu)))
11485 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11486 "Convert extensions to regular expressions in the cars of LIST.
11487 Also, weed out any non-string entries, because the return value is used
11488 only for regexp matching.
11489 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11490 point to the symbol `emacs', indicating that the file should
11491 be opened in Emacs."
11492 (append
11493 (delq nil
11494 (mapcar (lambda (x)
11495 (if (not (stringp (car x)))
11497 (if (string-match "\\W" (car x))
11499 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11500 list))
11501 (if add-auto-mode
11502 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11504 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11505 (defun org-file-remote-p (file)
11506 "Test whether FILE specifies a location on a remote system.
11507 Return non-nil if the location is indeed remote.
11509 For example, the filename \"/user@host:/foo\" specifies a location
11510 on the system \"/user@host:\"."
11511 (cond ((fboundp 'file-remote-p)
11512 (file-remote-p file))
11513 ((fboundp 'tramp-handle-file-remote-p)
11514 (tramp-handle-file-remote-p file))
11515 ((and (boundp 'ange-ftp-name-format)
11516 (string-match (car ange-ftp-name-format) file))
11517 t)))
11520 ;;;; Refiling
11522 (defun org-get-org-file ()
11523 "Read a filename, with default directory `org-directory'."
11524 (let ((default (or org-default-notes-file remember-data-file)))
11525 (read-file-name (format "File name [%s]: " default)
11526 (file-name-as-directory org-directory)
11527 default)))
11529 (defun org-notes-order-reversed-p ()
11530 "Check if the current file should receive notes in reversed order."
11531 (cond
11532 ((not org-reverse-note-order) nil)
11533 ((eq t org-reverse-note-order) t)
11534 ((not (listp org-reverse-note-order)) nil)
11535 (t (catch 'exit
11536 (dolist (entry org-reverse-note-order)
11537 (if (string-match (car entry) buffer-file-name)
11538 (throw 'exit (cdr entry))))))))
11540 (defvar org-refile-target-table nil
11541 "The list of refile targets, created by `org-refile'.")
11543 (defvar org-agenda-new-buffers nil
11544 "Buffers created to visit agenda files.")
11546 (defvar org-refile-cache nil
11547 "Cache for refile targets.")
11549 (defvar org-refile-markers nil
11550 "All the markers used for caching refile locations.")
11552 (defun org-refile-marker (pos)
11553 "Get a new refile marker, but only if caching is in use."
11554 (if (not org-refile-use-cache)
11556 (let ((m (make-marker)))
11557 (move-marker m pos)
11558 (push m org-refile-markers)
11559 m)))
11561 (defun org-refile-cache-clear ()
11562 "Clear the refile cache and disable all the markers."
11563 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11564 (setq org-refile-markers nil)
11565 (setq org-refile-cache nil)
11566 (message "Refile cache has been cleared"))
11568 (defun org-refile-cache-check-set (set)
11569 "Check if all the markers in the cache still have live buffers."
11570 (let (marker)
11571 (catch 'exit
11572 (while (and set (setq marker (nth 3 (pop set))))
11573 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11574 (when (and marker (null (marker-buffer marker)))
11575 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11576 (sit-for 3)
11577 (throw 'exit nil)))
11578 t)))
11580 (defun org-refile-cache-put (set &rest identifiers)
11581 "Push the refile targets SET into the cache, under IDENTIFIERS."
11582 (let* ((key (sha1 (prin1-to-string identifiers)))
11583 (entry (assoc key org-refile-cache)))
11584 (if entry
11585 (setcdr entry set)
11586 (push (cons key set) org-refile-cache))))
11588 (defun org-refile-cache-get (&rest identifiers)
11589 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11590 (cond
11591 ((not org-refile-cache) nil)
11592 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11594 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11595 org-refile-cache))))
11596 (and set (org-refile-cache-check-set set) set)))))
11598 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11599 "Produce a table with refile targets."
11600 (let ((case-fold-search nil)
11601 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11602 (entries (or org-refile-targets '((nil . (:level . 1)))))
11603 targets tgs txt re files desc descre fast-path-p level pos0)
11604 (message "Getting targets...")
11605 (with-current-buffer (or default-buffer (current-buffer))
11606 (dolist (entry entries)
11607 (setq files (car entry) desc (cdr entry))
11608 (setq fast-path-p nil)
11609 (cond
11610 ((null files) (setq files (list (current-buffer))))
11611 ((eq files 'org-agenda-files)
11612 (setq files (org-agenda-files 'unrestricted)))
11613 ((and (symbolp files) (fboundp files))
11614 (setq files (funcall files)))
11615 ((and (symbolp files) (boundp files))
11616 (setq files (symbol-value files))))
11617 (if (stringp files) (setq files (list files)))
11618 (cond
11619 ((eq (car desc) :tag)
11620 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11621 ((eq (car desc) :todo)
11622 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11623 ((eq (car desc) :regexp)
11624 (setq descre (cdr desc)))
11625 ((eq (car desc) :level)
11626 (setq descre (concat "^\\*\\{" (number-to-string
11627 (if org-odd-levels-only
11628 (1- (* 2 (cdr desc)))
11629 (cdr desc)))
11630 "\\}[ \t]")))
11631 ((eq (car desc) :maxlevel)
11632 (setq fast-path-p t)
11633 (setq descre (concat "^\\*\\{1," (number-to-string
11634 (if org-odd-levels-only
11635 (1- (* 2 (cdr desc)))
11636 (cdr desc)))
11637 "\\}[ \t]")))
11638 (t (error "Bad refiling target description %s" desc)))
11639 (dolist (f files)
11640 (with-current-buffer
11641 (if (bufferp f) f (org-get-agenda-file-buffer f))
11643 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11644 (progn
11645 (if (bufferp f) (setq f (buffer-file-name
11646 (buffer-base-buffer f))))
11647 (setq f (and f (expand-file-name f)))
11648 (if (eq org-refile-use-outline-path 'file)
11649 (push (list (file-name-nondirectory f) f nil nil) tgs))
11650 (save-excursion
11651 (save-restriction
11652 (widen)
11653 (goto-char (point-min))
11654 (while (re-search-forward descre nil t)
11655 (goto-char (setq pos0 (point-at-bol)))
11656 (catch 'next
11657 (when org-refile-target-verify-function
11658 (save-match-data
11659 (or (funcall org-refile-target-verify-function)
11660 (throw 'next t))))
11661 (when (and (looking-at org-complex-heading-regexp)
11662 (not (member (match-string 4) excluded-entries))
11663 (match-string 4))
11664 (setq level (org-reduced-level
11665 (- (match-end 1) (match-beginning 1)))
11666 txt (org-link-display-format (match-string 4))
11667 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11668 re (format org-complex-heading-regexp-format
11669 (regexp-quote (match-string 4))))
11670 (when org-refile-use-outline-path
11671 (setq txt (mapconcat
11672 'org-protect-slash
11673 (append
11674 (if (eq org-refile-use-outline-path
11675 'file)
11676 (list (file-name-nondirectory
11677 (buffer-file-name
11678 (buffer-base-buffer))))
11679 (if (eq org-refile-use-outline-path
11680 'full-file-path)
11681 (list (buffer-file-name
11682 (buffer-base-buffer)))))
11683 (org-get-outline-path fast-path-p
11684 level txt)
11685 (list txt))
11686 "/")))
11687 (push (list txt f re (org-refile-marker (point)))
11688 tgs)))
11689 (when (= (point) pos0)
11690 ;; verification function has not moved point
11691 (goto-char (point-at-eol))))))))
11692 (when org-refile-use-cache
11693 (org-refile-cache-put tgs (buffer-file-name) descre))
11694 (setq targets (append tgs targets))))))
11695 (message "Getting targets...done")
11696 (nreverse targets)))
11698 (defun org-protect-slash (s)
11699 (while (string-match "/" s)
11700 (setq s (replace-match "\\" t t s)))
11703 (defvar org-olpa (make-vector 20 nil))
11705 (defun org-get-outline-path (&optional fastp level heading)
11706 "Return the outline path to the current entry, as a list.
11708 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11709 routine which makes outline path derivations for an entire file,
11710 avoiding backtracing. Refile target collection makes use of that."
11711 (if fastp
11712 (progn
11713 (if (> level 19)
11714 (error "Outline path failure, more than 19 levels"))
11715 (loop for i from level upto 19 do
11716 (aset org-olpa i nil))
11717 (prog1
11718 (delq nil (append org-olpa nil))
11719 (aset org-olpa level heading)))
11720 (let (rtn case-fold-search)
11721 (save-excursion
11722 (save-restriction
11723 (widen)
11724 (while (org-up-heading-safe)
11725 (when (looking-at org-complex-heading-regexp)
11726 (push (org-trim
11727 (replace-regexp-in-string
11728 ;; Remove statistical/checkboxes cookies
11729 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11730 (org-match-string-no-properties 4)))
11731 rtn)))
11732 rtn)))))
11734 (defun org-format-outline-path (path &optional width prefix separator)
11735 "Format the outline path PATH for display.
11736 WIDTH is the maximum number of characters that is available.
11737 PREFIX is a prefix to be included in the returned string,
11738 such as the file name.
11739 SEPARATOR is inserted between the different parts of the path,
11740 the default is \"/\"."
11741 (setq width (or width 79))
11742 (if prefix (setq width (- width (length prefix))))
11743 (if (not path)
11744 (or prefix "")
11745 (let* ((nsteps (length path))
11746 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11747 (maxwidth (if (<= total-width width)
11748 10000 ;; everything fits
11749 ;; we need to shorten the level headings
11750 (/ (- width nsteps) nsteps)))
11751 (org-odd-levels-only nil)
11752 (n 0)
11753 (total (1+ (length prefix))))
11754 (setq maxwidth (max maxwidth 10))
11755 (concat prefix
11756 (if prefix (or separator "/"))
11757 (mapconcat
11758 (lambda (h)
11759 (setq n (1+ n))
11760 (if (and (= n nsteps) (< maxwidth 10000))
11761 (setq maxwidth (- total-width total)))
11762 (if (< (length h) maxwidth)
11763 (progn (setq total (+ total (length h) 1)) h)
11764 (setq h (substring h 0 (- maxwidth 2))
11765 total (+ total maxwidth 1))
11766 (if (string-match "[ \t]+\\'" h)
11767 (setq h (substring h 0 (match-beginning 0))))
11768 (setq h (concat h "..")))
11769 (org-add-props h nil 'face
11770 (nth (% (1- n) org-n-level-faces)
11771 org-level-faces))
11773 path (or separator "/"))))))
11775 (defun org-display-outline-path (&optional file current separator just-return-string)
11776 "Display the current outline path in the echo area.
11778 If FILE is non-nil, prepend the output with the file name.
11779 If CURRENT is non-nil, append the current heading to the output.
11780 SEPARATOR is passed through to `org-format-outline-path'. It separates
11781 the different parts of the path and defaults to \"/\".
11782 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11783 (interactive "P")
11784 (let* (case-fold-search
11785 (bfn (buffer-file-name (buffer-base-buffer)))
11786 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11787 res)
11788 (if current (setq path (append path
11789 (save-excursion
11790 (org-back-to-heading t)
11791 (if (looking-at org-complex-heading-regexp)
11792 (list (match-string 4)))))))
11793 (setq res
11794 (org-format-outline-path
11795 path
11796 (1- (frame-width))
11797 (and file bfn (concat (file-name-nondirectory bfn) separator))
11798 separator))
11799 (if just-return-string
11800 (org-no-properties res)
11801 (org-unlogged-message "%s" res))))
11803 (defvar org-refile-history nil
11804 "History for refiling operations.")
11806 (defvar org-after-refile-insert-hook nil
11807 "Hook run after `org-refile' has inserted its stuff at the new location.
11808 Note that this is still *before* the stuff will be removed from
11809 the *old* location.")
11811 (defvar org-capture-last-stored-marker)
11812 (defvar org-refile-keep nil
11813 "Non-nil means `org-refile' will copy instead of refile.")
11815 (defun org-copy ()
11816 "Like `org-refile', but copy."
11817 (interactive)
11818 (let ((org-refile-keep t))
11819 (funcall 'org-refile nil nil nil "Copy")))
11821 (defun org-refile (&optional arg default-buffer rfloc msg)
11822 "Move the entry or entries at point to another heading.
11823 The list of target headings is compiled using the information in
11824 `org-refile-targets', which see.
11826 At the target location, the entry is filed as a subitem of the
11827 target heading. Depending on `org-reverse-note-order', the new
11828 subitem will either be the first or the last subitem.
11830 If there is an active region, all entries in that region will be
11831 refiled. However, the region must fulfill the requirement that
11832 the first heading sets the top-level of the moved text.
11834 With prefix arg ARG, the command will only visit the target
11835 location and not actually move anything.
11837 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11838 refiling operation has put the subtree.
11840 With a numeric prefix argument of `2', refile to the running clock.
11842 With a numeric prefix argument of `3', emulate `org-refile-keep'
11843 being set to t and copy to the target location, don't move it.
11844 Beware that keeping refiled entries may result in duplicated ID
11845 properties.
11847 RFLOC can be a refile location obtained in a different way.
11849 MSG is a string to replace \"Refile\" in the default prompt with
11850 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11852 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11854 If you are using target caching (see `org-refile-use-cache'), you
11855 have to clear the target cache in order to find new targets.
11856 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11857 prefix argument (`C-u C-u C-u C-c C-w')."
11858 (interactive "P")
11859 (if (member arg '(0 (64)))
11860 (org-refile-cache-clear)
11861 (let* ((actionmsg (cond (msg msg)
11862 ((equal arg 3) "Refile (and keep)")
11863 (t "Refile")))
11864 (cbuf (current-buffer))
11865 (regionp (org-region-active-p))
11866 (region-start (and regionp (region-beginning)))
11867 (region-end (and regionp (region-end)))
11868 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11869 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11870 pos it nbuf file re level reversed)
11871 (setq last-command nil)
11872 (when regionp
11873 (goto-char region-start)
11874 (or (bolp) (goto-char (point-at-bol)))
11875 (setq region-start (point))
11876 (unless (or (org-kill-is-subtree-p
11877 (buffer-substring region-start region-end))
11878 (prog1 org-refile-active-region-within-subtree
11879 (let ((s (point-at-eol)))
11880 (org-toggle-heading)
11881 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11882 (user-error "The region is not a (sequence of) subtree(s)")))
11883 (if (equal arg '(16))
11884 (org-refile-goto-last-stored)
11885 (when (or
11886 (and (equal arg 2)
11887 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11888 (prog1
11889 (setq it (list (or org-clock-heading "running clock")
11890 (buffer-file-name
11891 (marker-buffer org-clock-hd-marker))
11893 (marker-position org-clock-hd-marker)))
11894 (setq arg nil)))
11895 (setq it (or rfloc
11896 (let (heading-text)
11897 (save-excursion
11898 (unless (and arg (listp arg))
11899 (org-back-to-heading t)
11900 (setq heading-text
11901 (replace-regexp-in-string
11902 org-bracket-link-regexp
11903 "\\3"
11904 (nth 4 (org-heading-components)))))
11905 (org-refile-get-location
11906 (cond ((and arg (listp arg)) "Goto")
11907 (regionp (concat actionmsg " region to"))
11908 (t (concat actionmsg " subtree \""
11909 heading-text "\" to")))
11910 default-buffer
11911 (and (not (equal '(4) arg))
11912 org-refile-allow-creating-parent-nodes)
11913 arg))))))
11914 (setq file (nth 1 it)
11915 re (nth 2 it)
11916 pos (nth 3 it))
11917 (if (and (not arg)
11919 (equal (buffer-file-name) file)
11920 (if regionp
11921 (and (>= pos region-start)
11922 (<= pos region-end))
11923 (and (>= pos (point))
11924 (< pos (save-excursion
11925 (org-end-of-subtree t t))))))
11926 (error "Cannot refile to position inside the tree or region"))
11927 (setq nbuf (or (find-buffer-visiting file)
11928 (find-file-noselect file)))
11929 (if (and arg (not (equal arg 3)))
11930 (progn
11931 (org-pop-to-buffer-same-window nbuf)
11932 (goto-char pos)
11933 (org-show-context 'org-goto))
11934 (if regionp
11935 (progn
11936 (org-kill-new (buffer-substring region-start region-end))
11937 (org-save-markers-in-region region-start region-end))
11938 (org-copy-subtree 1 nil t))
11939 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11940 (find-file-noselect file)))
11941 (setq reversed (org-notes-order-reversed-p))
11942 (save-excursion
11943 (save-restriction
11944 (widen)
11945 (if pos
11946 (progn
11947 (goto-char pos)
11948 (looking-at org-outline-regexp)
11949 (setq level (org-get-valid-level (funcall outline-level) 1))
11950 (goto-char
11951 (if reversed
11952 (or (outline-next-heading) (point-max))
11953 (or (save-excursion (org-get-next-sibling))
11954 (org-end-of-subtree t t)
11955 (point-max)))))
11956 (setq level 1)
11957 (if (not reversed)
11958 (goto-char (point-max))
11959 (goto-char (point-min))
11960 (or (outline-next-heading) (goto-char (point-max)))))
11961 (if (not (bolp)) (newline))
11962 (org-paste-subtree level nil nil t)
11963 (when org-log-refile
11964 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11965 (unless (eq org-log-refile 'note)
11966 (save-excursion (org-add-log-note))))
11967 (and org-auto-align-tags
11968 (let ((org-loop-over-headlines-in-active-region nil))
11969 (org-set-tags nil t)))
11970 (let ((bookmark-name (plist-get org-bookmark-names-plist
11971 :last-refile)))
11972 (when bookmark-name
11973 (with-demoted-errors
11974 (bookmark-set bookmark-name))))
11975 ;; If we are refiling for capture, make sure that the
11976 ;; last-capture pointers point here
11977 (when (org-bound-and-true-p org-refile-for-capture)
11978 (let ((bookmark-name (plist-get org-bookmark-names-plist
11979 :last-capture-marker)))
11980 (when bookmark-name
11981 (with-demoted-errors
11982 (bookmark-set bookmark-name))))
11983 (move-marker org-capture-last-stored-marker (point)))
11984 (if (fboundp 'deactivate-mark) (deactivate-mark))
11985 (run-hooks 'org-after-refile-insert-hook))))
11986 (unless org-refile-keep
11987 (if regionp
11988 (delete-region (point) (+ (point) (- region-end region-start)))
11989 (delete-region
11990 (and (org-back-to-heading t) (point))
11991 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11992 (when (featurep 'org-inlinetask)
11993 (org-inlinetask-remove-END-maybe))
11994 (setq org-markers-to-move nil)
11995 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11997 (defun org-refile-goto-last-stored ()
11998 "Go to the location where the last refile was stored."
11999 (interactive)
12000 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12001 (message "This is the location of the last refile"))
12003 (defun org-refile--get-location (refloc tbl)
12004 "When user refile to REFLOC, find the associated target in TBL.
12005 Also check `org-refile-target-table'."
12006 (car (delq
12008 (mapcar
12009 (lambda (r) (or (assoc r tbl)
12010 (assoc r org-refile-target-table)))
12011 (list (replace-regexp-in-string "/$" "" refloc)
12012 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12014 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12015 no-exclude)
12016 "Prompt the user for a refile location, using PROMPT.
12017 PROMPT should not be suffixed with a colon and a space, because
12018 this function appends the default value from
12019 `org-refile-history' automatically, if that is not empty.
12020 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12021 this is used for the GOTO interface."
12022 (let ((org-refile-targets org-refile-targets)
12023 (org-refile-use-outline-path org-refile-use-outline-path)
12024 excluded-entries)
12025 (when (and (derived-mode-p 'org-mode)
12026 (not org-refile-use-cache)
12027 (not no-exclude))
12028 (org-map-tree
12029 (lambda()
12030 (setq excluded-entries
12031 (append excluded-entries (list (org-get-heading t t)))))))
12032 (setq org-refile-target-table
12033 (org-refile-get-targets default-buffer excluded-entries)))
12034 (unless org-refile-target-table
12035 (user-error "No refile targets"))
12036 (let* ((cbuf (current-buffer))
12037 (partial-completion-mode nil)
12038 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12039 (cfunc (if (and org-refile-use-outline-path
12040 org-outline-path-complete-in-steps)
12041 'org-olpath-completing-read
12042 'org-icompleting-read))
12043 (extra (if org-refile-use-outline-path "/" ""))
12044 (cbnex (concat (buffer-name) extra))
12045 (filename (and cfn (expand-file-name cfn)))
12046 (tbl (mapcar
12047 (lambda (x)
12048 (if (and (not (member org-refile-use-outline-path
12049 '(file full-file-path)))
12050 (not (equal filename (nth 1 x))))
12051 (cons (concat (car x) extra " ("
12052 (file-name-nondirectory (nth 1 x)) ")")
12053 (cdr x))
12054 (cons (concat (car x) extra) (cdr x))))
12055 org-refile-target-table))
12056 (completion-ignore-case t)
12057 cdef
12058 (prompt (concat prompt
12059 (or (and (car org-refile-history)
12060 (concat " (default " (car org-refile-history) ")"))
12061 (and (assoc cbnex tbl) (setq cdef cbnex)
12062 (concat " (default " cbnex ")"))) ": "))
12063 pa answ parent-target child parent old-hist)
12064 (setq old-hist org-refile-history)
12065 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12066 nil 'org-refile-history (or cdef (car org-refile-history))))
12067 (if (setq pa (org-refile--get-location answ tbl))
12068 (progn
12069 (org-refile-check-position pa)
12070 (when (or (not org-refile-history)
12071 (not (eq old-hist org-refile-history))
12072 (not (equal (car pa) (car org-refile-history))))
12073 (setq org-refile-history
12074 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12075 org-refile-history
12076 (cdr org-refile-history))))
12077 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12078 (pop org-refile-history)))
12080 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12081 (progn
12082 (setq parent (match-string 1 answ)
12083 child (match-string 2 answ))
12084 (setq parent-target (org-refile--get-location parent tbl))
12085 (when (and parent-target
12086 (or (eq new-nodes t)
12087 (and (eq new-nodes 'confirm)
12088 (y-or-n-p (format "Create new node \"%s\"? "
12089 child)))))
12090 (org-refile-new-child parent-target child)))
12091 (user-error "Invalid target location")))))
12093 (declare-function org-string-nw-p "org-macs" (s))
12094 (defun org-refile-check-position (refile-pointer)
12095 "Check if the refile pointer matches the headline to which it points."
12096 (let* ((file (nth 1 refile-pointer))
12097 (re (nth 2 refile-pointer))
12098 (pos (nth 3 refile-pointer))
12099 buffer)
12100 (if (and (not (markerp pos)) (not file))
12101 (user-error "Please indicate a target file in the refile path")
12102 (when (org-string-nw-p re)
12103 (setq buffer (if (markerp pos)
12104 (marker-buffer pos)
12105 (or (find-buffer-visiting file)
12106 (find-file-noselect file))))
12107 (with-current-buffer buffer
12108 (save-excursion
12109 (save-restriction
12110 (widen)
12111 (goto-char pos)
12112 (beginning-of-line 1)
12113 (unless (org-looking-at-p re)
12114 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12116 (defun org-refile-new-child (parent-target child)
12117 "Use refile target PARENT-TARGET to add new CHILD below it."
12118 (unless parent-target
12119 (error "Cannot find parent for new node"))
12120 (let ((file (nth 1 parent-target))
12121 (pos (nth 3 parent-target))
12122 level)
12123 (with-current-buffer (or (find-buffer-visiting file)
12124 (find-file-noselect file))
12125 (save-excursion
12126 (save-restriction
12127 (widen)
12128 (if pos
12129 (goto-char pos)
12130 (goto-char (point-max))
12131 (if (not (bolp)) (newline)))
12132 (when (looking-at org-outline-regexp)
12133 (setq level (funcall outline-level))
12134 (org-end-of-subtree t t))
12135 (org-back-over-empty-lines)
12136 (insert "\n" (make-string
12137 (if pos (org-get-valid-level level 1) 1) ?*)
12138 " " child "\n")
12139 (beginning-of-line 0)
12140 (list (concat (car parent-target) "/" child) file "" (point)))))))
12142 (defun org-olpath-completing-read (prompt collection &rest args)
12143 "Read an outline path like a file name."
12144 (let ((thetable collection)
12145 (org-completion-use-ido nil) ; does not work with ido.
12146 (org-completion-use-iswitchb nil)) ; or iswitchb
12147 (apply #'org-icompleting-read
12148 prompt
12149 (lambda (string predicate &optional flag)
12150 (cond
12151 ((eq flag nil) (try-completion string thetable))
12152 ((eq flag t)
12153 (let ((l (length string)))
12154 (mapcar (lambda (x)
12155 (let ((r (substring x l))
12156 (f (if (string-match " ([^)]*)$" x)
12157 (match-string 0 x)
12158 "")))
12159 (if (string-match "/" r)
12160 (concat string (substring r 0 (match-end 0)) f)
12161 x)))
12162 (all-completions string thetable predicate))))
12163 ;; Exact match?
12164 ((eq flag 'lambda) (assoc string thetable))))
12165 args)))
12167 ;;;; Dynamic blocks
12169 (defun org-find-dblock (name)
12170 "Find the first dynamic block with name NAME in the buffer.
12171 If not found, stay at current position and return nil."
12172 (let ((case-fold-search t) pos)
12173 (save-excursion
12174 (goto-char (point-min))
12175 (setq pos (and (re-search-forward
12176 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12177 (match-beginning 0))))
12178 (if pos (goto-char pos))
12179 pos))
12181 (defun org-create-dblock (plist)
12182 "Create a dynamic block section, with parameters taken from PLIST.
12183 PLIST must contain a :name entry which is used as the name of the block."
12184 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12185 (end-of-line 1)
12186 (newline))
12187 (let ((col (current-column))
12188 (name (plist-get plist :name)))
12189 (insert "#+BEGIN: " name)
12190 (while plist
12191 (if (eq (car plist) :name)
12192 (setq plist (cddr plist))
12193 (insert " " (prin1-to-string (pop plist)))))
12194 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12195 (beginning-of-line -2)))
12197 (defun org-prepare-dblock ()
12198 "Prepare dynamic block for refresh.
12199 This empties the block, puts the cursor at the insert position and returns
12200 the property list including an extra property :name with the block name."
12201 (unless (looking-at org-dblock-start-re)
12202 (user-error "Not at a dynamic block"))
12203 (let* ((begdel (1+ (match-end 0)))
12204 (name (org-no-properties (match-string 1)))
12205 (params (append (list :name name)
12206 (read (concat "(" (match-string 3) ")")))))
12207 (save-excursion
12208 (beginning-of-line 1)
12209 (skip-chars-forward " \t")
12210 (setq params (plist-put params :indentation-column (current-column))))
12211 (unless (re-search-forward org-dblock-end-re nil t)
12212 (error "Dynamic block not terminated"))
12213 (setq params
12214 (append params
12215 (list :content (buffer-substring
12216 begdel (match-beginning 0)))))
12217 (delete-region begdel (match-beginning 0))
12218 (goto-char begdel)
12219 (open-line 1)
12220 params))
12222 (defun org-map-dblocks (&optional command)
12223 "Apply COMMAND to all dynamic blocks in the current buffer.
12224 If COMMAND is not given, use `org-update-dblock'."
12225 (let ((cmd (or command 'org-update-dblock)))
12226 (save-excursion
12227 (goto-char (point-min))
12228 (while (re-search-forward org-dblock-start-re nil t)
12229 (goto-char (match-beginning 0))
12230 (save-excursion
12231 (condition-case nil
12232 (funcall cmd)
12233 (error (message "Error during update of dynamic block"))))
12234 (unless (re-search-forward org-dblock-end-re nil t)
12235 (error "Dynamic block not terminated"))))))
12237 (defun org-dblock-update (&optional arg)
12238 "User command for updating dynamic blocks.
12239 Update the dynamic block at point. With prefix ARG, update all dynamic
12240 blocks in the buffer."
12241 (interactive "P")
12242 (if arg
12243 (org-update-all-dblocks)
12244 (or (looking-at org-dblock-start-re)
12245 (org-beginning-of-dblock))
12246 (org-update-dblock)))
12248 (defun org-update-dblock ()
12249 "Update the dynamic block at point.
12250 This means to empty the block, parse for parameters and then call
12251 the correct writing function."
12252 (interactive)
12253 (save-excursion
12254 (let* ((win (selected-window))
12255 (pos (point))
12256 (line (org-current-line))
12257 (params (org-prepare-dblock))
12258 (name (plist-get params :name))
12259 (indent (plist-get params :indentation-column))
12260 (cmd (intern (concat "org-dblock-write:" name))))
12261 (message "Updating dynamic block `%s' at line %d..." name line)
12262 (funcall cmd params)
12263 (message "Updating dynamic block `%s' at line %d...done" name line)
12264 (goto-char pos)
12265 (when (and indent (> indent 0))
12266 (setq indent (make-string indent ?\ ))
12267 (save-excursion
12268 (select-window win)
12269 (org-beginning-of-dblock)
12270 (forward-line 1)
12271 (while (not (looking-at org-dblock-end-re))
12272 (insert indent)
12273 (beginning-of-line 2))
12274 (when (looking-at org-dblock-end-re)
12275 (and (looking-at "[ \t]+")
12276 (replace-match ""))
12277 (insert indent)))))))
12279 (defun org-beginning-of-dblock ()
12280 "Find the beginning of the dynamic block at point.
12281 Error if there is no such block at point."
12282 (let ((pos (point))
12283 beg)
12284 (end-of-line 1)
12285 (if (and (re-search-backward org-dblock-start-re nil t)
12286 (setq beg (match-beginning 0))
12287 (re-search-forward org-dblock-end-re nil t)
12288 (> (match-end 0) pos))
12289 (goto-char beg)
12290 (goto-char pos)
12291 (error "Not in a dynamic block"))))
12293 (defun org-update-all-dblocks ()
12294 "Update all dynamic blocks in the buffer.
12295 This function can be used in a hook."
12296 (interactive)
12297 (when (derived-mode-p 'org-mode)
12298 (org-map-dblocks 'org-update-dblock)))
12301 ;;;; Completion
12303 (declare-function org-export-backend-name "org-export" (cl-x))
12304 (declare-function org-export-backend-options "org-export" (cl-x))
12305 (defun org-get-export-keywords ()
12306 "Return a list of all currently understood export keywords.
12307 Export keywords include options, block names, attributes and
12308 keywords relative to each registered export back-end."
12309 (let (keywords)
12310 (dolist (backend
12311 (org-bound-and-true-p org-export-registered-backends)
12312 (delq nil keywords))
12313 ;; Back-end name (for keywords, like #+LATEX:)
12314 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12315 (dolist (option-entry (org-export-backend-options backend))
12316 ;; Back-end options.
12317 (push (nth 1 option-entry) keywords)))))
12319 (defconst org-options-keywords
12320 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12321 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12322 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12323 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12324 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12326 (defcustom org-structure-template-alist
12327 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12328 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12329 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12330 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12331 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12332 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12333 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12334 ("L" "#+LaTeX: ")
12335 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12336 ("H" "#+HTML: ")
12337 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12338 ("A" "#+ASCII: ")
12339 ("i" "#+INDEX: ?")
12340 ("I" "#+INCLUDE: %file ?"))
12341 "Structure completion elements.
12342 This is a list of abbreviation keys and values. The value gets inserted
12343 if you type `<' followed by the key and then press the completion key,
12344 usually `TAB'. %file will be replaced by a file name after prompting
12345 for the file using completion. The cursor will be placed at the position
12346 of the `?' in the template.
12347 There are two templates for each key, the first uses the original Org syntax,
12348 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12349 the default when the /org-mtags.el/ module has been loaded. See also the
12350 variable `org-mtags-prefer-muse-templates'."
12351 :group 'org-completion
12352 :type '(repeat
12353 (list
12354 (string :tag "Key")
12355 (string :tag "Template")))
12356 :version "25.1"
12357 :package-version '(Org . "8.3"))
12359 (defun org-try-structure-completion ()
12360 "Try to complete a structure template before point.
12361 This looks for strings like \"<e\" on an otherwise empty line and
12362 expands them."
12363 (let ((l (buffer-substring (point-at-bol) (point)))
12365 (when (and (looking-at "[ \t]*$")
12366 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12367 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12368 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12369 (match-beginning 1)) a)
12370 t)))
12372 (defun org-complete-expand-structure-template (start cell)
12373 "Expand a structure template."
12374 (let ((rpl (nth 1 cell))
12375 (ind ""))
12376 (delete-region start (point))
12377 (when (string-match "\\`[ \t]*#\\+" rpl)
12378 (cond
12379 ((bolp))
12380 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12381 (setq ind (buffer-substring (point-at-bol) (point))))
12382 (t (newline))))
12383 (setq start (point))
12384 (if (string-match "%file" rpl)
12385 (setq rpl (replace-match
12386 (concat
12387 "\""
12388 (save-match-data
12389 (abbreviate-file-name (read-file-name "Include file: ")))
12390 "\"")
12391 t t rpl)))
12392 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12393 (concat "\n" ind)))
12394 (insert rpl)
12395 (if (re-search-backward "\\?" start t) (delete-char 1))))
12397 ;;;; TODO, DEADLINE, Comments
12399 (defun org-toggle-comment ()
12400 "Change the COMMENT state of an entry."
12401 (interactive)
12402 (save-excursion
12403 (org-back-to-heading)
12404 (looking-at org-complex-heading-regexp)
12405 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12406 (skip-chars-forward " \t")
12407 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12408 (if (org-in-commented-heading-p t)
12409 (delete-region (point)
12410 (progn (search-forward " " (line-end-position) 'move)
12411 (skip-chars-forward " \t")
12412 (point)))
12413 (insert org-comment-string)
12414 (unless (eolp) (insert " ")))))
12416 (defvar org-last-todo-state-is-todo nil
12417 "This is non-nil when the last TODO state change led to a TODO state.
12418 If the last change removed the TODO tag or switched to DONE, then
12419 this is nil.")
12421 (defvar org-setting-tags nil) ; dynamically skipped
12423 (defvar org-todo-setup-filter-hook nil
12424 "Hook for functions that pre-filter todo specs.
12425 Each function takes a todo spec and returns either nil or the spec
12426 transformed into canonical form." )
12428 (defvar org-todo-get-default-hook nil
12429 "Hook for functions that get a default item for todo.
12430 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12431 nil or a string to be used for the todo mark." )
12433 (defvar org-agenda-headline-snapshot-before-repeat)
12435 (defun org-current-effective-time ()
12436 "Return current time adjusted for `org-extend-today-until' variable."
12437 (let* ((ct (org-current-time))
12438 (dct (decode-time ct))
12439 (ct1
12440 (cond
12441 (org-use-last-clock-out-time-as-effective-time
12442 (or (org-clock-get-last-clock-out-time) ct))
12443 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12444 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12445 (t ct))))
12446 ct1))
12448 (defun org-todo-yesterday (&optional arg)
12449 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12450 (interactive "P")
12451 (if (eq major-mode 'org-agenda-mode)
12452 (apply 'org-agenda-todo-yesterday arg)
12453 (let* ((org-use-effective-time t)
12454 (hour (third (decode-time
12455 (org-current-time))))
12456 (org-extend-today-until (1+ hour)))
12457 (org-todo arg))))
12459 (defvar org-block-entry-blocking ""
12460 "First entry preventing the TODO state change.")
12462 (defun org-cancel-repeater ()
12463 "Cancel a repeater by setting its numeric value to zero."
12464 (interactive)
12465 (save-excursion
12466 (org-back-to-heading t)
12467 (let ((bound1 (point))
12468 (bound0 (save-excursion (outline-next-heading) (point))))
12469 (when (re-search-forward
12470 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12471 org-deadline-time-regexp "\\)\\|\\("
12472 org-ts-regexp "\\)")
12473 bound0 t)
12474 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12475 (replace-match "0" t nil nil 1))))))
12477 (defun org-todo (&optional arg)
12478 "Change the TODO state of an item.
12479 The state of an item is given by a keyword at the start of the heading,
12480 like
12481 *** TODO Write paper
12482 *** DONE Call mom
12484 The different keywords are specified in the variable `org-todo-keywords'.
12485 By default the available states are \"TODO\" and \"DONE\".
12486 So for this example: when the item starts with TODO, it is changed to DONE.
12487 When it starts with DONE, the DONE is removed. And when neither TODO nor
12488 DONE are present, add TODO at the beginning of the heading.
12490 With \\[universal-argument] prefix arg, use completion to determine the new \
12491 state.
12492 With numeric prefix arg, switch to that state.
12493 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12494 keywords (nextset).
12495 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12496 With a numeric prefix arg of 0, inhibit note taking for the change.
12497 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12499 When called through ELisp, arg is also interpreted in the following way:
12500 'none -> empty state
12501 \"\"(empty string) -> switch to empty state
12502 'done -> switch to DONE
12503 'nextset -> switch to the next set of keywords
12504 'previousset -> switch to the previous set of keywords
12505 \"WAITING\" -> switch to the specified keyword, but only if it
12506 really is a member of `org-todo-keywords'."
12507 (interactive "P")
12508 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12509 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12510 'region-start-level 'region))
12511 org-loop-over-headlines-in-active-region)
12512 (org-map-entries
12513 `(org-todo ,arg)
12514 org-loop-over-headlines-in-active-region
12515 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12516 (if (equal arg '(16)) (setq arg 'nextset))
12517 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12518 (let ((org-blocker-hook org-blocker-hook)
12519 commentp
12520 case-fold-search)
12521 (when (equal arg '(64))
12522 (setq arg nil org-blocker-hook nil))
12523 (when (and org-blocker-hook
12524 (or org-inhibit-blocking
12525 (org-entry-get nil "NOBLOCKING")))
12526 (setq org-blocker-hook nil))
12527 (save-excursion
12528 (catch 'exit
12529 (org-back-to-heading t)
12530 (when (org-in-commented-heading-p t)
12531 (org-toggle-comment)
12532 (setq commentp t))
12533 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12534 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12535 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12536 (let* ((match-data (match-data))
12537 (startpos (point-at-bol))
12538 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12539 (org-log-done org-log-done)
12540 (org-log-repeat org-log-repeat)
12541 (org-todo-log-states org-todo-log-states)
12542 (org-inhibit-logging
12543 (if (equal arg 0)
12544 (progn (setq arg nil) 'note) org-inhibit-logging))
12545 (this (match-string 1))
12546 (hl-pos (match-beginning 0))
12547 (head (org-get-todo-sequence-head this))
12548 (ass (assoc head org-todo-kwd-alist))
12549 (interpret (nth 1 ass))
12550 (done-word (nth 3 ass))
12551 (final-done-word (nth 4 ass))
12552 (org-last-state (or this ""))
12553 (completion-ignore-case t)
12554 (member (member this org-todo-keywords-1))
12555 (tail (cdr member))
12556 (org-state (cond
12557 ((and org-todo-key-trigger
12558 (or (and (equal arg '(4))
12559 (eq org-use-fast-todo-selection 'prefix))
12560 (and (not arg) org-use-fast-todo-selection
12561 (not (eq org-use-fast-todo-selection
12562 'prefix)))))
12563 ;; Use fast selection
12564 (org-fast-todo-selection))
12565 ((and (equal arg '(4))
12566 (or (not org-use-fast-todo-selection)
12567 (not org-todo-key-trigger)))
12568 ;; Read a state with completion
12569 (org-icompleting-read
12570 "State: " (mapcar 'list org-todo-keywords-1)
12571 nil t))
12572 ((eq arg 'right)
12573 (if this
12574 (if tail (car tail) nil)
12575 (car org-todo-keywords-1)))
12576 ((eq arg 'left)
12577 (if (equal member org-todo-keywords-1)
12579 (if this
12580 (nth (- (length org-todo-keywords-1)
12581 (length tail) 2)
12582 org-todo-keywords-1)
12583 (org-last org-todo-keywords-1))))
12584 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12585 (setq arg nil))) ; hack to fall back to cycling
12586 (arg
12587 ;; user or caller requests a specific state
12588 (cond
12589 ((equal arg "") nil)
12590 ((eq arg 'none) nil)
12591 ((eq arg 'done) (or done-word (car org-done-keywords)))
12592 ((eq arg 'nextset)
12593 (or (car (cdr (member head org-todo-heads)))
12594 (car org-todo-heads)))
12595 ((eq arg 'previousset)
12596 (let ((org-todo-heads (reverse org-todo-heads)))
12597 (or (car (cdr (member head org-todo-heads)))
12598 (car org-todo-heads))))
12599 ((car (member arg org-todo-keywords-1)))
12600 ((stringp arg)
12601 (user-error "State `%s' not valid in this file" arg))
12602 ((nth (1- (prefix-numeric-value arg))
12603 org-todo-keywords-1))))
12604 ((null member) (or head (car org-todo-keywords-1)))
12605 ((equal this final-done-word) nil) ;; -> make empty
12606 ((null tail) nil) ;; -> first entry
12607 ((memq interpret '(type priority))
12608 (if (eq this-command last-command)
12609 (car tail)
12610 (if (> (length tail) 0)
12611 (or done-word (car org-done-keywords))
12612 nil)))
12614 (car tail))))
12615 (org-state (or
12616 (run-hook-with-args-until-success
12617 'org-todo-get-default-hook org-state org-last-state)
12618 org-state))
12619 (next (if org-state (concat " " org-state " ") " "))
12620 (change-plist (list :type 'todo-state-change :from this :to org-state
12621 :position startpos))
12622 dolog now-done-p)
12623 (when org-blocker-hook
12624 (setq org-last-todo-state-is-todo
12625 (not (member this org-done-keywords)))
12626 (unless (save-excursion
12627 (save-match-data
12628 (org-with-wide-buffer
12629 (run-hook-with-args-until-failure
12630 'org-blocker-hook change-plist))))
12631 (if (org-called-interactively-p 'interactive)
12632 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12633 this org-state org-block-entry-blocking)
12634 ;; fail silently
12635 (message "TODO state change from %s to %s blocked (by \"%s\")"
12636 this org-state org-block-entry-blocking)
12637 (throw 'exit nil))))
12638 (store-match-data match-data)
12639 (replace-match next t t)
12640 (cond ((equal this org-state)
12641 (message "TODO state was already %s" (org-trim next)))
12642 ((pos-visible-in-window-p hl-pos)
12643 (message "TODO state changed to %s" (org-trim next))))
12644 (unless head
12645 (setq head (org-get-todo-sequence-head org-state)
12646 ass (assoc head org-todo-kwd-alist)
12647 interpret (nth 1 ass)
12648 done-word (nth 3 ass)
12649 final-done-word (nth 4 ass)))
12650 (when (memq arg '(nextset previousset))
12651 (message "Keyword-Set %d/%d: %s"
12652 (- (length org-todo-sets) -1
12653 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12654 (length org-todo-sets)
12655 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12656 (setq org-last-todo-state-is-todo
12657 (not (member org-state org-done-keywords)))
12658 (setq now-done-p (and (member org-state org-done-keywords)
12659 (not (member this org-done-keywords))))
12660 (and logging (org-local-logging logging))
12661 (when (and (or org-todo-log-states org-log-done)
12662 (not (eq org-inhibit-logging t))
12663 (not (memq arg '(nextset previousset))))
12664 ;; we need to look at recording a time and note
12665 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12666 (nth 2 (assoc this org-todo-log-states))))
12667 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12668 (setq dolog 'time))
12669 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12670 (and org-state
12671 (member org-state org-not-done-keywords)
12672 (not (member this org-not-done-keywords))))
12673 ;; This is now a todo state and was not one before
12674 ;; If there was a CLOSED time stamp, get rid of it.
12675 (org-add-planning-info nil nil 'closed))
12676 (when (and now-done-p org-log-done)
12677 ;; It is now done, and it was not done before
12678 (org-add-planning-info 'closed (org-current-effective-time))
12679 (if (and (not dolog) (eq 'note org-log-done))
12680 (org-add-log-setup 'done org-state this 'findpos 'note)))
12681 (when (and org-state dolog)
12682 ;; This is a non-nil state, and we need to log it
12683 (org-add-log-setup 'state org-state this 'findpos dolog)))
12684 ;; Fixup tag positioning
12685 (org-todo-trigger-tag-changes org-state)
12686 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12687 (when org-provide-todo-statistics
12688 (org-update-parent-todo-statistics))
12689 (run-hooks 'org-after-todo-state-change-hook)
12690 (if (and arg (not (member org-state org-done-keywords)))
12691 (setq head (org-get-todo-sequence-head org-state)))
12692 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12693 ;; Do we need to trigger a repeat?
12694 (when now-done-p
12695 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12696 ;; This is for the agenda, take a snapshot of the headline.
12697 (save-match-data
12698 (setq org-agenda-headline-snapshot-before-repeat
12699 (org-get-heading))))
12700 (org-auto-repeat-maybe org-state))
12701 ;; Fixup cursor location if close to the keyword
12702 (if (and (outline-on-heading-p)
12703 (not (bolp))
12704 (save-excursion (beginning-of-line 1)
12705 (looking-at org-todo-line-regexp))
12706 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12707 (progn
12708 (goto-char (or (match-end 2) (match-end 1)))
12709 (and (looking-at " ") (just-one-space))))
12710 (when org-trigger-hook
12711 (save-excursion
12712 (run-hook-with-args 'org-trigger-hook change-plist)))
12713 (when commentp (org-toggle-comment))))))))
12715 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12716 "Block turning an entry into a TODO, using the hierarchy.
12717 This checks whether the current task should be blocked from state
12718 changes. Such blocking occurs when:
12720 1. The task has children which are not all in a completed state.
12722 2. A task has a parent with the property :ORDERED:, and there
12723 are siblings prior to the current task with incomplete
12724 status.
12726 3. The parent of the task is blocked because it has siblings that should
12727 be done first, or is child of a block grandparent TODO entry."
12729 (if (not org-enforce-todo-dependencies)
12730 t ; if locally turned off don't block
12731 (catch 'dont-block
12732 ;; If this is not a todo state change, or if this entry is already DONE,
12733 ;; do not block
12734 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12735 (member (plist-get change-plist :from)
12736 (cons 'done org-done-keywords))
12737 (member (plist-get change-plist :to)
12738 (cons 'todo org-not-done-keywords))
12739 (not (plist-get change-plist :to)))
12740 (throw 'dont-block t))
12741 ;; If this task has children, and any are undone, it's blocked
12742 (save-excursion
12743 (org-back-to-heading t)
12744 (let ((this-level (funcall outline-level)))
12745 (outline-next-heading)
12746 (let ((child-level (funcall outline-level)))
12747 (while (and (not (eobp))
12748 (> child-level this-level))
12749 ;; this todo has children, check whether they are all
12750 ;; completed
12751 (if (and (not (org-entry-is-done-p))
12752 (org-entry-is-todo-p))
12753 (progn (setq org-block-entry-blocking (org-get-heading))
12754 (throw 'dont-block nil)))
12755 (outline-next-heading)
12756 (setq child-level (funcall outline-level))))))
12757 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12758 ;; any previous siblings are undone, it's blocked
12759 (save-excursion
12760 (org-back-to-heading t)
12761 (let* ((pos (point))
12762 (parent-pos (and (org-up-heading-safe) (point))))
12763 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12764 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12765 (forward-line 1)
12766 (re-search-forward org-not-done-heading-regexp pos t))
12767 (setq org-block-entry-blocking (match-string 0))
12768 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12769 ;; Search further up the hierarchy, to see if an ancestor is blocked
12770 (while t
12771 (goto-char parent-pos)
12772 (if (not (looking-at org-not-done-heading-regexp))
12773 (throw 'dont-block t)) ; do not block, parent is not a TODO
12774 (setq pos (point))
12775 (setq parent-pos (and (org-up-heading-safe) (point)))
12776 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12777 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12778 (forward-line 1)
12779 (re-search-forward org-not-done-heading-regexp pos t)
12780 (setq org-block-entry-blocking (org-get-heading)))
12781 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12783 (defcustom org-track-ordered-property-with-tag nil
12784 "Should the ORDERED property also be shown as a tag?
12785 The ORDERED property decides if an entry should require subtasks to be
12786 completed in sequence. Since a property is not very visible, setting
12787 this option means that toggling the ORDERED property with the command
12788 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12789 not relevant for the behavior, but it makes things more visible.
12791 Note that toggling the tag with tags commands will not change the property
12792 and therefore not influence behavior!
12794 This can be t, meaning the tag ORDERED should be used, It can also be a
12795 string to select a different tag for this task."
12796 :group 'org-todo
12797 :type '(choice
12798 (const :tag "No tracking" nil)
12799 (const :tag "Track with ORDERED tag" t)
12800 (string :tag "Use other tag")))
12802 (defun org-toggle-ordered-property ()
12803 "Toggle the ORDERED property of the current entry.
12804 For better visibility, you can track the value of this property with a tag.
12805 See variable `org-track-ordered-property-with-tag'."
12806 (interactive)
12807 (let* ((t1 org-track-ordered-property-with-tag)
12808 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12809 (save-excursion
12810 (org-back-to-heading)
12811 (if (org-entry-get nil "ORDERED")
12812 (progn
12813 (org-delete-property "ORDERED")
12814 (and tag (org-toggle-tag tag 'off))
12815 (message "Subtasks can be completed in arbitrary order"))
12816 (org-entry-put nil "ORDERED" "t")
12817 (and tag (org-toggle-tag tag 'on))
12818 (message "Subtasks must be completed in sequence")))))
12820 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12821 (defun org-block-todo-from-checkboxes (change-plist)
12822 "Block turning an entry into a TODO, using checkboxes.
12823 This checks whether the current task should be blocked from state
12824 changes because there are unchecked boxes in this entry."
12825 (if (not org-enforce-todo-checkbox-dependencies)
12826 t ; if locally turned off don't block
12827 (catch 'dont-block
12828 ;; If this is not a todo state change, or if this entry is already DONE,
12829 ;; do not block
12830 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12831 (member (plist-get change-plist :from)
12832 (cons 'done org-done-keywords))
12833 (member (plist-get change-plist :to)
12834 (cons 'todo org-not-done-keywords))
12835 (not (plist-get change-plist :to)))
12836 (throw 'dont-block t))
12837 ;; If this task has checkboxes that are not checked, it's blocked
12838 (save-excursion
12839 (org-back-to-heading t)
12840 (let ((beg (point)) end)
12841 (outline-next-heading)
12842 (setq end (point))
12843 (goto-char beg)
12844 (if (org-list-search-forward
12845 (concat (org-item-beginning-re)
12846 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12847 "\\[[- ]\\]")
12848 end t)
12849 (progn
12850 (if (boundp 'org-blocked-by-checkboxes)
12851 (setq org-blocked-by-checkboxes t))
12852 (throw 'dont-block nil)))))
12853 t))) ; do not block
12855 (defun org-entry-blocked-p ()
12856 "Non-nil if entry at point is blocked."
12857 (and (not (org-entry-get nil "NOBLOCKING"))
12858 (member (org-entry-get nil "TODO") org-not-done-keywords)
12859 (not (run-hook-with-args-until-failure
12860 'org-blocker-hook
12861 (list :type 'todo-state-change
12862 :position (point)
12863 :from 'todo
12864 :to 'done)))))
12866 (defun org-update-statistics-cookies (all)
12867 "Update the statistics cookie, either from TODO or from checkboxes.
12868 This should be called with the cursor in a line with a statistics cookie."
12869 (interactive "P")
12870 (if all
12871 (progn
12872 (org-update-checkbox-count 'all)
12873 (org-map-entries 'org-update-parent-todo-statistics))
12874 (if (not (org-at-heading-p))
12875 (org-update-checkbox-count)
12876 (let ((pos (point-marker))
12877 end l1 l2)
12878 (ignore-errors (org-back-to-heading t))
12879 (if (not (org-at-heading-p))
12880 (org-update-checkbox-count)
12881 (setq l1 (org-outline-level))
12882 (setq end (save-excursion
12883 (outline-next-heading)
12884 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12885 (point)))
12886 (if (and (save-excursion
12887 (re-search-forward
12888 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12889 (not (save-excursion (re-search-forward
12890 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12891 (org-update-checkbox-count)
12892 (if (and l2 (> l2 l1))
12893 (progn
12894 (goto-char end)
12895 (org-update-parent-todo-statistics))
12896 (goto-char pos)
12897 (beginning-of-line 1)
12898 (while (re-search-forward
12899 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12900 (point-at-eol) t)
12901 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12902 (goto-char pos)
12903 (move-marker pos nil)))))
12905 (defvar org-entry-property-inherited-from) ;; defined below
12906 (defun org-update-parent-todo-statistics ()
12907 "Update any statistics cookie in the parent of the current headline.
12908 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12909 the entire subtree and this will travel up the hierarchy and update
12910 statistics everywhere."
12911 (let* ((prop (save-excursion (org-up-heading-safe)
12912 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12913 (recursive (or (not org-hierarchical-todo-statistics)
12914 (and prop (string-match "\\<recursive\\>" prop))))
12915 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12917 (first t)
12918 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12919 level ltoggle l1 new ndel
12920 (cnt-all 0) (cnt-done 0) is-percent kwd
12921 checkbox-beg ov ovs ove cookie-present)
12922 (catch 'exit
12923 (save-excursion
12924 (beginning-of-line 1)
12925 (setq ltoggle (funcall outline-level))
12926 ;; Three situations are to consider:
12928 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12929 ;; to the top-level ancestor on the headline;
12931 ;; 2. If parent has "recursive" property, repeat up to the
12932 ;; headline setting that property, taking inheritance into
12933 ;; account;
12935 ;; 3. Else, move up to direct parent and proceed only once.
12936 (while (and (setq level (org-up-heading-safe))
12937 (or recursive first)
12938 (>= (point) lim))
12939 (setq first nil cookie-present nil)
12940 (unless (and level
12941 (not (string-match
12942 "\\<checkbox\\>"
12943 (downcase (or (org-entry-get nil "COOKIE_DATA")
12944 "")))))
12945 (throw 'exit nil))
12946 (while (re-search-forward box-re (point-at-eol) t)
12947 (setq cnt-all 0 cnt-done 0 cookie-present t)
12948 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12949 (save-match-data
12950 (unless (outline-next-heading) (throw 'exit nil))
12951 (while (and (looking-at org-complex-heading-regexp)
12952 (> (setq l1 (length (match-string 1))) level))
12953 (setq kwd (and (or recursive (= l1 ltoggle))
12954 (match-string 2)))
12955 (if (or (eq org-provide-todo-statistics 'all-headlines)
12956 (and (eq org-provide-todo-statistics t)
12957 (or (member kwd org-done-keywords)))
12958 (and (listp org-provide-todo-statistics)
12959 (stringp (car org-provide-todo-statistics))
12960 (or (member kwd org-provide-todo-statistics)
12961 (member kwd org-done-keywords)))
12962 (and (listp org-provide-todo-statistics)
12963 (listp (car org-provide-todo-statistics))
12964 (or (member kwd (car org-provide-todo-statistics))
12965 (and (member kwd org-done-keywords)
12966 (member kwd (cadr org-provide-todo-statistics))))))
12967 (setq cnt-all (1+ cnt-all))
12968 (if (eq org-provide-todo-statistics t)
12969 (and kwd (setq cnt-all (1+ cnt-all)))))
12970 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12971 (member kwd org-done-keywords))
12972 (and (listp org-provide-todo-statistics)
12973 (listp (car org-provide-todo-statistics))
12974 (member kwd org-done-keywords)
12975 (member kwd (cadr org-provide-todo-statistics)))
12976 (and (listp org-provide-todo-statistics)
12977 (stringp (car org-provide-todo-statistics))
12978 (member kwd org-done-keywords)))
12979 (setq cnt-done (1+ cnt-done)))
12980 (outline-next-heading)))
12981 (setq new
12982 (if is-percent
12983 (format "[%d%%]" (floor (* 100.0 cnt-done)
12984 (max 1 cnt-all)))
12985 (format "[%d/%d]" cnt-done cnt-all))
12986 ndel (- (match-end 0) checkbox-beg))
12987 ;; handle overlays when updating cookie from column view
12988 (when (setq ov (car (overlays-at checkbox-beg)))
12989 (setq ovs (overlay-start ov) ove (overlay-end ov))
12990 (delete-overlay ov))
12991 (goto-char checkbox-beg)
12992 (insert new)
12993 (delete-region (point) (+ (point) ndel))
12994 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12995 (when ov (move-overlay ov ovs ove)))
12996 (when cookie-present
12997 (run-hook-with-args 'org-after-todo-statistics-hook
12998 cnt-done (- cnt-all cnt-done))))))
12999 (run-hooks 'org-todo-statistics-hook)))
13001 (defvar org-after-todo-statistics-hook nil
13002 "Hook that is called after a TODO statistics cookie has been updated.
13003 Each function is called with two arguments: the number of not-done entries
13004 and the number of done entries.
13006 For example, the following function, when added to this hook, will switch
13007 an entry to DONE when all children are done, and back to TODO when new
13008 entries are set to a TODO status. Note that this hook is only called
13009 when there is a statistics cookie in the headline!
13011 (defun org-summary-todo (n-done n-not-done)
13012 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13013 (let (org-log-done org-log-states) ; turn off logging
13014 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13017 (defvar org-todo-statistics-hook nil
13018 "Hook that is run whenever Org thinks TODO statistics should be updated.
13019 This hook runs even if there is no statistics cookie present, in which case
13020 `org-after-todo-statistics-hook' would not run.")
13022 (defun org-todo-trigger-tag-changes (state)
13023 "Apply the changes defined in `org-todo-state-tags-triggers'."
13024 (let ((l org-todo-state-tags-triggers)
13025 changes)
13026 (when (or (not state) (equal state ""))
13027 (setq changes (append changes (cdr (assoc "" l)))))
13028 (when (and (stringp state) (> (length state) 0))
13029 (setq changes (append changes (cdr (assoc state l)))))
13030 (when (member state org-not-done-keywords)
13031 (setq changes (append changes (cdr (assoc 'todo l)))))
13032 (when (member state org-done-keywords)
13033 (setq changes (append changes (cdr (assoc 'done l)))))
13034 (dolist (c changes)
13035 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13037 (defun org-local-logging (value)
13038 "Get logging settings from a property VALUE."
13039 ;; Directly set the variables, they are already local.
13040 (setq org-log-done nil
13041 org-log-repeat nil
13042 org-todo-log-states nil)
13043 (dolist (w (org-split-string value))
13044 (let (a)
13045 (cond
13046 ((setq a (assoc w org-startup-options))
13047 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13048 (set (nth 1 a) (nth 2 a))))
13049 ((setq a (org-extract-log-state-settings w))
13050 (and (member (car a) org-todo-keywords-1)
13051 (push a org-todo-log-states)))))))
13053 (defun org-get-todo-sequence-head (kwd)
13054 "Return the head of the TODO sequence to which KWD belongs.
13055 If KWD is not set, check if there is a text property remembering the
13056 right sequence."
13057 (let (p)
13058 (cond
13059 ((not kwd)
13060 (or (get-text-property (point-at-bol) 'org-todo-head)
13061 (progn
13062 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13063 nil (point-at-eol)))
13064 (get-text-property p 'org-todo-head))))
13065 ((not (member kwd org-todo-keywords-1))
13066 (car org-todo-keywords-1))
13067 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13069 (defun org-fast-todo-selection ()
13070 "Fast TODO keyword selection with single keys.
13071 Returns the new TODO keyword, or nil if no state change should occur."
13072 (let* ((fulltable org-todo-key-alist)
13073 (done-keywords org-done-keywords) ;; needed for the faces.
13074 (maxlen (apply 'max (mapcar
13075 (lambda (x)
13076 (if (stringp (car x)) (string-width (car x)) 0))
13077 fulltable)))
13078 (expert nil)
13079 (fwidth (+ maxlen 3 1 3))
13080 (ncol (/ (- (window-width) 4) fwidth))
13081 tg cnt e c tbl
13082 groups ingroup)
13083 (save-excursion
13084 (save-window-excursion
13085 (if expert
13086 (set-buffer (get-buffer-create " *Org todo*"))
13087 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13088 (erase-buffer)
13089 (org-set-local 'org-done-keywords done-keywords)
13090 (setq tbl fulltable cnt 0)
13091 (while (setq e (pop tbl))
13092 (cond
13093 ((equal e '(:startgroup))
13094 (push '() groups) (setq ingroup t)
13095 (when (not (= cnt 0))
13096 (setq cnt 0)
13097 (insert "\n"))
13098 (insert "{ "))
13099 ((equal e '(:endgroup))
13100 (setq ingroup nil cnt 0)
13101 (insert "}\n"))
13102 ((equal e '(:newline))
13103 (when (not (= cnt 0))
13104 (setq cnt 0)
13105 (insert "\n")
13106 (setq e (car tbl))
13107 (while (equal (car tbl) '(:newline))
13108 (insert "\n")
13109 (setq tbl (cdr tbl)))))
13111 (setq tg (car e) c (cdr e))
13112 (if ingroup (push tg (car groups)))
13113 (setq tg (org-add-props tg nil 'face
13114 (org-get-todo-face tg)))
13115 (if (and (= cnt 0) (not ingroup)) (insert " "))
13116 (insert "[" c "] " tg (make-string
13117 (- fwidth 4 (length tg)) ?\ ))
13118 (when (= (setq cnt (1+ cnt)) ncol)
13119 (insert "\n")
13120 (if ingroup (insert " "))
13121 (setq cnt 0)))))
13122 (insert "\n")
13123 (goto-char (point-min))
13124 (if (not expert) (org-fit-window-to-buffer))
13125 (message "[a-z..]:Set [SPC]:clear")
13126 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13127 (cond
13128 ((or (= c ?\C-g)
13129 (and (= c ?q) (not (rassoc c fulltable))))
13130 (setq quit-flag t))
13131 ((= c ?\ ) nil)
13132 ((setq e (rassoc c fulltable) tg (car e))
13134 (t (setq quit-flag t)))))))
13136 (defun org-entry-is-todo-p ()
13137 (member (org-get-todo-state) org-not-done-keywords))
13139 (defun org-entry-is-done-p ()
13140 (member (org-get-todo-state) org-done-keywords))
13142 (defun org-get-todo-state ()
13143 "Return the TODO keyword of the current subtree."
13144 (save-excursion
13145 (org-back-to-heading t)
13146 (and (looking-at org-todo-line-regexp)
13147 (match-end 2)
13148 (match-string 2))))
13150 (defun org-at-date-range-p (&optional inactive-ok)
13151 "Non-nil if point is inside a date range.
13153 When optional argument INACTIVE-OK is non-nil, also consider
13154 inactive time ranges.
13156 When this function returns a non-nil value, match data is set
13157 according to `org-tr-regexp-both' or `org-tr-regexp', depending
13158 on INACTIVE-OK."
13159 (interactive)
13160 (save-excursion
13161 (catch 'exit
13162 (let ((pos (point)))
13163 (skip-chars-backward "^[<\r\n")
13164 (skip-chars-backward "<[")
13165 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13166 (>= (match-end 0) pos)
13167 (throw 'exit t))
13168 (skip-chars-backward "^<[\r\n")
13169 (skip-chars-backward "<[")
13170 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13171 (>= (match-end 0) pos)
13172 (throw 'exit t)))
13173 nil)))
13175 (defun org-get-repeat (&optional tagline)
13176 "Check if there is a deadline/schedule with repeater in this entry."
13177 (save-match-data
13178 (save-excursion
13179 (org-back-to-heading t)
13180 (and (re-search-forward (if tagline
13181 (concat tagline "\\s-*" org-repeat-re)
13182 org-repeat-re)
13183 (org-entry-end-position) t)
13184 (match-string-no-properties 1)))))
13186 (defvar org-last-changed-timestamp)
13187 (defvar org-last-inserted-timestamp)
13188 (defvar org-log-post-message)
13189 (defvar org-log-note-purpose)
13190 (defvar org-log-note-how nil)
13191 (defvar org-log-note-extra)
13192 (defun org-auto-repeat-maybe (done-word)
13193 "Check if the current headline contains a repeated deadline/schedule.
13194 If yes, set TODO state back to what it was and change the base date
13195 of repeating deadline/scheduled time stamps to new date.
13196 This function is run automatically after each state change to a DONE state."
13197 ;; last-state is dynamically scoped into this function
13198 (let* ((repeat (org-get-repeat))
13199 (aa (assoc org-last-state org-todo-kwd-alist))
13200 (interpret (nth 1 aa))
13201 (head (nth 2 aa))
13202 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13203 (msg "Entry repeats: ")
13204 (org-log-done nil)
13205 (org-todo-log-states nil)
13206 re type n what ts time to-state)
13207 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13208 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13209 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13210 org-todo-repeat-to-state))
13211 (unless (and to-state (member to-state org-todo-keywords-1))
13212 (setq to-state (if (eq interpret 'type) org-last-state head)))
13213 (org-todo to-state)
13214 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13215 (org-entry-put nil "LAST_REPEAT" (format-time-string
13216 (org-time-stamp-format t t))))
13217 (when org-log-repeat
13218 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13219 (memq 'org-add-log-note post-command-hook))
13220 ;; OK, we are already setup for some record
13221 (if (eq org-log-repeat 'note)
13222 ;; make sure we take a note, not only a time stamp
13223 (setq org-log-note-how 'note))
13224 ;; Set up for taking a record
13225 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13226 org-last-state
13227 'findpos org-log-repeat)))
13228 (org-back-to-heading t)
13229 (org-add-planning-info nil nil 'closed)
13230 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13231 org-deadline-time-regexp "\\)\\|\\("
13232 org-ts-regexp "\\)"))
13233 (while (re-search-forward
13234 re (save-excursion (outline-next-heading) (point)) t)
13235 (setq type (if (match-end 1) org-scheduled-string
13236 (if (match-end 3) org-deadline-string "Plain:"))
13237 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13238 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13239 (setq n (string-to-number (match-string 2 ts))
13240 what (match-string 3 ts))
13241 (if (equal what "w") (setq n (* n 7) what "d"))
13242 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13243 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13244 ;; Preparation, see if we need to modify the start date for the change
13245 (when (match-end 1)
13246 (setq time (save-match-data (org-time-string-to-time ts)))
13247 (cond
13248 ((equal (match-string 1 ts) ".")
13249 ;; Shift starting date to today
13250 (org-timestamp-change
13251 (- (org-today) (time-to-days time))
13252 'day))
13253 ((equal (match-string 1 ts) "+")
13254 (let ((nshiftmax 10) (nshift 0))
13255 (while (or (= nshift 0)
13256 (<= (time-to-days time)
13257 (time-to-days (current-time))))
13258 (when (= (incf nshift) nshiftmax)
13259 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13260 (user-error "Abort")))
13261 (org-timestamp-change n (cdr (assoc what whata)))
13262 (org-at-timestamp-p t)
13263 (setq ts (match-string 1))
13264 (setq time (save-match-data (org-time-string-to-time ts)))))
13265 (org-timestamp-change (- n) (cdr (assoc what whata)))
13266 ;; rematch, so that we have everything in place for the real shift
13267 (org-at-timestamp-p t)
13268 (setq ts (match-string 1))
13269 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13270 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13271 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13272 (setq org-log-post-message msg)
13273 (message "%s" msg))))
13275 (defun org-show-todo-tree (arg)
13276 "Make a compact tree which shows all headlines marked with TODO.
13277 The tree will show the lines where the regexp matches, and all higher
13278 headlines above the match.
13279 With a \\[universal-argument] prefix, prompt for a regexp to match.
13280 With a numeric prefix N, construct a sparse tree for the Nth element
13281 of `org-todo-keywords-1'."
13282 (interactive "P")
13283 (let ((case-fold-search nil)
13284 (kwd-re
13285 (cond ((null arg) org-not-done-regexp)
13286 ((equal arg '(4))
13287 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13288 (mapcar 'list org-todo-keywords-1))))
13289 (concat "\\("
13290 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13291 "\\)\\>")))
13292 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13293 (regexp-quote (nth (1- (prefix-numeric-value arg))
13294 org-todo-keywords-1)))
13295 (t (user-error "Invalid prefix argument: %s" arg)))))
13296 (message "%d TODO entries found"
13297 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13299 (defun org-deadline (arg &optional time)
13300 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13301 With one universal prefix argument, remove any deadline from the item.
13302 With two universal prefix arguments, prompt for a warning delay.
13303 With argument TIME, set the deadline at the corresponding date. TIME
13304 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13305 (interactive "P")
13306 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13307 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13308 'region-start-level 'region))
13309 org-loop-over-headlines-in-active-region)
13310 (org-map-entries
13311 `(org-deadline ',arg ,time)
13312 org-loop-over-headlines-in-active-region
13313 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13314 (let* ((old-date (org-entry-get nil "DEADLINE"))
13315 (old-date-time (if old-date (org-time-string-to-time old-date)))
13316 (repeater (and old-date
13317 (string-match
13318 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13319 old-date)
13320 (match-string 1 old-date))))
13321 (cond
13322 ((equal arg '(4))
13323 (when (and old-date org-log-redeadline)
13324 (org-add-log-setup 'deldeadline nil old-date 'findpos
13325 org-log-redeadline))
13326 (org-remove-timestamp-with-keyword org-deadline-string)
13327 (message "Item no longer has a deadline."))
13328 ((equal arg '(16))
13329 (save-excursion
13330 (org-back-to-heading t)
13331 (if (re-search-forward
13332 org-deadline-time-regexp
13333 (save-excursion (outline-next-heading) (point)) t)
13334 (let* ((rpl0 (match-string 1))
13335 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13336 (replace-match
13337 (concat org-deadline-string
13338 " <" rpl
13339 (format " -%dd"
13340 (abs
13341 (- (time-to-days
13342 (save-match-data
13343 (org-read-date nil t nil "Warn starting from" old-date-time)))
13344 (time-to-days old-date-time))))
13345 ">") t t))
13346 (user-error "No deadline information to update"))))
13348 (org-add-planning-info 'deadline time 'closed)
13349 (when (and old-date org-log-redeadline
13350 (not (equal old-date
13351 (substring org-last-inserted-timestamp 1 -1))))
13352 (org-add-log-setup 'redeadline nil old-date 'findpos
13353 org-log-redeadline))
13354 (when repeater
13355 (save-excursion
13356 (org-back-to-heading t)
13357 (when (re-search-forward (concat org-deadline-string " "
13358 org-last-inserted-timestamp)
13359 (save-excursion
13360 (outline-next-heading) (point)) t)
13361 (goto-char (1- (match-end 0)))
13362 (insert " " repeater)
13363 (setq org-last-inserted-timestamp
13364 (concat (substring org-last-inserted-timestamp 0 -1)
13365 " " repeater
13366 (substring org-last-inserted-timestamp -1))))))
13367 (message "Deadline on %s" org-last-inserted-timestamp))))))
13369 (defun org-schedule (arg &optional time)
13370 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13371 With one universal prefix argument, remove any scheduling date from the item.
13372 With two universal prefix arguments, prompt for a delay cookie.
13373 With argument TIME, scheduled at the corresponding date. TIME can
13374 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13375 (interactive "P")
13376 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13377 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13378 'region-start-level 'region))
13379 org-loop-over-headlines-in-active-region)
13380 (org-map-entries
13381 `(org-schedule ',arg ,time)
13382 org-loop-over-headlines-in-active-region
13383 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13384 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13385 (old-date-time (if old-date (org-time-string-to-time old-date)))
13386 (repeater (and old-date
13387 (string-match
13388 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13389 old-date)
13390 (match-string 1 old-date))))
13391 (cond
13392 ((equal arg '(4))
13393 (progn
13394 (when (and old-date org-log-reschedule)
13395 (org-add-log-setup 'delschedule nil old-date 'findpos
13396 org-log-reschedule))
13397 (org-remove-timestamp-with-keyword org-scheduled-string)
13398 (message "Item is no longer scheduled.")))
13399 ((equal arg '(16))
13400 (save-excursion
13401 (org-back-to-heading t)
13402 (if (re-search-forward
13403 org-scheduled-time-regexp
13404 (save-excursion (outline-next-heading) (point)) t)
13405 (let* ((rpl0 (match-string 1))
13406 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13407 (replace-match
13408 (concat org-scheduled-string
13409 " <" rpl
13410 (format " -%dd"
13411 (abs
13412 (- (time-to-days
13413 (save-match-data
13414 (org-read-date nil t nil "Delay until" old-date-time)))
13415 (time-to-days old-date-time))))
13416 ">") t t))
13417 (user-error "No scheduled information to update"))))
13419 (org-add-planning-info 'scheduled time 'closed)
13420 (when (and old-date org-log-reschedule
13421 (not (equal old-date
13422 (substring org-last-inserted-timestamp 1 -1))))
13423 (org-add-log-setup 'reschedule nil old-date 'findpos
13424 org-log-reschedule))
13425 (when repeater
13426 (save-excursion
13427 (org-back-to-heading t)
13428 (when (re-search-forward (concat org-scheduled-string " "
13429 org-last-inserted-timestamp)
13430 (save-excursion
13431 (outline-next-heading) (point)) t)
13432 (goto-char (1- (match-end 0)))
13433 (insert " " repeater)
13434 (setq org-last-inserted-timestamp
13435 (concat (substring org-last-inserted-timestamp 0 -1)
13436 " " repeater
13437 (substring org-last-inserted-timestamp -1))))))
13438 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13440 (defun org-get-scheduled-time (pom &optional inherit)
13441 "Get the scheduled time as a time tuple, of a format suitable
13442 for calling org-schedule with, or if there is no scheduling,
13443 returns nil."
13444 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13445 (when time
13446 (apply 'encode-time (org-parse-time-string time)))))
13448 (defun org-get-deadline-time (pom &optional inherit)
13449 "Get the deadline as a time tuple, of a format suitable for
13450 calling org-deadline with, or if there is no scheduling, returns
13451 nil."
13452 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13453 (when time
13454 (apply 'encode-time (org-parse-time-string time)))))
13456 (defun org-remove-timestamp-with-keyword (keyword)
13457 "Remove all time stamps with KEYWORD in the current entry."
13458 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13459 beg)
13460 (save-excursion
13461 (org-back-to-heading t)
13462 (setq beg (point))
13463 (outline-next-heading)
13464 (while (re-search-backward re beg t)
13465 (replace-match "")
13466 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13467 (equal (char-before) ?\ ))
13468 (backward-delete-char 1)
13469 (if (string-match "^[ \t]*$" (buffer-substring
13470 (point-at-bol) (point-at-eol)))
13471 (delete-region (point-at-bol)
13472 (min (point-max) (1+ (point-at-eol))))))))))
13474 (defvar org-time-was-given) ; dynamically scoped parameter
13475 (defvar org-end-time-was-given) ; dynamically scoped parameter
13477 (defun org-at-planning-p ()
13478 "Non-nil when point is on a planning info line."
13479 ;; This is as accurate and faster than `org-element-at-point' since
13480 ;; planning info location is fixed in the section.
13481 (org-with-wide-buffer
13482 (beginning-of-line)
13483 (and (org-looking-at-p org-planning-line-re)
13484 (eq (point)
13485 (ignore-errors
13486 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13487 (org-back-to-heading t)
13488 (org-with-limited-levels (org-back-to-heading t)))
13489 (line-beginning-position 2))))))
13491 (defun org-add-planning-info (what &optional time &rest remove)
13492 "Insert new timestamp with keyword in the planning line.
13493 WHAT indicates what kind of time stamp to add. It is a symbol
13494 among `closed', `deadline', `scheduled' and nil. TIME indicates
13495 the time to use. If none is given, the user is prompted for
13496 a date. REMOVE indicates what kind of entries to remove. An old
13497 WHAT entry will also be removed."
13498 (let (org-time-was-given org-end-time-was-given default-time default-input)
13499 (catch 'exit
13500 (when (and (memq what '(scheduled deadline))
13501 (or (not time)
13502 (and (stringp time)
13503 (string-match "^[-+]+[0-9]" time))))
13504 ;; Try to get a default date/time from existing timestamp
13505 (save-excursion
13506 (org-back-to-heading t)
13507 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13508 (when (re-search-forward (if (eq what 'scheduled)
13509 org-scheduled-time-regexp
13510 org-deadline-time-regexp)
13511 end t)
13512 (setq ts (match-string 1)
13513 default-time (apply 'encode-time (org-parse-time-string ts))
13514 default-input (and ts (org-get-compact-tod ts)))))))
13515 (when what
13516 (setq time
13517 (if (stringp time)
13518 ;; This is a string (relative or absolute), set
13519 ;; proper date.
13520 (apply #'encode-time
13521 (org-read-date-analyze
13522 time default-time (decode-time default-time)))
13523 ;; If necessary, get the time from the user
13524 (or time (org-read-date nil 'to-time nil nil
13525 default-time default-input)))))
13527 (org-with-wide-buffer
13528 (org-back-to-heading t)
13529 (forward-line)
13530 (unless (bolp) (insert "\n"))
13531 (cond ((org-looking-at-p org-planning-line-re)
13532 ;; Move to current indentation.
13533 (skip-chars-forward " \t")
13534 ;; Check if we have to remove something.
13535 (dolist (type (if what (cons what remove) remove))
13536 (save-excursion
13537 (when (re-search-forward
13538 (concat
13539 " *"
13540 (case type
13541 (closed org-closed-time-regexp)
13542 (deadline org-deadline-time-regexp)
13543 (scheduled org-scheduled-time-regexp)
13544 (otherwise
13545 (error "Invalid planning type: %s" type))))
13546 (line-end-position) t)
13547 (replace-match "")
13548 (when (looking-at "--+<[^>]+>") (replace-match ""))
13549 (when (and (not what) (eq type 'closed))
13550 (save-excursion
13551 (beginning-of-line)
13552 (when (looking-at "[ \t]*$")
13553 (delete-region (point)
13554 (line-beginning-position 2)))))))
13555 ;; Remove leading white spaces.
13556 (when (looking-at "[ \t]+") (replace-match ""))))
13557 ((not what) (throw 'exit nil)) ; Nothing to do.
13558 (t (insert-before-markers "\n")
13559 (backward-char 1)
13560 (when org-adapt-indentation
13561 (org-indent-to-column (1+ (org-outline-level))))))
13562 (when what
13563 ;; Insert planning keyword.
13564 (insert (case what
13565 (closed org-closed-string)
13566 (deadline org-deadline-string)
13567 (scheduled org-scheduled-string)
13568 (otherwise (error "Invalid planning type: %s" what)))
13569 " ")
13570 ;; Insert associated timestamp.
13571 (let ((ts (org-insert-time-stamp
13572 time
13573 (or org-time-was-given
13574 (and (eq what 'closed) org-log-done-with-time))
13575 (eq what 'closed)
13576 nil nil (list org-end-time-was-given))))
13577 (unless (eolp) (insert " "))
13578 ts))))))
13580 (defvar org-log-note-marker (make-marker))
13581 (defvar org-log-note-purpose nil)
13582 (defvar org-log-note-state nil)
13583 (defvar org-log-note-previous-state nil)
13584 (defvar org-log-note-extra nil)
13585 (defvar org-log-note-window-configuration nil)
13586 (defvar org-log-note-return-to (make-marker))
13587 (defvar org-log-note-effective-time nil
13588 "Remembered current time so that dynamically scoped
13589 `org-extend-today-until' affects tha timestamps in state change
13590 log")
13592 (defvar org-log-post-message nil
13593 "Message to be displayed after a log note has been stored.
13594 The auto-repeater uses this.")
13596 (defun org-add-note ()
13597 "Add a note to the current entry.
13598 This is done in the same way as adding a state change note."
13599 (interactive)
13600 (org-add-log-setup 'note nil nil 'findpos nil))
13602 (defun org-log-beginning (&optional create)
13603 "Return expected start of log notes in current entry.
13604 When optional argument CREATE is non-nil, the function creates
13605 a drawer to store notes, if necessary. Returned position ignores
13606 narrowing."
13607 (org-with-wide-buffer
13608 (org-end-of-meta-data)
13609 (let ((end (if (org-at-heading-p) (point)
13610 (save-excursion (outline-next-heading) (point))))
13611 (drawer (org-log-into-drawer)))
13612 (cond
13613 (drawer
13614 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13615 (case-fold-search t))
13616 (catch 'exit
13617 ;; Try to find existing drawer.
13618 (while (re-search-forward regexp end t)
13619 (let ((element (org-element-at-point)))
13620 (when (eq (org-element-type element) 'drawer)
13621 (let ((cend (org-element-property :contents-end element)))
13622 (when (and (not org-log-states-order-reversed) cend)
13623 (goto-char cend)))
13624 (throw 'exit nil))))
13625 ;; No drawer found. Create one, if permitted.
13626 (when create
13627 (unless (bolp) (insert "\n"))
13628 (let ((beg (point)))
13629 (insert ":" drawer ":\n:END:\n")
13630 (org-indent-region beg (point)))
13631 (end-of-line -1)))))
13632 (org-log-state-notes-insert-after-drawers
13633 (while (and (looking-at org-drawer-regexp)
13634 (progn (goto-char (match-end 0))
13635 (re-search-forward org-property-end-re end t)))
13636 (forward-line)))))
13637 (if (bolp) (point) (line-beginning-position 2))))
13639 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13640 "Set up the post command hook to take a note.
13641 If this is about to TODO state change, the new state is expected in STATE.
13642 When FINDPOS is non-nil, find the correct position for the note in
13643 the current entry. If not, assume that it can be inserted at point.
13644 HOW is an indicator what kind of note should be created.
13645 EXTRA is additional text that will be inserted into the notes buffer."
13646 (org-with-wide-buffer
13647 (when findpos
13648 (goto-char (org-log-beginning t))
13649 (unless org-log-states-order-reversed
13650 (org-skip-over-state-notes)
13651 (skip-chars-backward " \t\n\r")
13652 (forward-line)))
13653 (move-marker org-log-note-marker (point))
13654 ;; Preserve position even if a property drawer is inserted in the
13655 ;; process.
13656 (set-marker-insertion-type org-log-note-marker t)
13657 (setq org-log-note-purpose purpose
13658 org-log-note-state state
13659 org-log-note-previous-state prev-state
13660 org-log-note-how how
13661 org-log-note-extra extra
13662 org-log-note-effective-time (org-current-effective-time))
13663 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13665 (defun org-skip-over-state-notes ()
13666 "Skip past the list of State notes in an entry."
13667 (when (ignore-errors (goto-char (org-in-item-p)))
13668 (let* ((struct (org-list-struct))
13669 (prevs (org-list-prevs-alist struct))
13670 (regexp
13671 (concat "[ \t]*- +"
13672 (replace-regexp-in-string
13673 " +" " +"
13674 (org-replace-escapes
13675 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13676 `(("%d" . ,org-ts-regexp-inactive)
13677 ("%D" . ,org-ts-regexp)
13678 ("%s" . "\"\\S-+\"")
13679 ("%S" . "\"\\S-+\"")
13680 ("%t" . ,org-ts-regexp-inactive)
13681 ("%T" . ,org-ts-regexp)
13682 ("%u" . ".*?")
13683 ("%U" . ".*?")))))))
13684 (while (org-looking-at-p regexp)
13685 (goto-char (or (org-list-get-next-item (point) struct prevs)
13686 (org-list-get-item-end (point) struct)))))))
13688 (defun org-add-log-note (&optional purpose)
13689 "Pop up a window for taking a note, and add this note later at point."
13690 (remove-hook 'post-command-hook 'org-add-log-note)
13691 (setq org-log-note-window-configuration (current-window-configuration))
13692 (delete-other-windows)
13693 (move-marker org-log-note-return-to (point))
13694 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13695 (goto-char org-log-note-marker)
13696 (org-switch-to-buffer-other-window "*Org Note*")
13697 (erase-buffer)
13698 (if (memq org-log-note-how '(time state))
13699 (let (current-prefix-arg) (org-store-log-note))
13700 (let ((org-inhibit-startup t)) (org-mode))
13701 (insert (format "# Insert note for %s.
13702 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13703 (cond
13704 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13705 ((eq org-log-note-purpose 'done) "closed todo item")
13706 ((eq org-log-note-purpose 'state)
13707 (format "state change from \"%s\" to \"%s\""
13708 (or org-log-note-previous-state "")
13709 (or org-log-note-state "")))
13710 ((eq org-log-note-purpose 'reschedule)
13711 "rescheduling")
13712 ((eq org-log-note-purpose 'delschedule)
13713 "no longer scheduled")
13714 ((eq org-log-note-purpose 'redeadline)
13715 "changing deadline")
13716 ((eq org-log-note-purpose 'deldeadline)
13717 "removing deadline")
13718 ((eq org-log-note-purpose 'refile)
13719 "refiling")
13720 ((eq org-log-note-purpose 'note)
13721 "this entry")
13722 (t (error "This should not happen")))))
13723 (if org-log-note-extra (insert org-log-note-extra))
13724 (org-set-local 'org-finish-function 'org-store-log-note)
13725 (run-hooks 'org-log-buffer-setup-hook)))
13727 (defvar org-note-abort nil) ; dynamically scoped
13728 (defun org-store-log-note ()
13729 "Finish taking a log note, and insert it to where it belongs."
13730 (let ((txt (buffer-string)))
13731 (kill-buffer (current-buffer))
13732 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13733 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13734 (setq txt (replace-match "" t t txt)))
13735 (if (string-match "\\s-+\\'" txt)
13736 (setq txt (replace-match "" t t txt)))
13737 (setq lines (org-split-string txt "\n"))
13738 (when (and note (string-match "\\S-" note))
13739 (setq note
13740 (org-replace-escapes
13741 note
13742 (list (cons "%u" (user-login-name))
13743 (cons "%U" user-full-name)
13744 (cons "%t" (format-time-string
13745 (org-time-stamp-format 'long 'inactive)
13746 org-log-note-effective-time))
13747 (cons "%T" (format-time-string
13748 (org-time-stamp-format 'long nil)
13749 org-log-note-effective-time))
13750 (cons "%d" (format-time-string
13751 (org-time-stamp-format nil 'inactive)
13752 org-log-note-effective-time))
13753 (cons "%D" (format-time-string
13754 (org-time-stamp-format nil nil)
13755 org-log-note-effective-time))
13756 (cons "%s" (cond
13757 ((not org-log-note-state) "")
13758 ((org-string-match-p org-ts-regexp
13759 org-log-note-state)
13760 (format "\"[%s]\""
13761 (substring org-log-note-state 1 -1)))
13762 (t (format "\"%s\"" org-log-note-state))))
13763 (cons "%S"
13764 (cond
13765 ((not org-log-note-previous-state) "")
13766 ((org-string-match-p org-ts-regexp
13767 org-log-note-previous-state)
13768 (format "\"[%s]\""
13769 (substring
13770 org-log-note-previous-state 1 -1)))
13771 (t (format "\"%s\""
13772 org-log-note-previous-state)))))))
13773 (when lines (setq note (concat note " \\\\")))
13774 (push note lines))
13775 (when (or current-prefix-arg org-note-abort)
13776 (when (org-log-into-drawer)
13777 (org-remove-empty-drawer-at org-log-note-marker))
13778 (setq lines nil))
13779 (when lines
13780 (with-current-buffer (marker-buffer org-log-note-marker)
13781 (org-with-wide-buffer
13782 (goto-char org-log-note-marker)
13783 (move-marker org-log-note-marker nil)
13784 ;; Make sure point is at the beginning of an empty line.
13785 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13786 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13787 ;; In an existing list, add a new item at the top level.
13788 ;; Otherwise, indent line like a regular one.
13789 (let ((itemp (org-in-item-p)))
13790 (if itemp
13791 (org-indent-line-to
13792 (let ((struct (save-excursion
13793 (goto-char itemp) (org-list-struct))))
13794 (org-list-get-ind (org-list-get-top-point struct) struct)))
13795 (org-indent-line)))
13796 (insert (org-list-bullet-string "-") (pop lines))
13797 (let ((ind (org-list-item-body-column (line-beginning-position))))
13798 (dolist (line lines)
13799 (insert "\n")
13800 (org-indent-line-to ind)
13801 (insert line)))
13802 (message "Note stored")
13803 (org-back-to-heading t)
13804 (org-cycle-hide-drawers 'children))
13805 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13806 ;; from within `org-add-log-note' because `buffer-undo-list'
13807 ;; is then modified outside of `org-with-remote-undo'.
13808 (when (eq this-command 'org-agenda-todo)
13809 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13810 ;; Don't add undo information when called from `org-agenda-todo'
13811 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13812 (set-window-configuration org-log-note-window-configuration)
13813 (with-current-buffer (marker-buffer org-log-note-return-to)
13814 (goto-char org-log-note-return-to))
13815 (move-marker org-log-note-return-to nil)
13816 (and org-log-post-message (message "%s" org-log-post-message))))
13818 (defun org-remove-empty-drawer-at (pos)
13819 "Remove an empty drawer at position POS.
13820 POS may also be a marker."
13821 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13822 (org-with-wide-buffer
13823 (goto-char pos)
13824 (let ((drawer (org-element-at-point)))
13825 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13826 (not (org-element-property :contents-begin drawer)))
13827 (delete-region (org-element-property :begin drawer)
13828 (progn (goto-char (org-element-property :end drawer))
13829 (skip-chars-backward " \r\t\n")
13830 (forward-line)
13831 (point))))))))
13833 (defvar org-ts-type nil)
13834 (defun org-sparse-tree (&optional arg type)
13835 "Create a sparse tree, prompt for the details.
13836 This command can create sparse trees. You first need to select the type
13837 of match used to create the tree:
13839 t Show all TODO entries.
13840 T Show entries with a specific TODO keyword.
13841 m Show entries selected by a tags/property match.
13842 p Enter a property name and its value (both with completion on existing
13843 names/values) and show entries with that property.
13844 r Show entries matching a regular expression (`/' can be used as well).
13845 b Show deadlines and scheduled items before a date.
13846 a Show deadlines and scheduled items after a date.
13847 d Show deadlines due within `org-deadline-warning-days'.
13848 D Show deadlines and scheduled items between a date range."
13849 (interactive "P")
13850 (setq type (or type org-sparse-tree-default-date-type))
13851 (setq org-ts-type type)
13852 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13853 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13854 [c]ycle through date types: %s"
13855 (case type
13856 (all "all timestamps")
13857 (scheduled "only scheduled")
13858 (deadline "only deadline")
13859 (active "only active timestamps")
13860 (inactive "only inactive timestamps")
13861 (closed "with a closed time-stamp")
13862 (otherwise "scheduled/deadline")))
13863 (let ((answer (read-char-exclusive)))
13864 (case answer
13866 (org-sparse-tree
13868 (cadr
13869 (memq type '(nil all scheduled deadline active inactive closed)))))
13870 (?d (call-interactively 'org-check-deadlines))
13871 (?b (call-interactively 'org-check-before-date))
13872 (?a (call-interactively 'org-check-after-date))
13873 (?D (call-interactively 'org-check-dates-range))
13874 (?t (call-interactively 'org-show-todo-tree))
13875 (?T (org-show-todo-tree '(4)))
13876 (?m (call-interactively 'org-match-sparse-tree))
13877 ((?p ?P)
13878 (let* ((kwd (org-icompleting-read
13879 "Property: " (mapcar 'list (org-buffer-property-keys))))
13880 (value (org-icompleting-read
13881 "Value: " (mapcar 'list (org-property-values kwd)))))
13882 (unless (string-match "\\`{.*}\\'" value)
13883 (setq value (concat "\"" value "\"")))
13884 (org-match-sparse-tree arg (concat kwd "=" value))))
13885 ((?r ?R ?/) (call-interactively 'org-occur))
13886 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13888 (defvar org-occur-highlights nil
13889 "List of overlays used for occur matches.")
13890 (make-variable-buffer-local 'org-occur-highlights)
13891 (defvar org-occur-parameters nil
13892 "Parameters of the active org-occur calls.
13893 This is a list, each call to org-occur pushes as cons cell,
13894 containing the regular expression and the callback, onto the list.
13895 The list can contain several entries if `org-occur' has been called
13896 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13897 will only contain one set of parameters. When the highlights are
13898 removed (for example with `C-c C-c', or with the next edit (depending
13899 on `org-remove-highlights-with-change'), this variable is emptied
13900 as well.")
13901 (make-variable-buffer-local 'org-occur-parameters)
13903 (defun org-occur (regexp &optional keep-previous callback)
13904 "Make a compact tree which shows all matches of REGEXP.
13905 The tree will show the lines where the regexp matches, and all higher
13906 headlines above the match. It will also show the heading after the match,
13907 to make sure editing the matching entry is easy.
13908 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13909 call to `org-occur' will be kept, to allow stacking of calls to this
13910 command.
13911 If CALLBACK is non-nil, it is a function which is called to confirm
13912 that the match should indeed be shown."
13913 (interactive "sRegexp: \nP")
13914 (when (equal regexp "")
13915 (user-error "Regexp cannot be empty"))
13916 (unless keep-previous
13917 (org-remove-occur-highlights nil nil t))
13918 (push (cons regexp callback) org-occur-parameters)
13919 (let ((cnt 0))
13920 (save-excursion
13921 (goto-char (point-min))
13922 (if (or (not keep-previous) ; do not want to keep
13923 (not org-occur-highlights)) ; no previous matches
13924 ;; hide everything
13925 (org-overview))
13926 (while (re-search-forward regexp nil t)
13927 (when (or (not callback)
13928 (save-match-data (funcall callback)))
13929 (setq cnt (1+ cnt))
13930 (when org-highlight-sparse-tree-matches
13931 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13932 (org-show-context 'occur-tree))))
13933 (when org-remove-highlights-with-change
13934 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13935 nil 'local))
13936 (unless org-sparse-tree-open-archived-trees
13937 (org-hide-archived-subtrees (point-min) (point-max)))
13938 (run-hooks 'org-occur-hook)
13939 (if (org-called-interactively-p 'interactive)
13940 (message "%d match(es) for regexp %s" cnt regexp))
13941 cnt))
13943 (defun org-occur-next-match (&optional n reset)
13944 "Function for `next-error-function' to find sparse tree matches.
13945 N is the number of matches to move, when negative move backwards.
13946 RESET is entirely ignored - this function always goes back to the
13947 starting point when no match is found."
13948 (let* ((limit (if (< n 0) (point-min) (point-max)))
13949 (search-func (if (< n 0)
13950 'previous-single-char-property-change
13951 'next-single-char-property-change))
13952 (n (abs n))
13953 (pos (point))
13955 (catch 'exit
13956 (while (setq p1 (funcall search-func (point) 'org-type))
13957 (when (equal p1 limit)
13958 (goto-char pos)
13959 (user-error "No more matches"))
13960 (when (equal (get-char-property p1 'org-type) 'org-occur)
13961 (setq n (1- n))
13962 (when (= n 0)
13963 (goto-char p1)
13964 (throw 'exit (point))))
13965 (goto-char p1))
13966 (goto-char p1)
13967 (user-error "No more matches"))))
13969 (defun org-show-context (&optional key)
13970 "Make sure point and context are visible.
13971 Optional argument KEY, when non-nil, is a symbol. See
13972 `org-show-context-detail' for allowed values and how much is to
13973 be shown."
13974 (org-show-set-visibility
13975 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13976 ((cdr (assq key org-show-context-detail)))
13977 (t (cdr (assq 'default org-show-context-detail))))))
13979 (defun org-show-set-visibility (detail)
13980 "Set visibility around point according to DETAIL.
13981 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13982 `tree', `canonical' or t. See `org-show-context-detail' for more
13983 information."
13984 (unless (org-before-first-heading-p)
13985 ;; Show current heading and possibly its entry, following headline
13986 ;; or all children.
13987 (if (and (org-at-heading-p) (not (eq detail 'local)))
13988 (org-flag-heading nil)
13989 (org-show-entry)
13990 (org-with-limited-levels
13991 (case detail
13992 ((tree canonical t) (show-children))
13993 ((nil minimal ancestors))
13994 (t (save-excursion
13995 (outline-next-heading)
13996 (org-flag-heading nil))))))
13997 ;; Show all siblings.
13998 (when (eq detail 'lineage) (org-show-siblings))
13999 ;; Show ancestors, possibly with their children.
14000 (when (memq detail '(ancestors lineage tree canonical t))
14001 (save-excursion
14002 (while (org-up-heading-safe)
14003 (org-flag-heading nil)
14004 (when (memq detail '(canonical t)) (org-show-entry))
14005 (when (memq detail '(tree canonical t)) (show-children)))))))
14007 (defvar org-reveal-start-hook nil
14008 "Hook run before revealing a location.")
14010 (defun org-reveal (&optional siblings)
14011 "Show current entry, hierarchy above it, and the following headline.
14013 This can be used to show a consistent set of context around
14014 locations exposed with `org-show-context'.
14016 With optional argument SIBLINGS, on each level of the hierarchy all
14017 siblings are shown. This repairs the tree structure to what it would
14018 look like when opened with hierarchical calls to `org-cycle'.
14020 With double optional argument \\[universal-argument] \\[universal-argument], \
14021 go to the parent and show the
14022 entire tree."
14023 (interactive "P")
14024 (run-hooks 'org-reveal-start-hook)
14025 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
14026 ((equal siblings '(16))
14027 (save-excursion
14028 (when (org-up-heading-safe)
14029 (org-show-subtree)
14030 (run-hook-with-args 'org-cycle-hook 'subtree))))
14031 (t (org-show-set-visibility 'lineage))))
14033 (defun org-highlight-new-match (beg end)
14034 "Highlight from BEG to END and mark the highlight is an occur headline."
14035 (let ((ov (make-overlay beg end)))
14036 (overlay-put ov 'face 'secondary-selection)
14037 (overlay-put ov 'org-type 'org-occur)
14038 (push ov org-occur-highlights)))
14040 (defun org-remove-occur-highlights (&optional beg end noremove)
14041 "Remove the occur highlights from the buffer.
14042 BEG and END are ignored. If NOREMOVE is nil, remove this function
14043 from the `before-change-functions' in the current buffer."
14044 (interactive)
14045 (unless org-inhibit-highlight-removal
14046 (mapc 'delete-overlay org-occur-highlights)
14047 (setq org-occur-highlights nil)
14048 (setq org-occur-parameters nil)
14049 (unless noremove
14050 (remove-hook 'before-change-functions
14051 'org-remove-occur-highlights 'local))))
14053 ;;;; Priorities
14055 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14056 "Regular expression matching the priority indicator.")
14058 (defvar org-remove-priority-next-time nil)
14060 (defun org-priority-up ()
14061 "Increase the priority of the current item."
14062 (interactive)
14063 (org-priority 'up))
14065 (defun org-priority-down ()
14066 "Decrease the priority of the current item."
14067 (interactive)
14068 (org-priority 'down))
14070 (defun org-priority (&optional action show)
14071 "Change the priority of an item.
14072 ACTION can be `set', `up', `down', or a character."
14073 (interactive "P")
14074 (if (equal action '(4))
14075 (org-show-priority)
14076 (unless org-enable-priority-commands
14077 (user-error "Priority commands are disabled"))
14078 (setq action (or action 'set))
14079 (let (current new news have remove)
14080 (save-excursion
14081 (org-back-to-heading t)
14082 (if (looking-at org-priority-regexp)
14083 (setq current (string-to-char (match-string 2))
14084 have t))
14085 (cond
14086 ((eq action 'remove)
14087 (setq remove t new ?\ ))
14088 ((or (eq action 'set)
14089 (if (featurep 'xemacs) (characterp action) (integerp action)))
14090 (if (not (eq action 'set))
14091 (setq new action)
14092 (message "Priority %c-%c, SPC to remove: "
14093 org-highest-priority org-lowest-priority)
14094 (save-match-data
14095 (setq new (read-char-exclusive))))
14096 (if (and (= (upcase org-highest-priority) org-highest-priority)
14097 (= (upcase org-lowest-priority) org-lowest-priority))
14098 (setq new (upcase new)))
14099 (cond ((equal new ?\ ) (setq remove t))
14100 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14101 (user-error "Priority must be between `%c' and `%c'"
14102 org-highest-priority org-lowest-priority))))
14103 ((eq action 'up)
14104 (setq new (if have
14105 (1- current) ; normal cycling
14106 ;; last priority was empty
14107 (if (eq last-command this-command)
14108 org-lowest-priority ; wrap around empty to lowest
14109 ;; default
14110 (if org-priority-start-cycle-with-default
14111 org-default-priority
14112 (1- org-default-priority))))))
14113 ((eq action 'down)
14114 (setq new (if have
14115 (1+ current) ; normal cycling
14116 ;; last priority was empty
14117 (if (eq last-command this-command)
14118 org-highest-priority ; wrap around empty to highest
14119 ;; default
14120 (if org-priority-start-cycle-with-default
14121 org-default-priority
14122 (1+ org-default-priority))))))
14123 (t (user-error "Invalid action")))
14124 (if (or (< (upcase new) org-highest-priority)
14125 (> (upcase new) org-lowest-priority))
14126 (if (and (memq action '(up down))
14127 (not have) (not (eq last-command this-command)))
14128 ;; `new' is from default priority
14129 (error
14130 "The default can not be set, see `org-default-priority' why")
14131 ;; normal cycling: `new' is beyond highest/lowest priority
14132 ;; and is wrapped around to the empty priority
14133 (setq remove t)))
14134 (setq news (format "%c" new))
14135 (if have
14136 (if remove
14137 (replace-match "" t t nil 1)
14138 (replace-match news t t nil 2))
14139 (if remove
14140 (user-error "No priority cookie found in line")
14141 (let ((case-fold-search nil))
14142 (looking-at org-todo-line-regexp))
14143 (if (match-end 2)
14144 (progn
14145 (goto-char (match-end 2))
14146 (insert " [#" news "]"))
14147 (goto-char (match-beginning 3))
14148 (insert "[#" news "] "))))
14149 (org-set-tags nil 'align))
14150 (if remove
14151 (message "Priority removed")
14152 (message "Priority of current item set to %s" news)))))
14154 (defun org-show-priority ()
14155 "Show the priority of the current item.
14156 This priority is composed of the main priority given with the [#A] cookies,
14157 and by additional input from the age of a schedules or deadline entry."
14158 (interactive)
14159 (let ((pri (if (eq major-mode 'org-agenda-mode)
14160 (org-get-at-bol 'priority)
14161 (save-excursion
14162 (save-match-data
14163 (beginning-of-line)
14164 (and (looking-at org-heading-regexp)
14165 (org-get-priority (match-string 0))))))))
14166 (message "Priority is %d" (if pri pri -1000))))
14168 (defun org-get-priority (s)
14169 "Find priority cookie and return priority."
14170 (save-match-data
14171 (if (functionp org-get-priority-function)
14172 (funcall org-get-priority-function)
14173 (if (not (string-match org-priority-regexp s))
14174 (* 1000 (- org-lowest-priority org-default-priority))
14175 (* 1000 (- org-lowest-priority
14176 (string-to-char (match-string 2 s))))))))
14178 ;;;; Tags
14180 (defvar org-agenda-archives-mode)
14181 (defvar org-map-continue-from nil
14182 "Position from where mapping should continue.
14183 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14185 (defvar org-scanner-tags nil
14186 "The current tag list while the tags scanner is running.")
14187 (defvar org-trust-scanner-tags nil
14188 "Should `org-get-tags-at' use the tags for the scanner.
14189 This is for internal dynamical scoping only.
14190 When this is non-nil, the function `org-get-tags-at' will return the value
14191 of `org-scanner-tags' instead of building the list by itself. This
14192 can lead to large speed-ups when the tags scanner is used in a file with
14193 many entries, and when the list of tags is retrieved, for example to
14194 obtain a list of properties. Building the tags list for each entry in such
14195 a file becomes an N^2 operation - but with this variable set, it scales
14196 as N.")
14198 (defun org-scan-tags (action matcher todo-only &optional start-level)
14199 "Scan headline tags with inheritance and produce output ACTION.
14201 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14202 or `agenda' to produce an entry list for an agenda view. It can also be
14203 a Lisp form or a function that should be called at each matched headline, in
14204 this case the return value is a list of all return values from these calls.
14206 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14207 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14208 only lines with a not-done TODO keyword are included in the output.
14209 This should be the same variable that was scoped into
14210 and set by `org-make-tags-matcher' when it constructed MATCHER.
14212 START-LEVEL can be a string with asterisks, reducing the scope to
14213 headlines matching this string."
14214 (require 'org-agenda)
14215 (let* ((re (concat "^"
14216 (if start-level
14217 ;; Get the correct level to match
14218 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14219 org-outline-regexp)
14220 " *\\(\\<\\("
14221 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14222 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14223 (props (list 'face 'default
14224 'done-face 'org-agenda-done
14225 'undone-face 'default
14226 'mouse-face 'highlight
14227 'org-not-done-regexp org-not-done-regexp
14228 'org-todo-regexp org-todo-regexp
14229 'org-complex-heading-regexp org-complex-heading-regexp
14230 'help-echo
14231 (format "mouse-2 or RET jump to org file %s"
14232 (abbreviate-file-name
14233 (or (buffer-file-name (buffer-base-buffer))
14234 (buffer-name (buffer-base-buffer)))))))
14235 (org-map-continue-from nil)
14236 lspos tags tags-list
14237 (tags-alist (list (cons 0 org-file-tags)))
14238 (llast 0) rtn rtn1 level category i txt
14239 todo marker entry priority
14240 ts-date ts-date-type ts-date-pair)
14241 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14242 (setq action (list 'lambda nil action)))
14243 (save-excursion
14244 (goto-char (point-min))
14245 (when (eq action 'sparse-tree)
14246 (org-overview)
14247 (org-remove-occur-highlights))
14248 (while (let (case-fold-search)
14249 (re-search-forward re nil t))
14250 (setq org-map-continue-from nil)
14251 (catch :skip
14252 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14253 tags (if (match-end 4) (org-match-string-no-properties 4)))
14254 (goto-char (setq lspos (match-beginning 0)))
14255 (setq level (org-reduced-level (org-outline-level))
14256 category (org-get-category))
14257 (when (eq action 'agenda)
14258 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14259 ts-date (car ts-date-pair)
14260 ts-date-type (cdr ts-date-pair)))
14261 (setq i llast llast level)
14262 ;; remove tag lists from same and sublevels
14263 (while (>= i level)
14264 (when (setq entry (assoc i tags-alist))
14265 (setq tags-alist (delete entry tags-alist)))
14266 (setq i (1- i)))
14267 ;; add the next tags
14268 (when tags
14269 (setq tags (org-split-string tags ":")
14270 tags-alist
14271 (cons (cons level tags) tags-alist)))
14272 ;; compile tags for current headline
14273 (setq tags-list
14274 (if org-use-tag-inheritance
14275 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14276 tags)
14277 org-scanner-tags tags-list)
14278 (when org-use-tag-inheritance
14279 (setcdr (car tags-alist)
14280 (mapcar (lambda (x)
14281 (setq x (copy-sequence x))
14282 (org-add-prop-inherited x))
14283 (cdar tags-alist))))
14284 (when (and tags org-use-tag-inheritance
14285 (or (not (eq t org-use-tag-inheritance))
14286 org-tags-exclude-from-inheritance))
14287 ;; selective inheritance, remove uninherited ones
14288 (setcdr (car tags-alist)
14289 (org-remove-uninherited-tags (cdar tags-alist))))
14290 (when (and
14292 ;; eval matcher only when the todo condition is OK
14293 (and (or (not todo-only) (member todo org-not-done-keywords))
14294 (let ((case-fold-search t) (org-trust-scanner-tags t))
14295 (eval matcher)))
14297 ;; Call the skipper, but return t if it does not skip,
14298 ;; so that the `and' form continues evaluating
14299 (progn
14300 (unless (eq action 'sparse-tree) (org-agenda-skip))
14303 ;; Check if timestamps are deselecting this entry
14304 (or (not todo-only)
14305 (and (member todo org-not-done-keywords)
14306 (or (not org-agenda-tags-todo-honor-ignore-options)
14307 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14309 ;; select this headline
14310 (cond
14311 ((eq action 'sparse-tree)
14312 (and org-highlight-sparse-tree-matches
14313 (org-get-heading) (match-end 0)
14314 (org-highlight-new-match
14315 (match-beginning 1) (match-end 1)))
14316 (org-show-context 'tags-tree))
14317 ((eq action 'agenda)
14318 (setq txt (org-agenda-format-item
14320 (concat
14321 (if (eq org-tags-match-list-sublevels 'indented)
14322 (make-string (1- level) ?.) "")
14323 (org-get-heading))
14324 (make-string level ?\s)
14325 category
14326 tags-list)
14327 priority (org-get-priority txt))
14328 (goto-char lspos)
14329 (setq marker (org-agenda-new-marker))
14330 (org-add-props txt props
14331 'org-marker marker 'org-hd-marker marker 'org-category category
14332 'todo-state todo
14333 'ts-date ts-date
14334 'priority priority
14335 'type (concat "tagsmatch" ts-date-type))
14336 (push txt rtn))
14337 ((functionp action)
14338 (setq org-map-continue-from nil)
14339 (save-excursion
14340 (setq rtn1 (funcall action))
14341 (push rtn1 rtn)))
14342 (t (user-error "Invalid action")))
14344 ;; if we are to skip sublevels, jump to end of subtree
14345 (unless org-tags-match-list-sublevels
14346 (org-end-of-subtree t)
14347 (backward-char 1))))
14348 ;; Get the correct position from where to continue
14349 (if org-map-continue-from
14350 (goto-char org-map-continue-from)
14351 (and (= (point) lspos) (end-of-line 1)))))
14352 (when (and (eq action 'sparse-tree)
14353 (not org-sparse-tree-open-archived-trees))
14354 (org-hide-archived-subtrees (point-min) (point-max)))
14355 (nreverse rtn)))
14357 (defun org-remove-uninherited-tags (tags)
14358 "Remove all tags that are not inherited from the list TAGS."
14359 (cond
14360 ((eq org-use-tag-inheritance t)
14361 (if org-tags-exclude-from-inheritance
14362 (org-delete-all org-tags-exclude-from-inheritance tags)
14363 tags))
14364 ((not org-use-tag-inheritance) nil)
14365 ((stringp org-use-tag-inheritance)
14366 (delq nil (mapcar
14367 (lambda (x)
14368 (if (and (string-match org-use-tag-inheritance x)
14369 (not (member x org-tags-exclude-from-inheritance)))
14370 x nil))
14371 tags)))
14372 ((listp org-use-tag-inheritance)
14373 (delq nil (mapcar
14374 (lambda (x)
14375 (if (member x org-use-tag-inheritance) x nil))
14376 tags)))))
14378 (defun org-match-sparse-tree (&optional todo-only match)
14379 "Create a sparse tree according to tags string MATCH.
14380 MATCH can contain positive and negative selection of tags, like
14381 \"+WORK+URGENT-WITHBOSS\".
14382 If optional argument TODO-ONLY is non-nil, only select lines that are
14383 also TODO lines."
14384 (interactive "P")
14385 (org-agenda-prepare-buffers (list (current-buffer)))
14386 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14388 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14390 (defvar org-cached-props nil)
14391 (defun org-cached-entry-get (pom property)
14392 (if (or (eq t org-use-property-inheritance)
14393 (and (stringp org-use-property-inheritance)
14394 (let ((case-fold-search t))
14395 (org-string-match-p org-use-property-inheritance property)))
14396 (and (listp org-use-property-inheritance)
14397 (member-ignore-case property org-use-property-inheritance)))
14398 ;; Caching is not possible, check it directly.
14399 (org-entry-get pom property 'inherit)
14400 ;; Get all properties, so we can do complicated checks easily.
14401 (cdr (assoc-string property
14402 (or org-cached-props
14403 (setq org-cached-props (org-entry-properties pom)))
14404 t))))
14406 (defun org-global-tags-completion-table (&optional files)
14407 "Return the list of all tags in all agenda buffer/files.
14408 Optional FILES argument is a list of files which can be used
14409 instead of the agenda files."
14410 (save-excursion
14411 (org-uniquify
14412 (delq nil
14413 (apply 'append
14414 (mapcar
14415 (lambda (file)
14416 (set-buffer (find-file-noselect file))
14417 (append (org-get-buffer-tags)
14418 (mapcar (lambda (x) (if (stringp (car-safe x))
14419 (list (car-safe x)) nil))
14420 org-tag-alist)))
14421 (if (and files (car files))
14422 files
14423 (org-agenda-files))))))))
14425 (defun org-make-tags-matcher (match)
14426 "Create the TAGS/TODO matcher form for the selection string MATCH.
14428 The variable `todo-only' is scoped dynamically into this function.
14429 It will be set to t if the matcher restricts matching to TODO entries,
14430 otherwise will not be touched.
14432 Returns a cons of the selection string MATCH and the constructed
14433 lisp form implementing the matcher. The matcher is to be evaluated
14434 at an Org entry, with point on the headline, and returns t if the
14435 entry matches the selection string MATCH. The returned lisp form
14436 references two variables with information about the entry, which
14437 must be bound around the form's evaluation: todo, the TODO keyword
14438 at the entry (or nil of none); and tags-list, the list of all tags
14439 at the entry including inherited ones. Additionally, the category
14440 of the entry (if any) must be specified as the text property
14441 'org-category on the headline.
14443 See also `org-scan-tags'.
14445 (declare (special todo-only))
14446 (unless (boundp 'todo-only)
14447 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14448 (unless match
14449 ;; Get a new match request, with completion against the global
14450 ;; tags table and the local tags in current buffer
14451 (let ((org-last-tags-completion-table
14452 (org-uniquify
14453 (delq nil (append (org-get-buffer-tags)
14454 (org-global-tags-completion-table))))))
14455 (setq match (org-completing-read-no-i
14456 "Match: " 'org-tags-completion-function nil nil nil
14457 'org-tags-history))))
14459 ;; Parse the string and create a lisp form
14460 (let ((match0 match)
14461 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14462 minus tag mm
14463 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14464 orterms term orlist re-p str-p level-p level-op time-p
14465 prop-p pn pv po gv rest (start 0) (ss 0))
14466 ;; Expand group tags
14467 (setq match (org-tags-expand match))
14469 ;; Check if there is a TODO part of this match, which would be the
14470 ;; part after a "/". TO make sure that this slash is not part of
14471 ;; a property value to be matched against, we also check that there
14472 ;; is no " after that slash.
14473 ;; First, find the last slash
14474 (while (string-match "/+" match ss)
14475 (setq start (match-beginning 0) ss (match-end 0)))
14476 (if (and (string-match "/+" match start)
14477 (not (save-match-data (string-match "\"" match start))))
14478 ;; match contains also a todo-matching request
14479 (progn
14480 (setq tagsmatch (substring match 0 (match-beginning 0))
14481 todomatch (substring match (match-end 0)))
14482 (if (string-match "^!" todomatch)
14483 (setq todo-only t todomatch (substring todomatch 1)))
14484 (if (string-match "^\\s-*$" todomatch)
14485 (setq todomatch nil)))
14486 ;; only matching tags
14487 (setq tagsmatch match todomatch nil))
14489 ;; Make the tags matcher
14490 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14491 (setq tagsmatcher t)
14492 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14493 (while (setq term (pop orterms))
14494 (while (and (equal (substring term -1) "\\") orterms)
14495 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14496 (while (string-match re term)
14497 (setq rest (substring term (match-end 0))
14498 minus (and (match-end 1)
14499 (equal (match-string 1 term) "-"))
14500 tag (save-match-data (replace-regexp-in-string
14501 "\\\\-" "-"
14502 (match-string 2 term)))
14503 re-p (equal (string-to-char tag) ?{)
14504 level-p (match-end 4)
14505 prop-p (match-end 5)
14506 mm (cond
14507 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14508 (level-p
14509 (setq level-op (org-op-to-function (match-string 3 term)))
14510 `(,level-op level ,(string-to-number
14511 (match-string 4 term))))
14512 (prop-p
14513 (setq pn (match-string 5 term)
14514 po (match-string 6 term)
14515 pv (match-string 7 term)
14516 re-p (equal (string-to-char pv) ?{)
14517 str-p (equal (string-to-char pv) ?\")
14518 time-p (save-match-data
14519 (string-match "^\"[[<].*[]>]\"$" pv))
14520 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14521 (if time-p (setq pv (org-matcher-time pv)))
14522 (setq po (org-op-to-function po (if time-p 'time str-p)))
14523 (cond
14524 ((equal pn "CATEGORY")
14525 (setq gv '(get-text-property (point) 'org-category)))
14526 ((equal pn "TODO")
14527 (setq gv 'todo))
14529 (setq gv `(org-cached-entry-get nil ,pn))))
14530 (if re-p
14531 (if (eq po 'org<>)
14532 `(not (string-match ,pv (or ,gv "")))
14533 `(string-match ,pv (or ,gv "")))
14534 (if str-p
14535 `(,po (or ,gv "") ,pv)
14536 `(,po (string-to-number (or ,gv ""))
14537 ,(string-to-number pv) ))))
14538 (t `(member ,tag tags-list)))
14539 mm (if minus (list 'not mm) mm)
14540 term rest)
14541 (push mm tagsmatcher))
14542 (push (if (> (length tagsmatcher) 1)
14543 (cons 'and tagsmatcher)
14544 (car tagsmatcher))
14545 orlist)
14546 (setq tagsmatcher nil))
14547 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14548 (setq tagsmatcher
14549 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14550 ;; Make the todo matcher
14551 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14552 (setq todomatcher t)
14553 (setq orterms (org-split-string todomatch "|") orlist nil)
14554 (dolist (term orterms)
14555 (while (string-match re term)
14556 (setq minus (and (match-end 1)
14557 (equal (match-string 1 term) "-"))
14558 kwd (match-string 2 term)
14559 re-p (equal (string-to-char kwd) ?{)
14560 term (substring term (match-end 0))
14561 mm (if re-p
14562 `(string-match ,(substring kwd 1 -1) todo)
14563 (list 'equal 'todo kwd))
14564 mm (if minus (list 'not mm) mm))
14565 (push mm todomatcher))
14566 (push (if (> (length todomatcher) 1)
14567 (cons 'and todomatcher)
14568 (car todomatcher))
14569 orlist)
14570 (setq todomatcher nil))
14571 (setq todomatcher (if (> (length orlist) 1)
14572 (cons 'or orlist) (car orlist))))
14574 ;; Return the string and lisp forms of the matcher
14575 (setq matcher (if todomatcher
14576 (list 'and tagsmatcher todomatcher)
14577 tagsmatcher))
14578 (when todo-only
14579 (setq matcher (list 'and '(member todo org-not-done-keywords)
14580 matcher)))
14581 (cons match0 matcher)))
14583 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14584 "Expand group tags in MATCH.
14586 This replaces every group tag in MATCH with a regexp tag search.
14587 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14588 will be replaced like this:
14590 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14591 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14592 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14594 Replacing by a regexp preserves the structure of the match.
14595 E.g., this expansion
14597 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14599 will match anything tagged with \"Lab\" and \"Home\", or tagged
14600 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14602 A group tag in MATCH can contain regular expressions of its own.
14603 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14604 will be replaced like this:
14606 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14608 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14609 assumed to be a single group tag, and the function will return
14610 the list of tags in this group.
14612 When DOWNCASE is non-nil, expand downcased TAGS."
14613 (if org-group-tags
14614 (let* ((case-fold-search t)
14615 (stable org-mode-syntax-table)
14616 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14617 (taggroups (if downcased
14618 (mapcar (lambda (tg) (mapcar #'downcase tg))
14619 taggroups)
14620 taggroups))
14621 (taggroups-keys (mapcar #'car taggroups))
14622 (return-match (if downcased (downcase match) match))
14623 (count 0)
14624 (work-already-expanded tags-already-expanded)
14625 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14626 ;; @ and _ are allowed as word-components in tags.
14627 (modify-syntax-entry ?@ "w" stable)
14628 (modify-syntax-entry ?_ "w" stable)
14629 ;; Temporarily replace regexp-expressions in the match-expression.
14630 (while (string-match "{.+?}" return-match)
14631 (incf count)
14632 (push (match-string 0 return-match) regexps-in-match)
14633 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14634 (while (and taggroups-keys
14635 (with-syntax-table stable
14636 (string-match
14637 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14638 (regexp-opt taggroups-keys) "\\>\\)")
14639 return-match)))
14640 (let* ((dir (match-string 1 return-match))
14641 (tag (match-string 2 return-match))
14642 (tag (if downcased (downcase tag) tag)))
14643 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14644 (member tag work-already-expanded))
14645 (setq tags-in-group (assoc tag taggroups))
14646 (push tag work-already-expanded)
14647 ;; Recursively expand each tag in the group, if the tag hasn't
14648 ;; already been expanded. Restore the match-data after all recursive calls.
14649 (save-match-data
14650 (let (tags-expanded)
14651 (dolist (x (cdr tags-in-group))
14652 (if (and (member x taggroups-keys)
14653 (not (member x work-already-expanded)))
14654 (setq tags-expanded
14655 (delete-dups
14656 (append
14657 (org-tags-expand x t downcased
14658 work-already-expanded)
14659 tags-expanded)))
14660 (setq tags-expanded
14661 (append (list x) tags-expanded)))
14662 (setq work-already-expanded
14663 (delete-dups
14664 (append tags-expanded
14665 work-already-expanded))))
14666 (setq tags-in-group
14667 (delete-dups (cons (car tags-in-group)
14668 tags-expanded)))))
14669 ;; Filter tag-regexps from tags.
14670 (setq regexp-in-group-escaped
14671 (delq nil (mapcar (lambda (x)
14672 (if (stringp x)
14673 (and (equal "{" (substring x 0 1))
14674 (equal "}" (substring x -1))
14677 tags-in-group))
14678 regexp-in-group
14679 (mapcar (lambda (x)
14680 (substring x 1 -1))
14681 regexp-in-group-escaped)
14682 tags-in-group
14683 (delq nil (mapcar (lambda (x)
14684 (if (stringp x)
14685 (and (not (equal "{" (substring x 0 1)))
14686 (not (equal "}" (substring x -1)))
14689 tags-in-group)))
14690 ;; If single-as-list, do no more in the while-loop.
14691 (if (not single-as-list)
14692 (progn
14693 (when regexp-in-group
14694 (setq regexp-in-group
14695 (concat "\\|"
14696 (mapconcat 'identity regexp-in-group
14697 "\\|"))))
14698 (setq tags-in-group
14699 (concat dir
14700 "{\\<"
14701 (regexp-opt tags-in-group)
14702 "\\>"
14703 regexp-in-group
14704 "}"))
14705 (when (stringp tags-in-group)
14706 (org-add-props tags-in-group '(grouptag t)))
14707 (setq return-match
14708 (replace-match tags-in-group t t return-match)))
14709 (setq tags-in-group
14710 (append regexp-in-group-escaped tags-in-group))))
14711 (setq taggroups-keys (delete tag taggroups-keys))))
14712 ;; Add the regular expressions back into the match-expression again.
14713 (while regexps-in-match
14714 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14715 (pop regexps-in-match)
14716 return-match t t))
14717 (decf count))
14718 (if single-as-list
14719 (if tags-in-group tags-in-group (list return-match))
14720 return-match))
14721 (if single-as-list
14722 (list (if downcased (downcase match) match))
14723 match)))
14725 (defun org-op-to-function (op &optional stringp)
14726 "Turn an operator into the appropriate function."
14727 (setq op
14728 (cond
14729 ((equal op "<" ) '(< string< org-time<))
14730 ((equal op ">" ) '(> org-string> org-time>))
14731 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14732 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14733 ((member op '("=" "==")) '(= string= org-time=))
14734 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14735 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14737 (defun org<> (a b) (not (= a b)))
14738 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14739 (defun org-string>= (a b) (not (string< a b)))
14740 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14741 (defun org-string<> (a b) (not (string= a b)))
14742 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14743 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14744 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14745 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14746 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14747 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14748 (defun org-2ft (s)
14749 "Convert S to a floating point time.
14750 If S is already a number, just return it. If it is a string, parse
14751 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14752 (cond
14753 ((numberp s) s)
14754 ((stringp s)
14755 (condition-case nil
14756 (float-time (apply 'encode-time (org-parse-time-string s)))
14757 (error 0.)))
14758 (t 0.)))
14760 (defun org-time-today ()
14761 "Time in seconds today at 0:00.
14762 Returns the float number of seconds since the beginning of the
14763 epoch to the beginning of today (00:00)."
14764 (float-time (apply 'encode-time
14765 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14767 (defun org-matcher-time (s)
14768 "Interpret a time comparison value."
14769 (save-match-data
14770 (cond
14771 ((string= s "<now>") (float-time))
14772 ((string= s "<today>") (org-time-today))
14773 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14774 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14775 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14776 (+ (org-time-today)
14777 (* (string-to-number (match-string 1 s))
14778 (cdr (assoc (match-string 2 s)
14779 '(("d" . 86400.0) ("w" . 604800.0)
14780 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14781 (t (org-2ft s)))))
14783 (defun org-match-any-p (re list)
14784 "Does re match any element of list?"
14785 (setq list (mapcar (lambda (x) (string-match re x)) list))
14786 (delq nil list))
14788 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14789 (defvar org-tags-overlay (make-overlay 1 1))
14790 (org-detach-overlay org-tags-overlay)
14792 (defun org-get-local-tags-at (&optional pos)
14793 "Get a list of tags defined in the current headline."
14794 (org-get-tags-at pos 'local))
14796 (defun org-get-local-tags ()
14797 "Get a list of tags defined in the current headline."
14798 (org-get-tags-at nil 'local))
14800 (defun org-get-tags-at (&optional pos local)
14801 "Get a list of all headline tags applicable at POS.
14802 POS defaults to point. If tags are inherited, the list contains
14803 the targets in the same sequence as the headlines appear, i.e.
14804 the tags of the current headline come last.
14805 When LOCAL is non-nil, only return tags from the current headline,
14806 ignore inherited ones."
14807 (interactive)
14808 (if (and org-trust-scanner-tags
14809 (or (not pos) (equal pos (point)))
14810 (not local))
14811 org-scanner-tags
14812 (let (tags ltags lastpos parent)
14813 (save-excursion
14814 (save-restriction
14815 (widen)
14816 (goto-char (or pos (point)))
14817 (save-match-data
14818 (catch 'done
14819 (condition-case nil
14820 (progn
14821 (org-back-to-heading t)
14822 (while (not (equal lastpos (point)))
14823 (setq lastpos (point))
14824 (when (looking-at
14825 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14826 (setq ltags (org-split-string
14827 (org-match-string-no-properties 1) ":"))
14828 (when parent
14829 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14830 (setq tags (append
14831 (if parent
14832 (org-remove-uninherited-tags ltags)
14833 ltags)
14834 tags)))
14835 (or org-use-tag-inheritance (throw 'done t))
14836 (if local (throw 'done t))
14837 (or (org-up-heading-safe) (error nil))
14838 (setq parent t)))
14839 (error nil)))))
14840 (if local
14841 tags
14842 (reverse (delete-dups
14843 (reverse (append
14844 (org-remove-uninherited-tags
14845 org-file-tags)
14846 tags)))))))))
14848 (defun org-add-prop-inherited (s)
14849 (add-text-properties 0 (length s) '(inherited t) s)
14852 (defun org-toggle-tag (tag &optional onoff)
14853 "Toggle the tag TAG for the current line.
14854 If ONOFF is `on' or `off', don't toggle but set to this state."
14855 (let (res current)
14856 (save-excursion
14857 (org-back-to-heading t)
14858 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14859 (point-at-eol) t)
14860 (progn
14861 (setq current (match-string 1))
14862 (replace-match ""))
14863 (setq current ""))
14864 (setq current (nreverse (org-split-string current ":")))
14865 (cond
14866 ((eq onoff 'on)
14867 (setq res t)
14868 (or (member tag current) (push tag current)))
14869 ((eq onoff 'off)
14870 (or (not (member tag current)) (setq current (delete tag current))))
14871 (t (if (member tag current)
14872 (setq current (delete tag current))
14873 (setq res t)
14874 (push tag current))))
14875 (end-of-line 1)
14876 (if current
14877 (progn
14878 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14879 (org-set-tags nil t))
14880 (delete-horizontal-space))
14881 (run-hooks 'org-after-tags-change-hook))
14882 res))
14884 (defun org-align-tags-here (to-col)
14885 ;; Assumes that this is a headline
14886 "Align tags on the current headline to TO-COL."
14887 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14888 (beginning-of-line 1)
14889 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14890 (< pos (match-beginning 2)))
14891 (progn
14892 (setq tags-l (- (match-end 2) (match-beginning 2)))
14893 (goto-char (match-beginning 1))
14894 (insert " ")
14895 (delete-region (point) (1+ (match-beginning 2)))
14896 (setq ncol (max (current-column)
14897 (1+ col)
14898 (if (> to-col 0)
14899 to-col
14900 (- (abs to-col) tags-l))))
14901 (setq p (point))
14902 (insert (make-string (- ncol (current-column)) ?\ ))
14903 (setq ncol (current-column))
14904 (when indent-tabs-mode (tabify p (point-at-eol)))
14905 (org-move-to-column (min ncol col)))
14906 (goto-char pos))))
14908 (defun org-set-tags-command (&optional arg just-align)
14909 "Call the set-tags command for the current entry."
14910 (interactive "P")
14911 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14912 (org-set-tags arg just-align)
14913 (save-excursion
14914 (unless (and (org-region-active-p)
14915 org-loop-over-headlines-in-active-region)
14916 (org-back-to-heading t))
14917 (org-set-tags arg just-align))))
14919 (defun org-set-tags-to (data)
14920 "Set the tags of the current entry to DATA, replacing the current tags.
14921 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14922 If DATA is nil or the empty string, any tags will be removed."
14923 (interactive "sTags: ")
14924 (setq data
14925 (cond
14926 ((eq data nil) "")
14927 ((equal data "") "")
14928 ((stringp data)
14929 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14930 ":"))
14931 ((listp data)
14932 (concat ":" (mapconcat 'identity data ":") ":"))))
14933 (when data
14934 (save-excursion
14935 (org-back-to-heading t)
14936 (when (looking-at org-complex-heading-regexp)
14937 (if (match-end 5)
14938 (progn
14939 (goto-char (match-beginning 5))
14940 (insert data)
14941 (delete-region (point) (point-at-eol))
14942 (org-set-tags nil 'align))
14943 (goto-char (point-at-eol))
14944 (insert " " data)
14945 (org-set-tags nil 'align)))
14946 (beginning-of-line 1)
14947 (if (looking-at ".*?\\([ \t]+\\)$")
14948 (delete-region (match-beginning 1) (match-end 1))))))
14950 (defun org-align-all-tags ()
14951 "Align the tags i all headings."
14952 (interactive)
14953 (save-excursion
14954 (or (ignore-errors (org-back-to-heading t))
14955 (outline-next-heading))
14956 (if (org-at-heading-p)
14957 (org-set-tags t)
14958 (message "No headings"))))
14960 (defvar org-indent-indentation-per-level)
14961 (defun org-set-tags (&optional arg just-align)
14962 "Set the tags for the current headline.
14963 With prefix ARG, realign all tags in headings in the current buffer.
14964 When JUST-ALIGN is non-nil, only align tags."
14965 (interactive "P")
14966 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14967 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14968 'region-start-level
14969 'region))
14970 org-loop-over-headlines-in-active-region)
14971 (org-map-entries
14972 ;; We don't use ARG and JUST-ALIGN here because these args
14973 ;; are not useful when looping over headlines.
14974 #'org-set-tags
14975 org-loop-over-headlines-in-active-region
14977 '(when (outline-invisible-p) (org-end-of-subtree nil t))))
14978 (let ((org-setting-tags t))
14979 (if arg
14980 (save-excursion
14981 (goto-char (point-min))
14982 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14983 (while (re-search-forward org-outline-regexp-bol nil t)
14984 (org-set-tags nil t)
14985 (end-of-line)))
14986 (message "All tags realigned to column %d" org-tags-column))
14987 (let* ((current (org-get-tags-string))
14988 (col (current-column))
14989 (tags
14990 (if just-align current
14991 ;; Get a new set of tags from the user.
14992 (save-excursion
14993 (let* ((table
14994 (setq
14995 org-last-tags-completion-table
14996 (append
14997 org-tag-persistent-alist
14998 (or org-tag-alist (org-get-buffer-tags))
14999 (and
15000 org-complete-tags-always-offer-all-agenda-tags
15001 (org-global-tags-completion-table
15002 (org-agenda-files))))))
15003 (current-tags (org-split-string current ":"))
15004 (inherited-tags
15005 (nreverse (nthcdr (length current-tags)
15006 (nreverse (org-get-tags-at))))))
15007 (replace-regexp-in-string
15008 "\\([-+&]+\\|,\\)"
15010 (if (or (eq t org-use-fast-tag-selection)
15011 (and org-use-fast-tag-selection
15012 (delq nil (mapcar #'cdr table))))
15013 (org-fast-tag-selection
15014 current-tags inherited-tags table
15015 (and org-fast-tag-selection-include-todo
15016 org-todo-key-alist))
15017 (let ((org-add-colon-after-tag-completion
15018 (< 1 (length table))))
15019 (org-trim
15020 (completing-read
15021 "Tags: "
15022 #'org-tags-completion-function
15023 nil nil current 'org-tags-history))))))))))
15025 (when org-tags-sort-function
15026 (setq tags
15027 (mapconcat
15028 #'identity
15029 (sort (org-split-string tags (org-re "[^[:alnum:]_@#%]+"))
15030 org-tags-sort-function)
15031 ":")))
15033 (if (not (org-string-nw-p tags)) (setq tags "")
15034 (unless (string-match ":\\'" tags) (setq tags (concat tags ":")))
15035 (unless (string-match "\\`:" tags) (setq tags (concat ":" tags))))
15037 ;; Insert new tags at the correct column
15038 (beginning-of-line)
15039 (let ((level (if (looking-at org-outline-regexp)
15040 (- (match-end 0) (point) 1)
15041 1)))
15042 (cond
15043 ((and (equal current "") (equal tags "")))
15044 ((re-search-forward
15045 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15046 (line-end-position)
15048 (if (equal tags "") (replace-match "" t t)
15049 (goto-char (match-beginning 0))
15050 (let* ((c0 (current-column))
15051 ;; Compute offset for the case of org-indent-mode
15052 ;; active.
15053 (di (if (org-bound-and-true-p org-indent-mode)
15054 (* (1- org-indent-indentation-per-level)
15055 (1- level))
15057 (p0 (if (eq (char-before) ?*) (1+ (point)) (point)))
15058 (tc (+ org-tags-column
15059 (if (> org-tags-column 0) (- di) di)))
15060 (c1 (max (1+ c0)
15061 (if (> tc 0) tc
15062 (- (- tc) (string-width tags)))))
15063 (rpl (concat (make-string (max 0 (- c1 c0)) ?\s) tags)))
15064 (replace-match rpl t t)
15065 (when (and (not (featurep 'xemacs)) indent-tabs-mode)
15066 (tabify p0 (point))))))
15067 (t (error "Tags alignment failed"))))
15068 (org-move-to-column col))
15069 (unless just-align (run-hooks 'org-after-tags-change-hook))))))
15071 (defun org-change-tag-in-region (beg end tag off)
15072 "Add or remove TAG for each entry in the region.
15073 This works in the agenda, and also in an org-mode buffer."
15074 (interactive
15075 (list (region-beginning) (region-end)
15076 (let ((org-last-tags-completion-table
15077 (if (derived-mode-p 'org-mode)
15078 (org-uniquify
15079 (delq nil (append (org-get-buffer-tags)
15080 (org-global-tags-completion-table))))
15081 (org-global-tags-completion-table))))
15082 (org-icompleting-read
15083 "Tag: " 'org-tags-completion-function nil nil nil
15084 'org-tags-history))
15085 (progn
15086 (message "[s]et or [r]emove? ")
15087 (equal (read-char-exclusive) ?r))))
15088 (if (fboundp 'deactivate-mark) (deactivate-mark))
15089 (let ((agendap (equal major-mode 'org-agenda-mode))
15090 l1 l2 m buf pos newhead (cnt 0))
15091 (goto-char end)
15092 (setq l2 (1- (org-current-line)))
15093 (goto-char beg)
15094 (setq l1 (org-current-line))
15095 (loop for l from l1 to l2 do
15096 (org-goto-line l)
15097 (setq m (get-text-property (point) 'org-hd-marker))
15098 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15099 (and agendap m))
15100 (setq buf (if agendap (marker-buffer m) (current-buffer))
15101 pos (if agendap m (point)))
15102 (with-current-buffer buf
15103 (save-excursion
15104 (save-restriction
15105 (goto-char pos)
15106 (setq cnt (1+ cnt))
15107 (org-toggle-tag tag (if off 'off 'on))
15108 (setq newhead (org-get-heading)))))
15109 (and agendap (org-agenda-change-all-lines newhead m))))
15110 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15112 (defun org-tags-completion-function (string predicate &optional flag)
15113 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15114 (confirm (lambda (x) (stringp (car x)))))
15115 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15116 (setq s1 (match-string 1 string)
15117 s2 (match-string 2 string))
15118 (setq s1 "" s2 string))
15119 (cond
15120 ((eq flag nil)
15121 ;; try completion
15122 (setq rtn (try-completion s2 ctable confirm))
15123 (if (stringp rtn)
15124 (setq rtn
15125 (concat s1 s2 (substring rtn (length s2))
15126 (if (and org-add-colon-after-tag-completion
15127 (assoc rtn ctable))
15128 ":" ""))))
15129 rtn)
15130 ((eq flag t)
15131 ;; all-completions
15132 (all-completions s2 ctable confirm))
15133 ((eq flag 'lambda)
15134 ;; exact match?
15135 (assoc s2 ctable)))))
15137 (defun org-fast-tag-insert (kwd tags face &optional end)
15138 "Insert KDW, and the TAGS, the latter with face FACE.
15139 Also insert END."
15140 (insert (format "%-12s" (concat kwd ":"))
15141 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15142 (or end "")))
15144 (defun org-fast-tag-show-exit (flag)
15145 (save-excursion
15146 (org-goto-line 3)
15147 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15148 (replace-match ""))
15149 (when flag
15150 (end-of-line 1)
15151 (org-move-to-column (- (window-width) 19) t)
15152 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15154 (defun org-set-current-tags-overlay (current prefix)
15155 "Add an overlay to CURRENT tag with PREFIX."
15156 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15157 (if (featurep 'xemacs)
15158 (org-overlay-display org-tags-overlay (concat prefix s)
15159 'secondary-selection)
15160 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15161 (org-overlay-display org-tags-overlay (concat prefix s)))))
15163 (defvar org-last-tag-selection-key nil)
15164 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15165 "Fast tag selection with single keys.
15166 CURRENT is the current list of tags in the headline, INHERITED is the
15167 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15168 possibly with grouping information. TODO-TABLE is a similar table with
15169 TODO keywords, should these have keys assigned to them.
15170 If the keys are nil, a-z are automatically assigned.
15171 Returns the new tags string, or nil to not change the current settings."
15172 (let* ((fulltable (append table todo-table))
15173 (maxlen (apply 'max (mapcar
15174 (lambda (x)
15175 (if (stringp (car x)) (string-width (car x)) 0))
15176 fulltable)))
15177 (buf (current-buffer))
15178 (expert (eq org-fast-tag-selection-single-key 'expert))
15179 (buffer-tags nil)
15180 (fwidth (+ maxlen 3 1 3))
15181 (ncol (/ (- (window-width) 4) fwidth))
15182 (i-face 'org-done)
15183 (c-face 'org-todo)
15184 tg cnt e c char c1 c2 ntable tbl rtn
15185 ov-start ov-end ov-prefix
15186 (exit-after-next org-fast-tag-selection-single-key)
15187 (done-keywords org-done-keywords)
15188 groups ingroup intaggroup)
15189 (save-excursion
15190 (beginning-of-line 1)
15191 (if (looking-at
15192 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15193 (setq ov-start (match-beginning 1)
15194 ov-end (match-end 1)
15195 ov-prefix "")
15196 (setq ov-start (1- (point-at-eol))
15197 ov-end (1+ ov-start))
15198 (skip-chars-forward "^\n\r")
15199 (setq ov-prefix
15200 (concat
15201 (buffer-substring (1- (point)) (point))
15202 (if (> (current-column) org-tags-column)
15204 (make-string (- org-tags-column (current-column)) ?\ ))))))
15205 (move-overlay org-tags-overlay ov-start ov-end)
15206 (save-window-excursion
15207 (if expert
15208 (set-buffer (get-buffer-create " *Org tags*"))
15209 (delete-other-windows)
15210 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15211 (org-switch-to-buffer-other-window " *Org tags*"))
15212 (erase-buffer)
15213 (org-set-local 'org-done-keywords done-keywords)
15214 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15215 (org-fast-tag-insert "Current" current c-face "\n\n")
15216 (org-fast-tag-show-exit exit-after-next)
15217 (org-set-current-tags-overlay current ov-prefix)
15218 (setq tbl fulltable char ?a cnt 0)
15219 (while (setq e (pop tbl))
15220 (cond
15221 ((eq (car e) :startgroup)
15222 (push '() groups) (setq ingroup t)
15223 (unless (zerop cnt)
15224 (setq cnt 0)
15225 (insert "\n"))
15226 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15227 ((eq (car e) :endgroup)
15228 (setq ingroup nil cnt 0)
15229 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15230 ((eq (car e) :startgrouptag)
15231 (setq intaggroup t)
15232 (unless (zerop cnt)
15233 (setq cnt 0)
15234 (insert "\n"))
15235 (insert "[ "))
15236 ((eq (car e) :endgrouptag)
15237 (setq intaggroup nil cnt 0)
15238 (insert "]\n"))
15239 ((equal e '(:newline))
15240 (unless (zerop cnt)
15241 (setq cnt 0)
15242 (insert "\n")
15243 (setq e (car tbl))
15244 (while (equal (car tbl) '(:newline))
15245 (insert "\n")
15246 (setq tbl (cdr tbl)))))
15247 ((equal e '(:grouptags)) (insert " : "))
15249 (setq tg (copy-sequence (car e)) c2 nil)
15250 (if (cdr e)
15251 (setq c (cdr e))
15252 ;; automatically assign a character.
15253 (setq c1 (string-to-char
15254 (downcase (substring
15255 tg (if (= (string-to-char tg) ?@) 1 0)))))
15256 (if (or (rassoc c1 ntable) (rassoc c1 table))
15257 (while (or (rassoc char ntable) (rassoc char table))
15258 (setq char (1+ char)))
15259 (setq c2 c1))
15260 (setq c (or c2 char)))
15261 (when ingroup (push tg (car groups)))
15262 (setq tg (org-add-props tg nil 'face
15263 (cond
15264 ((not (assoc tg table))
15265 (org-get-todo-face tg))
15266 ((member tg current) c-face)
15267 ((member tg inherited) i-face))))
15268 (when (equal (caar tbl) :grouptags)
15269 (org-add-props tg nil 'face 'org-tag-group))
15270 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15271 (insert "[" c "] " tg (make-string
15272 (- fwidth 4 (length tg)) ?\ ))
15273 (push (cons tg c) ntable)
15274 (when (= (incf cnt) ncol)
15275 (insert "\n")
15276 (when (or ingroup intaggroup) (insert " "))
15277 (setq cnt 0)))))
15278 (setq ntable (nreverse ntable))
15279 (insert "\n")
15280 (goto-char (point-min))
15281 (unless expert (org-fit-window-to-buffer))
15282 (setq rtn
15283 (catch 'exit
15284 (while t
15285 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15286 (if (not groups) "no " "")
15287 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15288 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15289 (setq org-last-tag-selection-key c)
15290 (cond
15291 ((= c ?\r) (throw 'exit t))
15292 ((= c ?!)
15293 (setq groups (not groups))
15294 (goto-char (point-min))
15295 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15296 ((= c ?\C-c)
15297 (if (not expert)
15298 (org-fast-tag-show-exit
15299 (setq exit-after-next (not exit-after-next)))
15300 (setq expert nil)
15301 (delete-other-windows)
15302 (set-window-buffer (split-window-vertically) " *Org tags*")
15303 (org-switch-to-buffer-other-window " *Org tags*")
15304 (org-fit-window-to-buffer)))
15305 ((or (= c ?\C-g)
15306 (and (= c ?q) (not (rassoc c ntable))))
15307 (org-detach-overlay org-tags-overlay)
15308 (setq quit-flag t))
15309 ((= c ?\ )
15310 (setq current nil)
15311 (when exit-after-next (setq exit-after-next 'now)))
15312 ((= c ?\t)
15313 (condition-case nil
15314 (setq tg (org-icompleting-read
15315 "Tag: "
15316 (or buffer-tags
15317 (with-current-buffer buf
15318 (setq buffer-tags
15319 (org-get-buffer-tags))))))
15320 (quit (setq tg "")))
15321 (when (string-match "\\S-" tg)
15322 (add-to-list 'buffer-tags (list tg))
15323 (if (member tg current)
15324 (setq current (delete tg current))
15325 (push tg current)))
15326 (when exit-after-next (setq exit-after-next 'now)))
15327 ((setq e (rassoc c todo-table) tg (car e))
15328 (with-current-buffer buf
15329 (save-excursion (org-todo tg)))
15330 (when exit-after-next (setq exit-after-next 'now)))
15331 ((setq e (rassoc c ntable) tg (car e))
15332 (if (member tg current)
15333 (setq current (delete tg current))
15334 (loop for g in groups do
15335 (when (member tg g)
15336 (dolist (x g) (setq current (delete x current)))))
15337 (push tg current))
15338 (when exit-after-next (setq exit-after-next 'now))))
15340 ;; Create a sorted list
15341 (setq current
15342 (sort current
15343 (lambda (a b)
15344 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15345 (when (eq exit-after-next 'now) (throw 'exit t))
15346 (goto-char (point-min))
15347 (beginning-of-line 2)
15348 (delete-region (point) (point-at-eol))
15349 (org-fast-tag-insert "Current" current c-face)
15350 (org-set-current-tags-overlay current ov-prefix)
15351 (while (re-search-forward
15352 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15353 (setq tg (match-string 1))
15354 (add-text-properties
15355 (match-beginning 1) (match-end 1)
15356 (list 'face
15357 (cond
15358 ((member tg current) c-face)
15359 ((member tg inherited) i-face)
15360 (t (get-text-property (match-beginning 1) 'face))))))
15361 (goto-char (point-min)))))
15362 (org-detach-overlay org-tags-overlay)
15363 (if rtn
15364 (mapconcat 'identity current ":")
15365 nil))))
15367 (defun org-get-tags-string ()
15368 "Get the TAGS string in the current headline."
15369 (unless (org-at-heading-p t)
15370 (user-error "Not on a heading"))
15371 (save-excursion
15372 (beginning-of-line 1)
15373 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15374 (org-match-string-no-properties 1)
15375 "")))
15377 (defun org-get-tags ()
15378 "Get the list of tags specified in the current headline."
15379 (org-split-string (org-get-tags-string) ":"))
15381 (defun org-get-buffer-tags ()
15382 "Get a table of all tags used in the buffer, for completion."
15383 (org-with-wide-buffer
15384 (goto-char (point-min))
15385 (let ((tag-re (concat org-outline-regexp-bol
15386 "\\(?:.*?[ \t]\\)?"
15387 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15388 tags)
15389 (while (re-search-forward tag-re nil t)
15390 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15391 (push tag tags)))
15392 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15394 ;;;; The mapping API
15396 (defun org-map-entries (func &optional match scope &rest skip)
15397 "Call FUNC at each headline selected by MATCH in SCOPE.
15399 FUNC is a function or a lisp form. The function will be called without
15400 arguments, with the cursor positioned at the beginning of the headline.
15401 The return values of all calls to the function will be collected and
15402 returned as a list.
15404 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15405 does not need to preserve point. After evaluation, the cursor will be
15406 moved to the end of the line (presumably of the headline of the
15407 processed entry) and search continues from there. Under some
15408 circumstances, this may not produce the wanted results. For example,
15409 if you have removed (e.g. archived) the current (sub)tree it could
15410 mean that the next entry will be skipped entirely. In such cases, you
15411 can specify the position from where search should continue by making
15412 FUNC set the variable `org-map-continue-from' to the desired buffer
15413 position.
15415 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15416 Only headlines that are matched by this query will be considered during
15417 the iteration. When MATCH is nil or t, all headlines will be
15418 visited by the iteration.
15420 SCOPE determines the scope of this command. It can be any of:
15422 nil The current buffer, respecting the restriction if any
15423 tree The subtree started with the entry at point
15424 region The entries within the active region, if any
15425 region-start-level
15426 The entries within the active region, but only those at
15427 the same level than the first one.
15428 file The current buffer, without restriction
15429 file-with-archives
15430 The current buffer, and any archives associated with it
15431 agenda All agenda files
15432 agenda-with-archives
15433 All agenda files with any archive files associated with them
15434 \(file1 file2 ...)
15435 If this is a list, all files in the list will be scanned
15437 The remaining args are treated as settings for the skipping facilities of
15438 the scanner. The following items can be given here:
15440 archive skip trees with the archive tag
15441 comment skip trees with the COMMENT keyword
15442 function or Emacs Lisp form:
15443 will be used as value for `org-agenda-skip-function', so
15444 whenever the function returns a position, FUNC will not be
15445 called for that entry and search will continue from the
15446 position returned
15448 If your function needs to retrieve the tags including inherited tags
15449 at the *current* entry, you can use the value of the variable
15450 `org-scanner-tags' which will be much faster than getting the value
15451 with `org-get-tags-at'. If your function gets properties with
15452 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15453 to t around the call to `org-entry-properties' to get the same speedup.
15454 Note that if your function moves around to retrieve tags and properties at
15455 a *different* entry, you cannot use these techniques."
15456 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15457 (not (org-region-active-p)))
15458 (let* ((org-agenda-archives-mode nil) ; just to make sure
15459 (org-agenda-skip-archived-trees (memq 'archive skip))
15460 (org-agenda-skip-comment-trees (memq 'comment skip))
15461 (org-agenda-skip-function
15462 (car (org-delete-all '(comment archive) skip)))
15463 (org-tags-match-list-sublevels t)
15464 (start-level (eq scope 'region-start-level))
15465 matcher file res
15466 org-todo-keywords-for-agenda
15467 org-done-keywords-for-agenda
15468 org-todo-keyword-alist-for-agenda
15469 org-tag-alist-for-agenda
15470 todo-only)
15472 (cond
15473 ((eq match t) (setq matcher t))
15474 ((eq match nil) (setq matcher t))
15475 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15477 (save-excursion
15478 (save-restriction
15479 (cond ((eq scope 'tree)
15480 (org-back-to-heading t)
15481 (org-narrow-to-subtree)
15482 (setq scope nil))
15483 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15484 (org-region-active-p))
15485 ;; If needed, set start-level to a string like "2"
15486 (when start-level
15487 (save-excursion
15488 (goto-char (region-beginning))
15489 (unless (org-at-heading-p) (outline-next-heading))
15490 (setq start-level (org-current-level))))
15491 (narrow-to-region (region-beginning)
15492 (save-excursion
15493 (goto-char (region-end))
15494 (unless (and (bolp) (org-at-heading-p))
15495 (outline-next-heading))
15496 (point)))
15497 (setq scope nil)))
15499 (if (not scope)
15500 (progn
15501 (org-agenda-prepare-buffers
15502 (and buffer-file-name (list buffer-file-name)))
15503 (setq res (org-scan-tags func matcher todo-only start-level)))
15504 ;; Get the right scope
15505 (cond
15506 ((and scope (listp scope) (symbolp (car scope)))
15507 (setq scope (eval scope)))
15508 ((eq scope 'agenda)
15509 (setq scope (org-agenda-files t)))
15510 ((eq scope 'agenda-with-archives)
15511 (setq scope (org-agenda-files t))
15512 (setq scope (org-add-archive-files scope)))
15513 ((eq scope 'file)
15514 (setq scope (and buffer-file-name (list buffer-file-name))))
15515 ((eq scope 'file-with-archives)
15516 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15517 (org-agenda-prepare-buffers scope)
15518 (dolist (file scope)
15519 (with-current-buffer (org-find-base-buffer-visiting file)
15520 (save-excursion
15521 (save-restriction
15522 (widen)
15523 (goto-char (point-min))
15524 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15525 res)))
15527 ;;; Properties API
15529 (defconst org-special-properties
15530 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15531 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15532 "The special properties valid in Org mode.
15533 These are properties that are not defined in the property drawer,
15534 but in some other way.")
15536 (defconst org-default-properties
15537 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15538 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15539 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15540 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15541 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15542 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15543 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15544 "Some properties that are used by Org mode for various purposes.
15545 Being in this list makes sure that they are offered for completion.")
15547 (defun org--update-property-plist (key val props)
15548 "Associate KEY to VAL in alist PROPS.
15549 Modifications are made by side-effect. Return new alist."
15550 (let* ((appending (string= (substring key -1) "+"))
15551 (key (if appending (substring key 0 -1) key))
15552 (old (assoc-string key props t)))
15553 (if (not old) (cons (cons key val) props)
15554 (setcdr old (if appending (concat (cdr old) " " val) val))
15555 props)))
15557 (defun org-get-property-block (&optional beg force)
15558 "Return the (beg . end) range of the body of the property drawer.
15559 BEG is the beginning of the current subtree, or of the part
15560 before the first headline. If it is not given, it will be found.
15561 If the drawer does not exist, create it if FORCE is non-nil, or
15562 return nil."
15563 (org-with-wide-buffer
15564 (when beg (goto-char beg))
15565 (unless (org-before-first-heading-p)
15566 (let ((beg (cond (beg)
15567 ((or (not (featurep 'org-inlinetask))
15568 (org-inlinetask-in-task-p))
15569 (org-back-to-heading t))
15570 (t (org-with-limited-levels (org-back-to-heading t))))))
15571 (forward-line)
15572 (when (org-looking-at-p org-planning-line-re) (forward-line))
15573 (cond ((looking-at org-property-drawer-re)
15574 (forward-line)
15575 (cons (point) (progn (goto-char (match-end 0))
15576 (line-beginning-position))))
15577 (force
15578 (goto-char beg)
15579 (org-insert-property-drawer)
15580 (let ((pos (save-excursion (search-forward ":END:")
15581 (line-beginning-position))))
15582 (cons pos pos))))))))
15584 (defun org-at-property-p ()
15585 "Non-nil when point is inside a property drawer.
15586 See `org-property-re' for match data, if applicable."
15587 (save-excursion
15588 (beginning-of-line)
15589 (and (looking-at org-property-re)
15590 (let ((property-drawer (save-match-data (org-get-property-block))))
15591 (and property-drawer
15592 (>= (point) (car property-drawer))
15593 (< (point) (cdr property-drawer)))))))
15595 (defun org-property-action ()
15596 "Do an action on properties."
15597 (interactive)
15598 (unless (org-at-property-p) (user-error "Not at a property"))
15599 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15600 (let ((c (read-char-exclusive)))
15601 (case c
15602 (?s (call-interactively #'org-set-property))
15603 (?d (call-interactively #'org-delete-property))
15604 (?D (call-interactively #'org-delete-property-globally))
15605 (?c (call-interactively #'org-compute-property-at-point))
15606 (otherwise (user-error "No such property action %c" c)))))
15608 (defun org-inc-effort ()
15609 "Increment the value of the effort property in the current entry."
15610 (interactive)
15611 (org-set-effort nil t))
15613 (defvar org-clock-effort) ; Defined in org-clock.el.
15614 (defvar org-clock-current-task) ; Defined in org-clock.el.
15615 (defun org-set-effort (&optional value increment)
15616 "Set the effort property of the current entry.
15617 With numerical prefix arg, use the nth allowed value, 0 stands for the
15618 10th allowed value.
15620 When INCREMENT is non-nil, set the property to the next allowed value."
15621 (interactive "P")
15622 (if (equal value 0) (setq value 10))
15623 (let* ((completion-ignore-case t)
15624 (prop org-effort-property)
15625 (cur (org-entry-get nil prop))
15626 (allowed (org-property-get-allowed-values nil prop 'table))
15627 (existing (mapcar 'list (org-property-values prop)))
15628 (heading (nth 4 (org-heading-components)))
15630 (val (cond
15631 ((stringp value) value)
15632 ((and allowed (integerp value))
15633 (or (car (nth (1- value) allowed))
15634 (car (org-last allowed))))
15635 ((and allowed increment)
15636 (or (caadr (member (list cur) allowed))
15637 (user-error "Allowed effort values are not set")))
15638 (allowed
15639 (message "Select 1-9,0, [RET%s]: %s"
15640 (if cur (concat "=" cur) "")
15641 (mapconcat 'car allowed " "))
15642 (setq rpl (read-char-exclusive))
15643 (if (equal rpl ?\r)
15645 (setq rpl (- rpl ?0))
15646 (if (equal rpl 0) (setq rpl 10))
15647 (if (and (> rpl 0) (<= rpl (length allowed)))
15648 (car (nth (1- rpl) allowed))
15649 (org-completing-read "Effort: " allowed nil))))
15651 (let (org-completion-use-ido org-completion-use-iswitchb)
15652 (org-completing-read
15653 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15654 (concat "[" cur "]") "")
15655 ": ")
15656 existing nil nil "" nil cur))))))
15657 (unless (equal (org-entry-get nil prop) val)
15658 (org-entry-put nil prop val))
15659 (org-refresh-property
15660 '((effort . identity)
15661 (effort-minutes . org-duration-string-to-minutes))
15662 val)
15663 (when (string= heading org-clock-current-task)
15664 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15665 (org-clock-update-mode-line))
15666 (message "%s is now %s" prop val)))
15668 (defun org-entry-properties (&optional pom which)
15669 "Get all properties of the current entry.
15671 When POM is a buffer position, get all properties from the entry
15672 there instead.
15674 This includes the TODO keyword, the tags, time strings for
15675 deadline, scheduled, and clocking, and any additional properties
15676 defined in the entry.
15678 If WHICH is nil or `all', get all properties. If WHICH is
15679 `special' or `standard', only get that subclass. If WHICH is
15680 a string, only get that property.
15682 Return value is an alist. Keys are properties, as upcased
15683 strings."
15684 (org-with-point-at pom
15685 (when (and (derived-mode-p 'org-mode)
15686 (ignore-errors (org-back-to-heading t)))
15687 (catch 'exit
15688 (let* ((beg (point))
15689 (specific (and (stringp which) (upcase which)))
15690 (which (cond ((not specific) which)
15691 ((member specific org-special-properties) 'special)
15692 (t 'standard)))
15693 props)
15694 ;; Get the special properties, like TODO and TAGS.
15695 (when (memq which '(nil all special))
15696 (when (or (not specific) (string= specific "CLOCKSUM"))
15697 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15698 (when clocksum
15699 (push (cons "CLOCKSUM"
15700 (org-columns-number-to-string
15701 (/ (float clocksum) 60.) 'add_times))
15702 props)))
15703 (when specific (throw 'exit props)))
15704 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15705 (let ((clocksumt (get-text-property (point)
15706 :org-clock-minutes-today)))
15707 (when clocksumt
15708 (push (cons "CLOCKSUM_T"
15709 (org-columns-number-to-string
15710 (/ (float clocksumt) 60.) 'add_times))
15711 props)))
15712 (when specific (throw 'exit props)))
15713 (when (or (not specific) (string= specific "ITEM"))
15714 (when (looking-at org-complex-heading-regexp)
15715 (push (cons "ITEM"
15716 (concat
15717 (org-match-string-no-properties 1)
15718 (let ((title (org-match-string-no-properties 4)))
15719 (when (org-string-nw-p title)
15720 (concat " " (org-remove-tabs title))))))
15721 props))
15722 (when specific (throw 'exit props)))
15723 (when (or (not specific) (string= specific "TODO"))
15724 (let ((case-fold-search nil))
15725 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15726 (push (cons "TODO" (org-match-string-no-properties 2)) props)))
15727 (when specific (throw 'exit props)))
15728 (when (or (not specific) (string= specific "PRIORITY"))
15729 (when (looking-at org-priority-regexp)
15730 (push (cons "PRIORITY" (org-match-string-no-properties 2))
15731 props))
15732 (when specific (throw 'exit props)))
15733 (when (or (not specific) (string= specific "FILE"))
15734 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15735 props)
15736 (when specific (throw 'exit props)))
15737 (when (or (not specific) (string= specific "TAGS"))
15738 (let ((value (org-string-nw-p (org-get-tags-string))))
15739 (when value (push (cons "TAGS" value) props)))
15740 (when specific (throw 'exit props)))
15741 (when (or (not specific) (string= specific "ALLTAGS"))
15742 (let ((value (org-get-tags-at)))
15743 (when value
15744 (push (cons "ALLTAGS"
15745 (format ":%s:" (mapconcat #'identity value ":")))
15746 props)))
15747 (when specific (throw 'exit props)))
15748 (when (or (not specific) (string= specific "BLOCKED"))
15749 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15750 (when specific (throw 'exit props)))
15751 (when (or (not specific)
15752 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15753 (forward-line)
15754 (when (org-looking-at-p org-planning-line-re)
15755 (end-of-line)
15756 (let ((bol (line-beginning-position))
15757 ;; Backward compatibility: time keywords used to
15758 ;; be configurable (before 8.3). Make sure we
15759 ;; get the correct keyword.
15760 (key-assoc `(("CLOSED" . ,org-closed-string)
15761 ("DEADLINE" . ,org-deadline-string)
15762 ("SCHEDULED" . ,org-scheduled-string))))
15763 (dolist (pair (if specific (list (assoc specific key-assoc))
15764 key-assoc))
15765 (save-excursion
15766 (when (search-backward (cdr pair) bol t)
15767 (goto-char (match-end 0))
15768 (skip-chars-forward " \t")
15769 (and (looking-at org-ts-regexp-both)
15770 (push (cons (car pair)
15771 (org-match-string-no-properties 0))
15772 props)))))))
15773 (when specific (throw 'exit props)))
15774 (when (or (not specific)
15775 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15776 (let ((find-ts
15777 (lambda (end ts)
15778 (let ((regexp (cond
15779 ((string= specific "TIMESTAMP")
15780 org-ts-regexp)
15781 ((string= specific "TIMESTAMP_IA")
15782 org-ts-regexp-inactive)
15783 ((assoc "TIMESTAMP_IA" ts)
15784 org-ts-regexp)
15785 ((assoc "TIMESTAMP" ts)
15786 org-ts-regexp-inactive)
15787 (t org-ts-regexp-both))))
15788 (catch 'next
15789 (while (re-search-forward regexp end t)
15790 (backward-char)
15791 (let ((object (org-element-context)))
15792 ;; Accept to match timestamps in node
15793 ;; properties, too.
15794 (when (memq (org-element-type object)
15795 '(node-property timestamp))
15796 (let ((type
15797 (org-element-property :type object)))
15798 (cond
15799 ((and (memq type '(active active-range))
15800 (not (equal specific "TIMESTAMP_IA")))
15801 (unless (assoc "TIMESTAMP" ts)
15802 (push (cons "TIMESTAMP"
15803 (org-element-property
15804 :raw-value object))
15806 (when specific (throw 'exit ts))))
15807 ((and (memq type '(inactive inactive-range))
15808 (not (string= specific "TIMESTAMP")))
15809 (unless (assoc "TIMESTAMP_IA" ts)
15810 (push (cons "TIMESTAMP_IA"
15811 (org-element-property
15812 :raw-value object))
15814 (when specific (throw 'exit ts))))))
15815 ;; Both timestamp types are found,
15816 ;; move to next part.
15817 (when (= (length ts) 2) (throw 'next ts)))))
15818 ts)))))
15819 (goto-char beg)
15820 ;; First look for timestamps within headline.
15821 (let ((ts (funcall find-ts (line-end-position) nil)))
15822 (if (= (length ts) 2) (setq props (nconc ts props))
15823 (forward-line)
15824 ;; Then find timestamps in the section, skipping
15825 ;; planning line.
15826 (when (org-looking-at-p org-planning-line-re)
15827 (forward-line))
15828 (let ((end (save-excursion (outline-next-heading))))
15829 (setq props (nconc (funcall find-ts end ts) props))))))))
15830 ;; Get the standard properties, like :PROP:.
15831 (when (memq which '(nil all standard))
15832 ;; If we are looking after a specific property, delegate
15833 ;; to `org-entry-get', which is faster. However, make an
15834 ;; exception for "CATEGORY", since it can be also set
15835 ;; through keywords (i.e. #+CATEGORY).
15836 (if (and specific (not (equal specific "CATEGORY")))
15837 (let ((value (org-entry-get beg specific nil t)))
15838 (throw 'exit (and value (list (cons specific value)))))
15839 (let ((range (org-get-property-block beg)))
15840 (when range
15841 (let ((end (cdr range)) seen-base)
15842 (goto-char (car range))
15843 ;; Unlike to `org--update-property-plist', we
15844 ;; handle the case where base values is found
15845 ;; after its extension. We also forbid standard
15846 ;; properties to be named as special properties.
15847 (while (re-search-forward org-property-re end t)
15848 (let* ((key (upcase (org-match-string-no-properties 2)))
15849 (extendp (org-string-match-p "\\+\\'" key))
15850 (key-base (if extendp (substring key 0 -1) key))
15851 (value (org-match-string-no-properties 3)))
15852 (cond
15853 ((member-ignore-case key-base org-special-properties))
15854 (extendp
15855 (setq props
15856 (org--update-property-plist key value props)))
15857 ((member key seen-base))
15858 (t (push key seen-base)
15859 (let ((p (assoc-string key props t)))
15860 (if p (setcdr p (concat value " " (cdr p)))
15861 (push (cons key value) props))))))))))))
15862 (unless (assoc "CATEGORY" props)
15863 (push (cons "CATEGORY" (org-get-category beg)) props)
15864 (when (string= specific "CATEGORY") (throw 'exit props)))
15865 ;; Return value.
15866 props)))))
15868 (defun org-property--local-values (property literal-nil)
15869 "Return value for PROPERTY in current entry.
15870 Value is a list whose care is the base value for PROPERTY and cdr
15871 a list of accumulated values. Return nil if neither is found in
15872 the entry. Also return nil when PROPERTY is set to \"nil\",
15873 unless LITERAL-NIL is non-nil."
15874 (let ((range (org-get-property-block)))
15875 (when range
15876 (goto-char (car range))
15877 (let* ((case-fold-search t)
15878 (end (cdr range))
15879 (value
15880 ;; Base value.
15881 (save-excursion
15882 (let ((v (and (re-search-forward
15883 (org-re-property property nil t) end t)
15884 (org-match-string-no-properties 3))))
15885 (list (if literal-nil v (org-not-nil v)))))))
15886 ;; Find additional values.
15887 (let* ((property+ (org-re-property (concat property "+") nil t)))
15888 (while (re-search-forward property+ end t)
15889 (push (org-match-string-no-properties 3) value)))
15890 ;; Return final values.
15891 (and (not (equal value '(nil))) (nreverse value))))))
15893 (defun org-entry-get (pom property &optional inherit literal-nil)
15894 "Get value of PROPERTY for entry or content at point-or-marker POM.
15896 If INHERIT is non-nil and the entry does not have the property,
15897 then also check higher levels of the hierarchy. If INHERIT is
15898 the symbol `selective', use inheritance only if the setting in
15899 `org-use-property-inheritance' selects PROPERTY for inheritance.
15901 If the property is present but empty, the return value is the
15902 empty string. If the property is not present at all, nil is
15903 returned. In any other case, return the value as a string.
15904 Search is case-insensitive.
15906 If LITERAL-NIL is set, return the string value \"nil\" as
15907 a string, do not interpret it as the list atom nil. This is used
15908 for inheritance when a \"nil\" value can supersede a non-nil
15909 value higher up the hierarchy."
15910 (org-with-point-at pom
15911 (cond
15912 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15913 ;; We need a special property. Use `org-entry-properties' to
15914 ;; retrieve it, but specify the wanted property.
15915 (cdr (assoc-string property (org-entry-properties nil property))))
15916 ((and inherit
15917 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15918 (org-entry-get-with-inheritance property literal-nil))
15920 (let* ((local (org-property--local-values property literal-nil))
15921 (value (and local (mapconcat #'identity (delq nil local) " "))))
15922 (if literal-nil value (org-not-nil value)))))))
15924 (defun org-property-or-variable-value (var &optional inherit)
15925 "Check if there is a property fixing the value of VAR.
15926 If yes, return this value. If not, return the current value of the variable."
15927 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15928 (if (and prop (stringp prop) (string-match "\\S-" prop))
15929 (read prop)
15930 (symbol-value var))))
15932 (defun org-entry-delete (pom property)
15933 "Delete PROPERTY from entry at point-or-marker POM.
15934 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15935 non-nil when a property was removed."
15936 (unless (member property org-special-properties)
15937 (org-with-point-at pom
15938 (let ((range (org-get-property-block)))
15939 (when range
15940 (let* ((begin (car range))
15941 (origin (cdr range))
15942 (end (copy-marker origin))
15943 (re (org-re-property
15944 (concat (regexp-quote property) "\\+?") t t)))
15945 (goto-char begin)
15946 (while (re-search-forward re end t)
15947 (delete-region (match-beginning 0) (line-beginning-position 2)))
15948 ;; If drawer is empty, remove it altogether.
15949 (when (= begin end)
15950 (delete-region (line-beginning-position 0)
15951 (line-beginning-position 2)))
15952 ;; Return non-nil if some property was removed.
15953 (prog1 (/= end origin) (set-marker end nil))))))))
15955 ;; Multi-values properties are properties that contain multiple values
15956 ;; These values are assumed to be single words, separated by whitespace.
15957 (defun org-entry-add-to-multivalued-property (pom property value)
15958 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15959 (let* ((old (org-entry-get pom property))
15960 (values (and old (org-split-string old "[ \t]"))))
15961 (setq value (org-entry-protect-space value))
15962 (unless (member value values)
15963 (setq values (append values (list value)))
15964 (org-entry-put pom property
15965 (mapconcat 'identity values " ")))))
15967 (defun org-entry-remove-from-multivalued-property (pom property value)
15968 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15969 (let* ((old (org-entry-get pom property))
15970 (values (and old (org-split-string old "[ \t]"))))
15971 (setq value (org-entry-protect-space value))
15972 (when (member value values)
15973 (setq values (delete value values))
15974 (org-entry-put pom property
15975 (mapconcat 'identity values " ")))))
15977 (defun org-entry-member-in-multivalued-property (pom property value)
15978 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15979 (let* ((old (org-entry-get pom property))
15980 (values (and old (org-split-string old "[ \t]"))))
15981 (setq value (org-entry-protect-space value))
15982 (member value values)))
15984 (defun org-entry-get-multivalued-property (pom property)
15985 "Return a list of values in a multivalued property."
15986 (let* ((value (org-entry-get pom property))
15987 (values (and value (org-split-string value "[ \t]"))))
15988 (mapcar 'org-entry-restore-space values)))
15990 (defun org-entry-put-multivalued-property (pom property &rest values)
15991 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15992 VALUES should be a list of strings. Spaces will be protected."
15993 (org-entry-put pom property
15994 (mapconcat 'org-entry-protect-space values " "))
15995 (let* ((value (org-entry-get pom property))
15996 (values (and value (org-split-string value "[ \t]"))))
15997 (mapcar 'org-entry-restore-space values)))
15999 (defun org-entry-protect-space (s)
16000 "Protect spaces and newline in string S."
16001 (while (string-match " " s)
16002 (setq s (replace-match "%20" t t s)))
16003 (while (string-match "\n" s)
16004 (setq s (replace-match "%0A" t t s)))
16007 (defun org-entry-restore-space (s)
16008 "Restore spaces and newline in string S."
16009 (while (string-match "%20" s)
16010 (setq s (replace-match " " t t s)))
16011 (while (string-match "%0A" s)
16012 (setq s (replace-match "\n" t t s)))
16015 (defvar org-entry-property-inherited-from (make-marker)
16016 "Marker pointing to the entry from where a property was inherited.
16017 Each call to `org-entry-get-with-inheritance' will set this marker to the
16018 location of the entry where the inheritance search matched. If there was
16019 no match, the marker will point nowhere.
16020 Note that also `org-entry-get' calls this function, if the INHERIT flag
16021 is set.")
16023 (defun org-entry-get-with-inheritance (property &optional literal-nil)
16024 "Get PROPERTY of entry or content at point, search higher levels if needed.
16025 The search will stop at the first ancestor which has the property defined.
16026 If the value found is \"nil\", return nil to show that the property
16027 should be considered as undefined (this is the meaning of nil here).
16028 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
16029 (move-marker org-entry-property-inherited-from nil)
16030 (org-with-wide-buffer
16031 (let (value)
16032 (catch 'exit
16033 (while t
16034 (let ((v (org-property--local-values property literal-nil)))
16035 (when v
16036 (setq value
16037 (concat (mapconcat #'identity (delq nil v) " ")
16038 (and value " ")
16039 value)))
16040 (cond
16041 ((car v)
16042 (org-back-to-heading t)
16043 (move-marker org-entry-property-inherited-from (point))
16044 (throw 'exit nil))
16045 ((org-up-heading-safe))
16047 (let ((global
16048 (cdr (or (assoc-string property org-file-properties t)
16049 (assoc-string property org-global-properties t)
16050 (assoc-string property org-global-properties-fixed t)))))
16051 (cond ((not global))
16052 (value (setq value (concat global " " value)))
16053 (t (setq value global))))
16054 (throw 'exit nil))))))
16055 (if literal-nil value (org-not-nil value)))))
16057 (defvar org-property-changed-functions nil
16058 "Hook called when the value of a property has changed.
16059 Each hook function should accept two arguments, the name of the property
16060 and the new value.")
16062 (defun org-entry-put (pom property value)
16063 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16065 If the value is nil, it is converted to the empty string. If
16066 it is not a string, an error is raised.
16068 PROPERTY can be any regular property (see
16069 `org-special-properties'). It can also be \"TODO\",
16070 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16072 For the last two properties, VALUE may have any of the special
16073 values \"earlier\" and \"later\". The function then increases or
16074 decreases scheduled or deadline date by one day."
16075 (cond ((null value) (setq value ""))
16076 ((not (stringp value)) (error "Properties values should be strings")))
16077 (org-with-point-at pom
16078 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16079 (org-back-to-heading t)
16080 (org-with-limited-levels (org-back-to-heading t)))
16081 (let ((beg (point)))
16082 (cond
16083 ((equal property "TODO")
16084 (cond ((not (org-string-nw-p value)) (setq value 'none))
16085 ((not (member value org-todo-keywords-1))
16086 (user-error "\"%s\" is not a valid TODO state" value)))
16087 (org-todo value)
16088 (org-set-tags nil 'align))
16089 ((equal property "PRIORITY")
16090 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16091 (org-set-tags nil 'align))
16092 ((equal property "SCHEDULED")
16093 (forward-line)
16094 (if (and (org-looking-at-p org-planning-line-re)
16095 (re-search-forward
16096 org-scheduled-time-regexp (line-end-position) t))
16097 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16098 ((string= value "later") (org-timestamp-change 1 'day))
16099 ((string= value "") (org-schedule '(4)))
16100 (t (org-schedule nil value)))
16101 (if (member value '("earlier" "later" ""))
16102 (call-interactively #'org-schedule)
16103 (org-schedule nil value))))
16104 ((equal property "DEADLINE")
16105 (forward-line)
16106 (if (and (org-looking-at-p org-planning-line-re)
16107 (re-search-forward
16108 org-deadline-time-regexp (line-end-position) t))
16109 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16110 ((string= value "later") (org-timestamp-change 1 'day))
16111 ((string= value "") (org-deadline '(4)))
16112 (t (org-deadline nil value)))
16113 (if (member value '("earlier" "later" ""))
16114 (call-interactively #'org-deadline)
16115 (org-deadline nil value))))
16116 ((member property org-special-properties)
16117 (error "The %s property cannot be set with `org-entry-put'" property))
16119 (let* ((range (org-get-property-block beg 'force))
16120 (end (cdr range))
16121 (case-fold-search t))
16122 (goto-char (car range))
16123 (if (re-search-forward (org-re-property property nil t) end t)
16124 (progn (delete-region (match-beginning 0) (match-end 0))
16125 (goto-char (match-beginning 0)))
16126 (goto-char end)
16127 (insert "\n")
16128 (backward-char))
16129 (insert ":" property ":")
16130 (when value (insert " " value))
16131 (org-indent-line)))))
16132 (run-hook-with-args 'org-property-changed-functions property value)))
16134 (defun org-buffer-property-keys (&optional specials defaults columns)
16135 "Get all property keys in the current buffer.
16137 When SPECIALS is non-nil, also list the special properties that
16138 reflect things like tags and TODO state.
16140 When DEFAULTS is non-nil, also include properties that has
16141 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16142 DESCRIPTION, LOCATION, and LOGGING and others.
16144 When COLUMNS in non-nil, also include property names given in
16145 COLUMN formats in the current buffer."
16146 (let ((case-fold-search t)
16147 (props (append
16148 (and specials org-special-properties)
16149 (and defaults (cons org-effort-property org-default-properties))
16150 nil)))
16151 (org-with-wide-buffer
16152 (goto-char (point-min))
16153 (while (re-search-forward org-property-start-re nil t)
16154 (let ((range (org-get-property-block)))
16155 (catch 'skip
16156 (unless range
16157 (when (and (not (org-before-first-heading-p))
16158 (y-or-n-p (format "Malformed drawer at %d, repair?"
16159 (line-beginning-position))))
16160 (org-get-property-block nil t))
16161 (throw 'skip nil))
16162 (goto-char (car range))
16163 (let ((begin (car range))
16164 (end (cdr range)))
16165 ;; Make sure that found property block is not located
16166 ;; before current point, as it would generate an infloop.
16167 ;; It can happen, for example, in the following
16168 ;; situation:
16170 ;; * Headline
16171 ;; :PROPERTIES:
16172 ;; ...
16173 ;; :END:
16174 ;; *************** Inlinetask
16175 ;; #+BEGIN_EXAMPLE
16176 ;; :PROPERTIES:
16177 ;; #+END_EXAMPLE
16179 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16180 (while (< (point) end)
16181 (let ((p (progn (looking-at org-property-re)
16182 (org-match-string-no-properties 2))))
16183 ;; Only add true property name, not extension symbol.
16184 (add-to-list 'props
16185 (if (not (org-string-match-p "\\+\\'" p)) p
16186 (substring p 0 -1))))
16187 (forward-line))))
16188 (outline-next-heading)))
16189 (when columns
16190 (goto-char (point-min))
16191 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16192 (let ((element (org-element-at-point)))
16193 (when (memq (org-element-type element) '(keyword node-property))
16194 (let ((value (org-element-property :value element))
16195 (start 0))
16196 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16197 (setq start (match-end 0))
16198 (let ((p (org-match-string-no-properties 1 value)))
16199 (unless (member-ignore-case p org-special-properties)
16200 (add-to-list 'props p))))))))))
16201 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16203 (defun org-property-values (key)
16204 "List all non-nil values of property KEY in current buffer."
16205 (org-with-wide-buffer
16206 (goto-char (point-min))
16207 (let ((case-fold-search t)
16208 (re (org-re-property key))
16209 values)
16210 (while (re-search-forward re nil t)
16211 (add-to-list 'values (org-entry-get (point) key)))
16212 values)))
16214 (defun org-insert-property-drawer ()
16215 "Insert a property drawer into the current entry."
16216 (org-with-wide-buffer
16217 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16218 (org-back-to-heading t)
16219 (org-with-limited-levels (org-back-to-heading t)))
16220 (forward-line)
16221 (when (org-looking-at-p org-planning-line-re) (forward-line))
16222 (unless (org-looking-at-p org-property-drawer-re)
16223 (let ((inhibit-read-only t))
16224 (unless (bolp) (insert "\n"))
16225 (let ((begin (point)))
16226 (insert ":PROPERTIES:\n:END:\n")
16227 (org-indent-region begin (point)))))))
16229 (defun org-insert-drawer (&optional arg drawer)
16230 "Insert a drawer at point.
16232 When optional argument ARG is non-nil, insert a property drawer.
16234 Optional argument DRAWER, when non-nil, is a string representing
16235 drawer's name. Otherwise, the user is prompted for a name.
16237 If a region is active, insert the drawer around that region
16238 instead.
16240 Point is left between drawer's boundaries."
16241 (interactive "P")
16242 (let* ((drawer (if arg "PROPERTIES"
16243 (or drawer (read-from-minibuffer "Drawer: ")))))
16244 (cond
16245 ;; With C-u, fall back on `org-insert-property-drawer'
16246 (arg (org-insert-property-drawer))
16247 ;; Check validity of suggested drawer's name.
16248 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16249 (user-error "Invalid drawer name"))
16250 ;; With an active region, insert a drawer at point.
16251 ((not (org-region-active-p))
16252 (progn
16253 (unless (bolp) (insert "\n"))
16254 (insert (format ":%s:\n\n:END:\n" drawer))
16255 (forward-line -2)))
16256 ;; Otherwise, insert the drawer at point
16258 (let ((rbeg (region-beginning))
16259 (rend (copy-marker (region-end))))
16260 (unwind-protect
16261 (progn
16262 (goto-char rbeg)
16263 (beginning-of-line)
16264 (when (save-excursion
16265 (re-search-forward org-outline-regexp-bol rend t))
16266 (user-error "Drawers cannot contain headlines"))
16267 ;; Position point at the beginning of the first
16268 ;; non-blank line in region. Insert drawer's opening
16269 ;; there, then indent it.
16270 (org-skip-whitespace)
16271 (beginning-of-line)
16272 (insert ":" drawer ":\n")
16273 (forward-line -1)
16274 (indent-for-tab-command)
16275 ;; Move point to the beginning of the first blank line
16276 ;; after the last non-blank line in region. Insert
16277 ;; drawer's closing, then indent it.
16278 (goto-char rend)
16279 (skip-chars-backward " \r\t\n")
16280 (insert "\n:END:")
16281 (deactivate-mark t)
16282 (indent-for-tab-command)
16283 (unless (eolp) (insert "\n")))
16284 ;; Clear marker, whatever the outcome of insertion is.
16285 (set-marker rend nil)))))))
16287 (defvar org-property-set-functions-alist nil
16288 "Property set function alist.
16289 Each entry should have the following format:
16291 (PROPERTY . READ-FUNCTION)
16293 The read function will be called with the same argument as
16294 `org-completing-read'.")
16296 (defun org-set-property-function (property)
16297 "Get the function that should be used to set PROPERTY.
16298 This is computed according to `org-property-set-functions-alist'."
16299 (or (cdr (assoc property org-property-set-functions-alist))
16300 'org-completing-read))
16302 (defun org-read-property-value (property)
16303 "Read PROPERTY value from user."
16304 (let* ((completion-ignore-case t)
16305 (allowed (org-property-get-allowed-values nil property 'table))
16306 (cur (org-entry-get nil property))
16307 (prompt (concat property " value"
16308 (if (and cur (string-match "\\S-" cur))
16309 (concat " [" cur "]") "") ": "))
16310 (set-function (org-set-property-function property))
16311 (val (if allowed
16312 (funcall set-function prompt allowed nil
16313 (not (get-text-property 0 'org-unrestricted
16314 (caar allowed))))
16315 (let (org-completion-use-ido org-completion-use-iswitchb)
16316 (funcall set-function prompt
16317 (mapcar 'list (org-property-values property))
16318 nil nil "" nil cur)))))
16319 (org-trim val)))
16321 (defvar org-last-set-property nil)
16322 (defvar org-last-set-property-value nil)
16323 (defun org-read-property-name ()
16324 "Read a property name."
16325 (let ((completion-ignore-case t)
16326 (default-prop (or (and (org-at-property-p)
16327 (org-match-string-no-properties 2))
16328 org-last-set-property)))
16329 (org-completing-read
16330 (concat "Property"
16331 (if default-prop (concat " [" default-prop "]") "")
16332 ": ")
16333 (mapcar #'list (org-buffer-property-keys nil t t))
16334 nil nil nil nil default-prop)))
16336 (defun org-set-property-and-value (use-last)
16337 "Allow to set [PROPERTY]: [value] direction from prompt.
16338 When use-default, don't even ask, just use the last
16339 \"[PROPERTY]: [value]\" string from the history."
16340 (interactive "P")
16341 (let* ((completion-ignore-case t)
16342 (pv (or (and use-last org-last-set-property-value)
16343 (org-completing-read
16344 "Enter a \"[Property]: [value]\" pair: "
16345 nil nil nil nil nil
16346 org-last-set-property-value)))
16347 prop val)
16348 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16349 (setq prop (match-string 1 pv)
16350 val (match-string 2 pv))
16351 (org-set-property prop val))))
16353 (defun org-set-property (property value)
16354 "In the current entry, set PROPERTY to VALUE.
16355 When called interactively, this will prompt for a property name, offering
16356 completion on existing and default properties. And then it will prompt
16357 for a value, offering completion either on allowed values (via an inherited
16358 xxx_ALL property) or on existing values in other instances of this property
16359 in the current file."
16360 (interactive (list nil nil))
16361 (let* ((property (or property (org-read-property-name)))
16362 (value (or value (org-read-property-value property)))
16363 (fn (cdr (assoc property org-properties-postprocess-alist))))
16364 (setq org-last-set-property property)
16365 (setq org-last-set-property-value (concat property ": " value))
16366 ;; Possibly postprocess the inserted value:
16367 (when fn (setq value (funcall fn value)))
16368 (unless (equal (org-entry-get nil property) value)
16369 (org-entry-put nil property value))))
16371 (defun org-find-property (property &optional value)
16372 "Find first entry in buffer that sets PROPERTY.
16374 When optional argument VALUE is non-nil, only consider an entry
16375 if it contains PROPERTY set to this value. If PROPERTY should be
16376 explicitly set to nil, use string \"nil\" for VALUE.
16378 Return position where the entry begins, or nil if there is no
16379 such entry. If narrowing is in effect, only search the visible
16380 part of the buffer."
16381 (save-excursion
16382 (goto-char (point-min))
16383 (let ((case-fold-search t)
16384 (re (org-re-property property nil (not value) value)))
16385 (catch 'exit
16386 (while (re-search-forward re nil t)
16387 (when (if value (org-at-property-p)
16388 (org-entry-get (point) property nil t))
16389 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16391 (defun org-delete-property (property)
16392 "In the current entry, delete PROPERTY."
16393 (interactive
16394 (let* ((completion-ignore-case t)
16395 (cat (org-entry-get (point) "CATEGORY"))
16396 (props0 (org-entry-properties nil 'standard))
16397 (props (if cat props0
16398 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16399 (prop (if (< 1 (length props))
16400 (org-icompleting-read "Property: " props nil t)
16401 (caar props))))
16402 (list prop)))
16403 (if (not property)
16404 (message "No property to delete in this entry")
16405 (org-entry-delete nil property)
16406 (message "Property \"%s\" deleted" property)))
16408 (defun org-delete-property-globally (property)
16409 "Remove PROPERTY globally, from all entries.
16410 This function ignores narrowing, if any."
16411 (interactive
16412 (let* ((completion-ignore-case t)
16413 (prop (org-icompleting-read
16414 "Globally remove property: "
16415 (mapcar #'list (org-buffer-property-keys)))))
16416 (list prop)))
16417 (org-with-wide-buffer
16418 (goto-char (point-min))
16419 (let ((count 0)
16420 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16421 (while (re-search-forward re nil t)
16422 (when (org-entry-delete (point) property) (incf count)))
16423 (message "Property \"%s\" removed from %d entries" property count))))
16425 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16427 (defun org-compute-property-at-point ()
16428 "Compute the property at point.
16429 This looks for an enclosing column format, extracts the operator and
16430 then applies it to the property in the column format's scope."
16431 (interactive)
16432 (unless (org-at-property-p)
16433 (user-error "Not at a property"))
16434 (let ((prop (org-match-string-no-properties 2)))
16435 (org-columns-get-format-and-top-level)
16436 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16437 (user-error "No operator defined for property %s" prop))
16438 (org-columns-compute prop)))
16440 (defvar org-property-allowed-value-functions nil
16441 "Hook for functions supplying allowed values for a specific property.
16442 The functions must take a single argument, the name of the property, and
16443 return a flat list of allowed values. If \":ETC\" is one of
16444 the values, this means that these values are intended as defaults for
16445 completion, but that other values should be allowed too.
16446 The functions must return nil if they are not responsible for this
16447 property.")
16449 (defun org-property-get-allowed-values (pom property &optional table)
16450 "Get allowed values for the property PROPERTY.
16451 When TABLE is non-nil, return an alist that can directly be used for
16452 completion."
16453 (let (vals)
16454 (cond
16455 ((equal property "TODO")
16456 (setq vals (org-with-point-at pom
16457 (append org-todo-keywords-1 '("")))))
16458 ((equal property "PRIORITY")
16459 (let ((n org-lowest-priority))
16460 (while (>= n org-highest-priority)
16461 (push (char-to-string n) vals)
16462 (setq n (1- n)))))
16463 ((equal property "CATEGORY"))
16464 ((member property org-special-properties))
16465 ((setq vals (run-hook-with-args-until-success
16466 'org-property-allowed-value-functions property)))
16468 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16469 (when (and vals (string-match "\\S-" vals))
16470 (setq vals (car (read-from-string (concat "(" vals ")"))))
16471 (setq vals (mapcar (lambda (x)
16472 (cond ((stringp x) x)
16473 ((numberp x) (number-to-string x))
16474 ((symbolp x) (symbol-name x))
16475 (t "???")))
16476 vals)))))
16477 (when (member ":ETC" vals)
16478 (setq vals (remove ":ETC" vals))
16479 (org-add-props (car vals) '(org-unrestricted t)))
16480 (if table (mapcar 'list vals) vals)))
16482 (defun org-property-previous-allowed-value (&optional previous)
16483 "Switch to the next allowed value for this property."
16484 (interactive)
16485 (org-property-next-allowed-value t))
16487 (defun org-property-next-allowed-value (&optional previous)
16488 "Switch to the next allowed value for this property."
16489 (interactive)
16490 (unless (org-at-property-p)
16491 (user-error "Not at a property"))
16492 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16493 (key (match-string 2))
16494 (value (match-string 3))
16495 (allowed (or (org-property-get-allowed-values (point) key)
16496 (and (member value '("[ ]" "[-]" "[X]"))
16497 '("[ ]" "[X]"))))
16498 (heading (save-match-data (nth 4 (org-heading-components))))
16499 nval)
16500 (unless allowed
16501 (user-error "Allowed values for this property have not been defined"))
16502 (if previous (setq allowed (reverse allowed)))
16503 (if (member value allowed)
16504 (setq nval (car (cdr (member value allowed)))))
16505 (setq nval (or nval (car allowed)))
16506 (if (equal nval value)
16507 (user-error "Only one allowed value for this property"))
16508 (org-at-property-p)
16509 (replace-match (concat " :" key ": " nval) t t)
16510 (org-indent-line)
16511 (beginning-of-line 1)
16512 (skip-chars-forward " \t")
16513 (when (equal prop org-effort-property)
16514 (org-refresh-property
16515 '((effort . identity)
16516 (effort-minutes . org-duration-string-to-minutes))
16517 nval)
16518 (when (string= org-clock-current-task heading)
16519 (setq org-clock-effort nval)
16520 (org-clock-update-mode-line)))
16521 (run-hook-with-args 'org-property-changed-functions key nval)))
16523 (defun org-find-olp (path &optional this-buffer)
16524 "Return a marker pointing to the entry at outline path OLP.
16525 If anything goes wrong, throw an error.
16526 You can wrap this call to catch the error like this:
16528 (condition-case msg
16529 (org-mobile-locate-entry (match-string 4))
16530 (error (nth 1 msg)))
16532 The return value will then be either a string with the error message,
16533 or a marker if everything is OK.
16535 If THIS-BUFFER is set, the outline path does not contain a file,
16536 only headings."
16537 (let* ((file (if this-buffer buffer-file-name (pop path)))
16538 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16539 (level 1)
16540 (lmin 1)
16541 (lmax 1)
16542 limit re end found pos heading cnt flevel)
16543 (unless buffer (error "File not found :%s" file))
16544 (with-current-buffer buffer
16545 (save-excursion
16546 (save-restriction
16547 (widen)
16548 (setq limit (point-max))
16549 (goto-char (point-min))
16550 (dolist (heading path)
16551 (setq re (format org-complex-heading-regexp-format
16552 (regexp-quote heading)))
16553 (setq cnt 0 pos (point))
16554 (while (re-search-forward re end t)
16555 (setq level (- (match-end 1) (match-beginning 1)))
16556 (if (and (>= level lmin) (<= level lmax))
16557 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16558 (when (= cnt 0) (error "Heading not found on level %d: %s"
16559 lmax heading))
16560 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16561 lmax heading))
16562 (goto-char found)
16563 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16564 (setq end (save-excursion (org-end-of-subtree t t))))
16565 (when (org-at-heading-p)
16566 (point-marker)))))))
16568 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16569 "Find node HEADING in BUFFER.
16570 Return a marker to the heading if it was found, or nil if not.
16571 If POS-ONLY is set, return just the position instead of a marker.
16573 The heading text must match exact, but it may have a TODO keyword,
16574 a priority cookie and tags in the standard locations."
16575 (with-current-buffer (or buffer (current-buffer))
16576 (save-excursion
16577 (save-restriction
16578 (widen)
16579 (goto-char (point-min))
16580 (let (case-fold-search)
16581 (if (re-search-forward
16582 (format org-complex-heading-regexp-format
16583 (regexp-quote heading)) nil t)
16584 (if pos-only
16585 (match-beginning 0)
16586 (move-marker (make-marker) (match-beginning 0)))))))))
16588 (defun org-find-exact-heading-in-directory (heading &optional dir)
16589 "Find Org node headline HEADING in all .org files in directory DIR.
16590 When the target headline is found, return a marker to this location."
16591 (let ((files (directory-files (or dir default-directory)
16592 t "\\`[^.#].*\\.org\\'"))
16593 visiting m buffer)
16594 (catch 'found
16595 (dolist (file files)
16596 (message "trying %s" file)
16597 (setq visiting (org-find-base-buffer-visiting file))
16598 (setq buffer (or visiting (find-file-noselect file)))
16599 (setq m (org-find-exact-headline-in-buffer
16600 heading buffer))
16601 (when (and (not m) (not visiting)) (kill-buffer buffer))
16602 (and m (throw 'found m))))))
16604 (defun org-find-entry-with-id (ident)
16605 "Locate the entry that contains the ID property with exact value IDENT.
16606 IDENT can be a string, a symbol or a number, this function will search for
16607 the string representation of it.
16608 Return the position where this entry starts, or nil if there is no such entry."
16609 (interactive "sID: ")
16610 (let ((id (cond
16611 ((stringp ident) ident)
16612 ((symbolp ident) (symbol-name ident))
16613 ((numberp ident) (number-to-string ident))
16614 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16615 (org-with-wide-buffer (org-find-property "ID" id))))
16617 ;;;; Timestamps
16619 (defvar org-last-changed-timestamp nil)
16620 (defvar org-last-inserted-timestamp nil
16621 "The last time stamp inserted with `org-insert-time-stamp'.")
16622 (defvar org-ts-what) ; dynamically scoped parameter
16624 (defun org-time-stamp (arg &optional inactive)
16625 "Prompt for a date/time and insert a time stamp.
16627 If the user specifies a time like HH:MM or if this command is
16628 called with at least one prefix argument, the time stamp contains
16629 the date and the time. Otherwise, only the date is included.
16631 All parts of a date not specified by the user are filled in from
16632 the timestamp at point, if any, or the current date/time
16633 otherwise.
16635 If there is already a timestamp at the cursor, it is replaced.
16637 With two universal prefix arguments, insert an active timestamp
16638 with the current time without prompting the user.
16640 When called from lisp, the timestamp is inactive if INACTIVE is
16641 non-nil."
16642 (interactive "P")
16643 (let* ((ts (cond
16644 ((org-at-date-range-p t)
16645 (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
16646 ((org-at-timestamp-p t) (match-string 0))))
16647 ;; Default time is either the timestamp at point or today.
16648 ;; When entering a range, only the range start is considered.
16649 (default-time (if (not ts) (current-time)
16650 (apply #'encode-time (org-parse-time-string ts))))
16651 (default-input (and ts (org-get-compact-tod ts)))
16652 (repeater (and ts
16653 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16654 (match-string 0 ts)))
16655 org-time-was-given
16656 org-end-time-was-given
16657 (time
16658 (and (if (equal arg '(16)) (current-time)
16659 ;; Preserve `this-command' and `last-command'.
16660 (let ((this-command this-command)
16661 (last-command last-command))
16662 (org-read-date
16663 arg 'totime nil nil default-time default-input
16664 inactive))))))
16665 (cond
16666 ((and ts
16667 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16668 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16669 (insert "--")
16670 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16672 ;; Make sure we're on a timestamp. When in the middle of a date
16673 ;; range, move arbitrarily to range end.
16674 (unless (org-at-timestamp-p t)
16675 (skip-chars-forward "-")
16676 (org-at-timestamp-p t))
16677 (replace-match "")
16678 (setq org-last-changed-timestamp
16679 (org-insert-time-stamp
16680 time (or org-time-was-given arg)
16681 inactive nil nil (list org-end-time-was-given)))
16682 (when repeater
16683 (backward-char)
16684 (insert " " repeater)
16685 (setq org-last-changed-timestamp
16686 (concat (substring org-last-inserted-timestamp 0 -1)
16687 " " repeater ">")))
16688 (message "Timestamp updated"))
16689 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16690 (t (org-insert-time-stamp
16691 time (or org-time-was-given arg) inactive nil nil
16692 (list org-end-time-was-given))))))
16694 ;; FIXME: can we use this for something else, like computing time differences?
16695 (defun org-get-compact-tod (s)
16696 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16697 (let* ((t1 (match-string 1 s))
16698 (h1 (string-to-number (match-string 2 s)))
16699 (m1 (string-to-number (match-string 3 s)))
16700 (t2 (and (match-end 4) (match-string 5 s)))
16701 (h2 (and t2 (string-to-number (match-string 6 s))))
16702 (m2 (and t2 (string-to-number (match-string 7 s))))
16703 dh dm)
16704 (if (not t2)
16706 (setq dh (- h2 h1) dm (- m2 m1))
16707 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16708 (concat t1 "+" (number-to-string dh)
16709 (and (/= 0 dm) (format ":%02d" dm)))))))
16711 (defun org-time-stamp-inactive (&optional arg)
16712 "Insert an inactive time stamp.
16713 An inactive time stamp is enclosed in square brackets instead of angle
16714 brackets. It is inactive in the sense that it does not trigger agenda entries,
16715 does not link to the calendar and cannot be changed with the S-cursor keys.
16716 So these are more for recording a certain time/date."
16717 (interactive "P")
16718 (org-time-stamp arg 'inactive))
16720 (defvar org-date-ovl (make-overlay 1 1))
16721 (overlay-put org-date-ovl 'face 'org-date-selected)
16722 (org-detach-overlay org-date-ovl)
16724 (defvar org-ans1) ; dynamically scoped parameter
16725 (defvar org-ans2) ; dynamically scoped parameter
16727 (defvar org-plain-time-of-day-regexp) ; defined below
16729 (defvar org-overriding-default-time nil) ; dynamically scoped
16730 (defvar org-read-date-overlay nil)
16731 (defvar org-dcst nil) ; dynamically scoped
16732 (defvar org-read-date-history nil)
16733 (defvar org-read-date-final-answer nil)
16734 (defvar org-read-date-analyze-futurep nil)
16735 (defvar org-read-date-analyze-forced-year nil)
16736 (defvar org-read-date-inactive)
16738 (defvar org-read-date-minibuffer-local-map
16739 (let* ((map (make-sparse-keymap)))
16740 (set-keymap-parent map minibuffer-local-map)
16741 (org-defkey map (kbd ".")
16742 (lambda () (interactive)
16743 ;; Are we at the beginning of the prompt?
16744 (if (looking-back "^[^:]+: ")
16745 (org-eval-in-calendar '(calendar-goto-today))
16746 (insert "."))))
16747 (org-defkey map (kbd "C-.")
16748 (lambda () (interactive)
16749 (org-eval-in-calendar '(calendar-goto-today))))
16750 (org-defkey map [(meta shift left)]
16751 (lambda () (interactive)
16752 (org-eval-in-calendar '(calendar-backward-month 1))))
16753 (org-defkey map [(meta shift right)]
16754 (lambda () (interactive)
16755 (org-eval-in-calendar '(calendar-forward-month 1))))
16756 (org-defkey map [(meta shift up)]
16757 (lambda () (interactive)
16758 (org-eval-in-calendar '(calendar-backward-year 1))))
16759 (org-defkey map [(meta shift down)]
16760 (lambda () (interactive)
16761 (org-eval-in-calendar '(calendar-forward-year 1))))
16762 (org-defkey map [?\e (shift left)]
16763 (lambda () (interactive)
16764 (org-eval-in-calendar '(calendar-backward-month 1))))
16765 (org-defkey map [?\e (shift right)]
16766 (lambda () (interactive)
16767 (org-eval-in-calendar '(calendar-forward-month 1))))
16768 (org-defkey map [?\e (shift up)]
16769 (lambda () (interactive)
16770 (org-eval-in-calendar '(calendar-backward-year 1))))
16771 (org-defkey map [?\e (shift down)]
16772 (lambda () (interactive)
16773 (org-eval-in-calendar '(calendar-forward-year 1))))
16774 (org-defkey map [(shift up)]
16775 (lambda () (interactive)
16776 (org-eval-in-calendar '(calendar-backward-week 1))))
16777 (org-defkey map [(shift down)]
16778 (lambda () (interactive)
16779 (org-eval-in-calendar '(calendar-forward-week 1))))
16780 (org-defkey map [(shift left)]
16781 (lambda () (interactive)
16782 (org-eval-in-calendar '(calendar-backward-day 1))))
16783 (org-defkey map [(shift right)]
16784 (lambda () (interactive)
16785 (org-eval-in-calendar '(calendar-forward-day 1))))
16786 (org-defkey map "!"
16787 (lambda () (interactive)
16788 (org-eval-in-calendar '(diary-view-entries))
16789 (message "")))
16790 (org-defkey map ">"
16791 (lambda () (interactive)
16792 (org-eval-in-calendar '(calendar-scroll-left 1))))
16793 (org-defkey map "<"
16794 (lambda () (interactive)
16795 (org-eval-in-calendar '(calendar-scroll-right 1))))
16796 (org-defkey map "\C-v"
16797 (lambda () (interactive)
16798 (org-eval-in-calendar
16799 '(calendar-scroll-left-three-months 1))))
16800 (org-defkey map "\M-v"
16801 (lambda () (interactive)
16802 (org-eval-in-calendar
16803 '(calendar-scroll-right-three-months 1))))
16804 map)
16805 "Keymap for minibuffer commands when using `org-read-date'.")
16807 (defvar org-def)
16808 (defvar org-defdecode)
16809 (defvar org-with-time)
16811 (defun org-read-date (&optional org-with-time to-time from-string prompt
16812 default-time default-input inactive)
16813 "Read a date, possibly a time, and make things smooth for the user.
16814 The prompt will suggest to enter an ISO date, but you can also enter anything
16815 which will at least partially be understood by `parse-time-string'.
16816 Unrecognized parts of the date will default to the current day, month, year,
16817 hour and minute. If this command is called to replace a timestamp at point,
16818 or to enter the second timestamp of a range, the default time is taken
16819 from the existing stamp. Furthermore, the command prefers the future,
16820 so if you are giving a date where the year is not given, and the day-month
16821 combination is already past in the current year, it will assume you
16822 mean next year. For details, see the manual. A few examples:
16824 3-2-5 --> 2003-02-05
16825 feb 15 --> currentyear-02-15
16826 2/15 --> currentyear-02-15
16827 sep 12 9 --> 2009-09-12
16828 12:45 --> today 12:45
16829 22 sept 0:34 --> currentyear-09-22 0:34
16830 12 --> currentyear-currentmonth-12
16831 Fri --> nearest Friday after today
16832 -Tue --> last Tuesday
16833 etc.
16835 Furthermore you can specify a relative date by giving, as the *first* thing
16836 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16837 change in days weeks, months, years.
16838 With a single plus or minus, the date is relative to today. With a double
16839 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16840 +4d --> four days from today
16841 +4 --> same as above
16842 +2w --> two weeks from today
16843 ++5 --> five days from default date
16845 The function understands only English month and weekday abbreviations.
16847 While prompting, a calendar is popped up - you can also select the
16848 date with the mouse (button 1). The calendar shows a period of three
16849 months. To scroll it to other months, use the keys `>' and `<'.
16850 If you don't like the calendar, turn it off with
16851 \(setq org-read-date-popup-calendar nil)
16853 With optional argument TO-TIME, the date will immediately be converted
16854 to an internal time.
16855 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16856 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16857 still enter a time, and this function will inform the calling routine
16858 about this change. The calling routine may then choose to change the
16859 format used to insert the time stamp into the buffer to include the time.
16860 With optional argument FROM-STRING, read from this string instead from
16861 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16862 the time/date that is used for everything that is not specified by the
16863 user."
16864 (require 'parse-time)
16865 (let* ((org-time-stamp-rounding-minutes
16866 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16867 (org-dcst org-display-custom-times)
16868 (ct (org-current-time))
16869 (org-def (or org-overriding-default-time default-time ct))
16870 (org-defdecode (decode-time org-def))
16871 (dummy (progn
16872 (when (< (nth 2 org-defdecode) org-extend-today-until)
16873 (setcar (nthcdr 2 org-defdecode) -1)
16874 (setcar (nthcdr 1 org-defdecode) 59)
16875 (setq org-def (apply 'encode-time org-defdecode)
16876 org-defdecode (decode-time org-def)))))
16877 (cur-frame (selected-frame))
16878 (mouse-autoselect-window nil) ; Don't let the mouse jump
16879 (calendar-frame-setup nil)
16880 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16881 (calendar-move-hook nil)
16882 (calendar-view-diary-initially-flag nil)
16883 (calendar-view-holidays-initially-flag nil)
16884 (timestr (format-time-string
16885 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16886 (prompt (concat (if prompt (concat prompt " ") "")
16887 (format "Date+time [%s]: " timestr)))
16888 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16890 (cond
16891 (from-string (setq ans from-string))
16892 (org-read-date-popup-calendar
16893 (save-excursion
16894 (save-window-excursion
16895 (calendar)
16896 (when (eq calendar-setup 'calendar-only)
16897 (setq cal-frame
16898 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16899 (select-frame cal-frame))
16900 (org-eval-in-calendar '(setq cursor-type nil) t)
16901 (unwind-protect
16902 (progn
16903 (calendar-forward-day (- (time-to-days org-def)
16904 (calendar-absolute-from-gregorian
16905 (calendar-current-date))))
16906 (org-eval-in-calendar nil t)
16907 (let* ((old-map (current-local-map))
16908 (map (copy-keymap calendar-mode-map))
16909 (minibuffer-local-map
16910 (copy-keymap org-read-date-minibuffer-local-map)))
16911 (org-defkey map (kbd "RET") 'org-calendar-select)
16912 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16913 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16914 (unwind-protect
16915 (progn
16916 (use-local-map map)
16917 (setq org-read-date-inactive inactive)
16918 (add-hook 'post-command-hook 'org-read-date-display)
16919 (setq org-ans0 (read-string prompt default-input
16920 'org-read-date-history nil))
16921 ;; org-ans0: from prompt
16922 ;; org-ans1: from mouse click
16923 ;; org-ans2: from calendar motion
16924 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16925 (remove-hook 'post-command-hook 'org-read-date-display)
16926 (use-local-map old-map)
16927 (when org-read-date-overlay
16928 (delete-overlay org-read-date-overlay)
16929 (setq org-read-date-overlay nil)))))
16930 (bury-buffer "*Calendar*")
16931 (when cal-frame
16932 (delete-frame cal-frame)
16933 (select-frame-set-input-focus cur-frame))))))
16935 (t ; Naked prompt only
16936 (unwind-protect
16937 (setq ans (read-string prompt default-input
16938 'org-read-date-history timestr))
16939 (when org-read-date-overlay
16940 (delete-overlay org-read-date-overlay)
16941 (setq org-read-date-overlay nil)))))
16943 (setq final (org-read-date-analyze ans org-def org-defdecode))
16945 (when org-read-date-analyze-forced-year
16946 (message "Year was forced into %s"
16947 (if org-read-date-force-compatible-dates
16948 "compatible range (1970-2037)"
16949 "range representable on this machine"))
16950 (ding))
16952 ;; One round trip to get rid of 34th of August and stuff like that....
16953 (setq final (decode-time (apply 'encode-time final)))
16955 (setq org-read-date-final-answer ans)
16957 (if to-time
16958 (apply 'encode-time final)
16959 (if (and (boundp 'org-time-was-given) org-time-was-given)
16960 (format "%04d-%02d-%02d %02d:%02d"
16961 (nth 5 final) (nth 4 final) (nth 3 final)
16962 (nth 2 final) (nth 1 final))
16963 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16965 (defun org-read-date-display ()
16966 "Display the current date prompt interpretation in the minibuffer."
16967 (when org-read-date-display-live
16968 (when org-read-date-overlay
16969 (delete-overlay org-read-date-overlay))
16970 (when (minibufferp (current-buffer))
16971 (save-excursion
16972 (end-of-line 1)
16973 (while (not (equal (buffer-substring
16974 (max (point-min) (- (point) 4)) (point))
16975 " "))
16976 (insert " ")))
16977 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16978 " " (or org-ans1 org-ans2)))
16979 (org-end-time-was-given nil)
16980 (f (org-read-date-analyze ans org-def org-defdecode))
16981 (fmts (if org-dcst
16982 org-time-stamp-custom-formats
16983 org-time-stamp-formats))
16984 (fmt (if (or org-with-time
16985 (and (boundp 'org-time-was-given) org-time-was-given))
16986 (cdr fmts)
16987 (car fmts)))
16988 (txt (format-time-string fmt (apply 'encode-time f)))
16989 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16990 (txt (concat "=> " txt)))
16991 (when (and org-end-time-was-given
16992 (string-match org-plain-time-of-day-regexp txt))
16993 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16994 org-end-time-was-given
16995 (substring txt (match-end 0)))))
16996 (when org-read-date-analyze-futurep
16997 (setq txt (concat txt " (=>F)")))
16998 (setq org-read-date-overlay
16999 (make-overlay (1- (point-at-eol)) (point-at-eol)))
17000 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
17002 (defun org-read-date-analyze (ans org-def org-defdecode)
17003 "Analyze the combined answer of the date prompt."
17004 ;; FIXME: cleanup and comment
17005 ;; Pass `current-time' result to `decode-time' (instead of calling
17006 ;; without arguments) so that only `current-time' has to be
17007 ;; overriden in tests.
17008 (let ((nowdecode (decode-time (current-time)))
17009 delta deltan deltaw deltadef year month day
17010 hour minute second wday pm h2 m2 tl wday1
17011 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
17012 (setq org-read-date-analyze-futurep nil
17013 org-read-date-analyze-forced-year nil)
17014 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
17015 (setq ans "+0"))
17017 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
17018 (setq ans (replace-match "" t t ans)
17019 deltan (car delta)
17020 deltaw (nth 1 delta)
17021 deltadef (nth 2 delta)))
17023 ;; Check if there is an iso week date in there. If yes, store the
17024 ;; info and postpone interpreting it until the rest of the parsing
17025 ;; is done.
17026 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
17027 (setq iso-year (if (match-end 1)
17028 (org-small-year-to-year
17029 (string-to-number (match-string 1 ans))))
17030 iso-weekday (if (match-end 3)
17031 (string-to-number (match-string 3 ans)))
17032 iso-week (string-to-number (match-string 2 ans)))
17033 (setq ans (replace-match "" t t ans)))
17035 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
17036 (when (string-match
17037 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
17038 (setq year (if (match-end 2)
17039 (string-to-number (match-string 2 ans))
17040 (progn (setq kill-year t)
17041 (string-to-number (format-time-string "%Y"))))
17042 month (string-to-number (match-string 3 ans))
17043 day (string-to-number (match-string 4 ans)))
17044 (if (< year 100) (setq year (+ 2000 year)))
17045 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17046 t nil ans)))
17048 ;; Help matching dotted european dates
17049 (when (string-match
17050 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
17051 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
17052 (setq kill-year t)
17053 (string-to-number (format-time-string "%Y")))
17054 day (string-to-number (match-string 1 ans))
17055 month (string-to-number (match-string 2 ans))
17056 ans (replace-match (format "%04d-%02d-%02d" year month day)
17057 t nil ans)))
17059 ;; Help matching american dates, like 5/30 or 5/30/7
17060 (when (string-match
17061 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17062 (setq year (if (match-end 4)
17063 (string-to-number (match-string 4 ans))
17064 (progn (setq kill-year t)
17065 (string-to-number (format-time-string "%Y"))))
17066 month (string-to-number (match-string 1 ans))
17067 day (string-to-number (match-string 2 ans)))
17068 (if (< year 100) (setq year (+ 2000 year)))
17069 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17070 t nil ans)))
17071 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17072 ;; If there is a time with am/pm, and *no* time without it, we convert
17073 ;; so that matching will be successful.
17074 (loop for i from 1 to 2 do ; twice, for end time as well
17075 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17076 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17077 (setq hour (string-to-number (match-string 1 ans))
17078 minute (if (match-end 3)
17079 (string-to-number (match-string 3 ans))
17081 pm (equal ?p
17082 (string-to-char (downcase (match-string 4 ans)))))
17083 (if (and (= hour 12) (not pm))
17084 (setq hour 0)
17085 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17086 (setq ans (replace-match (format "%02d:%02d" hour minute)
17087 t t ans))))
17089 ;; Check if a time range is given as a duration
17090 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17091 (setq hour (string-to-number (match-string 1 ans))
17092 h2 (+ hour (string-to-number (match-string 3 ans)))
17093 minute (string-to-number (match-string 2 ans))
17094 m2 (+ minute (if (match-end 5) (string-to-number
17095 (match-string 5 ans))0)))
17096 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17097 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17098 t t ans)))
17100 ;; Check if there is a time range
17101 (when (boundp 'org-end-time-was-given)
17102 (setq org-time-was-given nil)
17103 (when (and (string-match org-plain-time-of-day-regexp ans)
17104 (match-end 8))
17105 (setq org-end-time-was-given (match-string 8 ans))
17106 (setq ans (concat (substring ans 0 (match-beginning 7))
17107 (substring ans (match-end 7))))))
17109 (setq tl (parse-time-string ans)
17110 day (or (nth 3 tl) (nth 3 org-defdecode))
17111 month
17112 (cond ((nth 4 tl))
17113 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17114 ;; Day was specified. Make sure DAY+MONTH
17115 ;; combination happens in the future.
17116 ((nth 3 tl)
17117 (setq futurep t)
17118 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17119 (nth 4 nowdecode)))
17120 (t (nth 4 org-defdecode)))
17121 year
17122 (cond ((and (not kill-year) (nth 5 tl)))
17123 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17124 ;; Month was guessed in the future and is at least
17125 ;; equal to NOWDECODE's. Fix year accordingly.
17126 (futurep
17127 (if (or (> month (nth 4 nowdecode))
17128 (>= day (nth 3 nowdecode)))
17129 (nth 5 nowdecode)
17130 (1+ (nth 5 nowdecode))))
17131 ;; Month was specified. Make sure MONTH+YEAR
17132 ;; combination happens in the future.
17133 ((nth 4 tl)
17134 (setq futurep t)
17135 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17136 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17137 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17138 (t (nth 5 nowdecode))))
17139 (t (nth 5 org-defdecode)))
17140 hour (or (nth 2 tl) (nth 2 org-defdecode))
17141 minute (or (nth 1 tl) (nth 1 org-defdecode))
17142 second (or (nth 0 tl) 0)
17143 wday (nth 6 tl))
17145 (when (and (eq org-read-date-prefer-future 'time)
17146 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17147 (equal day (nth 3 nowdecode))
17148 (equal month (nth 4 nowdecode))
17149 (equal year (nth 5 nowdecode))
17150 (nth 2 tl)
17151 (or (< (nth 2 tl) (nth 2 nowdecode))
17152 (and (= (nth 2 tl) (nth 2 nowdecode))
17153 (nth 1 tl)
17154 (< (nth 1 tl) (nth 1 nowdecode)))))
17155 (setq day (1+ day)
17156 futurep t))
17158 ;; Special date definitions below
17159 (cond
17160 (iso-week
17161 ;; There was an iso week
17162 (require 'cal-iso)
17163 (setq futurep nil)
17164 (setq year (or iso-year year)
17165 day (or iso-weekday wday 1)
17166 wday nil ; to make sure that the trigger below does not match
17167 iso-date (calendar-gregorian-from-absolute
17168 (calendar-iso-to-absolute
17169 (list iso-week day year))))
17170 ; FIXME: Should we also push ISO weeks into the future?
17171 ; (when (and org-read-date-prefer-future
17172 ; (not iso-year)
17173 ; (< (calendar-absolute-from-gregorian iso-date)
17174 ; (time-to-days (current-time))))
17175 ; (setq year (1+ year)
17176 ; iso-date (calendar-gregorian-from-absolute
17177 ; (calendar-iso-to-absolute
17178 ; (list iso-week day year)))))
17179 (setq month (car iso-date)
17180 year (nth 2 iso-date)
17181 day (nth 1 iso-date)))
17182 (deltan
17183 (setq futurep nil)
17184 (unless deltadef
17185 ;; Pass `current-time' result to `decode-time' (instead of
17186 ;; calling without arguments) so that only `current-time' has
17187 ;; to be overriden in tests.
17188 (let ((now (decode-time (current-time))))
17189 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17190 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17191 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17192 ((equal deltaw "m") (setq month (+ month deltan)))
17193 ((equal deltaw "y") (setq year (+ year deltan)))))
17194 ((and wday (not (nth 3 tl)))
17195 ;; Weekday was given, but no day, so pick that day in the week
17196 ;; on or after the derived date.
17197 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17198 (unless (equal wday wday1)
17199 (setq day (+ day (% (- wday wday1 -7) 7))))))
17200 (if (and (boundp 'org-time-was-given)
17201 (nth 2 tl))
17202 (setq org-time-was-given t))
17203 (if (< year 100) (setq year (+ 2000 year)))
17204 ;; Check of the date is representable
17205 (if org-read-date-force-compatible-dates
17206 (progn
17207 (if (< year 1970)
17208 (setq year 1970 org-read-date-analyze-forced-year t))
17209 (if (> year 2037)
17210 (setq year 2037 org-read-date-analyze-forced-year t)))
17211 (condition-case nil
17212 (ignore (encode-time second minute hour day month year))
17213 (error
17214 (setq year (nth 5 org-defdecode))
17215 (setq org-read-date-analyze-forced-year t))))
17216 (setq org-read-date-analyze-futurep futurep)
17217 (list second minute hour day month year)))
17219 (defvar parse-time-weekdays)
17220 (defun org-read-date-get-relative (s today default)
17221 "Check string S for special relative date string.
17222 TODAY and DEFAULT are internal times, for today and for a default.
17223 Return shift list (N what def-flag)
17224 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17225 N is the number of WHATs to shift.
17226 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17227 the DEFAULT date rather than TODAY."
17228 (require 'parse-time)
17229 (when (and
17230 (string-match
17231 (concat
17232 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17233 "\\([0-9]+\\)?"
17234 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17235 "\\([ \t]\\|$\\)") s)
17236 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17237 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17238 (string-to-char (substring (match-string 1 s) -1))
17239 ?+))
17240 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17241 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17242 (what (if (match-end 3) (match-string 3 s) "d"))
17243 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17244 (date (if rel default today))
17245 (wday (nth 6 (decode-time date)))
17246 delta)
17247 (if wday1
17248 (progn
17249 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17250 (if (= delta 0) (setq delta 7))
17251 (if (= dir ?-)
17252 (progn
17253 (setq delta (- delta 7))
17254 (if (= delta 0) (setq delta -7))))
17255 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17256 (list delta "d" rel))
17257 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17259 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17260 "Turn a user-specified date into the internal representation.
17261 The internal representation needed by the calendar is (month day year).
17262 This is a wrapper to handle the brain-dead convention in calendar that
17263 user function argument order change dependent on argument order."
17264 (if (boundp 'calendar-date-style)
17265 (cond
17266 ((eq calendar-date-style 'american)
17267 (list arg1 arg2 arg3))
17268 ((eq calendar-date-style 'european)
17269 (list arg2 arg1 arg3))
17270 ((eq calendar-date-style 'iso)
17271 (list arg2 arg3 arg1)))
17272 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17273 (if (org-bound-and-true-p european-calendar-style)
17274 (list arg2 arg1 arg3)
17275 (list arg1 arg2 arg3)))))
17277 (defun org-eval-in-calendar (form &optional keepdate)
17278 "Eval FORM in the calendar window and return to current window.
17279 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17280 otherwise stick to the current value of `org-ans2'."
17281 (let ((sf (selected-frame))
17282 (sw (selected-window)))
17283 (select-window (get-buffer-window "*Calendar*" t))
17284 (eval form)
17285 (when (and (not keepdate) (calendar-cursor-to-date))
17286 (let* ((date (calendar-cursor-to-date))
17287 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17288 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17289 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17290 (select-window sw)
17291 (org-select-frame-set-input-focus sf)))
17293 (defun org-calendar-select ()
17294 "Return to `org-read-date' with the date currently selected.
17295 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17296 (interactive)
17297 (when (calendar-cursor-to-date)
17298 (let* ((date (calendar-cursor-to-date))
17299 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17300 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17301 (if (active-minibuffer-window) (exit-minibuffer))))
17303 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17304 "Insert a date stamp for the date given by the internal TIME.
17305 See `format-time-string' for the format of TIME.
17306 WITH-HM means use the stamp format that includes the time of the day.
17307 INACTIVE means use square brackets instead of angular ones, so that the
17308 stamp will not contribute to the agenda.
17309 PRE and POST are optional strings to be inserted before and after the
17310 stamp.
17311 The command returns the inserted time stamp."
17312 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17313 stamp)
17314 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17315 (insert-before-markers (or pre ""))
17316 (when (listp extra)
17317 (setq extra (car extra))
17318 (if (and (stringp extra)
17319 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17320 (setq extra (format "-%02d:%02d"
17321 (string-to-number (match-string 1 extra))
17322 (string-to-number (match-string 2 extra))))
17323 (setq extra nil)))
17324 (when extra
17325 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17326 (insert-before-markers (setq stamp (format-time-string fmt time)))
17327 (insert-before-markers (or post ""))
17328 (setq org-last-inserted-timestamp stamp)))
17330 (defun org-toggle-time-stamp-overlays ()
17331 "Toggle the use of custom time stamp formats."
17332 (interactive)
17333 (setq org-display-custom-times (not org-display-custom-times))
17334 (unless org-display-custom-times
17335 (let ((p (point-min)) (bmp (buffer-modified-p)))
17336 (while (setq p (next-single-property-change p 'display))
17337 (if (and (get-text-property p 'display)
17338 (eq (get-text-property p 'face) 'org-date))
17339 (remove-text-properties
17340 p (setq p (next-single-property-change p 'display))
17341 '(display t))))
17342 (set-buffer-modified-p bmp)))
17343 (if (featurep 'xemacs)
17344 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17345 (org-restart-font-lock)
17346 (setq org-table-may-need-update t)
17347 (if org-display-custom-times
17348 (message "Time stamps are overlaid with custom format")
17349 (message "Time stamp overlays removed")))
17351 (defun org-display-custom-time (beg end)
17352 "Overlay modified time stamp format over timestamp between BEG and END."
17353 (let* ((ts (buffer-substring beg end))
17354 t1 w1 with-hm tf time str w2 (off 0))
17355 (save-match-data
17356 (setq t1 (org-parse-time-string ts t))
17357 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17358 (setq off (- (match-end 0) (match-beginning 0)))))
17359 (setq end (- end off))
17360 (setq w1 (- end beg)
17361 with-hm (and (nth 1 t1) (nth 2 t1))
17362 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17363 time (org-fix-decoded-time t1)
17364 str (org-add-props
17365 (format-time-string
17366 (substring tf 1 -1) (apply 'encode-time time))
17367 nil 'mouse-face 'highlight)
17368 w2 (length str))
17369 (if (not (= w2 w1))
17370 (add-text-properties (1+ beg) (+ 2 beg)
17371 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17372 (if (featurep 'xemacs)
17373 (progn
17374 (put-text-property beg end 'invisible t)
17375 (put-text-property beg end 'end-glyph (make-glyph str)))
17376 (put-text-property beg end 'display str))))
17378 (defun org-fix-decoded-time (time)
17379 "Set 0 instead of nil for the first 6 elements of time.
17380 Don't touch the rest."
17381 (let ((n 0))
17382 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17384 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17386 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17387 "Difference between TIMESTAMP-STRING and now in days.
17388 If SECONDS is non-nil, return the difference in seconds."
17389 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17390 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17391 (funcall fdiff (current-time)))))
17393 (defun org-deadline-close (timestamp-string &optional ndays)
17394 "Is the time in TIMESTAMP-STRING close to the current date?"
17395 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17396 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17397 (not (org-entry-is-done-p))))
17399 (defun org-get-wdays (ts &optional delay zero-delay)
17400 "Get the deadline lead time appropriate for timestring TS.
17401 When DELAY is non-nil, get the delay time for scheduled items
17402 instead of the deadline lead time. When ZERO-DELAY is non-nil
17403 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17404 don't try to find the delay cookie in the scheduled timestamp."
17405 (let ((tv (if delay org-scheduled-delay-days
17406 org-deadline-warning-days)))
17407 (cond
17408 ((or (and delay (< tv 0))
17409 (and delay zero-delay (<= tv 0))
17410 (and (not delay) (<= tv 0)))
17411 ;; Enforce this value no matter what
17412 (- tv))
17413 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17414 ;; lead time is specified.
17415 (floor (* (string-to-number (match-string 1 ts))
17416 (cdr (assoc (match-string 2 ts)
17417 '(("d" . 1) ("w" . 7)
17418 ("m" . 30.4) ("y" . 365.25)
17419 ("h" . 0.041667)))))))
17420 ;; go for the default.
17421 (t tv))))
17423 (defun org-calendar-select-mouse (ev)
17424 "Return to `org-read-date' with the date currently selected.
17425 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17426 (interactive "e")
17427 (mouse-set-point ev)
17428 (when (calendar-cursor-to-date)
17429 (let* ((date (calendar-cursor-to-date))
17430 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17431 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17432 (if (active-minibuffer-window) (exit-minibuffer))))
17434 (defun org-check-deadlines (ndays)
17435 "Check if there are any deadlines due or past due.
17436 A deadline is considered due if it happens within `org-deadline-warning-days'
17437 days from today's date. If the deadline appears in an entry marked DONE,
17438 it is not shown. The prefix arg NDAYS can be used to test that many
17439 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17440 (interactive "P")
17441 (let* ((org-warn-days
17442 (cond
17443 ((equal ndays '(4)) 100000)
17444 (ndays (prefix-numeric-value ndays))
17445 (t (abs org-deadline-warning-days))))
17446 (case-fold-search nil)
17447 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17448 (callback
17449 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17451 (message "%d deadlines past-due or due within %d days"
17452 (org-occur regexp nil callback)
17453 org-warn-days)))
17455 (defsubst org-re-timestamp (type)
17456 "Return a regexp for timestamp TYPE.
17457 Allowed values for TYPE are:
17459 all: all timestamps
17460 active: only active timestamps (<...>)
17461 inactive: only inactive timestamps ([...])
17462 scheduled: only scheduled timestamps
17463 deadline: only deadline timestamps
17464 closed: only closed time-stamps
17466 When TYPE is nil, fall back on returning a regexp that matches
17467 both scheduled and deadline timestamps."
17468 (case type
17469 (all org-ts-regexp-both)
17470 (active org-ts-regexp)
17471 (inactive org-ts-regexp-inactive)
17472 (scheduled org-scheduled-time-regexp)
17473 (deadline org-deadline-time-regexp)
17474 (closed org-closed-time-regexp)
17475 (otherwise
17476 (concat "\\<"
17477 (regexp-opt (list org-deadline-string org-scheduled-string))
17478 " *<\\([^>]+\\)>"))))
17480 (defun org-check-before-date (date)
17481 "Check if there are deadlines or scheduled entries before DATE."
17482 (interactive (list (org-read-date)))
17483 (let ((case-fold-search nil)
17484 (regexp (org-re-timestamp org-ts-type))
17485 (callback
17486 `(lambda ()
17487 (and ,(if (memq org-ts-type '(active inactive all))
17488 '(eq (org-element-type (org-element-context)) 'timestamp)
17489 '(org-at-planning-p))
17490 (time-less-p
17491 (org-time-string-to-time (match-string 1))
17492 (org-time-string-to-time date))))))
17493 (message "%d entries before %s"
17494 (org-occur regexp nil callback) date)))
17496 (defun org-check-after-date (date)
17497 "Check if there are deadlines or scheduled entries after DATE."
17498 (interactive (list (org-read-date)))
17499 (let ((case-fold-search nil)
17500 (regexp (org-re-timestamp org-ts-type))
17501 (callback
17502 `(lambda ()
17503 (and ,(if (memq org-ts-type '(active inactive all))
17504 '(eq (org-element-type (org-element-context)) 'timestamp)
17505 '(org-at-planning-p))
17506 (not (time-less-p
17507 (org-time-string-to-time (match-string 1))
17508 (org-time-string-to-time date)))))))
17509 (message "%d entries after %s"
17510 (org-occur regexp nil callback) date)))
17512 (defun org-check-dates-range (start-date end-date)
17513 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17514 (interactive (list (org-read-date nil nil nil "Range starts")
17515 (org-read-date nil nil nil "Range end")))
17516 (let ((case-fold-search nil)
17517 (regexp (org-re-timestamp org-ts-type))
17518 (callback
17519 `(lambda ()
17520 (let ((match (match-string 1)))
17521 (and
17522 ,(if (memq org-ts-type '(active inactive all))
17523 '(eq (org-element-type (org-element-context)) 'timestamp)
17524 '(org-at-planning-p))
17525 (not (time-less-p
17526 (org-time-string-to-time match)
17527 (org-time-string-to-time start-date)))
17528 (time-less-p
17529 (org-time-string-to-time match)
17530 (org-time-string-to-time end-date)))))))
17531 (message "%d entries between %s and %s"
17532 (org-occur regexp nil callback) start-date end-date)))
17534 (defun org-evaluate-time-range (&optional to-buffer)
17535 "Evaluate a time range by computing the difference between start and end.
17536 Normally the result is just printed in the echo area, but with prefix arg
17537 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17538 If the time range is actually in a table, the result is inserted into the
17539 next column.
17540 For time difference computation, a year is assumed to be exactly 365
17541 days in order to avoid rounding problems."
17542 (interactive "P")
17544 (org-clock-update-time-maybe)
17545 (save-excursion
17546 (unless (org-at-date-range-p t)
17547 (goto-char (point-at-bol))
17548 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17549 (if (not (org-at-date-range-p t))
17550 (user-error "Not at a time-stamp range, and none found in current line")))
17551 (let* ((ts1 (match-string 1))
17552 (ts2 (match-string 2))
17553 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17554 (match-end (match-end 0))
17555 (time1 (org-time-string-to-time ts1))
17556 (time2 (org-time-string-to-time ts2))
17557 (t1 (org-float-time time1))
17558 (t2 (org-float-time time2))
17559 (diff (abs (- t2 t1)))
17560 (negative (< (- t2 t1) 0))
17561 ;; (ys (floor (* 365 24 60 60)))
17562 (ds (* 24 60 60))
17563 (hs (* 60 60))
17564 (fy "%dy %dd %02d:%02d")
17565 (fy1 "%dy %dd")
17566 (fd "%dd %02d:%02d")
17567 (fd1 "%dd")
17568 (fh "%02d:%02d")
17569 y d h m align)
17570 (if havetime
17571 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17573 d (floor (/ diff ds)) diff (mod diff ds)
17574 h (floor (/ diff hs)) diff (mod diff hs)
17575 m (floor (/ diff 60)))
17576 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17578 d (floor (+ (/ diff ds) 0.5))
17579 h 0 m 0))
17580 (if (not to-buffer)
17581 (message "%s" (org-make-tdiff-string y d h m))
17582 (if (org-at-table-p)
17583 (progn
17584 (goto-char match-end)
17585 (setq align t)
17586 (and (looking-at " *|") (goto-char (match-end 0))))
17587 (goto-char match-end))
17588 (if (looking-at
17589 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17590 (replace-match ""))
17591 (if negative (insert " -"))
17592 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17593 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17594 (insert " " (format fh h m))))
17595 (if align (org-table-align))
17596 (message "Time difference inserted")))))
17598 (defun org-make-tdiff-string (y d h m)
17599 (let ((fmt "")
17600 (l nil))
17601 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17602 l (push y l)))
17603 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17604 l (push d l)))
17605 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17606 l (push h l)))
17607 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17608 l (push m l)))
17609 (apply 'format fmt (nreverse l))))
17611 (defun org-time-string-to-time (s &optional buffer pos)
17612 "Convert a timestamp string into internal time."
17613 (condition-case errdata
17614 (apply 'encode-time (org-parse-time-string s))
17615 (error (error "Bad timestamp `%s'%s\nError was: %s"
17616 s (if (not (and buffer pos))
17618 (format " at %d in buffer `%s'" pos buffer))
17619 (cdr errdata)))))
17621 (defun org-time-string-to-seconds (s)
17622 "Convert a timestamp string to a number of seconds."
17623 (org-float-time (org-time-string-to-time s)))
17625 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17626 "Convert a time stamp to an absolute day number.
17627 If there is a specifier for a cyclic time stamp, get the closest
17628 date to DAYNR.
17629 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17630 The variable `date' is bound by the calendar when this is called."
17631 (cond
17632 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17633 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17634 daynr
17635 (+ daynr 1000)))
17636 ((and daynr (string-match "\\+\\([0-9]+\\)[hdwmy]" s)
17637 (> (string-to-number (match-string 1 s)) 0))
17638 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17639 (time-to-days (current-time))) (match-string 0 s)
17640 prefer show-all))
17641 (t (time-to-days
17642 (condition-case errdata
17643 (apply 'encode-time (org-parse-time-string s))
17644 (error (error "Bad timestamp `%s'%s\nError was: %s"
17645 s (if (not (and buffer pos))
17647 (format " at %d in buffer `%s'" pos buffer))
17648 (cdr errdata))))))))
17650 (defun org-days-to-iso-week (days)
17651 "Return the iso week number."
17652 (require 'cal-iso)
17653 (car (calendar-iso-from-absolute days)))
17655 (defun org-small-year-to-year (year)
17656 "Convert 2-digit years into 4-digit years.
17657 YEAR is expanded into one of the 30 next years, if possible, or
17658 into a past one. Any year larger than 99 is returned unchanged."
17659 (if (>= year 100) year
17660 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17661 (century (/ current 100))
17662 (offset (- year (% current 100))))
17663 (cond ((> offset 30) (+ (* (1- century) 100) year))
17664 ((> offset -70) (+ (* century 100) year))
17665 (t (+ (* (1+ century) 100) year))))))
17667 (defun org-time-from-absolute (d)
17668 "Return the time corresponding to date D.
17669 D may be an absolute day number, or a calendar-type list (month day year)."
17670 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17671 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17673 (defun org-calendar-holiday ()
17674 "List of holidays, for Diary display in Org-mode."
17675 (require 'holidays)
17676 (let ((hl (funcall
17677 (if (fboundp 'calendar-check-holidays)
17678 'calendar-check-holidays 'check-calendar-holidays) date)))
17679 (if hl (mapconcat 'identity hl "; "))))
17681 (defun org-diary-sexp-entry (sexp entry date)
17682 "Process a SEXP diary ENTRY for DATE."
17683 (require 'diary-lib)
17684 (let ((result (if calendar-debug-sexp
17685 (let ((stack-trace-on-error t))
17686 (eval (car (read-from-string sexp))))
17687 (condition-case nil
17688 (eval (car (read-from-string sexp)))
17689 (error
17690 (beep)
17691 (message "Bad sexp at line %d in %s: %s"
17692 (org-current-line)
17693 (buffer-file-name) sexp)
17694 (sleep-for 2))))))
17695 (cond ((stringp result) (split-string result "; "))
17696 ((and (consp result)
17697 (not (consp (cdr result)))
17698 (stringp (cdr result))) (cdr result))
17699 ((and (consp result)
17700 (stringp (car result))) result)
17701 (result entry))))
17703 (defun org-diary-to-ical-string (frombuf)
17704 "Get iCalendar entries from diary entries in buffer FROMBUF.
17705 This uses the icalendar.el library."
17706 (let* ((tmpdir (if (featurep 'xemacs)
17707 (temp-directory)
17708 temporary-file-directory))
17709 (tmpfile (make-temp-name
17710 (expand-file-name "orgics" tmpdir)))
17711 buf rtn b e)
17712 (with-current-buffer frombuf
17713 (icalendar-export-region (point-min) (point-max) tmpfile)
17714 (setq buf (find-buffer-visiting tmpfile))
17715 (set-buffer buf)
17716 (goto-char (point-min))
17717 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17718 (setq b (match-beginning 0)))
17719 (goto-char (point-max))
17720 (if (re-search-backward "^END:VEVENT" nil t)
17721 (setq e (match-end 0)))
17722 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17723 (kill-buffer buf)
17724 (delete-file tmpfile)
17725 rtn))
17727 (defun org-closest-date (start current change prefer show-all)
17728 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17729 When PREFER is `past', return a date that is either CURRENT or past.
17730 When PREFER is `future', return a date that is either CURRENT or future.
17731 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17732 ;; Make the proper lists from the dates
17733 (catch 'exit
17734 (let ((a1 '(("h" . hour)
17735 ("d" . day)
17736 ("w" . week)
17737 ("m" . month)
17738 ("y" . year)))
17739 (shour (nth 2 (org-parse-time-string start)))
17740 dn dw sday cday n1 n2 n0
17741 d m y y1 y2 date1 date2 nmonths nm ny m2)
17743 (setq start (org-date-to-gregorian start)
17744 current (org-date-to-gregorian
17745 (if show-all
17746 current
17747 (time-to-days (current-time))))
17748 sday (calendar-absolute-from-gregorian start)
17749 cday (calendar-absolute-from-gregorian current))
17751 (if (<= cday sday) (throw 'exit sday))
17753 (when (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17754 (setq dn (string-to-number (match-string 1 change))
17755 dw (cdr (assoc (match-string 2 change) a1))))
17756 (unless (and dn (> dn 0))
17757 (user-error "Invalid change specifier: %s" change))
17758 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17759 (cond
17760 ((eq dw 'hour)
17761 (let ((missing-hours
17762 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17763 dn)))
17764 (setq n1 (if (zerop missing-hours) cday
17765 (- cday (1+ (floor (/ missing-hours 24)))))
17766 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17767 ((eq dw 'day)
17768 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17769 n2 (+ n1 dn)))
17770 ((eq dw 'year)
17771 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17772 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17773 (setq date1 (list m d y1)
17774 n1 (calendar-absolute-from-gregorian date1)
17775 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17776 n2 (calendar-absolute-from-gregorian date2)))
17777 ((eq dw 'month)
17778 ;; approx number of month between the two dates
17779 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17780 ;; How often does dn fit in there?
17781 (setq d (nth 1 start) m (car start) y (nth 2 start)
17782 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17783 m (+ m nm)
17784 ny (floor (/ m 12))
17785 y (+ y ny)
17786 m (- m (* ny 12)))
17787 (while (> m 12) (setq m (- m 12) y (1+ y)))
17788 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17789 (setq m2 (+ m dn) y2 y)
17790 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17791 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17792 (while (<= n2 cday)
17793 (setq n1 n2 m m2 y y2)
17794 (setq m2 (+ m dn) y2 y)
17795 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17796 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17797 ;; Make sure n1 is the earlier date
17798 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17799 (if show-all
17800 (cond
17801 ((eq prefer 'past) (if (= cday n2) n2 n1))
17802 ((eq prefer 'future) (if (= cday n1) n1 n2))
17803 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17804 (cond
17805 ((eq prefer 'past) (if (= cday n2) n2 n1))
17806 ((eq prefer 'future) (if (= cday n1) n1 n2))
17807 (t (if (= cday n1) n1 n2)))))))
17809 (defun org-date-to-gregorian (date)
17810 "Turn any specification of DATE into a Gregorian date for the calendar."
17811 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17812 ((and (listp date) (= (length date) 3)) date)
17813 ((stringp date)
17814 (setq date (org-parse-time-string date))
17815 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17816 ((listp date)
17817 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17819 (defun org-parse-time-string (s &optional nodefault)
17820 "Parse the standard Org-mode time string.
17821 This should be a lot faster than the normal `parse-time-string'.
17822 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17823 hour and minute fields will be nil if not given."
17824 (cond ((string-match org-ts-regexp0 s)
17825 (list 0
17826 (if (or (match-beginning 8) (not nodefault))
17827 (string-to-number (or (match-string 8 s) "0")))
17828 (if (or (match-beginning 7) (not nodefault))
17829 (string-to-number (or (match-string 7 s) "0")))
17830 (string-to-number (match-string 4 s))
17831 (string-to-number (match-string 3 s))
17832 (string-to-number (match-string 2 s))
17833 nil nil nil))
17834 ((string-match "^<[^>]+>$" s)
17835 (decode-time (seconds-to-time (org-matcher-time s))))
17836 (t (error "Not a standard Org-mode time string: %s" s))))
17838 (defun org-timestamp-up (&optional arg)
17839 "Increase the date item at the cursor by one.
17840 If the cursor is on the year, change the year. If it is on the month,
17841 the day or the time, change that.
17842 With prefix ARG, change by that many units."
17843 (interactive "p")
17844 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17846 (defun org-timestamp-down (&optional arg)
17847 "Decrease the date item at the cursor by one.
17848 If the cursor is on the year, change the year. If it is on the month,
17849 the day or the time, change that.
17850 With prefix ARG, change by that many units."
17851 (interactive "p")
17852 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17854 (defun org-timestamp-up-day (&optional arg)
17855 "Increase the date in the time stamp by one day.
17856 With prefix ARG, change that many days."
17857 (interactive "p")
17858 (if (and (not (org-at-timestamp-p t))
17859 (org-at-heading-p))
17860 (org-todo 'up)
17861 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17863 (defun org-timestamp-down-day (&optional arg)
17864 "Decrease the date in the time stamp by one day.
17865 With prefix ARG, change that many days."
17866 (interactive "p")
17867 (if (and (not (org-at-timestamp-p t))
17868 (org-at-heading-p))
17869 (org-todo 'down)
17870 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17872 (defun org-at-timestamp-p (&optional inactive-ok)
17873 "Non-nil if point is inside a timestamp.
17875 When optional argument INACTIVE-OK is non-nil, also consider
17876 inactive timestamps.
17878 When this function returns a non-nil value, match data is set
17879 according to `org-ts-regexp3' or `org-ts-regexp2', depending on
17880 INACTIVE-OK."
17881 (interactive)
17882 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17883 (pos (point))
17884 (ans (or (looking-at tsr)
17885 (save-excursion
17886 (skip-chars-backward "^[<\n\r\t")
17887 (if (> (point) (point-min)) (backward-char 1))
17888 (and (looking-at tsr)
17889 (> (- (match-end 0) pos) -1))))))
17890 (and ans
17891 (boundp 'org-ts-what)
17892 (setq org-ts-what
17893 (cond
17894 ((= pos (match-beginning 0)) 'bracket)
17895 ;; Point is considered to be "on the bracket" whether
17896 ;; it's really on it or right after it.
17897 ((= pos (1- (match-end 0))) 'bracket)
17898 ((= pos (match-end 0)) 'after)
17899 ((org-pos-in-match-range pos 2) 'year)
17900 ((org-pos-in-match-range pos 3) 'month)
17901 ((org-pos-in-match-range pos 7) 'hour)
17902 ((org-pos-in-match-range pos 8) 'minute)
17903 ((or (org-pos-in-match-range pos 4)
17904 (org-pos-in-match-range pos 5)) 'day)
17905 ((and (> pos (or (match-end 8) (match-end 5)))
17906 (< pos (match-end 0)))
17907 (- pos (or (match-end 8) (match-end 5))))
17908 (t 'day))))
17909 ans))
17911 (defun org-toggle-timestamp-type ()
17912 "Toggle the type (<active> or [inactive]) of a time stamp."
17913 (interactive)
17914 (when (org-at-timestamp-p t)
17915 (let ((beg (match-beginning 0)) (end (match-end 0))
17916 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17917 (save-excursion
17918 (goto-char beg)
17919 (while (re-search-forward "[][<>]" end t)
17920 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17921 t t)))
17922 (message "Timestamp is now %sactive"
17923 (if (equal (char-after beg) ?<) "" "in")))))
17925 (defun org-at-clock-log-p nil
17926 "Is the cursor on the clock log line?"
17927 (save-excursion
17928 (move-beginning-of-line 1)
17929 (looking-at org-clock-line-re)))
17931 (defvar org-clock-history) ; defined in org-clock.el
17932 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17933 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17934 "Change the date in the time stamp at point.
17935 The date will be changed by N times WHAT. WHAT can be `day', `month',
17936 `year', `minute', `second'. If WHAT is not given, the cursor position
17937 in the timestamp determines what will be changed.
17938 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17939 (let ((origin (point)) origin-cat
17940 with-hm inactive
17941 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17942 org-ts-what
17943 extra rem
17944 ts time time0 fixnext clrgx)
17945 (if (not (org-at-timestamp-p t))
17946 (user-error "Not at a timestamp"))
17947 (if (and (not what) (eq org-ts-what 'bracket))
17948 (org-toggle-timestamp-type)
17949 ;; Point isn't on brackets. Remember the part of the time-stamp
17950 ;; the point was in. Indeed, size of time-stamps may change,
17951 ;; but point must be kept in the same category nonetheless.
17952 (setq origin-cat org-ts-what)
17953 (if (and (not what) (not (eq org-ts-what 'day))
17954 org-display-custom-times
17955 (get-text-property (point) 'display)
17956 (not (get-text-property (1- (point)) 'display)))
17957 (setq org-ts-what 'day))
17958 (setq org-ts-what (or what org-ts-what)
17959 inactive (= (char-after (match-beginning 0)) ?\[)
17960 ts (match-string 0))
17961 (replace-match "")
17962 (when (string-match
17963 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17965 (setq extra (match-string 1 ts))
17966 (if suppress-tmp-delay
17967 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17968 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17969 (setq with-hm t))
17970 (setq time0 (org-parse-time-string ts))
17971 (when (and updown
17972 (eq org-ts-what 'minute)
17973 (not current-prefix-arg))
17974 ;; This looks like s-up and s-down. Change by one rounding step.
17975 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17976 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17977 (setcar (cdr time0) (+ (nth 1 time0)
17978 (if (> n 0) (- rem) (- dm rem))))))
17979 (setq time
17980 (encode-time (or (car time0) 0)
17981 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17982 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17983 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17984 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17985 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17986 (nthcdr 6 time0)))
17987 (when (and (member org-ts-what '(hour minute))
17988 extra
17989 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17990 (setq extra (org-modify-ts-extra
17991 extra
17992 (if (eq org-ts-what 'hour) 2 5)
17993 n dm)))
17994 (when (integerp org-ts-what)
17995 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17996 (if (eq what 'calendar)
17997 (let ((cal-date (org-get-date-from-calendar)))
17998 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17999 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
18000 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
18001 (setcar time0 (or (car time0) 0))
18002 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
18003 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
18004 (setq time (apply 'encode-time time0))))
18005 ;; Insert the new time-stamp, and ensure point stays in the same
18006 ;; category as before (i.e. not after the last position in that
18007 ;; category).
18008 (let ((pos (point)))
18009 ;; Stay before inserted string. `save-excursion' is of no use.
18010 (setq org-last-changed-timestamp
18011 (org-insert-time-stamp time with-hm inactive nil nil extra))
18012 (goto-char pos))
18013 (save-match-data
18014 (looking-at org-ts-regexp3)
18015 (goto-char (cond
18016 ;; `day' category ends before `hour' if any, or at
18017 ;; the end of the day name.
18018 ((eq origin-cat 'day)
18019 (min (or (match-beginning 7) (1- (match-end 5))) origin))
18020 ((eq origin-cat 'hour) (min (match-end 7) origin))
18021 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
18022 ((integerp origin-cat) (min (1- (match-end 0)) origin))
18023 ;; `year' and `month' have both fixed size: point
18024 ;; couldn't have moved into another part.
18025 (t origin))))
18026 ;; Update clock if on a CLOCK line.
18027 (org-clock-update-time-maybe)
18028 ;; Maybe adjust the closest clock in `org-clock-history'
18029 (when org-clock-adjust-closest
18030 (if (not (and (org-at-clock-log-p)
18031 (< 1 (length (delq nil (mapcar 'marker-position
18032 org-clock-history))))))
18033 (message "No clock to adjust")
18034 (cond ((save-excursion ; fix previous clock?
18035 (re-search-backward org-ts-regexp0 nil t)
18036 (org-looking-back (concat org-clock-string " \\[")))
18037 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
18038 ((save-excursion ; fix next clock?
18039 (re-search-backward org-ts-regexp0 nil t)
18040 (looking-at (concat org-ts-regexp0 "\\] =>")))
18041 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
18042 (save-window-excursion
18043 ;; Find closest clock to point, adjust the previous/next one in history
18044 (let* ((p (save-excursion (org-back-to-heading t)))
18045 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
18046 (clfixnth
18047 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
18048 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
18049 (if (not clfixpos)
18050 (message "No clock to adjust")
18051 (save-excursion
18052 (org-goto-marker-or-bmk clfixpos)
18053 (org-show-subtree)
18054 (when (re-search-forward clrgx nil t)
18055 (goto-char (match-beginning 1))
18056 (let (org-clock-adjust-closest)
18057 (org-timestamp-change n org-ts-what updown))
18058 (message "Clock adjusted in %s for heading: %s"
18059 (file-name-nondirectory (buffer-file-name))
18060 (org-get-heading t t)))))))))
18061 ;; Try to recenter the calendar window, if any.
18062 (if (and org-calendar-follow-timestamp-change
18063 (get-buffer-window "*Calendar*" t)
18064 (memq org-ts-what '(day month year)))
18065 (org-recenter-calendar (time-to-days time))))))
18067 (defun org-modify-ts-extra (s pos n dm)
18068 "Change the different parts of the lead-time and repeat fields in timestamp."
18069 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18070 ng h m new rem)
18071 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18072 (cond
18073 ((or (org-pos-in-match-range pos 2)
18074 (org-pos-in-match-range pos 3))
18075 (setq m (string-to-number (match-string 3 s))
18076 h (string-to-number (match-string 2 s)))
18077 (if (org-pos-in-match-range pos 2)
18078 (setq h (+ h n))
18079 (setq n (* dm (org-no-warnings (signum n))))
18080 (when (not (= 0 (setq rem (% m dm))))
18081 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18082 (setq m (+ m n)))
18083 (if (< m 0) (setq m (+ m 60) h (1- h)))
18084 (if (> m 59) (setq m (- m 60) h (1+ h)))
18085 (setq h (min 24 (max 0 h)))
18086 (setq ng 1 new (format "-%02d:%02d" h m)))
18087 ((org-pos-in-match-range pos 6)
18088 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18089 ((org-pos-in-match-range pos 5)
18090 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18092 ((org-pos-in-match-range pos 9)
18093 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18094 ((org-pos-in-match-range pos 8)
18095 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18097 (when ng
18098 (setq s (concat
18099 (substring s 0 (match-beginning ng))
18101 (substring s (match-end ng))))))
18104 (defun org-recenter-calendar (date)
18105 "If the calendar is visible, recenter it to DATE."
18106 (let ((cwin (get-buffer-window "*Calendar*" t)))
18107 (when cwin
18108 (let ((calendar-move-hook nil))
18109 (with-selected-window cwin
18110 (calendar-goto-date (if (listp date) date
18111 (calendar-gregorian-from-absolute date))))))))
18113 (defun org-goto-calendar (&optional arg)
18114 "Go to the Emacs calendar at the current date.
18115 If there is a time stamp in the current line, go to that date.
18116 A prefix ARG can be used to force the current date."
18117 (interactive "P")
18118 (let ((tsr org-ts-regexp) diff
18119 (calendar-move-hook nil)
18120 (calendar-view-holidays-initially-flag nil)
18121 (calendar-view-diary-initially-flag nil))
18122 (if (or (org-at-timestamp-p)
18123 (save-excursion
18124 (beginning-of-line 1)
18125 (looking-at (concat ".*" tsr))))
18126 (let ((d1 (time-to-days (current-time)))
18127 (d2 (time-to-days
18128 (org-time-string-to-time (match-string 1)))))
18129 (setq diff (- d2 d1))))
18130 (calendar)
18131 (calendar-goto-today)
18132 (if (and diff (not arg)) (calendar-forward-day diff))))
18134 (defun org-get-date-from-calendar ()
18135 "Return a list (month day year) of date at point in calendar."
18136 (with-current-buffer "*Calendar*"
18137 (save-match-data
18138 (calendar-cursor-to-date))))
18140 (defun org-date-from-calendar ()
18141 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18142 If there is already a time stamp at the cursor position, update it."
18143 (interactive)
18144 (if (org-at-timestamp-p t)
18145 (org-timestamp-change 0 'calendar)
18146 (let ((cal-date (org-get-date-from-calendar)))
18147 (org-insert-time-stamp
18148 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18150 (defcustom org-effort-durations
18151 `(("min" . 1)
18152 ("h" . 60)
18153 ("d" . ,(* 60 8))
18154 ("w" . ,(* 60 8 5))
18155 ("m" . ,(* 60 8 5 4))
18156 ("y" . ,(* 60 8 5 40)))
18157 "Conversion factor to minutes for an effort modifier.
18159 Each entry has the form (MODIFIER . MINUTES).
18161 In an effort string, a number followed by MODIFIER is multiplied
18162 by the specified number of MINUTES to obtain an effort in
18163 minutes.
18165 For example, if the value of this variable is ((\"hours\" . 60)), then an
18166 effort string \"2hours\" is equivalent to 120 minutes."
18167 :group 'org-agenda
18168 :version "25.1"
18169 :package-version '(Org . "8.3")
18170 :type '(alist :key-type (string :tag "Modifier")
18171 :value-type (number :tag "Minutes")))
18173 (defun org-minutes-to-clocksum-string (m)
18174 "Format number of minutes as a clocksum string.
18175 The format is determined by `org-time-clocksum-format',
18176 `org-time-clocksum-use-fractional' and
18177 `org-time-clocksum-fractional-format' and
18178 `org-time-clocksum-use-effort-durations'."
18179 (let ((clocksum "")
18180 (m (round m)) ; Don't allow fractions of minutes
18181 h d w mo y fmt n)
18182 (setq h (if org-time-clocksum-use-effort-durations
18183 (cdr (assoc "h" org-effort-durations)) 60)
18184 d (if org-time-clocksum-use-effort-durations
18185 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18186 w (if org-time-clocksum-use-effort-durations
18187 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18188 mo (if org-time-clocksum-use-effort-durations
18189 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18190 y (if org-time-clocksum-use-effort-durations
18191 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18192 ;; fractional format
18193 (if org-time-clocksum-use-fractional
18194 (cond
18195 ;; single format string
18196 ((stringp org-time-clocksum-fractional-format)
18197 (format org-time-clocksum-fractional-format (/ m (float h))))
18198 ;; choice of fractional formats for different time units
18199 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18200 (> (/ (truncate m) (* y d h)) 0))
18201 (format fmt (/ m (* y d (float h)))))
18202 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18203 (> (/ (truncate m) (* mo d h)) 0))
18204 (format fmt (/ m (* mo d (float h)))))
18205 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18206 (> (/ (truncate m) (* w d h)) 0))
18207 (format fmt (/ m (* w d (float h)))))
18208 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18209 (> (/ (truncate m) (* d h)) 0))
18210 (format fmt (/ m (* d (float h)))))
18211 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18212 (> (/ (truncate m) h) 0))
18213 (format fmt (/ m (float h))))
18214 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18215 (format fmt m))
18216 ;; fall back to smallest time unit with a format
18217 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18218 (format fmt (/ m (float h))))
18219 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18220 (format fmt (/ m (* d (float h)))))
18221 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18222 (format fmt (/ m (* w d (float h)))))
18223 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18224 (format fmt (/ m (* mo d (float h)))))
18225 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18226 (format fmt (/ m (* y d (float h))))))
18227 ;; standard (non-fractional) format, with single format string
18228 (if (stringp org-time-clocksum-format)
18229 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18230 ;; separate formats components
18231 (and (setq fmt (plist-get org-time-clocksum-format :years))
18232 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18233 (plist-get org-time-clocksum-format :require-years))
18234 (setq clocksum (concat clocksum (format fmt n))
18235 m (- m (* n y d h))))
18236 (and (setq fmt (plist-get org-time-clocksum-format :months))
18237 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18238 (plist-get org-time-clocksum-format :require-months))
18239 (setq clocksum (concat clocksum (format fmt n))
18240 m (- m (* n mo d h))))
18241 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18242 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18243 (plist-get org-time-clocksum-format :require-weeks))
18244 (setq clocksum (concat clocksum (format fmt n))
18245 m (- m (* n w d h))))
18246 (and (setq fmt (plist-get org-time-clocksum-format :days))
18247 (or (> (setq n (/ (truncate m) (* d h))) 0)
18248 (plist-get org-time-clocksum-format :require-days))
18249 (setq clocksum (concat clocksum (format fmt n))
18250 m (- m (* n d h))))
18251 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18252 (or (> (setq n (/ (truncate m) h)) 0)
18253 (plist-get org-time-clocksum-format :require-hours))
18254 (setq clocksum (concat clocksum (format fmt n))
18255 m (- m (* n h))))
18256 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18257 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18258 (setq clocksum (concat clocksum (format fmt m))))
18259 ;; return formatted time duration
18260 clocksum))))
18262 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18263 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18264 "Org mode version 8.0")
18266 (defun org-hours-to-clocksum-string (n)
18267 (org-minutes-to-clocksum-string (* n 60)))
18269 (defun org-hh:mm-string-to-minutes (s)
18270 "Convert a string H:MM to a number of minutes.
18271 If the string is just a number, interpret it as minutes.
18272 In fact, the first hh:mm or number in the string will be taken,
18273 there can be extra stuff in the string.
18274 If no number is found, the return value is 0."
18275 (cond
18276 ((integerp s) s)
18277 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18278 (+ (* (string-to-number (match-string 1 s)) 60)
18279 (string-to-number (match-string 2 s))))
18280 ((string-match "\\([0-9]+\\)" s)
18281 (string-to-number (match-string 1 s)))
18282 (t 0)))
18284 (defcustom org-image-actual-width t
18285 "Should we use the actual width of images when inlining them?
18287 When set to t, always use the image width.
18289 When set to a number, use imagemagick (when available) to set
18290 the image's width to this value.
18292 When set to a number in a list, try to get the width from any
18293 #+ATTR.* keyword if it matches a width specification like
18295 #+ATTR_HTML: :width 300px
18297 and fall back on that number if none is found.
18299 When set to nil, try to get the width from an #+ATTR.* keyword
18300 and fall back on the original width if none is found.
18302 This requires Emacs >= 24.1, build with imagemagick support."
18303 :group 'org-appearance
18304 :version "24.4"
18305 :package-version '(Org . "8.0")
18306 :type '(choice
18307 (const :tag "Use the image width" t)
18308 (integer :tag "Use a number of pixels")
18309 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18310 (const :tag "Use #+ATTR* or don't resize" nil)))
18312 (defcustom org-agenda-inhibit-startup nil
18313 "Inhibit startup when preparing agenda buffers.
18314 When this variable is t, the initialization of the Org agenda
18315 buffers is inhibited: e.g. the visibility state is not set, the
18316 tables are not re-aligned, etc."
18317 :type 'boolean
18318 :version "24.3"
18319 :group 'org-agenda)
18321 (define-obsolete-variable-alias
18322 'org-agenda-ignore-drawer-properties
18323 'org-agenda-ignore-properties "25.1")
18325 (defcustom org-agenda-ignore-properties nil
18326 "Avoid updating text properties when building the agenda.
18327 Properties are used to prepare buffers for effort estimates,
18328 appointments, statistics and subtree-local categories.
18329 If you don't use these in the agenda, you can add them to this
18330 list and agenda building will be a bit faster.
18331 The value is a list, with zero or more of the symbols `effort', `appt',
18332 `stats' or `category'."
18333 :type '(set :greedy t
18334 (const effort)
18335 (const appt)
18336 (const stats)
18337 (const category))
18338 :version "25.1"
18339 :package-version '(Org . "8.3")
18340 :group 'org-agenda)
18342 (defun org-duration-string-to-minutes (s &optional output-to-string)
18343 "Convert a duration string S to minutes.
18345 A bare number is interpreted as minutes, modifiers can be set by
18346 customizing `org-effort-durations' (which see).
18348 Entries containing a colon are interpreted as H:MM by
18349 `org-hh:mm-string-to-minutes'."
18350 (let ((result 0)
18351 (re (concat "\\([0-9.]+\\) *\\("
18352 (regexp-opt (mapcar 'car org-effort-durations))
18353 "\\)")))
18354 (while (string-match re s)
18355 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18356 (string-to-number (match-string 1 s))))
18357 (setq s (replace-match "" nil t s)))
18358 (setq result (floor result))
18359 (incf result (org-hh:mm-string-to-minutes s))
18360 (if output-to-string (number-to-string result) result)))
18362 ;;;; Files
18364 (defun org-save-all-org-buffers ()
18365 "Save all Org-mode buffers without user confirmation."
18366 (interactive)
18367 (message "Saving all Org-mode buffers...")
18368 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18369 (when (featurep 'org-id) (org-id-locations-save))
18370 (message "Saving all Org-mode buffers... done"))
18372 (defun org-revert-all-org-buffers ()
18373 "Revert all Org-mode buffers.
18374 Prompt for confirmation when there are unsaved changes.
18375 Be sure you know what you are doing before letting this function
18376 overwrite your changes.
18378 This function is useful in a setup where one tracks org files
18379 with a version control system, to revert on one machine after pulling
18380 changes from another. I believe the procedure must be like this:
18382 1. M-x org-save-all-org-buffers
18383 2. Pull changes from the other machine, resolve conflicts
18384 3. M-x org-revert-all-org-buffers"
18385 (interactive)
18386 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18387 (user-error "Abort"))
18388 (save-excursion
18389 (save-window-excursion
18390 (mapc
18391 (lambda (b)
18392 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18393 (with-current-buffer b buffer-file-name))
18394 (org-pop-to-buffer-same-window b)
18395 (revert-buffer t 'no-confirm)))
18396 (buffer-list))
18397 (when (and (featurep 'org-id) org-id-track-globally)
18398 (org-id-locations-load)))))
18400 ;;;; Agenda files
18402 ;;;###autoload
18403 (defun org-switchb (&optional arg)
18404 "Switch between Org buffers.
18405 With one prefix argument, restrict available buffers to files.
18406 With two prefix arguments, restrict available buffers to agenda files.
18408 Defaults to `iswitchb' for buffer name completion.
18409 Set `org-completion-use-ido' to make it use ido instead."
18410 (interactive "P")
18411 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18412 ((equal arg '(16)) (org-buffer-list 'agenda))
18413 (t (org-buffer-list))))
18414 (org-completion-use-iswitchb org-completion-use-iswitchb)
18415 (org-completion-use-ido org-completion-use-ido))
18416 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18417 (setq org-completion-use-iswitchb t))
18418 (org-pop-to-buffer-same-window
18419 (org-icompleting-read "Org buffer: "
18420 (mapcar 'list (mapcar 'buffer-name blist))
18421 nil t))))
18423 ;;; Define some older names previously used for this functionality
18424 ;;;###autoload
18425 (defalias 'org-ido-switchb 'org-switchb)
18426 ;;;###autoload
18427 (defalias 'org-iswitchb 'org-switchb)
18429 (defun org-buffer-list (&optional predicate exclude-tmp)
18430 "Return a list of Org buffers.
18431 PREDICATE can be `export', `files' or `agenda'.
18433 export restrict the list to Export buffers.
18434 files restrict the list to buffers visiting Org files.
18435 agenda restrict the list to buffers visiting agenda files.
18437 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18438 (let* ((bfn nil)
18439 (agenda-files (and (eq predicate 'agenda)
18440 (mapcar 'file-truename (org-agenda-files t))))
18441 (filter
18442 (cond
18443 ((eq predicate 'files)
18444 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18445 ((eq predicate 'export)
18446 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18447 ((eq predicate 'agenda)
18448 (lambda (b)
18449 (with-current-buffer b
18450 (and (derived-mode-p 'org-mode)
18451 (setq bfn (buffer-file-name b))
18452 (member (file-truename bfn) agenda-files)))))
18453 (t (lambda (b) (with-current-buffer b
18454 (or (derived-mode-p 'org-mode)
18455 (string-match "\*Org .*Export"
18456 (buffer-name b)))))))))
18457 (delq nil
18458 (mapcar
18459 (lambda(b)
18460 (if (and (funcall filter b)
18461 (or (not exclude-tmp)
18462 (not (string-match "tmp" (buffer-name b)))))
18464 nil))
18465 (buffer-list)))))
18467 (defun org-agenda-files (&optional unrestricted archives)
18468 "Get the list of agenda files.
18469 Optional UNRESTRICTED means return the full list even if a restriction
18470 is currently in place.
18471 When ARCHIVES is t, include all archive files that are really being
18472 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18473 `org-agenda-archives-mode' is t."
18474 (let ((files
18475 (cond
18476 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18477 ((stringp org-agenda-files) (org-read-agenda-file-list))
18478 ((listp org-agenda-files) org-agenda-files)
18479 (t (error "Invalid value of `org-agenda-files'")))))
18480 (setq files (apply 'append
18481 (mapcar (lambda (f)
18482 (if (file-directory-p f)
18483 (directory-files
18484 f t org-agenda-file-regexp)
18485 (list f)))
18486 files)))
18487 (when org-agenda-skip-unavailable-files
18488 (setq files (delq nil
18489 (mapcar (function
18490 (lambda (file)
18491 (and (file-readable-p file) file)))
18492 files))))
18493 (when (or (eq archives t)
18494 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18495 (setq files (org-add-archive-files files)))
18496 files))
18498 (defun org-agenda-file-p (&optional file)
18499 "Return non-nil, if FILE is an agenda file.
18500 If FILE is omitted, use the file associated with the current
18501 buffer."
18502 (let ((fname (or file (buffer-file-name))))
18503 (and fname
18504 (member (file-truename fname)
18505 (mapcar #'file-truename (org-agenda-files t))))))
18507 (defun org-edit-agenda-file-list ()
18508 "Edit the list of agenda files.
18509 Depending on setup, this either uses customize to edit the variable
18510 `org-agenda-files', or it visits the file that is holding the list. In the
18511 latter case, the buffer is set up in a way that saving it automatically kills
18512 the buffer and restores the previous window configuration."
18513 (interactive)
18514 (if (stringp org-agenda-files)
18515 (let ((cw (current-window-configuration)))
18516 (find-file org-agenda-files)
18517 (org-set-local 'org-window-configuration cw)
18518 (org-add-hook 'after-save-hook
18519 (lambda ()
18520 (set-window-configuration
18521 (prog1 org-window-configuration
18522 (kill-buffer (current-buffer))))
18523 (org-install-agenda-files-menu)
18524 (message "New agenda file list installed"))
18525 nil 'local)
18526 (message "%s" (substitute-command-keys
18527 "Edit list and finish with \\[save-buffer]")))
18528 (customize-variable 'org-agenda-files)))
18530 (defun org-store-new-agenda-file-list (list)
18531 "Set new value for the agenda file list and save it correctly."
18532 (if (stringp org-agenda-files)
18533 (let ((fe (org-read-agenda-file-list t)) b u)
18534 (while (setq b (find-buffer-visiting org-agenda-files))
18535 (kill-buffer b))
18536 (with-temp-file org-agenda-files
18537 (insert
18538 (mapconcat
18539 (lambda (f) ;; Keep un-expanded entries.
18540 (if (setq u (assoc f fe))
18541 (cdr u)
18543 list "\n")
18544 "\n")))
18545 (let ((org-mode-hook nil) (org-inhibit-startup t)
18546 (org-insert-mode-line-in-empty-file nil))
18547 (setq org-agenda-files list)
18548 (customize-save-variable 'org-agenda-files org-agenda-files))))
18550 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18551 "Read the list of agenda files from a file.
18552 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18553 filenames, used by `org-store-new-agenda-file-list' to write back
18554 un-expanded file names."
18555 (when (file-directory-p org-agenda-files)
18556 (error "`org-agenda-files' cannot be a single directory"))
18557 (when (stringp org-agenda-files)
18558 (with-temp-buffer
18559 (insert-file-contents org-agenda-files)
18560 (mapcar
18561 (lambda (f)
18562 (let ((e (expand-file-name (substitute-in-file-name f)
18563 org-directory)))
18564 (if pair-with-expansion
18565 (cons e f)
18566 e)))
18567 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18569 ;;;###autoload
18570 (defun org-cycle-agenda-files ()
18571 "Cycle through the files in `org-agenda-files'.
18572 If the current buffer visits an agenda file, find the next one in the list.
18573 If the current buffer does not, find the first agenda file."
18574 (interactive)
18575 (let* ((fs (or (org-agenda-files t)
18576 (user-error "No agenda files")))
18577 (files (copy-sequence fs))
18578 (tcf (and buffer-file-name (file-truename buffer-file-name)))
18579 file)
18580 (when tcf
18581 (while (and (setq file (pop files))
18582 (not (equal (file-truename file) tcf)))))
18583 (find-file (car (or files fs)))
18584 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18586 (defun org-agenda-file-to-front (&optional to-end)
18587 "Move/add the current file to the top of the agenda file list.
18588 If the file is not present in the list, it is added to the front. If it is
18589 present, it is moved there. With optional argument TO-END, add/move to the
18590 end of the list."
18591 (interactive "P")
18592 (let ((org-agenda-skip-unavailable-files nil)
18593 (file-alist (mapcar (lambda (x)
18594 (cons (file-truename x) x))
18595 (org-agenda-files t)))
18596 (ctf (file-truename
18597 (or buffer-file-name
18598 (user-error "Please save the current buffer to a file"))))
18599 x had)
18600 (setq x (assoc ctf file-alist) had x)
18602 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18603 (if to-end
18604 (setq file-alist (append (delq x file-alist) (list x)))
18605 (setq file-alist (cons x (delq x file-alist))))
18606 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18607 (org-install-agenda-files-menu)
18608 (message "File %s to %s of agenda file list"
18609 (if had "moved" "added") (if to-end "end" "front"))))
18611 (defun org-remove-file (&optional file)
18612 "Remove current file from the list of files in variable `org-agenda-files'.
18613 These are the files which are being checked for agenda entries.
18614 Optional argument FILE means use this file instead of the current."
18615 (interactive)
18616 (let* ((org-agenda-skip-unavailable-files nil)
18617 (file (or file buffer-file-name
18618 (user-error "Current buffer does not visit a file")))
18619 (true-file (file-truename file))
18620 (afile (abbreviate-file-name file))
18621 (files (delq nil (mapcar
18622 (lambda (x)
18623 (if (equal true-file
18624 (file-truename x))
18625 nil x))
18626 (org-agenda-files t)))))
18627 (if (not (= (length files) (length (org-agenda-files t))))
18628 (progn
18629 (org-store-new-agenda-file-list files)
18630 (org-install-agenda-files-menu)
18631 (message "Removed from Org Agenda list: %s" afile))
18632 (message "File was not in list: %s (not removed)" afile))))
18634 (defun org-file-menu-entry (file)
18635 (vector file (list 'find-file file) t))
18637 (defun org-check-agenda-file (file)
18638 "Make sure FILE exists. If not, ask user what to do."
18639 (when (not (file-exists-p file))
18640 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18641 (abbreviate-file-name file))
18642 (let ((r (downcase (read-char-exclusive))))
18643 (cond
18644 ((equal r ?r)
18645 (org-remove-file file)
18646 (throw 'nextfile t))
18647 (t (user-error "Abort"))))))
18649 (defun org-get-agenda-file-buffer (file)
18650 "Get an agenda buffer visiting FILE.
18651 If the buffer needs to be created, add it to the list of buffers
18652 which might be released later."
18653 (let ((buf (org-find-base-buffer-visiting file)))
18654 (if buf
18655 buf ; just return it
18656 ;; Make a new buffer and remember it
18657 (setq buf (find-file-noselect file))
18658 (if buf (push buf org-agenda-new-buffers))
18659 buf)))
18661 (defun org-release-buffers (blist)
18662 "Release all buffers in list, asking the user for confirmation when needed.
18663 When a buffer is unmodified, it is just killed. When modified, it is saved
18664 \(if the user agrees) and then killed."
18665 (let (file)
18666 (dolist (buf blist)
18667 (setq file (buffer-file-name buf))
18668 (when (and (buffer-modified-p buf)
18669 file
18670 (y-or-n-p (format "Save file %s? " file)))
18671 (with-current-buffer buf (save-buffer)))
18672 (kill-buffer buf))))
18674 (defun org-agenda-prepare-buffers (files)
18675 "Create buffers for all agenda files, protect archived trees and comments."
18676 (interactive)
18677 (let ((pa '(:org-archived t))
18678 (pc '(:org-comment t))
18679 (pall '(:org-archived t :org-comment t))
18680 (inhibit-read-only t)
18681 (org-inhibit-startup org-agenda-inhibit-startup)
18682 (rea (concat ":" org-archive-tag ":"))
18683 file re pos)
18684 (setq org-tag-alist-for-agenda nil
18685 org-tag-groups-alist-for-agenda nil)
18686 (save-excursion
18687 (save-restriction
18688 (dolist (file files)
18689 (catch 'nextfile
18690 (if (bufferp file)
18691 (set-buffer file)
18692 (org-check-agenda-file file)
18693 (set-buffer (org-get-agenda-file-buffer file)))
18694 (widen)
18695 (org-set-regexps-and-options 'tags-only)
18696 (setq pos (point))
18697 (or (memq 'category org-agenda-ignore-properties)
18698 (org-refresh-category-properties))
18699 (or (memq 'stats org-agenda-ignore-properties)
18700 (org-refresh-stats-properties))
18701 (or (memq 'effort org-agenda-ignore-properties)
18702 (org-refresh-effort-properties))
18703 (or (memq 'appt org-agenda-ignore-properties)
18704 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18705 (setq org-todo-keywords-for-agenda
18706 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18707 (setq org-done-keywords-for-agenda
18708 (append org-done-keywords-for-agenda org-done-keywords))
18709 (setq org-todo-keyword-alist-for-agenda
18710 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18711 (setq org-tag-alist-for-agenda
18712 (org-uniquify
18713 (append org-tag-alist-for-agenda
18714 org-tag-alist
18715 org-tag-persistent-alist)))
18716 (if org-group-tags
18717 (setq org-tag-groups-alist-for-agenda
18718 (org-uniquify-alist
18719 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18720 (org-with-silent-modifications
18721 (save-excursion
18722 (remove-text-properties (point-min) (point-max) pall)
18723 (when org-agenda-skip-archived-trees
18724 (goto-char (point-min))
18725 (while (re-search-forward rea nil t)
18726 (if (org-at-heading-p t)
18727 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18728 (goto-char (point-min))
18729 (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
18730 (while (re-search-forward re nil t)
18731 (when (save-match-data (org-in-commented-heading-p t))
18732 (add-text-properties
18733 (match-beginning 0) (org-end-of-subtree t) pc)))))
18734 (goto-char pos)))))
18735 (setq org-todo-keywords-for-agenda
18736 (org-uniquify org-todo-keywords-for-agenda))
18737 (setq org-todo-keyword-alist-for-agenda
18738 (org-uniquify org-todo-keyword-alist-for-agenda))))
18741 ;;;; CDLaTeX minor mode
18743 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18744 "Keymap for the minor `org-cdlatex-mode'.")
18746 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18747 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18748 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18749 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18750 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18752 (defvar org-cdlatex-texmathp-advice-is-done nil
18753 "Flag remembering if we have applied the advice to texmathp already.")
18755 (define-minor-mode org-cdlatex-mode
18756 "Toggle the minor `org-cdlatex-mode'.
18757 This mode supports entering LaTeX environment and math in LaTeX fragments
18758 in Org-mode.
18759 \\{org-cdlatex-mode-map}"
18760 nil " OCDL" nil
18761 (when org-cdlatex-mode
18762 (require 'cdlatex)
18763 (run-hooks 'cdlatex-mode-hook)
18764 (cdlatex-compute-tables))
18765 (unless org-cdlatex-texmathp-advice-is-done
18766 (setq org-cdlatex-texmathp-advice-is-done t)
18767 (defadvice texmathp (around org-math-always-on activate)
18768 "Always return t in org-mode buffers.
18769 This is because we want to insert math symbols without dollars even outside
18770 the LaTeX math segments. If Orgmode thinks that point is actually inside
18771 an embedded LaTeX fragment, let texmathp do its job.
18772 \\[org-cdlatex-mode-map]"
18773 (interactive)
18774 (let (p)
18775 (cond
18776 ((not (derived-mode-p 'org-mode)) ad-do-it)
18777 ((eq this-command 'cdlatex-math-symbol)
18778 (setq ad-return-value t
18779 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18781 (let ((p (org-inside-LaTeX-fragment-p)))
18782 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18783 (setq ad-return-value t
18784 texmathp-why '("Org-mode embedded math" . 0))
18785 (if p ad-do-it)))))))))
18787 (defun turn-on-org-cdlatex ()
18788 "Unconditionally turn on `org-cdlatex-mode'."
18789 (org-cdlatex-mode 1))
18791 (defun org-try-cdlatex-tab ()
18792 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18793 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18794 - inside a LaTeX fragment, or
18795 - after the first word in a line, where an abbreviation expansion could
18796 insert a LaTeX environment."
18797 (when org-cdlatex-mode
18798 (cond
18799 ;; Before any word on the line: No expansion possible.
18800 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18801 ;; Just after first word on the line: Expand it. Make sure it
18802 ;; cannot happen on headlines, though.
18803 ((save-excursion
18804 (skip-chars-backward "a-zA-Z0-9*")
18805 (skip-chars-backward " \t")
18806 (and (bolp) (not (org-at-heading-p))))
18807 (cdlatex-tab) t)
18808 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18810 (defun org-cdlatex-underscore-caret (&optional arg)
18811 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18812 Revert to the normal definition outside of these fragments."
18813 (interactive "P")
18814 (if (org-inside-LaTeX-fragment-p)
18815 (call-interactively 'cdlatex-sub-superscript)
18816 (let (org-cdlatex-mode)
18817 (call-interactively (key-binding (vector last-input-event))))))
18819 (defun org-cdlatex-math-modify (&optional arg)
18820 "Execute `cdlatex-math-modify' in LaTeX fragments.
18821 Revert to the normal definition outside of these fragments."
18822 (interactive "P")
18823 (if (org-inside-LaTeX-fragment-p)
18824 (call-interactively 'cdlatex-math-modify)
18825 (let (org-cdlatex-mode)
18826 (call-interactively (key-binding (vector last-input-event))))))
18828 (defun org-cdlatex-environment-indent (&optional environment item)
18829 "Execute `cdlatex-environment' and indent the inserted environment.
18831 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18833 The inserted environment is indented to current indentation
18834 unless point is at the beginning of the line, in which the
18835 environment remains unintended."
18836 (interactive)
18837 ;; cdlatex-environment always return nil. Therefore, capture output
18838 ;; first and determine if an environment was selected.
18839 (let* ((beg (point-marker))
18840 (end (copy-marker (point) t))
18841 (inserted (progn
18842 (ignore-errors (cdlatex-environment environment item))
18843 (< beg end)))
18844 ;; Figure out how many lines to move forward after the
18845 ;; environment has been inserted.
18846 (lines (when inserted
18847 (save-excursion
18848 (- (loop while (< beg (point))
18849 with x = 0
18850 do (forward-line -1)
18851 (incf x)
18852 finally return x)
18853 (if (progn (goto-char beg)
18854 (and (progn (skip-chars-forward " \t") (eolp))
18855 (progn (skip-chars-backward " \t") (bolp))))
18856 1 0)))))
18857 (env (org-trim (delete-and-extract-region beg end))))
18858 (when inserted
18859 ;; Get indentation of next line unless at column 0.
18860 (let ((ind (if (bolp) 0
18861 (save-excursion
18862 (org-return-indent)
18863 (prog1 (org-get-indentation)
18864 (when (progn (skip-chars-forward " \t") (eolp))
18865 (delete-region beg (point)))))))
18866 (bol (progn (skip-chars-backward " \t") (bolp))))
18867 ;; Insert a newline before environment unless at column zero
18868 ;; to "escape" the current line. Insert a newline if
18869 ;; something is one the same line as \end{ENVIRONMENT}.
18870 (insert
18871 (concat (unless bol "\n") env
18872 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18873 (unless (zerop ind)
18874 (save-excursion
18875 (goto-char beg)
18876 (while (< (point) end)
18877 (unless (eolp) (org-indent-line-to ind))
18878 (forward-line))))
18879 (goto-char beg)
18880 (forward-line lines)
18881 (org-indent-line-to ind)))
18882 (set-marker beg nil)
18883 (set-marker end nil)))
18886 ;;;; LaTeX fragments
18888 (defun org-inside-LaTeX-fragment-p ()
18889 "Test if point is inside a LaTeX fragment.
18890 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18891 sequence appearing also before point.
18892 Even though the matchers for math are configurable, this function assumes
18893 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18894 delimiters are skipped when they have been removed by customization.
18895 The return value is nil, or a cons cell with the delimiter and the
18896 position of this delimiter.
18898 This function does a reasonably good job, but can locally be fooled by
18899 for example currency specifications. For example it will assume being in
18900 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18901 fragments that are properly closed, but during editing, we have to live
18902 with the uncertainty caused by missing closing delimiters. This function
18903 looks only before point, not after."
18904 (catch 'exit
18905 (let ((pos (point))
18906 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18907 (lim (progn
18908 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18909 (point)))
18910 dd-on str (start 0) m re)
18911 (goto-char pos)
18912 (when dodollar
18913 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18914 re (nth 1 (assoc "$" org-latex-regexps)))
18915 (while (string-match re str start)
18916 (cond
18917 ((= (match-end 0) (length str))
18918 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18919 ((= (match-end 0) (- (length str) 5))
18920 (throw 'exit nil))
18921 (t (setq start (match-end 0))))))
18922 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18923 (goto-char pos)
18924 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18925 (and (match-beginning 2) (throw 'exit nil))
18926 ;; count $$
18927 (while (re-search-backward "\\$\\$" lim t)
18928 (setq dd-on (not dd-on)))
18929 (goto-char pos)
18930 (if dd-on (cons "$$" m))))))
18932 (defun org-inside-latex-macro-p ()
18933 "Is point inside a LaTeX macro or its arguments?"
18934 (save-match-data
18935 (org-in-regexp
18936 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18938 (defvar org-latex-fragment-image-overlays nil
18939 "List of overlays carrying the images of latex fragments.")
18940 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18942 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18943 "Remove all overlays with LaTeX fragment images in current buffer.
18944 When optional arguments BEG and END are non-nil, remove all
18945 overlays between them instead. Return t when some overlays were
18946 removed, nil otherwise."
18947 (let (removedp)
18948 (setq org-latex-fragment-image-overlays
18949 (let ((beg (or beg (point-min)))
18950 (end (or end (point-max))))
18951 (org-remove-if
18952 (lambda (o)
18953 (and (>= (overlay-start o) beg)
18954 (<= (overlay-end o) end)
18955 (progn (delete-overlay o)
18956 (or removedp (setq removedp t)))))
18957 org-latex-fragment-image-overlays)))
18958 removedp))
18960 (define-obsolete-function-alias
18961 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18962 (defun org-toggle-latex-fragment (&optional arg)
18963 "Preview the LaTeX fragment at point, or all locally or globally.
18965 If the cursor is on a LaTeX fragment, create the image and overlay
18966 it over the source code, if there is none. Remove it otherwise.
18967 If there is no fragment at point, display all fragments in the
18968 current section.
18970 With prefix ARG, preview or clear image for all fragments in the
18971 current subtree or in the whole buffer when used before the first
18972 headline. With a double prefix ARG \\[universal-argument] \
18973 \\[universal-argument] preview or clear images
18974 for all fragments in the buffer."
18975 (interactive "P")
18976 (unless (buffer-file-name (buffer-base-buffer))
18977 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18978 (when (display-graphic-p)
18979 (catch 'exit
18980 (save-excursion
18981 (let ((window-start (window-start)) msg)
18982 (save-restriction
18983 (cond
18984 ((or (equal arg '(16))
18985 (and (equal arg '(4))
18986 (org-with-limited-levels (org-before-first-heading-p))))
18987 (if (org-remove-latex-fragment-image-overlays)
18988 (progn (message "LaTeX fragments images removed from buffer")
18989 (throw 'exit nil))
18990 (setq msg "Creating images for buffer...")))
18991 ((equal arg '(4))
18992 (org-with-limited-levels (org-back-to-heading t))
18993 (let ((beg (point))
18994 (end (progn (org-end-of-subtree t) (point))))
18995 (if (org-remove-latex-fragment-image-overlays beg end)
18996 (progn
18997 (message "LaTeX fragment images removed from subtree")
18998 (throw 'exit nil))
18999 (setq msg "Creating images for subtree...")
19000 (narrow-to-region beg end))))
19001 ((let ((datum (org-element-context)))
19002 (when (memq (org-element-type datum)
19003 '(latex-environment latex-fragment))
19004 (let* ((beg (org-element-property :begin datum))
19005 (end (org-element-property :end datum)))
19006 (if (org-remove-latex-fragment-image-overlays beg end)
19007 (progn (message "LaTeX fragment image removed")
19008 (throw 'exit nil))
19009 (narrow-to-region beg end)
19010 (setq msg "Creating image..."))))))
19012 (org-with-limited-levels
19013 (let ((beg (if (org-at-heading-p) (line-beginning-position)
19014 (outline-previous-heading)
19015 (point)))
19016 (end (progn (outline-next-heading) (point))))
19017 (if (org-remove-latex-fragment-image-overlays beg end)
19018 (progn
19019 (message "LaTeX fragment images removed from section")
19020 (throw 'exit nil))
19021 (setq msg "Creating images for section...")
19022 (narrow-to-region beg end))))))
19023 (let ((file (buffer-file-name (buffer-base-buffer))))
19024 (org-format-latex
19025 (concat org-latex-preview-ltxpng-directory
19026 (file-name-sans-extension (file-name-nondirectory file)))
19027 ;; Emacs cannot overlay images from remote hosts.
19028 ;; Create it in `temporary-file-directory' instead.
19029 (if (file-remote-p file) temporary-file-directory
19030 default-directory)
19031 'overlays msg 'forbuffer
19032 org-latex-create-formula-image-program)))
19033 ;; Work around a bug that doesn't restore window's start
19034 ;; when widening back the buffer.
19035 (set-window-start nil window-start)
19036 (message (concat msg "done")))))))
19038 (defun org-format-latex
19039 (prefix &optional dir overlays msg forbuffer processing-type)
19040 "Replace LaTeX fragments with links to an image, and produce images.
19042 When optional argument OVERLAYS is non-nil, display the image on
19043 top of the fragment instead of replacing it.
19045 PROCESSING-TYPE is the conversion method to use, as a symbol.
19047 Some of the options can be changed using the variable
19048 `org-format-latex-options', which see."
19049 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
19050 (unless (eq processing-type 'verbatim)
19051 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
19052 (cnt 0)
19053 checkdir-flag)
19054 (goto-char (point-min))
19055 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
19056 (when (and overlays (memq processing-type '(dvipng imagemagick)))
19057 (overlay-recenter (point-max)))
19058 (while (re-search-forward math-regexp nil t)
19059 (unless (and overlays
19060 (eq (get-char-property (point) 'org-overlay-type)
19061 'org-latex-overlay))
19062 (let* ((context (org-element-context))
19063 (type (org-element-type context)))
19064 (when (memq type '(latex-environment latex-fragment))
19065 (let ((block-type (eq type 'latex-environment))
19066 (value (org-element-property :value context))
19067 (beg (org-element-property :begin context))
19068 (end (save-excursion
19069 (goto-char (org-element-property :end context))
19070 (skip-chars-backward " \r\t\n")
19071 (point))))
19072 (case processing-type
19073 (mathjax
19074 ;; Prepare for MathJax processing.
19075 (if (eq (char-after beg) ?$)
19076 (save-excursion
19077 (delete-region beg end)
19078 (insert "\\(" (substring value 1 -1) "\\)"))
19079 (goto-char end)))
19080 ((dvipng imagemagick)
19081 ;; Process to an image.
19082 (incf cnt)
19083 (goto-char beg)
19084 (let* ((face (face-at-point))
19085 ;; Get the colors from the face at point.
19087 (let ((color (plist-get org-format-latex-options
19088 :foreground)))
19089 (if (and forbuffer (eq color 'auto))
19090 (face-attribute face :foreground nil 'default)
19091 color)))
19093 (let ((color (plist-get org-format-latex-options
19094 :background)))
19095 (if (and forbuffer (eq color 'auto))
19096 (face-attribute face :background nil 'default)
19097 color)))
19098 (hash (sha1 (prin1-to-string
19099 (list org-format-latex-header
19100 org-latex-default-packages-alist
19101 org-latex-packages-alist
19102 org-format-latex-options
19103 forbuffer value fg bg))))
19104 (absprefix (expand-file-name prefix dir))
19105 (linkfile (format "%s_%s.png" prefix hash))
19106 (movefile (format "%s_%s.png" absprefix hash))
19107 (sep (and block-type "\n\n"))
19108 (link (concat sep "[[file:" linkfile "]]" sep))
19109 (options
19110 (org-combine-plists
19111 org-format-latex-options
19112 `(:foreground ,fg :background ,bg))))
19113 (when msg (message msg cnt))
19114 (unless checkdir-flag ; Ensure the directory exists.
19115 (setq checkdir-flag t)
19116 (let ((todir (file-name-directory absprefix)))
19117 (unless (file-directory-p todir)
19118 (make-directory todir t))))
19119 (unless (file-exists-p movefile)
19120 (org-create-formula-image
19121 value movefile options forbuffer processing-type))
19122 (if overlays
19123 (progn
19124 (dolist (o (overlays-in beg end))
19125 (when (eq (overlay-get o 'org-overlay-type)
19126 'org-latex-overlay)
19127 (delete-overlay o)))
19128 (let ((ov (make-overlay beg end)))
19129 (overlay-put ov
19130 'org-overlay-type
19131 'org-latex-overlay)
19132 (overlay-put ov 'evaporate t)
19133 (if (featurep 'xemacs)
19134 (progn
19135 (overlay-put ov 'invisible t)
19136 (overlay-put
19137 ov 'end-glyph
19138 (make-glyph
19139 (vector 'png :file movefile))))
19140 (overlay-put
19141 ov 'display
19142 (list 'image
19143 :type 'png
19144 :file movefile
19145 :ascent 'center)))
19146 (push ov org-latex-fragment-image-overlays))
19147 (goto-char end))
19148 (delete-region beg end)
19149 (insert
19150 (org-add-props link
19151 (list 'org-latex-src
19152 (replace-regexp-in-string "\"" "" value)
19153 'org-latex-src-embed-type
19154 (if block-type 'paragraph 'character)))))))
19155 (mathml
19156 ;; Process to MathML.
19157 (unless (org-format-latex-mathml-available-p)
19158 (user-error "LaTeX to MathML converter not configured"))
19159 (incf cnt)
19160 (when msg (message msg cnt))
19161 (goto-char beg)
19162 (delete-region beg end)
19163 (insert (org-format-latex-as-mathml
19164 value block-type prefix dir)))
19165 (otherwise
19166 (error "Unknown conversion type %s for LaTeX fragments"
19167 processing-type)))))))))))
19169 (defun org-create-math-formula (latex-frag &optional mathml-file)
19170 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19171 Use `org-latex-to-mathml-convert-command'. If the conversion is
19172 sucessful, return the portion between \"<math...> </math>\"
19173 elements otherwise return nil. When MATHML-FILE is specified,
19174 write the results in to that file. When invoked as an
19175 interactive command, prompt for LATEX-FRAG, with initial value
19176 set to the current active region and echo the results for user
19177 inspection."
19178 (interactive (list (let ((frag (when (org-region-active-p)
19179 (buffer-substring-no-properties
19180 (region-beginning) (region-end)))))
19181 (read-string "LaTeX Fragment: " frag nil frag))))
19182 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19183 (let* ((tmp-in-file (file-relative-name
19184 (make-temp-name (expand-file-name "ltxmathml-in"))))
19185 (ignore (write-region latex-frag nil tmp-in-file))
19186 (tmp-out-file (file-relative-name
19187 (make-temp-name (expand-file-name "ltxmathml-out"))))
19188 (cmd (format-spec
19189 org-latex-to-mathml-convert-command
19190 `((?j . ,(and org-latex-to-mathml-jar-file
19191 (shell-quote-argument
19192 (expand-file-name
19193 org-latex-to-mathml-jar-file))))
19194 (?I . ,(shell-quote-argument tmp-in-file))
19195 (?i . ,latex-frag)
19196 (?o . ,(shell-quote-argument tmp-out-file)))))
19197 mathml shell-command-output)
19198 (when (org-called-interactively-p 'any)
19199 (unless (org-format-latex-mathml-available-p)
19200 (user-error "LaTeX to MathML converter not configured")))
19201 (message "Running %s" cmd)
19202 (setq shell-command-output (shell-command-to-string cmd))
19203 (setq mathml
19204 (when (file-readable-p tmp-out-file)
19205 (with-current-buffer (find-file-noselect tmp-out-file t)
19206 (goto-char (point-min))
19207 (when (re-search-forward
19208 (concat
19209 (regexp-quote
19210 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19211 "[^>]*?>"
19212 "\\(.\\|\n\\)*"
19213 "</math>")
19214 nil t)
19215 (prog1 (match-string 0) (kill-buffer))))))
19216 (cond
19217 (mathml
19218 (setq mathml
19219 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19220 (when mathml-file
19221 (write-region mathml nil mathml-file))
19222 (when (org-called-interactively-p 'any)
19223 (message mathml)))
19224 ((message "LaTeX to MathML conversion failed")
19225 (message shell-command-output)))
19226 (delete-file tmp-in-file)
19227 (when (file-exists-p tmp-out-file)
19228 (delete-file tmp-out-file))
19229 mathml))
19231 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19232 prefix &optional dir)
19233 "Use `org-create-math-formula' but check local cache first."
19234 (let* ((absprefix (expand-file-name prefix dir))
19235 (print-length nil) (print-level nil)
19236 (formula-id (concat
19237 "formula-"
19238 (sha1
19239 (prin1-to-string
19240 (list latex-frag
19241 org-latex-to-mathml-convert-command)))))
19242 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19243 (formula-cache-dir (file-name-directory formula-cache)))
19245 (unless (file-directory-p formula-cache-dir)
19246 (make-directory formula-cache-dir t))
19248 (unless (file-exists-p formula-cache)
19249 (org-create-math-formula latex-frag formula-cache))
19251 (if (file-exists-p formula-cache)
19252 ;; Successful conversion. Return the link to MathML file.
19253 (org-add-props
19254 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19255 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19256 'org-latex-src-embed-type (if latex-frag-type
19257 'paragraph 'character)))
19258 ;; Failed conversion. Return the LaTeX fragment verbatim
19259 latex-frag)))
19261 (defun org-create-formula-image (string tofile options buffer &optional type)
19262 "Create an image from LaTeX source using dvipng or convert.
19263 This function calls either `org-create-formula-image-with-dvipng'
19264 or `org-create-formula-image-with-imagemagick' depending on the
19265 value of `org-latex-create-formula-image-program' or on the value
19266 of the optional TYPE variable.
19268 Note: ultimately these two function should be combined as they
19269 share a good deal of logic."
19270 (org-check-external-command
19271 "latex" "needed to convert LaTeX fragments to images")
19272 (funcall
19273 (case (or type org-latex-create-formula-image-program)
19274 (dvipng
19275 (org-check-external-command
19276 "dvipng" "needed to convert LaTeX fragments to images")
19277 #'org-create-formula-image-with-dvipng)
19278 (imagemagick
19279 (org-check-external-command
19280 "convert" "you need to install imagemagick")
19281 #'org-create-formula-image-with-imagemagick)
19282 (t (error
19283 "Invalid value of `org-latex-create-formula-image-program'")))
19284 string tofile options buffer))
19286 (declare-function org-export-get-backend "ox" (name))
19287 (declare-function org-export--get-global-options "ox" (&optional backend))
19288 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19289 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19290 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19291 (defun org-create-formula--latex-header ()
19292 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19293 (let ((info (org-combine-plists (org-export--get-global-options
19294 (org-export-get-backend 'latex))
19295 (org-export--get-inbuffer-options
19296 (org-export-get-backend 'latex)))))
19297 (org-latex-guess-babel-language
19298 (org-latex-guess-inputenc
19299 (org-splice-latex-header
19300 org-format-latex-header
19301 org-latex-default-packages-alist
19302 org-latex-packages-alist t
19303 (plist-get info :latex-header)))
19304 info)))
19306 (defun org--get-display-dpi ()
19307 "Get the DPI of the display.
19309 Assumes that the display has the same pixel width in the
19310 horizontal and vertical directions."
19311 (if (display-graphic-p)
19312 (round (/ (display-pixel-height)
19313 (/ (display-mm-height) 25.4)))
19314 (error "Attempt to calculate the dpi of a non-graphic display")))
19316 ;; This function borrows from Ganesh Swami's latex2png.el
19317 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19318 "This calls dvipng."
19319 (require 'ox-latex)
19320 (let* ((tmpdir (if (featurep 'xemacs)
19321 (temp-directory)
19322 temporary-file-directory))
19323 (texfilebase (make-temp-name
19324 (expand-file-name "orgtex" tmpdir)))
19325 (texfile (concat texfilebase ".tex"))
19326 (dvifile (concat texfilebase ".dvi"))
19327 (pngfile (concat texfilebase ".png"))
19328 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19329 ;; This assumes that the display has the same pixel width in
19330 ;; the horizontal and vertical directions
19331 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19332 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19333 "Black"))
19334 (bg (or (plist-get options (if buffer :background :html-background))
19335 "Transparent")))
19336 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19337 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19338 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19339 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19340 (let ((latex-header (org-create-formula--latex-header)))
19341 (with-temp-file texfile
19342 (insert latex-header)
19343 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19344 (let ((dir default-directory))
19345 (ignore-errors
19346 (cd tmpdir)
19347 (call-process "latex" nil nil nil texfile))
19348 (cd dir))
19349 (if (not (file-exists-p dvifile))
19350 (progn (message "Failed to create dvi file from %s" texfile) nil)
19351 (ignore-errors
19352 (if (featurep 'xemacs)
19353 (call-process "dvipng" nil nil nil
19354 "-fg" fg "-bg" bg
19355 "-T" "tight"
19356 "-o" pngfile
19357 dvifile)
19358 (call-process "dvipng" nil nil nil
19359 "-fg" fg "-bg" bg
19360 "-D" dpi
19361 ;;"-x" scale "-y" scale
19362 "-T" "tight"
19363 "-o" pngfile
19364 dvifile)))
19365 (if (not (file-exists-p pngfile))
19366 (if org-format-latex-signal-error
19367 (error "Failed to create png file from %s" texfile)
19368 (message "Failed to create png file from %s" texfile)
19369 nil)
19370 ;; Use the requested file name and clean up
19371 (copy-file pngfile tofile 'replace)
19372 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19373 (if (file-exists-p (concat texfilebase e))
19374 (delete-file (concat texfilebase e))))
19375 pngfile))))
19377 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19378 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19379 "This calls convert, which is included into imagemagick."
19380 (require 'ox-latex)
19381 (let* ((tmpdir (if (featurep 'xemacs)
19382 (temp-directory)
19383 temporary-file-directory))
19384 (texfilebase (make-temp-name
19385 (expand-file-name "orgtex" tmpdir)))
19386 (texfile (concat texfilebase ".tex"))
19387 (pdffile (concat texfilebase ".pdf"))
19388 (pngfile (concat texfilebase ".png"))
19389 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19390 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19391 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19392 "black"))
19393 (bg (or (plist-get options (if buffer :background :html-background))
19394 "white")))
19395 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19396 (setq fg (org-latex-color-format fg)))
19397 (if (eq bg 'default) (setq bg (org-latex-color :background))
19398 (setq bg (org-latex-color-format
19399 (if (string= bg "Transparent") "white" bg))))
19400 (let ((latex-header (org-create-formula--latex-header)))
19401 (with-temp-file texfile
19402 (insert latex-header)
19403 (insert "\n\\begin{document}\n"
19404 "\\definecolor{fg}{rgb}{" fg "}\n"
19405 "\\definecolor{bg}{rgb}{" bg "}\n"
19406 "\n\\pagecolor{bg}\n"
19407 "\n{\\color{fg}\n"
19408 string
19409 "\n}\n"
19410 "\n\\end{document}\n")))
19411 (org-latex-compile texfile t)
19412 (if (not (file-exists-p pdffile))
19413 (progn (message "Failed to create pdf file from %s" texfile) nil)
19414 (ignore-errors
19415 (if (featurep 'xemacs)
19416 (call-process "convert" nil nil nil
19417 "-density" "96"
19418 "-trim"
19419 "-antialias"
19420 pdffile
19421 "-quality" "100"
19422 ;; "-sharpen" "0x1.0"
19423 pngfile)
19424 (call-process "convert" nil nil nil
19425 "-density" dpi
19426 "-trim"
19427 "-antialias"
19428 pdffile
19429 "-quality" "100"
19430 ;; "-sharpen" "0x1.0"
19431 pngfile)))
19432 (if (not (file-exists-p pngfile))
19433 (if org-format-latex-signal-error
19434 (error "Failed to create png file from %s" texfile)
19435 (message "Failed to create png file from %s" texfile)
19436 nil)
19437 ;; Use the requested file name and clean up
19438 (copy-file pngfile tofile 'replace)
19439 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19440 (if (file-exists-p (concat texfilebase e))
19441 (delete-file (concat texfilebase e))))
19442 pngfile))))
19444 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19445 "Fill a LaTeX header template TPL.
19446 In the template, the following place holders will be recognized:
19448 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19449 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19450 [PACKAGES] \\usepackage statements for PKG
19451 [NO-PACKAGES] do not include PKG
19452 [EXTRA] the string EXTRA
19453 [NO-EXTRA] do not include EXTRA
19455 For backward compatibility, if both the positive and the negative place
19456 holder is missing, the positive one (without the \"NO-\") will be
19457 assumed to be present at the end of the template.
19458 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19459 EXTRA is a string.
19460 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19461 (let (rpl (end ""))
19462 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19463 (setq rpl (if (or (match-end 1) (not def-pkg))
19464 "" (org-latex-packages-to-string def-pkg snippets-p t))
19465 tpl (replace-match rpl t t tpl))
19466 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19468 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19469 (setq rpl (if (or (match-end 1) (not pkg))
19470 "" (org-latex-packages-to-string pkg snippets-p t))
19471 tpl (replace-match rpl t t tpl))
19472 (if pkg (setq end
19473 (concat end "\n"
19474 (org-latex-packages-to-string pkg snippets-p)))))
19476 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19477 (setq rpl (if (or (match-end 1) (not extra))
19478 "" (concat extra "\n"))
19479 tpl (replace-match rpl t t tpl))
19480 (if (and extra (string-match "\\S-" extra))
19481 (setq end (concat end "\n" extra))))
19483 (if (string-match "\\S-" end)
19484 (concat tpl "\n" end)
19485 tpl)))
19487 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19488 "Turn an alist of packages into a string with the \\usepackage macros."
19489 (setq pkg (mapconcat (lambda(p)
19490 (cond
19491 ((stringp p) p)
19492 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19493 (format "%% Package %s omitted" (cadr p)))
19494 ((equal "" (car p))
19495 (format "\\usepackage{%s}" (cadr p)))
19497 (format "\\usepackage[%s]{%s}"
19498 (car p) (cadr p)))))
19500 "\n"))
19501 (if newline (concat pkg "\n") pkg))
19503 (defun org-dvipng-color (attr)
19504 "Return a RGB color specification for dvipng."
19505 (apply 'format "rgb %s %s %s"
19506 (mapcar 'org-normalize-color
19507 (if (featurep 'xemacs)
19508 (color-rgb-components
19509 (face-property 'default
19510 (cond ((eq attr :foreground) 'foreground)
19511 ((eq attr :background) 'background))))
19512 (color-values (face-attribute 'default attr nil))))))
19514 (defun org-dvipng-color-format (color-name)
19515 "Convert COLOR-NAME to a RGB color value for dvipng."
19516 (apply 'format "rgb %s %s %s"
19517 (mapcar 'org-normalize-color
19518 (color-values color-name))))
19520 (defun org-latex-color (attr)
19521 "Return a RGB color for the LaTeX color package."
19522 (apply 'format "%s,%s,%s"
19523 (mapcar 'org-normalize-color
19524 (if (featurep 'xemacs)
19525 (color-rgb-components
19526 (face-property 'default
19527 (cond ((eq attr :foreground) 'foreground)
19528 ((eq attr :background) 'background))))
19529 (color-values (face-attribute 'default attr nil))))))
19531 (defun org-latex-color-format (color-name)
19532 "Convert COLOR-NAME to a RGB color value."
19533 (apply 'format "%s,%s,%s"
19534 (mapcar 'org-normalize-color
19535 (color-values color-name))))
19537 (defun org-normalize-color (value)
19538 "Return string to be used as color value for an RGB component."
19539 (format "%g" (/ value 65535.0)))
19543 ;; Image display
19545 (defvar org-inline-image-overlays nil)
19546 (make-variable-buffer-local 'org-inline-image-overlays)
19548 (defun org-toggle-inline-images (&optional include-linked)
19549 "Toggle the display of inline images.
19550 INCLUDE-LINKED is passed to `org-display-inline-images'."
19551 (interactive "P")
19552 (if org-inline-image-overlays
19553 (progn
19554 (org-remove-inline-images)
19555 (when (org-called-interactively-p 'interactive)
19556 (message "Inline image display turned off")))
19557 (org-display-inline-images include-linked)
19558 (when (org-called-interactively-p 'interactive)
19559 (message (if org-inline-image-overlays
19560 (format "%d images displayed inline"
19561 (length org-inline-image-overlays))
19562 "No images to display inline")))))
19564 (defun org-redisplay-inline-images ()
19565 "Refresh the display of inline images."
19566 (interactive)
19567 (if (not org-inline-image-overlays)
19568 (org-toggle-inline-images)
19569 (org-toggle-inline-images)
19570 (org-toggle-inline-images)))
19572 (defun org-display-inline-images (&optional include-linked refresh beg end)
19573 "Display inline images.
19575 An inline image is a link which follows either of these
19576 conventions:
19578 1. Its path is a file with an extension matching return value
19579 from `image-file-name-regexp' and it has no contents.
19581 2. Its description consists in a single link of the previous
19582 type.
19584 When optional argument INCLUDE-LINKED is non-nil, also links with
19585 a text description part will be inlined. This can be nice for
19586 a quick look at those images, but it does not reflect what
19587 exported files will look like.
19589 When optional argument REFRESH is non-nil, refresh existing
19590 images between BEG and END. This will create new image displays
19591 only if necessary. BEG and END default to the buffer
19592 boundaries."
19593 (interactive "P")
19594 (when (display-graphic-p)
19595 (unless refresh
19596 (org-remove-inline-images)
19597 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19598 (org-with-wide-buffer
19599 (goto-char (or beg (point-min)))
19600 (let ((case-fold-search t)
19601 (file-extension-re (org-image-file-name-regexp)))
19602 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19603 (let ((link (save-match-data (org-element-context))))
19604 ;; Check if we're at an inline image.
19605 (when (and (equal (org-element-property :type link) "file")
19606 (or include-linked
19607 (not (org-element-property :contents-begin link)))
19608 (let ((parent (org-element-property :parent link)))
19609 (or (not (eq (org-element-type parent) 'link))
19610 (not (cdr (org-element-contents parent)))))
19611 (org-string-match-p file-extension-re
19612 (org-element-property :path link)))
19613 (let ((file (expand-file-name
19614 (org-link-unescape
19615 (org-element-property :path link)))))
19616 (when (file-exists-p file)
19617 (let ((width
19618 ;; Apply `org-image-actual-width' specifications.
19619 (cond
19620 ((not (image-type-available-p 'imagemagick)) nil)
19621 ((eq org-image-actual-width t) nil)
19622 ((listp org-image-actual-width)
19624 ;; First try to find a width among
19625 ;; attributes associated to the paragraph
19626 ;; containing link.
19627 (let ((paragraph
19628 (let ((e link))
19629 (while (and (setq e (org-element-property
19630 :parent e))
19631 (not (eq (org-element-type e)
19632 'paragraph))))
19633 e)))
19634 (when paragraph
19635 (save-excursion
19636 (goto-char (org-element-property :begin paragraph))
19637 (when
19638 (re-search-forward
19639 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19640 (org-element-property
19641 :post-affiliated paragraph)
19643 (string-to-number (match-string 1))))))
19644 ;; Otherwise, fall-back to provided number.
19645 (car org-image-actual-width)))
19646 ((numberp org-image-actual-width)
19647 org-image-actual-width)))
19648 (old (get-char-property-and-overlay
19649 (org-element-property :begin link)
19650 'org-image-overlay)))
19651 (if (and (car-safe old) refresh)
19652 (image-refresh (overlay-get (cdr old) 'display))
19653 (let ((image (create-image file
19654 (and width 'imagemagick)
19656 :width width)))
19657 (when image
19658 (let* ((link
19659 ;; If inline image is the description
19660 ;; of another link, be sure to
19661 ;; consider the latter as the one to
19662 ;; apply the overlay on.
19663 (let ((parent
19664 (org-element-property :parent link)))
19665 (if (eq (org-element-type parent) 'link)
19666 parent
19667 link)))
19668 (ov (make-overlay
19669 (org-element-property :begin link)
19670 (progn
19671 (goto-char
19672 (org-element-property :end link))
19673 (skip-chars-backward " \t")
19674 (point)))))
19675 (overlay-put ov 'display image)
19676 (overlay-put ov 'face 'default)
19677 (overlay-put ov 'org-image-overlay t)
19678 (overlay-put
19679 ov 'modification-hooks
19680 (list 'org-display-inline-remove-overlay))
19681 (push ov org-inline-image-overlays)))))))))))))))
19683 (define-obsolete-function-alias
19684 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19686 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19687 "Remove inline-display overlay if a corresponding region is modified."
19688 (let ((inhibit-modification-hooks t))
19689 (when (and ov after)
19690 (delete ov org-inline-image-overlays)
19691 (delete-overlay ov))))
19693 (defun org-remove-inline-images ()
19694 "Remove inline display of images."
19695 (interactive)
19696 (mapc 'delete-overlay org-inline-image-overlays)
19697 (setq org-inline-image-overlays nil))
19699 ;;;; Key bindings
19701 ;; Outline functions from `outline-mode-prefix-map'
19702 ;; that can be remapped in Org:
19703 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19704 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19705 (define-key org-mode-map [remap outline-forward-same-level]
19706 'org-forward-heading-same-level)
19707 (define-key org-mode-map [remap outline-backward-same-level]
19708 'org-backward-heading-same-level)
19709 (define-key org-mode-map [remap show-branches]
19710 'org-kill-note-or-show-branches)
19711 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19712 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19713 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19714 (define-key org-mode-map [remap outline-next-visible-heading]
19715 'org-next-visible-heading)
19716 (define-key org-mode-map [remap outline-previous-visible-heading]
19717 'org-previous-visible-heading)
19719 ;; Outline functions from `outline-mode-prefix-map' that can not
19720 ;; be remapped in Org:
19722 ;; - the column "key binding" shows whether the Outline function is still
19723 ;; available in Org mode on the same key that it has been bound to in
19724 ;; Outline mode:
19725 ;; - "overridden": key used for a different functionality in Org mode
19726 ;; - else: key still bound to the same Outline function in Org mode
19728 ;; | Outline function | key binding | Org replacement |
19729 ;; |------------------------------------+-------------+--------------------------|
19730 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19731 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19732 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19733 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19734 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19735 ;; | `show-entry' | overridden | no replacement |
19736 ;; | `show-children' | `C-c C-i' | visibility cycling |
19737 ;; | `show-branches' | `C-c C-k' | still same function |
19738 ;; | `show-subtree' | overridden | visibility cycling |
19739 ;; | `show-all' | overridden | no replacement |
19740 ;; | `hide-subtree' | overridden | visibility cycling |
19741 ;; | `hide-body' | overridden | no replacement |
19742 ;; | `hide-entry' | overridden | visibility cycling |
19743 ;; | `hide-leaves' | overridden | no replacement |
19744 ;; | `hide-sublevels' | overridden | no replacement |
19745 ;; | `hide-other' | overridden | no replacement |
19747 ;; Make `C-c C-x' a prefix key
19748 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19750 ;; TAB key with modifiers
19751 (org-defkey org-mode-map "\C-i" 'org-cycle)
19752 (org-defkey org-mode-map [(tab)] 'org-cycle)
19753 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19754 (org-defkey org-mode-map "\M-\t" #'pcomplete)
19755 ;; The following line is necessary under Suse GNU/Linux
19756 (unless (featurep 'xemacs)
19757 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19758 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19759 (define-key org-mode-map [backtab] 'org-shifttab)
19761 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19762 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19763 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19765 ;; Cursor keys with modifiers
19766 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19767 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19768 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19769 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19771 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19772 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19773 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19774 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19775 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19776 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19778 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19779 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19780 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19781 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19783 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19784 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19785 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19786 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19788 ;; Babel keys
19789 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19790 (mapc (lambda (pair)
19791 (define-key org-babel-map (car pair) (cdr pair)))
19792 org-babel-key-bindings)
19794 ;;; Extra keys for tty access.
19795 ;; We only set them when really needed because otherwise the
19796 ;; menus don't show the simple keys
19798 (when (or org-use-extra-keys
19799 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19800 (not window-system))
19801 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19802 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19803 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19804 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19805 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19806 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19807 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19808 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19809 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19810 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19811 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19812 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19813 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19814 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19815 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19816 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19817 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19818 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19819 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19820 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19821 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19822 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19823 (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
19824 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19825 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19826 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19827 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19828 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19830 ;; All the other keys
19832 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19833 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19834 (if (boundp 'narrow-map)
19835 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19836 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19837 (if (boundp 'narrow-map)
19838 (org-defkey narrow-map "b" 'org-narrow-to-block)
19839 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19840 (if (boundp 'narrow-map)
19841 (org-defkey narrow-map "e" 'org-narrow-to-element)
19842 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19843 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19844 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19845 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19846 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19847 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19848 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19849 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19850 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19851 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19852 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19853 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
19854 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19855 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19856 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19857 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19858 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19859 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19860 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19861 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19862 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19863 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19864 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19865 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19866 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19867 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19868 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19869 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19870 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19871 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19872 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19873 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19874 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19875 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19876 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19877 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19878 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19879 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19880 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19881 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19882 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19883 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19884 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19885 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19886 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19887 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19888 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19889 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19890 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19891 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19892 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19893 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19894 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19895 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19896 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19897 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19898 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19899 (org-defkey org-mode-map "\C-c^" 'org-sort)
19900 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19901 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19902 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19903 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19904 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19905 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19906 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19907 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19908 (org-defkey org-mode-map "\C-m" 'org-return)
19909 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19910 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19911 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19912 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19913 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19914 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19915 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19916 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19917 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19918 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19919 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19920 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19921 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19922 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19923 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19924 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19925 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19926 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19927 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19928 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19929 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19930 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19931 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19932 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19933 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19935 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19936 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19937 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19939 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19940 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19941 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19942 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19943 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19944 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19945 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19946 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19947 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19948 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19949 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19950 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19951 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19952 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19953 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19954 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19955 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19956 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19957 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19958 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19959 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19960 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19962 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19963 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19964 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19965 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19966 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19968 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19970 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19972 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19973 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19975 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19978 (when (featurep 'xemacs)
19979 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19982 (defconst org-speed-commands-default
19984 ("Outline Navigation")
19985 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19986 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19987 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19988 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19989 ("F" . org-next-block)
19990 ("B" . org-previous-block)
19991 ("u" . (org-speed-move-safe 'outline-up-heading))
19992 ("j" . org-goto)
19993 ("g" . (org-refile t))
19994 ("Outline Visibility")
19995 ("c" . org-cycle)
19996 ("C" . org-shifttab)
19997 (" " . org-display-outline-path)
19998 ("s" . org-narrow-to-subtree)
19999 ("=" . org-columns)
20000 ("Outline Structure Editing")
20001 ("U" . org-metaup)
20002 ("D" . org-metadown)
20003 ("r" . org-metaright)
20004 ("l" . org-metaleft)
20005 ("R" . org-shiftmetaright)
20006 ("L" . org-shiftmetaleft)
20007 ("i" . (progn (forward-char 1) (call-interactively
20008 'org-insert-heading-respect-content)))
20009 ("^" . org-sort)
20010 ("w" . org-refile)
20011 ("a" . org-archive-subtree-default-with-confirmation)
20012 ("@" . org-mark-subtree)
20013 ("#" . org-toggle-comment)
20014 ("Clock Commands")
20015 ("I" . org-clock-in)
20016 ("O" . org-clock-out)
20017 ("Meta Data Editing")
20018 ("t" . org-todo)
20019 ("," . (org-priority))
20020 ("0" . (org-priority ?\ ))
20021 ("1" . (org-priority ?A))
20022 ("2" . (org-priority ?B))
20023 ("3" . (org-priority ?C))
20024 (":" . org-set-tags-command)
20025 ("e" . org-set-effort)
20026 ("E" . org-inc-effort)
20027 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
20028 (org-entry-put (point) "APPT_WARNTIME" m)))
20029 ("Agenda Views etc")
20030 ("v" . org-agenda)
20031 ("/" . org-sparse-tree)
20032 ("Misc")
20033 ("o" . org-open-at-point)
20034 ("?" . org-speed-command-help)
20035 ("<" . (org-agenda-set-restriction-lock 'subtree))
20036 (">" . (org-agenda-remove-restriction-lock))
20038 "The default speed commands.")
20040 (defun org-print-speed-command (e)
20041 (if (> (length (car e)) 1)
20042 (progn
20043 (princ "\n")
20044 (princ (car e))
20045 (princ "\n")
20046 (princ (make-string (length (car e)) ?-))
20047 (princ "\n"))
20048 (princ (car e))
20049 (princ " ")
20050 (if (symbolp (cdr e))
20051 (princ (symbol-name (cdr e)))
20052 (prin1 (cdr e)))
20053 (princ "\n")))
20055 (defun org-speed-command-help ()
20056 "Show the available speed commands."
20057 (interactive)
20058 (if (not org-use-speed-commands)
20059 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
20060 (with-output-to-temp-buffer "*Help*"
20061 (princ "User-defined Speed commands\n===========================\n")
20062 (mapc 'org-print-speed-command org-speed-commands-user)
20063 (princ "\n")
20064 (princ "Built-in Speed commands\n=======================\n")
20065 (mapc 'org-print-speed-command org-speed-commands-default))
20066 (with-current-buffer "*Help*"
20067 (setq truncate-lines t))))
20069 (defun org-speed-move-safe (cmd)
20070 "Execute CMD, but make sure that the cursor always ends up in a headline.
20071 If not, return to the original position and throw an error."
20072 (interactive)
20073 (let ((pos (point)))
20074 (call-interactively cmd)
20075 (unless (and (bolp) (org-at-heading-p))
20076 (goto-char pos)
20077 (error "Boundary reached while executing %s" cmd))))
20079 (defvar org-self-insert-command-undo-counter 0)
20081 (defvar org-table-auto-blank-field) ; defined in org-table.el
20082 (defvar org-speed-command nil)
20084 (define-obsolete-function-alias
20085 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20087 (defun org-speed-command-activate (keys)
20088 "Hook for activating single-letter speed commands.
20089 `org-speed-commands-default' specifies a minimal command set.
20090 Use `org-speed-commands-user' for further customization."
20091 (when (or (and (bolp) (looking-at org-outline-regexp))
20092 (and (functionp org-use-speed-commands)
20093 (funcall org-use-speed-commands)))
20094 (cdr (assoc keys (append org-speed-commands-user
20095 org-speed-commands-default)))))
20097 (define-obsolete-function-alias
20098 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20100 (defun org-babel-speed-command-activate (keys)
20101 "Hook for activating single-letter code block commands."
20102 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20103 (cdr (assoc keys org-babel-key-bindings))))
20105 (defcustom org-speed-command-hook
20106 '(org-speed-command-default-hook org-babel-speed-command-hook)
20107 "Hook for activating speed commands at strategic locations.
20108 Hook functions are called in sequence until a valid handler is
20109 found.
20111 Each hook takes a single argument, a user-pressed command key
20112 which is also a `self-insert-command' from the global map.
20114 Within the hook, examine the cursor position and the command key
20115 and return nil or a valid handler as appropriate. Handler could
20116 be one of an interactive command, a function, or a form.
20118 Set `org-use-speed-commands' to non-nil value to enable this
20119 hook. The default setting is `org-speed-command-activate'."
20120 :group 'org-structure
20121 :version "24.1"
20122 :type 'hook)
20124 (defun org-self-insert-command (N)
20125 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20126 If the cursor is in a table looking at whitespace, the whitespace is
20127 overwritten, and the table is not marked as requiring realignment."
20128 (interactive "p")
20129 (org-check-before-invisible-edit 'insert)
20130 (cond
20131 ((and org-use-speed-commands
20132 (let ((kv (this-command-keys-vector)))
20133 (setq org-speed-command
20134 (run-hook-with-args-until-success
20135 'org-speed-command-hook
20136 (make-string 1 (aref kv (1- (length kv))))))))
20137 (cond
20138 ((commandp org-speed-command)
20139 (setq this-command org-speed-command)
20140 (call-interactively org-speed-command))
20141 ((functionp org-speed-command)
20142 (funcall org-speed-command))
20143 ((and org-speed-command (listp org-speed-command))
20144 (eval org-speed-command))
20145 (t (let (org-use-speed-commands)
20146 (call-interactively 'org-self-insert-command)))))
20147 ((and
20148 (org-table-p)
20149 (progn
20150 ;; check if we blank the field, and if that triggers align
20151 (and (featurep 'org-table) org-table-auto-blank-field
20152 (memq last-command
20153 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20154 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
20155 ;; got extra space, this field does not determine column width
20156 (let (org-table-may-need-update) (org-table-blank-field))
20157 ;; no extra space, this field may determine column width
20158 (org-table-blank-field)))
20160 (eq N 1)
20161 (looking-at "[^|\n]* |"))
20162 (let (org-table-may-need-update)
20163 (goto-char (1- (match-end 0)))
20164 (backward-delete-char 1)
20165 (goto-char (match-beginning 0))
20166 (self-insert-command N)))
20168 (setq org-table-may-need-update t)
20169 (self-insert-command N)
20170 (org-fix-tags-on-the-fly)
20171 (if org-self-insert-cluster-for-undo
20172 (if (not (eq last-command 'org-self-insert-command))
20173 (setq org-self-insert-command-undo-counter 1)
20174 (if (>= org-self-insert-command-undo-counter 20)
20175 (setq org-self-insert-command-undo-counter 1)
20176 (and (> org-self-insert-command-undo-counter 0)
20177 buffer-undo-list (listp buffer-undo-list)
20178 (not (cadr buffer-undo-list)) ; remove nil entry
20179 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20180 (setq org-self-insert-command-undo-counter
20181 (1+ org-self-insert-command-undo-counter))))))))
20183 (defun org-check-before-invisible-edit (kind)
20184 "Check is editing if kind KIND would be dangerous with invisible text around.
20185 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20186 ;; First, try to get out of here as quickly as possible, to reduce overhead
20187 (if (and org-catch-invisible-edits
20188 (or (not (boundp 'visible-mode)) (not visible-mode))
20189 (or (get-char-property (point) 'invisible)
20190 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20191 ;; OK, we need to take a closer look
20192 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20193 (invisible-before-point (if (bobp) nil (get-char-property
20194 (1- (point)) 'invisible)))
20195 (border-and-ok-direction
20197 ;; Check if we are acting predictably before invisible text
20198 (and invisible-at-point (not invisible-before-point)
20199 (memq kind '(insert delete-backward)))
20200 ;; Check if we are acting predictably after invisible text
20201 ;; This works not well, and I have turned it off. It seems
20202 ;; better to always show and stop after invisible text.
20203 ;; (and (not invisible-at-point) invisible-before-point
20204 ;; (memq kind '(insert delete)))
20206 (when (or (memq invisible-at-point '(outline org-hide-block t))
20207 (memq invisible-before-point '(outline org-hide-block t)))
20208 (if (eq org-catch-invisible-edits 'error)
20209 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20210 (if (and org-custom-properties-overlays
20211 (y-or-n-p "Display invisible properties in this buffer? "))
20212 (org-toggle-custom-properties-visibility)
20213 ;; Make the area visible
20214 (save-excursion
20215 (if invisible-before-point
20216 (goto-char (previous-single-char-property-change
20217 (point) 'invisible)))
20218 (show-subtree))
20219 (cond
20220 ((eq org-catch-invisible-edits 'show)
20221 ;; That's it, we do the edit after showing
20222 (message
20223 "Unfolding invisible region around point before editing")
20224 (sit-for 1))
20225 ((and (eq org-catch-invisible-edits 'smart)
20226 border-and-ok-direction)
20227 (message "Unfolding invisible region around point before editing"))
20229 ;; Don't do the edit, make the user repeat it in full visibility
20230 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20232 (defun org-fix-tags-on-the-fly ()
20233 (when (and (equal (char-after (point-at-bol)) ?*)
20234 (org-at-heading-p))
20235 (org-align-tags-here org-tags-column)))
20237 (defun org-delete-backward-char (N)
20238 "Like `delete-backward-char', insert whitespace at field end in tables.
20239 When deleting backwards, in tables this function will insert whitespace in
20240 front of the next \"|\" separator, to keep the table aligned. The table will
20241 still be marked for re-alignment if the field did fill the entire column,
20242 because, in this case the deletion might narrow the column."
20243 (interactive "p")
20244 (save-match-data
20245 (org-check-before-invisible-edit 'delete-backward)
20246 (if (and (org-table-p)
20247 (eq N 1)
20248 (string-match "|" (buffer-substring (point-at-bol) (point)))
20249 (looking-at ".*?|"))
20250 (let ((pos (point))
20251 (noalign (looking-at "[^|\n\r]* |"))
20252 (c org-table-may-need-update))
20253 (backward-delete-char N)
20254 (if (not overwrite-mode)
20255 (progn
20256 (skip-chars-forward "^|")
20257 (insert " ")
20258 (goto-char (1- pos))))
20259 ;; noalign: if there were two spaces at the end, this field
20260 ;; does not determine the width of the column.
20261 (if noalign (setq org-table-may-need-update c)))
20262 (backward-delete-char N)
20263 (org-fix-tags-on-the-fly))))
20265 (defun org-delete-char (N)
20266 "Like `delete-char', but insert whitespace at field end in tables.
20267 When deleting characters, in tables this function will insert whitespace in
20268 front of the next \"|\" separator, to keep the table aligned. The table will
20269 still be marked for re-alignment if the field did fill the entire column,
20270 because, in this case the deletion might narrow the column."
20271 (interactive "p")
20272 (save-match-data
20273 (org-check-before-invisible-edit 'delete)
20274 (if (and (org-table-p)
20275 (not (bolp))
20276 (not (= (char-after) ?|))
20277 (eq N 1))
20278 (if (looking-at ".*?|")
20279 (let ((pos (point))
20280 (noalign (looking-at "[^|\n\r]* |"))
20281 (c org-table-may-need-update))
20282 (replace-match
20283 (concat (substring (match-string 0) 1 -1) " |") nil t)
20284 (goto-char pos)
20285 ;; noalign: if there were two spaces at the end, this field
20286 ;; does not determine the width of the column.
20287 (if noalign (setq org-table-may-need-update c)))
20288 (delete-char N))
20289 (delete-char N)
20290 (org-fix-tags-on-the-fly))))
20292 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20293 (put 'org-self-insert-command 'delete-selection
20294 (lambda ()
20295 (not (run-hook-with-args-until-success
20296 'self-insert-uses-region-functions))))
20297 (put 'orgtbl-self-insert-command 'delete-selection
20298 (lambda ()
20299 (not (run-hook-with-args-until-success
20300 'self-insert-uses-region-functions))))
20301 (put 'org-delete-char 'delete-selection 'supersede)
20302 (put 'org-delete-backward-char 'delete-selection 'supersede)
20303 (put 'org-yank 'delete-selection 'yank)
20305 ;; Make `flyspell-mode' delay after some commands
20306 (put 'org-self-insert-command 'flyspell-delayed t)
20307 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20308 (put 'org-delete-char 'flyspell-delayed t)
20309 (put 'org-delete-backward-char 'flyspell-delayed t)
20311 ;; Make pabbrev-mode expand after org-mode commands
20312 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20313 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20315 (defun org-remap (map &rest commands)
20316 "In MAP, remap the functions given in COMMANDS.
20317 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20318 (let (new old)
20319 (while commands
20320 (setq old (pop commands) new (pop commands))
20321 (if (fboundp 'command-remapping)
20322 (org-defkey map (vector 'remap old) new)
20323 (substitute-key-definition old new map global-map)))))
20325 (defun org-transpose-words ()
20326 "Transpose words for Org.
20327 This uses the `org-mode-transpose-word-syntax-table' syntax
20328 table, which interprets characters in `org-emphasis-alist' as
20329 word constituents."
20330 (interactive)
20331 (with-syntax-table org-mode-transpose-word-syntax-table
20332 (call-interactively 'transpose-words)))
20333 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20335 (when (eq org-enable-table-editor 'optimized)
20336 ;; If the user wants maximum table support, we need to hijack
20337 ;; some standard editing functions
20338 (org-remap org-mode-map
20339 'self-insert-command 'org-self-insert-command
20340 'delete-char 'org-delete-char
20341 'delete-backward-char 'org-delete-backward-char)
20342 (org-defkey org-mode-map "|" 'org-force-self-insert))
20344 (defvar org-ctrl-c-ctrl-c-hook nil
20345 "Hook for functions attaching themselves to `C-c C-c'.
20347 This can be used to add additional functionality to the C-c C-c
20348 key which executes context-dependent commands. This hook is run
20349 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20350 run after the last test.
20352 Each function will be called with no arguments. The function
20353 must check if the context is appropriate for it to act. If yes,
20354 it should do its thing and then return a non-nil value. If the
20355 context is wrong, just do nothing and return nil.")
20357 (defvar org-ctrl-c-ctrl-c-final-hook nil
20358 "Hook for functions attaching themselves to `C-c C-c'.
20360 This can be used to add additional functionality to the C-c C-c
20361 key which executes context-dependent commands. This hook is run
20362 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20363 before the first test.
20365 Each function will be called with no arguments. The function
20366 must check if the context is appropriate for it to act. If yes,
20367 it should do its thing and then return a non-nil value. If the
20368 context is wrong, just do nothing and return nil.")
20370 (defvar org-tab-first-hook nil
20371 "Hook for functions to attach themselves to TAB.
20372 See `org-ctrl-c-ctrl-c-hook' for more information.
20373 This hook runs as the first action when TAB is pressed, even before
20374 `org-cycle' messes around with the `outline-regexp' to cater for
20375 inline tasks and plain list item folding.
20376 If any function in this hook returns t, any other actions that
20377 would have been caused by TAB (such as table field motion or visibility
20378 cycling) will not occur.")
20380 (defvar org-tab-after-check-for-table-hook nil
20381 "Hook for functions to attach themselves to TAB.
20382 See `org-ctrl-c-ctrl-c-hook' for more information.
20383 This hook runs after it has been established that the cursor is not in a
20384 table, but before checking if the cursor is in a headline or if global cycling
20385 should be done.
20386 If any function in this hook returns t, not other actions like visibility
20387 cycling will be done.")
20389 (defvar org-tab-after-check-for-cycling-hook nil
20390 "Hook for functions to attach themselves to TAB.
20391 See `org-ctrl-c-ctrl-c-hook' for more information.
20392 This hook runs after it has been established that not table field motion and
20393 not visibility should be done because of current context. This is probably
20394 the place where a package like yasnippets can hook in.")
20396 (defvar org-tab-before-tab-emulation-hook nil
20397 "Hook for functions to attach themselves to TAB.
20398 See `org-ctrl-c-ctrl-c-hook' for more information.
20399 This hook runs after every other options for TAB have been exhausted, but
20400 before indentation and \t insertion takes place.")
20402 (defvar org-metaleft-hook nil
20403 "Hook for functions attaching themselves to `M-left'.
20404 See `org-ctrl-c-ctrl-c-hook' for more information.")
20405 (defvar org-metaright-hook nil
20406 "Hook for functions attaching themselves to `M-right'.
20407 See `org-ctrl-c-ctrl-c-hook' for more information.")
20408 (defvar org-metaup-hook nil
20409 "Hook for functions attaching themselves to `M-up'.
20410 See `org-ctrl-c-ctrl-c-hook' for more information.")
20411 (defvar org-metadown-hook nil
20412 "Hook for functions attaching themselves to `M-down'.
20413 See `org-ctrl-c-ctrl-c-hook' for more information.")
20414 (defvar org-shiftmetaleft-hook nil
20415 "Hook for functions attaching themselves to `M-S-left'.
20416 See `org-ctrl-c-ctrl-c-hook' for more information.")
20417 (defvar org-shiftmetaright-hook nil
20418 "Hook for functions attaching themselves to `M-S-right'.
20419 See `org-ctrl-c-ctrl-c-hook' for more information.")
20420 (defvar org-shiftmetaup-hook nil
20421 "Hook for functions attaching themselves to `M-S-up'.
20422 See `org-ctrl-c-ctrl-c-hook' for more information.")
20423 (defvar org-shiftmetadown-hook nil
20424 "Hook for functions attaching themselves to `M-S-down'.
20425 See `org-ctrl-c-ctrl-c-hook' for more information.")
20426 (defvar org-metareturn-hook nil
20427 "Hook for functions attaching themselves to `M-RET'.
20428 See `org-ctrl-c-ctrl-c-hook' for more information.")
20429 (defvar org-shiftup-hook nil
20430 "Hook for functions attaching themselves to `S-up'.
20431 See `org-ctrl-c-ctrl-c-hook' for more information.")
20432 (defvar org-shiftup-final-hook nil
20433 "Hook for functions attaching themselves to `S-up'.
20434 This one runs after all other options except shift-select have been excluded.
20435 See `org-ctrl-c-ctrl-c-hook' for more information.")
20436 (defvar org-shiftdown-hook nil
20437 "Hook for functions attaching themselves to `S-down'.
20438 See `org-ctrl-c-ctrl-c-hook' for more information.")
20439 (defvar org-shiftdown-final-hook nil
20440 "Hook for functions attaching themselves to `S-down'.
20441 This one runs after all other options except shift-select have been excluded.
20442 See `org-ctrl-c-ctrl-c-hook' for more information.")
20443 (defvar org-shiftleft-hook nil
20444 "Hook for functions attaching themselves to `S-left'.
20445 See `org-ctrl-c-ctrl-c-hook' for more information.")
20446 (defvar org-shiftleft-final-hook nil
20447 "Hook for functions attaching themselves to `S-left'.
20448 This one runs after all other options except shift-select have been excluded.
20449 See `org-ctrl-c-ctrl-c-hook' for more information.")
20450 (defvar org-shiftright-hook nil
20451 "Hook for functions attaching themselves to `S-right'.
20452 See `org-ctrl-c-ctrl-c-hook' for more information.")
20453 (defvar org-shiftright-final-hook nil
20454 "Hook for functions attaching themselves to `S-right'.
20455 This one runs after all other options except shift-select have been excluded.
20456 See `org-ctrl-c-ctrl-c-hook' for more information.")
20458 (defun org-modifier-cursor-error ()
20459 "Throw an error, a modified cursor command was applied in wrong context."
20460 (user-error "This command is active in special context like tables, headlines or items"))
20462 (defun org-shiftselect-error ()
20463 "Throw an error because Shift-Cursor command was applied in wrong context."
20464 (if (and (boundp 'shift-select-mode) shift-select-mode)
20465 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20466 (user-error "This command works only in special context like headlines or timestamps")))
20468 (defun org-call-for-shift-select (cmd)
20469 (let ((this-command-keys-shift-translated t))
20470 (call-interactively cmd)))
20472 (defun org-shifttab (&optional arg)
20473 "Global visibility cycling or move to previous table field.
20474 Call `org-table-previous-field' within a table.
20475 When ARG is nil, cycle globally through visibility states.
20476 When ARG is a numeric prefix, show contents of this level."
20477 (interactive "P")
20478 (cond
20479 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20480 ((integerp arg)
20481 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20482 (message "Content view to level: %d" arg)
20483 (org-content (prefix-numeric-value arg2))
20484 (org-cycle-show-empty-lines t)
20485 (setq org-cycle-global-status 'overview)))
20486 (t (call-interactively 'org-global-cycle))))
20488 (defun org-shiftmetaleft ()
20489 "Promote subtree or delete table column.
20490 Calls `org-promote-subtree', `org-outdent-item-tree', or
20491 `org-table-delete-column', depending on context. See the
20492 individual commands for more information."
20493 (interactive)
20494 (cond
20495 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20496 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20497 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20498 ((if (not (org-region-active-p)) (org-at-item-p)
20499 (save-excursion (goto-char (region-beginning))
20500 (org-at-item-p)))
20501 (call-interactively 'org-outdent-item-tree))
20502 (t (org-modifier-cursor-error))))
20504 (defun org-shiftmetaright ()
20505 "Demote subtree or insert table column.
20506 Calls `org-demote-subtree', `org-indent-item-tree', or
20507 `org-table-insert-column', depending on context. See the
20508 individual commands for more information."
20509 (interactive)
20510 (cond
20511 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20512 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20513 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20514 ((if (not (org-region-active-p)) (org-at-item-p)
20515 (save-excursion (goto-char (region-beginning))
20516 (org-at-item-p)))
20517 (call-interactively 'org-indent-item-tree))
20518 (t (org-modifier-cursor-error))))
20520 (defun org-shiftmetaup (&optional arg)
20521 "Drag the line at point up.
20522 In a table, kill the current row.
20523 On a clock timestamp, update the value of the timestamp like `S-<up>'
20524 but also adjust the previous clocked item in the clock history.
20525 Everywhere else, drag the line at point up."
20526 (interactive "P")
20527 (cond
20528 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20529 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20530 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20531 (call-interactively 'org-timestamp-up)))
20532 (t (call-interactively 'org-drag-line-backward))))
20534 (defun org-shiftmetadown (&optional arg)
20535 "Drag the line at point down.
20536 In a table, insert an empty row at the current line.
20537 On a clock timestamp, update the value of the timestamp like `S-<down>'
20538 but also adjust the previous clocked item in the clock history.
20539 Everywhere else, drag the line at point down."
20540 (interactive "P")
20541 (cond
20542 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20543 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20544 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20545 (call-interactively 'org-timestamp-down)))
20546 (t (call-interactively 'org-drag-line-forward))))
20548 (defsubst org-hidden-tree-error ()
20549 (user-error
20550 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20552 (defun org-metaleft (&optional arg)
20553 "Promote heading, list item at point or move table column left.
20555 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20556 depending on context. With no specific context, calls the Emacs
20557 default `backward-word'. See the individual commands for more
20558 information.
20560 This function runs the hook `org-metaleft-hook' as a first step,
20561 and returns at first non-nil value."
20562 (interactive "P")
20563 (cond
20564 ((run-hook-with-args-until-success 'org-metaleft-hook))
20565 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20566 ((org-with-limited-levels
20567 (or (org-at-heading-p)
20568 (and (org-region-active-p)
20569 (save-excursion
20570 (goto-char (region-beginning))
20571 (org-at-heading-p)))))
20572 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20573 (call-interactively 'org-do-promote))
20574 ;; At an inline task.
20575 ((org-at-heading-p)
20576 (call-interactively 'org-inlinetask-promote))
20577 ((or (org-at-item-p)
20578 (and (org-region-active-p)
20579 (save-excursion
20580 (goto-char (region-beginning))
20581 (org-at-item-p))))
20582 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20583 (call-interactively 'org-outdent-item))
20584 (t (call-interactively 'backward-word))))
20586 (defun org-metaright (&optional arg)
20587 "Demote heading, list item at point or move table column right.
20589 In front of a drawer or a block keyword, indent it correctly.
20591 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20592 `org-indnet-drawer' or `org-indent-block' depending on context.
20593 With no specific context, calls the Emacs default `forward-word'.
20594 See the individual commands for more information.
20596 This function runs the hook `org-metaright-hook' as a first step,
20597 and returns at first non-nil value."
20598 (interactive "P")
20599 (cond
20600 ((run-hook-with-args-until-success 'org-metaright-hook))
20601 ((org-at-table-p) (call-interactively 'org-table-move-column))
20602 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20603 ((org-at-block-p) (call-interactively 'org-indent-block))
20604 ((org-with-limited-levels
20605 (or (org-at-heading-p)
20606 (and (org-region-active-p)
20607 (save-excursion
20608 (goto-char (region-beginning))
20609 (org-at-heading-p)))))
20610 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20611 (call-interactively 'org-do-demote))
20612 ;; At an inline task.
20613 ((org-at-heading-p)
20614 (call-interactively 'org-inlinetask-demote))
20615 ((or (org-at-item-p)
20616 (and (org-region-active-p)
20617 (save-excursion
20618 (goto-char (region-beginning))
20619 (org-at-item-p))))
20620 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20621 (call-interactively 'org-indent-item))
20622 (t (call-interactively 'forward-word))))
20624 (defun org-check-for-hidden (what)
20625 "Check if there are hidden headlines/items in the current visual line.
20626 WHAT can be either `headlines' or `items'. If the current line is
20627 an outline or item heading and it has a folded subtree below it,
20628 this function returns t, nil otherwise."
20629 (let ((re (cond
20630 ((eq what 'headlines) org-outline-regexp-bol)
20631 ((eq what 'items) (org-item-beginning-re))
20632 (t (error "This should not happen"))))
20633 beg end)
20634 (save-excursion
20635 (catch 'exit
20636 (unless (org-region-active-p)
20637 (setq beg (point-at-bol))
20638 (beginning-of-line 2)
20639 (while (and (not (eobp)) ;; this is like `next-line'
20640 (get-char-property (1- (point)) 'invisible))
20641 (beginning-of-line 2))
20642 (setq end (point))
20643 (goto-char beg)
20644 (goto-char (point-at-eol))
20645 (setq end (max end (point)))
20646 (while (re-search-forward re end t)
20647 (if (get-char-property (match-beginning 0) 'invisible)
20648 (throw 'exit t))))
20649 nil))))
20651 (defun org-metaup (&optional arg)
20652 "Move subtree up or move table row up.
20653 Calls `org-move-subtree-up' or `org-table-move-row' or
20654 `org-move-item-up', depending on context. See the individual commands
20655 for more information."
20656 (interactive "P")
20657 (cond
20658 ((run-hook-with-args-until-success 'org-metaup-hook))
20659 ((org-region-active-p)
20660 (let* ((a (min (region-beginning) (region-end)))
20661 (b (1- (max (region-beginning) (region-end))))
20662 (c (save-excursion (goto-char a)
20663 (move-beginning-of-line 0)))
20664 (d (save-excursion (goto-char a)
20665 (move-end-of-line 0) (point))))
20666 (transpose-regions a b c d)
20667 (goto-char c)))
20668 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20669 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20670 ((org-at-item-p) (call-interactively 'org-move-item-up))
20671 (t (org-drag-element-backward))))
20673 (defun org-metadown (&optional arg)
20674 "Move subtree down or move table row down.
20675 Calls `org-move-subtree-down' or `org-table-move-row' or
20676 `org-move-item-down', depending on context. See the individual
20677 commands for more information."
20678 (interactive "P")
20679 (cond
20680 ((run-hook-with-args-until-success 'org-metadown-hook))
20681 ((org-region-active-p)
20682 (let* ((a (min (region-beginning) (region-end)))
20683 (b (max (region-beginning) (region-end)))
20684 (c (save-excursion (goto-char b)
20685 (move-beginning-of-line 1)))
20686 (d (save-excursion (goto-char b)
20687 (move-end-of-line 1) (1+ (point)))))
20688 (transpose-regions a b c d)
20689 (goto-char d)))
20690 ((org-at-table-p) (call-interactively 'org-table-move-row))
20691 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20692 ((org-at-item-p) (call-interactively 'org-move-item-down))
20693 (t (org-drag-element-forward))))
20695 (defun org-shiftup (&optional arg)
20696 "Increase item in timestamp or increase priority of current headline.
20697 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20698 depending on context. See the individual commands for more information."
20699 (interactive "P")
20700 (cond
20701 ((run-hook-with-args-until-success 'org-shiftup-hook))
20702 ((and org-support-shift-select (org-region-active-p))
20703 (org-call-for-shift-select 'previous-line))
20704 ((org-at-timestamp-p t)
20705 (call-interactively (if org-edit-timestamp-down-means-later
20706 'org-timestamp-down 'org-timestamp-up)))
20707 ((and (not (eq org-support-shift-select 'always))
20708 org-enable-priority-commands
20709 (org-at-heading-p))
20710 (call-interactively 'org-priority-up))
20711 ((and (not org-support-shift-select) (org-at-item-p))
20712 (call-interactively 'org-previous-item))
20713 ((org-clocktable-try-shift 'up arg))
20714 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20715 (org-support-shift-select
20716 (org-call-for-shift-select 'previous-line))
20717 (t (org-shiftselect-error))))
20719 (defun org-shiftdown (&optional arg)
20720 "Decrease item in timestamp or decrease priority of current headline.
20721 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20722 depending on context. See the individual commands for more information."
20723 (interactive "P")
20724 (cond
20725 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20726 ((and org-support-shift-select (org-region-active-p))
20727 (org-call-for-shift-select 'next-line))
20728 ((org-at-timestamp-p t)
20729 (call-interactively (if org-edit-timestamp-down-means-later
20730 'org-timestamp-up 'org-timestamp-down)))
20731 ((and (not (eq org-support-shift-select 'always))
20732 org-enable-priority-commands
20733 (org-at-heading-p))
20734 (call-interactively 'org-priority-down))
20735 ((and (not org-support-shift-select) (org-at-item-p))
20736 (call-interactively 'org-next-item))
20737 ((org-clocktable-try-shift 'down arg))
20738 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20739 (org-support-shift-select
20740 (org-call-for-shift-select 'next-line))
20741 (t (org-shiftselect-error))))
20743 (defun org-shiftright (&optional arg)
20744 "Cycle the thing at point or in the current line, depending on context.
20745 Depending on context, this does one of the following:
20747 - switch a timestamp at point one day into the future
20748 - on a headline, switch to the next TODO keyword.
20749 - on an item, switch entire list to the next bullet type
20750 - on a property line, switch to the next allowed value
20751 - on a clocktable definition line, move time block into the future"
20752 (interactive "P")
20753 (cond
20754 ((run-hook-with-args-until-success 'org-shiftright-hook))
20755 ((and org-support-shift-select (org-region-active-p))
20756 (org-call-for-shift-select 'forward-char))
20757 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20758 ((and (not (eq org-support-shift-select 'always))
20759 (org-at-heading-p))
20760 (let ((org-inhibit-logging
20761 (not org-treat-S-cursor-todo-selection-as-state-change))
20762 (org-inhibit-blocking
20763 (not org-treat-S-cursor-todo-selection-as-state-change)))
20764 (org-call-with-arg 'org-todo 'right)))
20765 ((or (and org-support-shift-select
20766 (not (eq org-support-shift-select 'always))
20767 (org-at-item-bullet-p))
20768 (and (not org-support-shift-select) (org-at-item-p)))
20769 (org-call-with-arg 'org-cycle-list-bullet nil))
20770 ((and (not (eq org-support-shift-select 'always))
20771 (org-at-property-p))
20772 (call-interactively 'org-property-next-allowed-value))
20773 ((org-clocktable-try-shift 'right arg))
20774 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20775 (org-support-shift-select
20776 (org-call-for-shift-select 'forward-char))
20777 (t (org-shiftselect-error))))
20779 (defun org-shiftleft (&optional arg)
20780 "Cycle the thing at point or in the current line, depending on context.
20781 Depending on context, this does one of the following:
20783 - switch a timestamp at point one day into the past
20784 - on a headline, switch to the previous TODO keyword.
20785 - on an item, switch entire list to the previous bullet type
20786 - on a property line, switch to the previous allowed value
20787 - on a clocktable definition line, move time block into the past"
20788 (interactive "P")
20789 (cond
20790 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20791 ((and org-support-shift-select (org-region-active-p))
20792 (org-call-for-shift-select 'backward-char))
20793 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20794 ((and (not (eq org-support-shift-select 'always))
20795 (org-at-heading-p))
20796 (let ((org-inhibit-logging
20797 (not org-treat-S-cursor-todo-selection-as-state-change))
20798 (org-inhibit-blocking
20799 (not org-treat-S-cursor-todo-selection-as-state-change)))
20800 (org-call-with-arg 'org-todo 'left)))
20801 ((or (and org-support-shift-select
20802 (not (eq org-support-shift-select 'always))
20803 (org-at-item-bullet-p))
20804 (and (not org-support-shift-select) (org-at-item-p)))
20805 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20806 ((and (not (eq org-support-shift-select 'always))
20807 (org-at-property-p))
20808 (call-interactively 'org-property-previous-allowed-value))
20809 ((org-clocktable-try-shift 'left arg))
20810 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20811 (org-support-shift-select
20812 (org-call-for-shift-select 'backward-char))
20813 (t (org-shiftselect-error))))
20815 (defun org-shiftcontrolright ()
20816 "Switch to next TODO set."
20817 (interactive)
20818 (cond
20819 ((and org-support-shift-select (org-region-active-p))
20820 (org-call-for-shift-select 'forward-word))
20821 ((and (not (eq org-support-shift-select 'always))
20822 (org-at-heading-p))
20823 (org-call-with-arg 'org-todo 'nextset))
20824 (org-support-shift-select
20825 (org-call-for-shift-select 'forward-word))
20826 (t (org-shiftselect-error))))
20828 (defun org-shiftcontrolleft ()
20829 "Switch to previous TODO set."
20830 (interactive)
20831 (cond
20832 ((and org-support-shift-select (org-region-active-p))
20833 (org-call-for-shift-select 'backward-word))
20834 ((and (not (eq org-support-shift-select 'always))
20835 (org-at-heading-p))
20836 (org-call-with-arg 'org-todo 'previousset))
20837 (org-support-shift-select
20838 (org-call-for-shift-select 'backward-word))
20839 (t (org-shiftselect-error))))
20841 (defun org-shiftcontrolup (&optional n)
20842 "Change timestamps synchronously up in CLOCK log lines.
20843 Optional argument N tells to change by that many units."
20844 (interactive "P")
20845 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20846 (let (org-support-shift-select)
20847 (org-clock-timestamps-up n))
20848 (user-error "Not at a clock log")))
20850 (defun org-shiftcontroldown (&optional n)
20851 "Change timestamps synchronously down in CLOCK log lines.
20852 Optional argument N tells to change by that many units."
20853 (interactive "P")
20854 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20855 (let (org-support-shift-select)
20856 (org-clock-timestamps-down n))
20857 (user-error "Not at a clock log")))
20859 (defun org-increase-number-at-point (&optional inc)
20860 "Increment the number at point.
20861 With an optional prefix numeric argument INC, increment using
20862 this numeric value."
20863 (interactive "p")
20864 (if (not (number-at-point))
20865 (user-error "Not on a number")
20866 (unless inc (setq inc 1))
20867 (let ((pos (point))
20868 (beg (skip-chars-backward "-+^/*0-9eE."))
20869 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20870 (setq nap (buffer-substring-no-properties
20871 (+ pos beg) (+ pos beg end)))
20872 (delete-region (+ pos beg) (+ pos beg end))
20873 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20874 (when (org-at-table-p)
20875 (org-table-align)
20876 (org-table-end-of-field 1))))
20878 (defun org-decrease-number-at-point (&optional inc)
20879 "Decrement the number at point.
20880 With an optional prefix numeric argument INC, decrement using
20881 this numeric value."
20882 (interactive "p")
20883 (org-increase-number-at-point (- (or inc 1))))
20885 (defun org-ctrl-c-ret ()
20886 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20887 (interactive)
20888 (cond
20889 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20890 (t (call-interactively 'org-insert-heading))))
20892 (defun org-find-visible ()
20893 (let ((s (point)))
20894 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20895 (get-char-property s 'invisible)))
20897 (defun org-find-invisible ()
20898 (let ((s (point)))
20899 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20900 (not (get-char-property s 'invisible))))
20903 (defun org-copy-visible (beg end)
20904 "Copy the visible parts of the region."
20905 (interactive "r")
20906 (let (snippets s)
20907 (save-excursion
20908 (save-restriction
20909 (narrow-to-region beg end)
20910 (setq s (goto-char (point-min)))
20911 (while (not (= (point) (point-max)))
20912 (goto-char (org-find-invisible))
20913 (push (buffer-substring s (point)) snippets)
20914 (setq s (goto-char (org-find-visible))))))
20915 (kill-new (apply 'concat (nreverse snippets)))))
20917 (defun org-copy-special ()
20918 "Copy region in table or copy current subtree.
20919 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20920 See the individual commands for more information."
20921 (interactive)
20922 (call-interactively
20923 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20925 (defun org-cut-special ()
20926 "Cut region in table or cut current subtree.
20927 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20928 See the individual commands for more information."
20929 (interactive)
20930 (call-interactively
20931 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20933 (defun org-paste-special (arg)
20934 "Paste rectangular region into table, or past subtree relative to level.
20935 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20936 See the individual commands for more information."
20937 (interactive "P")
20938 (if (org-at-table-p)
20939 (org-table-paste-rectangle)
20940 (org-paste-subtree arg)))
20942 (defsubst org-in-fixed-width-region-p ()
20943 "Is point in a fixed-width region?"
20944 (save-match-data
20945 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20947 (defun org-edit-special (&optional arg)
20948 "Call a special editor for the element at point.
20949 When at a table, call the formula editor with `org-table-edit-formulas'.
20950 When in a source code block, call `org-edit-src-code'.
20951 When in a fixed-width region, call `org-edit-fixed-width-region'.
20952 When in an export block, call `org-edit-export-block'.
20953 When at an #+INCLUDE keyword, visit the included file.
20954 When at a footnote reference, call `org-edit-footnote-reference'
20955 On a link, call `ffap' to visit the link at point.
20956 Otherwise, return a user error."
20957 (interactive "P")
20958 (let ((element (org-element-at-point)))
20959 (assert (not buffer-read-only) nil
20960 "Buffer is read-only: %s" (buffer-name))
20961 (case (org-element-type element)
20962 (src-block
20963 (if (not arg) (org-edit-src-code)
20964 (let* ((info (org-babel-get-src-block-info))
20965 (lang (nth 0 info))
20966 (params (nth 2 info))
20967 (session (cdr (assq :session params))))
20968 (if (not session) (org-edit-src-code)
20969 ;; At a src-block with a session and function called with
20970 ;; an ARG: switch to the buffer related to the inferior
20971 ;; process.
20972 (switch-to-buffer
20973 (funcall (intern (concat "org-babel-prep-session:" lang))
20974 session params))))))
20975 (keyword
20976 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20977 (org-open-link-from-string
20978 (format "[[%s]]"
20979 (expand-file-name
20980 (let ((value (org-element-property :value element)))
20981 (cond ((not (org-string-nw-p value))
20982 (user-error "No file to edit"))
20983 ((string-match "\\`\"\\(.*?\\)\"" value)
20984 (match-string 1 value))
20985 ((string-match "\\`[^ \t\"]\\S-*" value)
20986 (match-string 0 value))
20987 (t (user-error "No valid file specified")))))))
20988 (user-error "No special environment to edit here")))
20989 (table
20990 (if (eq (org-element-property :type element) 'table.el)
20991 (org-edit-table.el)
20992 (call-interactively 'org-table-edit-formulas)))
20993 ;; Only Org tables contain `table-row' type elements.
20994 (table-row (call-interactively 'org-table-edit-formulas))
20995 (example-block (org-edit-src-code))
20996 (export-block (org-edit-export-block))
20997 (fixed-width (org-edit-fixed-width-region))
20998 (otherwise
20999 ;; No notable element at point. Though, we may be at a link or
21000 ;; a footnote reference, which are objects. Thus, scan deeper.
21001 (let ((context (org-element-context element)))
21002 (case (org-element-type context)
21003 (link (call-interactively #'ffap))
21004 (footnote-reference (org-edit-footnote-reference))
21005 (t (user-error "No special environment to edit here"))))))))
21007 (defvar org-table-coordinate-overlays) ; defined in org-table.el
21008 (defun org-ctrl-c-ctrl-c (&optional arg)
21009 "Set tags in headline, or update according to changed information at point.
21011 This command does many different things, depending on context:
21013 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
21014 this is what we do.
21016 - If the cursor is on a statistics cookie, update it.
21018 - If the cursor is in a headline, prompt for tags and insert them
21019 into the current line, aligned to `org-tags-column'. When called
21020 with prefix arg, realign all tags in the current buffer.
21022 - If the cursor is in one of the special #+KEYWORD lines, this
21023 triggers scanning the buffer for these lines and updating the
21024 information.
21026 - If the cursor is inside a table, realign the table. This command
21027 works even if the automatic table editor has been turned off.
21029 - If the cursor is on a #+TBLFM line, re-apply the formulas to
21030 the entire table.
21032 - If the cursor is at a footnote reference or definition, jump to
21033 the corresponding definition or references, respectively.
21035 - If the cursor is a the beginning of a dynamic block, update it.
21037 - If the current buffer is a capture buffer, close note and file it.
21039 - If the cursor is on a <<<target>>>, update radio targets and
21040 corresponding links in this buffer.
21042 - If the cursor is on a numbered item in a plain list, renumber the
21043 ordered list.
21045 - If the cursor is on a checkbox, toggle it.
21047 - If the cursor is on a code block, evaluate it. The variable
21048 `org-confirm-babel-evaluate' can be used to control prompting
21049 before code block evaluation, by default every code block
21050 evaluation requires confirmation. Code block evaluation can be
21051 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
21052 (interactive "P")
21053 (cond
21054 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
21055 org-occur-highlights)
21056 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
21057 (org-remove-occur-highlights)
21058 (message "Temporary highlights/overlays removed from current buffer"))
21059 ((and (local-variable-p 'org-finish-function (current-buffer))
21060 (fboundp org-finish-function))
21061 (funcall org-finish-function))
21062 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
21064 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
21065 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21066 (user-error "C-c C-c can do nothing useful at this location"))
21067 (let* ((context (org-element-context))
21068 (type (org-element-type context)))
21069 (case type
21070 ;; When at a link, act according to the parent instead.
21071 (link (setq context (org-element-property :parent context))
21072 (setq type (org-element-type context)))
21073 ;; Unsupported object types: refer to the first supported
21074 ;; element or object containing it.
21075 ((bold code entity export-snippet inline-babel-call inline-src-block
21076 italic latex-fragment line-break macro strike-through subscript
21077 superscript underline verbatim)
21078 (setq context
21079 (org-element-lineage
21080 context '(radio-target paragraph verse-block table-cell)))))
21081 ;; For convenience: at the first line of a paragraph on the
21082 ;; same line as an item, apply function on that item instead.
21083 (when (eq type 'paragraph)
21084 (let ((parent (org-element-property :parent context)))
21085 (when (and (eq (org-element-type parent) 'item)
21086 (= (line-beginning-position)
21087 (org-element-property :begin parent)))
21088 (setq context parent type 'item))))
21089 ;; Act according to type of element or object at point.
21090 (case type
21091 (clock (org-clock-update-time-maybe))
21092 (dynamic-block
21093 (save-excursion
21094 (goto-char (org-element-property :post-affiliated context))
21095 (org-update-dblock)))
21096 (footnote-definition
21097 (goto-char (org-element-property :post-affiliated context))
21098 (call-interactively 'org-footnote-action))
21099 (footnote-reference (call-interactively 'org-footnote-action))
21100 ((headline inlinetask)
21101 (save-excursion (goto-char (org-element-property :begin context))
21102 (call-interactively 'org-set-tags)))
21103 (item
21104 ;; At an item: a double C-u set checkbox to "[-]"
21105 ;; unconditionally, whereas a single one will toggle its
21106 ;; presence. Without a universal argument, if the item
21107 ;; has a checkbox, toggle it. Otherwise repair the list.
21108 (let* ((box (org-element-property :checkbox context))
21109 (struct (org-element-property :structure context))
21110 (old-struct (copy-tree struct))
21111 (parents (org-list-parents-alist struct))
21112 (prevs (org-list-prevs-alist struct))
21113 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21114 (org-list-set-checkbox
21115 (org-element-property :begin context) struct
21116 (cond ((equal arg '(16)) "[-]")
21117 ((and (not box) (equal arg '(4))) "[ ]")
21118 ((or (not box) (equal arg '(4))) nil)
21119 ((eq box 'on) "[ ]")
21120 (t "[X]")))
21121 ;; Mimic `org-list-write-struct' but with grabbing
21122 ;; a return value from `org-list-struct-fix-box'.
21123 (org-list-struct-fix-ind struct parents 2)
21124 (org-list-struct-fix-item-end struct)
21125 (org-list-struct-fix-bul struct prevs)
21126 (org-list-struct-fix-ind struct parents)
21127 (let ((block-item
21128 (org-list-struct-fix-box struct parents prevs orderedp)))
21129 (if (and box (equal struct old-struct))
21130 (if (equal arg '(16))
21131 (message "Checkboxes already reset")
21132 (user-error "Cannot toggle this checkbox: %s"
21133 (if (eq box 'on)
21134 "all subitems checked"
21135 "unchecked subitems")))
21136 (org-list-struct-apply-struct struct old-struct)
21137 (org-update-checkbox-count-maybe))
21138 (when block-item
21139 (message "Checkboxes were removed due to empty box at line %d"
21140 (org-current-line block-item))))))
21141 (keyword
21142 (let ((org-inhibit-startup-visibility-stuff t)
21143 (org-startup-align-all-tables nil))
21144 (when (boundp 'org-table-coordinate-overlays)
21145 (mapc 'delete-overlay org-table-coordinate-overlays)
21146 (setq org-table-coordinate-overlays nil))
21147 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21148 (message "Local setup has been refreshed"))
21149 (plain-list
21150 ;; At a plain list, with a double C-u argument, set
21151 ;; checkboxes of each item to "[-]", whereas a single one
21152 ;; will toggle their presence according to the state of the
21153 ;; first item in the list. Without an argument, repair the
21154 ;; list.
21155 (let* ((begin (org-element-property :contents-begin context))
21156 (beginm (move-marker (make-marker) begin))
21157 (struct (org-element-property :structure context))
21158 (old-struct (copy-tree struct))
21159 (first-box (save-excursion
21160 (goto-char begin)
21161 (looking-at org-list-full-item-re)
21162 (match-string-no-properties 3)))
21163 (new-box (cond ((equal arg '(16)) "[-]")
21164 ((equal arg '(4)) (unless first-box "[ ]"))
21165 ((equal first-box "[X]") "[ ]")
21166 (t "[X]"))))
21167 (cond
21168 (arg
21169 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21170 (org-list-get-all-items
21171 begin struct (org-list-prevs-alist struct))))
21172 ((and first-box (eq (point) begin))
21173 ;; For convenience, when point is at bol on the first
21174 ;; item of the list and no argument is provided, simply
21175 ;; toggle checkbox of that item, if any.
21176 (org-list-set-checkbox begin struct new-box)))
21177 (org-list-write-struct
21178 struct (org-list-parents-alist struct) old-struct)
21179 (org-update-checkbox-count-maybe)
21180 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21181 ((property-drawer node-property)
21182 (call-interactively 'org-property-action))
21183 ((radio-target target)
21184 (call-interactively 'org-update-radio-target-regexp))
21185 (statistics-cookie
21186 (call-interactively 'org-update-statistics-cookies))
21187 ((table table-cell table-row)
21188 ;; At a table, recalculate every field and align it. Also
21189 ;; send the table if necessary. If the table has
21190 ;; a `table.el' type, just give up. At a table row or
21191 ;; cell, maybe recalculate line but always align table.
21192 (if (eq (org-element-property :type context) 'table.el)
21193 (message "Use C-c ' to edit table.el tables")
21194 (let ((org-enable-table-editor t))
21195 (if (or (eq type 'table)
21196 ;; Check if point is at a TBLFM line.
21197 (and (eq type 'table-row)
21198 (= (point) (org-element-property :end context))))
21199 (save-excursion
21200 (if (org-at-TBLFM-p)
21201 (progn (require 'org-table)
21202 (org-table-calc-current-TBLFM))
21203 (goto-char (org-element-property :contents-begin context))
21204 (org-call-with-arg 'org-table-recalculate (or arg t))
21205 (orgtbl-send-table 'maybe)))
21206 (org-table-maybe-eval-formula)
21207 (cond (arg (call-interactively 'org-table-recalculate))
21208 ((org-table-maybe-recalculate-line))
21209 (t (org-table-align)))))))
21210 (timestamp (org-timestamp-change 0 'day))
21211 (otherwise
21212 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21213 (user-error
21214 "C-c C-c can do nothing useful at this location")))))))))
21216 (defun org-mode-restart ()
21217 (interactive)
21218 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21219 (funcall major-mode)
21220 (hack-local-variables)
21221 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21222 (org-indent-mode -1)))
21223 (message "%s restarted" major-mode))
21225 (defun org-kill-note-or-show-branches ()
21226 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21227 (interactive)
21228 (if (not org-finish-function)
21229 (progn
21230 (hide-subtree)
21231 (call-interactively 'show-branches))
21232 (let ((org-note-abort t))
21233 (funcall org-finish-function))))
21235 (defun org-delete-indentation (&optional ARG)
21236 "Join current line to previous and fix whitespace at join.
21238 If previous line is a headline add to headline title. Otherwise
21239 the function calls `delete-indentation'.
21241 With argument, join this line to following line."
21242 (interactive "*P")
21243 (if (save-excursion
21244 (if ARG (beginning-of-line)
21245 (forward-line -1))
21246 (looking-at org-complex-heading-regexp))
21247 ;; At headline.
21248 (let ((tags-column (when (match-beginning 5)
21249 (save-excursion (goto-char (match-beginning 5))
21250 (current-column))))
21251 (string (concat " " (progn (when ARG (forward-line 1))
21252 (org-trim (delete-and-extract-region
21253 (line-beginning-position)
21254 (line-end-position)))))))
21255 (unless (bobp) (delete-region (point) (1- (point))))
21256 (goto-char (or (match-end 4)
21257 (match-beginning 5)
21258 (match-end 0)))
21259 (skip-chars-backward " \t")
21260 (save-excursion (insert string))
21261 ;; Adjust alignment of tags.
21262 (when tags-column
21263 (org-align-tags-here (if org-auto-align-tags
21264 org-tags-column
21265 tags-column))))
21266 (delete-indentation ARG)))
21268 (defun org-open-line (n)
21269 "Insert a new row in tables, call `open-line' elsewhere.
21270 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21271 (interactive "*p")
21272 (cond
21273 ((not org-special-ctrl-o)
21274 (open-line n))
21275 ((org-at-table-p)
21276 (org-table-insert-row))
21278 (open-line n))))
21280 (defun org-return (&optional indent)
21281 "Goto next table row or insert a newline.
21283 Calls `org-table-next-row' or `newline', depending on context.
21285 When optional INDENT argument is non-nil, call
21286 `newline-and-indent' instead of `newline'.
21288 When `org-return-follows-link' is non-nil and point is on
21289 a timestamp or a link, call `org-open-at-point'. However, it
21290 will not happen if point is in a table or on a \"dead\"
21291 object (e.g., within a comment). In these case, you need to use
21292 `org-open-at-point' directly."
21293 (interactive)
21294 (let* ((context (if org-return-follows-link (org-element-context)
21295 (org-element-at-point)))
21296 (type (org-element-type context)))
21297 (cond
21298 ;; In a table, call `org-table-next-row'.
21299 ((or (and (eq type 'table)
21300 (>= (point) (org-element-property :contents-begin context))
21301 (< (point) (org-element-property :contents-end context)))
21302 (org-element-lineage context '(table-row table-cell) t))
21303 (org-table-justify-field-maybe)
21304 (call-interactively #'org-table-next-row))
21305 ;; On a link or a timestamp but not on white spaces after it,
21306 ;; call `org-open-line' if `org-return-follows-link' allows it.
21307 ((and org-return-follows-link
21308 (memq type '(link timestamp))
21309 (< (point)
21310 (save-excursion (goto-char (org-element-property :end context))
21311 (skip-chars-backward " \t")
21312 (point))))
21313 (call-interactively #'org-open-at-point))
21314 ;; Insert newline in heading, but preserve tags.
21315 ((and (not (bolp))
21316 (save-excursion (beginning-of-line)
21317 (looking-at org-complex-heading-regexp)))
21318 ;; At headline. Split line. However, if point is on keyword,
21319 ;; priority cookie or tags, do not break any of them: add
21320 ;; a newline after the headline instead.
21321 (let ((tags-column (and (match-beginning 5)
21322 (save-excursion (goto-char (match-beginning 5))
21323 (current-column))))
21324 (string
21325 (when (and (match-end 4)
21326 (>= (point)
21327 (or (match-end 3) (match-end 2) (1+ (match-end 1))))
21328 (<= (point) (match-end 4)))
21329 (delete-and-extract-region (point) (match-end 4)))))
21330 (when (and tags-column string) ; Adjust tag alignment.
21331 (org-align-tags-here
21332 (if org-auto-align-tags org-tags-column tags-column)))
21333 (end-of-line)
21334 (org-show-entry)
21335 (if indent (newline-and-indent) (newline))
21336 (when string (save-excursion (insert (org-trim string))))))
21337 ;; In a list, make sure indenting keeps trailing text within.
21338 ((and indent
21339 (not (eolp))
21340 (org-element-lineage context '(item)))
21341 (let ((trailing-data
21342 (delete-and-extract-region (point) (line-end-position))))
21343 (newline-and-indent)
21344 (save-excursion (insert trailing-data))))
21345 (t (if indent (newline-and-indent) (newline))))))
21347 (defun org-return-indent ()
21348 "Goto next table row or insert a newline and indent.
21349 Calls `org-table-next-row' or `newline-and-indent', depending on
21350 context. See the individual commands for more information."
21351 (interactive)
21352 (org-return t))
21354 (defun org-ctrl-c-star ()
21355 "Compute table, or change heading status of lines.
21356 Calls `org-table-recalculate' or `org-toggle-heading',
21357 depending on context."
21358 (interactive)
21359 (cond
21360 ((org-at-table-p)
21361 (call-interactively 'org-table-recalculate))
21363 ;; Convert all lines in region to list items
21364 (call-interactively 'org-toggle-heading))))
21366 (defun org-ctrl-c-minus ()
21367 "Insert separator line in table or modify bullet status of line.
21368 Also turns a plain line or a region of lines into list items.
21369 Calls `org-table-insert-hline', `org-toggle-item', or
21370 `org-cycle-list-bullet', depending on context."
21371 (interactive)
21372 (cond
21373 ((org-at-table-p)
21374 (call-interactively 'org-table-insert-hline))
21375 ((org-region-active-p)
21376 (call-interactively 'org-toggle-item))
21377 ((org-in-item-p)
21378 (call-interactively 'org-cycle-list-bullet))
21380 (call-interactively 'org-toggle-item))))
21382 (defun org-toggle-item (arg)
21383 "Convert headings or normal lines to items, items to normal lines.
21384 If there is no active region, only the current line is considered.
21386 If the first non blank line in the region is a headline, convert
21387 all headlines to items, shifting text accordingly.
21389 If it is an item, convert all items to normal lines.
21391 If it is normal text, change region into a list of items.
21392 With a prefix argument ARG, change the region in a single item."
21393 (interactive "P")
21394 (let ((shift-text
21395 (function
21396 ;; Shift text in current section to IND, from point to END.
21397 ;; The function leaves point to END line.
21398 (lambda (ind end)
21399 (let ((min-i 1000) (end (copy-marker end)))
21400 ;; First determine the minimum indentation (MIN-I) of
21401 ;; the text.
21402 (save-excursion
21403 (catch 'exit
21404 (while (< (point) end)
21405 (let ((i (org-get-indentation)))
21406 (cond
21407 ;; Skip blank lines and inline tasks.
21408 ((looking-at "^[ \t]*$"))
21409 ((looking-at org-outline-regexp-bol))
21410 ;; We can't find less than 0 indentation.
21411 ((zerop i) (throw 'exit (setq min-i 0)))
21412 ((< i min-i) (setq min-i i))))
21413 (forward-line))))
21414 ;; Then indent each line so that a line indented to
21415 ;; MIN-I becomes indented to IND. Ignore blank lines
21416 ;; and inline tasks in the process.
21417 (let ((delta (- ind min-i)))
21418 (while (< (point) end)
21419 (unless (or (looking-at "^[ \t]*$")
21420 (looking-at org-outline-regexp-bol))
21421 (org-indent-line-to (+ (org-get-indentation) delta)))
21422 (forward-line)))))))
21423 (skip-blanks
21424 (function
21425 ;; Return beginning of first non-blank line, starting from
21426 ;; line at POS.
21427 (lambda (pos)
21428 (save-excursion
21429 (goto-char pos)
21430 (skip-chars-forward " \r\t\n")
21431 (point-at-bol)))))
21432 beg end)
21433 ;; Determine boundaries of changes.
21434 (if (org-region-active-p)
21435 (setq beg (funcall skip-blanks (region-beginning))
21436 end (copy-marker (region-end)))
21437 (setq beg (funcall skip-blanks (point-at-bol))
21438 end (copy-marker (point-at-eol))))
21439 ;; Depending on the starting line, choose an action on the text
21440 ;; between BEG and END.
21441 (org-with-limited-levels
21442 (save-excursion
21443 (goto-char beg)
21444 (cond
21445 ;; Case 1. Start at an item: de-itemize. Note that it only
21446 ;; happens when a region is active: `org-ctrl-c-minus'
21447 ;; would call `org-cycle-list-bullet' otherwise.
21448 ((org-at-item-p)
21449 (while (< (point) end)
21450 (when (org-at-item-p)
21451 (skip-chars-forward " \t")
21452 (delete-region (point) (match-end 0)))
21453 (forward-line)))
21454 ;; Case 2. Start at an heading: convert to items.
21455 ((org-at-heading-p)
21456 (let* ((bul (org-list-bullet-string "-"))
21457 (bul-len (length bul))
21458 (done (org-entry-is-done-p))
21459 (todo (org-entry-is-todo-p))
21460 ;; Indentation of the first heading. It should be
21461 ;; relative to the indentation of its parent, if any.
21462 (start-ind (save-excursion
21463 (cond
21464 ((not org-adapt-indentation) 0)
21465 ((not (outline-previous-heading)) 0)
21466 (t (length (match-string 0))))))
21467 ;; Level of first heading. Further headings will be
21468 ;; compared to it to determine hierarchy in the list.
21469 (ref-level (org-reduced-level (org-outline-level))))
21470 (when (or done todo) (org-todo ""))
21471 (while (< (point) end)
21472 (let* ((level (org-reduced-level (org-outline-level)))
21473 (delta (max 0 (- level ref-level))))
21474 ;; If current headline is less indented than the first
21475 ;; one, set it as reference, in order to preserve
21476 ;; subtrees.
21477 (when (< level ref-level) (setq ref-level level))
21478 (replace-match bul t t)
21479 (org-indent-line-to (+ start-ind (* delta bul-len)))
21480 (when (or done todo)
21481 (let* ((struct (org-list-struct))
21482 (old (copy-tree struct)))
21483 (org-list-set-checkbox (line-beginning-position)
21484 struct
21485 (if done "[X]" "[ ]"))
21486 (org-list-write-struct struct
21487 (org-list-parents-alist struct)
21488 old)))
21489 ;; Ensure all text down to END (or SECTION-END) belongs
21490 ;; to the newly created item.
21491 (let ((section-end (save-excursion
21492 (or (outline-next-heading) (point)))))
21493 (forward-line)
21494 (funcall shift-text
21495 (+ start-ind (* (1+ delta) bul-len))
21496 (min end section-end)))))))
21497 ;; Case 3. Normal line with ARG: make the first line of region
21498 ;; an item, and shift indentation of others lines to
21499 ;; set them as item's body.
21500 (arg (let* ((bul (org-list-bullet-string "-"))
21501 (bul-len (length bul))
21502 (ref-ind (org-get-indentation)))
21503 (skip-chars-forward " \t")
21504 (insert bul)
21505 (forward-line)
21506 (while (< (point) end)
21507 ;; Ensure that lines less indented than first one
21508 ;; still get included in item body.
21509 (funcall shift-text
21510 (+ ref-ind bul-len)
21511 (min end (save-excursion (or (outline-next-heading)
21512 (point)))))
21513 (forward-line))))
21514 ;; Case 4. Normal line without ARG: turn each non-item line
21515 ;; into an item.
21517 (while (< (point) end)
21518 (unless (or (org-at-heading-p) (org-at-item-p))
21519 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21520 (replace-match
21521 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21522 (forward-line))))))))
21524 (defun org-toggle-heading (&optional nstars)
21525 "Convert headings to normal text, or items or text to headings.
21526 If there is no active region, only convert the current line.
21528 With a \\[universal-argument] prefix, convert the whole list at
21529 point into heading.
21531 In a region:
21533 - If the first non blank line is a headline, remove the stars
21534 from all headlines in the region.
21536 - If it is a normal line, turn each and every normal line (i.e.,
21537 not an heading or an item) in the region into headings. If you
21538 want to convert only the first line of this region, use one
21539 universal prefix argument.
21541 - If it is a plain list item, turn all plain list items into headings.
21543 When converting a line into a heading, the number of stars is chosen
21544 such that the lines become children of the current entry. However,
21545 when a numeric prefix argument is given, its value determines the
21546 number of stars to add."
21547 (interactive "P")
21548 (let ((skip-blanks
21549 (function
21550 ;; Return beginning of first non-blank line, starting from
21551 ;; line at POS.
21552 (lambda (pos)
21553 (save-excursion
21554 (goto-char pos)
21555 (while (org-at-comment-p) (forward-line))
21556 (skip-chars-forward " \r\t\n")
21557 (point-at-bol)))))
21558 beg end toggled)
21559 ;; Determine boundaries of changes. If a universal prefix has
21560 ;; been given, put the list in a region. If region ends at a bol,
21561 ;; do not consider the last line to be in the region.
21563 (when (and current-prefix-arg (org-at-item-p))
21564 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21565 (org-mark-element))
21567 (if (org-region-active-p)
21568 (setq beg (funcall skip-blanks (region-beginning))
21569 end (copy-marker (save-excursion
21570 (goto-char (region-end))
21571 (if (bolp) (point) (point-at-eol)))))
21572 (setq beg (funcall skip-blanks (point-at-bol))
21573 end (copy-marker (point-at-eol))))
21574 ;; Ensure inline tasks don't count as headings.
21575 (org-with-limited-levels
21576 (save-excursion
21577 (goto-char beg)
21578 (cond
21579 ;; Case 1. Started at an heading: de-star headings.
21580 ((org-at-heading-p)
21581 (while (< (point) end)
21582 (when (org-at-heading-p t)
21583 (looking-at org-outline-regexp) (replace-match "")
21584 (setq toggled t))
21585 (forward-line)))
21586 ;; Case 2. Started at an item: change items into headlines.
21587 ;; One star will be added by `org-list-to-subtree'.
21588 ((org-at-item-p)
21589 (while (< (point) end)
21590 (when (org-at-item-p)
21591 ;; Pay attention to cases when region ends before list.
21592 (let* ((struct (org-list-struct))
21593 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21594 (save-restriction
21595 (narrow-to-region (point) list-end)
21596 (insert (org-list-to-subtree (org-list-parse-list t)))))
21597 (setq toggled t))
21598 (forward-line)))
21599 ;; Case 3. Started at normal text: make every line an heading,
21600 ;; skipping headlines and items.
21601 (t (let* ((stars
21602 (make-string
21603 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21604 (add-stars
21605 (cond (nstars "") ; stars from prefix only
21606 ((equal stars "") "*") ; before first heading
21607 (org-odd-levels-only "**") ; inside heading, odd
21608 (t "*"))) ; inside heading, oddeven
21609 (rpl (concat stars add-stars " "))
21610 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21611 (while (< (point) (if (equal nstars '(4)) lend end))
21612 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21613 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21614 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21615 (forward-line)))))))
21616 (unless toggled (message "Cannot toggle heading from here"))))
21618 (defun org-meta-return (&optional _arg)
21619 "Insert a new heading or wrap a region in a table.
21620 Calls `org-insert-heading' or `org-table-wrap-region', depending
21621 on context. See the individual commands for more information."
21622 (interactive)
21623 (org-check-before-invisible-edit 'insert)
21624 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21625 (call-interactively (if (org-at-table-p) #'org-table-wrap-region
21626 #'org-insert-heading))))
21628 ;;; Menu entries
21630 (defsubst org-in-subtree-not-table-p ()
21631 "Are we in a subtree and not in a table?"
21632 (and (not (org-before-first-heading-p))
21633 (not (org-at-table-p))))
21635 ;; Define the Org-mode menus
21636 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21637 '("Tbl"
21638 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21639 ["Next Field" org-cycle (org-at-table-p)]
21640 ["Previous Field" org-shifttab (org-at-table-p)]
21641 ["Next Row" org-return (org-at-table-p)]
21642 "--"
21643 ["Blank Field" org-table-blank-field (org-at-table-p)]
21644 ["Edit Field" org-table-edit-field (org-at-table-p)]
21645 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21646 "--"
21647 ("Column"
21648 ["Move Column Left" org-metaleft (org-at-table-p)]
21649 ["Move Column Right" org-metaright (org-at-table-p)]
21650 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21651 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21652 ("Row"
21653 ["Move Row Up" org-metaup (org-at-table-p)]
21654 ["Move Row Down" org-metadown (org-at-table-p)]
21655 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21656 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21657 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21658 "--"
21659 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21660 ("Rectangle"
21661 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21662 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21663 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21664 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21665 "--"
21666 ("Calculate"
21667 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21668 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21669 ["Edit Formulas" org-edit-special (org-at-table-p)]
21670 "--"
21671 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21672 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21673 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21674 "--"
21675 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21676 "--"
21677 ["Sum Column/Rectangle" org-table-sum
21678 (or (org-at-table-p) (org-region-active-p))]
21679 ["Which Column?" org-table-current-column (org-at-table-p)])
21680 ["Debug Formulas"
21681 org-table-toggle-formula-debugger
21682 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21683 ["Show Col/Row Numbers"
21684 org-table-toggle-coordinate-overlays
21685 :style toggle
21686 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21687 "--"
21688 ["Create" org-table-create (and (not (org-at-table-p))
21689 org-enable-table-editor)]
21690 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21691 ["Import from File" org-table-import (not (org-at-table-p))]
21692 ["Export to File" org-table-export (org-at-table-p)]
21693 "--"
21694 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21695 "--"
21696 ("Plot"
21697 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21698 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21700 (easy-menu-define org-org-menu org-mode-map "Org menu"
21701 '("Org"
21702 ("Show/Hide"
21703 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21704 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21705 ["Sparse Tree..." org-sparse-tree t]
21706 ["Reveal Context" org-reveal t]
21707 ["Show All" show-all t]
21708 "--"
21709 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21710 "--"
21711 ["New Heading" org-insert-heading t]
21712 ("Navigate Headings"
21713 ["Up" outline-up-heading t]
21714 ["Next" outline-next-visible-heading t]
21715 ["Previous" outline-previous-visible-heading t]
21716 ["Next Same Level" outline-forward-same-level t]
21717 ["Previous Same Level" outline-backward-same-level t]
21718 "--"
21719 ["Jump" org-goto t])
21720 ("Edit Structure"
21721 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21722 "--"
21723 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21724 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21725 "--"
21726 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21727 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21728 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21729 "--"
21730 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21731 "--"
21732 ["Copy visible text" org-copy-visible t]
21733 "--"
21734 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21735 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21736 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21737 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21738 "--"
21739 ["Sort Region/Children" org-sort t]
21740 "--"
21741 ["Convert to odd levels" org-convert-to-odd-levels t]
21742 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21743 ("Editing"
21744 ["Emphasis..." org-emphasize t]
21745 ["Edit Source Example" org-edit-special t]
21746 "--"
21747 ["Footnote new/jump" org-footnote-action t]
21748 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21749 ("Archive"
21750 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21751 "--"
21752 ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
21753 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21754 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21756 "--"
21757 ("Hyperlinks"
21758 ["Store Link (Global)" org-store-link t]
21759 ["Find existing link to here" org-occur-link-in-agenda-files t]
21760 ["Insert Link" org-insert-link t]
21761 ["Follow Link" org-open-at-point t]
21762 "--"
21763 ["Next link" org-next-link t]
21764 ["Previous link" org-previous-link t]
21765 "--"
21766 ["Descriptive Links"
21767 org-toggle-link-display
21768 :style radio
21769 :selected org-descriptive-links
21771 ["Literal Links"
21772 org-toggle-link-display
21773 :style radio
21774 :selected (not org-descriptive-links)])
21775 "--"
21776 ("TODO Lists"
21777 ["TODO/DONE/-" org-todo t]
21778 ("Select keyword"
21779 ["Next keyword" org-shiftright (org-at-heading-p)]
21780 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21781 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21782 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21783 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21784 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21785 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21786 "--"
21787 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21788 :selected org-enforce-todo-dependencies :style toggle :active t]
21789 "Settings for tree at point"
21790 ["Do Children sequentially" org-toggle-ordered-property :style radio
21791 :selected (org-entry-get nil "ORDERED")
21792 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21793 ["Do Children parallel" org-toggle-ordered-property :style radio
21794 :selected (not (org-entry-get nil "ORDERED"))
21795 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21796 "--"
21797 ["Set Priority" org-priority t]
21798 ["Priority Up" org-shiftup t]
21799 ["Priority Down" org-shiftdown t]
21800 "--"
21801 ["Get news from all feeds" org-feed-update-all t]
21802 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21803 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21804 ("TAGS and Properties"
21805 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21806 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21807 "--"
21808 ["Set property" org-set-property (not (org-before-first-heading-p))]
21809 ["Column view of properties" org-columns t]
21810 ["Insert Column View DBlock" org-insert-columns-dblock t])
21811 ("Dates and Scheduling"
21812 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21813 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21814 ("Change Date"
21815 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21816 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21817 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21818 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21819 ["Compute Time Range" org-evaluate-time-range t]
21820 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21821 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21822 "--"
21823 ["Custom time format" org-toggle-time-stamp-overlays
21824 :style radio :selected org-display-custom-times]
21825 "--"
21826 ["Goto Calendar" org-goto-calendar t]
21827 ["Date from Calendar" org-date-from-calendar t]
21828 "--"
21829 ["Start/Restart Timer" org-timer-start t]
21830 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21831 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21832 ["Insert Timer String" org-timer t]
21833 ["Insert Timer Item" org-timer-item t])
21834 ("Logging work"
21835 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21836 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21837 ["Clock out" org-clock-out t]
21838 ["Clock cancel" org-clock-cancel t]
21839 "--"
21840 ["Mark as default task" org-clock-mark-default-task t]
21841 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21842 ["Goto running clock" org-clock-goto t]
21843 "--"
21844 ["Display times" org-clock-display t]
21845 ["Create clock table" org-clock-report t]
21846 "--"
21847 ["Record DONE time"
21848 (progn (setq org-log-done (not org-log-done))
21849 (message "Switching to %s will %s record a timestamp"
21850 (car org-done-keywords)
21851 (if org-log-done "automatically" "not")))
21852 :style toggle :selected org-log-done])
21853 "--"
21854 ["Agenda Command..." org-agenda t]
21855 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21856 ("File List for Agenda")
21857 ("Special views current file"
21858 ["TODO Tree" org-show-todo-tree t]
21859 ["Check Deadlines" org-check-deadlines t]
21860 ["Timeline" org-timeline t]
21861 ["Tags/Property tree" org-match-sparse-tree t])
21862 "--"
21863 ["Export/Publish..." org-export-dispatch t]
21864 ("LaTeX"
21865 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21866 :selected org-cdlatex-mode]
21867 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21868 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21869 ["Modify math symbol" org-cdlatex-math-modify
21870 (org-inside-LaTeX-fragment-p)]
21871 ["Insert citation" org-reftex-citation t]
21872 "--"
21873 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21874 "--"
21875 ("MobileOrg"
21876 ["Push Files and Views" org-mobile-push t]
21877 ["Get Captured and Flagged" org-mobile-pull t]
21878 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21879 "--"
21880 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21881 "--"
21882 ("Documentation"
21883 ["Show Version" org-version t]
21884 ["Info Documentation" org-info t])
21885 ("Customize"
21886 ["Browse Org Group" org-customize t]
21887 "--"
21888 ["Expand This Menu" org-create-customize-menu
21889 (fboundp 'customize-menu-create)])
21890 ["Send bug report" org-submit-bug-report t]
21891 "--"
21892 ("Refresh/Reload"
21893 ["Refresh setup current buffer" org-mode-restart t]
21894 ["Reload Org (after update)" org-reload t]
21895 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21898 (defun org-info (&optional node)
21899 "Read documentation for Org-mode in the info system.
21900 With optional NODE, go directly to that node."
21901 (interactive)
21902 (info (format "(org)%s" (or node ""))))
21904 ;;;###autoload
21905 (defun org-submit-bug-report ()
21906 "Submit a bug report on Org-mode via mail.
21908 Don't hesitate to report any problems or inaccurate documentation.
21910 If you don't have setup sending mail from (X)Emacs, please copy the
21911 output buffer into your mail program, as it gives us important
21912 information about your Org-mode version and configuration."
21913 (interactive)
21914 (require 'reporter)
21915 (defvar reporter-prompt-for-summary-p)
21916 (org-load-modules-maybe)
21917 (org-require-autoloaded-modules)
21918 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21919 (reporter-submit-bug-report
21920 "emacs-orgmode@gnu.org"
21921 (org-version nil 'full)
21922 (let (list)
21923 (save-window-excursion
21924 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21925 (delete-other-windows)
21926 (erase-buffer)
21927 (insert "You are about to submit a bug report to the Org-mode mailing list.
21929 We would like to add your full Org-mode and Outline configuration to the
21930 bug report. This greatly simplifies the work of the maintainer and
21931 other experts on the mailing list.
21933 HOWEVER, some variables you have customized may contain private
21934 information. The names of customers, colleagues, or friends, might
21935 appear in the form of file names, tags, todo states, or search strings.
21936 If you answer yes to the prompt, you might want to check and remove
21937 such private information before sending the email.")
21938 (add-text-properties (point-min) (point-max) '(face org-warning))
21939 (when (yes-or-no-p "Include your Org-mode configuration ")
21940 (mapatoms
21941 (lambda (v)
21942 (and (boundp v)
21943 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21944 (or (and (symbol-value v)
21945 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21946 (and
21947 (get v 'custom-type) (get v 'standard-value)
21948 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21949 (push v list)))))
21950 (kill-buffer (get-buffer "*Warn about privacy*"))
21951 list))
21952 nil nil
21953 "Remember to cover the basics, that is, what you expected to happen and
21954 what in fact did happen. You don't know how to make a good report? See
21956 http://orgmode.org/manual/Feedback.html#Feedback
21958 Your bug report will be posted to the Org-mode mailing list.
21959 ------------------------------------------------------------------------")
21960 (save-excursion
21961 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21962 (replace-match "\\1Bug: \\3 [\\2]")))))
21965 (defun org-install-agenda-files-menu ()
21966 (let ((bl (buffer-list)))
21967 (save-excursion
21968 (while bl
21969 (set-buffer (pop bl))
21970 (if (derived-mode-p 'org-mode) (setq bl nil)))
21971 (when (derived-mode-p 'org-mode)
21972 (easy-menu-change
21973 '("Org") "File List for Agenda"
21974 (append
21975 (list
21976 ["Edit File List" (org-edit-agenda-file-list) t]
21977 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21978 ["Remove Current File from List" org-remove-file t]
21979 ["Cycle through agenda files" org-cycle-agenda-files t]
21980 ["Occur in all agenda files" org-occur-in-agenda-files t]
21981 "--")
21982 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21984 ;;;; Documentation
21986 (defun org-require-autoloaded-modules ()
21987 (interactive)
21988 (mapc 'require
21989 '(org-agenda org-archive org-attach org-clock org-colview org-id
21990 org-table org-timer)))
21992 ;;;###autoload
21993 (defun org-reload (&optional uncompiled)
21994 "Reload all org lisp files.
21995 With prefix arg UNCOMPILED, load the uncompiled versions."
21996 (interactive "P")
21997 (require 'loadhist)
21998 (let* ((org-dir (org-find-library-dir "org"))
21999 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
22000 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
22001 (remove-re (mapconcat 'identity
22002 (mapcar (lambda (f) (concat "^" f "$"))
22003 (list (if (featurep 'xemacs)
22004 "org-colview"
22005 "org-colview-xemacs")
22006 "org" "org-loaddefs" "org-version"))
22007 "\\|"))
22008 (feats (delete-dups
22009 (mapcar 'file-name-sans-extension
22010 (mapcar 'file-name-nondirectory
22011 (delq nil
22012 (mapcar 'feature-file
22013 features))))))
22014 (lfeat (append
22015 (sort
22016 (setq feats
22017 (delq nil (mapcar
22018 (lambda (f)
22019 (if (and (string-match feature-re f)
22020 (not (string-match remove-re f)))
22021 f nil))
22022 feats)))
22023 'string-lessp)
22024 (list "org-version" "org")))
22025 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
22026 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
22027 load-uncore load-misses)
22028 (setq load-misses
22029 (delq 't
22030 (mapcar (lambda (f)
22031 (or (org-load-noerror-mustsuffix (concat org-dir f))
22032 (and (string= org-dir contrib-dir)
22033 (org-load-noerror-mustsuffix (concat contrib-dir f)))
22034 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
22035 (add-to-list 'load-uncore f 'append)
22038 lfeat)))
22039 (if load-uncore
22040 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
22041 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
22042 (if load-misses
22043 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
22044 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
22045 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
22047 ;;;###autoload
22048 (defun org-customize ()
22049 "Call the customize function with org as argument."
22050 (interactive)
22051 (org-load-modules-maybe)
22052 (org-require-autoloaded-modules)
22053 (customize-browse 'org))
22055 (defun org-create-customize-menu ()
22056 "Create a full customization menu for Org-mode, insert it into the menu."
22057 (interactive)
22058 (org-load-modules-maybe)
22059 (org-require-autoloaded-modules)
22060 (if (fboundp 'customize-menu-create)
22061 (progn
22062 (easy-menu-change
22063 '("Org") "Customize"
22064 `(["Browse Org group" org-customize t]
22065 "--"
22066 ,(customize-menu-create 'org)
22067 ["Set" Custom-set t]
22068 ["Save" Custom-save t]
22069 ["Reset to Current" Custom-reset-current t]
22070 ["Reset to Saved" Custom-reset-saved t]
22071 ["Reset to Standard Settings" Custom-reset-standard t]))
22072 (message "\"Org\"-menu now contains full customization menu"))
22073 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22075 ;;;; Miscellaneous stuff
22077 ;;; Generally useful functions
22079 (defsubst org-get-at-eol (property n)
22080 "Get text property PROPERTY at the end of line less N characters."
22081 (get-text-property (- (point-at-eol) n) property))
22083 (defun org-find-text-property-in-string (prop s)
22084 "Return the first non-nil value of property PROP in string S."
22085 (or (get-text-property 0 prop s)
22086 (get-text-property (or (next-single-property-change 0 prop s) 0)
22087 prop s)))
22089 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22090 "Display the given MESSAGE as a warning."
22091 (if (fboundp 'display-warning)
22092 (display-warning 'org message
22093 (if (featurep 'xemacs) 'warning :warning))
22094 (let ((buf (get-buffer-create "*Org warnings*")))
22095 (with-current-buffer buf
22096 (goto-char (point-max))
22097 (insert "Warning (Org): " message)
22098 (unless (bolp)
22099 (newline)))
22100 (display-buffer buf)
22101 (sit-for 0))))
22103 (defun org-eval (form)
22104 "Eval FORM and return result."
22105 (condition-case error
22106 (eval form)
22107 (error (format "%%![Error: %s]" error))))
22109 (defun org-in-clocktable-p ()
22110 "Check if the cursor is in a clocktable."
22111 (let ((pos (point)) start)
22112 (save-excursion
22113 (end-of-line 1)
22114 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22115 (setq start (match-beginning 0))
22116 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22117 (>= (match-end 0) pos)
22118 start))))
22120 (defun org-in-verbatim-emphasis ()
22121 (save-match-data
22122 (and (org-in-regexp org-emph-re 2)
22123 (>= (point) (match-beginning 3))
22124 (<= (point) (match-end 4))
22125 (member (match-string 3) '("=" "~")))))
22127 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22128 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22129 (if (and marker (marker-buffer marker)
22130 (buffer-live-p (marker-buffer marker)))
22131 (progn
22132 (org-pop-to-buffer-same-window (marker-buffer marker))
22133 (if (or (> marker (point-max)) (< marker (point-min)))
22134 (widen))
22135 (goto-char marker)
22136 (org-show-context 'org-goto))
22137 (if bookmark
22138 (bookmark-jump bookmark)
22139 (error "Cannot find location"))))
22141 (defun org-quote-csv-field (s)
22142 "Quote field for inclusion in CSV material."
22143 (if (string-match "[\",]" s)
22144 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22147 (defun org-force-self-insert (N)
22148 "Needed to enforce self-insert under remapping."
22149 (interactive "p")
22150 (self-insert-command N))
22152 (defun org-string-width (s)
22153 "Compute width of string, ignoring invisible characters.
22154 This ignores character with invisibility property `org-link', and also
22155 characters with property `org-cwidth', because these will become invisible
22156 upon the next fontification round."
22157 (let (b l)
22158 (when (or (eq t buffer-invisibility-spec)
22159 (assq 'org-link buffer-invisibility-spec))
22160 (while (setq b (text-property-any 0 (length s)
22161 'invisible 'org-link s))
22162 (setq s (concat (substring s 0 b)
22163 (substring s (or (next-single-property-change
22164 b 'invisible s)
22165 (length s)))))))
22166 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22167 (setq s (concat (substring s 0 b)
22168 (substring s (or (next-single-property-change
22169 b 'org-cwidth s)
22170 (length s))))))
22171 (setq l (string-width s) b -1)
22172 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22173 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22176 (defun org-shorten-string (s maxlength)
22177 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22178 If the string is shorter or has length MAXLENGTH, just return the
22179 original string. If it is longer, the functions finds a space in the
22180 string, breaks this string off at that locations and adds three dots
22181 as ellipsis. Including the ellipsis, the string will not be longer
22182 than MAXLENGTH. If finding a good breaking point in the string does
22183 not work, the string is just chopped off in the middle of a word
22184 if necessary."
22185 (if (<= (length s) maxlength)
22187 (let* ((n (max (- maxlength 4) 1))
22188 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22189 (if (string-match re s)
22190 (concat (match-string 1 s) "...")
22191 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22193 (defun org-get-indentation (&optional line)
22194 "Get the indentation of the current line, interpreting tabs.
22195 When LINE is given, assume it represents a line and compute its indentation."
22196 (if line
22197 (if (string-match "^ *" (org-remove-tabs line))
22198 (match-end 0))
22199 (save-excursion
22200 (beginning-of-line 1)
22201 (skip-chars-forward " \t")
22202 (current-column))))
22204 (defun org-get-string-indentation (s)
22205 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22206 (let ((n -1) (i 0) (w tab-width) c)
22207 (catch 'exit
22208 (while (< (setq n (1+ n)) (length s))
22209 (setq c (aref s n))
22210 (cond ((= c ?\ ) (setq i (1+ i)))
22211 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22212 (t (throw 'exit t)))))
22215 (defun org-remove-tabs (s &optional width)
22216 "Replace tabulators in S with spaces.
22217 Assumes that s is a single line, starting in column 0."
22218 (setq width (or width tab-width))
22219 (while (string-match "\t" s)
22220 (setq s (replace-match
22221 (make-string
22222 (- (* width (/ (+ (match-beginning 0) width) width))
22223 (match-beginning 0)) ?\ )
22224 t t s)))
22227 (defun org-fix-indentation (line ind)
22228 "Fix indentation in LINE.
22229 IND is a cons cell with target and minimum indentation.
22230 If the current indentation in LINE is smaller than the minimum,
22231 leave it alone. If it is larger than ind, set it to the target."
22232 (let* ((l (org-remove-tabs line))
22233 (i (org-get-indentation l))
22234 (i1 (car ind)) (i2 (cdr ind)))
22235 (if (>= i i2) (setq l (substring line i2)))
22236 (if (> i1 0)
22237 (concat (make-string i1 ?\ ) l)
22238 l)))
22240 (defun org-remove-indentation (code &optional n)
22241 "Remove the maximum common indentation from the lines in CODE.
22242 N may optionally be the number of spaces to remove."
22243 (with-temp-buffer
22244 (insert code)
22245 (org-do-remove-indentation n)
22246 (buffer-string)))
22248 (defun org-do-remove-indentation (&optional n)
22249 "Remove the maximum common indentation from the buffer."
22250 (untabify (point-min) (point-max))
22251 (let ((min 10000) re)
22252 (if n
22253 (setq min n)
22254 (goto-char (point-min))
22255 (while (re-search-forward "^ *[^ \n]" nil t)
22256 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22257 (unless (or (= min 0) (= min 10000))
22258 (setq re (format "^ \\{%d\\}" min))
22259 (goto-char (point-min))
22260 (while (re-search-forward re nil t)
22261 (replace-match "")
22262 (end-of-line 1))
22263 min)))
22265 (defun org-fill-template (template alist)
22266 "Find each %key of ALIST in TEMPLATE and replace it."
22267 (let ((case-fold-search nil))
22268 (dolist (entry (sort (copy-sequence alist)
22269 (lambda (a b) (< (length (car a)) (length (car b))))))
22270 (setq template
22271 (replace-regexp-in-string
22272 (concat "%" (regexp-quote (car entry)))
22273 (or (cdr entry) "") template t t)))
22274 template))
22276 (defun org-base-buffer (buffer)
22277 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22278 (if (not buffer)
22279 buffer
22280 (or (buffer-base-buffer buffer)
22281 buffer)))
22283 (defun org-wrap (string &optional width lines)
22284 "Wrap string to either a number of lines, or a width in characters.
22285 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22286 that costs. If there is a word longer than WIDTH, the text is actually
22287 wrapped to the length of that word.
22288 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22289 many lines, whatever width that takes.
22290 The return value is a list of lines, without newlines at the end."
22291 (let* ((words (org-split-string string "[ \t\n]+"))
22292 (maxword (apply 'max (mapcar 'org-string-width words)))
22293 w ll)
22294 (cond (width
22295 (org-do-wrap words (max maxword width)))
22296 (lines
22297 (setq w maxword)
22298 (setq ll (org-do-wrap words maxword))
22299 (if (<= (length ll) lines)
22301 (setq ll words)
22302 (while (> (length ll) lines)
22303 (setq w (1+ w))
22304 (setq ll (org-do-wrap words w)))
22305 ll))
22306 (t (error "Cannot wrap this")))))
22308 (defun org-do-wrap (words width)
22309 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22310 (let (lines line)
22311 (while words
22312 (setq line (pop words))
22313 (while (and words (< (+ (length line) (length (car words))) width))
22314 (setq line (concat line " " (pop words))))
22315 (setq lines (push line lines)))
22316 (nreverse lines)))
22318 (defun org-split-string (string &optional separators)
22319 "Splits STRING into substrings at SEPARATORS.
22320 SEPARATORS is a regular expression.
22321 No empty strings are returned if there are matches at the beginning
22322 and end of string."
22323 ;; FIXME: why not use (split-string STRING SEPARATORS t)?
22324 (let ((start 0) notfirst list)
22325 (while (and (string-match (or separators "[ \f\t\n\r\v]+") string
22326 (if (and notfirst
22327 (= start (match-beginning 0))
22328 (< start (length string)))
22329 (1+ start) start))
22330 (< (match-beginning 0) (length string)))
22331 (setq notfirst t)
22332 (or (eq (match-beginning 0) 0)
22333 (and (eq (match-beginning 0) (match-end 0))
22334 (eq (match-beginning 0) start))
22335 (push (substring string start (match-beginning 0)) list))
22336 (setq start (match-end 0)))
22337 (or (eq start (length string))
22338 (push (substring string start) list))
22339 (nreverse list)))
22341 (defun org-quote-vert (s)
22342 "Replace \"|\" with \"\\vert\"."
22343 (while (string-match "|" s)
22344 (setq s (replace-match "\\vert" t t s)))
22347 (defun org-uuidgen-p (s)
22348 "Is S an ID created by UUIDGEN?"
22349 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22351 (defun org-in-src-block-p (&optional inside)
22352 "Whether point is in a code source block.
22353 When INSIDE is non-nil, don't consider we are within a src block
22354 when point is at #+BEGIN_SRC or #+END_SRC."
22355 (let ((case-fold-search t) ov)
22356 (or (and (eq (get-char-property (point) 'src-block) t))
22357 (and (not inside)
22358 (save-match-data
22359 (save-excursion
22360 (beginning-of-line)
22361 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22363 (defun org-context ()
22364 "Return a list of contexts of the current cursor position.
22365 If several contexts apply, all are returned.
22366 Each context entry is a list with a symbol naming the context, and
22367 two positions indicating start and end of the context. Possible
22368 contexts are:
22370 :headline anywhere in a headline
22371 :headline-stars on the leading stars in a headline
22372 :todo-keyword on a TODO keyword (including DONE) in a headline
22373 :tags on the TAGS in a headline
22374 :priority on the priority cookie in a headline
22375 :item on the first line of a plain list item
22376 :item-bullet on the bullet/number of a plain list item
22377 :checkbox on the checkbox in a plain list item
22378 :table in an org-mode table
22379 :table-special on a special filed in a table
22380 :table-table in a table.el table
22381 :clocktable in a clocktable
22382 :src-block in a source block
22383 :link on a hyperlink
22384 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22385 :target on a <<target>>
22386 :radio-target on a <<<radio-target>>>
22387 :latex-fragment on a LaTeX fragment
22388 :latex-preview on a LaTeX fragment with overlaid preview image
22390 This function expects the position to be visible because it uses font-lock
22391 faces as a help to recognize the following contexts: :table-special, :link,
22392 and :keyword."
22393 (let* ((f (get-text-property (point) 'face))
22394 (faces (if (listp f) f (list f)))
22395 (case-fold-search t)
22396 (p (point)) clist o)
22397 ;; First the large context
22398 (cond
22399 ((org-at-heading-p t)
22400 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22401 (when (progn
22402 (beginning-of-line 1)
22403 (looking-at org-todo-line-tags-regexp))
22404 (push (org-point-in-group p 1 :headline-stars) clist)
22405 (push (org-point-in-group p 2 :todo-keyword) clist)
22406 (push (org-point-in-group p 4 :tags) clist))
22407 (goto-char p)
22408 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22409 (if (looking-at "\\[#[A-Z0-9]\\]")
22410 (push (org-point-in-group p 0 :priority) clist)))
22412 ((org-at-item-p)
22413 (push (org-point-in-group p 2 :item-bullet) clist)
22414 (push (list :item (point-at-bol)
22415 (save-excursion (org-end-of-item) (point)))
22416 clist)
22417 (and (org-at-item-checkbox-p)
22418 (push (org-point-in-group p 0 :checkbox) clist)))
22420 ((org-at-table-p)
22421 (push (list :table (org-table-begin) (org-table-end)) clist)
22422 (if (memq 'org-formula faces)
22423 (push (list :table-special
22424 (previous-single-property-change p 'face)
22425 (next-single-property-change p 'face)) clist)))
22426 ((org-at-table-p 'any)
22427 (push (list :table-table) clist)))
22428 (goto-char p)
22430 (let ((case-fold-search t))
22431 ;; New the "medium" contexts: clocktables, source blocks
22432 (cond ((org-in-clocktable-p)
22433 (push (list :clocktable
22434 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22435 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22436 (match-beginning 1))
22437 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22438 (match-end 0))) clist))
22439 ((org-in-src-block-p)
22440 (push (list :src-block
22441 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22442 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22443 (match-beginning 1))
22444 (and (search-forward "#+END_SRC" nil t)
22445 (match-beginning 0))) clist))))
22446 (goto-char p)
22448 ;; Now the small context
22449 (cond
22450 ((org-at-timestamp-p)
22451 (push (org-point-in-group p 0 :timestamp) clist))
22452 ((memq 'org-link faces)
22453 (push (list :link
22454 (previous-single-property-change p 'face)
22455 (next-single-property-change p 'face)) clist))
22456 ((memq 'org-special-keyword faces)
22457 (push (list :keyword
22458 (previous-single-property-change p 'face)
22459 (next-single-property-change p 'face)) clist))
22460 ((org-at-target-p)
22461 (push (org-point-in-group p 0 :target) clist)
22462 (goto-char (1- (match-beginning 0)))
22463 (if (looking-at org-radio-target-regexp)
22464 (push (org-point-in-group p 0 :radio-target) clist))
22465 (goto-char p))
22466 ((setq o (car (delq nil
22467 (mapcar
22468 (lambda (x)
22469 (if (memq x org-latex-fragment-image-overlays) x))
22470 (overlays-at (point))))))
22471 (push (list :latex-fragment
22472 (overlay-start o) (overlay-end o)) clist)
22473 (push (list :latex-preview
22474 (overlay-start o) (overlay-end o)) clist))
22475 ((org-inside-LaTeX-fragment-p)
22476 ;; FIXME: positions wrong.
22477 (push (list :latex-fragment (point) (point)) clist)))
22479 (setq clist (nreverse (delq nil clist)))
22480 clist))
22482 (defun org-in-regexp (re &optional nlines visually)
22483 "Check if point is inside a match of RE.
22485 Normally only the current line is checked, but you can include
22486 NLINES extra lines after point into the search. If VISUALLY is
22487 set, require that the cursor is not after the match but really
22488 on, so that the block visually is on the match."
22489 (catch 'exit
22490 (let ((pos (point))
22491 (eol (point-at-eol (+ 1 (or nlines 0))))
22492 (inc (if visually 1 0)))
22493 (save-excursion
22494 (beginning-of-line (- 1 (or nlines 0)))
22495 (while (re-search-forward re eol t)
22496 (if (and (<= (match-beginning 0) pos)
22497 (>= (+ inc (match-end 0)) pos))
22498 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22499 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22500 "Org mode 8.3")
22502 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22503 "Non-nil when point is between matches of START-RE and END-RE.
22505 Also return a non-nil value when point is on one of the matches.
22507 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22508 buffer positions. Default values are the positions of headlines
22509 surrounding the point.
22511 The functions returns a cons cell whose car (resp. cdr) is the
22512 position before START-RE (resp. after END-RE)."
22513 (save-match-data
22514 (let ((pos (point))
22515 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22516 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22517 beg end)
22518 (save-excursion
22519 ;; Point is on a block when on START-RE or if START-RE can be
22520 ;; found before it...
22521 (and (or (org-in-regexp start-re)
22522 (re-search-backward start-re limit-up t))
22523 (setq beg (match-beginning 0))
22524 ;; ... and END-RE after it...
22525 (goto-char (match-end 0))
22526 (re-search-forward end-re limit-down t)
22527 (> (setq end (match-end 0)) pos)
22528 ;; ... without another START-RE in-between.
22529 (goto-char (match-beginning 0))
22530 (not (re-search-backward start-re (1+ beg) t))
22531 ;; Return value.
22532 (cons beg end))))))
22534 (defun org-in-block-p (names)
22535 "Non-nil when point belongs to a block whose name belongs to NAMES.
22537 NAMES is a list of strings containing names of blocks.
22539 Return first block name matched, or nil. Beware that in case of
22540 nested blocks, the returned name may not belong to the closest
22541 block from point."
22542 (save-match-data
22543 (catch 'exit
22544 (let ((case-fold-search t)
22545 (lim-up (save-excursion (outline-previous-heading)))
22546 (lim-down (save-excursion (outline-next-heading))))
22547 (mapc (lambda (name)
22548 (let ((n (regexp-quote name)))
22549 (when (org-between-regexps-p
22550 (concat "^[ \t]*#\\+begin_" n)
22551 (concat "^[ \t]*#\\+end_" n)
22552 lim-up lim-down)
22553 (throw 'exit n))))
22554 names))
22555 nil)))
22557 (defun org-occur-in-agenda-files (regexp &optional _nlines)
22558 "Call `multi-occur' with buffers for all agenda files."
22559 (interactive "sOrg-files matching: ")
22560 (let* ((files (org-agenda-files))
22561 (tnames (mapcar #'file-truename files))
22562 (extra org-agenda-text-search-extra-files))
22563 (when (eq (car extra) 'agenda-archives)
22564 (setq extra (cdr extra))
22565 (setq files (org-add-archive-files files)))
22566 (dolist (f extra)
22567 (unless (member (file-truename f) tnames)
22568 (unless (member f files) (setq files (append files (list f))))
22569 (setq tnames (append tnames (list (file-truename f))))))
22570 (multi-occur
22571 (mapcar (lambda (x)
22572 (with-current-buffer
22573 ;; FIXME: Why not just (find-file-noselect x)?
22574 ;; Is it to avoid the "revert buffer" prompt?
22575 (or (get-file-buffer x) (find-file-noselect x))
22576 (widen)
22577 (current-buffer)))
22578 files)
22579 regexp)))
22581 (if (boundp 'occur-mode-find-occurrence-hook)
22582 ;; Emacs 23
22583 (add-hook 'occur-mode-find-occurrence-hook
22584 (lambda ()
22585 (when (derived-mode-p 'org-mode)
22586 (org-reveal))))
22587 ;; Emacs 22
22588 (defadvice occur-mode-goto-occurrence
22589 (after org-occur-reveal activate)
22590 (and (derived-mode-p 'org-mode) (org-reveal)))
22591 (defadvice occur-mode-goto-occurrence-other-window
22592 (after org-occur-reveal activate)
22593 (and (derived-mode-p 'org-mode) (org-reveal)))
22594 (defadvice occur-mode-display-occurrence
22595 (after org-occur-reveal activate)
22596 (when (derived-mode-p 'org-mode)
22597 (let ((pos (occur-mode-find-occurrence)))
22598 (with-current-buffer (marker-buffer pos)
22599 (save-excursion
22600 (goto-char pos)
22601 (org-reveal)))))))
22603 (defun org-occur-link-in-agenda-files ()
22604 "Create a link and search for it in the agendas.
22605 The link is not stored in `org-stored-links', it is just created
22606 for the search purpose."
22607 (interactive)
22608 (let ((link (condition-case nil
22609 (org-store-link nil)
22610 (error "Unable to create a link to here"))))
22611 (org-occur-in-agenda-files (regexp-quote link))))
22613 (defun org-reverse-string (string)
22614 "Return the reverse of STRING."
22615 (apply 'string (reverse (string-to-list string))))
22617 ;; defsubst org-uniquify must be defined before first use
22619 (defun org-uniquify-alist (alist)
22620 "Merge elements of ALIST with the same key.
22622 For example, in this alist:
22624 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22625 => '((a 1 3) (b 2))
22627 merge (a 1) and (a 3) into (a 1 3).
22629 The function returns the new ALIST."
22630 (let (rtn)
22631 (mapc
22632 (lambda (e)
22633 (let (n)
22634 (if (not (assoc (car e) rtn))
22635 (push e rtn)
22636 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22637 (setq rtn (assq-delete-all (car e) rtn))
22638 (push n rtn))))
22639 alist)
22640 rtn))
22642 (defun org-delete-all (elts list)
22643 "Remove all elements in ELTS from LIST."
22644 (while elts
22645 (setq list (delete (pop elts) list)))
22646 list)
22648 (defun org-count (cl-item cl-seq)
22649 "Count the number of occurrences of ITEM in SEQ.
22650 Taken from `count' in cl-seq.el with all keyword arguments removed."
22651 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22652 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22653 (while (< cl-start cl-end)
22654 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22655 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22656 (setq cl-start (1+ cl-start)))
22657 cl-count))
22659 (defun org-remove-if (predicate seq)
22660 "Remove everything from SEQ that fulfills PREDICATE."
22661 (let (res e)
22662 (while seq
22663 (setq e (pop seq))
22664 (if (not (funcall predicate e)) (push e res)))
22665 (nreverse res)))
22667 (defun org-remove-if-not (predicate seq)
22668 "Remove everything from SEQ that does not fulfill PREDICATE."
22669 (let (res e)
22670 (while seq
22671 (setq e (pop seq))
22672 (if (funcall predicate e) (push e res)))
22673 (nreverse res)))
22675 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22676 "Reduce two-argument FUNCTION across SEQ.
22677 Taken from `reduce' in cl-seq.el with all keyword arguments but
22678 \":initial-value\" removed."
22679 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22680 (cadr (memq :initial-value cl-keys)))
22681 (cl-seq (pop cl-seq))
22682 (t (funcall cl-func)))))
22683 (while cl-seq
22684 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22685 cl-accum))
22687 (defun org-every (pred seq)
22688 "Return true if PREDICATE is true of every element of SEQ.
22689 Adapted from `every' in cl.el."
22690 (catch 'org-every
22691 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22694 (defun org-some (pred seq)
22695 "Return true if PREDICATE is true of any element of SEQ.
22696 Adapted from `some' in cl.el."
22697 (catch 'org-some
22698 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22699 nil))
22701 (defun org-back-over-empty-lines ()
22702 "Move backwards over whitespace, to the beginning of the first empty line.
22703 Returns the number of empty lines passed."
22704 (let ((pos (point)))
22705 (if (cdr (assoc 'heading org-blank-before-new-entry))
22706 (skip-chars-backward " \t\n\r")
22707 (unless (eobp)
22708 (forward-line -1)))
22709 (beginning-of-line 2)
22710 (goto-char (min (point) pos))
22711 (count-lines (point) pos)))
22713 (defun org-skip-whitespace ()
22714 (skip-chars-forward " \t\n\r"))
22716 (defun org-point-in-group (point group &optional context)
22717 "Check if POINT is in match-group GROUP.
22718 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22719 match. If the match group does not exist or point is not inside it,
22720 return nil."
22721 (and (match-beginning group)
22722 (>= point (match-beginning group))
22723 (<= point (match-end group))
22724 (if context
22725 (list context (match-beginning group) (match-end group))
22726 t)))
22728 (defun org-switch-to-buffer-other-window (&rest args)
22729 "Switch to buffer in a second window on the current frame.
22730 In particular, do not allow pop-up frames.
22731 Returns the newly created buffer."
22732 (org-no-popups
22733 (apply 'switch-to-buffer-other-window args)))
22735 (defun org-combine-plists (&rest plists)
22736 "Create a single property list from all plists in PLISTS.
22737 The process starts by copying the first list, and then setting properties
22738 from the other lists. Settings in the last list are the most significant
22739 ones and overrule settings in the other lists."
22740 (let ((rtn (copy-sequence (pop plists)))
22741 p v ls)
22742 (while plists
22743 (setq ls (pop plists))
22744 (while ls
22745 (setq p (pop ls) v (pop ls))
22746 (setq rtn (plist-put rtn p v))))
22747 rtn))
22749 (defun org-replace-escapes (string table)
22750 "Replace %-escapes in STRING with values in TABLE.
22751 TABLE is an association list with keys like \"%a\" and string values.
22752 The sequences in STRING may contain normal field width and padding information,
22753 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22754 so values can contain further %-escapes if they are define later in TABLE."
22755 (let ((tbl (copy-alist table))
22756 (case-fold-search nil)
22757 (pchg 0)
22758 e re rpl)
22759 (dolist (e tbl)
22760 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22761 (when (and (cdr e) (string-match re (cdr e)))
22762 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22763 (safe "SREF"))
22764 (add-text-properties 0 3 (list 'sref sref) safe)
22765 (setcdr e (replace-match safe t t (cdr e)))))
22766 (while (string-match re string)
22767 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22768 (cdr e)))
22769 (setq string (replace-match rpl t t string))))
22770 (while (setq pchg (next-property-change pchg string))
22771 (let ((sref (get-text-property pchg 'sref string)))
22772 (when (and sref (string-match "SREF" string pchg))
22773 (setq string (replace-match sref t t string)))))
22774 string))
22776 (defun org-sublist (list start end)
22777 "Return a section of LIST, from START to END.
22778 Counting starts at 1."
22779 (let (rtn (c start))
22780 (setq list (nthcdr (1- start) list))
22781 (while (and list (<= c end))
22782 (push (pop list) rtn)
22783 (setq c (1+ c)))
22784 (nreverse rtn)))
22786 (defun org-find-base-buffer-visiting (file)
22787 "Like `find-buffer-visiting' but always return the base buffer and
22788 not an indirect buffer."
22789 (let ((buf (or (get-file-buffer file)
22790 (find-buffer-visiting file))))
22791 (if buf
22792 (or (buffer-base-buffer buf) buf)
22793 nil)))
22795 (defun org-image-file-name-regexp (&optional extensions)
22796 "Return regexp matching the file names of images.
22797 If EXTENSIONS is given, only match these."
22798 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22799 (image-file-name-regexp)
22800 (let ((image-file-name-extensions
22801 (or extensions
22802 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22803 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22804 (concat "\\."
22805 (regexp-opt (nconc (mapcar 'upcase
22806 image-file-name-extensions)
22807 image-file-name-extensions)
22809 "\\'"))))
22811 (defun org-file-image-p (file &optional extensions)
22812 "Return non-nil if FILE is an image."
22813 (save-match-data
22814 (string-match (org-image-file-name-regexp extensions) file)))
22816 (defun org-get-cursor-date (&optional with-time)
22817 "Return the date at cursor in as a time.
22818 This works in the calendar and in the agenda, anywhere else it just
22819 returns the current time.
22820 If WITH-TIME is non-nil, returns the time of the event at point (in
22821 the agenda) or the current time of the day."
22822 (let (date day defd tp hod mod)
22823 (when with-time
22824 (setq tp (get-text-property (point) 'time))
22825 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22826 (setq hod (string-to-number (match-string 1 tp))
22827 mod (string-to-number (match-string 2 tp))))
22828 (or tp (let ((now (decode-time)))
22829 (setq hod (nth 2 now)
22830 mod (nth 1 now)))))
22831 (cond
22832 ((eq major-mode 'calendar-mode)
22833 (setq date (calendar-cursor-to-date)
22834 defd (encode-time 0 (or mod 0) (or hod 0)
22835 (nth 1 date) (nth 0 date) (nth 2 date))))
22836 ((eq major-mode 'org-agenda-mode)
22837 (setq day (get-text-property (point) 'day))
22838 (if day
22839 (setq date (calendar-gregorian-from-absolute day)
22840 defd (encode-time 0 (or mod 0) (or hod 0)
22841 (nth 1 date) (nth 0 date) (nth 2 date))))))
22842 (or defd (current-time))))
22844 (defun org-mark-subtree (&optional up)
22845 "Mark the current subtree.
22846 This puts point at the start of the current subtree, and mark at
22847 the end. If a numeric prefix UP is given, move up into the
22848 hierarchy of headlines by UP levels before marking the subtree."
22849 (interactive "P")
22850 (org-with-limited-levels
22851 (cond ((org-at-heading-p) (beginning-of-line))
22852 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22853 (t (outline-previous-visible-heading 1))))
22854 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22855 (if (org-called-interactively-p 'any)
22856 (call-interactively 'org-mark-element)
22857 (org-mark-element)))
22860 ;;; Indentation
22862 (defun org--get-expected-indentation (element contentsp)
22863 "Expected indentation column for current line, according to ELEMENT.
22864 ELEMENT is an element containing point. CONTENTSP is non-nil
22865 when indentation is to be computed according to contents of
22866 ELEMENT."
22867 (let ((type (org-element-type element))
22868 (start (org-element-property :begin element))
22869 (post-affiliated (org-element-property :post-affiliated element)))
22870 (org-with-wide-buffer
22871 (cond
22872 (contentsp
22873 (case type
22874 ((diary-sexp footnote-definition) 0)
22875 ((headline inlinetask nil)
22876 (if (not org-adapt-indentation) 0
22877 (let ((level (org-current-level)))
22878 (if level (1+ level) 0))))
22879 ((item plain-list) (org-list-item-body-column post-affiliated))
22881 (goto-char start)
22882 (org-get-indentation))))
22883 ((memq type '(headline inlinetask nil))
22884 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22885 (org--get-expected-indentation element t)
22887 ((memq type '(diary-sexp footnote-definition)) 0)
22888 ;; First paragraph of a footnote definition or an item.
22889 ;; Indent like parent.
22890 ((< (line-beginning-position) start)
22891 (org--get-expected-indentation
22892 (org-element-property :parent element) t))
22893 ;; At first line: indent according to previous sibling, if any,
22894 ;; ignoring footnote definitions and inline tasks, or parent's
22895 ;; contents.
22896 ((= (line-beginning-position) start)
22897 (catch 'exit
22898 (while t
22899 (if (= (point-min) start) (throw 'exit 0)
22900 (goto-char (1- start))
22901 (let* ((previous (org-element-at-point))
22902 (parent previous))
22903 (while (and parent (<= (org-element-property :end parent) start))
22904 (setq previous parent
22905 parent (org-element-property :parent parent)))
22906 (cond
22907 ((not previous) (throw 'exit 0))
22908 ((> (org-element-property :end previous) start)
22909 (throw 'exit (org--get-expected-indentation previous t)))
22910 ((memq (org-element-type previous)
22911 '(footnote-definition inlinetask))
22912 (setq start (org-element-property :begin previous)))
22913 (t (goto-char (org-element-property :begin previous))
22914 (throw 'exit
22915 (if (bolp) (org-get-indentation)
22916 ;; At first paragraph in an item or
22917 ;; a footnote definition.
22918 (org--get-expected-indentation
22919 (org-element-property :parent previous) t))))))))))
22920 ;; Otherwise, move to the first non-blank line above.
22922 (beginning-of-line)
22923 (let ((pos (point)))
22924 (skip-chars-backward " \r\t\n")
22925 (cond
22926 ;; Two blank lines end a footnote definition or a plain
22927 ;; list. When we indent an empty line after them, the
22928 ;; containing list or footnote definition is over, so it
22929 ;; qualifies as a previous sibling. Therefore, we indent
22930 ;; like its first line.
22931 ((and (memq type '(footnote-definition plain-list))
22932 (> (count-lines (point) pos) 2))
22933 (goto-char start)
22934 (org-get-indentation))
22935 ;; Line above is the first one of a paragraph at the
22936 ;; beginning of an item or a footnote definition. Indent
22937 ;; like parent.
22938 ((< (line-beginning-position) start)
22939 (org--get-expected-indentation
22940 (org-element-property :parent element) t))
22941 ;; Line above is the beginning of an element, i.e., point
22942 ;; was originally on the blank lines between element's start
22943 ;; and contents.
22944 ((= (line-beginning-position) post-affiliated)
22945 (org--get-expected-indentation element t))
22946 ;; POS is after contents in a greater element. Indent like
22947 ;; the beginning of the element.
22949 ;; As a special case, if point is at the end of a footnote
22950 ;; definition or an item, indent like the very last element
22951 ;; within.
22952 ((and (not (eq type 'paragraph))
22953 (let ((cend (org-element-property :contents-end element)))
22954 (and cend (<= cend pos))))
22955 (if (memq type '(footnote-definition item plain-list))
22956 (let ((last (org-element-at-point)))
22957 (org--get-expected-indentation
22958 last
22959 (memq (org-element-type last)
22960 '(footnote-definition item plain-list))))
22961 (goto-char start)
22962 (org-get-indentation)))
22963 ;; In any other case, indent like the current line.
22964 (t (org-get-indentation)))))))))
22966 (defun org--align-node-property ()
22967 "Align node property at point.
22968 Alignment is done according to `org-property-format', which see."
22969 (when (save-excursion
22970 (beginning-of-line)
22971 (looking-at org-property-re))
22972 (replace-match
22973 (concat (match-string 4)
22974 (org-trim
22975 (format org-property-format (match-string 1) (match-string 3))))
22976 t t)))
22978 (defun org-indent-line ()
22979 "Indent line depending on context.
22981 Indentation is done according to the following rules:
22983 - Footnote definitions, diary sexps, headlines and inline tasks
22984 have to start at column 0.
22986 - On the very first line of an element, consider, in order, the
22987 next rules until one matches:
22989 1. If there's a sibling element before, ignoring footnote
22990 definitions and inline tasks, indent like its first line.
22992 2. If element has a parent, indent like its contents. More
22993 precisely, if parent is an item, indent after the
22994 description part, if any, or the bullet (see
22995 `org-list-description-max-indent'). Else, indent like
22996 parent's first line.
22998 3. Otherwise, indent relatively to current level, if
22999 `org-adapt-indentation' is non-nil, or to left margin.
23001 - On a blank line at the end of an element, indent according to
23002 the type of the element. More precisely
23004 1. If element is a plain list, an item, or a footnote
23005 definition, indent like the very last element within.
23007 2. If element is a paragraph, indent like its last non blank
23008 line.
23010 3. Otherwise, indent like its very first line.
23012 - In the code part of a source block, use language major mode
23013 to indent current line if `org-src-tab-acts-natively' is
23014 non-nil. If it is nil, do nothing.
23016 - Otherwise, indent like the first non-blank line above.
23018 The function doesn't indent an item as it could break the whole
23019 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
23020 \\[org-shiftmetaright].
23022 Also align node properties according to `org-property-format'."
23023 (interactive)
23024 (cond
23025 (orgstruct-is-++
23026 (let ((indent-line-function
23027 (cadadr (assq 'indent-line-function org-fb-vars))))
23028 (indent-according-to-mode)))
23029 ((org-at-heading-p) 'noindent)
23031 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
23032 (type (org-element-type element)))
23033 (cond ((and (memq type '(plain-list item))
23034 (= (line-beginning-position)
23035 (org-element-property :post-affiliated element)))
23036 'noindent)
23037 ((and (eq type 'src-block)
23038 org-src-tab-acts-natively
23039 (> (line-beginning-position)
23040 (org-element-property :post-affiliated element))
23041 (< (line-beginning-position)
23042 (org-with-wide-buffer
23043 (goto-char (org-element-property :end element))
23044 (skip-chars-backward " \r\t\n")
23045 (line-beginning-position))))
23046 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
23048 (let ((column (org--get-expected-indentation element nil)))
23049 ;; Preserve current column.
23050 (if (<= (current-column) (current-indentation))
23051 (org-indent-line-to column)
23052 (save-excursion (org-indent-line-to column))))
23053 ;; Align node property. Also preserve current column.
23054 (when (eq type 'node-property)
23055 (let ((column (current-column)))
23056 (org--align-node-property)
23057 (org-move-to-column column)))))))))
23059 (defun org-indent-region (start end)
23060 "Indent each non-blank line in the region.
23061 Called from a program, START and END specify the region to
23062 indent. The function will not indent contents of example blocks,
23063 verse blocks and export blocks as leading white spaces are
23064 assumed to be significant there."
23065 (interactive "r")
23066 (save-excursion
23067 (goto-char start)
23068 (skip-chars-forward " \r\t\n")
23069 (unless (eobp) (beginning-of-line))
23070 (let ((indent-to
23071 (lambda (ind pos)
23072 ;; Set IND as indentation for all lines between point and
23073 ;; POS or END, whichever comes first. Blank lines are
23074 ;; ignored. Leave point after POS once done.
23075 (let ((limit (copy-marker (min end pos))))
23076 (while (< (point) limit)
23077 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23078 (forward-line))
23079 (set-marker limit nil))))
23080 (end (copy-marker end)))
23081 (while (< (point) end)
23082 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23083 (let* ((element (org-element-at-point))
23084 (type (org-element-type element))
23085 (element-end (copy-marker (org-element-property :end element)))
23086 (ind (org--get-expected-indentation element nil)))
23087 (cond
23088 ((or (memq type '(paragraph table table-row))
23089 (not (or (org-element-property :contents-begin element)
23090 (memq type
23091 '(example-block export-block src-block)))))
23092 ;; Elements here are indented as a single block. Also
23093 ;; align node properties.
23094 (when (eq type 'node-property)
23095 (org--align-node-property)
23096 (beginning-of-line))
23097 (funcall indent-to ind element-end))
23099 ;; Elements in this category consist of three parts:
23100 ;; before the contents, the contents, and after the
23101 ;; contents. The contents are treated specially,
23102 ;; according to the element type, or not indented at
23103 ;; all. Other parts are indented as a single block.
23104 (let* ((post (copy-marker
23105 (org-element-property :post-affiliated element)))
23106 (cbeg
23107 (copy-marker
23108 (cond
23109 ((not (org-element-property :contents-begin element))
23110 ;; Fake contents for source blocks.
23111 (org-with-wide-buffer
23112 (goto-char post)
23113 (forward-line)
23114 (point)))
23115 ((memq type '(footnote-definition item plain-list))
23116 ;; Contents in these elements could start on
23117 ;; the same line as the beginning of the
23118 ;; element. Make sure we start indenting
23119 ;; from the second line.
23120 (org-with-wide-buffer
23121 (goto-char post)
23122 (end-of-line)
23123 (skip-chars-forward " \r\t\n")
23124 (if (eobp) (point) (line-beginning-position))))
23125 (t (org-element-property :contents-begin element)))))
23126 (cend (copy-marker
23127 (or (org-element-property :contents-end element)
23128 ;; Fake contents for source blocks.
23129 (org-with-wide-buffer
23130 (goto-char element-end)
23131 (skip-chars-backward " \r\t\n")
23132 (line-beginning-position)))
23133 t)))
23134 ;; Do not change items indentation individually as it
23135 ;; might break the list as a whole. On the other
23136 ;; hand, when at a plain list, indent it as a whole.
23137 (cond ((eq type 'plain-list)
23138 (let ((offset (- ind (org-get-indentation))))
23139 (unless (zerop offset)
23140 (indent-rigidly (org-element-property :begin element)
23141 (org-element-property :end element)
23142 offset))
23143 (goto-char cbeg)))
23144 ((eq type 'item) (goto-char cbeg))
23145 (t (funcall indent-to ind cbeg)))
23146 (when (< (point) end)
23147 (case type
23148 ((example-block export-block verse-block))
23149 (src-block
23150 ;; In a source block, indent source code
23151 ;; according to language major mode, but only if
23152 ;; `org-src-tab-acts-natively' is non-nil.
23153 (when (and (< (point) end) org-src-tab-acts-natively)
23154 (ignore-errors
23155 (org-babel-do-in-edit-buffer
23156 (indent-region (point-min) (point-max))))))
23157 (t (org-indent-region (point) (min cend end))))
23158 (goto-char (min cend end))
23159 (when (< (point) end) (funcall indent-to ind element-end)))
23160 (set-marker post nil)
23161 (set-marker cbeg nil)
23162 (set-marker cend nil))))
23163 (set-marker element-end nil))))
23164 (set-marker end nil))))
23166 (defun org-indent-drawer ()
23167 "Indent the drawer at point."
23168 (interactive)
23169 (unless (save-excursion
23170 (beginning-of-line)
23171 (org-looking-at-p org-drawer-regexp))
23172 (user-error "Not at a drawer"))
23173 (let ((element (org-element-at-point)))
23174 (unless (memq (org-element-type element) '(drawer property-drawer))
23175 (user-error "Not at a drawer"))
23176 (org-with-wide-buffer
23177 (org-indent-region (org-element-property :begin element)
23178 (org-element-property :end element))))
23179 (message "Drawer at point indented"))
23181 (defun org-indent-block ()
23182 "Indent the block at point."
23183 (interactive)
23184 (unless (save-excursion
23185 (beginning-of-line)
23186 (let ((case-fold-search t))
23187 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23188 (user-error "Not at a block"))
23189 (let ((element (org-element-at-point)))
23190 (unless (memq (org-element-type element)
23191 '(comment-block center-block dynamic-block example-block
23192 export-block quote-block special-block
23193 src-block verse-block))
23194 (user-error "Not at a block"))
23195 (org-with-wide-buffer
23196 (org-indent-region (org-element-property :begin element)
23197 (org-element-property :end element))))
23198 (message "Block at point indented"))
23201 ;;; Filling
23203 ;; We use our own fill-paragraph and auto-fill functions.
23205 ;; `org-fill-paragraph' relies on adaptive filling and context
23206 ;; checking. Appropriate `fill-prefix' is computed with
23207 ;; `org-adaptive-fill-function'.
23209 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23210 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23211 ;; `org-adaptive-fill-function' value. Internally,
23212 ;; `org-comment-line-break-function' breaks the line.
23214 ;; `org-setup-filling' installs filling and auto-filling related
23215 ;; variables during `org-mode' initialization.
23217 (defvar org-element-paragraph-separate) ; org-element.el
23218 (defun org-setup-filling ()
23219 (require 'org-element)
23220 ;; Prevent auto-fill from inserting unwanted new items.
23221 (when (boundp 'fill-nobreak-predicate)
23222 (org-set-local
23223 'fill-nobreak-predicate
23224 (org-uniquify
23225 (append fill-nobreak-predicate
23226 '(org-fill-line-break-nobreak-p
23227 org-fill-paragraph-with-timestamp-nobreak-p)))))
23228 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23229 (org-set-local 'paragraph-start paragraph-ending)
23230 (org-set-local 'paragraph-separate paragraph-ending))
23231 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23232 (org-set-local 'auto-fill-inhibit-regexp nil)
23233 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23234 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23235 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23237 (defun org-fill-line-break-nobreak-p ()
23238 "Non-nil when a new line at point would create an Org line break."
23239 (save-excursion
23240 (skip-chars-backward "[ \t]")
23241 (skip-chars-backward "\\\\")
23242 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23244 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23245 "Non-nil when a new line at point would split a timestamp."
23246 (and (org-at-timestamp-p t)
23247 (not (looking-at org-ts-regexp-both))))
23249 (declare-function message-in-body-p "message" ())
23250 (defvar orgtbl-line-start-regexp) ; From org-table.el
23251 (defun org-adaptive-fill-function ()
23252 "Compute a fill prefix for the current line.
23253 Return fill prefix, as a string, or nil if current line isn't
23254 meant to be filled. For convenience, if `adaptive-fill-regexp'
23255 matches in paragraphs or comments, use it."
23256 (catch 'exit
23257 (when (derived-mode-p 'message-mode)
23258 (save-excursion
23259 (beginning-of-line)
23260 (cond ((not (message-in-body-p)) (throw 'exit nil))
23261 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23262 ((looking-at message-cite-prefix-regexp)
23263 (throw 'exit (match-string-no-properties 0)))
23264 ((looking-at org-outline-regexp)
23265 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23266 (org-with-wide-buffer
23267 (unless (org-at-heading-p)
23268 (let* ((p (line-beginning-position))
23269 (element (save-excursion
23270 (beginning-of-line)
23271 (org-element-at-point)))
23272 (type (org-element-type element))
23273 (post-affiliated (org-element-property :post-affiliated element)))
23274 (unless (< p post-affiliated)
23275 (case type
23276 (comment
23277 (save-excursion
23278 (beginning-of-line)
23279 (looking-at "[ \t]*")
23280 (concat (match-string 0) "# ")))
23281 (footnote-definition "")
23282 ((item plain-list)
23283 (make-string (org-list-item-body-column post-affiliated) ?\s))
23284 (paragraph
23285 ;; Fill prefix is usually the same as the current line,
23286 ;; unless the paragraph is at the beginning of an item.
23287 (let ((parent (org-element-property :parent element)))
23288 (save-excursion
23289 (beginning-of-line)
23290 (cond ((eq (org-element-type parent) 'item)
23291 (make-string (org-list-item-body-column
23292 (org-element-property :begin parent))
23293 ?\s))
23294 ((and adaptive-fill-regexp
23295 ;; Locally disable
23296 ;; `adaptive-fill-function' to let
23297 ;; `fill-context-prefix' handle
23298 ;; `adaptive-fill-regexp' variable.
23299 (let (adaptive-fill-function)
23300 (fill-context-prefix
23301 post-affiliated
23302 (org-element-property :end element)))))
23303 ((looking-at "[ \t]+") (match-string 0))
23304 (t "")))))
23305 (comment-block
23306 ;; Only fill contents if P is within block boundaries.
23307 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23308 (forward-line)
23309 (point)))
23310 (cend (save-excursion
23311 (goto-char (org-element-property :end element))
23312 (skip-chars-backward " \r\t\n")
23313 (line-beginning-position))))
23314 (when (and (>= p cbeg) (< p cend))
23315 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23316 (match-string 0)
23317 "")))))))))))
23319 (declare-function message-goto-body "message" ())
23320 (defvar message-cite-prefix-regexp) ; From message.el
23321 (defun org-fill-paragraph (&optional justify)
23322 "Fill element at point, when applicable.
23324 This function only applies to comment blocks, comments, example
23325 blocks and paragraphs. Also, as a special case, re-align table
23326 when point is at one.
23328 If JUSTIFY is non-nil (interactively, with prefix argument),
23329 justify as well. If `sentence-end-double-space' is non-nil, then
23330 period followed by one space does not end a sentence, so don't
23331 break a line there. The variable `fill-column' controls the
23332 width for filling.
23334 For convenience, when point is at a plain list, an item or
23335 a footnote definition, try to fill the first paragraph within."
23336 (interactive)
23337 (if (and (derived-mode-p 'message-mode)
23338 (or (not (message-in-body-p))
23339 (save-excursion (move-beginning-of-line 1)
23340 (looking-at message-cite-prefix-regexp))))
23341 ;; First ensure filling is correct in message-mode.
23342 (let ((fill-paragraph-function
23343 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23344 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23345 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23346 (paragraph-separate
23347 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23348 (fill-paragraph nil))
23349 (with-syntax-table org-mode-transpose-word-syntax-table
23350 ;; Move to end of line in order to get the first paragraph
23351 ;; within a plain list or a footnote definition.
23352 (let ((element (save-excursion
23353 (end-of-line)
23354 (or (ignore-errors (org-element-at-point))
23355 (user-error "An element cannot be parsed line %d"
23356 (line-number-at-pos (point)))))))
23357 ;; First check if point is in a blank line at the beginning of
23358 ;; the buffer. In that case, ignore filling.
23359 (case (org-element-type element)
23360 ;; Use major mode filling function is src blocks.
23361 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23362 ;; Align Org tables, leave table.el tables as-is.
23363 (table-row (org-table-align) t)
23364 (table
23365 (when (eq (org-element-property :type element) 'org)
23366 (save-excursion
23367 (goto-char (org-element-property :post-affiliated element))
23368 (org-table-align)))
23370 (paragraph
23371 ;; Paragraphs may contain `line-break' type objects.
23372 (let ((beg (max (point-min)
23373 (org-element-property :contents-begin element)))
23374 (end (min (point-max)
23375 (org-element-property :contents-end element))))
23376 ;; Do nothing if point is at an affiliated keyword.
23377 (if (< (line-end-position) beg) t
23378 (when (derived-mode-p 'message-mode)
23379 ;; In `message-mode', do not fill following citation
23380 ;; in current paragraph nor text before message body.
23381 (let ((body-start (save-excursion (message-goto-body))))
23382 (when body-start (setq beg (max body-start beg))))
23383 (when (save-excursion
23384 (re-search-forward
23385 (concat "^" message-cite-prefix-regexp) end t))
23386 (setq end (match-beginning 0))))
23387 ;; Fill paragraph, taking line breaks into account.
23388 (save-excursion
23389 (goto-char beg)
23390 (let ((cuts (list beg)))
23391 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23392 (when (eq 'line-break
23393 (org-element-type
23394 (save-excursion (backward-char)
23395 (org-element-context))))
23396 (push (point) cuts)))
23397 (dolist (c (delq end cuts))
23398 (fill-region-as-paragraph c end justify)
23399 (setq end c))))
23400 t)))
23401 ;; Contents of `comment-block' type elements should be
23402 ;; filled as plain text, but only if point is within block
23403 ;; markers.
23404 (comment-block
23405 (let* ((case-fold-search t)
23406 (beg (save-excursion
23407 (goto-char (org-element-property :begin element))
23408 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23409 (forward-line)
23410 (point)))
23411 (end (save-excursion
23412 (goto-char (org-element-property :end element))
23413 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23414 (line-beginning-position))))
23415 (if (or (< (point) beg) (> (point) end)) t
23416 (fill-region-as-paragraph
23417 (save-excursion (end-of-line)
23418 (re-search-backward "^[ \t]*$" beg 'move)
23419 (line-beginning-position))
23420 (save-excursion (beginning-of-line)
23421 (re-search-forward "^[ \t]*$" end 'move)
23422 (line-beginning-position))
23423 justify))))
23424 ;; Fill comments.
23425 (comment
23426 (let ((begin (org-element-property :post-affiliated element))
23427 (end (org-element-property :end element)))
23428 (when (and (>= (point) begin) (<= (point) end))
23429 (let ((begin (save-excursion
23430 (end-of-line)
23431 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23432 (progn (forward-line) (point))
23433 begin)))
23434 (end (save-excursion
23435 (end-of-line)
23436 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23437 (1- (line-beginning-position))
23438 (skip-chars-backward " \r\t\n")
23439 (line-end-position)))))
23440 ;; Do not fill comments when at a blank line.
23441 (when (> end begin)
23442 (let ((fill-prefix
23443 (save-excursion
23444 (beginning-of-line)
23445 (looking-at "[ \t]*#")
23446 (let ((comment-prefix (match-string 0)))
23447 (goto-char (match-end 0))
23448 (if (looking-at adaptive-fill-regexp)
23449 (concat comment-prefix (match-string 0))
23450 (concat comment-prefix " "))))))
23451 (save-excursion
23452 (fill-region-as-paragraph begin end justify))))))
23454 ;; Ignore every other element.
23455 (otherwise t))))))
23457 (defun org-auto-fill-function ()
23458 "Auto-fill function."
23459 ;; Check if auto-filling is meaningful.
23460 (let ((fc (current-fill-column)))
23461 (when (and fc (> (current-column) fc))
23462 (let* ((fill-prefix (org-adaptive-fill-function))
23463 ;; Enforce empty fill prefix, if required. Otherwise, it
23464 ;; will be computed again.
23465 (adaptive-fill-mode (not (equal fill-prefix ""))))
23466 (when fill-prefix (do-auto-fill))))))
23468 (defun org-comment-line-break-function (&optional soft)
23469 "Break line at point and indent, continuing comment if within one.
23470 The inserted newline is marked hard if variable
23471 `use-hard-newlines' is true, unless optional argument SOFT is
23472 non-nil."
23473 (if soft (insert-and-inherit ?\n) (newline 1))
23474 (save-excursion (forward-char -1) (delete-horizontal-space))
23475 (delete-horizontal-space)
23476 (indent-to-left-margin)
23477 (insert-before-markers-and-inherit fill-prefix))
23480 ;;; Fixed Width Areas
23482 (defun org-toggle-fixed-width ()
23483 "Toggle fixed-width markup.
23485 Add or remove fixed-width markup on current line, whenever it
23486 makes sense. Return an error otherwise.
23488 If a region is active and if it contains only fixed-width areas
23489 or blank lines, remove all fixed-width markup in it. If the
23490 region contains anything else, convert all non-fixed-width lines
23491 to fixed-width ones.
23493 Blank lines at the end of the region are ignored unless the
23494 region only contains such lines."
23495 (interactive)
23496 (if (not (org-region-active-p))
23497 ;; No region:
23499 ;; Remove fixed width marker only in a fixed-with element.
23501 ;; Add fixed width maker in paragraphs, in blank lines after
23502 ;; elements or at the beginning of a headline or an inlinetask,
23503 ;; and before any one-line elements (e.g., a clock).
23504 (progn
23505 (beginning-of-line)
23506 (let* ((element (org-element-at-point))
23507 (type (org-element-type element)))
23508 (cond
23509 ((and (eq type 'fixed-width)
23510 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23511 (replace-match
23512 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23513 ((and (memq type '(babel-call clock comment diary-sexp headline
23514 horizontal-rule keyword paragraph
23515 planning))
23516 (<= (org-element-property :post-affiliated element) (point)))
23517 (skip-chars-forward " \t")
23518 (insert ": "))
23519 ((and (org-looking-at-p "[ \t]*$")
23520 (or (eq type 'inlinetask)
23521 (save-excursion
23522 (skip-chars-forward " \r\t\n")
23523 (<= (org-element-property :end element) (point)))))
23524 (delete-region (point) (line-end-position))
23525 (org-indent-line)
23526 (insert ": "))
23527 (t (user-error "Cannot insert a fixed-width line here")))))
23528 ;; Region active.
23529 (let* ((begin (save-excursion
23530 (goto-char (region-beginning))
23531 (line-beginning-position)))
23532 (end (copy-marker
23533 (save-excursion
23534 (goto-char (region-end))
23535 (unless (eolp) (beginning-of-line))
23536 (if (save-excursion (re-search-backward "\\S-" begin t))
23537 (progn (skip-chars-backward " \r\t\n") (point))
23538 (point)))))
23539 (all-fixed-width-p
23540 (catch 'not-all-p
23541 (save-excursion
23542 (goto-char begin)
23543 (skip-chars-forward " \r\t\n")
23544 (when (eobp) (throw 'not-all-p nil))
23545 (while (< (point) end)
23546 (let ((element (org-element-at-point)))
23547 (if (eq (org-element-type element) 'fixed-width)
23548 (goto-char (org-element-property :end element))
23549 (throw 'not-all-p nil))))
23550 t))))
23551 (if all-fixed-width-p
23552 (save-excursion
23553 (goto-char begin)
23554 (while (< (point) end)
23555 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23556 (replace-match
23557 "" nil nil nil
23558 (if (= (line-end-position) (match-end 0)) 0 1)))
23559 (forward-line)))
23560 (let ((min-ind (point-max)))
23561 ;; Find minimum indentation across all lines.
23562 (save-excursion
23563 (goto-char begin)
23564 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23565 (setq min-ind 0)
23566 (catch 'zerop
23567 (while (< (point) end)
23568 (unless (org-looking-at-p "[ \t]*$")
23569 (let ((ind (org-get-indentation)))
23570 (setq min-ind (min min-ind ind))
23571 (when (zerop ind) (throw 'zerop t))))
23572 (forward-line)))))
23573 ;; Loop over all lines and add fixed-width markup everywhere
23574 ;; but in fixed-width lines.
23575 (save-excursion
23576 (goto-char begin)
23577 (while (< (point) end)
23578 (cond
23579 ((org-at-heading-p)
23580 (insert ": ")
23581 (forward-line)
23582 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23583 (insert ":")
23584 (forward-line)))
23585 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23586 (let* ((element (org-element-at-point))
23587 (element-end (org-element-property :end element)))
23588 (if (eq (org-element-type element) 'fixed-width)
23589 (progn (goto-char element-end)
23590 (skip-chars-backward " \r\t\n")
23591 (forward-line))
23592 (let ((limit (min end element-end)))
23593 (while (< (point) limit)
23594 (org-move-to-column min-ind t)
23595 (insert ": ")
23596 (forward-line))))))
23598 (org-move-to-column min-ind t)
23599 (insert ": ")
23600 (forward-line)))))))
23601 (set-marker end nil))))
23604 ;;; Comments
23606 ;; Org comments syntax is quite complex. It requires the entire line
23607 ;; to be just a comment. Also, even with the right syntax at the
23608 ;; beginning of line, some some elements (i.e. verse-block or
23609 ;; example-block) don't accept comments. Usual Emacs comment commands
23610 ;; cannot cope with those requirements. Therefore, Org replaces them.
23612 ;; Org still relies on `comment-dwim', but cannot trust
23613 ;; `comment-only-p'. So, `comment-region-function' and
23614 ;; `uncomment-region-function' both point
23615 ;; to`org-comment-or-uncomment-region'. Eventually,
23616 ;; `org-insert-comment' takes care of insertion of comments at the
23617 ;; beginning of line.
23619 ;; `org-setup-comments-handling' install comments related variables
23620 ;; during `org-mode' initialization.
23622 (defun org-setup-comments-handling ()
23623 (interactive)
23624 (org-set-local 'comment-use-syntax nil)
23625 (org-set-local 'comment-start "# ")
23626 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23627 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23628 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23629 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23631 (defun org-insert-comment ()
23632 "Insert an empty comment above current line.
23633 If the line is empty, insert comment at its beginning. When
23634 point is within a source block, comment according to the related
23635 major mode."
23636 (if (let ((element (org-element-at-point)))
23637 (and (eq (org-element-type element) 'src-block)
23638 (< (save-excursion
23639 (goto-char (org-element-property :post-affiliated element))
23640 (line-end-position))
23641 (point))
23642 (> (save-excursion
23643 (goto-char (org-element-property :end element))
23644 (skip-chars-backward " \r\t\n")
23645 (line-beginning-position))
23646 (point))))
23647 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23648 (beginning-of-line)
23649 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23650 (open-line 1))
23651 (org-indent-line)
23652 (insert "# ")))
23654 (defvar comment-empty-lines) ; From newcomment.el.
23655 (defun org-comment-or-uncomment-region (beg end &rest _)
23656 "Comment or uncomment each non-blank line in the region.
23657 Uncomment each non-blank line between BEG and END if it only
23658 contains commented lines. Otherwise, comment them. If region is
23659 strictly within a source block, use appropriate comment syntax."
23660 (if (let ((element (org-element-at-point)))
23661 (and (eq (org-element-type element) 'src-block)
23662 (< (save-excursion
23663 (goto-char (org-element-property :post-affiliated element))
23664 (line-end-position))
23665 beg)
23666 (>= (save-excursion
23667 (goto-char (org-element-property :end element))
23668 (skip-chars-backward " \r\t\n")
23669 (line-beginning-position))
23670 end)))
23671 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23672 (save-restriction
23673 ;; Restrict region
23674 (narrow-to-region (save-excursion (goto-char beg)
23675 (skip-chars-forward " \r\t\n" end)
23676 (line-beginning-position))
23677 (save-excursion (goto-char end)
23678 (skip-chars-backward " \r\t\n" beg)
23679 (line-end-position)))
23680 (let ((uncommentp
23681 ;; UNCOMMENTP is non-nil when every non blank line between
23682 ;; BEG and END is a comment.
23683 (save-excursion
23684 (goto-char (point-min))
23685 (while (and (not (eobp))
23686 (let ((element (org-element-at-point)))
23687 (and (eq (org-element-type element) 'comment)
23688 (goto-char (min (point-max)
23689 (org-element-property
23690 :end element)))))))
23691 (eobp))))
23692 (if uncommentp
23693 ;; Only blank lines and comments in region: uncomment it.
23694 (save-excursion
23695 (goto-char (point-min))
23696 (while (not (eobp))
23697 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23698 (replace-match "" nil nil nil 1))
23699 (forward-line)))
23700 ;; Comment each line in region.
23701 (let ((min-indent (point-max)))
23702 ;; First find the minimum indentation across all lines.
23703 (save-excursion
23704 (goto-char (point-min))
23705 (while (and (not (eobp)) (not (zerop min-indent)))
23706 (unless (looking-at "[ \t]*$")
23707 (setq min-indent (min min-indent (current-indentation))))
23708 (forward-line)))
23709 ;; Then loop over all lines.
23710 (save-excursion
23711 (goto-char (point-min))
23712 (while (not (eobp))
23713 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23714 ;; Don't get fooled by invisible text (e.g. link path)
23715 ;; when moving to column MIN-INDENT.
23716 (let ((buffer-invisibility-spec nil))
23717 (org-move-to-column min-indent t))
23718 (insert comment-start))
23719 (forward-line)))))))))
23721 (defun org-comment-dwim (arg)
23722 "Call `comment-dwim' within a source edit buffer if needed."
23723 (interactive "*P")
23724 (if (org-in-src-block-p)
23725 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23726 (call-interactively 'comment-dwim)))
23729 ;;; Timestamps API
23731 ;; This section contains tools to operate on timestamp objects, as
23732 ;; returned by, e.g. `org-element-context'.
23734 (defun org-timestamp--to-internal-time (timestamp &optional end)
23735 "Encode TIMESTAMP object into Emacs internal time.
23736 Use end of date range or time range when END is non-nil."
23737 (apply #'encode-time
23738 (cons 0
23739 (mapcar
23740 (lambda (prop) (or (org-element-property prop timestamp) 0))
23741 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23742 '(:minute-start :hour-start :day-start :month-start
23743 :year-start))))))
23745 (defun org-timestamp-has-time-p (timestamp)
23746 "Non-nil when TIMESTAMP has a time specified."
23747 (org-element-property :hour-start timestamp))
23749 (defun org-timestamp-format (timestamp format &optional end utc)
23750 "Format a TIMESTAMP object into a string.
23752 FORMAT is a format specifier to be passed to
23753 `format-time-string'.
23755 When optional argument END is non-nil, use end of date-range or
23756 time-range, if possible.
23758 When optional argument UTC is non-nil, time will be expressed as
23759 Universal Time."
23760 (format-time-string
23761 format (org-timestamp--to-internal-time timestamp end) utc))
23763 (defun org-timestamp-split-range (timestamp &optional end)
23764 "Extract a TIMESTAMP object from a date or time range.
23766 END, when non-nil, means extract the end of the range.
23767 Otherwise, extract its start.
23769 Return a new timestamp object."
23770 (let ((type (org-element-property :type timestamp)))
23771 (if (memq type '(active inactive diary)) timestamp
23772 (let ((split-ts (org-element-copy timestamp)))
23773 ;; Set new type.
23774 (org-element-put-property
23775 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23776 ;; Copy start properties over end properties if END is
23777 ;; non-nil. Otherwise, copy end properties over `start' ones.
23778 (let ((p-alist '((:minute-start . :minute-end)
23779 (:hour-start . :hour-end)
23780 (:day-start . :day-end)
23781 (:month-start . :month-end)
23782 (:year-start . :year-end))))
23783 (dolist (p-cell p-alist)
23784 (org-element-put-property
23785 split-ts
23786 (funcall (if end #'car #'cdr) p-cell)
23787 (org-element-property
23788 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23789 ;; Eventually refresh `:raw-value'.
23790 (org-element-put-property split-ts :raw-value nil)
23791 (org-element-put-property
23792 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23794 (defun org-timestamp-translate (timestamp &optional boundary)
23795 "Translate TIMESTAMP object to custom format.
23797 Format string is defined in `org-time-stamp-custom-formats',
23798 which see.
23800 When optional argument BOUNDARY is non-nil, it is either the
23801 symbol `start' or `end'. In this case, only translate the
23802 starting or ending part of TIMESTAMP if it is a date or time
23803 range. Otherwise, translate both parts.
23805 Return timestamp as-is if `org-display-custom-times' is nil or if
23806 it has a `diary' type."
23807 (let ((type (org-element-property :type timestamp)))
23808 (if (or (not org-display-custom-times) (eq type 'diary))
23809 (org-element-interpret-data timestamp)
23810 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23811 org-time-stamp-custom-formats)))
23812 (if (and (not boundary) (memq type '(active-range inactive-range)))
23813 (concat (org-timestamp-format timestamp fmt)
23814 "--"
23815 (org-timestamp-format timestamp fmt t))
23816 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23820 ;;; Other stuff.
23822 (defvar reftex-docstruct-symbol)
23823 (defvar reftex-cite-format)
23824 (defvar org--rds)
23826 (defun org-reftex-citation ()
23827 "Use reftex-citation to insert a citation into the buffer.
23828 This looks for a line like
23830 #+BIBLIOGRAPHY: foo plain option:-d
23832 and derives from it that foo.bib is the bibliography file relevant
23833 for this document. It then installs the necessary environment for RefTeX
23834 to work in this buffer and calls `reftex-citation' to insert a citation
23835 into the buffer.
23837 Export of such citations to both LaTeX and HTML is handled by the contributed
23838 package ox-bibtex by Taru Karttunen."
23839 (interactive)
23840 (let ((reftex-docstruct-symbol 'org--rds)
23841 (reftex-cite-format "\\cite{%l}")
23842 org--rds bib)
23843 (save-excursion
23844 (save-restriction
23845 (widen)
23846 (let ((case-fold-search t)
23847 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23848 (if (not (save-excursion
23849 (or (re-search-forward re nil t)
23850 (re-search-backward re nil t))))
23851 (user-error "No bibliography defined in file")
23852 (setq bib (concat (match-string 1) ".bib")
23853 org--rds (list (list 'bib bib)))))))
23854 (call-interactively 'reftex-citation)))
23856 ;;;; Functions extending outline functionality
23858 (defun org-beginning-of-line (&optional arg)
23859 "Go to the beginning of the current line. If that is invisible, continue
23860 to a visible line beginning. This makes the function of C-a more intuitive.
23861 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23862 first attempt, and only move to after the tags when the cursor is already
23863 beyond the end of the headline."
23864 (interactive "P")
23865 (let ((pos (point))
23866 (special (if (consp org-special-ctrl-a/e)
23867 (car org-special-ctrl-a/e)
23868 org-special-ctrl-a/e))
23869 deactivate-mark refpos)
23870 (if (org-bound-and-true-p visual-line-mode)
23871 (beginning-of-visual-line 1)
23872 (beginning-of-line 1))
23873 (if (and arg (fboundp 'move-beginning-of-line))
23874 (call-interactively 'move-beginning-of-line)
23875 (if (bobp)
23877 (backward-char 1)
23878 (if (org-truely-invisible-p)
23879 (while (and (not (bobp)) (org-truely-invisible-p))
23880 (backward-char 1)
23881 (beginning-of-line 1))
23882 (forward-char 1))))
23883 (when special
23884 (cond
23885 ((and (looking-at org-complex-heading-regexp)
23886 (eq (char-after (match-end 1)) ?\s))
23887 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23888 (point-at-eol)))
23889 (goto-char
23890 (if (eq special t)
23891 (cond ((> pos refpos) refpos)
23892 ((= pos (point)) refpos)
23893 (t (point)))
23894 (cond ((> pos (point)) (point))
23895 ((not (eq last-command this-command)) (point))
23896 (t refpos)))))
23897 ((org-at-item-p)
23898 ;; Being at an item and not looking at an the item means point
23899 ;; was previously moved to beginning of a visual line, which
23900 ;; doesn't contain the item. Therefore, do nothing special,
23901 ;; just stay here.
23902 (when (looking-at org-list-full-item-re)
23903 ;; Set special position at first white space character after
23904 ;; bullet, and check-box, if any.
23905 (let ((after-bullet
23906 (let ((box (match-end 3)))
23907 (if (not box) (match-end 1)
23908 (let ((after (char-after box)))
23909 (if (and after (= after ? )) (1+ box) box))))))
23910 ;; Special case: Move point to special position when
23911 ;; currently after it or at beginning of line.
23912 (if (eq special t)
23913 (when (or (> pos after-bullet) (= (point) pos))
23914 (goto-char after-bullet))
23915 ;; Reversed case: Move point to special position when
23916 ;; point was already at beginning of line and command is
23917 ;; repeated.
23918 (when (and (= (point) pos) (eq last-command this-command))
23919 (goto-char after-bullet))))))))
23920 (org-no-warnings
23921 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23922 (setq disable-point-adjustment
23923 (or (not (invisible-p (point)))
23924 (not (invisible-p (max (point-min) (1- (point))))))))
23926 (defun org-end-of-line (&optional arg)
23927 "Go to the end of the line.
23928 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23929 tags on the first attempt, and only move to after the tags when
23930 the cursor is already beyond the end of the headline."
23931 (interactive "P")
23932 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23933 org-special-ctrl-a/e))
23934 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23935 'end-of-visual-line)
23936 ((fboundp 'move-end-of-line) 'move-end-of-line)
23937 (t 'end-of-line)))
23938 deactivate-mark)
23939 (if (or (not special) arg) (call-interactively move-fun)
23940 (let* ((element (save-excursion (beginning-of-line)
23941 (org-element-at-point)))
23942 (type (org-element-type element)))
23943 (cond
23944 ((memq type '(headline inlinetask))
23945 (let ((pos (point)))
23946 (beginning-of-line 1)
23947 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23948 (if (eq special t)
23949 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23950 (goto-char (match-beginning 1))
23951 (goto-char (match-end 0)))
23952 (if (or (< pos (match-end 0))
23953 (not (eq this-command last-command)))
23954 (goto-char (match-end 0))
23955 (goto-char (match-beginning 1))))
23956 (call-interactively move-fun))))
23957 ((outline-invisible-p (line-end-position))
23958 ;; If element is hidden, `move-end-of-line' would put point
23959 ;; after it. Use `end-of-line' to stay on current line.
23960 (call-interactively 'end-of-line))
23961 (t (call-interactively move-fun)))))
23962 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23963 (setq disable-point-adjustment
23964 (or (not (invisible-p (point)))
23965 (not (invisible-p (max (point-min) (1- (point))))))))
23967 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23968 (define-key org-mode-map "\C-e" 'org-end-of-line)
23970 (defun org-backward-sentence (&optional _arg)
23971 "Go to beginning of sentence, or beginning of table field.
23972 This will call `backward-sentence' or `org-table-beginning-of-field',
23973 depending on context."
23974 (interactive)
23975 (let* ((element (org-element-at-point))
23976 (contents-begin (org-element-property :contents-begin element))
23977 (table (org-element-lineage element '(table) t)))
23978 (if (and table
23979 (> (point) contents-begin)
23980 (<= (point) (org-element-property :contents-end table)))
23981 (call-interactively #'org-table-beginning-of-field)
23982 (save-restriction
23983 (when (and contents-begin
23984 (< (point-min) contents-begin)
23985 (> (point) contents-begin))
23986 (narrow-to-region contents-begin
23987 (org-element-property :contents-end element)))
23988 (call-interactively #'backward-sentence)))))
23990 (defun org-forward-sentence (&optional _arg)
23991 "Go to end of sentence, or end of table field.
23992 This will call `forward-sentence' or `org-table-end-of-field',
23993 depending on context."
23994 (interactive)
23995 (let* ((element (org-element-at-point))
23996 (contents-end (org-element-property :contents-end element))
23997 (table (org-element-lineage element '(table) t)))
23998 (if (and table
23999 (>= (point) (org-element-property :contents-begin table))
24000 (< (point) contents-end))
24001 (call-interactively #'org-table-end-of-field)
24002 (save-restriction
24003 (when (and contents-end
24004 (> (point-max) contents-end)
24005 ;; Skip blank lines between elements.
24006 (< (org-element-property :end element)
24007 (save-excursion (goto-char contents-end)
24008 (skip-chars-forward " \r\t\n"))))
24009 (narrow-to-region (org-element-property :contents-begin element)
24010 contents-end))
24011 (call-interactively #'forward-sentence)))))
24013 (define-key org-mode-map "\M-a" 'org-backward-sentence)
24014 (define-key org-mode-map "\M-e" 'org-forward-sentence)
24016 (defun org-kill-line (&optional _arg)
24017 "Kill line, to tags or end of line."
24018 (interactive)
24019 (cond
24020 ((or (not org-special-ctrl-k)
24021 (bolp)
24022 (not (org-at-heading-p)))
24023 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
24024 org-ctrl-k-protect-subtree)
24025 (if (or (eq org-ctrl-k-protect-subtree 'error)
24026 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
24027 (user-error "C-k aborted as it would kill a hidden subtree")))
24028 (call-interactively
24029 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
24030 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
24031 (kill-region (point) (match-beginning 1))
24032 (org-set-tags nil t))
24033 (t (kill-region (point) (point-at-eol)))))
24035 (define-key org-mode-map "\C-k" 'org-kill-line)
24037 (defun org-yank (&optional arg)
24038 "Yank. If the kill is a subtree, treat it specially.
24039 This command will look at the current kill and check if is a single
24040 subtree, or a series of subtrees[1]. If it passes the test, and if the
24041 cursor is at the beginning of a line or after the stars of a currently
24042 empty headline, then the yank is handled specially. How exactly depends
24043 on the value of the following variables, both set by default.
24045 `org-yank-folded-subtrees'
24046 When set, the subtree(s) will be folded after insertion, but only
24047 if doing so would now swallow text after the yanked text.
24049 `org-yank-adjusted-subtrees'
24050 When set, the subtree will be promoted or demoted in order to
24051 fit into the local outline tree structure, which means that the
24052 level will be adjusted so that it becomes the smaller one of the
24053 two *visible* surrounding headings.
24055 Any prefix to this command will cause `yank' to be called directly with
24056 no special treatment. In particular, a simple \\[universal-argument] prefix \
24057 will just
24058 plainly yank the text as it is.
24060 \[1] The test checks if the first non-white line is a heading
24061 and if there are no other headings with fewer stars."
24062 (interactive "P")
24063 (org-yank-generic 'yank arg))
24065 (defun org-yank-generic (command arg)
24066 "Perform some yank-like command.
24068 This function implements the behavior described in the `org-yank'
24069 documentation. However, it has been generalized to work for any
24070 interactive command with similar behavior."
24072 ;; pretend to be command COMMAND
24073 (setq this-command command)
24075 (if arg
24076 (call-interactively command)
24078 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24079 (and (org-kill-is-subtree-p)
24080 (or (bolp)
24081 (and (looking-at "[ \t]*$")
24082 (string-match
24083 "\\`\\*+\\'"
24084 (buffer-substring (point-at-bol) (point)))))))
24085 swallowp)
24086 (cond
24087 ((and subtreep org-yank-folded-subtrees)
24088 (let ((beg (point))
24089 end)
24090 (if (and subtreep org-yank-adjusted-subtrees)
24091 (org-paste-subtree nil nil 'for-yank)
24092 (call-interactively command))
24094 (setq end (point))
24095 (goto-char beg)
24096 (when (and (bolp) subtreep
24097 (not (setq swallowp
24098 (org-yank-folding-would-swallow-text beg end))))
24099 (org-with-limited-levels
24100 (or (looking-at org-outline-regexp)
24101 (re-search-forward org-outline-regexp-bol end t))
24102 (while (and (< (point) end) (looking-at org-outline-regexp))
24103 (hide-subtree)
24104 (org-cycle-show-empty-lines 'folded)
24105 (condition-case nil
24106 (outline-forward-same-level 1)
24107 (error (goto-char end))))))
24108 (when swallowp
24109 (message
24110 "Inserted text not folded because that would swallow text"))
24112 (goto-char end)
24113 (skip-chars-forward " \t\n\r")
24114 (beginning-of-line 1)
24115 (push-mark beg 'nomsg)))
24116 ((and subtreep org-yank-adjusted-subtrees)
24117 (let ((beg (point-at-bol)))
24118 (org-paste-subtree nil nil 'for-yank)
24119 (push-mark beg 'nomsg)))
24121 (call-interactively command))))))
24123 (defun org-yank-folding-would-swallow-text (beg end)
24124 "Would hide-subtree at BEG swallow any text after END?"
24125 (let (level)
24126 (org-with-limited-levels
24127 (save-excursion
24128 (goto-char beg)
24129 (when (or (looking-at org-outline-regexp)
24130 (re-search-forward org-outline-regexp-bol end t))
24131 (setq level (org-outline-level)))
24132 (goto-char end)
24133 (skip-chars-forward " \t\r\n\v\f")
24134 (if (or (eobp)
24135 (and (bolp) (looking-at org-outline-regexp)
24136 (<= (org-outline-level) level)))
24137 nil ; Nothing would be swallowed
24138 t))))) ; something would swallow
24140 (define-key org-mode-map "\C-y" 'org-yank)
24142 (defun org-truely-invisible-p ()
24143 "Check if point is at a character currently not visible.
24144 This version does not only check the character property, but also
24145 `visible-mode'."
24146 ;; Early versions of noutline don't have `outline-invisible-p'.
24147 (if (org-bound-and-true-p visible-mode)
24149 (outline-invisible-p)))
24151 (defun org-invisible-p2 ()
24152 "Check if point is at a character currently not visible."
24153 (save-excursion
24154 (if (and (eolp) (not (bobp))) (backward-char 1))
24155 ;; Early versions of noutline don't have `outline-invisible-p'.
24156 (outline-invisible-p)))
24158 (defun org-back-to-heading (&optional invisible-ok)
24159 "Call `outline-back-to-heading', but provide a better error message."
24160 (condition-case nil
24161 (outline-back-to-heading invisible-ok)
24162 (error (error "Before first headline at position %d in buffer %s"
24163 (point) (current-buffer)))))
24165 (defun org-before-first-heading-p ()
24166 "Before first heading?"
24167 (save-excursion
24168 (end-of-line)
24169 (null (re-search-backward org-outline-regexp-bol nil t))))
24171 (defun org-at-heading-p (&optional ignored)
24172 (outline-on-heading-p t))
24173 ;; Compatibility alias with Org versions < 7.8.03
24174 (defalias 'org-on-heading-p 'org-at-heading-p)
24176 (defun org-in-commented-heading-p (&optional no-inheritance)
24177 "Non-nil if point is under a commented heading.
24178 This function also checks ancestors of the current headline,
24179 unless optional argument NO-INHERITANCE is non-nil."
24180 (cond
24181 ((org-before-first-heading-p) nil)
24182 ((let ((headline (nth 4 (org-heading-components))))
24183 (and headline
24184 (let ((case-fold-search nil))
24185 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24186 headline)))))
24187 (no-inheritance nil)
24189 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24191 (defun org-at-comment-p nil
24192 "Is cursor in a commented line?"
24193 (save-excursion
24194 (save-match-data
24195 (beginning-of-line)
24196 (looking-at "^[ \t]*# "))))
24198 (defun org-at-drawer-p nil
24199 "Is cursor at a drawer keyword?"
24200 (save-excursion
24201 (move-beginning-of-line 1)
24202 (looking-at org-drawer-regexp)))
24204 (defun org-at-block-p nil
24205 "Is cursor at a block keyword?"
24206 (save-excursion
24207 (move-beginning-of-line 1)
24208 (looking-at org-block-regexp)))
24210 (defun org-point-at-end-of-empty-headline ()
24211 "If point is at the end of an empty headline, return t, else nil.
24212 If the heading only contains a TODO keyword, it is still still considered
24213 empty."
24214 (and (looking-at "[ \t]*$")
24215 (when org-todo-line-regexp
24216 (save-excursion
24217 (beginning-of-line 1)
24218 (let ((case-fold-search nil))
24219 (looking-at org-todo-line-regexp)
24220 (string= (match-string 3) ""))))))
24222 (defun org-at-heading-or-item-p ()
24223 (or (org-at-heading-p) (org-at-item-p)))
24225 (defun org-at-target-p ()
24226 (or (org-in-regexp org-radio-target-regexp)
24227 (org-in-regexp org-target-regexp)))
24228 ;; Compatibility alias with Org versions < 7.8.03
24229 (defalias 'org-on-target-p 'org-at-target-p)
24231 (defun org-up-heading-all (arg)
24232 "Move to the heading line of which the present line is a subheading.
24233 This function considers both visible and invisible heading lines.
24234 With argument, move up ARG levels."
24235 (if (fboundp 'outline-up-heading-all)
24236 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24237 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24239 (defun org-up-heading-safe ()
24240 "Move to the heading line of which the present line is a subheading.
24241 This version will not throw an error. It will return the level of the
24242 headline found, or nil if no higher level is found.
24244 Also, this function will be a lot faster than `outline-up-heading',
24245 because it relies on stars being the outline starters. This can really
24246 make a significant difference in outlines with very many siblings."
24247 (when (ignore-errors (org-back-to-heading t))
24248 (let ((level-up (1- (funcall outline-level))))
24249 (and (> level-up 0)
24250 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24251 (funcall outline-level)))))
24253 (defun org-first-sibling-p ()
24254 "Is this heading the first child of its parents?"
24255 (interactive)
24256 (let ((re org-outline-regexp-bol)
24257 level l)
24258 (unless (org-at-heading-p t)
24259 (user-error "Not at a heading"))
24260 (setq level (funcall outline-level))
24261 (save-excursion
24262 (if (not (re-search-backward re nil t))
24264 (setq l (funcall outline-level))
24265 (< l level)))))
24267 (defun org-goto-sibling (&optional previous)
24268 "Goto the next sibling, even if it is invisible.
24269 When PREVIOUS is set, go to the previous sibling instead. Returns t
24270 when a sibling was found. When none is found, return nil and don't
24271 move point."
24272 (let ((fun (if previous 're-search-backward 're-search-forward))
24273 (pos (point))
24274 (re org-outline-regexp-bol)
24275 level l)
24276 (when (ignore-errors (org-back-to-heading t))
24277 (setq level (funcall outline-level))
24278 (catch 'exit
24279 (or previous (forward-char 1))
24280 (while (funcall fun re nil t)
24281 (setq l (funcall outline-level))
24282 (when (< l level) (goto-char pos) (throw 'exit nil))
24283 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24284 (goto-char pos)
24285 nil))))
24287 (defun org-show-siblings ()
24288 "Show all siblings of the current headline."
24289 (save-excursion
24290 (while (org-goto-sibling) (org-flag-heading nil)))
24291 (save-excursion
24292 (while (org-goto-sibling 'previous)
24293 (org-flag-heading nil))))
24295 (defun org-goto-first-child ()
24296 "Goto the first child, even if it is invisible.
24297 Return t when a child was found. Otherwise don't move point and
24298 return nil."
24299 (let (level (pos (point)) (re org-outline-regexp-bol))
24300 (when (ignore-errors (org-back-to-heading t))
24301 (setq level (outline-level))
24302 (forward-char 1)
24303 (if (and (re-search-forward re nil t) (> (outline-level) level))
24304 (progn (goto-char (match-beginning 0)) t)
24305 (goto-char pos) nil))))
24307 (defun org-show-hidden-entry ()
24308 "Show an entry where even the heading is hidden."
24309 (save-excursion
24310 (org-show-entry)))
24312 (defun org-flag-heading (flag &optional entry)
24313 "Flag the current heading. FLAG non-nil means make invisible.
24314 When ENTRY is non-nil, show the entire entry."
24315 (save-excursion
24316 (org-back-to-heading t)
24317 ;; Check if we should show the entire entry
24318 (if entry
24319 (progn
24320 (org-show-entry)
24321 (save-excursion
24322 (and (outline-next-heading)
24323 (org-flag-heading nil))))
24324 (outline-flag-region (max (point-min) (1- (point)))
24325 (save-excursion (outline-end-of-heading) (point))
24326 flag))))
24328 (defun org-get-next-sibling ()
24329 "Move to next heading of the same level, and return point.
24330 If there is no such heading, return nil.
24331 This is like outline-next-sibling, but invisible headings are ok."
24332 (let ((level (funcall outline-level)))
24333 (outline-next-heading)
24334 (while (and (not (eobp)) (> (funcall outline-level) level))
24335 (outline-next-heading))
24336 (if (or (eobp) (< (funcall outline-level) level))
24338 (point))))
24340 (defun org-get-last-sibling ()
24341 "Move to previous heading of the same level, and return point.
24342 If there is no such heading, return nil."
24343 (let ((opoint (point))
24344 (level (funcall outline-level)))
24345 (outline-previous-heading)
24346 (when (and (/= (point) opoint) (outline-on-heading-p t))
24347 (while (and (> (funcall outline-level) level)
24348 (not (bobp)))
24349 (outline-previous-heading))
24350 (if (< (funcall outline-level) level)
24352 (point)))))
24354 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24355 "Goto to the end of a subtree."
24356 ;; This contains an exact copy of the original function, but it uses
24357 ;; `org-back-to-heading', to make it work also in invisible
24358 ;; trees. And is uses an invisible-ok argument.
24359 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24360 ;; Furthermore, when used inside Org, finding the end of a large subtree
24361 ;; with many children and grandchildren etc, this can be much faster
24362 ;; than the outline version.
24363 (org-back-to-heading invisible-ok)
24364 (let ((first t)
24365 (level (funcall outline-level)))
24366 (if (and (derived-mode-p 'org-mode) (< level 1000))
24367 ;; A true heading (not a plain list item), in Org-mode
24368 ;; This means we can easily find the end by looking
24369 ;; only for the right number of stars. Using a regexp to do
24370 ;; this is so much faster than using a Lisp loop.
24371 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24372 (forward-char 1)
24373 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24374 ;; something else, do it the slow way
24375 (while (and (not (eobp))
24376 (or first (> (funcall outline-level) level)))
24377 (setq first nil)
24378 (outline-next-heading)))
24379 (unless to-heading
24380 (if (memq (preceding-char) '(?\n ?\^M))
24381 (progn
24382 ;; Go to end of line before heading
24383 (forward-char -1)
24384 (if (memq (preceding-char) '(?\n ?\^M))
24385 ;; leave blank line before heading
24386 (forward-char -1))))))
24387 (point))
24389 (defun org-end-of-meta-data (&optional full)
24390 "Skip planning line and properties drawer in current entry.
24391 When optional argument FULL is non-nil, also skip empty lines,
24392 clocking lines and regular drawers at the beginning of the
24393 entry."
24394 (org-back-to-heading t)
24395 (forward-line)
24396 (when (org-looking-at-p org-planning-line-re) (forward-line))
24397 (when (looking-at org-property-drawer-re)
24398 (goto-char (match-end 0))
24399 (forward-line))
24400 (when (and full (not (org-at-heading-p)))
24401 (catch 'exit
24402 (let ((end (save-excursion (outline-next-heading) (point)))
24403 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24404 (while (not (eobp))
24405 (cond ((org-looking-at-p org-drawer-regexp)
24406 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24407 (forward-line)
24408 (throw 'exit t)))
24409 ((org-looking-at-p re) (forward-line))
24410 (t (throw 'exit t))))))))
24412 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24413 "Move forward to the ARG'th subheading at same level as this one.
24414 Stop at the first and last subheadings of a superior heading.
24415 Normally this only looks at visible headings, but when INVISIBLE-OK is
24416 non-nil it will also look at invisible ones."
24417 (interactive "p")
24418 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24419 (if (and arg (< arg 0))
24420 (goto-char (point-min))
24421 (outline-next-heading))
24422 (org-at-heading-p)
24423 (let ((level (- (match-end 0) (match-beginning 0) 1))
24424 (f (if (and arg (< arg 0))
24425 're-search-backward
24426 're-search-forward))
24427 (count (if arg (abs arg) 1))
24428 (result (point)))
24429 (while (and (prog1 (> count 0)
24430 (forward-char (if (and arg (< arg 0)) -1 1)))
24431 (funcall f org-outline-regexp-bol nil 'move))
24432 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24433 (cond ((< l level) (setq count 0))
24434 ((and (= l level)
24435 (or invisible-ok
24436 (progn
24437 (goto-char (line-beginning-position))
24438 (not (outline-invisible-p)))))
24439 (setq count (1- count))
24440 (when (eq l level)
24441 (setq result (point)))))))
24442 (goto-char result))
24443 (beginning-of-line 1)))
24445 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24446 "Move backward to the ARG'th subheading at same level as this one.
24447 Stop at the first and last subheadings of a superior heading."
24448 (interactive "p")
24449 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24451 (defun org-next-visible-heading (arg)
24452 "Move to the next visible heading.
24454 This function wraps `outline-next-visible-heading' with
24455 `org-with-limited-levels' in order to skip over inline tasks and
24456 respect customization of `org-odd-levels-only'."
24457 (interactive "p")
24458 (org-with-limited-levels
24459 (outline-next-visible-heading arg)))
24461 (defun org-previous-visible-heading (arg)
24462 "Move to the next visible heading.
24464 This function wraps `outline-previous-visible-heading' with
24465 `org-with-limited-levels' in order to skip over inline tasks and
24466 respect customization of `org-odd-levels-only'."
24467 (interactive "p")
24468 (org-with-limited-levels
24469 (outline-previous-visible-heading arg)))
24471 (defun org-next-block (arg &optional backward block-regexp)
24472 "Jump to the next block.
24474 With a prefix argument ARG, jump forward ARG many blocks.
24476 When BACKWARD is non-nil, jump to the previous block.
24478 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24479 Match data is set according to this regexp when the function
24480 returns.
24482 Return point at beginning of the opening line of found block.
24483 Throw an error if no block is found."
24484 (interactive "p")
24485 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24486 (case-fold-search t)
24487 (search-fn (if backward #'re-search-backward #'re-search-forward))
24488 (count (or arg 1))
24489 (origin (point))
24490 last-element)
24491 (if backward (beginning-of-line) (end-of-line))
24492 (while (and (> count 0) (funcall search-fn re nil t))
24493 (let ((element (save-excursion
24494 (goto-char (match-beginning 0))
24495 (save-match-data (org-element-at-point)))))
24496 (when (and (memq (org-element-type element)
24497 '(center-block comment-block dynamic-block
24498 example-block export-block quote-block
24499 special-block src-block verse-block))
24500 (<= (match-beginning 0)
24501 (org-element-property :post-affiliated element)))
24502 (setq last-element element)
24503 (decf count))))
24504 (if (= count 0)
24505 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24506 (save-match-data (org-show-context)))
24507 (goto-char origin)
24508 (user-error "No %s code blocks" (if backward "previous" "further")))))
24510 (defun org-previous-block (arg &optional block-regexp)
24511 "Jump to the previous block.
24512 With a prefix argument ARG, jump backward ARG many source blocks.
24513 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24514 (interactive "p")
24515 (org-next-block arg t block-regexp))
24517 (defun org-forward-paragraph ()
24518 "Move forward to beginning of next paragraph or equivalent.
24520 The function moves point to the beginning of the next visible
24521 structural element, which can be a paragraph, a table, a list
24522 item, etc. It also provides some special moves for convenience:
24524 - On an affiliated keyword, jump to the beginning of the
24525 relative element.
24526 - On an item or a footnote definition, move to the second
24527 element inside, if any.
24528 - On a table or a property drawer, jump after it.
24529 - On a verse or source block, stop after blank lines."
24530 (interactive)
24531 (when (eobp) (user-error "Cannot move further down"))
24532 (let* ((deactivate-mark nil)
24533 (element (org-element-at-point))
24534 (type (org-element-type element))
24535 (post-affiliated (org-element-property :post-affiliated element))
24536 (contents-begin (org-element-property :contents-begin element))
24537 (contents-end (org-element-property :contents-end element))
24538 (end (let ((end (org-element-property :end element)) (parent element))
24539 (while (and (setq parent (org-element-property :parent parent))
24540 (= (org-element-property :contents-end parent) end))
24541 (setq end (org-element-property :end parent)))
24542 end)))
24543 (cond ((not element)
24544 (skip-chars-forward " \r\t\n")
24545 (or (eobp) (beginning-of-line)))
24546 ;; On affiliated keywords, move to element's beginning.
24547 ((< (point) post-affiliated)
24548 (goto-char post-affiliated))
24549 ;; At a table row, move to the end of the table. Similarly,
24550 ;; at a node property, move to the end of the property
24551 ;; drawer.
24552 ((memq type '(node-property table-row))
24553 (goto-char (org-element-property
24554 :end (org-element-property :parent element))))
24555 ((memq type '(property-drawer table)) (goto-char end))
24556 ;; Consider blank lines as separators in verse and source
24557 ;; blocks to ease editing.
24558 ((memq type '(src-block verse-block))
24559 (when (eq type 'src-block)
24560 (setq contents-end
24561 (save-excursion (goto-char end)
24562 (skip-chars-backward " \r\t\n")
24563 (line-beginning-position))))
24564 (beginning-of-line)
24565 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24566 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24567 (goto-char end)
24568 (skip-chars-forward " \r\t\n")
24569 (if (= (point) contents-end) (goto-char end)
24570 (beginning-of-line))))
24571 ;; With no contents, just skip element.
24572 ((not contents-begin) (goto-char end))
24573 ;; If contents are invisible, skip the element altogether.
24574 ((outline-invisible-p (line-end-position))
24575 (case type
24576 (headline
24577 (org-with-limited-levels (outline-next-visible-heading 1)))
24578 ;; At a plain list, make sure we move to the next item
24579 ;; instead of skipping the whole list.
24580 (plain-list (forward-char)
24581 (org-forward-paragraph))
24582 (otherwise (goto-char end))))
24583 ((>= (point) contents-end) (goto-char end))
24584 ((>= (point) contents-begin)
24585 ;; This can only happen on paragraphs and plain lists.
24586 (case type
24587 (paragraph (goto-char end))
24588 ;; At a plain list, try to move to second element in
24589 ;; first item, if possible.
24590 (plain-list (end-of-line)
24591 (org-forward-paragraph))))
24592 ;; When contents start on the middle of a line (e.g. in
24593 ;; items and footnote definitions), try to reach first
24594 ;; element starting after current line.
24595 ((> (line-end-position) contents-begin)
24596 (end-of-line)
24597 (org-forward-paragraph))
24598 (t (goto-char contents-begin)))))
24600 (defun org-backward-paragraph ()
24601 "Move backward to start of previous paragraph or equivalent.
24603 The function moves point to the beginning of the current
24604 structural element, which can be a paragraph, a table, a list
24605 item, etc., or to the beginning of the previous visible one if
24606 point is already there. It also provides some special moves for
24607 convenience:
24609 - On an affiliated keyword, jump to the first one.
24610 - On a table or a property drawer, move to its beginning.
24611 - On a verse or source block, stop before blank lines."
24612 (interactive)
24613 (when (bobp) (user-error "Cannot move further up"))
24614 (let* ((deactivate-mark nil)
24615 (element (org-element-at-point))
24616 (type (org-element-type element))
24617 (contents-begin (org-element-property :contents-begin element))
24618 (contents-end (org-element-property :contents-end element))
24619 (post-affiliated (org-element-property :post-affiliated element))
24620 (begin (org-element-property :begin element)))
24621 (cond
24622 ((not element) (goto-char (point-min)))
24623 ((= (point) begin)
24624 (backward-char)
24625 (org-backward-paragraph))
24626 ((<= (point) post-affiliated) (goto-char begin))
24627 ((memq type '(node-property table-row))
24628 (goto-char (org-element-property
24629 :post-affiliated (org-element-property :parent element))))
24630 ((memq type '(property-drawer table)) (goto-char begin))
24631 ((memq type '(src-block verse-block))
24632 (when (eq type 'src-block)
24633 (setq contents-begin
24634 (save-excursion (goto-char begin) (forward-line) (point))))
24635 (if (= (point) contents-begin) (goto-char post-affiliated)
24636 ;; Inside a verse block, see blank lines as paragraph
24637 ;; separators.
24638 (let ((origin (point)))
24639 (skip-chars-backward " \r\t\n" contents-begin)
24640 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24641 (skip-chars-forward " \r\t\n" origin)
24642 (if (= (point) origin) (goto-char contents-begin)
24643 (beginning-of-line))))))
24644 ((not contents-begin) (goto-char (or post-affiliated begin)))
24645 ((eq type 'paragraph)
24646 (goto-char contents-begin)
24647 ;; When at first paragraph in an item or a footnote definition,
24648 ;; move directly to beginning of line.
24649 (let ((parent-contents
24650 (org-element-property
24651 :contents-begin (org-element-property :parent element))))
24652 (when (and parent-contents (= parent-contents contents-begin))
24653 (beginning-of-line))))
24654 ;; At the end of a greater element, move to the beginning of the
24655 ;; last element within.
24656 ((>= (point) contents-end)
24657 (goto-char (1- contents-end))
24658 (org-backward-paragraph))
24659 (t (goto-char (or post-affiliated begin))))
24660 ;; Ensure we never leave point invisible.
24661 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24663 (defun org-forward-element ()
24664 "Move forward by one element.
24665 Move to the next element at the same level, when possible."
24666 (interactive)
24667 (cond ((eobp) (user-error "Cannot move further down"))
24668 ((org-with-limited-levels (org-at-heading-p))
24669 (let ((origin (point)))
24670 (goto-char (org-end-of-subtree nil t))
24671 (unless (org-with-limited-levels (org-at-heading-p))
24672 (goto-char origin)
24673 (user-error "Cannot move further down"))))
24675 (let* ((elem (org-element-at-point))
24676 (end (org-element-property :end elem))
24677 (parent (org-element-property :parent elem)))
24678 (cond ((and parent (= (org-element-property :contents-end parent) end))
24679 (goto-char (org-element-property :end parent)))
24680 ((integer-or-marker-p end) (goto-char end))
24681 (t (message "No element at point")))))))
24683 (defun org-backward-element ()
24684 "Move backward by one element.
24685 Move to the previous element at the same level, when possible."
24686 (interactive)
24687 (cond ((bobp) (user-error "Cannot move further up"))
24688 ((org-with-limited-levels (org-at-heading-p))
24689 ;; At a headline, move to the previous one, if any, or stay
24690 ;; here.
24691 (let ((origin (point)))
24692 (org-with-limited-levels (org-backward-heading-same-level 1))
24693 ;; When current headline has no sibling above, move to its
24694 ;; parent.
24695 (when (= (point) origin)
24696 (or (org-with-limited-levels (org-up-heading-safe))
24697 (progn (goto-char origin)
24698 (user-error "Cannot move further up"))))))
24700 (let* ((elem (org-element-at-point))
24701 (beg (org-element-property :begin elem)))
24702 (cond
24703 ;; Move to beginning of current element if point isn't
24704 ;; there already.
24705 ((null beg) (message "No element at point"))
24706 ((/= (point) beg) (goto-char beg))
24707 (t (goto-char beg)
24708 (skip-chars-backward " \r\t\n")
24709 (unless (bobp)
24710 (let ((prev (org-element-at-point)))
24711 (goto-char (org-element-property :begin prev))
24712 (while (and (setq prev (org-element-property :parent prev))
24713 (<= (org-element-property :end prev) beg))
24714 (goto-char (org-element-property :begin prev)))))))))))
24716 (defun org-up-element ()
24717 "Move to upper element."
24718 (interactive)
24719 (if (org-with-limited-levels (org-at-heading-p))
24720 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24721 (let* ((elem (org-element-at-point))
24722 (parent (org-element-property :parent elem)))
24723 (if parent (goto-char (org-element-property :begin parent))
24724 (if (org-with-limited-levels (org-before-first-heading-p))
24725 (user-error "No surrounding element")
24726 (org-with-limited-levels (org-back-to-heading)))))))
24728 (defvar org-element-greater-elements)
24729 (defun org-down-element ()
24730 "Move to inner element."
24731 (interactive)
24732 (let ((element (org-element-at-point)))
24733 (cond
24734 ((memq (org-element-type element) '(plain-list table))
24735 (goto-char (org-element-property :contents-begin element))
24736 (forward-char))
24737 ((memq (org-element-type element) org-element-greater-elements)
24738 ;; If contents are hidden, first disclose them.
24739 (when (outline-invisible-p (line-end-position)) (org-cycle))
24740 (goto-char (or (org-element-property :contents-begin element)
24741 (user-error "No content for this element"))))
24742 (t (user-error "No inner element")))))
24744 (defun org-drag-element-backward ()
24745 "Move backward element at point."
24746 (interactive)
24747 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24748 (let* ((elem (org-element-at-point))
24749 (prev-elem
24750 (save-excursion
24751 (goto-char (org-element-property :begin elem))
24752 (skip-chars-backward " \r\t\n")
24753 (unless (bobp)
24754 (let* ((beg (org-element-property :begin elem))
24755 (prev (org-element-at-point))
24756 (up prev))
24757 (while (and (setq up (org-element-property :parent up))
24758 (<= (org-element-property :end up) beg))
24759 (setq prev up))
24760 prev)))))
24761 ;; Error out if no previous element or previous element is
24762 ;; a parent of the current one.
24763 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24764 (user-error "Cannot drag element backward")
24765 (let ((pos (point)))
24766 (org-element-swap-A-B prev-elem elem)
24767 (goto-char (+ (org-element-property :begin prev-elem)
24768 (- pos (org-element-property :begin elem)))))))))
24770 (defun org-drag-element-forward ()
24771 "Move forward element at point."
24772 (interactive)
24773 (let* ((pos (point))
24774 (elem (org-element-at-point)))
24775 (when (= (point-max) (org-element-property :end elem))
24776 (user-error "Cannot drag element forward"))
24777 (goto-char (org-element-property :end elem))
24778 (let ((next-elem (org-element-at-point)))
24779 (when (or (org-element-nested-p elem next-elem)
24780 (and (eq (org-element-type next-elem) 'headline)
24781 (not (eq (org-element-type elem) 'headline))))
24782 (goto-char pos)
24783 (user-error "Cannot drag element forward"))
24784 ;; Compute new position of point: it's shifted by NEXT-ELEM
24785 ;; body's length (without final blanks) and by the length of
24786 ;; blanks between ELEM and NEXT-ELEM.
24787 (let ((size-next (- (save-excursion
24788 (goto-char (org-element-property :end next-elem))
24789 (skip-chars-backward " \r\t\n")
24790 (forward-line)
24791 ;; Small correction if buffer doesn't end
24792 ;; with a newline character.
24793 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24794 (org-element-property :begin next-elem)))
24795 (size-blank (- (org-element-property :end elem)
24796 (save-excursion
24797 (goto-char (org-element-property :end elem))
24798 (skip-chars-backward " \r\t\n")
24799 (forward-line)
24800 (point)))))
24801 (org-element-swap-A-B elem next-elem)
24802 (goto-char (+ pos size-next size-blank))))))
24804 (defun org-drag-line-forward (arg)
24805 "Drag the line at point ARG lines forward."
24806 (interactive "p")
24807 (dotimes (n (abs arg))
24808 (let ((c (current-column)))
24809 (if (< 0 arg)
24810 (progn
24811 (beginning-of-line 2)
24812 (transpose-lines 1)
24813 (beginning-of-line 0))
24814 (transpose-lines 1)
24815 (beginning-of-line -1))
24816 (org-move-to-column c))))
24818 (defun org-drag-line-backward (arg)
24819 "Drag the line at point ARG lines backward."
24820 (interactive "p")
24821 (org-drag-line-forward (- arg)))
24823 (defun org-mark-element ()
24824 "Put point at beginning of this element, mark at end.
24826 Interactively, if this command is repeated or (in Transient Mark
24827 mode) if the mark is active, it marks the next element after the
24828 ones already marked."
24829 (interactive)
24830 (let (deactivate-mark)
24831 (if (and (org-called-interactively-p 'any)
24832 (or (and (eq last-command this-command) (mark t))
24833 (and transient-mark-mode mark-active)))
24834 (set-mark
24835 (save-excursion
24836 (goto-char (mark))
24837 (goto-char (org-element-property :end (org-element-at-point)))))
24838 (let ((element (org-element-at-point)))
24839 (end-of-line)
24840 (push-mark (org-element-property :end element) t t)
24841 (goto-char (org-element-property :begin element))))))
24843 (defun org-narrow-to-element ()
24844 "Narrow buffer to current element."
24845 (interactive)
24846 (let ((elem (org-element-at-point)))
24847 (cond
24848 ((eq (car elem) 'headline)
24849 (narrow-to-region
24850 (org-element-property :begin elem)
24851 (org-element-property :end elem)))
24852 ((memq (car elem) org-element-greater-elements)
24853 (narrow-to-region
24854 (org-element-property :contents-begin elem)
24855 (org-element-property :contents-end elem)))
24857 (narrow-to-region
24858 (org-element-property :begin elem)
24859 (org-element-property :end elem))))))
24861 (defun org-transpose-element ()
24862 "Transpose current and previous elements, keeping blank lines between.
24863 Point is moved after both elements."
24864 (interactive)
24865 (org-skip-whitespace)
24866 (let ((end (org-element-property :end (org-element-at-point))))
24867 (org-drag-element-backward)
24868 (goto-char end)))
24870 (defun org-unindent-buffer ()
24871 "Un-indent the visible part of the buffer.
24872 Relative indentation (between items, inside blocks, etc.) isn't
24873 modified."
24874 (interactive)
24875 (unless (eq major-mode 'org-mode)
24876 (user-error "Cannot un-indent a buffer not in Org mode"))
24877 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24878 unindent-tree ; For byte-compiler.
24879 (unindent-tree
24880 (function
24881 (lambda (contents)
24882 (mapc
24883 (lambda (element)
24884 (if (memq (org-element-type element) '(headline section))
24885 (funcall unindent-tree (org-element-contents element))
24886 (save-excursion
24887 (save-restriction
24888 (narrow-to-region
24889 (org-element-property :begin element)
24890 (org-element-property :end element))
24891 (org-do-remove-indentation)))))
24892 (reverse contents))))))
24893 (funcall unindent-tree (org-element-contents parse-tree))))
24895 (defun org-show-subtree ()
24896 "Show everything after this heading at deeper levels."
24897 (interactive)
24898 (outline-flag-region
24899 (point)
24900 (save-excursion
24901 (org-end-of-subtree t t))
24902 nil))
24904 (defun org-show-entry ()
24905 "Show the body directly following this heading.
24906 Show the heading too, if it is currently invisible."
24907 (interactive)
24908 (save-excursion
24909 (ignore-errors
24910 (org-back-to-heading t)
24911 (outline-flag-region
24912 (max (point-min) (1- (point)))
24913 (save-excursion
24914 (if (re-search-forward
24915 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24916 (match-beginning 1)
24917 (point-max)))
24918 nil)
24919 (org-cycle-hide-drawers 'children))))
24921 (defun org-make-options-regexp (kwds &optional extra)
24922 "Make a regular expression for keyword lines.
24923 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24924 when non-nil, is a regexp matching keywords names."
24925 (concat "^[ \t]*#\\+\\("
24926 (regexp-opt kwds)
24927 (and extra (concat (and kwds "\\|") extra))
24928 "\\):[ \t]*\\(.*\\)"))
24930 ;; Make isearch reveal the necessary context
24931 (defun org-isearch-end ()
24932 "Reveal context after isearch exits."
24933 (when isearch-success ; only if search was successful
24934 (if (featurep 'xemacs)
24935 ;; Under XEmacs, the hook is run in the correct place,
24936 ;; we directly show the context.
24937 (org-show-context 'isearch)
24938 ;; In Emacs the hook runs *before* restoring the overlays.
24939 ;; So we have to use a one-time post-command-hook to do this.
24940 ;; (Emacs 22 has a special variable, see function `org-mode')
24941 (unless (and (boundp 'isearch-mode-end-hook-quit)
24942 isearch-mode-end-hook-quit)
24943 ;; Only when the isearch was not quitted.
24944 (org-add-hook 'post-command-hook 'org-isearch-post-command
24945 'append 'local)))))
24947 (defun org-isearch-post-command ()
24948 "Remove self from hook, and show context."
24949 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24950 (org-show-context 'isearch))
24953 ;;;; Integration with and fixes for other packages
24955 ;;; Imenu support
24957 (defvar org-imenu-markers nil
24958 "All markers currently used by Imenu.")
24959 (make-variable-buffer-local 'org-imenu-markers)
24961 (defun org-imenu-new-marker (&optional pos)
24962 "Return a new marker for use by Imenu, and remember the marker."
24963 (let ((m (make-marker)))
24964 (move-marker m (or pos (point)))
24965 (push m org-imenu-markers)
24968 (defun org-imenu-get-tree ()
24969 "Produce the index for Imenu."
24970 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24971 (setq org-imenu-markers nil)
24972 (let* ((n org-imenu-depth)
24973 (re (concat "^" (org-get-limited-outline-regexp)))
24974 (subs (make-vector (1+ n) nil))
24975 (last-level 0)
24976 m level head0 head)
24977 (save-excursion
24978 (save-restriction
24979 (widen)
24980 (goto-char (point-max))
24981 (while (re-search-backward re nil t)
24982 (setq level (org-reduced-level (funcall outline-level)))
24983 (when (and (<= level n)
24984 (looking-at org-complex-heading-regexp)
24985 (setq head0 (org-match-string-no-properties 4)))
24986 (setq head (org-link-display-format head0)
24987 m (org-imenu-new-marker))
24988 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24989 (if (>= level last-level)
24990 (push (cons head m) (aref subs level))
24991 (push (cons head (aref subs (1+ level))) (aref subs level))
24992 (loop for i from (1+ level) to n do (aset subs i nil)))
24993 (setq last-level level)))))
24994 (aref subs 1)))
24996 (eval-after-load "imenu"
24997 '(progn
24998 (add-hook 'imenu-after-jump-hook
24999 (lambda ()
25000 (if (derived-mode-p 'org-mode)
25001 (org-show-context 'org-goto))))))
25003 (defun org-link-display-format (link)
25004 "Replace a link with its the description.
25005 If there is no description, use the link target."
25006 (save-match-data
25007 (if (string-match org-bracket-link-analytic-regexp link)
25008 (replace-match (if (match-end 5)
25009 (match-string 5 link)
25010 (concat (match-string 1 link)
25011 (match-string 3 link)))
25012 nil t link)
25013 link)))
25015 (defun org-toggle-link-display ()
25016 "Toggle the literal or descriptive display of links."
25017 (interactive)
25018 (if org-descriptive-links
25019 (progn (org-remove-from-invisibility-spec '(org-link))
25020 (org-restart-font-lock)
25021 (setq org-descriptive-links nil))
25022 (progn (add-to-invisibility-spec '(org-link))
25023 (org-restart-font-lock)
25024 (setq org-descriptive-links t))))
25026 ;; Speedbar support
25028 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
25029 "Overlay marking the agenda restriction line in speedbar.")
25030 (overlay-put org-speedbar-restriction-lock-overlay
25031 'face 'org-agenda-restriction-lock)
25032 (overlay-put org-speedbar-restriction-lock-overlay
25033 'help-echo "Agendas are currently limited to this item.")
25034 (org-detach-overlay org-speedbar-restriction-lock-overlay)
25036 (defun org-speedbar-set-agenda-restriction ()
25037 "Restrict future agenda commands to the location at point in speedbar.
25038 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
25039 (interactive)
25040 (require 'org-agenda)
25041 (let (p m tp np dir txt)
25042 (cond
25043 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25044 'org-imenu t))
25045 (setq m (get-text-property p 'org-imenu-marker))
25046 (with-current-buffer (marker-buffer m)
25047 (goto-char m)
25048 (org-agenda-set-restriction-lock 'subtree)))
25049 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25050 'speedbar-function 'speedbar-find-file))
25051 (setq tp (previous-single-property-change
25052 (1+ p) 'speedbar-function)
25053 np (next-single-property-change
25054 tp 'speedbar-function)
25055 dir (speedbar-line-directory)
25056 txt (buffer-substring-no-properties (or tp (point-min))
25057 (or np (point-max))))
25058 (with-current-buffer (find-file-noselect
25059 (let ((default-directory dir))
25060 (expand-file-name txt)))
25061 (unless (derived-mode-p 'org-mode)
25062 (user-error "Cannot restrict to non-Org-mode file"))
25063 (org-agenda-set-restriction-lock 'file)))
25064 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25065 (move-overlay org-speedbar-restriction-lock-overlay
25066 (point-at-bol) (point-at-eol))
25067 (setq current-prefix-arg nil)
25068 (org-agenda-maybe-redo)))
25070 (defvar speedbar-file-key-map)
25071 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25072 (eval-after-load "speedbar"
25073 '(progn
25074 (speedbar-add-supported-extension ".org")
25075 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25076 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25077 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25078 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25079 (add-hook 'speedbar-visiting-tag-hook
25080 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25082 ;;; Fixes and Hacks for problems with other packages
25084 (defun org--flyspell-object-check-p (element)
25085 "Non-nil when Flyspell can check object at point.
25086 ELEMENT is the element at point."
25087 (let ((object (save-excursion
25088 (when (org-looking-at-p "\\>") (backward-char))
25089 (org-element-context element))))
25090 (case (org-element-type object)
25091 ;; Prevent checks in links due to keybinding conflict with
25092 ;; Flyspell.
25093 ((code entity export-snippet inline-babel-call
25094 inline-src-block line-break latex-fragment link macro
25095 statistics-cookie target timestamp verbatim)
25096 nil)
25097 (footnote-reference
25098 ;; Only in inline footnotes, within the definition.
25099 (and (eq (org-element-property :type object) 'inline)
25100 (< (save-excursion
25101 (goto-char (org-element-property :begin object))
25102 (search-forward ":" nil t 2))
25103 (point))))
25104 (otherwise t))))
25106 (defun org-mode-flyspell-verify ()
25107 "Function used for `flyspell-generic-check-word-predicate'."
25108 (if (org-at-heading-p)
25109 ;; At a headline or an inlinetask, check title only. This is
25110 ;; faster than relying on `org-element-at-point'.
25111 (and (save-excursion (beginning-of-line)
25112 (and (let ((case-fold-search t))
25113 (not (looking-at "\\*+ END[ \t]*$")))
25114 (looking-at org-complex-heading-regexp)))
25115 (match-beginning 4)
25116 (>= (point) (match-beginning 4))
25117 (or (not (match-beginning 5))
25118 (< (point) (match-beginning 5))))
25119 (let* ((element (org-element-at-point))
25120 (post-affiliated (org-element-property :post-affiliated element)))
25121 (cond
25122 ;; Ignore checks in all affiliated keywords but captions.
25123 ((< (point) post-affiliated)
25124 (and (save-excursion
25125 (beginning-of-line)
25126 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25127 (> (point) (match-end 0))
25128 (org--flyspell-object-check-p element)))
25129 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25130 ((let ((log (org-log-into-drawer)))
25131 (and log
25132 (let ((drawer (org-element-lineage element '(drawer))))
25133 (and drawer
25134 (eq (compare-strings
25135 log nil nil
25136 (org-element-property :drawer-name drawer) nil nil t)
25137 t)))))
25138 nil)
25140 (case (org-element-type element)
25141 ((comment quote-section) t)
25142 (comment-block
25143 ;; Allow checks between block markers, not on them.
25144 (and (> (line-beginning-position) post-affiliated)
25145 (save-excursion
25146 (end-of-line)
25147 (skip-chars-forward " \r\t\n")
25148 (< (point) (org-element-property :end element)))))
25149 ;; Arbitrary list of keywords where checks are meaningful.
25150 ;; Make sure point is on the value part of the element.
25151 (keyword
25152 (and (member (org-element-property :key element)
25153 '("DESCRIPTION" "TITLE"))
25154 (save-excursion
25155 (search-backward ":" (line-beginning-position) t))))
25156 ;; Check is globally allowed in paragraphs verse blocks and
25157 ;; table rows (after affiliated keywords) but some objects
25158 ;; must not be affected.
25159 ((paragraph table-row verse-block)
25160 (let ((cbeg (org-element-property :contents-begin element))
25161 (cend (org-element-property :contents-end element)))
25162 (and cbeg (>= (point) cbeg) (< (point) cend)
25163 (org--flyspell-object-check-p element))))))))))
25164 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25166 (defun org-remove-flyspell-overlays-in (beg end)
25167 "Remove flyspell overlays in region."
25168 (and (org-bound-and-true-p flyspell-mode)
25169 (fboundp 'flyspell-delete-region-overlays)
25170 (flyspell-delete-region-overlays beg end)))
25172 (defvar flyspell-delayed-commands)
25173 (eval-after-load "flyspell"
25174 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25176 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25177 (eval-after-load "bookmark"
25178 '(if (boundp 'bookmark-after-jump-hook)
25179 ;; We can use the hook
25180 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25181 ;; Hook not available, use advice
25182 (defadvice bookmark-jump (after org-make-visible activate)
25183 "Make the position visible."
25184 (org-bookmark-jump-unhide))))
25186 ;; Make sure saveplace shows the location if it was hidden
25187 (eval-after-load "saveplace"
25188 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25189 "Make the position visible."
25190 (org-bookmark-jump-unhide)))
25192 ;; Make sure ecb shows the location if it was hidden
25193 (eval-after-load "ecb"
25194 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25195 "Make hierarchy visible when jumping into location from ECB tree buffer."
25196 (if (derived-mode-p 'org-mode)
25197 (org-show-context))))
25199 (defun org-bookmark-jump-unhide ()
25200 "Unhide the current position, to show the bookmark location."
25201 (and (derived-mode-p 'org-mode)
25202 (or (outline-invisible-p)
25203 (save-excursion (goto-char (max (point-min) (1- (point))))
25204 (outline-invisible-p)))
25205 (org-show-context 'bookmark-jump)))
25207 (defun org-mark-jump-unhide ()
25208 "Make the point visible with `org-show-context' after jumping to the mark."
25209 (when (and (derived-mode-p 'org-mode)
25210 (outline-invisible-p))
25211 (org-show-context 'mark-goto)))
25213 (eval-after-load "simple"
25214 '(defadvice pop-to-mark-command (after org-make-visible activate)
25215 "Make the point visible with `org-show-context'."
25216 (org-mark-jump-unhide)))
25218 (eval-after-load "simple"
25219 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25220 "Make the point visible with `org-show-context'."
25221 (org-mark-jump-unhide)))
25223 (eval-after-load "simple"
25224 '(defadvice pop-global-mark (after org-make-visible activate)
25225 "Make the point visible with `org-show-context'."
25226 (org-mark-jump-unhide)))
25228 ;; Make session.el ignore our circular variable
25229 (defvar session-globals-exclude)
25230 (eval-after-load "session"
25231 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25233 ;;;; Finish up
25235 (provide 'org)
25237 (run-hooks 'org-load-hook)
25239 ;;; org.el ends here