org.el: RET breaks headline text
[org-mode.git] / lisp / org.el
blob6ed8f762c5569ecdf38e79738b36fc2f563f6095
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 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
185 (declare-function org-element-update-syntax "org-element" ())
187 (defsubst org-uniquify (list)
188 "Non-destructively remove duplicate elements from LIST."
189 (let ((res (copy-sequence list))) (delete-dups res)))
191 (defsubst org-get-at-bol (property)
192 "Get text property PROPERTY at the beginning of line."
193 (get-text-property (point-at-bol) property))
195 (defsubst org-trim (s)
196 "Remove whitespace at the beginning and the end of string S."
197 (replace-regexp-in-string
198 "\\`[ \t\n\r]+" ""
199 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
201 ;; load languages based on value of `org-babel-load-languages'
202 (defvar org-babel-load-languages)
204 ;;;###autoload
205 (defun org-babel-do-load-languages (sym value)
206 "Load the languages defined in `org-babel-load-languages'."
207 (set-default sym value)
208 (mapc (lambda (pair)
209 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
210 (if active
211 (progn
212 (require (intern (concat "ob-" lang))))
213 (progn
214 (funcall 'fmakunbound
215 (intern (concat "org-babel-execute:" lang)))
216 (funcall 'fmakunbound
217 (intern (concat "org-babel-expand-body:" lang)))))))
218 org-babel-load-languages))
220 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
221 ;;;###autoload
222 (defun org-babel-load-file (file &optional compile)
223 "Load Emacs Lisp source code blocks in the Org-mode FILE.
224 This function exports the source code using `org-babel-tangle'
225 and then loads the resulting file using `load-file'. With prefix
226 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
227 file to byte-code before it is loaded."
228 (interactive "fFile to load: \nP")
229 (let* ((age (lambda (file)
230 (float-time
231 (time-subtract (current-time)
232 (nth 5 (or (file-attributes (file-truename file))
233 (file-attributes file)))))))
234 (base-name (file-name-sans-extension file))
235 (exported-file (concat base-name ".el")))
236 ;; tangle if the org-mode file is newer than the elisp file
237 (unless (and (file-exists-p exported-file)
238 (> (funcall age file) (funcall age exported-file)))
239 ;; Tangle-file traversal returns reversed list of tangled files
240 ;; and we want to evaluate the first target.
241 (setq exported-file
242 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
243 (message "%s %s"
244 (if compile
245 (progn (byte-compile-file exported-file 'load)
246 "Compiled and loaded")
247 (progn (load-file exported-file) "Loaded"))
248 exported-file)))
250 (defcustom org-babel-load-languages '((emacs-lisp . t))
251 "Languages which can be evaluated in Org-mode buffers.
252 This list can be used to load support for any of the languages
253 below, note that each language will depend on a different set of
254 system executables and/or Emacs modes. When a language is
255 \"loaded\", then code blocks in that language can be evaluated
256 with `org-babel-execute-src-block' bound by default to C-c
257 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
258 be set to remove code block evaluation from the C-c C-c
259 keybinding. By default only Emacs Lisp (which has no
260 requirements) is loaded."
261 :group 'org-babel
262 :set 'org-babel-do-load-languages
263 :version "24.1"
264 :type '(alist :tag "Babel Languages"
265 :key-type
266 (choice
267 (const :tag "Awk" awk)
268 (const :tag "C" C)
269 (const :tag "R" R)
270 (const :tag "Asymptote" asymptote)
271 (const :tag "Calc" calc)
272 (const :tag "Clojure" clojure)
273 (const :tag "CSS" css)
274 (const :tag "Ditaa" ditaa)
275 (const :tag "Dot" dot)
276 (const :tag "Emacs Lisp" emacs-lisp)
277 (const :tag "Forth" forth)
278 (const :tag "Fortran" fortran)
279 (const :tag "Gnuplot" gnuplot)
280 (const :tag "Haskell" haskell)
281 (const :tag "IO" io)
282 (const :tag "J" J)
283 (const :tag "Java" java)
284 (const :tag "Javascript" js)
285 (const :tag "LaTeX" latex)
286 (const :tag "Ledger" ledger)
287 (const :tag "Lilypond" lilypond)
288 (const :tag "Lisp" lisp)
289 (const :tag "Makefile" makefile)
290 (const :tag "Maxima" maxima)
291 (const :tag "Matlab" matlab)
292 (const :tag "Mscgen" mscgen)
293 (const :tag "Ocaml" ocaml)
294 (const :tag "Octave" octave)
295 (const :tag "Org" org)
296 (const :tag "Perl" perl)
297 (const :tag "Pico Lisp" picolisp)
298 (const :tag "PlantUML" plantuml)
299 (const :tag "Python" python)
300 (const :tag "Ruby" ruby)
301 (const :tag "Sass" sass)
302 (const :tag "Scala" scala)
303 (const :tag "Scheme" scheme)
304 (const :tag "Screen" screen)
305 (const :tag "Shell Script" shell)
306 (const :tag "Shen" shen)
307 (const :tag "Sql" sql)
308 (const :tag "Sqlite" sqlite)
309 (const :tag "ebnf2ps" ebnf2ps))
310 :value-type (boolean :tag "Activate" :value t)))
312 ;;;; Customization variables
313 (defcustom org-clone-delete-id nil
314 "Remove ID property of clones of a subtree.
315 When non-nil, clones of a subtree don't inherit the ID property.
316 Otherwise they inherit the ID property with a new unique
317 identifier."
318 :type 'boolean
319 :version "24.1"
320 :group 'org-id)
322 ;;; Version
323 (org-check-version)
325 ;;;###autoload
326 (defun org-version (&optional here full message)
327 "Show the org-mode version.
328 Interactively, or when MESSAGE is non-nil, show it in echo area.
329 With prefix argument, or when HERE is non-nil, insert it at point.
330 In non-interactive uses, a reduced version string is output unless
331 FULL is given."
332 (interactive (list current-prefix-arg t (not current-prefix-arg)))
333 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
334 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
335 (load-suffixes (list ".el"))
336 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
337 (org-trash (or
338 (and (fboundp 'org-release) (fboundp 'org-git-version))
339 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
340 (load-suffixes save-load-suffixes)
341 (org-version (org-release))
342 (git-version (org-git-version))
343 (version (format "Org-mode version %s (%s @ %s)"
344 org-version
345 git-version
346 (if org-install-dir
347 (if (string= org-dir org-install-dir)
348 org-install-dir
349 (concat "mixed installation! " org-install-dir " and " org-dir))
350 "org-loaddefs.el can not be found!")))
351 (version1 (if full version org-version)))
352 (when here (insert version1))
353 (when message (message "%s" version1))
354 version1))
356 (defconst org-version (org-version))
359 ;;; Syntax Constants
361 ;;;; Block
363 (defconst org-block-regexp
364 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
365 "Regular expression for hiding blocks.")
367 (defconst org-dblock-start-re
368 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
369 "Matches the start line of a dynamic block, with parameters.")
371 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
372 "Matches the end of a dynamic block.")
374 ;;;; Clock and Planning
376 (defconst org-clock-string "CLOCK:"
377 "String used as prefix for timestamps clocking work hours on an item.")
379 (defvar org-closed-string "CLOSED:"
380 "String used as the prefix for timestamps logging closing a TODO entry.")
382 (defvar org-deadline-string "DEADLINE:"
383 "String to mark deadline entries.
384 A deadline 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-deadline].")
388 (defvar org-scheduled-string "SCHEDULED:"
389 "String to mark scheduled TODO entries.
390 A schedule is this string, followed by a time stamp. Should be a word,
391 terminated by a colon. You can insert a schedule keyword and
392 a timestamp with \\[org-schedule].")
394 (defconst org-ds-keyword-length
395 (+ 2
396 (apply #'max
397 (mapcar #'length
398 (list org-deadline-string org-scheduled-string
399 org-clock-string org-closed-string))))
400 "Maximum length of the DEADLINE and SCHEDULED keywords.")
402 (defconst org-planning-line-re
403 (concat "^[ \t]*"
404 (regexp-opt
405 (list org-closed-string org-deadline-string org-scheduled-string)
407 "Matches a line with planning info.
408 Matched keyword is in group 1.")
410 (defconst org-clock-line-re
411 (concat "^[ \t]*" org-clock-string)
412 "Matches a line with clock info.")
414 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
415 "Matches the DEADLINE keyword.")
417 (defconst org-deadline-time-regexp
418 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
419 "Matches the DEADLINE keyword together with a time stamp.")
421 (defconst org-deadline-time-hour-regexp
422 (concat "\\<" org-deadline-string
423 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
424 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
426 (defconst org-deadline-line-regexp
427 (concat "\\<\\(" org-deadline-string "\\).*")
428 "Matches the DEADLINE keyword and the rest of the line.")
430 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
431 "Matches the SCHEDULED keyword.")
433 (defconst org-scheduled-time-regexp
434 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
435 "Matches the SCHEDULED keyword together with a time stamp.")
437 (defconst org-scheduled-time-hour-regexp
438 (concat "\\<" org-scheduled-string
439 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
440 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
442 (defconst org-closed-time-regexp
443 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
444 "Matches the CLOSED keyword together with a time stamp.")
446 (defconst org-keyword-time-regexp
447 (concat "\\<"
448 (regexp-opt
449 (list org-scheduled-string org-deadline-string org-closed-string
450 org-clock-string)
452 " *[[<]\\([^]>]+\\)[]>]")
453 "Matches any of the 4 keywords, together with the time stamp.")
455 (defconst org-keyword-time-not-clock-regexp
456 (concat
457 "\\<"
458 (regexp-opt
459 (list org-scheduled-string org-deadline-string org-closed-string) t)
460 " *[[<]\\([^]>]+\\)[]>]")
461 "Matches any of the 3 keywords, together with the time stamp.")
463 (defconst org-maybe-keyword-time-regexp
464 (concat "\\(\\<"
465 (regexp-opt
466 (list org-scheduled-string org-deadline-string org-closed-string
467 org-clock-string)
469 "\\)?"
470 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
471 "\\|"
472 "<%%([^\r\n>]*>\\)")
473 "Matches a timestamp, possibly preceded by a keyword.")
475 (defconst org-all-time-keywords
476 (mapcar (lambda (w) (substring w 0 -1))
477 (list org-scheduled-string org-deadline-string
478 org-clock-string org-closed-string))
479 "List of time keywords.")
481 ;;;; Drawer
483 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
484 "Matches first or last line of a hidden block.
485 Group 1 contains drawer's name or \"END\".")
487 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
488 "Regular expression matching the first line of a property drawer.")
490 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
491 "Regular expression matching the last line of a property drawer.")
493 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
494 "Regular expression matching the first line of a clock drawer.")
496 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
497 "Regular expression matching the last line of a clock drawer.")
499 (defconst org-property-drawer-re
500 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
501 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
502 "[ \t]*:END:[ \t]*$")
503 "Matches an entire property drawer.")
505 (defconst org-clock-drawer-re
506 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
507 org-clock-drawer-end-re "\\)\n?")
508 "Matches an entire clock drawer.")
510 ;;;; Headline
512 (defconst org-heading-keyword-regexp-format
513 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
514 "Printf format for a regexp matching a headline with some keyword.
515 This regexp will match the headline of any node which has the
516 exact keyword that is put into the format. The keyword isn't in
517 any group by default, but the stars and the body are.")
519 (defconst org-heading-keyword-maybe-regexp-format
520 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
521 "Printf format for a regexp matching a headline, possibly with some keyword.
522 This regexp can match any headline with the specified keyword, or
523 without a keyword. The keyword isn't in any group by default,
524 but the stars and the body are.")
526 (defconst org-archive-tag "ARCHIVE"
527 "The tag that marks a subtree as archived.
528 An archived subtree does not open during visibility cycling, and does
529 not contribute to the agenda listings.")
531 (defconst org-comment-string "COMMENT"
532 "Entries starting with this keyword will never be exported.
533 An entry can be toggled between COMMENT and normal with
534 \\[org-toggle-comment].")
537 ;;;; LaTeX Environments and Fragments
539 (defconst org-latex-regexps
540 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
541 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
542 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
543 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
544 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
545 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
546 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
547 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
548 "Regular expressions for matching embedded LaTeX.")
550 ;;;; Node Property
552 (defconst org-effort-property "Effort"
553 "The property that is being used to keep track of effort estimates.
554 Effort estimates given in this property need to have the format H:MM.")
556 ;;;; Table
558 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
559 "Detect an org-type or table-type table.")
561 (defconst org-table-line-regexp "^[ \t]*|"
562 "Detect an org-type table line.")
564 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
565 "Detect an org-type table line.")
567 (defconst org-table-hline-regexp "^[ \t]*|-"
568 "Detect an org-type table hline.")
570 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
571 "Detect a table-type table hline.")
573 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
574 "Detect the first line outside a table when searching from within it.
575 This works for both table types.")
577 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
578 "Detect a #+TBLFM line.")
580 ;;;; Timestamp
582 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
583 "Regular expression for fast time stamp matching.")
585 (defconst org-ts-regexp-inactive
586 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
587 "Regular expression for fast inactive time stamp matching.")
589 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
590 "Regular expression for fast time stamp matching.")
592 (defconst org-ts-regexp0
593 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
594 "Regular expression matching time strings for analysis.
595 This one does not require the space after the date, so it can be used
596 on a string that terminates immediately after the date.")
598 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
599 "Regular expression matching time strings for analysis.")
601 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
602 "Regular expression matching time stamps, with groups.")
604 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
605 "Regular expression matching time stamps (also [..]), with groups.")
607 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
608 "Regular expression matching a time stamp range.")
610 (defconst org-tr-regexp-both
611 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
612 "Regular expression matching a time stamp range.")
614 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
615 org-ts-regexp "\\)?")
616 "Regular expression matching a time stamp or time stamp range.")
618 (defconst org-tsr-regexp-both
619 (concat org-ts-regexp-both "\\(--?-?"
620 org-ts-regexp-both "\\)?")
621 "Regular expression matching a time stamp or time stamp range.
622 The time stamps may be either active or inactive.")
624 (defconst org-repeat-re
625 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
626 "Regular expression for specifying repeated events.
627 After a match, group 1 contains the repeat expression.")
629 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
630 "Formats for `format-time-string' which are used for time stamps.")
633 ;;; The custom variables
635 (defgroup org nil
636 "Outline-based notes management and organizer."
637 :tag "Org"
638 :group 'outlines
639 :group 'calendar)
641 (defcustom org-mode-hook nil
642 "Mode hook for Org-mode, run after the mode was turned on."
643 :group 'org
644 :type 'hook)
646 (defcustom org-load-hook nil
647 "Hook that is run after org.el has been loaded."
648 :group 'org
649 :type 'hook)
651 (defcustom org-log-buffer-setup-hook nil
652 "Hook that is run after an Org log buffer is created."
653 :group 'org
654 :version "24.1"
655 :type 'hook)
657 (defvar org-modules) ; defined below
658 (defvar org-modules-loaded nil
659 "Have the modules been loaded already?")
661 (defun org-load-modules-maybe (&optional force)
662 "Load all extensions listed in `org-modules'."
663 (when (or force (not org-modules-loaded))
664 (mapc (lambda (ext)
665 (condition-case nil (require ext)
666 (error (message "Problems while trying to load feature `%s'" ext))))
667 org-modules)
668 (setq org-modules-loaded t)))
670 (defun org-set-modules (var value)
671 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
672 (set var value)
673 (when (featurep 'org)
674 (org-load-modules-maybe 'force)
675 (org-element-cache-reset 'all)))
677 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
678 "Modules that should always be loaded together with org.el.
680 If a description starts with <C>, the file is not part of Emacs
681 and loading it will require that you have downloaded and properly
682 installed the Org mode distribution.
684 You can also use this system to load external packages (i.e. neither Org
685 core modules, nor modules from the CONTRIB directory). Just add symbols
686 to the end of the list. If the package is called org-xyz.el, then you need
687 to add the symbol `xyz', and the package must have a call to:
689 \(provide 'org-xyz)
691 For export specific modules, see also `org-export-backends'."
692 :group 'org
693 :set 'org-set-modules
694 :version "24.4"
695 :package-version '(Org . "8.0")
696 :type
697 '(set :greedy t
698 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
699 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
700 (const :tag " crypt: Encryption of subtrees" org-crypt)
701 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
702 (const :tag " docview: Links to doc-view buffers" org-docview)
703 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
704 (const :tag " habit: Track your consistency with habits" org-habit)
705 (const :tag " id: Global IDs for identifying entries" org-id)
706 (const :tag " info: Links to Info nodes" org-info)
707 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
708 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
709 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
710 (const :tag " mouse: Additional mouse support" org-mouse)
711 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
712 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
713 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
715 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
716 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
717 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
718 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
719 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
720 (const :tag "C collector: Collect properties into tables" org-collector)
721 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
722 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
723 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
724 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
725 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
726 (const :tag "C eval: Include command output as text" org-eval)
727 (const :tag "C eww: Store link to url of eww" org-eww)
728 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
729 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
730 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
731 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
732 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
733 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
734 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
735 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
736 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
737 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
738 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
739 (const :tag "C mew: Links to Mew folders/messages" org-mew)
740 (const :tag "C mtags: Support for muse-like tags" org-mtags)
741 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
742 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
743 (const :tag "C registry: A registry for Org-mode links" org-registry)
744 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
745 (const :tag "C secretary: Team management with org-mode" org-secretary)
746 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
747 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
748 (const :tag "C track: Keep up with Org-mode development" org-track)
749 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
750 (const :tag "C vm: Links to VM folders/messages" org-vm)
751 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
752 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
753 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
755 (defvar org-export-registered-backends) ; From ox.el.
756 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
757 (declare-function org-export-backend-name "ox" (backend))
758 (defcustom org-export-backends '(ascii html icalendar latex)
759 "List of export back-ends that should be always available.
761 If a description starts with <C>, the file is not part of Emacs
762 and loading it will require that you have downloaded and properly
763 installed the Org mode distribution.
765 Unlike to `org-modules', libraries in this list will not be
766 loaded along with Org, but only once the export framework is
767 needed.
769 This variable needs to be set before org.el is loaded. If you
770 need to make a change while Emacs is running, use the customize
771 interface or run the following code, where VAL stands for the new
772 value of the variable, after updating it:
774 \(progn
775 \(setq org-export-registered-backends
776 \(org-remove-if-not
777 \(lambda (backend)
778 \(let ((name (org-export-backend-name backend)))
779 \(or (memq name val)
780 \(catch 'parentp
781 \(dolist (b val)
782 \(and (org-export-derived-backend-p b name)
783 \(throw 'parentp t)))))))
784 org-export-registered-backends))
785 \(let ((new-list (mapcar #'org-export-backend-name
786 org-export-registered-backends)))
787 \(dolist (backend val)
788 \(cond
789 \((not (load (format \"ox-%s\" backend) t t))
790 \(message \"Problems while trying to load export back-end `%s'\"
791 backend))
792 \((not (memq backend new-list)) (push backend new-list))))
793 \(set-default 'org-export-backends new-list)))
795 Adding a back-end to this list will also pull the back-end it
796 depends on, if any."
797 :group 'org
798 :group 'org-export
799 :version "24.4"
800 :package-version '(Org . "8.0")
801 :initialize 'custom-initialize-set
802 :set (lambda (var val)
803 (if (not (featurep 'ox)) (set-default var val)
804 ;; Any back-end not required anymore (not present in VAL and not
805 ;; a parent of any back-end in the new value) is removed from the
806 ;; list of registered back-ends.
807 (setq org-export-registered-backends
808 (org-remove-if-not
809 (lambda (backend)
810 (let ((name (org-export-backend-name backend)))
811 (or (memq name val)
812 (catch 'parentp
813 (dolist (b val)
814 (and (org-export-derived-backend-p b name)
815 (throw 'parentp t)))))))
816 org-export-registered-backends))
817 ;; Now build NEW-LIST of both new back-ends and required
818 ;; parents.
819 (let ((new-list (mapcar #'org-export-backend-name
820 org-export-registered-backends)))
821 (dolist (backend val)
822 (cond
823 ((not (load (format "ox-%s" backend) t t))
824 (message "Problems while trying to load export back-end `%s'"
825 backend))
826 ((not (memq backend new-list)) (push backend new-list))))
827 ;; Set VAR to that list with fixed dependencies.
828 (set-default var new-list))))
829 :type '(set :greedy t
830 (const :tag " ascii Export buffer to ASCII format" ascii)
831 (const :tag " beamer Export buffer to Beamer presentation" beamer)
832 (const :tag " html Export buffer to HTML format" html)
833 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
834 (const :tag " latex Export buffer to LaTeX format" latex)
835 (const :tag " man Export buffer to MAN format" man)
836 (const :tag " md Export buffer to Markdown format" md)
837 (const :tag " odt Export buffer to ODT format" odt)
838 (const :tag " org Export buffer to Org format" org)
839 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
840 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
841 (const :tag "C deck Export buffer to deck.js presentations" deck)
842 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
843 (const :tag "C groff Export buffer to Groff format" groff)
844 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
845 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
846 (const :tag "C s5 Export buffer to s5 presentations" s5)
847 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
849 (eval-after-load 'ox
850 '(mapc
851 (lambda (backend)
852 (condition-case nil (require (intern (format "ox-%s" backend)))
853 (error (message "Problems while trying to load export back-end `%s'"
854 backend))))
855 org-export-backends))
857 (defcustom org-support-shift-select nil
858 "Non-nil means make shift-cursor commands select text when possible.
860 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
861 start selecting a region, or enlarge regions started in this way.
862 In Org-mode, in special contexts, these same keys are used for
863 other purposes, important enough to compete with shift selection.
864 Org tries to balance these needs by supporting `shift-select-mode'
865 outside these special contexts, under control of this variable.
867 The default of this variable is nil, to avoid confusing behavior. Shifted
868 cursor keys will then execute Org commands in the following contexts:
869 - on a headline, changing TODO state (left/right) and priority (up/down)
870 - on a time stamp, changing the time
871 - in a plain list item, changing the bullet type
872 - in a property definition line, switching between allowed values
873 - in the BEGIN line of a clock table (changing the time block).
874 Outside these contexts, the commands will throw an error.
876 When this variable is t and the cursor is not in a special
877 context, Org-mode will support shift-selection for making and
878 enlarging regions. To make this more effective, the bullet
879 cycling will no longer happen anywhere in an item line, but only
880 if the cursor is exactly on the bullet.
882 If you set this variable to the symbol `always', then the keys
883 will not be special in headlines, property lines, and item lines,
884 to make shift selection work there as well. If this is what you
885 want, you can use the following alternative commands: `C-c C-t'
886 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
887 can be used to switch TODO sets, `C-c -' to cycle item bullet
888 types, and properties can be edited by hand or in column view.
890 However, when the cursor is on a timestamp, shift-cursor commands
891 will still edit the time stamp - this is just too good to give up.
893 XEmacs user should have this variable set to nil, because
894 `shift-select-mode' is in Emacs 23 or later only."
895 :group 'org
896 :type '(choice
897 (const :tag "Never" nil)
898 (const :tag "When outside special context" t)
899 (const :tag "Everywhere except timestamps" always)))
901 (defcustom org-loop-over-headlines-in-active-region nil
902 "Shall some commands act upon headlines in the active region?
904 When set to `t', some commands will be performed in all headlines
905 within the active region.
907 When set to `start-level', some commands will be performed in all
908 headlines within the active region, provided that these headlines
909 are of the same level than the first one.
911 When set to a string, those commands will be performed on the
912 matching headlines within the active region. Such string must be
913 a tags/property/todo match as it is used in the agenda tags view.
915 The list of commands is: `org-schedule', `org-deadline',
916 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
917 `org-archive-to-archive-sibling'. The archiving commands skip
918 already archived entries."
919 :type '(choice (const :tag "Don't loop" nil)
920 (const :tag "All headlines in active region" t)
921 (const :tag "In active region, headlines at the same level than the first one" start-level)
922 (string :tag "Tags/Property/Todo matcher"))
923 :version "24.1"
924 :group 'org-todo
925 :group 'org-archive)
927 (defgroup org-startup nil
928 "Options concerning startup of Org-mode."
929 :tag "Org Startup"
930 :group 'org)
932 (defcustom org-startup-folded t
933 "Non-nil means entering Org-mode will switch to OVERVIEW.
934 This can also be configured on a per-file basis by adding one of
935 the following lines anywhere in the buffer:
937 #+STARTUP: fold (or `overview', this is equivalent)
938 #+STARTUP: nofold (or `showall', this is equivalent)
939 #+STARTUP: content
940 #+STARTUP: showeverything
942 By default, this option is ignored when Org opens agenda files
943 for the first time. If you want the agenda to honor the startup
944 option, set `org-agenda-inhibit-startup' to nil."
945 :group 'org-startup
946 :type '(choice
947 (const :tag "nofold: show all" nil)
948 (const :tag "fold: overview" t)
949 (const :tag "content: all headlines" content)
950 (const :tag "show everything, even drawers" showeverything)))
952 (defcustom org-startup-truncated t
953 "Non-nil means entering Org-mode will set `truncate-lines'.
954 This is useful since some lines containing links can be very long and
955 uninteresting. Also tables look terrible when wrapped."
956 :group 'org-startup
957 :type 'boolean)
959 (defcustom org-startup-indented nil
960 "Non-nil means turn on `org-indent-mode' on startup.
961 This can also be configured on a per-file basis by adding one of
962 the following lines anywhere in the buffer:
964 #+STARTUP: indent
965 #+STARTUP: noindent"
966 :group 'org-structure
967 :type '(choice
968 (const :tag "Not" nil)
969 (const :tag "Globally (slow on startup in large files)" t)))
971 (defcustom org-use-sub-superscripts t
972 "Non-nil means interpret \"_\" and \"^\" for display.
974 If you want to control how Org exports those characters, see
975 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
976 used to be an alias for `org-export-with-sub-superscripts' in
977 Org <8.0, it is not anymore.
979 When this option is turned on, you can use TeX-like syntax for
980 sub- and superscripts within the buffer. Several characters after
981 \"_\" or \"^\" will be considered as a single item - so grouping
982 with {} is normally not needed. For example, the following things
983 will be parsed as single sub- or superscripts:
985 10^24 or 10^tau several digits will be considered 1 item.
986 10^-12 or 10^-tau a leading sign with digits or a word
987 x^2-y^3 will be read as x^2 - y^3, because items are
988 terminated by almost any nonword/nondigit char.
989 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
991 Still, ambiguity is possible. So when in doubt, use {} to enclose
992 the sub/superscript. If you set this variable to the symbol `{}',
993 the braces are *required* in order to trigger interpretations as
994 sub/superscript. This can be helpful in documents that need \"_\"
995 frequently in plain text."
996 :group 'org-startup
997 :version "24.4"
998 :package-version '(Org . "8.0")
999 :type '(choice
1000 (const :tag "Always interpret" t)
1001 (const :tag "Only with braces" {})
1002 (const :tag "Never interpret" nil)))
1004 (defcustom org-startup-with-beamer-mode nil
1005 "Non-nil means turn on `org-beamer-mode' on startup.
1006 This can also be configured on a per-file basis by adding one of
1007 the following lines anywhere in the buffer:
1009 #+STARTUP: beamer"
1010 :group 'org-startup
1011 :version "24.1"
1012 :type 'boolean)
1014 (defcustom org-startup-align-all-tables nil
1015 "Non-nil means align all tables when visiting a file.
1016 This is useful when the column width in tables is forced with <N> cookies
1017 in table fields. Such tables will look correct only after the first re-align.
1018 This can also be configured on a per-file basis by adding one of
1019 the following lines anywhere in the buffer:
1020 #+STARTUP: align
1021 #+STARTUP: noalign"
1022 :group 'org-startup
1023 :type 'boolean)
1025 (defcustom org-startup-with-inline-images nil
1026 "Non-nil means show inline images when loading a new Org file.
1027 This can also be configured on a per-file basis by adding one of
1028 the following lines anywhere in the buffer:
1029 #+STARTUP: inlineimages
1030 #+STARTUP: noinlineimages"
1031 :group 'org-startup
1032 :version "24.1"
1033 :type 'boolean)
1035 (defcustom org-startup-with-latex-preview nil
1036 "Non-nil means preview LaTeX fragments when loading a new Org file.
1038 This can also be configured on a per-file basis by adding one of
1039 the following lines anywhere in the buffer:
1040 #+STARTUP: latexpreview
1041 #+STARTUP: nolatexpreview"
1042 :group 'org-startup
1043 :version "24.4"
1044 :package-version '(Org . "8.0")
1045 :type 'boolean)
1047 (defcustom org-insert-mode-line-in-empty-file nil
1048 "Non-nil means insert the first line setting Org-mode in empty files.
1049 When the function `org-mode' is called interactively in an empty file, this
1050 normally means that the file name does not automatically trigger Org-mode.
1051 To ensure that the file will always be in Org-mode in the future, a
1052 line enforcing Org-mode will be inserted into the buffer, if this option
1053 has been set."
1054 :group 'org-startup
1055 :type 'boolean)
1057 (defcustom org-replace-disputed-keys nil
1058 "Non-nil means use alternative key bindings for some keys.
1059 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1060 These keys are also used by other packages like shift-selection-mode'
1061 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1062 If you want to use Org-mode together with one of these other modes,
1063 or more generally if you would like to move some Org-mode commands to
1064 other keys, set this variable and configure the keys with the variable
1065 `org-disputed-keys'.
1067 This option is only relevant at load-time of Org-mode, and must be set
1068 *before* org.el is loaded. Changing it requires a restart of Emacs to
1069 become effective."
1070 :group 'org-startup
1071 :type 'boolean)
1073 (defcustom org-use-extra-keys nil
1074 "Non-nil means use extra key sequence definitions for certain commands.
1075 This happens automatically if you run XEmacs or if `window-system'
1076 is nil. This variable lets you do the same manually. You must
1077 set it before loading org.
1079 Example: on Carbon Emacs 22 running graphically, with an external
1080 keyboard on a Powerbook, the default way of setting M-left might
1081 not work for either Alt or ESC. Setting this variable will make
1082 it work for ESC."
1083 :group 'org-startup
1084 :type 'boolean)
1086 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1088 (defcustom org-disputed-keys
1089 '(([(shift up)] . [(meta p)])
1090 ([(shift down)] . [(meta n)])
1091 ([(shift left)] . [(meta -)])
1092 ([(shift right)] . [(meta +)])
1093 ([(control shift right)] . [(meta shift +)])
1094 ([(control shift left)] . [(meta shift -)]))
1095 "Keys for which Org-mode and other modes compete.
1096 This is an alist, cars are the default keys, second element specifies
1097 the alternative to use when `org-replace-disputed-keys' is t.
1099 Keys can be specified in any syntax supported by `define-key'.
1100 The value of this option takes effect only at Org-mode's startup,
1101 therefore you'll have to restart Emacs to apply it after changing."
1102 :group 'org-startup
1103 :type 'alist)
1105 (defun org-key (key)
1106 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1107 Or return the original if not disputed.
1108 Also apply the translations defined in `org-xemacs-key-equivalents'."
1109 (when org-replace-disputed-keys
1110 (let* ((nkey (key-description key))
1111 (x (org-find-if (lambda (x)
1112 (equal (key-description (car x)) nkey))
1113 org-disputed-keys)))
1114 (setq key (if x (cdr x) key))))
1115 (when (featurep 'xemacs)
1116 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1117 key)
1119 (defun org-find-if (predicate seq)
1120 (catch 'exit
1121 (while seq
1122 (if (funcall predicate (car seq))
1123 (throw 'exit (car seq))
1124 (pop seq)))))
1126 (defun org-defkey (keymap key def)
1127 "Define a key, possibly translated, as returned by `org-key'."
1128 (define-key keymap (org-key key) def))
1130 (defcustom org-ellipsis nil
1131 "The ellipsis to use in the Org-mode outline.
1132 When nil, just use the standard three dots.
1133 When a string, use that string instead.
1134 When a face, use the standard 3 dots, but with the specified face.
1135 The change affects only Org-mode (which will then use its own display table).
1136 Changing this requires executing \\[org-mode] in a buffer to become
1137 effective."
1138 :group 'org-startup
1139 :type '(choice (const :tag "Default" nil)
1140 (face :tag "Face" :value org-warning)
1141 (string :tag "String" :value "...#")))
1143 (defvar org-display-table nil
1144 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1146 (defgroup org-keywords nil
1147 "Keywords in Org-mode."
1148 :tag "Org Keywords"
1149 :group 'org)
1151 (defcustom org-closed-keep-when-no-todo nil
1152 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1153 :group 'org-todo
1154 :group 'org-keywords
1155 :version "24.4"
1156 :package-version '(Org . "8.0")
1157 :type 'boolean)
1159 (defgroup org-structure nil
1160 "Options concerning the general structure of Org-mode files."
1161 :tag "Org Structure"
1162 :group 'org)
1164 (defgroup org-reveal-location nil
1165 "Options about how to make context of a location visible."
1166 :tag "Org Reveal Location"
1167 :group 'org-structure)
1169 (defcustom org-show-context-detail '((isearch . lineage)
1170 (bookmark-jump . lineage)
1171 (default . ancestors))
1172 "Alist between context and visibility span when revealing a location.
1174 \\<org-mode-map>Some actions may move point into invisible
1175 locations. As a consequence, Org always expose a neighborhood
1176 around point. How much is shown depends on the initial action,
1177 or context. Valid contexts are
1179 agenda when exposing an entry from the agenda
1180 org-goto when using the command `org-goto' (\\[org-goto])
1181 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1182 tags-tree when constructing a sparse tree based on tags matches
1183 link-search when exposing search matches associated with a link
1184 mark-goto when exposing the jump goal of a mark
1185 bookmark-jump when exposing a bookmark location
1186 isearch when exiting from an incremental search
1187 default default for all contexts not set explicitly
1189 Allowed visibility spans are
1191 minimal show current headline; if point is not on headline,
1192 also show entry
1194 local show current headline, entry and next headline
1196 ancestors show current headline and its direct ancestors; if
1197 point is not on headline, also show entry
1199 lineage show current headline, its direct ancestors and all
1200 their children; if point is not on headline, also show
1201 entry and first child
1203 tree show current headline, its direct ancestors and all
1204 their children; if point is not on headline, also show
1205 entry and all children
1207 canonical show current headline, its direct ancestors along with
1208 their entries and children; if point is not located on
1209 the headline, also show current entry and all children
1211 As special cases, a nil or t value means show all contexts in
1212 `minimal' or `canonical' view, respectively.
1214 Some views can make displayed information very compact, but also
1215 make it harder to edit the location of the match. In such
1216 a case, use the command `org-reveal' (\\[org-reveal]) to show
1217 more context."
1218 :group 'org-reveal-location
1219 :version "25.1"
1220 :package-version '(Org . "8.3")
1221 :type '(choice
1222 (const :tag "Canonical" t)
1223 (const :tag "Minimal" nil)
1224 (repeat :greedy t :tag "Individual contexts"
1225 (cons
1226 (choice :tag "Context"
1227 (const agenda)
1228 (const org-goto)
1229 (const occur-tree)
1230 (const tags-tree)
1231 (const link-search)
1232 (const mark-goto)
1233 (const bookmark-jump)
1234 (const isearch)
1235 (const default))
1236 (choice :tag "Detail level"
1237 (const minimal)
1238 (const local)
1239 (const ancestors)
1240 (const lineage)
1241 (const tree)
1242 (const canonical))))))
1244 (defcustom org-indirect-buffer-display 'other-window
1245 "How should indirect tree buffers be displayed?
1246 This applies to indirect buffers created with the commands
1247 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1248 Valid values are:
1249 current-window Display in the current window
1250 other-window Just display in another window.
1251 dedicated-frame Create one new frame, and re-use it each time.
1252 new-frame Make a new frame each time. Note that in this case
1253 previously-made indirect buffers are kept, and you need to
1254 kill these buffers yourself."
1255 :group 'org-structure
1256 :group 'org-agenda-windows
1257 :type '(choice
1258 (const :tag "In current window" current-window)
1259 (const :tag "In current frame, other window" other-window)
1260 (const :tag "Each time a new frame" new-frame)
1261 (const :tag "One dedicated frame" dedicated-frame)))
1263 (defcustom org-use-speed-commands nil
1264 "Non-nil means activate single letter commands at beginning of a headline.
1265 This may also be a function to test for appropriate locations where speed
1266 commands should be active.
1268 For example, to activate speed commands when the point is on any
1269 star at the beginning of the headline, you can do this:
1271 (setq org-use-speed-commands
1272 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1273 :group 'org-structure
1274 :type '(choice
1275 (const :tag "Never" nil)
1276 (const :tag "At beginning of headline stars" t)
1277 (function)))
1279 (defcustom org-speed-commands-user nil
1280 "Alist of additional speed commands.
1281 This list will be checked before `org-speed-commands-default'
1282 when the variable `org-use-speed-commands' is non-nil
1283 and when the cursor is at the beginning of a headline.
1284 The car if each entry is a string with a single letter, which must
1285 be assigned to `self-insert-command' in the global map.
1286 The cdr is either a command to be called interactively, a function
1287 to be called, or a form to be evaluated.
1288 An entry that is just a list with a single string will be interpreted
1289 as a descriptive headline that will be added when listing the speed
1290 commands in the Help buffer using the `?' speed command."
1291 :group 'org-structure
1292 :type '(repeat :value ("k" . ignore)
1293 (choice :value ("k" . ignore)
1294 (list :tag "Descriptive Headline" (string :tag "Headline"))
1295 (cons :tag "Letter and Command"
1296 (string :tag "Command letter")
1297 (choice
1298 (function)
1299 (sexp))))))
1301 (defcustom org-bookmark-names-plist
1302 '(:last-capture "org-capture-last-stored"
1303 :last-refile "org-refile-last-stored"
1304 :last-capture-marker "org-capture-last-stored-marker")
1305 "Names for bookmarks automatically set by some Org commands.
1306 This can provide strings as names for a number of bookmarks Org sets
1307 automatically. The following keys are currently implemented:
1308 :last-capture
1309 :last-capture-marker
1310 :last-refile
1311 When a key does not show up in the property list, the corresponding bookmark
1312 is not set."
1313 :group 'org-structure
1314 :type 'plist)
1316 (defgroup org-cycle nil
1317 "Options concerning visibility cycling in Org-mode."
1318 :tag "Org Cycle"
1319 :group 'org-structure)
1321 (defcustom org-cycle-skip-children-state-if-no-children t
1322 "Non-nil means skip CHILDREN state in entries that don't have any."
1323 :group 'org-cycle
1324 :type 'boolean)
1326 (defcustom org-cycle-max-level nil
1327 "Maximum level which should still be subject to visibility cycling.
1328 Levels higher than this will, for cycling, be treated as text, not a headline.
1329 When `org-odd-levels-only' is set, a value of N in this variable actually
1330 means 2N-1 stars as the limiting headline.
1331 When nil, cycle all levels.
1332 Note that the limiting level of cycling is also influenced by
1333 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1334 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1335 than its value."
1336 :group 'org-cycle
1337 :type '(choice
1338 (const :tag "No limit" nil)
1339 (integer :tag "Maximum level")))
1341 (defcustom org-hide-block-startup nil
1342 "Non-nil means entering Org-mode will fold all blocks.
1343 This can also be set in on a per-file basis with
1345 #+STARTUP: hideblocks
1346 #+STARTUP: showblocks"
1347 :group 'org-startup
1348 :group 'org-cycle
1349 :type 'boolean)
1351 (defcustom org-cycle-global-at-bob nil
1352 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1353 This makes it possible to do global cycling without having to use S-TAB or
1354 \\[universal-argument] TAB. For this special case to work, the first line
1355 of the buffer must not be a headline -- it may be empty or some other text.
1356 When used in this way, `org-cycle-hook' is disabled temporarily to make
1357 sure the cursor stays at the beginning of the buffer. When this option is
1358 nil, don't do anything special at the beginning of the buffer."
1359 :group 'org-cycle
1360 :type 'boolean)
1362 (defcustom org-cycle-level-after-item/entry-creation t
1363 "Non-nil means cycle entry level or item indentation in new empty entries.
1365 When the cursor is at the end of an empty headline, i.e., with only stars
1366 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1367 and then all possible ancestor states, before returning to the original state.
1368 This makes data entry extremely fast: M-RET to create a new headline,
1369 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1371 When the cursor is at the end of an empty plain list item, one TAB will
1372 make it a subitem, two or more tabs will back up to make this an item
1373 higher up in the item hierarchy."
1374 :group 'org-cycle
1375 :type 'boolean)
1377 (defcustom org-cycle-emulate-tab t
1378 "Where should `org-cycle' emulate TAB.
1379 nil Never
1380 white Only in completely white lines
1381 whitestart Only at the beginning of lines, before the first non-white char
1382 t Everywhere except in headlines
1383 exc-hl-bol Everywhere except at the start of a headline
1384 If TAB is used in a place where it does not emulate TAB, the current subtree
1385 visibility is cycled."
1386 :group 'org-cycle
1387 :type '(choice (const :tag "Never" nil)
1388 (const :tag "Only in completely white lines" white)
1389 (const :tag "Before first char in a line" whitestart)
1390 (const :tag "Everywhere except in headlines" t)
1391 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1393 (defcustom org-cycle-separator-lines 2
1394 "Number of empty lines needed to keep an empty line between collapsed trees.
1395 If you leave an empty line between the end of a subtree and the following
1396 headline, this empty line is hidden when the subtree is folded.
1397 Org-mode will leave (exactly) one empty line visible if the number of
1398 empty lines is equal or larger to the number given in this variable.
1399 So the default 2 means at least 2 empty lines after the end of a subtree
1400 are needed to produce free space between a collapsed subtree and the
1401 following headline.
1403 If the number is negative, and the number of empty lines is at least -N,
1404 all empty lines are shown.
1406 Special case: when 0, never leave empty lines in collapsed view."
1407 :group 'org-cycle
1408 :type 'integer)
1409 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1411 (defcustom org-pre-cycle-hook nil
1412 "Hook that is run before visibility cycling is happening.
1413 The function(s) in this hook must accept a single argument which indicates
1414 the new state that will be set right after running this hook. The
1415 argument is a symbol. Before a global state change, it can have the values
1416 `overview', `content', or `all'. Before a local state change, it can have
1417 the values `folded', `children', or `subtree'."
1418 :group 'org-cycle
1419 :type 'hook)
1421 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1422 org-cycle-hide-drawers
1423 org-cycle-show-empty-lines
1424 org-optimize-window-after-visibility-change)
1425 "Hook that is run after `org-cycle' has changed the buffer visibility.
1426 The function(s) in this hook must accept a single argument which indicates
1427 the new state that was set by the most recent `org-cycle' command. The
1428 argument is a symbol. After a global state change, it can have the values
1429 `overview', `contents', or `all'. After a local state change, it can have
1430 the values `folded', `children', or `subtree'."
1431 :group 'org-cycle
1432 :type 'hook
1433 :version "25.1"
1434 :package-version '(Org . "8.3"))
1436 (defgroup org-edit-structure nil
1437 "Options concerning structure editing in Org-mode."
1438 :tag "Org Edit Structure"
1439 :group 'org-structure)
1441 (defcustom org-odd-levels-only nil
1442 "Non-nil means skip even levels and only use odd levels for the outline.
1443 This has the effect that two stars are being added/taken away in
1444 promotion/demotion commands. It also influences how levels are
1445 handled by the exporters.
1446 Changing it requires restart of `font-lock-mode' to become effective
1447 for fontification also in regions already fontified.
1448 You may also set this on a per-file basis by adding one of the following
1449 lines to the buffer:
1451 #+STARTUP: odd
1452 #+STARTUP: oddeven"
1453 :group 'org-edit-structure
1454 :group 'org-appearance
1455 :type 'boolean)
1457 (defcustom org-adapt-indentation t
1458 "Non-nil means adapt indentation to outline node level.
1460 When this variable is set, Org assumes that you write outlines by
1461 indenting text in each node to align with the headline (after the
1462 stars). The following issues are influenced by this variable:
1464 - The indentation is increased by one space in a demotion
1465 command, and decreased by one in a promotion command. However,
1466 in the latter case, if shifting some line in the entry body
1467 would alter document structure (e.g., insert a new headline),
1468 indentation is not changed at all.
1470 - Property drawers and planning information is inserted indented
1471 when this variable is set. When nil, they will not be indented.
1473 - TAB indents a line relative to current level. The lines below
1474 a headline will be indented when this variable is set.
1476 Note that this is all about true indentation, by adding and
1477 removing space characters. See also `org-indent.el' which does
1478 level-dependent indentation in a virtual way, i.e. at display
1479 time in Emacs."
1480 :group 'org-edit-structure
1481 :type 'boolean)
1483 (defcustom org-special-ctrl-a/e nil
1484 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1486 When t, `C-a' will bring back the cursor to the beginning of the
1487 headline text, i.e. after the stars and after a possible TODO
1488 keyword. In an item, this will be the position after bullet and
1489 check-box, if any. When the cursor is already at that position,
1490 another `C-a' will bring it to the beginning of the line.
1492 `C-e' will jump to the end of the headline, ignoring the presence
1493 of tags in the headline. A second `C-e' will then jump to the
1494 true end of the line, after any tags. This also means that, when
1495 this variable is non-nil, `C-e' also will never jump beyond the
1496 end of the heading of a folded section, i.e. not after the
1497 ellipses.
1499 When set to the symbol `reversed', the first `C-a' or `C-e' works
1500 normally, going to the true line boundary first. Only a directly
1501 following, identical keypress will bring the cursor to the
1502 special positions.
1504 This may also be a cons cell where the behavior for `C-a' and
1505 `C-e' is set separately."
1506 :group 'org-edit-structure
1507 :type '(choice
1508 (const :tag "off" nil)
1509 (const :tag "on: after stars/bullet and before tags first" t)
1510 (const :tag "reversed: true line boundary first" reversed)
1511 (cons :tag "Set C-a and C-e separately"
1512 (choice :tag "Special C-a"
1513 (const :tag "off" nil)
1514 (const :tag "on: after stars/bullet first" t)
1515 (const :tag "reversed: before stars/bullet first" reversed))
1516 (choice :tag "Special C-e"
1517 (const :tag "off" nil)
1518 (const :tag "on: before tags first" t)
1519 (const :tag "reversed: after tags first" reversed)))))
1520 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1522 (defcustom org-special-ctrl-k nil
1523 "Non-nil means `C-k' will behave specially in headlines.
1524 When nil, `C-k' will call the default `kill-line' command.
1525 When t, the following will happen while the cursor is in the headline:
1527 - When the cursor is at the beginning of a headline, kill the entire
1528 line and possible the folded subtree below the line.
1529 - When in the middle of the headline text, kill the headline up to the tags.
1530 - When after the headline text, kill the tags."
1531 :group 'org-edit-structure
1532 :type 'boolean)
1534 (defcustom org-ctrl-k-protect-subtree nil
1535 "Non-nil means, do not delete a hidden subtree with C-k.
1536 When set to the symbol `error', simply throw an error when C-k is
1537 used to kill (part-of) a headline that has hidden text behind it.
1538 Any other non-nil value will result in a query to the user, if it is
1539 OK to kill that hidden subtree. When nil, kill without remorse."
1540 :group 'org-edit-structure
1541 :version "24.1"
1542 :type '(choice
1543 (const :tag "Do not protect hidden subtrees" nil)
1544 (const :tag "Protect hidden subtrees with a security query" t)
1545 (const :tag "Never kill a hidden subtree with C-k" error)))
1547 (defcustom org-special-ctrl-o t
1548 "Non-nil means, make `C-o' insert a row in tables."
1549 :group 'org-edit-structure
1550 :type 'boolean)
1552 (defcustom org-catch-invisible-edits nil
1553 "Check if in invisible region before inserting or deleting a character.
1554 Valid values are:
1556 nil Do not check, so just do invisible edits.
1557 error Throw an error and do nothing.
1558 show Make point visible, and do the requested edit.
1559 show-and-error Make point visible, then throw an error and abort the edit.
1560 smart Make point visible, and do insertion/deletion if it is
1561 adjacent to visible text and the change feels predictable.
1562 Never delete a previously invisible character or add in the
1563 middle or right after an invisible region. Basically, this
1564 allows insertion and backward-delete right before ellipses.
1565 FIXME: maybe in this case we should not even show?"
1566 :group 'org-edit-structure
1567 :version "24.1"
1568 :type '(choice
1569 (const :tag "Do not check" nil)
1570 (const :tag "Throw error when trying to edit" error)
1571 (const :tag "Unhide, but do not do the edit" show-and-error)
1572 (const :tag "Show invisible part and do the edit" show)
1573 (const :tag "Be smart and do the right thing" smart)))
1575 (defcustom org-yank-folded-subtrees t
1576 "Non-nil means when yanking subtrees, fold them.
1577 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1578 it starts with a heading and all other headings in it are either children
1579 or siblings, then fold all the subtrees. However, do this only if no
1580 text after the yank would be swallowed into a folded tree by this action."
1581 :group 'org-edit-structure
1582 :type 'boolean)
1584 (defcustom org-yank-adjusted-subtrees nil
1585 "Non-nil means when yanking subtrees, adjust the level.
1586 With this setting, `org-paste-subtree' is used to insert the subtree, see
1587 this function for details."
1588 :group 'org-edit-structure
1589 :type 'boolean)
1591 (defcustom org-M-RET-may-split-line '((default . t))
1592 "Non-nil means M-RET will split the line at the cursor position.
1593 When nil, it will go to the end of the line before making a
1594 new line.
1595 You may also set this option in a different way for different
1596 contexts. Valid contexts are:
1598 headline when creating a new headline
1599 item when creating a new item
1600 table in a table field
1601 default the value to be used for all contexts not explicitly
1602 customized"
1603 :group 'org-structure
1604 :group 'org-table
1605 :type '(choice
1606 (const :tag "Always" t)
1607 (const :tag "Never" nil)
1608 (repeat :greedy t :tag "Individual contexts"
1609 (cons
1610 (choice :tag "Context"
1611 (const headline)
1612 (const item)
1613 (const table)
1614 (const default))
1615 (boolean)))))
1618 (defcustom org-insert-heading-respect-content nil
1619 "Non-nil means insert new headings after the current subtree.
1620 When nil, the new heading is created directly after the current line.
1621 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1622 this variable on for the duration of the command."
1623 :group 'org-structure
1624 :type 'boolean)
1626 (defcustom org-blank-before-new-entry '((heading . auto)
1627 (plain-list-item . auto))
1628 "Should `org-insert-heading' leave a blank line before new heading/item?
1629 The value is an alist, with `heading' and `plain-list-item' as CAR,
1630 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1631 which case Org will look at the surrounding headings/items and try to
1632 make an intelligent decision whether to insert a blank line or not.
1634 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1635 the setting here is ignored and no empty line is inserted to avoid breaking
1636 the list structure."
1637 :group 'org-edit-structure
1638 :type '(list
1639 (cons (const heading)
1640 (choice (const :tag "Never" nil)
1641 (const :tag "Always" t)
1642 (const :tag "Auto" auto)))
1643 (cons (const plain-list-item)
1644 (choice (const :tag "Never" nil)
1645 (const :tag "Always" t)
1646 (const :tag "Auto" auto)))))
1648 (defcustom org-insert-heading-hook nil
1649 "Hook being run after inserting a new heading."
1650 :group 'org-edit-structure
1651 :type 'hook)
1653 (defcustom org-enable-fixed-width-editor t
1654 "Non-nil means lines starting with \":\" are treated as fixed-width.
1655 This currently only means they are never auto-wrapped.
1656 When nil, such lines will be treated like ordinary lines."
1657 :group 'org-edit-structure
1658 :type 'boolean)
1660 (defcustom org-goto-auto-isearch t
1661 "Non-nil means typing characters in `org-goto' starts incremental search.
1662 When nil, you can use these keybindings to navigate the buffer:
1664 q Quit the org-goto interface
1665 n Go to the next visible heading
1666 p Go to the previous visible heading
1667 f Go one heading forward on same level
1668 b Go one heading backward on same level
1669 u Go one heading up"
1670 :group 'org-edit-structure
1671 :type 'boolean)
1673 (defgroup org-sparse-trees nil
1674 "Options concerning sparse trees in Org-mode."
1675 :tag "Org Sparse Trees"
1676 :group 'org-structure)
1678 (defcustom org-highlight-sparse-tree-matches t
1679 "Non-nil means highlight all matches that define a sparse tree.
1680 The highlights will automatically disappear the next time the buffer is
1681 changed by an edit command."
1682 :group 'org-sparse-trees
1683 :type 'boolean)
1685 (defcustom org-remove-highlights-with-change t
1686 "Non-nil means any change to the buffer will remove temporary highlights.
1687 Such highlights are created by `org-occur' and `org-clock-display'.
1688 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1689 The highlights created by `org-toggle-latex-fragment' always need
1690 `C-c C-x C-l' to be removed."
1691 :group 'org-sparse-trees
1692 :group 'org-time
1693 :type 'boolean)
1696 (defcustom org-occur-hook '(org-first-headline-recenter)
1697 "Hook that is run after `org-occur' has constructed a sparse tree.
1698 This can be used to recenter the window to show as much of the structure
1699 as possible."
1700 :group 'org-sparse-trees
1701 :type 'hook)
1703 (defgroup org-imenu-and-speedbar nil
1704 "Options concerning imenu and speedbar in Org-mode."
1705 :tag "Org Imenu and Speedbar"
1706 :group 'org-structure)
1708 (defcustom org-imenu-depth 2
1709 "The maximum level for Imenu access to Org-mode headlines.
1710 This also applied for speedbar access."
1711 :group 'org-imenu-and-speedbar
1712 :type 'integer)
1714 (defgroup org-table nil
1715 "Options concerning tables in Org-mode."
1716 :tag "Org Table"
1717 :group 'org)
1719 (defcustom org-enable-table-editor 'optimized
1720 "Non-nil means lines starting with \"|\" are handled by the table editor.
1721 When nil, such lines will be treated like ordinary lines.
1723 When equal to the symbol `optimized', the table editor will be optimized to
1724 do the following:
1725 - Automatic overwrite mode in front of whitespace in table fields.
1726 This makes the structure of the table stay in tact as long as the edited
1727 field does not exceed the column width.
1728 - Minimize the number of realigns. Normally, the table is aligned each time
1729 TAB or RET are pressed to move to another field. With optimization this
1730 happens only if changes to a field might have changed the column width.
1731 Optimization requires replacing the functions `self-insert-command',
1732 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1733 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1734 very good at guessing when a re-align will be necessary, but you can always
1735 force one with \\[org-ctrl-c-ctrl-c].
1737 If you would like to use the optimized version in Org-mode, but the
1738 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1740 This variable can be used to turn on and off the table editor during a session,
1741 but in order to toggle optimization, a restart is required.
1743 See also the variable `org-table-auto-blank-field'."
1744 :group 'org-table
1745 :type '(choice
1746 (const :tag "off" nil)
1747 (const :tag "on" t)
1748 (const :tag "on, optimized" optimized)))
1750 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1751 (version<= emacs-version "24.1"))
1752 "Non-nil means cluster self-insert commands for undo when possible.
1753 If this is set, then, like in the Emacs command loop, 20 consecutive
1754 characters will be undone together.
1755 This is configurable, because there is some impact on typing performance."
1756 :group 'org-table
1757 :type 'boolean)
1759 (defcustom org-table-tab-recognizes-table.el t
1760 "Non-nil means TAB will automatically notice a table.el table.
1761 When it sees such a table, it moves point into it and - if necessary -
1762 calls `table-recognize-table'."
1763 :group 'org-table-editing
1764 :type 'boolean)
1766 (defgroup org-link nil
1767 "Options concerning links in Org-mode."
1768 :tag "Org Link"
1769 :group 'org)
1771 (defvar org-link-abbrev-alist-local nil
1772 "Buffer-local version of `org-link-abbrev-alist', which see.
1773 The value of this is taken from the #+LINK lines.")
1774 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1776 (defcustom org-link-abbrev-alist nil
1777 "Alist of link abbreviations.
1778 The car of each element is a string, to be replaced at the start of a link.
1779 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1780 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1782 [[linkkey:tag][description]]
1784 The 'linkkey' must be a word word, starting with a letter, followed
1785 by letters, numbers, '-' or '_'.
1787 If REPLACE is a string, the tag will simply be appended to create the link.
1788 If the string contains \"%s\", the tag will be inserted there. If the string
1789 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1790 at that point (see the function `url-hexify-string'). If the string contains
1791 the specifier \"%(my-function)\", then the custom function `my-function' will
1792 be invoked: this function takes the tag as its only argument and must return
1793 a string.
1795 REPLACE may also be a function that will be called with the tag as the
1796 only argument to create the link, which should be returned as a string.
1798 See the manual for examples."
1799 :group 'org-link
1800 :type '(repeat
1801 (cons
1802 (string :tag "Protocol")
1803 (choice
1804 (string :tag "Format")
1805 (function)))))
1807 (defcustom org-descriptive-links t
1808 "Non-nil means Org will display descriptive links.
1809 E.g. [[http://orgmode.org][Org website]] will be displayed as
1810 \"Org Website\", hiding the link itself and just displaying its
1811 description. When set to `nil', Org will display the full links
1812 literally.
1814 You can interactively set the value of this variable by calling
1815 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1816 :group 'org-link
1817 :type 'boolean)
1819 (defcustom org-link-file-path-type 'adaptive
1820 "How the path name in file links should be stored.
1821 Valid values are:
1823 relative Relative to the current directory, i.e. the directory of the file
1824 into which the link is being inserted.
1825 absolute Absolute path, if possible with ~ for home directory.
1826 noabbrev Absolute path, no abbreviation of home directory.
1827 adaptive Use relative path for files in the current directory and sub-
1828 directories of it. For other files, use an absolute path."
1829 :group 'org-link
1830 :type '(choice
1831 (const relative)
1832 (const absolute)
1833 (const noabbrev)
1834 (const adaptive)))
1836 (defvaralias 'org-activate-links 'org-highlight-links)
1837 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1838 "Types of links that should be highlighted in Org-mode files.
1840 This is a list of symbols, each one of them leading to the
1841 highlighting of a certain link type.
1843 You can still open links that are not highlighted.
1845 In principle, it does not hurt to turn on highlighting for all
1846 link types. There may be a small gain when turning off unused
1847 link types. The types are:
1849 bracket The recommended [[link][description]] or [[link]] links with hiding.
1850 angle Links in angular brackets that may contain whitespace like
1851 <bbdb:Carsten Dominik>.
1852 plain Plain links in normal text, no whitespace, like http://google.com.
1853 radio Text that is matched by a radio target, see manual for details.
1854 tag Tag settings in a headline (link to tag search).
1855 date Time stamps (link to calendar).
1856 footnote Footnote labels.
1858 If you set this variable during an Emacs session, use `org-mode-restart'
1859 in the Org buffer so that the change takes effect."
1860 :group 'org-link
1861 :group 'org-appearance
1862 :type '(set :greedy t
1863 (const :tag "Double bracket links" bracket)
1864 (const :tag "Angular bracket links" angle)
1865 (const :tag "Plain text links" plain)
1866 (const :tag "Radio target matches" radio)
1867 (const :tag "Tags" tag)
1868 (const :tag "Timestamps" date)
1869 (const :tag "Footnotes" footnote)))
1871 (defcustom org-make-link-description-function nil
1872 "Function to use for generating link descriptions from links.
1873 When nil, the link location will be used. This function must take
1874 two parameters: the first one is the link, the second one is the
1875 description generated by `org-insert-link'. The function should
1876 return the description to use."
1877 :group 'org-link
1878 :type '(choice (const nil) (function)))
1880 (defgroup org-link-store nil
1881 "Options concerning storing links in Org-mode."
1882 :tag "Org Store Link"
1883 :group 'org-link)
1885 (defcustom org-url-hexify-p t
1886 "When non-nil, hexify URL when creating a link."
1887 :type 'boolean
1888 :version "24.3"
1889 :group 'org-link-store)
1891 (defcustom org-email-link-description-format "Email %c: %.30s"
1892 "Format of the description part of a link to an email or usenet message.
1893 The following %-escapes will be replaced by corresponding information:
1895 %F full \"From\" field
1896 %f name, taken from \"From\" field, address if no name
1897 %T full \"To\" field
1898 %t first name in \"To\" field, address if no name
1899 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1900 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1901 %s subject
1902 %d date
1903 %m message-id.
1905 You may use normal field width specification between the % and the letter.
1906 This is for example useful to limit the length of the subject.
1908 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1909 :group 'org-link-store
1910 :type 'string)
1912 (defcustom org-from-is-user-regexp
1913 (let (r1 r2)
1914 (when (and user-mail-address (not (string= user-mail-address "")))
1915 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1916 (when (and user-full-name (not (string= user-full-name "")))
1917 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1918 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1919 "Regexp matched against the \"From:\" header of an email or usenet message.
1920 It should match if the message is from the user him/herself."
1921 :group 'org-link-store
1922 :type 'regexp)
1924 (defcustom org-context-in-file-links t
1925 "Non-nil means file links from `org-store-link' contain context.
1926 A search string will be added to the file name with :: as separator and
1927 used to find the context when the link is activated by the command
1928 `org-open-at-point'. When this option is t, the entire active region
1929 will be placed in the search string of the file link. If set to a
1930 positive integer, only the first n lines of context will be stored.
1932 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1933 negates this setting for the duration of the command."
1934 :group 'org-link-store
1935 :type '(choice boolean integer))
1937 (defcustom org-keep-stored-link-after-insertion nil
1938 "Non-nil means keep link in list for entire session.
1940 The command `org-store-link' adds a link pointing to the current
1941 location to an internal list. These links accumulate during a session.
1942 The command `org-insert-link' can be used to insert links into any
1943 Org-mode file (offering completion for all stored links). When this
1944 option is nil, every link which has been inserted once using \\[org-insert-link]
1945 will be removed from the list, to make completing the unused links
1946 more efficient."
1947 :group 'org-link-store
1948 :type 'boolean)
1950 (defgroup org-link-follow nil
1951 "Options concerning following links in Org-mode."
1952 :tag "Org Follow Link"
1953 :group 'org-link)
1955 (defcustom org-link-translation-function nil
1956 "Function to translate links with different syntax to Org syntax.
1957 This can be used to translate links created for example by the Planner
1958 or emacs-wiki packages to Org syntax.
1959 The function must accept two parameters, a TYPE containing the link
1960 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1961 which is everything after the link protocol. It should return a cons
1962 with possibly modified values of type and path.
1963 Org contains a function for this, so if you set this variable to
1964 `org-translate-link-from-planner', you should be able follow many
1965 links created by planner."
1966 :group 'org-link-follow
1967 :type '(choice (const nil) (function)))
1969 (defcustom org-follow-link-hook nil
1970 "Hook that is run after a link has been followed."
1971 :group 'org-link-follow
1972 :type 'hook)
1974 (defcustom org-tab-follows-link nil
1975 "Non-nil means on links TAB will follow the link.
1976 Needs to be set before org.el is loaded.
1977 This really should not be used, it does not make sense, and the
1978 implementation is bad."
1979 :group 'org-link-follow
1980 :type 'boolean)
1982 (defcustom org-return-follows-link nil
1983 "Non-nil means on links RET will follow the link.
1984 In tables, the special behavior of RET has precedence."
1985 :group 'org-link-follow
1986 :type 'boolean)
1988 (defcustom org-mouse-1-follows-link
1989 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1990 "Non-nil means mouse-1 on a link will follow the link.
1991 A longer mouse click will still set point. Does not work on XEmacs.
1992 Needs to be set before org.el is loaded."
1993 :group 'org-link-follow
1994 :version "24.4"
1995 :package-version '(Org . "8.3")
1996 :type '(choice
1997 (const :tag "A double click follows the link" double)
1998 (const :tag "Unconditionally follow the link with mouse-1" t)
1999 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2001 (defcustom org-mark-ring-length 4
2002 "Number of different positions to be recorded in the ring.
2003 Changing this requires a restart of Emacs to work correctly."
2004 :group 'org-link-follow
2005 :type 'integer)
2007 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2008 "Non-nil means internal links in Org files must exactly match a headline.
2009 When nil, the link search tries to match a phrase with all words
2010 in the search text."
2011 :group 'org-link-follow
2012 :version "24.1"
2013 :type '(choice
2014 (const :tag "Use fuzzy text search" nil)
2015 (const :tag "Match only exact headline" t)
2016 (const :tag "Match exact headline or query to create it"
2017 query-to-create)))
2019 (defcustom org-link-frame-setup
2020 '((vm . vm-visit-folder-other-frame)
2021 (vm-imap . vm-visit-imap-folder-other-frame)
2022 (gnus . org-gnus-no-new-news)
2023 (file . find-file-other-window)
2024 (wl . wl-other-frame))
2025 "Setup the frame configuration for following links.
2026 When following a link with Emacs, it may often be useful to display
2027 this link in another window or frame. This variable can be used to
2028 set this up for the different types of links.
2029 For VM, use any of
2030 `vm-visit-folder'
2031 `vm-visit-folder-other-window'
2032 `vm-visit-folder-other-frame'
2033 For Gnus, use any of
2034 `gnus'
2035 `gnus-other-frame'
2036 `org-gnus-no-new-news'
2037 For FILE, use any of
2038 `find-file'
2039 `find-file-other-window'
2040 `find-file-other-frame'
2041 For Wanderlust use any of
2042 `wl'
2043 `wl-other-frame'
2044 For the calendar, use the variable `calendar-setup'.
2045 For BBDB, it is currently only possible to display the matches in
2046 another window."
2047 :group 'org-link-follow
2048 :type '(list
2049 (cons (const vm)
2050 (choice
2051 (const vm-visit-folder)
2052 (const vm-visit-folder-other-window)
2053 (const vm-visit-folder-other-frame)))
2054 (cons (const vm-imap)
2055 (choice
2056 (const vm-visit-imap-folder)
2057 (const vm-visit-imap-folder-other-window)
2058 (const vm-visit-imap-folder-other-frame)))
2059 (cons (const gnus)
2060 (choice
2061 (const gnus)
2062 (const gnus-other-frame)
2063 (const org-gnus-no-new-news)))
2064 (cons (const file)
2065 (choice
2066 (const find-file)
2067 (const find-file-other-window)
2068 (const find-file-other-frame)))
2069 (cons (const wl)
2070 (choice
2071 (const wl)
2072 (const wl-other-frame)))))
2074 (defcustom org-display-internal-link-with-indirect-buffer nil
2075 "Non-nil means use indirect buffer to display infile links.
2076 Activating internal links (from one location in a file to another location
2077 in the same file) normally just jumps to the location. When the link is
2078 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2079 is displayed in
2080 another window. When this option is set, the other window actually displays
2081 an indirect buffer clone of the current buffer, to avoid any visibility
2082 changes to the current buffer."
2083 :group 'org-link-follow
2084 :type 'boolean)
2086 (defcustom org-open-non-existing-files nil
2087 "Non-nil means `org-open-file' will open non-existing files.
2088 When nil, an error will be generated.
2089 This variable applies only to external applications because they
2090 might choke on non-existing files. If the link is to a file that
2091 will be opened in Emacs, the variable is ignored."
2092 :group 'org-link-follow
2093 :type 'boolean)
2095 (defcustom org-open-directory-means-index-dot-org nil
2096 "Non-nil means a link to a directory really means to index.org.
2097 When nil, following a directory link will run dired or open a finder/explorer
2098 window on that directory."
2099 :group 'org-link-follow
2100 :type 'boolean)
2102 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2103 "Non-nil means ask for confirmation before executing shell links.
2104 Shell links can be dangerous: just think about a link
2106 [[shell:rm -rf ~/*][Google Search]]
2108 This link would show up in your Org-mode document as \"Google Search\",
2109 but really it would remove your entire home directory.
2110 Therefore we advise against setting this variable to nil.
2111 Just change it to `y-or-n-p' if you want to confirm with a
2112 single keystroke rather than having to type \"yes\"."
2113 :group 'org-link-follow
2114 :type '(choice
2115 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2116 (const :tag "with y-or-n (faster)" y-or-n-p)
2117 (const :tag "no confirmation (dangerous)" nil)))
2118 (put 'org-confirm-shell-link-function
2119 'safe-local-variable
2120 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2122 (defcustom org-confirm-shell-link-not-regexp ""
2123 "A regexp to skip confirmation for shell links."
2124 :group 'org-link-follow
2125 :version "24.1"
2126 :type 'regexp)
2128 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2129 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2130 Elisp links can be dangerous: just think about a link
2132 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2134 This link would show up in your Org-mode document as \"Google Search\",
2135 but really it would remove your entire home directory.
2136 Therefore we advise against setting this variable to nil.
2137 Just change it to `y-or-n-p' if you want to confirm with a
2138 single keystroke rather than having to type \"yes\"."
2139 :group 'org-link-follow
2140 :type '(choice
2141 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2142 (const :tag "with y-or-n (faster)" y-or-n-p)
2143 (const :tag "no confirmation (dangerous)" nil)))
2144 (put 'org-confirm-shell-link-function
2145 'safe-local-variable
2146 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2148 (defcustom org-confirm-elisp-link-not-regexp ""
2149 "A regexp to skip confirmation for Elisp links."
2150 :group 'org-link-follow
2151 :version "24.1"
2152 :type 'regexp)
2154 (defconst org-file-apps-defaults-gnu
2155 '((remote . emacs)
2156 (system . mailcap)
2157 (t . mailcap))
2158 "Default file applications on a UNIX or GNU/Linux system.
2159 See `org-file-apps'.")
2161 (defconst org-file-apps-defaults-macosx
2162 '((remote . emacs)
2163 (t . "open %s")
2164 (system . "open %s")
2165 ("ps.gz" . "gv %s")
2166 ("eps.gz" . "gv %s")
2167 ("dvi" . "xdvi %s")
2168 ("fig" . "xfig %s"))
2169 "Default file applications on a MacOS X system.
2170 The system \"open\" is known as a default, but we use X11 applications
2171 for some files for which the OS does not have a good default.
2172 See `org-file-apps'.")
2174 (defconst org-file-apps-defaults-windowsnt
2175 (list
2176 '(remote . emacs)
2177 (cons t
2178 (list (if (featurep 'xemacs)
2179 'mswindows-shell-execute
2180 'w32-shell-execute)
2181 "open" 'file))
2182 (cons 'system
2183 (list (if (featurep 'xemacs)
2184 'mswindows-shell-execute
2185 'w32-shell-execute)
2186 "open" 'file)))
2187 "Default file applications on a Windows NT system.
2188 The system \"open\" is used for most files.
2189 See `org-file-apps'.")
2191 (defcustom org-file-apps
2192 '((auto-mode . emacs)
2193 ("\\.mm\\'" . default)
2194 ("\\.x?html?\\'" . default)
2195 ("\\.pdf\\'" . default))
2196 "External applications for opening `file:path' items in a document.
2197 Org-mode uses system defaults for different file types, but
2198 you can use this variable to set the application for a given file
2199 extension. The entries in this list are cons cells where the car identifies
2200 files and the cdr the corresponding command. Possible values for the
2201 file identifier are
2202 \"string\" A string as a file identifier can be interpreted in different
2203 ways, depending on its contents:
2205 - Alphanumeric characters only:
2206 Match links with this file extension.
2207 Example: (\"pdf\" . \"evince %s\")
2208 to open PDFs with evince.
2210 - Regular expression: Match links where the
2211 filename matches the regexp. If you want to
2212 use groups here, use shy groups.
2214 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2215 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2216 to open *.html and *.xhtml with firefox.
2218 - Regular expression which contains (non-shy) groups:
2219 Match links where the whole link, including \"::\", and
2220 anything after that, matches the regexp.
2221 In a custom command string, %1, %2, etc. are replaced with
2222 the parts of the link that were matched by the groups.
2223 For backwards compatibility, if a command string is given
2224 that does not use any of the group matches, this case is
2225 handled identically to the second one (i.e. match against
2226 file name only).
2227 In a custom lisp form, you can access the group matches with
2228 (match-string n link).
2230 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2231 to open [[file:document.pdf::5]] with evince at page 5.
2233 `directory' Matches a directory
2234 `remote' Matches a remote file, accessible through tramp or efs.
2235 Remote files most likely should be visited through Emacs
2236 because external applications cannot handle such paths.
2237 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2238 so all files Emacs knows how to handle. Using this with
2239 command `emacs' will open most files in Emacs. Beware that this
2240 will also open html files inside Emacs, unless you add
2241 (\"html\" . default) to the list as well.
2242 t Default for files not matched by any of the other options.
2243 `system' The system command to open files, like `open' on Windows
2244 and Mac OS X, and mailcap under GNU/Linux. This is the command
2245 that will be selected if you call `C-c C-o' with a double
2246 \\[universal-argument] \\[universal-argument] prefix.
2248 Possible values for the command are:
2249 `emacs' The file will be visited by the current Emacs process.
2250 `default' Use the default application for this file type, which is the
2251 association for t in the list, most likely in the system-specific
2252 part.
2253 This can be used to overrule an unwanted setting in the
2254 system-specific variable.
2255 `system' Use the system command for opening files, like \"open\".
2256 This command is specified by the entry whose car is `system'.
2257 Most likely, the system-specific version of this variable
2258 does define this command, but you can overrule/replace it
2259 here.
2260 string A command to be executed by a shell; %s will be replaced
2261 by the path to the file.
2262 sexp A Lisp form which will be evaluated. The file path will
2263 be available in the Lisp variable `file'.
2264 For more examples, see the system specific constants
2265 `org-file-apps-defaults-macosx'
2266 `org-file-apps-defaults-windowsnt'
2267 `org-file-apps-defaults-gnu'."
2268 :group 'org-link-follow
2269 :type '(repeat
2270 (cons (choice :value ""
2271 (string :tag "Extension")
2272 (const :tag "System command to open files" system)
2273 (const :tag "Default for unrecognized files" t)
2274 (const :tag "Remote file" remote)
2275 (const :tag "Links to a directory" directory)
2276 (const :tag "Any files that have Emacs modes"
2277 auto-mode))
2278 (choice :value ""
2279 (const :tag "Visit with Emacs" emacs)
2280 (const :tag "Use default" default)
2281 (const :tag "Use the system command" system)
2282 (string :tag "Command")
2283 (sexp :tag "Lisp form")))))
2285 (defcustom org-doi-server-url "http://dx.doi.org/"
2286 "The URL of the DOI server."
2287 :type 'string
2288 :version "24.3"
2289 :group 'org-link-follow)
2291 (defgroup org-refile nil
2292 "Options concerning refiling entries in Org-mode."
2293 :tag "Org Refile"
2294 :group 'org)
2296 (defcustom org-directory "~/org"
2297 "Directory with org files.
2298 This is just a default location to look for Org files. There is no need
2299 at all to put your files into this directory. It is only used in the
2300 following situations:
2302 1. When a capture template specifies a target file that is not an
2303 absolute path. The path will then be interpreted relative to
2304 `org-directory'
2305 2. When a capture note is filed away in an interactive way (when exiting the
2306 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2307 with `org-directory' as the default path."
2308 :group 'org-refile
2309 :group 'org-capture
2310 :type 'directory)
2312 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2313 "Default target for storing notes.
2314 Used as a fall back file for org-capture.el, for templates that
2315 do not specify a target file."
2316 :group 'org-refile
2317 :group 'org-capture
2318 :type 'file)
2320 (defcustom org-goto-interface 'outline
2321 "The default interface to be used for `org-goto'.
2322 Allowed values are:
2323 outline The interface shows an outline of the relevant file
2324 and the correct heading is found by moving through
2325 the outline or by searching with incremental search.
2326 outline-path-completion Headlines in the current buffer are offered via
2327 completion. This is the interface also used by
2328 the refile command."
2329 :group 'org-refile
2330 :type '(choice
2331 (const :tag "Outline" outline)
2332 (const :tag "Outline-path-completion" outline-path-completion)))
2334 (defcustom org-goto-max-level 5
2335 "Maximum target level when running `org-goto' with refile interface."
2336 :group 'org-refile
2337 :type 'integer)
2339 (defcustom org-reverse-note-order nil
2340 "Non-nil means store new notes at the beginning of a file or entry.
2341 When nil, new notes will be filed to the end of a file or entry.
2342 This can also be a list with cons cells of regular expressions that
2343 are matched against file names, and values."
2344 :group 'org-capture
2345 :group 'org-refile
2346 :type '(choice
2347 (const :tag "Reverse always" t)
2348 (const :tag "Reverse never" nil)
2349 (repeat :tag "By file name regexp"
2350 (cons regexp boolean))))
2352 (defcustom org-log-refile nil
2353 "Information to record when a task is refiled.
2355 Possible values are:
2357 nil Don't add anything
2358 time Add a time stamp to the task
2359 note Prompt for a note and add it with template `org-log-note-headings'
2361 This option can also be set with on a per-file-basis with
2363 #+STARTUP: nologrefile
2364 #+STARTUP: logrefile
2365 #+STARTUP: lognoterefile
2367 You can have local logging settings for a subtree by setting the LOGGING
2368 property to one or more of these keywords.
2370 When bulk-refiling from the agenda, the value `note' is forbidden and
2371 will temporarily be changed to `time'."
2372 :group 'org-refile
2373 :group 'org-progress
2374 :version "24.1"
2375 :type '(choice
2376 (const :tag "No logging" nil)
2377 (const :tag "Record timestamp" time)
2378 (const :tag "Record timestamp with note." note)))
2380 (defcustom org-refile-targets nil
2381 "Targets for refiling entries with \\[org-refile].
2382 This is a list of cons cells. Each cell contains:
2383 - a specification of the files to be considered, either a list of files,
2384 or a symbol whose function or variable value will be used to retrieve
2385 a file name or a list of file names. If you use `org-agenda-files' for
2386 that, all agenda files will be scanned for targets. Nil means consider
2387 headings in the current buffer.
2388 - A specification of how to find candidate refile targets. This may be
2389 any of:
2390 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2391 This tag has to be present in all target headlines, inheritance will
2392 not be considered.
2393 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2394 todo keyword.
2395 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2396 headlines that are refiling targets.
2397 - a cons cell (:level . N). Any headline of level N is considered a target.
2398 Note that, when `org-odd-levels-only' is set, level corresponds to
2399 order in hierarchy, not to the number of stars.
2400 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2404 Each element of this list generates a set of possible targets.
2405 The union of these sets is presented (with completion) to
2406 the user by `org-refile'.
2408 You can set the variable `org-refile-target-verify-function' to a function
2409 to verify each headline found by the simple criteria above.
2411 When this variable is nil, all top-level headlines in the current buffer
2412 are used, equivalent to the value `((nil . (:level . 1))'."
2413 :group 'org-refile
2414 :type '(repeat
2415 (cons
2416 (choice :value org-agenda-files
2417 (const :tag "All agenda files" org-agenda-files)
2418 (const :tag "Current buffer" nil)
2419 (function) (variable) (file))
2420 (choice :tag "Identify target headline by"
2421 (cons :tag "Specific tag" (const :value :tag) (string))
2422 (cons :tag "TODO keyword" (const :value :todo) (string))
2423 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2424 (cons :tag "Level number" (const :value :level) (integer))
2425 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2427 (defcustom org-refile-target-verify-function nil
2428 "Function to verify if the headline at point should be a refile target.
2429 The function will be called without arguments, with point at the
2430 beginning of the headline. It should return t and leave point
2431 where it is if the headline is a valid target for refiling.
2433 If the target should not be selected, the function must return nil.
2434 In addition to this, it may move point to a place from where the search
2435 should be continued. For example, the function may decide that the entire
2436 subtree of the current entry should be excluded and move point to the end
2437 of the subtree."
2438 :group 'org-refile
2439 :type '(choice
2440 (const nil)
2441 (function)))
2443 (defcustom org-refile-use-cache nil
2444 "Non-nil means cache refile targets to speed up the process.
2445 The cache for a particular file will be updated automatically when
2446 the buffer has been killed, or when any of the marker used for flagging
2447 refile targets no longer points at a live buffer.
2448 If you have added new entries to a buffer that might themselves be targets,
2449 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2450 find that easier, `C-u C-u C-u C-c C-w'."
2451 :group 'org-refile
2452 :version "24.1"
2453 :type 'boolean)
2455 (defcustom org-refile-use-outline-path nil
2456 "Non-nil means provide refile targets as paths.
2457 So a level 3 headline will be available as level1/level2/level3.
2459 When the value is `file', also include the file name (without directory)
2460 into the path. In this case, you can also stop the completion after
2461 the file name, to get entries inserted as top level in the file.
2463 When `full-file-path', include the full file path."
2464 :group 'org-refile
2465 :type '(choice
2466 (const :tag "Not" nil)
2467 (const :tag "Yes" t)
2468 (const :tag "Start with file name" file)
2469 (const :tag "Start with full file path" full-file-path)))
2471 (defcustom org-outline-path-complete-in-steps t
2472 "Non-nil means complete the outline path in hierarchical steps.
2473 When Org-mode uses the refile interface to select an outline path
2474 \(see variable `org-refile-use-outline-path'), the completion of
2475 the path can be done in a single go, or it can be done in steps down
2476 the headline hierarchy. Going in steps is probably the best if you
2477 do not use a special completion package like `ido' or `icicles'.
2478 However, when using these packages, going in one step can be very
2479 fast, while still showing the whole path to the entry."
2480 :group 'org-refile
2481 :type 'boolean)
2483 (defcustom org-refile-allow-creating-parent-nodes nil
2484 "Non-nil means allow to create new nodes as refile targets.
2485 New nodes are then created by adding \"/new node name\" to the completion
2486 of an existing node. When the value of this variable is `confirm',
2487 new node creation must be confirmed by the user (recommended).
2488 When nil, the completion must match an existing entry.
2490 Note that, if the new heading is not seen by the criteria
2491 listed in `org-refile-targets', multiple instances of the same
2492 heading would be created by trying again to file under the new
2493 heading."
2494 :group 'org-refile
2495 :type '(choice
2496 (const :tag "Never" nil)
2497 (const :tag "Always" t)
2498 (const :tag "Prompt for confirmation" confirm)))
2500 (defcustom org-refile-active-region-within-subtree nil
2501 "Non-nil means also refile active region within a subtree.
2503 By default `org-refile' doesn't allow refiling regions if they
2504 don't contain a set of subtrees, but it might be convenient to
2505 do so sometimes: in that case, the first line of the region is
2506 converted to a headline before refiling."
2507 :group 'org-refile
2508 :version "24.1"
2509 :type 'boolean)
2511 (defgroup org-todo nil
2512 "Options concerning TODO items in Org-mode."
2513 :tag "Org TODO"
2514 :group 'org)
2516 (defgroup org-progress nil
2517 "Options concerning Progress logging in Org-mode."
2518 :tag "Org Progress"
2519 :group 'org-time)
2521 (defvar org-todo-interpretation-widgets
2522 '((:tag "Sequence (cycling hits every state)" sequence)
2523 (:tag "Type (cycling directly to DONE)" type))
2524 "The available interpretation symbols for customizing `org-todo-keywords'.
2525 Interested libraries should add to this list.")
2527 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2528 "List of TODO entry keyword sequences and their interpretation.
2529 \\<org-mode-map>This is a list of sequences.
2531 Each sequence starts with a symbol, either `sequence' or `type',
2532 indicating if the keywords should be interpreted as a sequence of
2533 action steps, or as different types of TODO items. The first
2534 keywords are states requiring action - these states will select a headline
2535 for inclusion into the global TODO list Org-mode produces. If one of
2536 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2537 signify that no further action is necessary. If \"|\" is not found,
2538 the last keyword is treated as the only DONE state of the sequence.
2540 The command \\[org-todo] cycles an entry through these states, and one
2541 additional state where no keyword is present. For details about this
2542 cycling, see the manual.
2544 TODO keywords and interpretation can also be set on a per-file basis with
2545 the special #+SEQ_TODO and #+TYP_TODO lines.
2547 Each keyword can optionally specify a character for fast state selection
2548 \(in combination with the variable `org-use-fast-todo-selection')
2549 and specifiers for state change logging, using the same syntax that
2550 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2551 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2552 indicates to record a time stamp each time this state is selected.
2554 Each keyword may also specify if a timestamp or a note should be
2555 recorded when entering or leaving the state, by adding additional
2556 characters in the parenthesis after the keyword. This looks like this:
2557 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2558 record only the time of the state change. With X and Y being either
2559 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2560 Y when leaving the state if and only if the *target* state does not
2561 define X. You may omit any of the fast-selection key or X or /Y,
2562 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2564 For backward compatibility, this variable may also be just a list
2565 of keywords. In this case the interpretation (sequence or type) will be
2566 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2567 :group 'org-todo
2568 :group 'org-keywords
2569 :type '(choice
2570 (repeat :tag "Old syntax, just keywords"
2571 (string :tag "Keyword"))
2572 (repeat :tag "New syntax"
2573 (cons
2574 (choice
2575 :tag "Interpretation"
2576 ;;Quick and dirty way to see
2577 ;;`org-todo-interpretations'. This takes the
2578 ;;place of item arguments
2579 :convert-widget
2580 (lambda (widget)
2581 (widget-put widget
2582 :args (mapcar
2583 (lambda (x)
2584 (widget-convert
2585 (cons 'const x)))
2586 org-todo-interpretation-widgets))
2587 widget))
2588 (repeat
2589 (string :tag "Keyword"))))))
2591 (defvar org-todo-keywords-1 nil
2592 "All TODO and DONE keywords active in a buffer.")
2593 (make-variable-buffer-local 'org-todo-keywords-1)
2594 (defvar org-todo-keywords-for-agenda nil)
2595 (defvar org-done-keywords-for-agenda nil)
2596 (defvar org-todo-keyword-alist-for-agenda nil)
2597 (defvar org-tag-alist-for-agenda nil
2598 "Alist of all tags from all agenda files.")
2599 (defvar org-tag-groups-alist-for-agenda nil
2600 "Alist of all groups tags from all current agenda files.")
2601 (defvar org-tag-groups-alist nil)
2602 (make-variable-buffer-local 'org-tag-groups-alist)
2603 (defvar org-agenda-contributing-files nil)
2604 (defvar org-not-done-keywords nil)
2605 (make-variable-buffer-local 'org-not-done-keywords)
2606 (defvar org-done-keywords nil)
2607 (make-variable-buffer-local 'org-done-keywords)
2608 (defvar org-todo-heads nil)
2609 (make-variable-buffer-local 'org-todo-heads)
2610 (defvar org-todo-sets nil)
2611 (make-variable-buffer-local 'org-todo-sets)
2612 (defvar org-todo-log-states nil)
2613 (make-variable-buffer-local 'org-todo-log-states)
2614 (defvar org-todo-kwd-alist nil)
2615 (make-variable-buffer-local 'org-todo-kwd-alist)
2616 (defvar org-todo-key-alist nil)
2617 (make-variable-buffer-local 'org-todo-key-alist)
2618 (defvar org-todo-key-trigger nil)
2619 (make-variable-buffer-local 'org-todo-key-trigger)
2621 (defcustom org-todo-interpretation 'sequence
2622 "Controls how TODO keywords are interpreted.
2623 This variable is in principle obsolete and is only used for
2624 backward compatibility, if the interpretation of todo keywords is
2625 not given already in `org-todo-keywords'. See that variable for
2626 more information."
2627 :group 'org-todo
2628 :group 'org-keywords
2629 :type '(choice (const sequence)
2630 (const type)))
2632 (defcustom org-use-fast-todo-selection t
2633 "Non-nil means use the fast todo selection scheme with C-c C-t.
2634 This variable describes if and under what circumstances the cycling
2635 mechanism for TODO keywords will be replaced by a single-key, direct
2636 selection scheme.
2638 When nil, fast selection is never used.
2640 When the symbol `prefix', it will be used when `org-todo' is called
2641 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2642 `C-u t' in an agenda buffer.
2644 When t, fast selection is used by default. In this case, the prefix
2645 argument forces cycling instead.
2647 In all cases, the special interface is only used if access keys have
2648 actually been assigned by the user, i.e. if keywords in the configuration
2649 are followed by a letter in parenthesis, like TODO(t)."
2650 :group 'org-todo
2651 :type '(choice
2652 (const :tag "Never" nil)
2653 (const :tag "By default" t)
2654 (const :tag "Only with C-u C-c C-t" prefix)))
2656 (defcustom org-provide-todo-statistics t
2657 "Non-nil means update todo statistics after insert and toggle.
2658 ALL-HEADLINES means update todo statistics by including headlines
2659 with no TODO keyword as well, counting them as not done.
2660 A list of TODO keywords means the same, but skip keywords that are
2661 not in this list.
2662 When set to a list of two lists, the first list contains keywords
2663 to consider as TODO keywords, the second list contains keywords
2664 to consider as DONE keywords.
2666 When this is set, todo statistics is updated in the parent of the
2667 current entry each time a todo state is changed."
2668 :group 'org-todo
2669 :type '(choice
2670 (const :tag "Yes, only for TODO entries" t)
2671 (const :tag "Yes, including all entries" all-headlines)
2672 (repeat :tag "Yes, for TODOs in this list"
2673 (string :tag "TODO keyword"))
2674 (list :tag "Yes, for TODOs and DONEs in these lists"
2675 (repeat (string :tag "TODO keyword"))
2676 (repeat (string :tag "DONE keyword")))
2677 (other :tag "No TODO statistics" nil)))
2679 (defcustom org-hierarchical-todo-statistics t
2680 "Non-nil means TODO statistics covers just direct children.
2681 When nil, all entries in the subtree are considered.
2682 This has only an effect if `org-provide-todo-statistics' is set.
2683 To set this to nil for only a single subtree, use a COOKIE_DATA
2684 property and include the word \"recursive\" into the value."
2685 :group 'org-todo
2686 :type 'boolean)
2688 (defcustom org-after-todo-state-change-hook nil
2689 "Hook which is run after the state of a TODO item was changed.
2690 The new state (a string with a TODO keyword, or nil) is available in the
2691 Lisp variable `org-state'."
2692 :group 'org-todo
2693 :type 'hook)
2695 (defvar org-blocker-hook nil
2696 "Hook for functions that are allowed to block a state change.
2698 Functions in this hook should not modify the buffer.
2699 Each function gets as its single argument a property list,
2700 see `org-trigger-hook' for more information about this list.
2702 If any of the functions in this hook returns nil, the state change
2703 is blocked.")
2705 (defvar org-trigger-hook nil
2706 "Hook for functions that are triggered by a state change.
2708 Each function gets as its single argument a property list with at
2709 least the following elements:
2711 (:type type-of-change :position pos-at-entry-start
2712 :from old-state :to new-state)
2714 Depending on the type, more properties may be present.
2716 This mechanism is currently implemented for:
2718 TODO state changes
2719 ------------------
2720 :type todo-state-change
2721 :from previous state (keyword as a string), or nil, or a symbol
2722 'todo' or 'done', to indicate the general type of state.
2723 :to new state, like in :from")
2725 (defcustom org-enforce-todo-dependencies nil
2726 "Non-nil means undone TODO entries will block switching the parent to DONE.
2727 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2728 be blocked if any prior sibling is not yet done.
2729 Finally, if the parent is blocked because of ordered siblings of its own,
2730 the child will also be blocked."
2731 :set (lambda (var val)
2732 (set var val)
2733 (if val
2734 (add-hook 'org-blocker-hook
2735 'org-block-todo-from-children-or-siblings-or-parent)
2736 (remove-hook 'org-blocker-hook
2737 'org-block-todo-from-children-or-siblings-or-parent)))
2738 :group 'org-todo
2739 :type 'boolean)
2741 (defcustom org-enforce-todo-checkbox-dependencies nil
2742 "Non-nil means unchecked boxes will block switching the parent to DONE.
2743 When this is nil, checkboxes have no influence on switching TODO states.
2744 When non-nil, you first need to check off all check boxes before the TODO
2745 entry can be switched to DONE.
2746 This variable needs to be set before org.el is loaded, and you need to
2747 restart Emacs after a change to make the change effective. The only way
2748 to change is while Emacs is running is through the customize interface."
2749 :set (lambda (var val)
2750 (set var val)
2751 (if val
2752 (add-hook 'org-blocker-hook
2753 'org-block-todo-from-checkboxes)
2754 (remove-hook 'org-blocker-hook
2755 'org-block-todo-from-checkboxes)))
2756 :group 'org-todo
2757 :type 'boolean)
2759 (defcustom org-treat-insert-todo-heading-as-state-change nil
2760 "Non-nil means inserting a TODO heading is treated as state change.
2761 So when the command \\[org-insert-todo-heading] is used, state change
2762 logging will apply if appropriate. When nil, the new TODO item will
2763 be inserted directly, and no logging will take place."
2764 :group 'org-todo
2765 :type 'boolean)
2767 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2768 "Non-nil means switching TODO states with S-cursor counts as state change.
2769 This is the default behavior. However, setting this to nil allows a
2770 convenient way to select a TODO state and bypass any logging associated
2771 with that."
2772 :group 'org-todo
2773 :type 'boolean)
2775 (defcustom org-todo-state-tags-triggers nil
2776 "Tag changes that should be triggered by TODO state changes.
2777 This is a list. Each entry is
2779 (state-change (tag . flag) .......)
2781 State-change can be a string with a state, and empty string to indicate the
2782 state that has no TODO keyword, or it can be one of the symbols `todo'
2783 or `done', meaning any not-done or done state, respectively."
2784 :group 'org-todo
2785 :group 'org-tags
2786 :type '(repeat
2787 (cons (choice :tag "When changing to"
2788 (const :tag "Not-done state" todo)
2789 (const :tag "Done state" done)
2790 (string :tag "State"))
2791 (repeat
2792 (cons :tag "Tag action"
2793 (string :tag "Tag")
2794 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2796 (defcustom org-log-done nil
2797 "Information to record when a task moves to the DONE state.
2799 Possible values are:
2801 nil Don't add anything, just change the keyword
2802 time Add a time stamp to the task
2803 note Prompt for a note and add it with template `org-log-note-headings'
2805 This option can also be set with on a per-file-basis with
2807 #+STARTUP: nologdone
2808 #+STARTUP: logdone
2809 #+STARTUP: lognotedone
2811 You can have local logging settings for a subtree by setting the LOGGING
2812 property to one or more of these keywords."
2813 :group 'org-todo
2814 :group 'org-progress
2815 :type '(choice
2816 (const :tag "No logging" nil)
2817 (const :tag "Record CLOSED timestamp" time)
2818 (const :tag "Record CLOSED timestamp with note." note)))
2820 ;; Normalize old uses of org-log-done.
2821 (cond
2822 ((eq org-log-done t) (setq org-log-done 'time))
2823 ((and (listp org-log-done) (memq 'done org-log-done))
2824 (setq org-log-done 'note)))
2826 (defcustom org-log-reschedule nil
2827 "Information to record when the scheduling date of a tasks is modified.
2829 Possible values are:
2831 nil Don't add anything, just change the date
2832 time Add a time stamp to the task
2833 note Prompt for a note and add it with template `org-log-note-headings'
2835 This option can also be set with on a per-file-basis with
2837 #+STARTUP: nologreschedule
2838 #+STARTUP: logreschedule
2839 #+STARTUP: lognotereschedule"
2840 :group 'org-todo
2841 :group 'org-progress
2842 :type '(choice
2843 (const :tag "No logging" nil)
2844 (const :tag "Record timestamp" time)
2845 (const :tag "Record timestamp with note." note)))
2847 (defcustom org-log-redeadline nil
2848 "Information to record when the deadline date of a tasks is modified.
2850 Possible values are:
2852 nil Don't add anything, just change the date
2853 time Add a time stamp to the task
2854 note Prompt for a note and add it with template `org-log-note-headings'
2856 This option can also be set with on a per-file-basis with
2858 #+STARTUP: nologredeadline
2859 #+STARTUP: logredeadline
2860 #+STARTUP: lognoteredeadline
2862 You can have local logging settings for a subtree by setting the LOGGING
2863 property to one or more of these keywords."
2864 :group 'org-todo
2865 :group 'org-progress
2866 :type '(choice
2867 (const :tag "No logging" nil)
2868 (const :tag "Record timestamp" time)
2869 (const :tag "Record timestamp with note." note)))
2871 (defcustom org-log-note-clock-out nil
2872 "Non-nil means record a note when clocking out of an item.
2873 This can also be configured on a per-file basis by adding one of
2874 the following lines anywhere in the buffer:
2876 #+STARTUP: lognoteclock-out
2877 #+STARTUP: nolognoteclock-out"
2878 :group 'org-todo
2879 :group 'org-progress
2880 :type 'boolean)
2882 (defcustom org-log-done-with-time t
2883 "Non-nil means the CLOSED time stamp will contain date and time.
2884 When nil, only the date will be recorded."
2885 :group 'org-progress
2886 :type 'boolean)
2888 (defcustom org-log-note-headings
2889 '((done . "CLOSING NOTE %t")
2890 (state . "State %-12s from %-12S %t")
2891 (note . "Note taken on %t")
2892 (reschedule . "Rescheduled from %S on %t")
2893 (delschedule . "Not scheduled, was %S on %t")
2894 (redeadline . "New deadline from %S on %t")
2895 (deldeadline . "Removed deadline, was %S on %t")
2896 (refile . "Refiled on %t")
2897 (clock-out . ""))
2898 "Headings for notes added to entries.
2899 The value is an alist, with the car being a symbol indicating the note
2900 context, and the cdr is the heading to be used. The heading may also be the
2901 empty string.
2902 %t in the heading will be replaced by a time stamp.
2903 %T will be an active time stamp instead the default inactive one
2904 %d will be replaced by a short-format time stamp.
2905 %D will be replaced by an active short-format time stamp.
2906 %s will be replaced by the new TODO state, in double quotes.
2907 %S will be replaced by the old TODO state, in double quotes.
2908 %u will be replaced by the user name.
2909 %U will be replaced by the full user name.
2911 In fact, it is not a good idea to change the `state' entry, because
2912 agenda log mode depends on the format of these entries."
2913 :group 'org-todo
2914 :group 'org-progress
2915 :type '(list :greedy t
2916 (cons (const :tag "Heading when closing an item" done) string)
2917 (cons (const :tag
2918 "Heading when changing todo state (todo sequence only)"
2919 state) string)
2920 (cons (const :tag "Heading when just taking a note" note) string)
2921 (cons (const :tag "Heading when rescheduling" reschedule) string)
2922 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2923 (cons (const :tag "Heading when changing deadline" redeadline) string)
2924 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2925 (cons (const :tag "Heading when refiling" refile) string)
2926 (cons (const :tag "Heading when clocking out" clock-out) string)))
2928 (unless (assq 'note org-log-note-headings)
2929 (push '(note . "%t") org-log-note-headings))
2931 (defcustom org-log-into-drawer nil
2932 "Non-nil means insert state change notes and time stamps into a drawer.
2933 When nil, state changes notes will be inserted after the headline and
2934 any scheduling and clock lines, but not inside a drawer.
2936 The value of this variable should be the name of the drawer to use.
2937 LOGBOOK is proposed as the default drawer for this purpose, you can
2938 also set this to a string to define the drawer of your choice.
2940 A value of t is also allowed, representing \"LOGBOOK\".
2942 A value of t or nil can also be set with on a per-file-basis with
2944 #+STARTUP: logdrawer
2945 #+STARTUP: nologdrawer
2947 If this variable is set, `org-log-state-notes-insert-after-drawers'
2948 will be ignored.
2950 You can set the property LOG_INTO_DRAWER to overrule this setting for
2951 a subtree.
2953 Do not check directly this variable in a Lisp program. Call
2954 function `org-log-into-drawer' instead."
2955 :group 'org-todo
2956 :group 'org-progress
2957 :type '(choice
2958 (const :tag "Not into a drawer" nil)
2959 (const :tag "LOGBOOK" t)
2960 (string :tag "Other")))
2962 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2964 (defun org-log-into-drawer ()
2965 "Name of the log drawer, as a string, or nil.
2966 This is the value of `org-log-into-drawer'. However, if the
2967 current entry has or inherits a LOG_INTO_DRAWER property, it will
2968 be used instead of the default value."
2969 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2970 (cond ((equal p "nil") nil)
2971 ((equal p "t") "LOGBOOK")
2972 ((stringp p) p)
2973 (p "LOGBOOK")
2974 ((stringp org-log-into-drawer) org-log-into-drawer)
2975 (org-log-into-drawer "LOGBOOK"))))
2977 (defcustom org-log-state-notes-insert-after-drawers nil
2978 "Non-nil means insert state change notes after any drawers in entry.
2979 Only the drawers that *immediately* follow the headline and the
2980 deadline/scheduled line are skipped.
2981 When nil, insert notes right after the heading and perhaps the line
2982 with deadline/scheduling if present.
2984 This variable will have no effect if `org-log-into-drawer' is
2985 set."
2986 :group 'org-todo
2987 :group 'org-progress
2988 :type 'boolean)
2990 (defcustom org-log-states-order-reversed t
2991 "Non-nil means the latest state note will be directly after heading.
2992 When nil, the state change notes will be ordered according to time.
2994 This option can also be set with on a per-file-basis with
2996 #+STARTUP: logstatesreversed
2997 #+STARTUP: nologstatesreversed"
2998 :group 'org-todo
2999 :group 'org-progress
3000 :type 'boolean)
3002 (defcustom org-todo-repeat-to-state nil
3003 "The TODO state to which a repeater should return the repeating task.
3004 By default this is the first task in a TODO sequence, or the previous state
3005 in a TODO_TYP set. But you can specify another task here.
3006 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3007 :group 'org-todo
3008 :version "24.1"
3009 :type '(choice (const :tag "Head of sequence" nil)
3010 (string :tag "Specific state")))
3012 (defcustom org-log-repeat 'time
3013 "Non-nil means record moving through the DONE state when triggering repeat.
3014 An auto-repeating task is immediately switched back to TODO when
3015 marked DONE. If you are not logging state changes (by adding \"@\"
3016 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3017 record a closing note, there will be no record of the task moving
3018 through DONE. This variable forces taking a note anyway.
3020 nil Don't force a record
3021 time Record a time stamp
3022 note Prompt for a note and add it with template `org-log-note-headings'
3024 This option can also be set with on a per-file-basis with
3026 #+STARTUP: nologrepeat
3027 #+STARTUP: logrepeat
3028 #+STARTUP: lognoterepeat
3030 You can have local logging settings for a subtree by setting the LOGGING
3031 property to one or more of these keywords."
3032 :group 'org-todo
3033 :group 'org-progress
3034 :type '(choice
3035 (const :tag "Don't force a record" nil)
3036 (const :tag "Force recording the DONE state" time)
3037 (const :tag "Force recording a note with the DONE state" note)))
3040 (defgroup org-priorities nil
3041 "Priorities in Org-mode."
3042 :tag "Org Priorities"
3043 :group 'org-todo)
3045 (defcustom org-enable-priority-commands t
3046 "Non-nil means priority commands are active.
3047 When nil, these commands will be disabled, so that you never accidentally
3048 set a priority."
3049 :group 'org-priorities
3050 :type 'boolean)
3052 (defcustom org-highest-priority ?A
3053 "The highest priority of TODO items. A character like ?A, ?B etc.
3054 Must have a smaller ASCII number than `org-lowest-priority'."
3055 :group 'org-priorities
3056 :type 'character)
3058 (defcustom org-lowest-priority ?C
3059 "The lowest priority of TODO items. A character like ?A, ?B etc.
3060 Must have a larger ASCII number than `org-highest-priority'."
3061 :group 'org-priorities
3062 :type 'character)
3064 (defcustom org-default-priority ?B
3065 "The default priority of TODO items.
3066 This is the priority an item gets if no explicit priority is given.
3067 When starting to cycle on an empty priority the first step in the cycle
3068 depends on `org-priority-start-cycle-with-default'. The resulting first
3069 step priority must not exceed the range from `org-highest-priority' to
3070 `org-lowest-priority' which means that `org-default-priority' has to be
3071 in this range exclusive or inclusive the range boundaries. Else the
3072 first step refuses to set the default and the second will fall back
3073 to (depending on the command used) the highest or lowest priority."
3074 :group 'org-priorities
3075 :type 'character)
3077 (defcustom org-priority-start-cycle-with-default t
3078 "Non-nil means start with default priority when starting to cycle.
3079 When this is nil, the first step in the cycle will be (depending on the
3080 command used) one higher or lower than the default priority.
3081 See also `org-default-priority'."
3082 :group 'org-priorities
3083 :type 'boolean)
3085 (defcustom org-get-priority-function nil
3086 "Function to extract the priority from a string.
3087 The string is normally the headline. If this is nil Org computes the
3088 priority from the priority cookie like [#A] in the headline. It returns
3089 an integer, increasing by 1000 for each priority level.
3090 The user can set a different function here, which should take a string
3091 as an argument and return the numeric priority."
3092 :group 'org-priorities
3093 :version "24.1"
3094 :type '(choice
3095 (const nil)
3096 (function)))
3098 (defgroup org-time nil
3099 "Options concerning time stamps and deadlines in Org-mode."
3100 :tag "Org Time"
3101 :group 'org)
3103 (defcustom org-time-stamp-rounding-minutes '(0 5)
3104 "Number of minutes to round time stamps to.
3105 These are two values, the first applies when first creating a time stamp.
3106 The second applies when changing it with the commands `S-up' and `S-down'.
3107 When changing the time stamp, this means that it will change in steps
3108 of N minutes, as given by the second value.
3110 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3111 numbers should be factors of 60, so for example 5, 10, 15.
3113 When this is larger than 1, you can still force an exact time stamp by using
3114 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3115 and by using a prefix arg to `S-up/down' to specify the exact number
3116 of minutes to shift."
3117 :group 'org-time
3118 :get (lambda (var) ; Make sure both elements are there
3119 (if (integerp (default-value var))
3120 (list (default-value var) 5)
3121 (default-value var)))
3122 :type '(list
3123 (integer :tag "when inserting times")
3124 (integer :tag "when modifying times")))
3126 ;; Normalize old customizations of this variable.
3127 (when (integerp org-time-stamp-rounding-minutes)
3128 (setq org-time-stamp-rounding-minutes
3129 (list org-time-stamp-rounding-minutes
3130 org-time-stamp-rounding-minutes)))
3132 (defcustom org-display-custom-times nil
3133 "Non-nil means overlay custom formats over all time stamps.
3134 The formats are defined through the variable `org-time-stamp-custom-formats'.
3135 To turn this on on a per-file basis, insert anywhere in the file:
3136 #+STARTUP: customtime"
3137 :group 'org-time
3138 :set 'set-default
3139 :type 'sexp)
3140 (make-variable-buffer-local 'org-display-custom-times)
3142 (defcustom org-time-stamp-custom-formats
3143 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3144 "Custom formats for time stamps. See `format-time-string' for the syntax.
3145 These are overlaid over the default ISO format if the variable
3146 `org-display-custom-times' is set. Time like %H:%M should be at the
3147 end of the second format. The custom formats are also honored by export
3148 commands, if custom time display is turned on at the time of export."
3149 :group 'org-time
3150 :type 'sexp)
3152 (defun org-time-stamp-format (&optional long inactive)
3153 "Get the right format for a time string."
3154 (let ((f (if long (cdr org-time-stamp-formats)
3155 (car org-time-stamp-formats))))
3156 (if inactive
3157 (concat "[" (substring f 1 -1) "]")
3158 f)))
3160 (defcustom org-time-clocksum-format
3161 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3162 "The format string used when creating CLOCKSUM lines.
3163 This is also used when Org mode generates a time duration.
3165 The value can be a single format string containing two
3166 %-sequences, which will be filled with the number of hours and
3167 minutes in that order.
3169 Alternatively, the value can be a plist associating any of the
3170 keys :years, :months, :weeks, :days, :hours or :minutes with
3171 format strings. The time duration is formatted using only the
3172 time components that are needed and concatenating the results.
3173 If a time unit in absent, it falls back to the next smallest
3174 unit.
3176 The keys :require-years, :require-months, :require-days,
3177 :require-weeks, :require-hours, :require-minutes are also
3178 meaningful. A non-nil value for these keys indicates that the
3179 corresponding time component should always be included, even if
3180 its value is 0.
3183 For example,
3185 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3186 :require-minutes t)
3188 means durations longer than a day will be expressed in days,
3189 hours and minutes, and durations less than a day will always be
3190 expressed in hours and minutes (even for durations less than an
3191 hour).
3193 The value
3195 \(:days \"%dd\" :minutes \"%dm\")
3197 means durations longer than a day will be expressed in days and
3198 minutes, and durations less than a day will be expressed entirely
3199 in minutes (even for durations longer than an hour)."
3200 :group 'org-time
3201 :group 'org-clock
3202 :version "24.4"
3203 :package-version '(Org . "8.0")
3204 :type '(choice (string :tag "Format string")
3205 (set :tag "Plist"
3206 (group :inline t (const :tag "Years" :years)
3207 (string :tag "Format string"))
3208 (group :inline t
3209 (const :tag "Always show years" :require-years)
3210 (const t))
3211 (group :inline t (const :tag "Months" :months)
3212 (string :tag "Format string"))
3213 (group :inline t
3214 (const :tag "Always show months" :require-months)
3215 (const t))
3216 (group :inline t (const :tag "Weeks" :weeks)
3217 (string :tag "Format string"))
3218 (group :inline t
3219 (const :tag "Always show weeks" :require-weeks)
3220 (const t))
3221 (group :inline t (const :tag "Days" :days)
3222 (string :tag "Format string"))
3223 (group :inline t
3224 (const :tag "Always show days" :require-days)
3225 (const t))
3226 (group :inline t (const :tag "Hours" :hours)
3227 (string :tag "Format string"))
3228 (group :inline t
3229 (const :tag "Always show hours" :require-hours)
3230 (const t))
3231 (group :inline t (const :tag "Minutes" :minutes)
3232 (string :tag "Format string"))
3233 (group :inline t
3234 (const :tag "Always show minutes" :require-minutes)
3235 (const t)))))
3237 (defcustom org-time-clocksum-use-fractional nil
3238 "When non-nil, \\[org-clock-display] uses fractional times.
3239 See `org-time-clocksum-format' for more on time clock formats."
3240 :group 'org-time
3241 :group 'org-clock
3242 :version "24.3"
3243 :type 'boolean)
3245 (defcustom org-time-clocksum-use-effort-durations nil
3246 "When non-nil, \\[org-clock-display] uses effort durations.
3247 E.g. by default, one day is considered to be a 8 hours effort,
3248 so a task that has been clocked for 16 hours will be displayed
3249 as during 2 days in the clock display or in the clocktable.
3251 See `org-effort-durations' on how to set effort durations
3252 and `org-time-clocksum-format' for more on time clock formats."
3253 :group 'org-time
3254 :group 'org-clock
3255 :version "24.4"
3256 :package-version '(Org . "8.0")
3257 :type 'boolean)
3259 (defcustom org-time-clocksum-fractional-format "%.2f"
3260 "The format string used when creating CLOCKSUM lines,
3261 or when Org mode generates a time duration, if
3262 `org-time-clocksum-use-fractional' is enabled.
3264 The value can be a single format string containing one
3265 %-sequence, which will be filled with the number of hours as
3266 a float.
3268 Alternatively, the value can be a plist associating any of the
3269 keys :years, :months, :weeks, :days, :hours or :minutes with
3270 a format string. The time duration is formatted using the
3271 largest time unit which gives a non-zero integer part. If all
3272 specified formats have zero integer part, the smallest time unit
3273 is used."
3274 :group 'org-time
3275 :type '(choice (string :tag "Format string")
3276 (set (group :inline t (const :tag "Years" :years)
3277 (string :tag "Format string"))
3278 (group :inline t (const :tag "Months" :months)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Weeks" :weeks)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Days" :days)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Hours" :hours)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Minutes" :minutes)
3287 (string :tag "Format string")))))
3289 (defcustom org-deadline-warning-days 14
3290 "Number of days before expiration during which a deadline becomes active.
3291 This variable governs the display in sparse trees and in the agenda.
3292 When 0 or negative, it means use this number (the absolute value of it)
3293 even if a deadline has a different individual lead time specified.
3295 Custom commands can set this variable in the options section."
3296 :group 'org-time
3297 :group 'org-agenda-daily/weekly
3298 :type 'integer)
3300 (defcustom org-scheduled-delay-days 0
3301 "Number of days before a scheduled item becomes active.
3302 This variable governs the display in sparse trees and in the agenda.
3303 The default value (i.e. 0) means: don't delay scheduled item.
3304 When negative, it means use this number (the absolute value of it)
3305 even if a scheduled item has a different individual delay time
3306 specified.
3308 Custom commands can set this variable in the options section."
3309 :group 'org-time
3310 :group 'org-agenda-daily/weekly
3311 :version "24.4"
3312 :package-version '(Org . "8.0")
3313 :type 'integer)
3315 (defcustom org-read-date-prefer-future t
3316 "Non-nil means assume future for incomplete date input from user.
3317 This affects the following situations:
3318 1. The user gives a month but not a year.
3319 For example, if it is April and you enter \"feb 2\", this will be read
3320 as Feb 2, *next* year. \"May 5\", however, will be this year.
3321 2. The user gives a day, but no month.
3322 For example, if today is the 15th, and you enter \"3\", Org-mode will
3323 read this as the third of *next* month. However, if you enter \"17\",
3324 it will be considered as *this* month.
3326 If you set this variable to the symbol `time', then also the following
3327 will work:
3329 3. If the user gives a time.
3330 If the time is before now, it will be interpreted as tomorrow.
3332 Currently none of this works for ISO week specifications.
3334 When this option is nil, the current day, month and year will always be
3335 used as defaults.
3337 See also `org-agenda-jump-prefer-future'."
3338 :group 'org-time
3339 :type '(choice
3340 (const :tag "Never" nil)
3341 (const :tag "Check month and day" t)
3342 (const :tag "Check month, day, and time" time)))
3344 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3345 "Should the agenda jump command prefer the future for incomplete dates?
3346 The default is to do the same as configured in `org-read-date-prefer-future'.
3347 But you can also set a deviating value here.
3348 This may t or nil, or the symbol `org-read-date-prefer-future'."
3349 :group 'org-agenda
3350 :group 'org-time
3351 :version "24.1"
3352 :type '(choice
3353 (const :tag "Use org-read-date-prefer-future"
3354 org-read-date-prefer-future)
3355 (const :tag "Never" nil)
3356 (const :tag "Always" t)))
3358 (defcustom org-read-date-force-compatible-dates t
3359 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3361 Depending on the system Emacs is running on, certain dates cannot
3362 be represented with the type used internally to represent time.
3363 Dates between 1970-1-1 and 2038-1-1 can always be represented
3364 correctly. Some systems allow for earlier dates, some for later,
3365 some for both. One way to find out it to insert any date into an
3366 Org buffer, putting the cursor on the year and hitting S-up and
3367 S-down to test the range.
3369 When this variable is set to t, the date/time prompt will not let
3370 you specify dates outside the 1970-2037 range, so it is certain that
3371 these dates will work in whatever version of Emacs you are
3372 running, and also that you can move a file from one Emacs implementation
3373 to another. WHenever Org is forcing the year for you, it will display
3374 a message and beep.
3376 When this variable is nil, Org will check if the date is
3377 representable in the specific Emacs implementation you are using.
3378 If not, it will force a year, usually the current year, and beep
3379 to remind you. Currently this setting is not recommended because
3380 the likelihood that you will open your Org files in an Emacs that
3381 has limited date range is not negligible.
3383 A workaround for this problem is to use diary sexp dates for time
3384 stamps outside of this range."
3385 :group 'org-time
3386 :version "24.1"
3387 :type 'boolean)
3389 (defcustom org-read-date-display-live t
3390 "Non-nil means display current interpretation of date prompt live.
3391 This display will be in an overlay, in the minibuffer."
3392 :group 'org-time
3393 :type 'boolean)
3395 (defcustom org-read-date-popup-calendar t
3396 "Non-nil means pop up a calendar when prompting for a date.
3397 In the calendar, the date can be selected with mouse-1. However, the
3398 minibuffer will also be active, and you can simply enter the date as well.
3399 When nil, only the minibuffer will be available."
3400 :group 'org-time
3401 :type 'boolean)
3402 (org-defvaralias 'org-popup-calendar-for-date-prompt
3403 'org-read-date-popup-calendar)
3405 (make-obsolete-variable
3406 'org-read-date-minibuffer-setup-hook
3407 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3408 (defcustom org-read-date-minibuffer-setup-hook nil
3409 "Hook to be used to set up keys for the date/time interface.
3410 Add key definitions to `minibuffer-local-map', which will be a
3411 temporary copy.
3413 WARNING: This option is obsolete, you should use
3414 `org-read-date-minibuffer-local-map' to set up keys."
3415 :group 'org-time
3416 :type 'hook)
3418 (defcustom org-extend-today-until 0
3419 "The hour when your day really ends. Must be an integer.
3420 This has influence for the following applications:
3421 - When switching the agenda to \"today\". It it is still earlier than
3422 the time given here, the day recognized as TODAY is actually yesterday.
3423 - When a date is read from the user and it is still before the time given
3424 here, the current date and time will be assumed to be yesterday, 23:59.
3425 Also, timestamps inserted in capture templates follow this rule.
3427 IMPORTANT: This is a feature whose implementation is and likely will
3428 remain incomplete. Really, it is only here because past midnight seems to
3429 be the favorite working time of John Wiegley :-)"
3430 :group 'org-time
3431 :type 'integer)
3433 (defcustom org-use-effective-time nil
3434 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3435 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3436 \"effective time\" of any timestamps between midnight and 8am will be
3437 23:59 of the previous day."
3438 :group 'org-time
3439 :version "24.1"
3440 :type 'boolean)
3442 (defcustom org-use-last-clock-out-time-as-effective-time nil
3443 "When non-nil, use the last clock out time for `org-todo'.
3444 Note that this option has precedence over the combined use of
3445 `org-use-effective-time' and `org-extend-today-until'."
3446 :group 'org-time
3447 :version "24.4"
3448 :package-version '(Org . "8.0")
3449 :type 'boolean)
3451 (defcustom org-edit-timestamp-down-means-later nil
3452 "Non-nil means S-down will increase the time in a time stamp.
3453 When nil, S-up will increase."
3454 :group 'org-time
3455 :type 'boolean)
3457 (defcustom org-calendar-follow-timestamp-change t
3458 "Non-nil means make the calendar window follow timestamp changes.
3459 When a timestamp is modified and the calendar window is visible, it will be
3460 moved to the new date."
3461 :group 'org-time
3462 :type 'boolean)
3464 (defgroup org-tags nil
3465 "Options concerning tags in Org-mode."
3466 :tag "Org Tags"
3467 :group 'org)
3469 (defcustom org-tag-alist nil
3470 "List of tags allowed in Org-mode files.
3471 When this list is nil, Org-mode will base TAG input on what is already in the
3472 buffer.
3473 The value of this variable is an alist, the car of each entry must be a
3474 keyword as a string, the cdr may be a character that is used to select
3475 that tag through the fast-tag-selection interface.
3476 See the manual for details."
3477 :group 'org-tags
3478 :type '(repeat
3479 (choice
3480 (cons (string :tag "Tag name")
3481 (character :tag "Access char"))
3482 (list :tag "Start radio group"
3483 (const :startgroup)
3484 (option (string :tag "Group description")))
3485 (list :tag "Start tag group, non distinct"
3486 (const :startgrouptag)
3487 (option (string :tag "Group description")))
3488 (list :tag "Group tags delimiter"
3489 (const :grouptags))
3490 (list :tag "End radio group"
3491 (const :endgroup)
3492 (option (string :tag "Group description")))
3493 (list :tag "End tag group, non distinct"
3494 (const :endgrouptag)
3495 (option (string :tag "Group description")))
3496 (const :tag "New line" (:newline)))))
3498 (defcustom org-tag-persistent-alist nil
3499 "List of tags that will always appear in all Org-mode files.
3500 This is in addition to any in buffer settings or customizations
3501 of `org-tag-alist'.
3502 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3503 The value of this variable is an alist, the car of each entry must be a
3504 keyword as a string, the cdr may be a character that is used to select
3505 that tag through the fast-tag-selection interface.
3506 See the manual for details.
3507 To disable these tags on a per-file basis, insert anywhere in the file:
3508 #+STARTUP: noptag"
3509 :group 'org-tags
3510 :type '(repeat
3511 (choice
3512 (cons (string :tag "Tag name")
3513 (character :tag "Access char"))
3514 (const :tag "Start radio group" (:startgroup))
3515 (const :tag "Group tags delimiter" (:grouptags))
3516 (const :tag "End radio group" (:endgroup))
3517 (const :tag "New line" (:newline)))))
3519 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3520 "If non-nil, always offer completion for all tags of all agenda files.
3521 Instead of customizing this variable directly, you might want to
3522 set it locally for capture buffers, because there no list of
3523 tags in that file can be created dynamically (there are none).
3525 (add-hook 'org-capture-mode-hook
3526 (lambda ()
3527 (set (make-local-variable
3528 'org-complete-tags-always-offer-all-agenda-tags)
3529 t)))"
3530 :group 'org-tags
3531 :version "24.1"
3532 :type 'boolean)
3534 (defvar org-file-tags nil
3535 "List of tags that can be inherited by all entries in the file.
3536 The tags will be inherited if the variable `org-use-tag-inheritance'
3537 says they should be.
3538 This variable is populated from #+FILETAGS lines.")
3540 (defcustom org-use-fast-tag-selection 'auto
3541 "Non-nil means use fast tag selection scheme.
3542 This is a special interface to select and deselect tags with single keys.
3543 When nil, fast selection is never used.
3544 When the symbol `auto', fast selection is used if and only if selection
3545 characters for tags have been configured, either through the variable
3546 `org-tag-alist' or through a #+TAGS line in the buffer.
3547 When t, fast selection is always used and selection keys are assigned
3548 automatically if necessary."
3549 :group 'org-tags
3550 :type '(choice
3551 (const :tag "Always" t)
3552 (const :tag "Never" nil)
3553 (const :tag "When selection characters are configured" auto)))
3555 (defcustom org-fast-tag-selection-single-key nil
3556 "Non-nil means fast tag selection exits after first change.
3557 When nil, you have to press RET to exit it.
3558 During fast tag selection, you can toggle this flag with `C-c'.
3559 This variable can also have the value `expert'. In this case, the window
3560 displaying the tags menu is not even shown, until you press C-c again."
3561 :group 'org-tags
3562 :type '(choice
3563 (const :tag "No" nil)
3564 (const :tag "Yes" t)
3565 (const :tag "Expert" expert)))
3567 (defvar org-fast-tag-selection-include-todo nil
3568 "Non-nil means fast tags selection interface will also offer TODO states.
3569 This is an undocumented feature, you should not rely on it.")
3571 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3572 "The column to which tags should be indented in a headline.
3573 If this number is positive, it specifies the column. If it is negative,
3574 it means that the tags should be flushright to that column. For example,
3575 -80 works well for a normal 80 character screen.
3576 When 0, place tags directly after headline text, with only one space in
3577 between."
3578 :group 'org-tags
3579 :type 'integer)
3581 (defcustom org-auto-align-tags t
3582 "Non-nil keeps tags aligned when modifying headlines.
3583 Some operations (i.e. demoting) change the length of a headline and
3584 therefore shift the tags around. With this option turned on, after
3585 each such operation the tags are again aligned to `org-tags-column'."
3586 :group 'org-tags
3587 :type 'boolean)
3589 (defcustom org-use-tag-inheritance t
3590 "Non-nil means tags in levels apply also for sublevels.
3591 When nil, only the tags directly given in a specific line apply there.
3592 This may also be a list of tags that should be inherited, or a regexp that
3593 matches tags that should be inherited. Additional control is possible
3594 with the variable `org-tags-exclude-from-inheritance' which gives an
3595 explicit list of tags to be excluded from inheritance, even if the value of
3596 `org-use-tag-inheritance' would select it for inheritance.
3598 If this option is t, a match early-on in a tree can lead to a large
3599 number of matches in the subtree when constructing the agenda or creating
3600 a sparse tree. If you only want to see the first match in a tree during
3601 a search, check out the variable `org-tags-match-list-sublevels'."
3602 :group 'org-tags
3603 :type '(choice
3604 (const :tag "Not" nil)
3605 (const :tag "Always" t)
3606 (repeat :tag "Specific tags" (string :tag "Tag"))
3607 (regexp :tag "Tags matched by regexp")))
3609 (defcustom org-tags-exclude-from-inheritance nil
3610 "List of tags that should never be inherited.
3611 This is a way to exclude a few tags from inheritance. For way to do
3612 the opposite, to actively allow inheritance for selected tags,
3613 see the variable `org-use-tag-inheritance'."
3614 :group 'org-tags
3615 :type '(repeat (string :tag "Tag")))
3617 (defun org-tag-inherit-p (tag)
3618 "Check if TAG is one that should be inherited."
3619 (cond
3620 ((member tag org-tags-exclude-from-inheritance) nil)
3621 ((eq org-use-tag-inheritance t) t)
3622 ((not org-use-tag-inheritance) nil)
3623 ((stringp org-use-tag-inheritance)
3624 (string-match org-use-tag-inheritance tag))
3625 ((listp org-use-tag-inheritance)
3626 (member tag org-use-tag-inheritance))
3627 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3629 (defcustom org-tags-match-list-sublevels t
3630 "Non-nil means list also sublevels of headlines matching a search.
3631 This variable applies to tags/property searches, and also to stuck
3632 projects because this search is based on a tags match as well.
3634 When set to the symbol `indented', sublevels are indented with
3635 leading dots.
3637 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3638 the sublevels of a headline matching a tag search often also match
3639 the same search. Listing all of them can create very long lists.
3640 Setting this variable to nil causes subtrees of a match to be skipped.
3642 This variable is semi-obsolete and probably should always be true. It
3643 is better to limit inheritance to certain tags using the variables
3644 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3645 :group 'org-tags
3646 :type '(choice
3647 (const :tag "No, don't list them" nil)
3648 (const :tag "Yes, do list them" t)
3649 (const :tag "List them, indented with leading dots" indented)))
3651 (defcustom org-tags-sort-function nil
3652 "When set, tags are sorted using this function as a comparator."
3653 :group 'org-tags
3654 :type '(choice
3655 (const :tag "No sorting" nil)
3656 (const :tag "Alphabetical" string<)
3657 (const :tag "Reverse alphabetical" string>)
3658 (function :tag "Custom function" nil)))
3660 (defvar org-tags-history nil
3661 "History of minibuffer reads for tags.")
3662 (defvar org-last-tags-completion-table nil
3663 "The last used completion table for tags.")
3664 (defvar org-after-tags-change-hook nil
3665 "Hook that is run after the tags in a line have changed.")
3667 (defgroup org-properties nil
3668 "Options concerning properties in Org-mode."
3669 :tag "Org Properties"
3670 :group 'org)
3672 (defcustom org-property-format "%-10s %s"
3673 "How property key/value pairs should be formatted by `indent-line'.
3674 When `indent-line' hits a property definition, it will format the line
3675 according to this format, mainly to make sure that the values are
3676 lined-up with respect to each other."
3677 :group 'org-properties
3678 :type 'string)
3680 (defcustom org-properties-postprocess-alist nil
3681 "Alist of properties and functions to adjust inserted values.
3682 Elements of this alist must be of the form
3684 ([string] [function])
3686 where [string] must be a property name and [function] must be a
3687 lambda expression: this lambda expression must take one argument,
3688 the value to adjust, and return the new value as a string.
3690 For example, this element will allow the property \"Remaining\"
3691 to be updated wrt the relation between the \"Effort\" property
3692 and the clock summary:
3694 ((\"Remaining\" (lambda(value)
3695 (let ((clocksum (org-clock-sum-current-item))
3696 (effort (org-duration-string-to-minutes
3697 (org-entry-get (point) \"Effort\"))))
3698 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3699 :group 'org-properties
3700 :version "24.1"
3701 :type '(alist :key-type (string :tag "Property")
3702 :value-type (function :tag "Function")))
3704 (defcustom org-use-property-inheritance nil
3705 "Non-nil means properties apply also for sublevels.
3707 This setting is chiefly used during property searches. Turning it on can
3708 cause significant overhead when doing a search, which is why it is not
3709 on by default.
3711 When nil, only the properties directly given in the current entry count.
3712 When t, every property is inherited. The value may also be a list of
3713 properties that should have inheritance, or a regular expression matching
3714 properties that should be inherited.
3716 However, note that some special properties use inheritance under special
3717 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3718 and the properties ending in \"_ALL\" when they are used as descriptor
3719 for valid values of a property.
3721 Note for programmers:
3722 When querying an entry with `org-entry-get', you can control if inheritance
3723 should be used. By default, `org-entry-get' looks only at the local
3724 properties. You can request inheritance by setting the inherit argument
3725 to t (to force inheritance) or to `selective' (to respect the setting
3726 in this variable)."
3727 :group 'org-properties
3728 :type '(choice
3729 (const :tag "Not" nil)
3730 (const :tag "Always" t)
3731 (repeat :tag "Specific properties" (string :tag "Property"))
3732 (regexp :tag "Properties matched by regexp")))
3734 (defun org-property-inherit-p (property)
3735 "Check if PROPERTY is one that should be inherited."
3736 (cond
3737 ((eq org-use-property-inheritance t) t)
3738 ((not org-use-property-inheritance) nil)
3739 ((stringp org-use-property-inheritance)
3740 (string-match org-use-property-inheritance property))
3741 ((listp org-use-property-inheritance)
3742 (member property org-use-property-inheritance))
3743 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3745 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3746 "The default column format, if no other format has been defined.
3747 This variable can be set on the per-file basis by inserting a line
3749 #+COLUMNS: %25ITEM ....."
3750 :group 'org-properties
3751 :type 'string)
3753 (defcustom org-columns-ellipses ".."
3754 "The ellipses to be used when a field in column view is truncated.
3755 When this is the empty string, as many characters as possible are shown,
3756 but then there will be no visual indication that the field has been truncated.
3757 When this is a string of length N, the last N characters of a truncated
3758 field are replaced by this string. If the column is narrower than the
3759 ellipses string, only part of the ellipses string will be shown."
3760 :group 'org-properties
3761 :type 'string)
3763 (defcustom org-columns-modify-value-for-display-function nil
3764 "Function that modifies values for display in column view.
3765 For example, it can be used to cut out a certain part from a time stamp.
3766 The function must take 2 arguments:
3768 column-title The title of the column (*not* the property name)
3769 value The value that should be modified.
3771 The function should return the value that should be displayed,
3772 or nil if the normal value should be used."
3773 :group 'org-properties
3774 :type '(choice (const nil) (function)))
3776 (defconst org-global-properties-fixed
3777 '(("VISIBILITY_ALL" . "folded children content all")
3778 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3779 "List of property/value pairs that can be inherited by any entry.
3781 These are fixed values, for the preset properties. The user variable
3782 that can be used to add to this list is `org-global-properties'.
3784 The entries in this list are cons cells where the car is a property
3785 name and cdr is a string with the value. If the value represents
3786 multiple items like an \"_ALL\" property, separate the items by
3787 spaces.")
3789 (defcustom org-global-properties nil
3790 "List of property/value pairs that can be inherited by any entry.
3792 This list will be combined with the constant `org-global-properties-fixed'.
3794 The entries in this list are cons cells where the car is a property
3795 name and cdr is a string with the value.
3797 You can set buffer-local values for the same purpose in the variable
3798 `org-file-properties' this by adding lines like
3800 #+PROPERTY: NAME VALUE"
3801 :group 'org-properties
3802 :type '(repeat
3803 (cons (string :tag "Property")
3804 (string :tag "Value"))))
3806 (defvar org-file-properties nil
3807 "List of property/value pairs that can be inherited by any entry.
3808 Valid for the current buffer.
3809 This variable is populated from #+PROPERTY lines.")
3810 (make-variable-buffer-local 'org-file-properties)
3812 (defgroup org-agenda nil
3813 "Options concerning agenda views in Org-mode."
3814 :tag "Org Agenda"
3815 :group 'org)
3817 (defvar org-category nil
3818 "Variable used by org files to set a category for agenda display.
3819 Such files should use a file variable to set it, for example
3821 # -*- mode: org; org-category: \"ELisp\"
3823 or contain a special line
3825 #+CATEGORY: ELisp
3827 If the file does not specify a category, then file's base name
3828 is used instead.")
3829 (make-variable-buffer-local 'org-category)
3830 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3832 (defcustom org-agenda-files nil
3833 "The files to be used for agenda display.
3834 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3835 \\[org-remove-file]. You can also use customize to edit the list.
3837 If an entry is a directory, all files in that directory that are matched by
3838 `org-agenda-file-regexp' will be part of the file list.
3840 If the value of the variable is not a list but a single file name, then
3841 the list of agenda files is actually stored and maintained in that file, one
3842 agenda file per line. In this file paths can be given relative to
3843 `org-directory'. Tilde expansion and environment variable substitution
3844 are also made."
3845 :group 'org-agenda
3846 :type '(choice
3847 (repeat :tag "List of files and directories" file)
3848 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3850 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3851 "Regular expression to match files for `org-agenda-files'.
3852 If any element in the list in that variable contains a directory instead
3853 of a normal file, all files in that directory that are matched by this
3854 regular expression will be included."
3855 :group 'org-agenda
3856 :type 'regexp)
3858 (defcustom org-agenda-text-search-extra-files nil
3859 "List of extra files to be searched by text search commands.
3860 These files will be searched in addition to the agenda files by the
3861 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3862 Note that these files will only be searched for text search commands,
3863 not for the other agenda views like todo lists, tag searches or the weekly
3864 agenda. This variable is intended to list notes and possibly archive files
3865 that should also be searched by these two commands.
3866 In fact, if the first element in the list is the symbol `agenda-archives',
3867 then all archive files of all agenda files will be added to the search
3868 scope."
3869 :group 'org-agenda
3870 :type '(set :greedy t
3871 (const :tag "Agenda Archives" agenda-archives)
3872 (repeat :inline t (file))))
3874 (org-defvaralias 'org-agenda-multi-occur-extra-files
3875 'org-agenda-text-search-extra-files)
3877 (defcustom org-agenda-skip-unavailable-files nil
3878 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3879 A nil value means to remove them, after a query, from the list."
3880 :group 'org-agenda
3881 :type 'boolean)
3883 (defcustom org-calendar-to-agenda-key [?c]
3884 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3885 The command `org-calendar-goto-agenda' will be bound to this key. The
3886 default is the character `c' because then `c' can be used to switch back and
3887 forth between agenda and calendar."
3888 :group 'org-agenda
3889 :type 'sexp)
3891 (defcustom org-calendar-insert-diary-entry-key [?i]
3892 "The key to be installed in `calendar-mode-map' for adding diary entries.
3893 This option is irrelevant until `org-agenda-diary-file' has been configured
3894 to point to an Org-mode file. When that is the case, the command
3895 `org-agenda-diary-entry' will be bound to the key given here, by default
3896 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3897 if you want to continue doing this, you need to change this to a different
3898 key."
3899 :group 'org-agenda
3900 :type 'sexp)
3902 (defcustom org-agenda-diary-file 'diary-file
3903 "File to which to add new entries with the `i' key in agenda and calendar.
3904 When this is the symbol `diary-file', the functionality in the Emacs
3905 calendar will be used to add entries to the `diary-file'. But when this
3906 points to a file, `org-agenda-diary-entry' will be used instead."
3907 :group 'org-agenda
3908 :type '(choice
3909 (const :tag "The standard Emacs diary file" diary-file)
3910 (file :tag "Special Org file diary entries")))
3912 (eval-after-load "calendar"
3913 '(progn
3914 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3915 'org-calendar-goto-agenda)
3916 (add-hook 'calendar-mode-hook
3917 (lambda ()
3918 (unless (eq org-agenda-diary-file 'diary-file)
3919 (define-key calendar-mode-map
3920 org-calendar-insert-diary-entry-key
3921 'org-agenda-diary-entry))))))
3923 (defgroup org-latex nil
3924 "Options for embedding LaTeX code into Org-mode."
3925 :tag "Org LaTeX"
3926 :group 'org)
3928 (defcustom org-format-latex-options
3929 '(:foreground default :background default :scale 1.0
3930 :html-foreground "Black" :html-background "Transparent"
3931 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3932 "Options for creating images from LaTeX fragments.
3933 This is a property list with the following properties:
3934 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3935 `default' means use the foreground of the default face.
3936 `auto' means use the foreground from the text face.
3937 :background the background color, or \"Transparent\".
3938 `default' means use the background of the default face.
3939 `auto' means use the background from the text face.
3940 :scale a scaling factor for the size of the images, to get more pixels
3941 :html-foreground, :html-background, :html-scale
3942 the same numbers for HTML export.
3943 :matchers a list indicating which matchers should be used to
3944 find LaTeX fragments. Valid members of this list are:
3945 \"begin\" find environments
3946 \"$1\" find single characters surrounded by $.$
3947 \"$\" find math expressions surrounded by $...$
3948 \"$$\" find math expressions surrounded by $$....$$
3949 \"\\(\" find math expressions surrounded by \\(...\\)
3950 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3951 :group 'org-latex
3952 :type 'plist)
3954 (defcustom org-format-latex-signal-error t
3955 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3956 When nil, just push out a message."
3957 :group 'org-latex
3958 :version "24.1"
3959 :type 'boolean)
3961 (defcustom org-latex-to-mathml-jar-file nil
3962 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3963 Use this to specify additional executable file say a jar file.
3965 When using MathToWeb as the converter, specify the full-path to
3966 your mathtoweb.jar file."
3967 :group 'org-latex
3968 :version "24.1"
3969 :type '(choice
3970 (const :tag "None" nil)
3971 (file :tag "JAR file" :must-match t)))
3973 (defcustom org-latex-to-mathml-convert-command nil
3974 "Command to convert LaTeX fragments to MathML.
3975 Replace format-specifiers in the command as noted below and use
3976 `shell-command' to convert LaTeX to MathML.
3977 %j: Executable file in fully expanded form as specified by
3978 `org-latex-to-mathml-jar-file'.
3979 %I: Input LaTeX file in fully expanded form.
3980 %i: The latex fragment to be converted.
3981 %o: Output MathML file.
3982 This command is used by `org-create-math-formula'.
3984 When using MathToWeb as the converter, set this to
3985 \"java -jar %j -unicode -force -df %o %I\".
3987 When using LaTeXML set this to
3988 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3989 :group 'org-latex
3990 :version "24.1"
3991 :type '(choice
3992 (const :tag "None" nil)
3993 (string :tag "\nShell command")))
3995 (defcustom org-latex-create-formula-image-program 'dvipng
3996 "Program to convert LaTeX fragments with.
3998 dvipng Process the LaTeX fragments to dvi file, then convert
3999 dvi files to png files using dvipng.
4000 This will also include processing of non-math environments.
4001 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4002 to convert pdf files to png files"
4003 :group 'org-latex
4004 :version "24.1"
4005 :type '(choice
4006 (const :tag "dvipng" dvipng)
4007 (const :tag "imagemagick" imagemagick)))
4009 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4010 "Path to store latex preview images.
4011 A relative path here creates many directories relative to the
4012 processed org files paths. An absolute path puts all preview
4013 images at the same place."
4014 :group 'org-latex
4015 :version "24.3"
4016 :type 'string)
4018 (defun org-format-latex-mathml-available-p ()
4019 "Return t if `org-latex-to-mathml-convert-command' is usable."
4020 (save-match-data
4021 (when (and (boundp 'org-latex-to-mathml-convert-command)
4022 org-latex-to-mathml-convert-command)
4023 (let ((executable (car (split-string
4024 org-latex-to-mathml-convert-command))))
4025 (when (executable-find executable)
4026 (if (string-match
4027 "%j" org-latex-to-mathml-convert-command)
4028 (file-readable-p org-latex-to-mathml-jar-file)
4029 t))))))
4031 (defcustom org-format-latex-header "\\documentclass{article}
4032 \\usepackage[usenames]{color}
4033 \[PACKAGES]
4034 \[DEFAULT-PACKAGES]
4035 \\pagestyle{empty} % do not remove
4036 % The settings below are copied from fullpage.sty
4037 \\setlength{\\textwidth}{\\paperwidth}
4038 \\addtolength{\\textwidth}{-3cm}
4039 \\setlength{\\oddsidemargin}{1.5cm}
4040 \\addtolength{\\oddsidemargin}{-2.54cm}
4041 \\setlength{\\evensidemargin}{\\oddsidemargin}
4042 \\setlength{\\textheight}{\\paperheight}
4043 \\addtolength{\\textheight}{-\\headheight}
4044 \\addtolength{\\textheight}{-\\headsep}
4045 \\addtolength{\\textheight}{-\\footskip}
4046 \\addtolength{\\textheight}{-3cm}
4047 \\setlength{\\topmargin}{1.5cm}
4048 \\addtolength{\\topmargin}{-2.54cm}"
4049 "The document header used for processing LaTeX fragments.
4050 It is imperative that this header make sure that no page number
4051 appears on the page. The package defined in the variables
4052 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4053 will either replace the placeholder \"[PACKAGES]\" in this
4054 header, or they will be appended."
4055 :group 'org-latex
4056 :type 'string)
4058 (defun org-set-packages-alist (var val)
4059 "Set the packages alist and make sure it has 3 elements per entry."
4060 (set var (mapcar (lambda (x)
4061 (if (and (consp x) (= (length x) 2))
4062 (list (car x) (nth 1 x) t)
4064 val)))
4066 (defun org-get-packages-alist (var)
4067 "Get the packages alist and make sure it has 3 elements per entry."
4068 (mapcar (lambda (x)
4069 (if (and (consp x) (= (length x) 2))
4070 (list (car x) (nth 1 x) t)
4072 (default-value var)))
4074 (defcustom org-latex-default-packages-alist
4075 '(("AUTO" "inputenc" t)
4076 ("T1" "fontenc" t)
4077 ("" "fixltx2e" nil)
4078 ("" "graphicx" t)
4079 ("" "longtable" nil)
4080 ("" "float" nil)
4081 ("" "wrapfig" nil)
4082 ("" "rotating" nil)
4083 ("normalem" "ulem" t)
4084 ("" "amsmath" t)
4085 ("" "textcomp" t)
4086 ("" "marvosym" t)
4087 ("" "wasysym" t)
4088 ("" "amssymb" t)
4089 ("" "capt-of" nil)
4090 ("" "hyperref" nil)
4091 "\\tolerance=1000")
4092 "Alist of default packages to be inserted in the header.
4094 Change this only if one of the packages here causes an
4095 incompatibility with another package you are using.
4097 The packages in this list are needed by one part or another of
4098 Org mode to function properly:
4100 - inputenc, fontenc: for basic font and character selection
4101 - fixltx2e: Important patches of LaTeX itself
4102 - graphicx: for including images
4103 - longtable: For multipage tables
4104 - float, wrapfig: for figure placement
4105 - rotating: for sideways figures and tables
4106 - ulem: for underline and strike-through
4107 - amsmath: for subscript and superscript and math environments
4108 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4109 for interpreting the entities in `org-entities'. You can skip
4110 some of these packages if you don't use any of their symbols.
4111 - capt-of: for captions outside of floats
4112 - hyperref: for cross references
4114 Therefore you should not modify this variable unless you know
4115 what you are doing. The one reason to change it anyway is that
4116 you might be loading some other package that conflicts with one
4117 of the default packages. Each element is either a cell or
4118 a string.
4120 A cell is of the format:
4122 \( \"options\" \"package\" SNIPPET-FLAG).
4124 If SNIPPET-FLAG is non-nil, the package also needs to be included
4125 when compiling LaTeX snippets into images for inclusion into
4126 non-LaTeX output.
4128 A string will be inserted as-is in the header of the document."
4129 :group 'org-latex
4130 :group 'org-export-latex
4131 :set 'org-set-packages-alist
4132 :get 'org-get-packages-alist
4133 :version "24.1"
4134 :type '(repeat
4135 (choice
4136 (list :tag "options/package pair"
4137 (string :tag "options")
4138 (string :tag "package")
4139 (boolean :tag "Snippet"))
4140 (string :tag "A line of LaTeX"))))
4142 (defcustom org-latex-packages-alist nil
4143 "Alist of packages to be inserted in every LaTeX header.
4145 These will be inserted after `org-latex-default-packages-alist'.
4146 Each element is either a cell or a string.
4148 A cell is of the format:
4150 \(\"options\" \"package\" SNIPPET-FLAG)
4152 SNIPPET-FLAG, when non-nil, indicates that this package is also
4153 needed when turning LaTeX snippets into images for inclusion into
4154 non-LaTeX output.
4156 A string will be inserted as-is in the header of the document.
4158 Make sure that you only list packages here which:
4160 - you want in every file;
4161 - do not conflict with the setup in `org-format-latex-header';
4162 - do not conflict with the default packages in
4163 `org-latex-default-packages-alist'."
4164 :group 'org-latex
4165 :group 'org-export-latex
4166 :set 'org-set-packages-alist
4167 :get 'org-get-packages-alist
4168 :type '(repeat
4169 (choice
4170 (list :tag "options/package pair"
4171 (string :tag "options")
4172 (string :tag "package")
4173 (boolean :tag "Snippet"))
4174 (string :tag "A line of LaTeX"))))
4176 (defgroup org-appearance nil
4177 "Settings for Org-mode appearance."
4178 :tag "Org Appearance"
4179 :group 'org)
4181 (defcustom org-level-color-stars-only nil
4182 "Non-nil means fontify only the stars in each headline.
4183 When nil, the entire headline is fontified.
4184 Changing it requires restart of `font-lock-mode' to become effective
4185 also in regions already fontified."
4186 :group 'org-appearance
4187 :type 'boolean)
4189 (defcustom org-hide-leading-stars nil
4190 "Non-nil means hide the first N-1 stars in a headline.
4191 This works by using the face `org-hide' for these stars. This
4192 face is white for a light background, and black for a dark
4193 background. You may have to customize the face `org-hide' to
4194 make this work.
4195 Changing it requires restart of `font-lock-mode' to become effective
4196 also in regions already fontified.
4197 You may also set this on a per-file basis by adding one of the following
4198 lines to the buffer:
4200 #+STARTUP: hidestars
4201 #+STARTUP: showstars"
4202 :group 'org-appearance
4203 :type 'boolean)
4205 (defcustom org-hidden-keywords nil
4206 "List of symbols corresponding to keywords to be hidden the org buffer.
4207 For example, a value '(title) for this list will make the document's title
4208 appear in the buffer without the initial #+TITLE: keyword."
4209 :group 'org-appearance
4210 :version "24.1"
4211 :type '(set (const :tag "#+AUTHOR" author)
4212 (const :tag "#+DATE" date)
4213 (const :tag "#+EMAIL" email)
4214 (const :tag "#+TITLE" title)))
4216 (defcustom org-custom-properties nil
4217 "List of properties (as strings) with a special meaning.
4218 The default use of these custom properties is to let the user
4219 hide them with `org-toggle-custom-properties-visibility'."
4220 :group 'org-properties
4221 :group 'org-appearance
4222 :version "24.3"
4223 :type '(repeat (string :tag "Property Name")))
4225 (defcustom org-fontify-done-headline nil
4226 "Non-nil means change the face of a headline if it is marked DONE.
4227 Normally, only the TODO/DONE keyword indicates the state of a headline.
4228 When this is non-nil, the headline after the keyword is set to the
4229 `org-headline-done' as an additional indication."
4230 :group 'org-appearance
4231 :type 'boolean)
4233 (defcustom org-fontify-emphasized-text t
4234 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4235 Changing this variable requires a restart of Emacs to take effect."
4236 :group 'org-appearance
4237 :type 'boolean)
4239 (defcustom org-fontify-whole-heading-line nil
4240 "Non-nil means fontify the whole line for headings.
4241 This is useful when setting a background color for the
4242 org-level-* faces."
4243 :group 'org-appearance
4244 :type 'boolean)
4246 (defcustom org-highlight-latex-and-related nil
4247 "Non-nil means highlight LaTeX related syntax in the buffer.
4248 When non nil, the value should be a list containing any of the
4249 following symbols:
4250 `latex' Highlight LaTeX snippets and environments.
4251 `script' Highlight subscript and superscript.
4252 `entities' Highlight entities."
4253 :group 'org-appearance
4254 :version "24.4"
4255 :package-version '(Org . "8.0")
4256 :type '(choice
4257 (const :tag "No highlighting" nil)
4258 (set :greedy t :tag "Highlight"
4259 (const :tag "LaTeX snippets and environments" latex)
4260 (const :tag "Subscript and superscript" script)
4261 (const :tag "Entities" entities))))
4263 (defcustom org-hide-emphasis-markers nil
4264 "Non-nil mean font-lock should hide the emphasis marker characters."
4265 :group 'org-appearance
4266 :type 'boolean)
4268 (defcustom org-hide-macro-markers nil
4269 "Non-nil mean font-lock should hide the brackets marking macro calls."
4270 :group 'org-appearance
4271 :type 'boolean)
4273 (defcustom org-pretty-entities nil
4274 "Non-nil means show entities as UTF8 characters.
4275 When nil, the \\name form remains in the buffer."
4276 :group 'org-appearance
4277 :version "24.1"
4278 :type 'boolean)
4280 (defcustom org-pretty-entities-include-sub-superscripts t
4281 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4282 :group 'org-appearance
4283 :version "24.1"
4284 :type 'boolean)
4286 (defvar org-emph-re nil
4287 "Regular expression for matching emphasis.
4288 After a match, the match groups contain these elements:
4289 0 The match of the full regular expression, including the characters
4290 before and after the proper match
4291 1 The character before the proper match, or empty at beginning of line
4292 2 The proper match, including the leading and trailing markers
4293 3 The leading marker like * or /, indicating the type of highlighting
4294 4 The text between the emphasis markers, not including the markers
4295 5 The character after the match, empty at the end of a line")
4296 (defvar org-verbatim-re nil
4297 "Regular expression for matching verbatim text.")
4298 (defvar org-emphasis-regexp-components) ; defined just below
4299 (defvar org-emphasis-alist) ; defined just below
4300 (defun org-set-emph-re (var val)
4301 "Set variable and compute the emphasis regular expression."
4302 (set var val)
4303 (when (and (boundp 'org-emphasis-alist)
4304 (boundp 'org-emphasis-regexp-components)
4305 org-emphasis-alist org-emphasis-regexp-components)
4306 (let* ((e org-emphasis-regexp-components)
4307 (pre (car e))
4308 (post (nth 1 e))
4309 (border (nth 2 e))
4310 (body (nth 3 e))
4311 (nl (nth 4 e))
4312 (body1 (concat body "*?"))
4313 (markers (mapconcat 'car org-emphasis-alist ""))
4314 (vmarkers (mapconcat
4315 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4316 org-emphasis-alist "")))
4317 ;; make sure special characters appear at the right position in the class
4318 (if (string-match "\\^" markers)
4319 (setq markers (concat (replace-match "" t t markers) "^")))
4320 (if (string-match "-" markers)
4321 (setq markers (concat (replace-match "" t t markers) "-")))
4322 (if (string-match "\\^" vmarkers)
4323 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4324 (if (string-match "-" vmarkers)
4325 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4326 (if (> nl 0)
4327 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4328 (int-to-string nl) "\\}")))
4329 ;; Make the regexp
4330 (setq org-emph-re
4331 (concat "\\([" pre "]\\|^\\)"
4332 "\\("
4333 "\\([" markers "]\\)"
4334 "\\("
4335 "[^" border "]\\|"
4336 "[^" border "]"
4337 body1
4338 "[^" border "]"
4339 "\\)"
4340 "\\3\\)"
4341 "\\([" post "]\\|$\\)"))
4342 (setq org-verbatim-re
4343 (concat "\\([" pre "]\\|^\\)"
4344 "\\("
4345 "\\([" vmarkers "]\\)"
4346 "\\("
4347 "[^" border "]\\|"
4348 "[^" border "]"
4349 body1
4350 "[^" border "]"
4351 "\\)"
4352 "\\3\\)"
4353 "\\([" post "]\\|$\\)")))))
4355 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4356 ;; set this option proved cumbersome. See this message/thread:
4357 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4358 (defvar org-emphasis-regexp-components
4359 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4360 "Components used to build the regular expression for emphasis.
4361 This is a list with five entries. Terminology: In an emphasis string
4362 like \" *strong word* \", we call the initial space PREMATCH, the final
4363 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4364 and \"trong wor\" is the body. The different components in this variable
4365 specify what is allowed/forbidden in each part:
4367 pre Chars allowed as prematch. Beginning of line will be allowed too.
4368 post Chars allowed as postmatch. End of line will be allowed too.
4369 border The chars *forbidden* as border characters.
4370 body-regexp A regexp like \".\" to match a body character. Don't use
4371 non-shy groups here, and don't allow newline here.
4372 newline The maximum number of newlines allowed in an emphasis exp.
4374 You need to reload Org or to restart Emacs after customizing this.")
4376 (defcustom org-emphasis-alist
4377 `(("*" bold)
4378 ("/" italic)
4379 ("_" underline)
4380 ("=" org-verbatim verbatim)
4381 ("~" org-code verbatim)
4382 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4383 "Alist of characters and faces to emphasize text.
4384 Text starting and ending with a special character will be emphasized,
4385 for example *bold*, _underlined_ and /italic/. This variable sets the
4386 marker characters and the face to be used by font-lock for highlighting
4387 in Org-mode Emacs buffers.
4389 You need to reload Org or to restart Emacs after customizing this."
4390 :group 'org-appearance
4391 :set 'org-set-emph-re
4392 :version "24.4"
4393 :package-version '(Org . "8.0")
4394 :type '(repeat
4395 (list
4396 (string :tag "Marker character")
4397 (choice
4398 (face :tag "Font-lock-face")
4399 (plist :tag "Face property list"))
4400 (option (const verbatim)))))
4402 (defvar org-protecting-blocks
4403 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4404 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4405 This is needed for font-lock setup.")
4407 ;;; Miscellaneous options
4409 (defgroup org-completion nil
4410 "Completion in Org-mode."
4411 :tag "Org Completion"
4412 :group 'org)
4414 (defcustom org-completion-use-ido nil
4415 "Non-nil means use ido completion wherever possible.
4416 Note that `ido-mode' must be active for this variable to be relevant.
4417 If you decide to turn this variable on, you might well want to turn off
4418 `org-outline-path-complete-in-steps'.
4419 See also `org-completion-use-iswitchb'."
4420 :group 'org-completion
4421 :type 'boolean)
4423 (defcustom org-completion-use-iswitchb nil
4424 "Non-nil means use iswitchb completion wherever possible.
4425 Note that `iswitchb-mode' must be active for this variable to be relevant.
4426 If you decide to turn this variable on, you might well want to turn off
4427 `org-outline-path-complete-in-steps'.
4428 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4429 :group 'org-completion
4430 :type 'boolean)
4432 (defcustom org-completion-fallback-command 'hippie-expand
4433 "The expansion command called by \\[pcomplete] in normal context.
4434 Normal means, no org-mode-specific context."
4435 :group 'org-completion
4436 :type 'function)
4438 ;;; Functions and variables from their packages
4439 ;; Declared here to avoid compiler warnings
4441 ;; XEmacs only
4442 (defvar outline-mode-menu-heading)
4443 (defvar outline-mode-menu-show)
4444 (defvar outline-mode-menu-hide)
4445 (defvar zmacs-regions) ; XEmacs regions
4447 ;; Emacs only
4448 (defvar mark-active)
4450 ;; Various packages
4451 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4452 (declare-function calendar-forward-day "cal-move" (arg))
4453 (declare-function calendar-goto-date "cal-move" (date))
4454 (declare-function calendar-goto-today "cal-move" ())
4455 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4456 (defvar calc-embedded-close-formula)
4457 (defvar calc-embedded-open-formula)
4458 (declare-function cdlatex-tab "ext:cdlatex" ())
4459 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4460 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4461 (defvar font-lock-unfontify-region-function)
4462 (declare-function iswitchb-read-buffer "iswitchb"
4463 (prompt &optional default require-match start matches-set))
4464 (defvar iswitchb-temp-buflist)
4465 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4466 (defvar org-agenda-tags-todo-honor-ignore-options)
4467 (declare-function org-agenda-skip "org-agenda" ())
4468 (declare-function
4469 org-agenda-format-item "org-agenda"
4470 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4471 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4472 (declare-function org-agenda-change-all-lines "org-agenda"
4473 (newhead hdmarker &optional fixface just-this))
4474 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4475 (declare-function org-agenda-maybe-redo "org-agenda" ())
4476 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4477 (beg end))
4478 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4479 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4480 "org-agenda" (&optional end))
4481 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4482 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4483 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4484 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4485 (declare-function org-indent-mode "org-indent" (&optional arg))
4486 (declare-function parse-time-string "parse-time" (string))
4487 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4488 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4489 (defvar remember-data-file)
4490 (defvar texmathp-why)
4491 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4492 (declare-function table--at-cell-p "table" (position &optional object at-column))
4493 (declare-function calc-eval "calc" (str &optional separator &rest args))
4495 ;;;###autoload
4496 (defun turn-on-orgtbl ()
4497 "Unconditionally turn on `orgtbl-mode'."
4498 (require 'org-table)
4499 (orgtbl-mode 1))
4501 (defun org-at-table-p (&optional table-type)
4502 "Return t if the cursor is inside an org-type table.
4503 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4504 (if org-enable-table-editor
4505 (save-excursion
4506 (beginning-of-line 1)
4507 (looking-at (if table-type org-table-any-line-regexp
4508 org-table-line-regexp)))
4509 nil))
4510 (defsubst org-table-p () (org-at-table-p))
4512 (defun org-at-table.el-p ()
4513 "Return t if and only if we are at a table.el table."
4514 (and (org-at-table-p 'any)
4515 (save-excursion
4516 (goto-char (org-table-begin 'any))
4517 (looking-at org-table1-hline-regexp))))
4519 (defun org-table-recognize-table.el ()
4520 "If there is a table.el table nearby, recognize it and move into it."
4521 (if org-table-tab-recognizes-table.el
4522 (if (org-at-table.el-p)
4523 (progn
4524 (beginning-of-line 1)
4525 (if (looking-at org-table-dataline-regexp)
4527 (if (looking-at org-table1-hline-regexp)
4528 (progn
4529 (beginning-of-line 2)
4530 (if (looking-at org-table-any-border-regexp)
4531 (beginning-of-line -1)))))
4532 (if (re-search-forward "|" (org-table-end t) t)
4533 (progn
4534 (require 'table)
4535 (if (table--at-cell-p (point))
4537 (message "recognizing table.el table...")
4538 (table-recognize-table)
4539 (message "recognizing table.el table...done")))
4540 (error "This should not happen"))
4542 nil)
4543 nil))
4545 (defun org-at-table-hline-p ()
4546 "Return t if the cursor is inside a hline in a table."
4547 (if org-enable-table-editor
4548 (save-excursion
4549 (beginning-of-line 1)
4550 (looking-at org-table-hline-regexp))
4551 nil))
4553 (defun org-table-map-tables (function &optional quietly)
4554 "Apply FUNCTION to the start of all tables in the buffer."
4555 (save-excursion
4556 (save-restriction
4557 (widen)
4558 (goto-char (point-min))
4559 (while (re-search-forward org-table-any-line-regexp nil t)
4560 (unless quietly
4561 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4562 (beginning-of-line 1)
4563 (when (and (looking-at org-table-line-regexp)
4564 ;; Exclude tables in src/example/verbatim/clocktable blocks
4565 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4566 (save-excursion (funcall function))
4567 (or (looking-at org-table-line-regexp)
4568 (forward-char 1)))
4569 (re-search-forward org-table-any-border-regexp nil 1))))
4570 (unless quietly (message "Mapping tables: done")))
4572 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4573 (declare-function org-clock-update-mode-line "org-clock" ())
4574 (declare-function org-resolve-clocks "org-clock"
4575 (&optional also-non-dangling-p prompt last-valid))
4577 (defun org-at-TBLFM-p (&optional pos)
4578 "Non-nil when point (or POS) is in #+TBLFM line."
4579 (save-excursion
4580 (goto-char (or pos (point)))
4581 (beginning-of-line)
4582 (and (eq (org-element-type (org-element-at-point)) 'table)
4583 (looking-at org-TBLFM-regexp))))
4585 (defvar org-clock-start-time)
4586 (defvar org-clock-marker (make-marker)
4587 "Marker recording the last clock-in.")
4588 (defvar org-clock-hd-marker (make-marker)
4589 "Marker recording the last clock-in, but the headline position.")
4590 (defvar org-clock-heading ""
4591 "The heading of the current clock entry.")
4592 (defun org-clock-is-active ()
4593 "Return the buffer where the clock is currently running.
4594 Return nil if no clock is running."
4595 (marker-buffer org-clock-marker))
4597 (defun org-check-running-clock ()
4598 "Check if the current buffer contains the running clock.
4599 If yes, offer to stop it and to save the buffer with the changes."
4600 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4601 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4602 (buffer-name))))
4603 (org-clock-out)
4604 (when (y-or-n-p "Save changed buffer?")
4605 (save-buffer))))
4607 (defun org-clocktable-try-shift (dir n)
4608 "Check if this line starts a clock table, if yes, shift the time block."
4609 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4610 (org-clocktable-shift dir n)))
4612 ;;;###autoload
4613 (defun org-clock-persistence-insinuate ()
4614 "Set up hooks for clock persistence."
4615 (require 'org-clock)
4616 (add-hook 'org-mode-hook 'org-clock-load)
4617 (add-hook 'kill-emacs-hook 'org-clock-save))
4619 (defgroup org-archive nil
4620 "Options concerning archiving in Org-mode."
4621 :tag "Org Archive"
4622 :group 'org-structure)
4624 (defcustom org-archive-location "%s_archive::"
4625 "The location where subtrees should be archived.
4627 The value of this variable is a string, consisting of two parts,
4628 separated by a double-colon. The first part is a filename and
4629 the second part is a headline.
4631 When the filename is omitted, archiving happens in the same file.
4632 %s in the filename will be replaced by the current file
4633 name (without the directory part). Archiving to a different file
4634 is useful to keep archived entries from contributing to the
4635 Org-mode Agenda.
4637 The archived entries will be filed as subtrees of the specified
4638 headline. When the headline is omitted, the subtrees are simply
4639 filed away at the end of the file, as top-level entries. Also in
4640 the heading you can use %s to represent the file name, this can be
4641 useful when using the same archive for a number of different files.
4643 Here are a few examples:
4644 \"%s_archive::\"
4645 If the current file is Projects.org, archive in file
4646 Projects.org_archive, as top-level trees. This is the default.
4648 \"::* Archived Tasks\"
4649 Archive in the current file, under the top-level headline
4650 \"* Archived Tasks\".
4652 \"~/org/archive.org::\"
4653 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4655 \"~/org/archive.org::* From %s\"
4656 Archive in file ~/org/archive.org (absolute path), under headlines
4657 \"From FILENAME\" where file name is the current file name.
4659 \"~/org/datetree.org::datetree/* Finished Tasks\"
4660 The \"datetree/\" string is special, signifying to archive
4661 items to the datetree. Items are placed in either the CLOSED
4662 date of the item, or the current date if there is no CLOSED date.
4663 The heading will be a subentry to the current date. There doesn't
4664 need to be a heading, but there always needs to be a slash after
4665 datetree. For example, to store archived items directly in the
4666 datetree, use \"~/org/datetree.org::datetree/\".
4668 \"basement::** Finished Tasks\"
4669 Archive in file ./basement (relative path), as level 3 trees
4670 below the level 2 heading \"** Finished Tasks\".
4672 You may set this option on a per-file basis by adding to the buffer a
4673 line like
4675 #+ARCHIVE: basement::** Finished Tasks
4677 You may also define it locally for a subtree by setting an ARCHIVE property
4678 in the entry. If such a property is found in an entry, or anywhere up
4679 the hierarchy, it will be used."
4680 :group 'org-archive
4681 :type 'string)
4683 (defcustom org-agenda-skip-archived-trees t
4684 "Non-nil means the agenda will skip any items located in archived trees.
4685 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4686 variable is no longer recommended, you should leave it at the value t.
4687 Instead, use the key `v' to cycle the archives-mode in the agenda."
4688 :group 'org-archive
4689 :group 'org-agenda-skip
4690 :type 'boolean)
4692 (defcustom org-columns-skip-archived-trees t
4693 "Non-nil means ignore archived trees when creating column view."
4694 :group 'org-archive
4695 :group 'org-properties
4696 :type 'boolean)
4698 (defcustom org-cycle-open-archived-trees nil
4699 "Non-nil means `org-cycle' will open archived trees.
4700 An archived tree is a tree marked with the tag ARCHIVE.
4701 When nil, archived trees will stay folded. You can still open them with
4702 normal outline commands like `show-all', but not with the cycling commands."
4703 :group 'org-archive
4704 :group 'org-cycle
4705 :type 'boolean)
4707 (defcustom org-sparse-tree-open-archived-trees nil
4708 "Non-nil means sparse tree construction shows matches in archived trees.
4709 When nil, matches in these trees are highlighted, but the trees are kept in
4710 collapsed state."
4711 :group 'org-archive
4712 :group 'org-sparse-trees
4713 :type 'boolean)
4715 (defcustom org-sparse-tree-default-date-type nil
4716 "The default date type when building a sparse tree.
4717 When this is nil, a date is a scheduled or a deadline timestamp.
4718 Otherwise, these types are allowed:
4720 all: all timestamps
4721 active: only active timestamps (<...>)
4722 inactive: only inactive timestamps ([...])
4723 scheduled: only scheduled timestamps
4724 deadline: only deadline timestamps"
4725 :type '(choice (const :tag "Scheduled or deadline" nil)
4726 (const :tag "All timestamps" all)
4727 (const :tag "Only active timestamps" active)
4728 (const :tag "Only inactive timestamps" inactive)
4729 (const :tag "Only scheduled timestamps" scheduled)
4730 (const :tag "Only deadline timestamps" deadline)
4731 (const :tag "Only closed timestamps" closed))
4732 :version "25.1"
4733 :package-version '(Org . "8.3")
4734 :group 'org-sparse-trees)
4736 (defun org-cycle-hide-archived-subtrees (state)
4737 "Re-hide all archived subtrees after a visibility state change."
4738 (when (and (not org-cycle-open-archived-trees)
4739 (not (memq state '(overview folded))))
4740 (save-excursion
4741 (let* ((globalp (memq state '(contents all)))
4742 (beg (if globalp (point-min) (point)))
4743 (end (if globalp (point-max) (org-end-of-subtree t))))
4744 (org-hide-archived-subtrees beg end)
4745 (goto-char beg)
4746 (if (looking-at (concat ".*:" org-archive-tag ":"))
4747 (message "%s" (substitute-command-keys
4748 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4750 (defun org-force-cycle-archived ()
4751 "Cycle subtree even if it is archived."
4752 (interactive)
4753 (setq this-command 'org-cycle)
4754 (let ((org-cycle-open-archived-trees t))
4755 (call-interactively 'org-cycle)))
4757 (defun org-hide-archived-subtrees (beg end)
4758 "Re-hide all archived subtrees after a visibility state change."
4759 (org-with-wide-buffer
4760 (let ((case-fold-search nil)
4761 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4762 (goto-char beg)
4763 (while (and (< (point) end) (re-search-forward re end t))
4764 (when (member org-archive-tag (org-get-tags))
4765 (org-flag-subtree t)
4766 (org-end-of-subtree t))))))
4768 (declare-function outline-end-of-heading "outline" ())
4769 (declare-function outline-flag-region "outline" (from to flag))
4770 (defun org-flag-subtree (flag)
4771 (save-excursion
4772 (org-back-to-heading t)
4773 (outline-end-of-heading)
4774 (outline-flag-region (point)
4775 (progn (org-end-of-subtree t) (point))
4776 flag)))
4778 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4780 ;; Declare Column View Code
4782 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4783 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4784 (declare-function org-columns-compute "org-colview" (property))
4786 ;; Declare ID code
4788 (declare-function org-id-store-link "org-id")
4789 (declare-function org-id-locations-load "org-id")
4790 (declare-function org-id-locations-save "org-id")
4791 (defvar org-id-track-globally)
4793 ;;; Variables for pre-computed regular expressions, all buffer local
4795 (defvar org-todo-regexp nil
4796 "Matches any of the TODO state keywords.")
4797 (make-variable-buffer-local 'org-todo-regexp)
4798 (defvar org-not-done-regexp nil
4799 "Matches any of the TODO state keywords except the last one.")
4800 (make-variable-buffer-local 'org-not-done-regexp)
4801 (defvar org-not-done-heading-regexp nil
4802 "Matches a TODO headline that is not done.")
4803 (make-variable-buffer-local 'org-not-done-regexp)
4804 (defvar org-todo-line-regexp nil
4805 "Matches a headline and puts TODO state into group 2 if present.")
4806 (make-variable-buffer-local 'org-todo-line-regexp)
4807 (defvar org-complex-heading-regexp nil
4808 "Matches a headline and puts everything into groups:
4809 group 1: the stars
4810 group 2: The todo keyword, maybe
4811 group 3: Priority cookie
4812 group 4: True headline
4813 group 5: Tags")
4814 (make-variable-buffer-local 'org-complex-heading-regexp)
4815 (defvar org-complex-heading-regexp-format nil
4816 "Printf format to make regexp to match an exact headline.
4817 This regexp will match the headline of any node which has the
4818 exact headline text that is put into the format, but may have any
4819 TODO state, priority and tags.")
4820 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4821 (defvar org-todo-line-tags-regexp nil
4822 "Matches a headline and puts TODO state into group 2 if present.
4823 Also put tags into group 4 if tags are present.")
4824 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4826 (defconst org-plain-time-of-day-regexp
4827 (concat
4828 "\\(\\<[012]?[0-9]"
4829 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4830 "\\(--?"
4831 "\\(\\<[012]?[0-9]"
4832 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4833 "\\)?")
4834 "Regular expression to match a plain time or time range.
4835 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4836 groups carry important information:
4837 0 the full match
4838 1 the first time, range or not
4839 8 the second time, if it is a range.")
4841 (defconst org-plain-time-extension-regexp
4842 (concat
4843 "\\(\\<[012]?[0-9]"
4844 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4845 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4846 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4847 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4848 groups carry important information:
4849 0 the full match
4850 7 hours of duration
4851 9 minutes of duration")
4853 (defconst org-stamp-time-of-day-regexp
4854 (concat
4855 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4856 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4857 "\\(--?"
4858 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4859 "Regular expression to match a timestamp time or time range.
4860 After a match, the following groups carry important information:
4861 0 the full match
4862 1 date plus weekday, for back referencing to make sure both times are on the same day
4863 2 the first time, range or not
4864 4 the second time, if it is a range.")
4866 (defconst org-startup-options
4867 '(("fold" org-startup-folded t)
4868 ("overview" org-startup-folded t)
4869 ("nofold" org-startup-folded nil)
4870 ("showall" org-startup-folded nil)
4871 ("showeverything" org-startup-folded showeverything)
4872 ("content" org-startup-folded content)
4873 ("indent" org-startup-indented t)
4874 ("noindent" org-startup-indented nil)
4875 ("hidestars" org-hide-leading-stars t)
4876 ("showstars" org-hide-leading-stars nil)
4877 ("odd" org-odd-levels-only t)
4878 ("oddeven" org-odd-levels-only nil)
4879 ("align" org-startup-align-all-tables t)
4880 ("noalign" org-startup-align-all-tables nil)
4881 ("inlineimages" org-startup-with-inline-images t)
4882 ("noinlineimages" org-startup-with-inline-images nil)
4883 ("latexpreview" org-startup-with-latex-preview t)
4884 ("nolatexpreview" org-startup-with-latex-preview nil)
4885 ("customtime" org-display-custom-times t)
4886 ("logdone" org-log-done time)
4887 ("lognotedone" org-log-done note)
4888 ("nologdone" org-log-done nil)
4889 ("lognoteclock-out" org-log-note-clock-out t)
4890 ("nolognoteclock-out" org-log-note-clock-out nil)
4891 ("logrepeat" org-log-repeat state)
4892 ("lognoterepeat" org-log-repeat note)
4893 ("logdrawer" org-log-into-drawer t)
4894 ("nologdrawer" org-log-into-drawer nil)
4895 ("logstatesreversed" org-log-states-order-reversed t)
4896 ("nologstatesreversed" org-log-states-order-reversed nil)
4897 ("nologrepeat" org-log-repeat nil)
4898 ("logreschedule" org-log-reschedule time)
4899 ("lognotereschedule" org-log-reschedule note)
4900 ("nologreschedule" org-log-reschedule nil)
4901 ("logredeadline" org-log-redeadline time)
4902 ("lognoteredeadline" org-log-redeadline note)
4903 ("nologredeadline" org-log-redeadline nil)
4904 ("logrefile" org-log-refile time)
4905 ("lognoterefile" org-log-refile note)
4906 ("nologrefile" org-log-refile nil)
4907 ("fninline" org-footnote-define-inline t)
4908 ("nofninline" org-footnote-define-inline nil)
4909 ("fnlocal" org-footnote-section nil)
4910 ("fnauto" org-footnote-auto-label t)
4911 ("fnprompt" org-footnote-auto-label nil)
4912 ("fnconfirm" org-footnote-auto-label confirm)
4913 ("fnplain" org-footnote-auto-label plain)
4914 ("fnadjust" org-footnote-auto-adjust t)
4915 ("nofnadjust" org-footnote-auto-adjust nil)
4916 ("constcgs" constants-unit-system cgs)
4917 ("constSI" constants-unit-system SI)
4918 ("noptag" org-tag-persistent-alist nil)
4919 ("hideblocks" org-hide-block-startup t)
4920 ("nohideblocks" org-hide-block-startup nil)
4921 ("beamer" org-startup-with-beamer-mode t)
4922 ("entitiespretty" org-pretty-entities t)
4923 ("entitiesplain" org-pretty-entities nil))
4924 "Variable associated with STARTUP options for org-mode.
4925 Each element is a list of three items: the startup options (as written
4926 in the #+STARTUP line), the corresponding variable, and the value to set
4927 this variable to if the option is found. An optional forth element PUSH
4928 means to push this value onto the list in the variable.")
4930 (defcustom org-group-tags t
4931 "When non-nil (the default), use group tags.
4932 This can be turned on/off through `org-toggle-tags-groups'."
4933 :group 'org-tags
4934 :group 'org-startup
4935 :type 'boolean)
4937 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4939 (defun org-toggle-tags-groups ()
4940 "Toggle support for group tags.
4941 Support for group tags is controlled by the option
4942 `org-group-tags', which is non-nil by default."
4943 (interactive)
4944 (setq org-group-tags (not org-group-tags))
4945 (cond ((and (derived-mode-p 'org-agenda-mode)
4946 org-group-tags)
4947 (org-agenda-redo))
4948 ((derived-mode-p 'org-mode)
4949 (let ((org-inhibit-startup t)) (org-mode))))
4950 (message "Groups tags support has been turned %s"
4951 (if org-group-tags "on" "off")))
4953 (defun org-set-regexps-and-options (&optional tags-only)
4954 "Precompute regular expressions used in the current buffer.
4955 When optional argument TAGS-ONLY is non-nil, only compute tags
4956 related expressions."
4957 (when (derived-mode-p 'org-mode)
4958 (let ((alist (org--setup-collect-keywords
4959 (org-make-options-regexp
4960 (append '("FILETAGS" "TAGS" "SETUPFILE")
4961 (and (not tags-only)
4962 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4963 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4964 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4965 (org--setup-process-tags
4966 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4967 (unless tags-only
4968 ;; File properties.
4969 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4970 ;; Archive location.
4971 (let ((archive (cdr (assq 'archive alist))))
4972 (when archive (org-set-local 'org-archive-location archive)))
4973 ;; Category.
4974 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4975 (when cat
4976 (org-set-local 'org-category (intern cat))
4977 (org-set-local 'org-file-properties
4978 (org--update-property-plist
4979 "CATEGORY" cat org-file-properties))))
4980 ;; Columns.
4981 (let ((column (cdr (assq 'columns alist))))
4982 (when column (org-set-local 'org-columns-default-format column)))
4983 ;; Constants.
4984 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4985 ;; Link abbreviations.
4986 (let ((links (cdr (assq 'link alist))))
4987 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4988 ;; Priorities.
4989 (let ((priorities (cdr (assq 'priorities alist))))
4990 (when priorities
4991 (org-set-local 'org-highest-priority (nth 0 priorities))
4992 (org-set-local 'org-lowest-priority (nth 1 priorities))
4993 (org-set-local 'org-default-priority (nth 2 priorities))))
4994 ;; Scripts.
4995 (let ((scripts (assq 'scripts alist)))
4996 (when scripts
4997 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4998 ;; Startup options.
4999 (let ((startup (cdr (assq 'startup alist))))
5000 (dolist (option startup)
5001 (let ((entry (assoc-string option org-startup-options t)))
5002 (when entry
5003 (let ((var (nth 1 entry))
5004 (val (nth 2 entry)))
5005 (if (not (nth 3 entry)) (org-set-local var val)
5006 (unless (listp (symbol-value var))
5007 (org-set-local var nil))
5008 (add-to-list var val)))))))
5009 ;; TODO keywords.
5010 (org-set-local 'org-todo-kwd-alist nil)
5011 (org-set-local 'org-todo-key-alist nil)
5012 (org-set-local 'org-todo-key-trigger nil)
5013 (org-set-local 'org-todo-keywords-1 nil)
5014 (org-set-local 'org-done-keywords nil)
5015 (org-set-local 'org-todo-heads nil)
5016 (org-set-local 'org-todo-sets nil)
5017 (org-set-local 'org-todo-log-states nil)
5018 (let ((todo-sequences
5019 (or (nreverse (cdr (assq 'todo alist)))
5020 (let ((d (default-value 'org-todo-keywords)))
5021 (if (not (stringp (car d))) d
5022 ;; XXX: Backward compatibility code.
5023 (list (cons org-todo-interpretation d)))))))
5024 (dolist (sequence todo-sequences)
5025 (let* ((sequence (or (run-hook-with-args-until-success
5026 'org-todo-setup-filter-hook sequence)
5027 sequence))
5028 (sequence-type (car sequence))
5029 (keywords (cdr sequence))
5030 (sep (member "|" keywords))
5031 names alist)
5032 (dolist (k (remove "|" keywords))
5033 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5035 (error "Invalid TODO keyword %s" k))
5036 (let ((name (match-string 1 k))
5037 (key (match-string 2 k))
5038 (log (org-extract-log-state-settings k)))
5039 (push name names)
5040 (push (cons name (and key (string-to-char key))) alist)
5041 (when log (push log org-todo-log-states))))
5042 (let* ((names (nreverse names))
5043 (done (if sep (org-remove-keyword-keys (cdr sep))
5044 (last names)))
5045 (head (car names))
5046 (tail (list sequence-type head (car done) (org-last done))))
5047 (add-to-list 'org-todo-heads head 'append)
5048 (push names org-todo-sets)
5049 (setq org-done-keywords (append org-done-keywords done nil))
5050 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5051 (setq org-todo-key-alist
5052 (append org-todo-key-alist
5053 (and alist
5054 (append '((:startgroup))
5055 (nreverse alist)
5056 '((:endgroup))))))
5057 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5058 (setq org-todo-sets (nreverse org-todo-sets)
5059 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5060 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5061 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5062 ;; Compute the regular expressions and other local variables.
5063 ;; Using `org-outline-regexp-bol' would complicate them much,
5064 ;; because of the fixed white space at the end of that string.
5065 (if (not org-done-keywords)
5066 (setq org-done-keywords
5067 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5068 (setq org-not-done-keywords
5069 (org-delete-all org-done-keywords
5070 (copy-sequence org-todo-keywords-1))
5071 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5072 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5073 org-not-done-heading-regexp
5074 (format org-heading-keyword-regexp-format org-not-done-regexp)
5075 org-todo-line-regexp
5076 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5077 org-complex-heading-regexp
5078 (concat "^\\(\\*+\\)"
5079 "\\(?: +" org-todo-regexp "\\)?"
5080 "\\(?: +\\(\\[#.\\]\\)\\)?"
5081 "\\(?: +\\(.*?\\)\\)??"
5082 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5083 "[ \t]*$")
5084 org-complex-heading-regexp-format
5085 (concat "^\\(\\*+\\)"
5086 "\\(?: +" org-todo-regexp "\\)?"
5087 "\\(?: +\\(\\[#.\\]\\)\\)?"
5088 "\\(?: +"
5089 ;; Stats cookies can be stuck to body.
5090 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5091 "\\(%s\\)"
5092 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5093 "\\)"
5094 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5095 "[ \t]*$")
5096 org-todo-line-tags-regexp
5097 (concat "^\\(\\*+\\)"
5098 "\\(?: +" org-todo-regexp "\\)?"
5099 "\\(?: +\\(.*?\\)\\)??"
5100 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5101 "[ \t]*$"))
5102 (org-compute-latex-and-related-regexp)))))
5104 (defun org--setup-collect-keywords (regexp &optional files alist)
5105 "Return setup keywords values as an alist.
5107 REGEXP matches a subset of setup keywords. FILES is a list of
5108 file names already visited. It is used to avoid circular setup
5109 files. ALIST, when non-nil, is the alist computed so far.
5111 Return value contains the following keys: `archive', `category',
5112 `columns', `constants', `filetags', `link', `priorities',
5113 `property', `scripts', `startup', `tags' and `todo'."
5114 (org-with-wide-buffer
5115 (goto-char (point-min))
5116 (let ((case-fold-search t))
5117 (while (re-search-forward regexp nil t)
5118 (let ((element (org-element-at-point)))
5119 (when (eq (org-element-type element) 'keyword)
5120 (let ((key (org-element-property :key element))
5121 (value (org-element-property :value element)))
5122 (cond
5123 ((equal key "ARCHIVE")
5124 (when (org-string-nw-p value)
5125 (push (cons 'archive value) alist)))
5126 ((equal key "CATEGORY") (push (cons 'category value) alist))
5127 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5128 ((equal key "CONSTANTS")
5129 (let* ((constants (assq 'constants alist))
5130 (store (cdr constants)))
5131 (dolist (pair (org-split-string value))
5132 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5133 pair)
5134 (let* ((name (match-string 1 pair))
5135 (value (match-string 2 pair))
5136 (old (assoc name store)))
5137 (if old (setcdr old value)
5138 (push (cons name value) store)))))
5139 (if constants (setcdr constants store)
5140 (push (cons 'constants store) alist))))
5141 ((equal key "FILETAGS")
5142 (when (org-string-nw-p value)
5143 (let ((old (assq 'filetags alist))
5144 (new (apply #'nconc
5145 (mapcar (lambda (x) (org-split-string x ":"))
5146 (org-split-string value)))))
5147 (if old (setcdr old (append new (cdr old)))
5148 (push (cons 'filetags new) alist)))))
5149 ((equal key "LINK")
5150 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5151 (let ((links (assq 'link alist))
5152 (pair (cons (org-match-string-no-properties 1 value)
5153 (org-match-string-no-properties 2 value))))
5154 (if links (push pair (cdr links))
5155 (push (list 'link pair) alist)))))
5156 ((equal key "OPTIONS")
5157 (when (and (org-string-nw-p value)
5158 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5159 (push (cons 'scripts (read (match-string 1 value))) alist)))
5160 ((equal key "PRIORITIES")
5161 (push (cons 'priorities
5162 (let ((prio (org-split-string value)))
5163 (if (< (length prio) 3) '(?A ?C ?B)
5164 (mapcar #'string-to-char prio))))
5165 alist))
5166 ((equal key "PROPERTY")
5167 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5168 (let* ((property (assq 'property alist))
5169 (value (org--update-property-plist
5170 (org-match-string-no-properties 1 value)
5171 (org-match-string-no-properties 2 value)
5172 (cdr property))))
5173 (if property (setcdr property value)
5174 (push (cons 'property value) alist)))))
5175 ((equal key "STARTUP")
5176 (let ((startup (assq 'startup alist)))
5177 (if startup
5178 (setcdr startup
5179 (append (cdr startup) (org-split-string value)))
5180 (push (cons 'startup (org-split-string value)) alist))))
5181 ((equal key "TAGS")
5182 (let ((tag-cell (assq 'tags alist)))
5183 (if tag-cell
5184 (setcdr tag-cell
5185 (append (cdr tag-cell)
5186 '("\\n")
5187 (org-split-string value)))
5188 (push (cons 'tags (org-split-string value)) alist))))
5189 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5190 (let ((todo (assq 'todo alist))
5191 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5192 (org-split-string value))))
5193 (if todo (push value (cdr todo))
5194 (push (list 'todo value) alist))))
5195 ((equal key "SETUPFILE")
5196 (unless buffer-read-only ; Do not check in Gnus messages.
5197 (let ((f (and (org-string-nw-p value)
5198 (expand-file-name
5199 (org-remove-double-quotes value)))))
5200 (when (and f (file-readable-p f) (not (member f files)))
5201 (with-temp-buffer
5202 (insert-file-contents f)
5203 (setq alist
5204 ;; Fake Org mode to benefit from cache
5205 ;; without recurring needlessly.
5206 (let ((major-mode 'org-mode))
5207 (org--setup-collect-keywords
5208 regexp (cons f files) alist)))))))))))))))
5209 alist)
5211 (defun org--setup-process-tags (tags filetags)
5212 "Precompute variables used for tags.
5213 TAGS is a list of tags and tag group symbols, as strings.
5214 FILETAGS is a list of tags, as strings."
5215 ;; Process the file tags.
5216 (org-set-local 'org-file-tags
5217 (mapcar #'org-add-prop-inherited filetags))
5218 ;; Provide default tags if no local tags are found.
5219 (when (and (not tags) org-tag-alist)
5220 (setq tags
5221 (mapcar (lambda (tag)
5222 (case (car tag)
5223 (:startgroup "{")
5224 (:endgroup "}")
5225 (:startgrouptag "[")
5226 (:endgrouptag "]")
5227 (:grouptags ":")
5228 (:newline "\\n")
5229 (otherwise (concat (car tag)
5230 (and (characterp (cdr tag))
5231 (format "(%c)" (cdr tag)))))))
5232 org-tag-alist)))
5233 ;; Process the tags.
5234 (org-set-local 'org-tag-groups-alist nil)
5235 (org-set-local 'org-tag-alist nil)
5236 (let (group-flag)
5237 (while tags
5238 (let ((e (car tags)))
5239 (setq tags (cdr tags))
5240 (cond
5241 ((equal e "{")
5242 (push '(:startgroup) org-tag-alist)
5243 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5244 ((equal e "}")
5245 (push '(:endgroup) org-tag-alist)
5246 (setq group-flag nil))
5247 ((equal e "[")
5248 (push '(:startgrouptag) org-tag-alist)
5249 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5250 ((equal e "]")
5251 (push '(:endgrouptag) org-tag-alist)
5252 (setq group-flag nil))
5253 ((equal e ":")
5254 (push '(:grouptags) org-tag-alist)
5255 (setq group-flag 'append))
5256 ((equal e "\\n") (push '(:newline) org-tag-alist))
5257 ((string-match
5258 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5259 "\\|{.+?}\\)" ; regular expression
5260 "\\(?:(\\(.\\))\\)?\\'")) e)
5261 (let ((tag (match-string 1 e))
5262 (key (and (match-beginning 2)
5263 (string-to-char (match-string 2 e)))))
5264 (cond ((eq group-flag 'append)
5265 (setcar org-tag-groups-alist
5266 (append (car org-tag-groups-alist) (list tag))))
5267 (group-flag (push (list tag) org-tag-groups-alist)))
5268 ;; Push all tags in groups, no matter if they already exist.
5269 (unless (and (not group-flag) (assoc tag org-tag-alist))
5270 (push (cons tag key) org-tag-alist))))))))
5271 (setq org-tag-alist (nreverse org-tag-alist)))
5273 (defun org-file-contents (file &optional noerror)
5274 "Return the contents of FILE, as a string."
5275 (if (and file (file-readable-p file))
5276 (with-temp-buffer
5277 (insert-file-contents file)
5278 (buffer-string))
5279 (funcall (if noerror 'message 'error)
5280 "Cannot read file \"%s\"%s"
5281 file
5282 (let ((from (buffer-file-name (buffer-base-buffer))))
5283 (if from (concat " (referenced in file \"" from "\")") "")))))
5285 (defun org-extract-log-state-settings (x)
5286 "Extract the log state setting from a TODO keyword string.
5287 This will extract info from a string like \"WAIT(w@/!)\"."
5288 (let (kw key log1 log2)
5289 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5290 (setq kw (match-string 1 x)
5291 key (and (match-end 2) (match-string 2 x))
5292 log1 (and (match-end 3) (match-string 3 x))
5293 log2 (and (match-end 4) (match-string 4 x)))
5294 (and (or log1 log2)
5295 (list kw
5296 (and log1 (if (equal log1 "!") 'time 'note))
5297 (and log2 (if (equal log2 "!") 'time 'note)))))))
5299 (defun org-remove-keyword-keys (list)
5300 "Remove a pair of parenthesis at the end of each string in LIST."
5301 (mapcar (lambda (x)
5302 (if (string-match "(.*)$" x)
5303 (substring x 0 (match-beginning 0))
5305 list))
5307 (defun org-assign-fast-keys (alist)
5308 "Assign fast keys to a keyword-key alist.
5309 Respect keys that are already there."
5310 (let (new e (alt ?0))
5311 (while (setq e (pop alist))
5312 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5313 (cdr e)) ;; Key already assigned.
5314 (push e new)
5315 (let ((clist (string-to-list (downcase (car e))))
5316 (used (append new alist)))
5317 (when (= (car clist) ?@)
5318 (pop clist))
5319 (while (and clist (rassoc (car clist) used))
5320 (pop clist))
5321 (unless clist
5322 (while (rassoc alt used)
5323 (incf alt)))
5324 (push (cons (car e) (or (car clist) alt)) new))))
5325 (nreverse new)))
5327 ;;; Some variables used in various places
5329 (defvar org-window-configuration nil
5330 "Used in various places to store a window configuration.")
5331 (defvar org-selected-window nil
5332 "Used in various places to store a window configuration.")
5333 (defvar org-finish-function nil
5334 "Function to be called when `C-c C-c' is used.
5335 This is for getting out of special buffers like capture.")
5338 ;; FIXME: Occasionally check by commenting these, to make sure
5339 ;; no other functions uses these, forgetting to let-bind them.
5340 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5341 (defvar org-last-state)
5342 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5344 ;; Defined somewhere in this file, but used before definition.
5345 (defvar org-entities) ;; defined in org-entities.el
5346 (defvar org-struct-menu)
5347 (defvar org-org-menu)
5348 (defvar org-tbl-menu)
5350 ;;;; Define the Org-mode
5352 ;; We use a before-change function to check if a table might need
5353 ;; an update.
5354 (defvar org-table-may-need-update t
5355 "Indicates that a table might need an update.
5356 This variable is set by `org-before-change-function'.
5357 `org-table-align' sets it back to nil.")
5358 (defun org-before-change-function (beg end)
5359 "Every change indicates that a table might need an update."
5360 (setq org-table-may-need-update t))
5361 (defvar org-mode-map)
5362 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5363 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5364 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5365 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5366 (defvar org-table-buffer-is-an nil)
5368 (defvar bidi-paragraph-direction)
5369 (defvar buffer-face-mode-face)
5371 (require 'outline)
5372 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5373 (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"))
5374 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5376 ;; Other stuff we need.
5377 (require 'time-date)
5378 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5379 (require 'easymenu)
5380 (require 'overlay)
5382 ;; (require 'org-macs) moved higher up in the file before it is first used
5383 (require 'org-entities)
5384 ;; (require 'org-compat) moved higher up in the file before it is first used
5385 (require 'org-faces)
5386 (require 'org-list)
5387 (require 'org-pcomplete)
5388 (require 'org-src)
5389 (require 'org-footnote)
5390 (require 'org-macro)
5392 ;; babel
5393 (require 'ob)
5395 ;;;###autoload
5396 (define-derived-mode org-mode outline-mode "Org"
5397 "Outline-based notes management and organizer, alias
5398 \"Carsten's outline-mode for keeping track of everything.\"
5400 Org-mode develops organizational tasks around a NOTES file which
5401 contains information about projects as plain text. Org-mode is
5402 implemented on top of outline-mode, which is ideal to keep the content
5403 of large files well structured. It supports ToDo items, deadlines and
5404 time stamps, which magically appear in the diary listing of the Emacs
5405 calendar. Tables are easily created with a built-in table editor.
5406 Plain text URL-like links connect to websites, emails (VM), Usenet
5407 messages (Gnus), BBDB entries, and any files related to the project.
5408 For printing and sharing of notes, an Org-mode file (or a part of it)
5409 can be exported as a structured ASCII or HTML file.
5411 The following commands are available:
5413 \\{org-mode-map}"
5415 ;; Get rid of Outline menus, they are not needed
5416 ;; Need to do this here because define-derived-mode sets up
5417 ;; the keymap so late. Still, it is a waste to call this each time
5418 ;; we switch another buffer into org-mode.
5419 (if (featurep 'xemacs)
5420 (when (boundp 'outline-mode-menu-heading)
5421 ;; Assume this is Greg's port, it uses easymenu
5422 (easy-menu-remove outline-mode-menu-heading)
5423 (easy-menu-remove outline-mode-menu-show)
5424 (easy-menu-remove outline-mode-menu-hide))
5425 (define-key org-mode-map [menu-bar headings] 'undefined)
5426 (define-key org-mode-map [menu-bar hide] 'undefined)
5427 (define-key org-mode-map [menu-bar show] 'undefined))
5429 (org-load-modules-maybe)
5430 (easy-menu-add org-org-menu)
5431 (easy-menu-add org-tbl-menu)
5432 (org-install-agenda-files-menu)
5433 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5434 (add-to-invisibility-spec '(org-cwidth))
5435 (add-to-invisibility-spec '(org-hide-block . t))
5436 (when (featurep 'xemacs)
5437 (org-set-local 'line-move-ignore-invisible t))
5438 (org-set-local 'outline-regexp org-outline-regexp)
5439 (org-set-local 'outline-level 'org-outline-level)
5440 (setq bidi-paragraph-direction 'left-to-right)
5441 (when (and org-ellipsis
5442 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5443 (fboundp 'make-glyph-code))
5444 (unless org-display-table
5445 (setq org-display-table (make-display-table)))
5446 (set-display-table-slot
5447 org-display-table 4
5448 (vconcat (mapcar
5449 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5450 org-ellipsis)))
5451 (if (stringp org-ellipsis) org-ellipsis "..."))))
5452 (setq buffer-display-table org-display-table))
5453 (org-set-regexps-and-options)
5454 (org-set-font-lock-defaults)
5455 (when (and org-tag-faces (not org-tags-special-faces-re))
5456 ;; tag faces set outside customize.... force initialization.
5457 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5458 ;; Calc embedded
5459 (org-set-local 'calc-embedded-open-mode "# ")
5460 ;; Modify a few syntax entries
5461 (modify-syntax-entry ?@ "w")
5462 (modify-syntax-entry ?\" "\"")
5463 (modify-syntax-entry ?\\ "_")
5464 (modify-syntax-entry ?~ "_")
5465 (if org-startup-truncated (setq truncate-lines t))
5466 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5467 (org-set-local 'font-lock-unfontify-region-function
5468 'org-unfontify-region)
5469 ;; Activate before-change-function
5470 (org-set-local 'org-table-may-need-update t)
5471 (org-add-hook 'before-change-functions 'org-before-change-function nil
5472 'local)
5473 ;; Check for running clock before killing a buffer
5474 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5475 ;; Initialize macros templates.
5476 (org-macro-initialize-templates)
5477 ;; Initialize radio targets.
5478 (org-update-radio-target-regexp)
5479 ;; Indentation.
5480 (org-set-local 'indent-line-function 'org-indent-line)
5481 (org-set-local 'indent-region-function 'org-indent-region)
5482 ;; Filling and auto-filling.
5483 (org-setup-filling)
5484 ;; Comments.
5485 (org-setup-comments-handling)
5486 ;; Initialize cache.
5487 (org-element-cache-reset)
5488 ;; Beginning/end of defun
5489 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5490 (org-set-local 'end-of-defun-function
5491 (lambda ()
5492 (if (not (org-at-heading-p))
5493 (org-forward-element)
5494 (org-forward-element)
5495 (forward-char -1))))
5496 ;; Next error for sparse trees
5497 (org-set-local 'next-error-function 'org-occur-next-match)
5498 ;; Make sure dependence stuff works reliably, even for users who set it
5499 ;; too late :-(
5500 (if org-enforce-todo-dependencies
5501 (add-hook 'org-blocker-hook
5502 'org-block-todo-from-children-or-siblings-or-parent)
5503 (remove-hook 'org-blocker-hook
5504 'org-block-todo-from-children-or-siblings-or-parent))
5505 (if org-enforce-todo-checkbox-dependencies
5506 (add-hook 'org-blocker-hook
5507 'org-block-todo-from-checkboxes)
5508 (remove-hook 'org-blocker-hook
5509 'org-block-todo-from-checkboxes))
5511 ;; Align options lines
5512 (org-set-local
5513 'align-mode-rules-list
5514 '((org-in-buffer-settings
5515 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5516 (modes . '(org-mode)))))
5518 ;; Imenu
5519 (org-set-local 'imenu-create-index-function
5520 'org-imenu-get-tree)
5522 ;; Make isearch reveal context
5523 (if (or (featurep 'xemacs)
5524 (not (boundp 'outline-isearch-open-invisible-function)))
5525 ;; Emacs 21 and XEmacs make use of the hook
5526 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5527 ;; Emacs 22 deals with this through a special variable
5528 (org-set-local 'outline-isearch-open-invisible-function
5529 (lambda (&rest ignore) (org-show-context 'isearch))))
5531 ;; Setup the pcomplete hooks
5532 (set (make-local-variable 'pcomplete-command-completion-function)
5533 'org-pcomplete-initial)
5534 (set (make-local-variable 'pcomplete-command-name-function)
5535 'org-command-at-point)
5536 (set (make-local-variable 'pcomplete-default-completion-function)
5537 'ignore)
5538 (set (make-local-variable 'pcomplete-parse-arguments-function)
5539 'org-parse-arguments)
5540 (set (make-local-variable 'pcomplete-termination-string) "")
5541 (when (>= emacs-major-version 23)
5542 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5544 ;; If empty file that did not turn on org-mode automatically, make it to.
5545 (if (and org-insert-mode-line-in-empty-file
5546 (org-called-interactively-p 'any)
5547 (= (point-min) (point-max)))
5548 (insert "# -*- mode: org -*-\n\n"))
5549 (unless org-inhibit-startup
5550 (org-unmodified
5551 (and org-startup-with-beamer-mode (org-beamer-mode))
5552 (when org-startup-align-all-tables
5553 (org-table-map-tables 'org-table-align 'quietly))
5554 (when org-startup-with-inline-images
5555 (org-display-inline-images))
5556 (when org-startup-with-latex-preview
5557 (org-toggle-latex-fragment))
5558 (unless org-inhibit-startup-visibility-stuff
5559 (org-set-startup-visibility))
5560 (org-refresh-effort-properties)))
5561 ;; Try to set org-hide correctly
5562 (let ((foreground (org-find-invisible-foreground)))
5563 (if foreground
5564 (set-face-foreground 'org-hide foreground))))
5566 ;; Update `customize-package-emacs-version-alist'
5567 (add-to-list 'customize-package-emacs-version-alist
5568 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5569 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5570 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5572 (defvar org-mode-transpose-word-syntax-table
5573 (let ((st (make-syntax-table text-mode-syntax-table)))
5574 (mapc (lambda(c) (modify-syntax-entry
5575 (string-to-char (car c)) "w p" st))
5576 org-emphasis-alist)
5577 st))
5579 (when (fboundp 'abbrev-table-put)
5580 (abbrev-table-put org-mode-abbrev-table
5581 :parents (list text-mode-abbrev-table)))
5583 (defun org-find-invisible-foreground ()
5584 (let ((candidates (remove
5585 "unspecified-bg"
5586 (nconc
5587 (list (face-background 'default)
5588 (face-background 'org-default))
5589 (mapcar
5590 (lambda (alist)
5591 (when (boundp alist)
5592 (cdr (assoc 'background-color (symbol-value alist)))))
5593 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5594 (list (face-foreground 'org-hide))))))
5595 (car (remove nil candidates))))
5597 (defun org-current-time (&optional rounding-minutes past)
5598 "Current time, possibly rounded to ROUNDING-MINUTES.
5599 When ROUNDING-MINUTES is not an integer, fall back on the car of
5600 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5601 the rounding returns a past time."
5602 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5603 (car org-time-stamp-rounding-minutes)))
5604 (time (decode-time)) res)
5605 (if (< r 1)
5606 (current-time)
5607 (setq res
5608 (apply 'encode-time
5609 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5610 (nthcdr 2 time))))
5611 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5612 (seconds-to-time (- (org-float-time res) (* r 60)))
5613 res))))
5615 (defun org-today ()
5616 "Return today date, considering `org-extend-today-until'."
5617 (time-to-days
5618 (time-subtract (current-time)
5619 (list 0 (* 3600 org-extend-today-until) 0))))
5621 ;;;; Font-Lock stuff, including the activators
5623 (defvar org-mouse-map (make-sparse-keymap))
5624 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5625 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5626 (when org-mouse-1-follows-link
5627 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5628 (when org-tab-follows-link
5629 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5630 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5632 (require 'font-lock)
5634 (defconst org-non-link-chars "]\t\n\r<>")
5635 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5636 "file+sys" "news" "shell" "elisp" "doi" "message"
5637 "help"))
5638 (defvar org-link-types-re nil
5639 "Matches a link that has a url-like prefix like \"http:\"")
5640 (defvar org-link-re-with-space nil
5641 "Matches a link with spaces, optional angular brackets around it.")
5642 (defvar org-link-re-with-space2 nil
5643 "Matches a link with spaces, optional angular brackets around it.")
5644 (defvar org-link-re-with-space3 nil
5645 "Matches a link with spaces, only for internal part in bracket links.")
5646 (defvar org-angle-link-re nil
5647 "Matches link with angular brackets, spaces are allowed.")
5648 (defvar org-plain-link-re nil
5649 "Matches plain link, without spaces.")
5650 (defvar org-bracket-link-regexp nil
5651 "Matches a link in double brackets.")
5652 (defvar org-bracket-link-analytic-regexp nil
5653 "Regular expression used to analyze links.
5654 Here is what the match groups contain after a match:
5655 1: http:
5656 2: http
5657 3: path
5658 4: [desc]
5659 5: desc")
5660 (defvar org-bracket-link-analytic-regexp++ nil
5661 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5662 (defvar org-any-link-re nil
5663 "Regular expression matching any link.")
5665 (defconst org-match-sexp-depth 3
5666 "Number of stacked braces for sub/superscript matching.")
5668 (defun org-create-multibrace-regexp (left right n)
5669 "Create a regular expression which will match a balanced sexp.
5670 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5671 as single character strings.
5672 The regexp returned will match the entire expression including the
5673 delimiters. It will also define a single group which contains the
5674 match except for the outermost delimiters. The maximum depth of
5675 stacked delimiters is N. Escaping delimiters is not possible."
5676 (let* ((nothing (concat "[^" left right "]*?"))
5677 (or "\\|")
5678 (re nothing)
5679 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5680 (while (> n 1)
5681 (setq n (1- n)
5682 re (concat re or next)
5683 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5684 (concat left "\\(" re "\\)" right)))
5686 (defconst org-match-substring-regexp
5687 (concat
5688 "\\(\\S-\\)\\([_^]\\)\\("
5689 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5690 "\\|"
5691 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5692 "\\|"
5693 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5694 "The regular expression matching a sub- or superscript.")
5696 (defconst org-match-substring-with-braces-regexp
5697 (concat
5698 "\\(\\S-\\)\\([_^]\\)"
5699 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5700 "The regular expression matching a sub- or superscript, forcing braces.")
5702 (defun org-make-link-regexps ()
5703 "Update the link regular expressions.
5704 This should be called after the variable `org-link-types' has changed."
5705 (let ((types-re (regexp-opt org-link-types t)))
5706 (setq org-link-types-re
5707 (concat "\\`" types-re ":")
5708 org-link-re-with-space
5709 (concat "<?" types-re ":"
5710 "\\([^" org-non-link-chars " ]"
5711 "[^" org-non-link-chars "]*"
5712 "[^" org-non-link-chars " ]\\)>?")
5713 org-link-re-with-space2
5714 (concat "<?" types-re ":"
5715 "\\([^" org-non-link-chars " ]"
5716 "[^\t\n\r]*"
5717 "[^" org-non-link-chars " ]\\)>?")
5718 org-link-re-with-space3
5719 (concat "<?" types-re ":"
5720 "\\([^" org-non-link-chars " ]"
5721 "[^\t\n\r]*\\)")
5722 org-angle-link-re
5723 (concat "<" types-re ":"
5724 "\\([^" org-non-link-chars " ]"
5725 "[^" org-non-link-chars "]*"
5726 "\\)>")
5727 org-plain-link-re
5728 (concat
5729 "\\<" types-re ":"
5730 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5731 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5732 org-bracket-link-regexp
5733 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5734 org-bracket-link-analytic-regexp
5735 (concat
5736 "\\[\\["
5737 "\\(" types-re ":\\)?"
5738 "\\([^]]+\\)"
5739 "\\]"
5740 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5741 "\\]")
5742 org-bracket-link-analytic-regexp++
5743 (concat
5744 "\\[\\["
5745 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5746 "\\([^]]+\\)"
5747 "\\]"
5748 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5749 "\\]")
5750 org-any-link-re
5751 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5752 org-angle-link-re "\\)\\|\\("
5753 org-plain-link-re "\\)"))))
5755 (org-make-link-regexps)
5757 (defvar org-emph-face nil)
5759 (defun org-do-emphasis-faces (limit)
5760 "Run through the buffer and emphasize strings."
5761 (let (rtn a)
5762 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5763 (let* ((border (char-after (match-beginning 3)))
5764 (bre (regexp-quote (char-to-string border))))
5765 (if (and (not (= border (char-after (match-beginning 4))))
5766 (not (save-match-data
5767 (string-match (concat bre ".*" bre)
5768 (replace-regexp-in-string
5769 "\n" " "
5770 (substring (match-string 2) 1 -1))))))
5771 (progn
5772 (setq rtn t)
5773 (setq a (assoc (match-string 3) org-emphasis-alist))
5774 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5775 'face
5776 (nth 1 a))
5777 (and (nth 2 a)
5778 (org-remove-flyspell-overlays-in
5779 (match-beginning 0) (match-end 0)))
5780 (add-text-properties (match-beginning 2) (match-end 2)
5781 '(font-lock-multiline t org-emphasis t))
5782 (when org-hide-emphasis-markers
5783 (add-text-properties (match-end 4) (match-beginning 5)
5784 '(invisible org-link))
5785 (add-text-properties (match-beginning 3) (match-end 3)
5786 '(invisible org-link))))))
5787 (goto-char (1+ (match-beginning 0))))
5788 rtn))
5790 (defun org-emphasize (&optional char)
5791 "Insert or change an emphasis, i.e. a font like bold or italic.
5792 If there is an active region, change that region to a new emphasis.
5793 If there is no region, just insert the marker characters and position
5794 the cursor between them.
5795 CHAR should be the marker character. If it is a space, it means to
5796 remove the emphasis of the selected region.
5797 If CHAR is not given (for example in an interactive call) it will be
5798 prompted for."
5799 (interactive)
5800 (let ((erc org-emphasis-regexp-components)
5801 (prompt "")
5802 (string "") beg end move c s)
5803 (if (org-region-active-p)
5804 (setq beg (region-beginning) end (region-end)
5805 string (buffer-substring beg end))
5806 (setq move t))
5808 (unless char
5809 (message "Emphasis marker or tag: [%s]"
5810 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5811 (setq char (read-char-exclusive)))
5812 (if (equal char ?\ )
5813 (setq s "" move nil)
5814 (unless (assoc (char-to-string char) org-emphasis-alist)
5815 (user-error "No such emphasis marker: \"%c\"" char))
5816 (setq s (char-to-string char)))
5817 (while (and (> (length string) 1)
5818 (equal (substring string 0 1) (substring string -1))
5819 (assoc (substring string 0 1) org-emphasis-alist))
5820 (setq string (substring string 1 -1)))
5821 (setq string (concat s string s))
5822 (if beg (delete-region beg end))
5823 (unless (or (bolp)
5824 (string-match (concat "[" (nth 0 erc) "\n]")
5825 (char-to-string (char-before (point)))))
5826 (insert " "))
5827 (unless (or (eobp)
5828 (string-match (concat "[" (nth 1 erc) "\n]")
5829 (char-to-string (char-after (point)))))
5830 (insert " ") (backward-char 1))
5831 (insert string)
5832 (and move (backward-char 1))))
5834 (defconst org-nonsticky-props
5835 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5837 (defsubst org-rear-nonsticky-at (pos)
5838 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5840 (defun org-activate-plain-links (limit)
5841 "Add link properties for plain links."
5842 (let (f hl)
5843 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5844 (not (member 'org-tag
5845 (get-text-property (1- (match-beginning 0)) 'face)))
5846 (not (org-in-src-block-p)))
5847 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5848 (setq f (get-text-property (match-beginning 0) 'face))
5849 (setq hl (org-match-string-no-properties 0))
5850 (if (or (eq f 'org-tag)
5851 (and (listp f) (memq 'org-tag f)))
5853 (add-text-properties (match-beginning 0) (match-end 0)
5854 (list 'mouse-face 'highlight
5855 'face 'org-link
5856 'htmlize-link `(:uri ,hl)
5857 'keymap org-mouse-map))
5858 (org-rear-nonsticky-at (match-end 0)))
5859 t)))
5861 (defun org-activate-code (limit)
5862 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5863 (progn
5864 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5865 (remove-text-properties (match-beginning 0) (match-end 0)
5866 '(display t invisible t intangible t))
5867 t)))
5869 (defcustom org-src-fontify-natively t
5870 "When non-nil, fontify code in code blocks."
5871 :type 'boolean
5872 :version "24.4"
5873 :package-version '(Org . "8.3")
5874 :group 'org-appearance
5875 :group 'org-babel)
5877 (defcustom org-allow-promoting-top-level-subtree nil
5878 "When non-nil, allow promoting a top level subtree.
5879 The leading star of the top level headline will be replaced
5880 by a #."
5881 :type 'boolean
5882 :version "24.1"
5883 :group 'org-appearance)
5885 (defun org-fontify-meta-lines-and-blocks (limit)
5886 (condition-case nil
5887 (org-fontify-meta-lines-and-blocks-1 limit)
5888 (error (message "org-mode fontification error"))))
5890 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5891 "Fontify #+ lines and blocks."
5892 (let ((case-fold-search t))
5893 (if (re-search-forward
5894 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5895 limit t)
5896 (let ((beg (match-beginning 0))
5897 (block-start (match-end 0))
5898 (block-end nil)
5899 (lang (match-string 7))
5900 (beg1 (line-beginning-position 2))
5901 (dc1 (downcase (match-string 2)))
5902 (dc3 (downcase (match-string 3)))
5903 end end1 quoting block-type ovl)
5904 (cond
5905 ((and (match-end 4) (equal dc3 "+begin"))
5906 ;; Truly a block
5907 (setq block-type (downcase (match-string 5))
5908 quoting (member block-type org-protecting-blocks))
5909 (when (re-search-forward
5910 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5911 nil t) ;; on purpose, we look further than LIMIT
5912 (setq end (min (point-max) (match-end 0))
5913 end1 (min (point-max) (1- (match-beginning 0))))
5914 (setq block-end (match-beginning 0))
5915 (when quoting
5916 (org-remove-flyspell-overlays-in beg1 end1)
5917 (remove-text-properties beg end
5918 '(display t invisible t intangible t)))
5919 (add-text-properties
5920 beg end '(font-lock-fontified t font-lock-multiline t))
5921 (add-text-properties beg beg1 '(face org-meta-line))
5922 (org-remove-flyspell-overlays-in beg beg1)
5923 (add-text-properties ; For end_src
5924 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5925 (org-remove-flyspell-overlays-in end1 end)
5926 (cond
5927 ((and lang (not (string= lang "")) org-src-fontify-natively)
5928 (org-src-font-lock-fontify-block lang block-start block-end)
5929 (add-text-properties beg1 block-end '(src-block t)))
5930 (quoting
5931 (add-text-properties beg1 (min (point-max) (1+ end1))
5932 '(face org-block))) ; end of source block
5933 ((not org-fontify-quote-and-verse-blocks))
5934 ((string= block-type "quote")
5935 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5936 ((string= block-type "verse")
5937 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5938 (add-text-properties beg beg1 '(face org-block-begin-line))
5939 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5940 '(face org-block-end-line))
5942 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5943 (org-remove-flyspell-overlays-in
5944 (match-beginning 0)
5945 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5946 (add-text-properties
5947 beg (match-end 3)
5948 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5949 '(font-lock-fontified t invisible t)
5950 '(font-lock-fontified t face org-document-info-keyword)))
5951 (add-text-properties
5952 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5953 (if (string-equal dc1 "+title:")
5954 '(font-lock-fontified t face org-document-title)
5955 '(font-lock-fontified t face org-document-info))))
5956 ((equal dc1 "+caption:")
5957 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5958 (remove-text-properties (match-beginning 0) (match-end 0)
5959 '(display t invisible t intangible t))
5960 (add-text-properties (match-beginning 1) (match-end 3)
5961 '(font-lock-fontified t face org-meta-line))
5962 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5963 '(font-lock-fontified t face org-block))
5965 ((member dc3 '(" " ""))
5966 (org-remove-flyspell-overlays-in beg (match-end 0))
5967 (add-text-properties
5968 beg (match-end 0)
5969 '(font-lock-fontified t face font-lock-comment-face)))
5970 (t ;; just any other in-buffer setting, but not indented
5971 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5972 (remove-text-properties (match-beginning 0) (match-end 0)
5973 '(display t invisible t intangible t))
5974 (add-text-properties beg (match-end 0)
5975 '(font-lock-fontified t face org-meta-line))
5976 t))))))
5978 (defun org-fontify-drawers (limit)
5979 "Fontify drawers."
5980 (when (re-search-forward org-drawer-regexp limit t)
5981 (add-text-properties
5982 (match-beginning 0) (match-end 0)
5983 '(font-lock-fontified t face org-special-keyword))
5984 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5987 (defun org-fontify-macros (limit)
5988 "Fontify macros."
5989 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5990 (add-text-properties
5991 (match-beginning 0) (match-end 0)
5992 '(font-lock-fontified t face org-macro))
5993 (when org-hide-macro-markers
5994 (add-text-properties (match-end 2) (match-beginning 2)
5995 '(invisible t))
5996 (add-text-properties (match-beginning 1) (match-end 1)
5997 '(invisible t)))
5998 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6001 (defun org-activate-angle-links (limit)
6002 "Add text properties for angle links."
6003 (if (and (re-search-forward org-angle-link-re limit t)
6004 (not (org-in-src-block-p)))
6005 (progn
6006 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6007 (add-text-properties (match-beginning 0) (match-end 0)
6008 (list 'mouse-face 'highlight
6009 'keymap org-mouse-map))
6010 (org-rear-nonsticky-at (match-end 0))
6011 t)))
6013 (defun org-activate-footnote-links (limit)
6014 "Add text properties for footnotes."
6015 (let ((fn (org-footnote-next-reference-or-definition limit)))
6016 (when fn
6017 (let* ((beg (nth 1 fn))
6018 (end (nth 2 fn))
6019 (label (car fn))
6020 (referencep (/= (line-beginning-position) beg)))
6021 (when (and referencep (nth 3 fn))
6022 (save-excursion
6023 (goto-char beg)
6024 (search-forward (or label "fn:"))
6025 (org-remove-flyspell-overlays-in beg (match-end 0))))
6026 (add-text-properties beg end
6027 (list 'mouse-face 'highlight
6028 'keymap org-mouse-map
6029 'help-echo
6030 (if referencep "Footnote reference"
6031 "Footnote definition")
6032 'font-lock-fontified t
6033 'font-lock-multiline t
6034 'face 'org-footnote))))))
6036 (defun org-activate-bracket-links (limit)
6037 "Add text properties for bracketed links."
6038 (if (and (re-search-forward org-bracket-link-regexp limit t)
6039 (not (org-in-src-block-p)))
6040 (let* ((hl (org-match-string-no-properties 1))
6041 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6042 (ip (org-maybe-intangible
6043 (list 'invisible 'org-link
6044 'keymap org-mouse-map 'mouse-face 'highlight
6045 'font-lock-multiline t 'help-echo help
6046 'htmlize-link `(:uri ,hl))))
6047 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6048 'font-lock-multiline t 'help-echo help
6049 'htmlize-link `(:uri ,hl))))
6050 ;; We need to remove the invisible property here. Table narrowing
6051 ;; may have made some of this invisible.
6052 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6053 (remove-text-properties (match-beginning 0) (match-end 0)
6054 '(invisible nil))
6055 (if (match-end 3)
6056 (progn
6057 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6058 (org-rear-nonsticky-at (match-beginning 3))
6059 (add-text-properties (match-beginning 3) (match-end 3) vp)
6060 (org-rear-nonsticky-at (match-end 3))
6061 (add-text-properties (match-end 3) (match-end 0) ip)
6062 (org-rear-nonsticky-at (match-end 0)))
6063 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6064 (org-rear-nonsticky-at (match-beginning 1))
6065 (add-text-properties (match-beginning 1) (match-end 1) vp)
6066 (org-rear-nonsticky-at (match-end 1))
6067 (add-text-properties (match-end 1) (match-end 0) ip)
6068 (org-rear-nonsticky-at (match-end 0)))
6069 t)))
6071 (defun org-activate-dates (limit)
6072 "Add text properties for dates."
6073 (if (and (re-search-forward org-tsr-regexp-both limit t)
6074 (not (equal (char-before (match-beginning 0)) 91)))
6075 (progn
6076 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6077 (add-text-properties (match-beginning 0) (match-end 0)
6078 (list 'mouse-face 'highlight
6079 'keymap org-mouse-map))
6080 (org-rear-nonsticky-at (match-end 0))
6081 (when org-display-custom-times
6082 (if (match-end 3)
6083 (org-display-custom-time (match-beginning 3) (match-end 3)))
6084 (org-display-custom-time (match-beginning 1) (match-end 1)))
6085 t)))
6087 (defvar org-target-link-regexp nil
6088 "Regular expression matching radio targets in plain text.")
6089 (make-variable-buffer-local 'org-target-link-regexp)
6091 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6092 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6093 border border border))
6094 "Regular expression matching a link target.")
6096 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6097 "Regular expression matching a radio target.")
6099 (defconst org-any-target-regexp
6100 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6101 "Regular expression matching any target.")
6103 (defun org-activate-target-links (limit)
6104 "Add text properties for target matches."
6105 (when org-target-link-regexp
6106 (let ((case-fold-search t))
6107 (if (re-search-forward org-target-link-regexp limit t)
6108 (progn
6109 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6110 (add-text-properties (match-beginning 1) (match-end 1)
6111 (list 'mouse-face 'highlight
6112 'keymap org-mouse-map
6113 'help-echo "Radio target link"
6114 'org-linked-text t))
6115 (org-rear-nonsticky-at (match-end 1))
6116 t)))))
6118 (defun org-update-radio-target-regexp ()
6119 "Find all radio targets in this file and update the regular expression.
6120 Also refresh fontification if needed."
6121 (interactive)
6122 (let ((old-regexp org-target-link-regexp)
6123 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6124 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6125 (targets
6126 (org-with-wide-buffer
6127 (goto-char (point-min))
6128 (let (rtn)
6129 (while (re-search-forward org-radio-target-regexp nil t)
6130 ;; Make sure point is really within the object.
6131 (backward-char)
6132 (let ((obj (org-element-context)))
6133 (when (eq (org-element-type obj) 'radio-target)
6134 (add-to-list 'rtn (org-element-property :value obj)))))
6135 rtn))))
6136 (setq org-target-link-regexp
6137 (and targets
6138 (concat before-re
6139 (mapconcat
6140 (lambda (x)
6141 (replace-regexp-in-string
6142 " +" "\\s-+" (regexp-quote x) t t))
6143 targets
6144 "\\|")
6145 after-re)))
6146 (unless (equal old-regexp org-target-link-regexp)
6147 ;; Clean-up cache.
6148 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6149 ((not org-target-link-regexp) old-regexp)
6151 (concat before-re
6152 (mapconcat
6153 (lambda (re)
6154 (substring re (length before-re)
6155 (- (length after-re))))
6156 (list old-regexp org-target-link-regexp)
6157 "\\|")
6158 after-re)))))
6159 (org-with-wide-buffer
6160 (goto-char (point-min))
6161 (while (re-search-forward regexp nil t)
6162 (org-element-cache-refresh (match-beginning 1)))))
6163 ;; Re fontify buffer.
6164 (when (memq 'radio org-highlight-links)
6165 (org-restart-font-lock)))))
6167 (defun org-hide-wide-columns (limit)
6168 (let (s e)
6169 (setq s (text-property-any (point) (or limit (point-max))
6170 'org-cwidth t))
6171 (when s
6172 (setq e (next-single-property-change s 'org-cwidth))
6173 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6174 (goto-char e)
6175 t)))
6177 (defvar org-latex-and-related-regexp nil
6178 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6180 (defun org-compute-latex-and-related-regexp ()
6181 "Compute regular expression for LaTeX, entities and sub/superscript.
6182 Result depends on variable `org-highlight-latex-and-related'."
6183 (org-set-local
6184 'org-latex-and-related-regexp
6185 (let* ((re-sub
6186 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6187 ((eq org-use-sub-superscripts '{})
6188 (list org-match-substring-with-braces-regexp))
6189 (org-use-sub-superscripts (list org-match-substring-regexp))))
6190 (re-latex
6191 (when (memq 'latex org-highlight-latex-and-related)
6192 (let ((matchers (plist-get org-format-latex-options :matchers)))
6193 (delq nil
6194 (mapcar (lambda (x)
6195 (and (member (car x) matchers) (nth 1 x)))
6196 org-latex-regexps)))))
6197 (re-entities
6198 (when (memq 'entities org-highlight-latex-and-related)
6199 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6200 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6202 (defun org-do-latex-and-related (limit)
6203 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6204 LIMIT bounds the search for syntax to highlight. Stop at first
6205 highlighted object, if any. Return t if some highlighting was
6206 done, nil otherwise."
6207 (when (org-string-nw-p org-latex-and-related-regexp)
6208 (catch 'found
6209 (while (re-search-forward org-latex-and-related-regexp limit t)
6210 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6211 'face))
6212 '(org-code org-verbatim underline))
6213 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6214 '(?_ ?^))
6216 0)))
6217 (font-lock-prepend-text-property
6218 (+ offset (match-beginning 0)) (match-end 0)
6219 'face 'org-latex-and-related)
6220 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6221 '(font-lock-multiline t)))
6222 (throw 'found t)))
6223 nil)))
6225 (defun org-restart-font-lock ()
6226 "Restart `font-lock-mode', to force refontification."
6227 (when (and (boundp 'font-lock-mode) font-lock-mode)
6228 (font-lock-mode -1)
6229 (font-lock-mode 1)))
6231 (defun org-activate-tags (limit)
6232 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6233 (progn
6234 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6235 (add-text-properties (match-beginning 1) (match-end 1)
6236 (list 'mouse-face 'highlight
6237 'keymap org-mouse-map))
6238 (org-rear-nonsticky-at (match-end 1))
6239 t)))
6241 (defun org-outline-level ()
6242 "Compute the outline level of the heading at point.
6244 If this is called at a normal headline, the level is the number
6245 of stars. Use `org-reduced-level' to remove the effect of
6246 `org-odd-levels'. Unlike to `org-current-level', this function
6247 takes into consideration inlinetasks."
6248 (org-with-wide-buffer
6249 (end-of-line)
6250 (if (re-search-backward org-outline-regexp-bol nil t)
6251 (1- (- (match-end 0) (match-beginning 0)))
6252 0)))
6254 (defvar org-font-lock-keywords nil)
6256 (defsubst org-re-property (property &optional literal allow-null value)
6257 "Return a regexp matching a PROPERTY line.
6259 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6260 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6261 non-nil, match properties even without a value.
6263 Match group 3 is set to the value when it exists. If there is no
6264 value and ALLOW-NULL is non-nil, it is set to the empty string.
6266 With optional argument VALUE, match only property lines with
6267 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6268 unless LITERAL is non-nil."
6269 (concat
6270 "^\\(?4:[ \t]*\\)"
6271 (format "\\(?1::\\(?2:%s\\):\\)"
6272 (if literal property (regexp-quote property)))
6273 (cond (value
6274 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6275 (if literal value (regexp-quote value))))
6276 (allow-null
6277 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6279 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6281 (defconst org-property-re
6282 (org-re-property "\\S-+" 'literal t)
6283 "Regular expression matching a property line.
6284 There are four matching groups:
6285 1: :PROPKEY: including the leading and trailing colon,
6286 2: PROPKEY without the leading and trailing colon,
6287 3: PROPVAL without leading or trailing spaces,
6288 4: the indentation of the current line,
6289 5: trailing whitespace.")
6291 (defvar org-font-lock-hook nil
6292 "Functions to be called for special font lock stuff.")
6294 (defvar org-font-lock-set-keywords-hook nil
6295 "Functions that can manipulate `org-font-lock-extra-keywords'.
6296 This is called after `org-font-lock-extra-keywords' is defined, but before
6297 it is installed to be used by font lock. This can be useful if something
6298 needs to be inserted at a specific position in the font-lock sequence.")
6300 (defun org-font-lock-hook (limit)
6301 "Run `org-font-lock-hook' within LIMIT."
6302 (run-hook-with-args 'org-font-lock-hook limit))
6304 (defun org-set-font-lock-defaults ()
6305 "Set font lock defaults for the current buffer."
6306 (let* ((em org-fontify-emphasized-text)
6307 (lk org-highlight-links)
6308 (org-font-lock-extra-keywords
6309 (list
6310 ;; Call the hook
6311 '(org-font-lock-hook)
6312 ;; Headlines
6313 `(,(if org-fontify-whole-heading-line
6314 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6315 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6316 (1 (org-get-level-face 1))
6317 (2 (org-get-level-face 2))
6318 (3 (org-get-level-face 3)))
6319 ;; Table lines
6320 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6321 (1 'org-table t))
6322 ;; Table internals
6323 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6324 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6325 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6326 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6327 ;; Drawers
6328 '(org-fontify-drawers)
6329 ;; Properties
6330 (list org-property-re
6331 '(1 'org-special-keyword t)
6332 '(3 'org-property-value t))
6333 ;; Links
6334 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6335 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6336 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6337 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6338 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6339 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6340 (if (memq 'footnote lk) '(org-activate-footnote-links))
6341 ;; Targets.
6342 (list org-any-target-regexp '(0 'org-target t))
6343 ;; Diary sexps.
6344 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6345 ;; Macro
6346 '(org-fontify-macros)
6347 '(org-hide-wide-columns (0 nil append))
6348 ;; TODO keyword
6349 (list (format org-heading-keyword-regexp-format
6350 org-todo-regexp)
6351 '(2 (org-get-todo-face 2) t))
6352 ;; DONE
6353 (if org-fontify-done-headline
6354 (list (format org-heading-keyword-regexp-format
6355 (concat
6356 "\\(?:"
6357 (mapconcat 'regexp-quote org-done-keywords "\\|")
6358 "\\)"))
6359 '(2 'org-headline-done t))
6360 nil)
6361 ;; Priorities
6362 '(org-font-lock-add-priority-faces)
6363 ;; Tags
6364 '(org-font-lock-add-tag-faces)
6365 ;; Tags groups
6366 (if (and org-group-tags org-tag-groups-alist)
6367 (list (concat org-outline-regexp-bol ".+\\(:"
6368 (regexp-opt (mapcar 'car org-tag-groups-alist))
6369 ":\\).*$")
6370 '(1 'org-tag-group prepend)))
6371 ;; Special keywords
6372 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6373 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6374 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6375 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6376 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6377 ;; Emphasis
6378 (if em
6379 (if (featurep 'xemacs)
6380 '(org-do-emphasis-faces (0 nil append))
6381 '(org-do-emphasis-faces)))
6382 ;; Checkboxes
6383 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6384 1 'org-checkbox prepend)
6385 (if (cdr (assq 'checkbox org-list-automatic-rules))
6386 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6387 (0 (org-get-checkbox-statistics-face) t)))
6388 ;; Description list items
6389 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6390 1 'org-list-dt prepend)
6391 ;; ARCHIVEd headings
6392 (list (concat
6393 org-outline-regexp-bol
6394 "\\(.*:" org-archive-tag ":.*\\)")
6395 '(1 'org-archived prepend))
6396 ;; Specials
6397 '(org-do-latex-and-related)
6398 '(org-fontify-entities)
6399 '(org-raise-scripts)
6400 ;; Code
6401 '(org-activate-code (1 'org-code t))
6402 ;; COMMENT
6403 (list (format
6404 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6405 org-todo-regexp
6406 org-comment-string)
6407 '(9 'org-special-keyword t))
6408 ;; Blocks and meta lines
6409 '(org-fontify-meta-lines-and-blocks))))
6410 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6411 (run-hooks 'org-font-lock-set-keywords-hook)
6412 ;; Now set the full font-lock-keywords
6413 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6414 (org-set-local 'font-lock-defaults
6415 '(org-font-lock-keywords t nil nil backward-paragraph))
6416 (kill-local-variable 'font-lock-keywords) nil))
6418 (defun org-toggle-pretty-entities ()
6419 "Toggle the composition display of entities as UTF8 characters."
6420 (interactive)
6421 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6422 (org-restart-font-lock)
6423 (if org-pretty-entities
6424 (message "Entities are now displayed as UTF8 characters")
6425 (save-restriction
6426 (widen)
6427 (org-decompose-region (point-min) (point-max))
6428 (message "Entities are now displayed as plain text"))))
6430 (defvar org-custom-properties-overlays nil
6431 "List of overlays used for custom properties.")
6432 (make-variable-buffer-local 'org-custom-properties-overlays)
6434 (defun org-toggle-custom-properties-visibility ()
6435 "Display or hide properties in `org-custom-properties'."
6436 (interactive)
6437 (if org-custom-properties-overlays
6438 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6439 (setq org-custom-properties-overlays nil))
6440 (when org-custom-properties
6441 (org-with-wide-buffer
6442 (goto-char (point-min))
6443 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6444 (while (re-search-forward regexp nil t)
6445 (let ((end (cdr (save-match-data (org-get-property-block)))))
6446 (when (and end (< (point) end))
6447 ;; Hide first custom property in current drawer.
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 ;; Hide additional custom properties in the same drawer.
6453 (while (re-search-forward regexp end t)
6454 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6455 (overlay-put o 'invisible t)
6456 (overlay-put o 'org-custom-property t)
6457 (push o org-custom-properties-overlays)))))
6458 ;; Each entry is limited to a single property drawer.
6459 (outline-next-heading)))))))
6461 (defun org-fontify-entities (limit)
6462 "Find an entity to fontify."
6463 (let (ee)
6464 (when org-pretty-entities
6465 (catch 'match
6466 ;; "\_ "-family is left out on purpose. Only the first one,
6467 ;; i.e., "\_ ", could be fontified anyway, and it would be
6468 ;; confusing when adding a second white space character.
6469 (while (re-search-forward
6470 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6471 limit t)
6472 (if (and (not (org-at-comment-p))
6473 (setq ee (org-entity-get (match-string 1)))
6474 (= (length (nth 6 ee)) 1))
6475 (let*
6476 ((end (if (equal (match-string 2) "{}")
6477 (match-end 2)
6478 (match-end 1))))
6479 (add-text-properties
6480 (match-beginning 0) end
6481 (list 'font-lock-fontified t))
6482 (compose-region (match-beginning 0) end
6483 (nth 6 ee) nil)
6484 (backward-char 1)
6485 (throw 'match t))))
6486 nil))))
6488 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6489 "Fontify string S like in Org-mode."
6490 (with-temp-buffer
6491 (insert s)
6492 (let ((org-odd-levels-only odd-levels))
6493 (org-mode)
6494 (font-lock-ensure)
6495 (buffer-string))))
6497 (defvar org-m nil)
6498 (defvar org-l nil)
6499 (defvar org-f nil)
6500 (defun org-get-level-face (n)
6501 "Get the right face for match N in font-lock matching of headlines."
6502 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6503 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6504 (if org-cycle-level-faces
6505 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6506 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6507 (cond
6508 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6509 ((eq n 2) org-f)
6510 (t (if org-level-color-stars-only nil org-f))))
6513 (defun org-get-todo-face (kwd)
6514 "Get the right face for a TODO keyword KWD.
6515 If KWD is a number, get the corresponding match group."
6516 (if (numberp kwd) (setq kwd (match-string kwd)))
6517 (or (org-face-from-face-or-color
6518 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6519 (and (member kwd org-done-keywords) 'org-done)
6520 'org-todo))
6522 (defun org-face-from-face-or-color (context inherit face-or-color)
6523 "Create a face list that inherits INHERIT, but sets the foreground color.
6524 When FACE-OR-COLOR is not a string, just return it."
6525 (if (stringp face-or-color)
6526 (list :inherit inherit
6527 (cdr (assoc context org-faces-easy-properties))
6528 face-or-color)
6529 face-or-color))
6531 (defun org-font-lock-add-tag-faces (limit)
6532 "Add the special tag faces."
6533 (when (and org-tag-faces org-tags-special-faces-re)
6534 (while (re-search-forward org-tags-special-faces-re limit t)
6535 (add-text-properties (match-beginning 1) (match-end 1)
6536 (list 'face (org-get-tag-face 1)
6537 'font-lock-fontified t))
6538 (backward-char 1))))
6540 (defun org-font-lock-add-priority-faces (limit)
6541 "Add the special priority faces."
6542 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6543 (when (save-match-data (org-at-heading-p))
6544 (add-text-properties
6545 (match-beginning 0) (match-end 0)
6546 (list 'face (or (org-face-from-face-or-color
6547 'priority 'org-priority
6548 (cdr (assoc (char-after (match-beginning 1))
6549 org-priority-faces)))
6550 'org-priority)
6551 'font-lock-fontified t)))))
6553 (defun org-get-tag-face (kwd)
6554 "Get the right face for a TODO keyword KWD.
6555 If KWD is a number, get the corresponding match group."
6556 (if (numberp kwd) (setq kwd (match-string kwd)))
6557 (or (org-face-from-face-or-color
6558 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6559 'org-tag))
6561 (defun org-unfontify-region (beg end &optional maybe_loudly)
6562 "Remove fontification and activation overlays from links."
6563 (font-lock-default-unfontify-region beg end)
6564 (let* ((buffer-undo-list t)
6565 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6566 (inhibit-modification-hooks t)
6567 deactivate-mark buffer-file-name buffer-file-truename)
6568 (org-decompose-region beg end)
6569 (remove-text-properties beg end
6570 '(mouse-face t keymap t org-linked-text t
6571 invisible t intangible t
6572 org-emphasis t))
6573 (org-remove-font-lock-display-properties beg end)))
6575 (defconst org-script-display '(((raise -0.3) (height 0.7))
6576 ((raise 0.3) (height 0.7))
6577 ((raise -0.5))
6578 ((raise 0.5)))
6579 "Display properties for showing superscripts and subscripts.")
6581 (defun org-remove-font-lock-display-properties (beg end)
6582 "Remove specific display properties that have been added by font lock.
6583 The will remove the raise properties that are used to show superscripts
6584 and subscripts."
6585 (let (next prop)
6586 (while (< beg end)
6587 (setq next (next-single-property-change beg 'display nil end)
6588 prop (get-text-property beg 'display))
6589 (if (member prop org-script-display)
6590 (put-text-property beg next 'display nil))
6591 (setq beg next))))
6593 (defun org-raise-scripts (limit)
6594 "Add raise properties to sub/superscripts."
6595 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6596 (if (re-search-forward
6597 (if (eq org-use-sub-superscripts t)
6598 org-match-substring-regexp
6599 org-match-substring-with-braces-regexp)
6600 limit t)
6601 (let* ((pos (point)) table-p comment-p
6602 (mpos (match-beginning 3))
6603 (emph-p (get-text-property mpos 'org-emphasis))
6604 (link-p (get-text-property mpos 'mouse-face))
6605 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6606 (goto-char (point-at-bol))
6607 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6608 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6609 (goto-char pos)
6610 ;; Handle a_b^c
6611 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6612 (if (or comment-p emph-p link-p keyw-p)
6614 (put-text-property (match-beginning 3) (match-end 0)
6615 'display
6616 (if (equal (char-after (match-beginning 2)) ?^)
6617 (nth (if table-p 3 1) org-script-display)
6618 (nth (if table-p 2 0) org-script-display)))
6619 (add-text-properties (match-beginning 2) (match-end 2)
6620 (list 'invisible t
6621 'org-dwidth t 'org-dwidth-n 1))
6622 (if (and (eq (char-after (match-beginning 3)) ?{)
6623 (eq (char-before (match-end 3)) ?}))
6624 (progn
6625 (add-text-properties
6626 (match-beginning 3) (1+ (match-beginning 3))
6627 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6628 (add-text-properties
6629 (1- (match-end 3)) (match-end 3)
6630 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6631 t)))))
6633 ;;;; Visibility cycling, including org-goto and indirect buffer
6635 ;;; Cycling
6637 (defvar org-cycle-global-status nil)
6638 (make-variable-buffer-local 'org-cycle-global-status)
6639 (put 'org-cycle-global-status 'org-state t)
6640 (defvar org-cycle-subtree-status nil)
6641 (make-variable-buffer-local 'org-cycle-subtree-status)
6642 (put 'org-cycle-subtree-status 'org-state t)
6644 (defvar org-inlinetask-min-level)
6646 (defun org-unlogged-message (&rest args)
6647 "Display a message, but avoid logging it in the *Messages* buffer."
6648 (let ((message-log-max nil))
6649 (apply 'message args)))
6651 ;;;###autoload
6652 (defun org-cycle (&optional arg)
6653 "TAB-action and visibility cycling for Org-mode.
6655 This is the command invoked in Org-mode by the TAB key. Its main purpose
6656 is outline visibility cycling, but it also invokes other actions
6657 in special contexts.
6659 - When this function is called with a prefix argument, rotate the entire
6660 buffer through 3 states (global cycling)
6661 1. OVERVIEW: Show only top-level headlines.
6662 2. CONTENTS: Show all headlines of all levels, but no body text.
6663 3. SHOW ALL: Show everything.
6664 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6665 determined by the variable `org-startup-folded', and by any VISIBILITY
6666 properties in the buffer.
6667 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6668 including any drawers.
6670 - When inside a table, re-align the table and move to the next field.
6672 - When point is at the beginning of a headline, rotate the subtree started
6673 by this line through 3 different states (local cycling)
6674 1. FOLDED: Only the main headline is shown.
6675 2. CHILDREN: The main headline and the direct children are shown.
6676 From this state, you can move to one of the children
6677 and zoom in further.
6678 3. SUBTREE: Show the entire subtree, including body text.
6679 If there is no subtree, switch directly from CHILDREN to FOLDED.
6681 - When point is at the beginning of an empty headline and the variable
6682 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6683 of the headline by demoting and promoting it to likely levels. This
6684 speeds up creation document structure by pressing TAB once or several
6685 times right after creating a new headline.
6687 - When there is a numeric prefix, go up to a heading with level ARG, do
6688 a `show-subtree' and return to the previous cursor position. If ARG
6689 is negative, go up that many levels.
6691 - When point is not at the beginning of a headline, execute the global
6692 binding for TAB, which is re-indenting the line. See the option
6693 `org-cycle-emulate-tab' for details.
6695 - Special case: if point is at the beginning of the buffer and there is
6696 no headline in line 1, this function will act as if called with prefix arg
6697 (C-u TAB, same as S-TAB) also when called without prefix arg.
6698 But only if also the variable `org-cycle-global-at-bob' is t."
6699 (interactive "P")
6700 (org-load-modules-maybe)
6701 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6702 (and org-cycle-level-after-item/entry-creation
6703 (or (org-cycle-level)
6704 (org-cycle-item-indentation))))
6705 (let* ((limit-level
6706 (or org-cycle-max-level
6707 (and (boundp 'org-inlinetask-min-level)
6708 org-inlinetask-min-level
6709 (1- org-inlinetask-min-level))))
6710 (nstars (and limit-level
6711 (if org-odd-levels-only
6712 (and limit-level (1- (* limit-level 2)))
6713 limit-level)))
6714 (org-outline-regexp
6715 (if (not (derived-mode-p 'org-mode))
6716 outline-regexp
6717 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6718 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6719 (not (looking-at org-outline-regexp))))
6720 (org-cycle-hook
6721 (if bob-special
6722 (delq 'org-optimize-window-after-visibility-change
6723 (copy-sequence org-cycle-hook))
6724 org-cycle-hook))
6725 (pos (point)))
6727 (if (or bob-special (equal arg '(4)))
6728 ;; special case: use global cycling
6729 (setq arg t))
6731 (cond
6733 ((equal arg '(16))
6734 (setq last-command 'dummy)
6735 (org-set-startup-visibility)
6736 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6738 ((equal arg '(64))
6739 (show-all)
6740 (org-unlogged-message "Entire buffer visible, including drawers"))
6742 ;; Try cdlatex TAB completion
6743 ((org-try-cdlatex-tab))
6745 ;; Table: enter it or move to the next field.
6746 ((org-at-table-p 'any)
6747 (if (org-at-table.el-p)
6748 (message "Use C-c ' to edit table.el tables")
6749 (if arg (org-table-edit-field t)
6750 (org-table-justify-field-maybe)
6751 (call-interactively 'org-table-next-field))))
6753 ((run-hook-with-args-until-success
6754 'org-tab-after-check-for-table-hook))
6756 ;; Global cycling: delegate to `org-cycle-internal-global'.
6757 ((eq arg t) (org-cycle-internal-global))
6759 ;; Drawers: delegate to `org-flag-drawer'.
6760 ((save-excursion
6761 (beginning-of-line 1)
6762 (looking-at org-drawer-regexp))
6763 (org-flag-drawer ; toggle block visibility
6764 (not (get-char-property (match-end 0) 'invisible))))
6766 ;; Show-subtree, ARG levels up from here.
6767 ((integerp arg)
6768 (save-excursion
6769 (org-back-to-heading)
6770 (outline-up-heading (if (< arg 0) (- arg)
6771 (- (funcall outline-level) arg)))
6772 (org-show-subtree)))
6774 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6775 ((and (featurep 'org-inlinetask)
6776 (org-inlinetask-at-task-p)
6777 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6778 (org-inlinetask-toggle-visibility))
6780 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6781 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6782 (save-excursion (move-beginning-of-line 1)
6783 (looking-at org-outline-regexp)))
6784 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6785 (org-cycle-internal-local))
6787 ;; From there: TAB emulation and template completion.
6788 (buffer-read-only (org-back-to-heading))
6790 ((run-hook-with-args-until-success
6791 'org-tab-after-check-for-cycling-hook))
6793 ((org-try-structure-completion))
6795 ((run-hook-with-args-until-success
6796 'org-tab-before-tab-emulation-hook))
6798 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6799 (or (not (bolp))
6800 (not (looking-at org-outline-regexp))))
6801 (call-interactively (global-key-binding "\t")))
6803 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6804 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6805 (or (and (eq org-cycle-emulate-tab 'white)
6806 (= (match-end 0) (point-at-eol)))
6807 (and (eq org-cycle-emulate-tab 'whitestart)
6808 (>= (match-end 0) pos))))
6810 (eq org-cycle-emulate-tab t))
6811 (call-interactively (global-key-binding "\t")))
6813 (t (save-excursion
6814 (org-back-to-heading)
6815 (org-cycle)))))))
6817 (defun org-cycle-internal-global ()
6818 "Do the global cycling action."
6819 ;; Hack to avoid display of messages for .org attachments in Gnus
6820 (let ((ga (string-match "\\*fontification" (buffer-name))))
6821 (cond
6822 ((and (eq last-command this-command)
6823 (eq org-cycle-global-status 'overview))
6824 ;; We just created the overview - now do table of contents
6825 ;; This can be slow in very large buffers, so indicate action
6826 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6827 (unless ga (org-unlogged-message "CONTENTS..."))
6828 (org-content)
6829 (unless ga (org-unlogged-message "CONTENTS...done"))
6830 (setq org-cycle-global-status 'contents)
6831 (run-hook-with-args 'org-cycle-hook 'contents))
6833 ((and (eq last-command this-command)
6834 (eq org-cycle-global-status 'contents))
6835 ;; We just showed the table of contents - now show everything
6836 (run-hook-with-args 'org-pre-cycle-hook 'all)
6837 (show-all)
6838 (unless ga (org-unlogged-message "SHOW ALL"))
6839 (setq org-cycle-global-status 'all)
6840 (run-hook-with-args 'org-cycle-hook 'all))
6843 ;; Default action: go to overview
6844 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6845 (org-overview)
6846 (unless ga (org-unlogged-message "OVERVIEW"))
6847 (setq org-cycle-global-status 'overview)
6848 (run-hook-with-args 'org-cycle-hook 'overview)))))
6850 (defvar org-called-with-limited-levels nil
6851 "Non-nil when `org-with-limited-levels' is currently active.")
6853 (defun org-cycle-internal-local ()
6854 "Do the local cycling action."
6855 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6856 ;; First, determine end of headline (EOH), end of subtree or item
6857 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6858 (save-excursion
6859 (if (org-at-item-p)
6860 (progn
6861 (beginning-of-line)
6862 (setq struct (org-list-struct))
6863 (setq eoh (point-at-eol))
6864 (setq eos (org-list-get-item-end-before-blank (point) struct))
6865 (setq has-children (org-list-has-child-p (point) struct)))
6866 (org-back-to-heading)
6867 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6868 (setq eos (save-excursion (org-end-of-subtree t t)
6869 (when (bolp) (backward-char)) (point)))
6870 (setq has-children
6871 (or (save-excursion
6872 (let ((level (funcall outline-level)))
6873 (outline-next-heading)
6874 (and (org-at-heading-p t)
6875 (> (funcall outline-level) level))))
6876 (save-excursion
6877 (org-list-search-forward (org-item-beginning-re) eos t)))))
6878 ;; Determine end invisible part of buffer (EOL)
6879 (beginning-of-line 2)
6880 ;; XEmacs doesn't have `next-single-char-property-change'
6881 (if (featurep 'xemacs)
6882 (while (and (not (eobp)) ;; this is like `next-line'
6883 (get-char-property (1- (point)) 'invisible))
6884 (beginning-of-line 2))
6885 (while (and (not (eobp)) ;; this is like `next-line'
6886 (get-char-property (1- (point)) 'invisible))
6887 (goto-char (next-single-char-property-change (point) 'invisible))
6888 (and (eolp) (beginning-of-line 2))))
6889 (setq eol (point)))
6890 ;; Find out what to do next and set `this-command'
6891 (cond
6892 ((= eos eoh)
6893 ;; Nothing is hidden behind this heading
6894 (unless (org-before-first-heading-p)
6895 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6896 (org-unlogged-message "EMPTY ENTRY")
6897 (setq org-cycle-subtree-status nil)
6898 (save-excursion
6899 (goto-char eos)
6900 (outline-next-heading)
6901 (if (outline-invisible-p) (org-flag-heading nil))))
6902 ((and (or (>= eol eos)
6903 (not (string-match "\\S-" (buffer-substring eol eos))))
6904 (or has-children
6905 (not (setq children-skipped
6906 org-cycle-skip-children-state-if-no-children))))
6907 ;; Entire subtree is hidden in one line: children view
6908 (unless (org-before-first-heading-p)
6909 (run-hook-with-args 'org-pre-cycle-hook 'children))
6910 (if (org-at-item-p)
6911 (org-list-set-item-visibility (point-at-bol) struct 'children)
6912 (org-show-entry)
6913 (org-with-limited-levels (show-children))
6914 ;; FIXME: This slows down the func way too much.
6915 ;; How keep drawers hidden in subtree anyway?
6916 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6917 ;; (org-cycle-hide-drawers 'subtree))
6919 ;; Fold every list in subtree to top-level items.
6920 (when (eq org-cycle-include-plain-lists 'integrate)
6921 (save-excursion
6922 (org-back-to-heading)
6923 (while (org-list-search-forward (org-item-beginning-re) eos t)
6924 (beginning-of-line 1)
6925 (let* ((struct (org-list-struct))
6926 (prevs (org-list-prevs-alist struct))
6927 (end (org-list-get-bottom-point struct)))
6928 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6929 (org-list-get-all-items (point) struct prevs))
6930 (goto-char (if (< end eos) end eos)))))))
6931 (org-unlogged-message "CHILDREN")
6932 (save-excursion
6933 (goto-char eos)
6934 (outline-next-heading)
6935 (if (outline-invisible-p) (org-flag-heading nil)))
6936 (setq org-cycle-subtree-status 'children)
6937 (unless (org-before-first-heading-p)
6938 (run-hook-with-args 'org-cycle-hook 'children)))
6939 ((or children-skipped
6940 (and (eq last-command this-command)
6941 (eq org-cycle-subtree-status 'children)))
6942 ;; We just showed the children, or no children are there,
6943 ;; now show everything.
6944 (unless (org-before-first-heading-p)
6945 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6946 (outline-flag-region eoh eos nil)
6947 (org-unlogged-message
6948 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6949 (setq org-cycle-subtree-status 'subtree)
6950 (unless (org-before-first-heading-p)
6951 (run-hook-with-args 'org-cycle-hook 'subtree)))
6953 ;; Default action: hide the subtree.
6954 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6955 (outline-flag-region eoh eos t)
6956 (org-unlogged-message "FOLDED")
6957 (setq org-cycle-subtree-status 'folded)
6958 (unless (org-before-first-heading-p)
6959 (run-hook-with-args 'org-cycle-hook 'folded))))))
6961 ;;;###autoload
6962 (defun org-global-cycle (&optional arg)
6963 "Cycle the global visibility. For details see `org-cycle'.
6964 With \\[universal-argument] prefix arg, switch to startup visibility.
6965 With a numeric prefix, show all headlines up to that level."
6966 (interactive "P")
6967 (let ((org-cycle-include-plain-lists
6968 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6969 (cond
6970 ((integerp arg)
6971 (show-all)
6972 (hide-sublevels arg)
6973 (setq org-cycle-global-status 'contents))
6974 ((equal arg '(4))
6975 (org-set-startup-visibility)
6976 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6978 (org-cycle '(4))))))
6980 (defun org-set-startup-visibility ()
6981 "Set the visibility required by startup options and properties."
6982 (cond
6983 ((eq org-startup-folded t)
6984 (org-overview))
6985 ((eq org-startup-folded 'content)
6986 (org-content))
6987 ((or (eq org-startup-folded 'showeverything)
6988 (eq org-startup-folded nil))
6989 (show-all)))
6990 (unless (eq org-startup-folded 'showeverything)
6991 (if org-hide-block-startup (org-hide-block-all))
6992 (org-set-visibility-according-to-property 'no-cleanup)
6993 (org-cycle-hide-archived-subtrees 'all)
6994 (org-cycle-hide-drawers 'all)
6995 (org-cycle-show-empty-lines t)))
6997 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6998 "Switch subtree visibilities according to :VISIBILITY: property."
6999 (interactive)
7000 (let (org-show-entry-below)
7001 (org-with-wide-buffer
7002 (goto-char (point-min))
7003 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7004 (if (not (org-at-property-p)) (outline-next-heading)
7005 (let ((state (match-string 3)))
7006 (save-excursion
7007 (org-back-to-heading t)
7008 (hide-subtree)
7009 (org-reveal)
7010 (cond
7011 ((equal state "folded")
7012 (hide-subtree))
7013 ((equal state "children")
7014 (org-show-hidden-entry)
7015 (show-children))
7016 ((equal state "content")
7017 (save-excursion
7018 (save-restriction
7019 (org-narrow-to-subtree)
7020 (org-content))))
7021 ((member state '("all" "showall"))
7022 (show-subtree)))))))
7023 (unless no-cleanup
7024 (org-cycle-hide-archived-subtrees 'all)
7025 (org-cycle-hide-drawers 'all)
7026 (org-cycle-show-empty-lines 'all)))))
7028 ;; This function uses outline-regexp instead of the more fundamental
7029 ;; org-outline-regexp so that org-cycle-global works outside of Org
7030 ;; buffers, where outline-regexp is needed.
7031 (defun org-overview ()
7032 "Switch to overview mode, showing only top-level headlines.
7033 This shows all headlines with a level equal or greater than the level
7034 of the first headline in the buffer. This is important, because if the
7035 first headline is not level one, then (hide-sublevels 1) gives confusing
7036 results."
7037 (interactive)
7038 (save-excursion
7039 (let ((level
7040 (save-excursion
7041 (goto-char (point-min))
7042 (if (re-search-forward (concat "^" outline-regexp) nil t)
7043 (progn
7044 (goto-char (match-beginning 0))
7045 (funcall outline-level))))))
7046 (and level (hide-sublevels level)))))
7048 (defun org-content (&optional arg)
7049 "Show all headlines in the buffer, like a table of contents.
7050 With numerical argument N, show content up to level N."
7051 (interactive "P")
7052 (org-overview)
7053 (save-excursion
7054 ;; Visit all headings and show their offspring
7055 (and (integerp arg) (org-overview))
7056 (goto-char (point-max))
7057 (catch 'exit
7058 (while (and (progn (condition-case nil
7059 (outline-previous-visible-heading 1)
7060 (error (goto-char (point-min))))
7062 (looking-at org-outline-regexp))
7063 (if (integerp arg)
7064 (show-children (1- arg))
7065 (show-branches))
7066 (if (bobp) (throw 'exit nil))))))
7068 (defun org-optimize-window-after-visibility-change (state)
7069 "Adjust the window after a change in outline visibility.
7070 This function is the default value of the hook `org-cycle-hook'."
7071 (when (get-buffer-window (current-buffer))
7072 (cond
7073 ((eq state 'content) nil)
7074 ((eq state 'all) nil)
7075 ((eq state 'folded) nil)
7076 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7077 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7079 (defun org-remove-empty-overlays-at (pos)
7080 "Remove outline overlays that do not contain non-white stuff."
7081 (mapc
7082 (lambda (o)
7083 (and (eq 'outline (overlay-get o 'invisible))
7084 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7085 (overlay-end o))))
7086 (delete-overlay o)))
7087 (overlays-at pos)))
7089 (defun org-clean-visibility-after-subtree-move ()
7090 "Fix visibility issues after moving a subtree."
7091 ;; First, find a reasonable region to look at:
7092 ;; Start two siblings above, end three below
7093 (let* ((beg (save-excursion
7094 (and (org-get-last-sibling)
7095 (org-get-last-sibling))
7096 (point)))
7097 (end (save-excursion
7098 (and (org-get-next-sibling)
7099 (org-get-next-sibling)
7100 (org-get-next-sibling))
7101 (if (org-at-heading-p)
7102 (point-at-eol)
7103 (point))))
7104 (level (looking-at "\\*+"))
7105 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7106 (save-excursion
7107 (save-restriction
7108 (narrow-to-region beg end)
7109 (when re
7110 ;; Properly fold already folded siblings
7111 (goto-char (point-min))
7112 (while (re-search-forward re nil t)
7113 (if (and (not (outline-invisible-p))
7114 (save-excursion
7115 (goto-char (point-at-eol)) (outline-invisible-p)))
7116 (hide-entry))))
7117 (org-cycle-show-empty-lines 'overview)
7118 (org-cycle-hide-drawers 'overview)))))
7120 (defun org-cycle-show-empty-lines (state)
7121 "Show empty lines above all visible headlines.
7122 The region to be covered depends on STATE when called through
7123 `org-cycle-hook'. Lisp program can use t for STATE to get the
7124 entire buffer covered. Note that an empty line is only shown if there
7125 are at least `org-cycle-separator-lines' empty lines before the headline."
7126 (when (not (= org-cycle-separator-lines 0))
7127 (save-excursion
7128 (let* ((n (abs org-cycle-separator-lines))
7129 (re (cond
7130 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7131 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7132 (t (let ((ns (number-to-string (- n 2))))
7133 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7134 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7135 beg end b e)
7136 (cond
7137 ((memq state '(overview contents t))
7138 (setq beg (point-min) end (point-max)))
7139 ((memq state '(children folded))
7140 (setq beg (point) end (progn (org-end-of-subtree t t)
7141 (beginning-of-line 2)
7142 (point)))))
7143 (when beg
7144 (goto-char beg)
7145 (while (re-search-forward re end t)
7146 (unless (get-char-property (match-end 1) 'invisible)
7147 (setq e (match-end 1))
7148 (if (< org-cycle-separator-lines 0)
7149 (setq b (save-excursion
7150 (goto-char (match-beginning 0))
7151 (org-back-over-empty-lines)
7152 (if (save-excursion
7153 (goto-char (max (point-min) (1- (point))))
7154 (org-at-heading-p))
7155 (1- (point))
7156 (point))))
7157 (setq b (match-beginning 1)))
7158 (outline-flag-region b e nil)))))))
7159 ;; Never hide empty lines at the end of the file.
7160 (save-excursion
7161 (goto-char (point-max))
7162 (outline-previous-heading)
7163 (outline-end-of-heading)
7164 (if (and (looking-at "[ \t\n]+")
7165 (= (match-end 0) (point-max)))
7166 (outline-flag-region (point) (match-end 0) nil))))
7168 (defun org-show-empty-lines-in-parent ()
7169 "Move to the parent and re-show empty lines before visible headlines."
7170 (save-excursion
7171 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7172 (org-cycle-show-empty-lines context))))
7174 (defun org-files-list ()
7175 "Return `org-agenda-files' list, plus all open org-mode files.
7176 This is useful for operations that need to scan all of a user's
7177 open and agenda-wise Org files."
7178 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7179 (dolist (buf (buffer-list))
7180 (with-current-buffer buf
7181 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7182 (let ((file (expand-file-name (buffer-file-name))))
7183 (unless (member file files)
7184 (push file files))))))
7185 files))
7187 (defsubst org-entry-beginning-position ()
7188 "Return the beginning position of the current entry."
7189 (save-excursion (outline-back-to-heading t) (point)))
7191 (defsubst org-entry-end-position ()
7192 "Return the end position of the current entry."
7193 (save-excursion (outline-next-heading) (point)))
7195 (defun org-cycle-hide-drawers (state &optional exceptions)
7196 "Re-hide all drawers after a visibility state change.
7197 When non-nil, optional argument EXCEPTIONS is a list of strings
7198 specifying which drawers should not be hidden."
7199 (when (and (derived-mode-p 'org-mode)
7200 (not (memq state '(overview folded contents))))
7201 (save-excursion
7202 (let* ((globalp (memq state '(contents all)))
7203 (beg (if globalp (point-min) (point)))
7204 (end (if globalp (point-max)
7205 (if (eq state 'children)
7206 (save-excursion (outline-next-heading) (point))
7207 (org-end-of-subtree t)))))
7208 (goto-char beg)
7209 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7210 (unless (member-ignore-case (match-string 1) exceptions)
7211 (let ((drawer (org-element-at-point)))
7212 (when (memq (org-element-type drawer) '(drawer property-drawer))
7213 (org-flag-drawer t drawer)
7214 ;; Make sure to skip drawer entirely or we might flag
7215 ;; it another time when matching its ending line with
7216 ;; `org-drawer-regexp'.
7217 (goto-char (org-element-property :end drawer))))))))))
7219 (defun org-flag-drawer (flag &optional element)
7220 "When FLAG is non-nil, hide the drawer we are at.
7221 Otherwise make it visible. When optional argument ELEMENT is
7222 a parsed drawer, as returned by `org-element-at-point', hide or
7223 show that drawer instead."
7224 (when (save-excursion
7225 (beginning-of-line)
7226 (org-looking-at-p org-drawer-regexp))
7227 (let ((drawer (or element (org-element-at-point))))
7228 (when (memq (org-element-type drawer) '(drawer property-drawer))
7229 (let ((post (org-element-property :post-affiliated drawer)))
7230 (save-excursion
7231 (outline-flag-region
7232 (progn (goto-char post) (line-end-position))
7233 (progn (goto-char (org-element-property :end drawer))
7234 (skip-chars-backward " \r\t\n")
7235 (line-end-position))
7236 flag))
7237 ;; When the drawer is hidden away, make sure point lies in
7238 ;; a visible part of the buffer.
7239 (when (and flag (> (line-beginning-position) post))
7240 (goto-char post)))))))
7242 (defun org-subtree-end-visible-p ()
7243 "Is the end of the current subtree visible?"
7244 (pos-visible-in-window-p
7245 (save-excursion (org-end-of-subtree t) (point))))
7247 (defun org-first-headline-recenter ()
7248 "Move cursor to the first headline and recenter the headline."
7249 (goto-char (point-min))
7250 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7251 (set-window-start (selected-window) (point-at-bol))))
7253 ;;; Saving and restoring visibility
7255 (defun org-outline-overlay-data (&optional use-markers)
7256 "Return a list of the locations of all outline overlays.
7257 These are overlays with the `invisible' property value `outline'.
7258 The return value is a list of cons cells, with start and stop
7259 positions for each overlay.
7260 If USE-MARKERS is set, return the positions as markers."
7261 (let (beg end)
7262 (save-excursion
7263 (save-restriction
7264 (widen)
7265 (delq nil
7266 (mapcar (lambda (o)
7267 (when (eq (overlay-get o 'invisible) 'outline)
7268 (setq beg (overlay-start o)
7269 end (overlay-end o))
7270 (and beg end (> end beg)
7271 (if use-markers
7272 (cons (copy-marker beg)
7273 (copy-marker end t))
7274 (cons beg end)))))
7275 (overlays-in (point-min) (point-max))))))))
7277 (defun org-set-outline-overlay-data (data)
7278 "Create visibility overlays for all positions in DATA.
7279 DATA should have been made by `org-outline-overlay-data'."
7280 (let (o)
7281 (save-excursion
7282 (save-restriction
7283 (widen)
7284 (show-all)
7285 (mapc (lambda (c)
7286 (outline-flag-region (car c) (cdr c) t))
7287 data)))))
7289 ;;; Folding of blocks
7291 (defvar org-hide-block-overlays nil
7292 "Overlays hiding blocks.")
7293 (make-variable-buffer-local 'org-hide-block-overlays)
7295 (defun org-block-map (function &optional start end)
7296 "Call FUNCTION at the head of all source blocks in the current buffer.
7297 Optional arguments START and END can be used to limit the range."
7298 (let ((start (or start (point-min)))
7299 (end (or end (point-max))))
7300 (save-excursion
7301 (goto-char start)
7302 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7303 (save-excursion
7304 (save-match-data
7305 (goto-char (match-beginning 0))
7306 (funcall function)))))))
7308 (defun org-hide-block-toggle-all ()
7309 "Toggle the visibility of all blocks in the current buffer."
7310 (org-block-map 'org-hide-block-toggle))
7312 (defun org-hide-block-all ()
7313 "Fold all blocks in the current buffer."
7314 (interactive)
7315 (org-show-block-all)
7316 (org-block-map 'org-hide-block-toggle-maybe))
7318 (defun org-show-block-all ()
7319 "Unfold all blocks in the current buffer."
7320 (interactive)
7321 (mapc 'delete-overlay org-hide-block-overlays)
7322 (setq org-hide-block-overlays nil))
7324 (defun org-hide-block-toggle-maybe ()
7325 "Toggle visibility of block at point.
7326 Unlike to `org-hide-block-toggle', this function does not throw
7327 an error. Return a non-nil value when toggling is successful."
7328 (interactive)
7329 (ignore-errors (org-hide-block-toggle)))
7331 (defun org-hide-block-toggle (&optional force)
7332 "Toggle the visibility of the current block.
7333 When optional argument FORCE is `off', make block visible. If it
7334 is non-nil, hide it unconditionally. Throw an error when not at
7335 a block. Return a non-nil value when toggling is successful."
7336 (interactive)
7337 (let ((element (org-element-at-point)))
7338 (unless (memq (org-element-type element)
7339 '(center-block comment-block dynamic-block example-block
7340 export-block quote-block special-block
7341 src-block verse-block))
7342 (user-error "Not at a block"))
7343 (let* ((start (save-excursion
7344 (goto-char (org-element-property :post-affiliated element))
7345 (line-end-position)))
7346 (end (save-excursion
7347 (goto-char (org-element-property :end element))
7348 (skip-chars-backward " \r\t\n")
7349 (line-end-position)))
7350 (overlays (overlays-at start)))
7351 (cond
7352 ;; Do nothing when not before or at the block opening line or
7353 ;; at the block closing line.
7354 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7355 ((and (not (eq force 'off))
7356 (not (memq t (mapcar
7357 (lambda (o)
7358 (eq (overlay-get o 'invisible) 'org-hide-block))
7359 overlays))))
7360 (let ((ov (make-overlay start end)))
7361 (overlay-put ov 'invisible 'org-hide-block)
7362 ;; Make the block accessible to `isearch'.
7363 (overlay-put
7364 ov 'isearch-open-invisible
7365 (lambda (ov)
7366 (when (memq ov org-hide-block-overlays)
7367 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7368 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7369 (delete-overlay ov))))
7370 (push ov org-hide-block-overlays)
7371 ;; When the block is hidden away, make sure point is left in
7372 ;; a visible part of the buffer.
7373 (when (> (line-beginning-position) start)
7374 (goto-char start)
7375 (beginning-of-line))
7376 ;; Signal successful toggling.
7378 ((or (not force) (eq force 'off))
7379 (dolist (ov overlays t)
7380 (when (memq ov org-hide-block-overlays)
7381 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7382 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7383 (delete-overlay ov))))))))
7385 ;; org-tab-after-check-for-cycling-hook
7386 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7387 ;; Remove overlays when changing major mode
7388 (add-hook 'org-mode-hook
7389 (lambda () (org-add-hook 'change-major-mode-hook
7390 'org-show-block-all 'append 'local)))
7392 ;;; Org-goto
7394 (defvar org-goto-window-configuration nil)
7395 (defvar org-goto-marker nil)
7396 (defvar org-goto-map)
7397 (defun org-goto-map ()
7398 "Set the keymap `org-goto'."
7399 (setq org-goto-map
7400 (let ((map (make-sparse-keymap)))
7401 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7402 mouse-drag-region universal-argument org-occur))
7403 cmd)
7404 (while (setq cmd (pop cmds))
7405 (substitute-key-definition cmd cmd map global-map)))
7406 (suppress-keymap map)
7407 (org-defkey map "\C-m" 'org-goto-ret)
7408 (org-defkey map [(return)] 'org-goto-ret)
7409 (org-defkey map [(left)] 'org-goto-left)
7410 (org-defkey map [(right)] 'org-goto-right)
7411 (org-defkey map [(control ?g)] 'org-goto-quit)
7412 (org-defkey map "\C-i" 'org-cycle)
7413 (org-defkey map [(tab)] 'org-cycle)
7414 (org-defkey map [(down)] 'outline-next-visible-heading)
7415 (org-defkey map [(up)] 'outline-previous-visible-heading)
7416 (if org-goto-auto-isearch
7417 (if (fboundp 'define-key-after)
7418 (define-key-after map [t] 'org-goto-local-auto-isearch)
7419 nil)
7420 (org-defkey map "q" 'org-goto-quit)
7421 (org-defkey map "n" 'outline-next-visible-heading)
7422 (org-defkey map "p" 'outline-previous-visible-heading)
7423 (org-defkey map "f" 'outline-forward-same-level)
7424 (org-defkey map "b" 'outline-backward-same-level)
7425 (org-defkey map "u" 'outline-up-heading))
7426 (org-defkey map "/" 'org-occur)
7427 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7428 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7429 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7430 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7431 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7432 map)))
7434 (defconst org-goto-help
7435 "Browse buffer copy, to find location or copy text.%s
7436 RET=jump to location C-g=quit and return to previous location
7437 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7439 (defvar org-goto-start-pos) ; dynamically scoped parameter
7441 (defun org-goto (&optional alternative-interface)
7442 "Look up a different location in the current file, keeping current visibility.
7444 When you want look-up or go to a different location in a
7445 document, the fastest way is often to fold the entire buffer and
7446 then dive into the tree. This method has the disadvantage, that
7447 the previous location will be folded, which may not be what you
7448 want.
7450 This command works around this by showing a copy of the current
7451 buffer in an indirect buffer, in overview mode. You can dive
7452 into the tree in that copy, use org-occur and incremental search
7453 to find a location. When pressing RET or `Q', the command
7454 returns to the original buffer in which the visibility is still
7455 unchanged. After RET it will also jump to the location selected
7456 in the indirect buffer and expose the headline hierarchy above.
7458 With a prefix argument, use the alternative interface: e.g. if
7459 `org-goto-interface' is 'outline use 'outline-path-completion."
7460 (interactive "P")
7461 (org-goto-map)
7462 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7463 (org-refile-use-outline-path t)
7464 (org-refile-target-verify-function nil)
7465 (interface
7466 (if (not alternative-interface)
7467 org-goto-interface
7468 (if (eq org-goto-interface 'outline)
7469 'outline-path-completion
7470 'outline)))
7471 (org-goto-start-pos (point))
7472 (selected-point
7473 (if (eq interface 'outline)
7474 (car (org-get-location (current-buffer) org-goto-help))
7475 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7476 (org-refile-check-position pa)
7477 (nth 3 pa)))))
7478 (if selected-point
7479 (progn
7480 (org-mark-ring-push org-goto-start-pos)
7481 (goto-char selected-point)
7482 (if (or (outline-invisible-p) (org-invisible-p2))
7483 (org-show-context 'org-goto)))
7484 (message "Quit"))))
7486 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7487 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7488 (defvar org-goto-local-auto-isearch-map) ; defined below
7490 (defun org-get-location (buf help)
7491 "Let the user select a location in the Org-mode buffer BUF.
7492 This function uses a recursive edit. It returns the selected position
7493 or nil."
7494 (org-no-popups
7495 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7496 (isearch-hide-immediately nil)
7497 (isearch-search-fun-function
7498 (lambda () 'org-goto-local-search-headings))
7499 (org-goto-selected-point org-goto-exit-command))
7500 (save-excursion
7501 (save-window-excursion
7502 (delete-other-windows)
7503 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7504 (org-pop-to-buffer-same-window
7505 (condition-case nil
7506 (make-indirect-buffer (current-buffer) "*org-goto*")
7507 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7508 (with-output-to-temp-buffer "*Org Help*"
7509 (princ (format help (if org-goto-auto-isearch
7510 " Just type for auto-isearch."
7511 " n/p/f/b/u to navigate, q to quit."))))
7512 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7513 (setq buffer-read-only nil)
7514 (let ((org-startup-truncated t)
7515 (org-startup-folded nil)
7516 (org-startup-align-all-tables nil))
7517 (org-mode)
7518 (org-overview))
7519 (setq buffer-read-only t)
7520 (if (and (boundp 'org-goto-start-pos)
7521 (integer-or-marker-p org-goto-start-pos))
7522 (progn (goto-char org-goto-start-pos)
7523 (when (outline-invisible-p)
7524 (org-show-set-visibility 'lineage)))
7525 (goto-char (point-min)))
7526 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7527 (message "Select location and press RET")
7528 (use-local-map org-goto-map)
7529 (recursive-edit)))
7530 (kill-buffer "*org-goto*")
7531 (cons org-goto-selected-point org-goto-exit-command))))
7533 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7534 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7535 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7536 (if (fboundp 'isearch-other-control-char)
7537 (progn
7538 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7539 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7540 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7541 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7542 (define-key org-goto-local-auto-isearch-map [return] nil))
7544 (defun org-goto-local-search-headings (string bound noerror)
7545 "Search and make sure that any matches are in headlines."
7546 (catch 'return
7547 (while (if isearch-forward
7548 (search-forward string bound noerror)
7549 (search-backward string bound noerror))
7550 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7551 (and (member :headline context)
7552 (not (member :tags context))))
7553 (throw 'return (point))))))
7555 (defun org-goto-local-auto-isearch ()
7556 "Start isearch."
7557 (interactive)
7558 (goto-char (point-min))
7559 (let ((keys (this-command-keys)))
7560 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7561 (isearch-mode t)
7562 (isearch-process-search-char (string-to-char keys)))))
7564 (defun org-goto-ret (&optional arg)
7565 "Finish `org-goto' by going to the new location."
7566 (interactive "P")
7567 (setq org-goto-selected-point (point)
7568 org-goto-exit-command 'return)
7569 (throw 'exit nil))
7571 (defun org-goto-left ()
7572 "Finish `org-goto' by going to the new location."
7573 (interactive)
7574 (if (org-at-heading-p)
7575 (progn
7576 (beginning-of-line 1)
7577 (setq org-goto-selected-point (point)
7578 org-goto-exit-command 'left)
7579 (throw 'exit nil))
7580 (user-error "Not on a heading")))
7582 (defun org-goto-right ()
7583 "Finish `org-goto' by going to the new location."
7584 (interactive)
7585 (if (org-at-heading-p)
7586 (progn
7587 (setq org-goto-selected-point (point)
7588 org-goto-exit-command 'right)
7589 (throw 'exit nil))
7590 (user-error "Not on a heading")))
7592 (defun org-goto-quit ()
7593 "Finish `org-goto' without cursor motion."
7594 (interactive)
7595 (setq org-goto-selected-point nil)
7596 (setq org-goto-exit-command 'quit)
7597 (throw 'exit nil))
7599 ;;; Indirect buffer display of subtrees
7601 (defvar org-indirect-dedicated-frame nil
7602 "This is the frame being used for indirect tree display.")
7603 (defvar org-last-indirect-buffer nil)
7605 (defun org-tree-to-indirect-buffer (&optional arg)
7606 "Create indirect buffer and narrow it to current subtree.
7607 With a numerical prefix ARG, go up to this level and then take that tree.
7608 If ARG is negative, go up that many levels.
7610 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7611 indirect buffer previously made with this command, to avoid proliferation of
7612 indirect buffers. However, when you call the command with a \
7613 \\[universal-argument] prefix, or
7614 when `org-indirect-buffer-display' is `new-frame', the last buffer
7615 is kept so that you can work with several indirect buffers at the same time.
7616 If `org-indirect-buffer-display' is `dedicated-frame', the \
7617 \\[universal-argument] prefix also
7618 requests that a new frame be made for the new buffer, so that the dedicated
7619 frame is not changed."
7620 (interactive "P")
7621 (let ((cbuf (current-buffer))
7622 (cwin (selected-window))
7623 (pos (point))
7624 beg end level heading ibuf)
7625 (save-excursion
7626 (org-back-to-heading t)
7627 (when (numberp arg)
7628 (setq level (org-outline-level))
7629 (if (< arg 0) (setq arg (+ level arg)))
7630 (while (> (setq level (org-outline-level)) arg)
7631 (org-up-heading-safe)))
7632 (setq beg (point)
7633 heading (org-get-heading))
7634 (org-end-of-subtree t t)
7635 (if (org-at-heading-p) (backward-char 1))
7636 (setq end (point)))
7637 (if (and (buffer-live-p org-last-indirect-buffer)
7638 (not (eq org-indirect-buffer-display 'new-frame))
7639 (not arg))
7640 (kill-buffer org-last-indirect-buffer))
7641 (setq ibuf (org-get-indirect-buffer cbuf heading)
7642 org-last-indirect-buffer ibuf)
7643 (cond
7644 ((or (eq org-indirect-buffer-display 'new-frame)
7645 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7646 (select-frame (make-frame))
7647 (delete-other-windows)
7648 (org-pop-to-buffer-same-window ibuf)
7649 (org-set-frame-title heading))
7650 ((eq org-indirect-buffer-display 'dedicated-frame)
7651 (raise-frame
7652 (select-frame (or (and org-indirect-dedicated-frame
7653 (frame-live-p org-indirect-dedicated-frame)
7654 org-indirect-dedicated-frame)
7655 (setq org-indirect-dedicated-frame (make-frame)))))
7656 (delete-other-windows)
7657 (org-pop-to-buffer-same-window ibuf)
7658 (org-set-frame-title (concat "Indirect: " heading)))
7659 ((eq org-indirect-buffer-display 'current-window)
7660 (org-pop-to-buffer-same-window ibuf))
7661 ((eq org-indirect-buffer-display 'other-window)
7662 (pop-to-buffer ibuf))
7663 (t (error "Invalid value")))
7664 (if (featurep 'xemacs)
7665 (save-excursion (org-mode) (turn-on-font-lock)))
7666 (narrow-to-region beg end)
7667 (show-all)
7668 (goto-char pos)
7669 (run-hook-with-args 'org-cycle-hook 'all)
7670 (and (window-live-p cwin) (select-window cwin))))
7672 (defun org-get-indirect-buffer (&optional buffer heading)
7673 (setq buffer (or buffer (current-buffer)))
7674 (let ((n 1) (base (buffer-name buffer)) bname)
7675 (while (buffer-live-p
7676 (get-buffer
7677 (setq bname
7678 (concat base "-"
7679 (if heading (concat heading "-" (number-to-string n))
7680 (number-to-string n))))))
7681 (setq n (1+ n)))
7682 (condition-case nil
7683 (make-indirect-buffer buffer bname 'clone)
7684 (error (make-indirect-buffer buffer bname)))))
7686 (defun org-set-frame-title (title)
7687 "Set the title of the current frame to the string TITLE."
7688 ;; FIXME: how to name a single frame in XEmacs???
7689 (unless (featurep 'xemacs)
7690 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7692 ;;;; Structure editing
7694 ;;; Inserting headlines
7696 (defun org-previous-line-empty-p (&optional next)
7697 "Is the previous line a blank line?
7698 When NEXT is non-nil, check the next line instead."
7699 (save-excursion
7700 (and (not (bobp))
7701 (or (beginning-of-line (if next 2 0)) t)
7702 (save-match-data
7703 (looking-at "[ \t]*$")))))
7705 (defun org-insert-heading (&optional arg invisible-ok top-level)
7706 "Insert a new heading or an item with the same depth at point.
7708 If point is at the beginning of a heading or a list item, insert
7709 a new heading or a new item above the current one. If point is
7710 at the beginning of a normal line, turn the line into a heading.
7712 If point is in the middle of a headline or a list item, split the
7713 headline or the item and create a new headline/item with the text
7714 in the current line after point \(see `org-M-RET-may-split-line'
7715 on how to modify this behavior).
7717 With one universal prefix argument, set the user option
7718 `org-insert-heading-respect-content' to t for the duration of
7719 the command. This modifies the behavior described above in this
7720 ways: on list items and at the beginning of normal lines, force
7721 the insertion of a heading after the current subtree.
7723 With two universal prefix arguments, insert the heading at the
7724 end of the grandparent subtree. For example, if point is within
7725 a 2nd-level heading, then it will insert a 2nd-level heading at
7726 the end of the 1st-level parent heading.
7728 If point is at the beginning of a headline, insert a sibling
7729 before the current headline. If point is not at the beginning,
7730 split the line and create a new headline with the text in the
7731 current line after point \(see `org-M-RET-may-split-line' on how
7732 to modify this behavior).
7734 If point is at the beginning of a normal line, turn this line
7735 into a heading.
7737 When INVISIBLE-OK is set, stop at invisible headlines when going
7738 back. This is important for non-interactive uses of the
7739 command.
7741 When optional argument TOP-LEVEL is non-nil, insert a level 1
7742 heading, unconditionally."
7743 (interactive "P")
7744 (if (org-called-interactively-p 'any) (org-reveal))
7745 (let ((itemp (and (not top-level) (org-in-item-p)))
7746 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7747 (respect-content (or org-insert-heading-respect-content
7748 (equal arg '(4))))
7749 (initial-content ""))
7751 (cond
7753 ((or (= (buffer-size) 0)
7754 (and (not (save-excursion
7755 (and (ignore-errors (org-back-to-heading invisible-ok))
7756 (org-at-heading-p))))
7757 (or arg (not itemp))))
7758 ;; At beginning of buffer or so high up that only a heading
7759 ;; makes sense.
7760 (cond ((and (bolp) (not respect-content)) (insert "* "))
7761 ((not respect-content)
7762 (unless may-split (end-of-line))
7763 (insert "\n* "))
7764 ((re-search-forward org-outline-regexp-bol nil t)
7765 (beginning-of-line)
7766 (insert "* \n")
7767 (backward-char))
7768 (t (goto-char (point-max))
7769 (insert "\n* ")))
7770 (run-hooks 'org-insert-heading-hook))
7772 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7775 ;; Maybe move at the end of the subtree
7776 (when (equal arg '(16))
7777 (org-up-heading-safe)
7778 (org-end-of-subtree t))
7779 ;; Insert a heading
7780 (save-restriction
7781 (widen)
7782 (let* ((level nil)
7783 (on-heading (org-at-heading-p))
7784 (empty-line-p (if on-heading
7785 (org-previous-line-empty-p)
7786 ;; We will decide later
7787 nil))
7788 ;; Get a level string to fall back on.
7789 (fix-level
7790 (if (org-before-first-heading-p) "*"
7791 (save-excursion
7792 (org-back-to-heading t)
7793 (if (org-previous-line-empty-p) (setq empty-line-p t))
7794 (looking-at org-outline-regexp)
7795 (make-string (1- (length (match-string 0))) ?*))))
7796 (stars
7797 (save-excursion
7798 (condition-case nil
7799 (if top-level "* "
7800 (org-back-to-heading invisible-ok)
7801 (when (and (not on-heading)
7802 (featurep 'org-inlinetask)
7803 (integerp org-inlinetask-min-level)
7804 (>= (length (match-string 0))
7805 org-inlinetask-min-level))
7806 ;; Find a heading level before the inline
7807 ;; task.
7808 (while (and (setq level (org-up-heading-safe))
7809 (>= level org-inlinetask-min-level)))
7810 (if (org-at-heading-p)
7811 (org-back-to-heading invisible-ok)
7812 (error "This should not happen")))
7813 (unless (and (save-excursion
7814 (save-match-data
7815 (org-backward-heading-same-level
7816 1 invisible-ok))
7817 (= (point) (match-beginning 0)))
7818 (not (org-previous-line-empty-p t)))
7819 (setq empty-line-p (or empty-line-p
7820 (org-previous-line-empty-p))))
7821 (match-string 0))
7822 (error (or fix-level "* ")))))
7823 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7824 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7825 pos hide-previous previous-pos)
7827 ;; If we insert after content, move there and clean up
7828 ;; whitespace.
7829 (when (and respect-content
7830 (not (org-looking-at-p org-outline-regexp-bol)))
7831 (if (not (org-before-first-heading-p))
7832 (org-end-of-subtree nil t)
7833 (re-search-forward org-outline-regexp-bol)
7834 (beginning-of-line 0))
7835 (skip-chars-backward " \r\t\n")
7836 (and (not (looking-back "^\\*+"))
7837 (looking-at "[ \t]+") (replace-match ""))
7838 (unless (eobp) (forward-char 1))
7839 (when (looking-at "^\\*")
7840 (unless (bobp) (backward-char 1))
7841 (insert "\n")))
7843 ;; If we are splitting, grab the text that should be moved
7844 ;; to the new headline.
7845 (when may-split
7846 (if (org-on-heading-p)
7847 ;; This is a heading: split intelligently (keeping
7848 ;; tags).
7849 (let ((pos (point)))
7850 (beginning-of-line)
7851 (unless (looking-at org-complex-heading-regexp)
7852 (error "This should not happen"))
7853 (when (and (match-beginning 4)
7854 (> pos (match-beginning 4))
7855 (< pos (match-end 4)))
7856 (setq initial-content (buffer-substring pos (match-end 4)))
7857 (goto-char pos)
7858 (delete-region (point) (match-end 4))
7859 (if (looking-at "[ \t]*$")
7860 (replace-match "")
7861 (insert (make-string (length initial-content) ?\s)))
7862 (setq initial-content (org-trim initial-content)))
7863 (goto-char pos))
7864 ;; A normal line.
7865 (setq initial-content
7866 (org-trim
7867 (delete-and-extract-region (point) (line-end-position))))))
7869 ;; If we are at the beginning of the line, insert before it.
7870 ;; Otherwise, after it.
7871 (cond
7872 ((and (bolp) (looking-at "[ \t]*$")))
7873 ((bolp) (save-excursion (insert "\n")))
7874 (t (end-of-line)
7875 (insert "\n")))
7877 ;; Insert the new heading
7878 (insert stars)
7879 (just-one-space)
7880 (insert initial-content)
7881 (unless (and blank (org-previous-line-empty-p))
7882 (org-N-empty-lines-before-current (if blank 1 0)))
7883 ;; Adjust visibility, which may be messed up if we removed
7884 ;; blank lines while previous entry was hidden.
7885 (let ((bol (line-beginning-position)))
7886 (dolist (o (overlays-at (1- bol)))
7887 (when (and (eq (overlay-get o 'invisible) 'outline)
7888 (eq (overlay-end o) bol))
7889 (move-overlay o (overlay-start o) (1- bol)))))
7890 (run-hooks 'org-insert-heading-hook)))))))
7892 (defun org-N-empty-lines-before-current (N)
7893 "Make the number of empty lines before current exactly N.
7894 So this will delete or add empty lines."
7895 (save-excursion
7896 (beginning-of-line)
7897 (let ((p (point)))
7898 (skip-chars-backward " \r\t\n")
7899 (unless (bolp) (forward-line))
7900 (delete-region (point) p))
7901 (when (> N 0) (insert (make-string N ?\n)))))
7903 (defun org-get-heading (&optional no-tags no-todo)
7904 "Return the heading of the current entry, without the stars.
7905 When NO-TAGS is non-nil, don't include tags.
7906 When NO-TODO is non-nil, don't include TODO keywords."
7907 (save-excursion
7908 (org-back-to-heading t)
7909 (cond
7910 ((and no-tags no-todo)
7911 (looking-at org-complex-heading-regexp)
7912 (match-string 4))
7913 (no-tags
7914 (looking-at (concat org-outline-regexp
7915 "\\(.*?\\)"
7916 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7917 (match-string 1))
7918 (no-todo
7919 (looking-at org-todo-line-regexp)
7920 (match-string 3))
7921 (t (looking-at org-heading-regexp)
7922 (match-string 2)))))
7924 (defvar orgstruct-mode) ; defined below
7926 (defun org-heading-components ()
7927 "Return the components of the current heading.
7928 This is a list with the following elements:
7929 - the level as an integer
7930 - the reduced level, different if `org-odd-levels-only' is set.
7931 - the TODO keyword, or nil
7932 - the priority character, like ?A, or nil if no priority is given
7933 - the headline text itself, or the tags string if no headline text
7934 - the tags string, or nil."
7935 (save-excursion
7936 (org-back-to-heading t)
7937 (if (let (case-fold-search)
7938 (looking-at
7939 (if orgstruct-mode
7940 org-heading-regexp
7941 org-complex-heading-regexp)))
7942 (if orgstruct-mode
7943 (list (length (match-string 1))
7944 (org-reduced-level (length (match-string 1)))
7947 (match-string 2)
7948 nil)
7949 (list (length (match-string 1))
7950 (org-reduced-level (length (match-string 1)))
7951 (org-match-string-no-properties 2)
7952 (and (match-end 3) (aref (match-string 3) 2))
7953 (org-match-string-no-properties 4)
7954 (org-match-string-no-properties 5))))))
7956 (defun org-get-entry ()
7957 "Get the entry text, after heading, entire subtree."
7958 (save-excursion
7959 (org-back-to-heading t)
7960 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7962 (defun org-insert-heading-after-current ()
7963 "Insert a new heading with same level as current, after current subtree."
7964 (interactive)
7965 (org-back-to-heading)
7966 (org-insert-heading)
7967 (org-move-subtree-down)
7968 (end-of-line 1))
7970 (defun org-insert-heading-respect-content (&optional invisible-ok)
7971 "Insert heading with `org-insert-heading-respect-content' set to t."
7972 (interactive)
7973 (org-insert-heading '(4) invisible-ok))
7975 (defun org-insert-todo-heading-respect-content (&optional force-state)
7976 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7977 (interactive)
7978 (org-insert-todo-heading force-state '(4)))
7980 (defun org-insert-todo-heading (arg &optional force-heading)
7981 "Insert a new heading with the same level and TODO state as current heading.
7982 If the heading has no TODO state, or if the state is DONE, use the first
7983 state (TODO by default). Also with one prefix arg, force first state. With
7984 two prefix args, force inserting at the end of the parent subtree."
7985 (interactive "P")
7986 (when (or force-heading (not (org-insert-item 'checkbox)))
7987 (org-insert-heading (or (and (equal arg '(16)) '(16))
7988 force-heading))
7989 (save-excursion
7990 (org-back-to-heading)
7991 (outline-previous-heading)
7992 (looking-at org-todo-line-regexp))
7993 (let*
7994 ((new-mark-x
7995 (if (or (equal arg '(4))
7996 (not (match-beginning 2))
7997 (member (match-string 2) org-done-keywords))
7998 (car org-todo-keywords-1)
7999 (match-string 2)))
8000 (new-mark
8002 (run-hook-with-args-until-success
8003 'org-todo-get-default-hook new-mark-x nil)
8004 new-mark-x)))
8005 (beginning-of-line 1)
8006 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8007 (if org-treat-insert-todo-heading-as-state-change
8008 (org-todo new-mark)
8009 (insert new-mark " "))))
8010 (when org-provide-todo-statistics
8011 (org-update-parent-todo-statistics))))
8013 (defun org-insert-subheading (arg)
8014 "Insert a new subheading and demote it.
8015 Works for outline headings and for plain lists alike."
8016 (interactive "P")
8017 (org-insert-heading arg)
8018 (cond
8019 ((org-at-heading-p) (org-do-demote))
8020 ((org-at-item-p) (org-indent-item))))
8022 (defun org-insert-todo-subheading (arg)
8023 "Insert a new subheading with TODO keyword or checkbox and demote it.
8024 Works for outline headings and for plain lists alike."
8025 (interactive "P")
8026 (org-insert-todo-heading arg)
8027 (cond
8028 ((org-at-heading-p) (org-do-demote))
8029 ((org-at-item-p) (org-indent-item))))
8031 ;;; Promotion and Demotion
8033 (defvar org-after-demote-entry-hook nil
8034 "Hook run after an entry has been demoted.
8035 The cursor will be at the beginning of the entry.
8036 When a subtree is being demoted, the hook will be called for each node.")
8038 (defvar org-after-promote-entry-hook nil
8039 "Hook run after an entry has been promoted.
8040 The cursor will be at the beginning of the entry.
8041 When a subtree is being promoted, the hook will be called for each node.")
8043 (defun org-promote-subtree ()
8044 "Promote the entire subtree.
8045 See also `org-promote'."
8046 (interactive)
8047 (save-excursion
8048 (org-with-limited-levels (org-map-tree 'org-promote)))
8049 (org-fix-position-after-promote))
8051 (defun org-demote-subtree ()
8052 "Demote the entire subtree. See `org-demote'.
8053 See also `org-promote'."
8054 (interactive)
8055 (save-excursion
8056 (org-with-limited-levels (org-map-tree 'org-demote)))
8057 (org-fix-position-after-promote))
8060 (defun org-do-promote ()
8061 "Promote the current heading higher up the tree.
8062 If the region is active in `transient-mark-mode', promote all headings
8063 in the region."
8064 (interactive)
8065 (save-excursion
8066 (if (org-region-active-p)
8067 (org-map-region 'org-promote (region-beginning) (region-end))
8068 (org-promote)))
8069 (org-fix-position-after-promote))
8071 (defun org-do-demote ()
8072 "Demote the current heading lower down the tree.
8073 If the region is active in `transient-mark-mode', demote all headings
8074 in the region."
8075 (interactive)
8076 (save-excursion
8077 (if (org-region-active-p)
8078 (org-map-region 'org-demote (region-beginning) (region-end))
8079 (org-demote)))
8080 (org-fix-position-after-promote))
8082 (defun org-fix-position-after-promote ()
8083 "Make sure that after pro/demotion cursor position is right."
8084 (let ((pos (point)))
8085 (when (save-excursion
8086 (beginning-of-line 1)
8087 (looking-at org-todo-line-regexp)
8088 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8089 (cond ((eobp) (insert " "))
8090 ((eolp) (insert " "))
8091 ((equal (char-after) ?\ ) (forward-char 1))))))
8093 (defun org-current-level ()
8094 "Return the level of the current entry, or nil if before the first headline.
8095 The level is the number of stars at the beginning of the
8096 headline. Use `org-reduced-level' to remove the effect of
8097 `org-odd-levels'. Unlike to `org-outline-level', this function
8098 ignores inlinetasks."
8099 (let ((level (org-with-limited-levels (org-outline-level))))
8100 (and (> level 0) level)))
8102 (defun org-get-previous-line-level ()
8103 "Return the outline depth of the last headline before the current line.
8104 Returns 0 for the first headline in the buffer, and nil if before the
8105 first headline."
8106 (and (org-current-level)
8107 (or (and (/= (line-beginning-position) (point-min))
8108 (save-excursion (beginning-of-line 0) (org-current-level)))
8109 0)))
8111 (defun org-reduced-level (l)
8112 "Compute the effective level of a heading.
8113 This takes into account the setting of `org-odd-levels-only'."
8114 (cond
8115 ((zerop l) 0)
8116 (org-odd-levels-only (1+ (floor (/ l 2))))
8117 (t l)))
8119 (defun org-level-increment ()
8120 "Return the number of stars that will be added or removed at a
8121 time to headlines when structure editing, based on the value of
8122 `org-odd-levels-only'."
8123 (if org-odd-levels-only 2 1))
8125 (defun org-get-valid-level (level &optional change)
8126 "Rectify a level change under the influence of `org-odd-levels-only'
8127 LEVEL is a current level, CHANGE is by how much the level should be
8128 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8129 even level numbers will become the next higher odd number."
8130 (if org-odd-levels-only
8131 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8132 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8133 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8134 (max 1 (+ level (or change 0)))))
8136 (if (boundp 'define-obsolete-function-alias)
8137 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8138 (define-obsolete-function-alias 'org-get-legal-level
8139 'org-get-valid-level)
8140 (define-obsolete-function-alias 'org-get-legal-level
8141 'org-get-valid-level "23.1")))
8143 (defun org-promote ()
8144 "Promote the current heading higher up the tree."
8145 (org-with-wide-buffer
8146 (org-back-to-heading t)
8147 (let* ((after-change-functions (remq 'flyspell-after-change-function
8148 after-change-functions))
8149 (level (save-match-data (funcall outline-level)))
8150 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8151 (diff (abs (- level (length up-head) -1))))
8152 (cond
8153 ((and (= level 1) org-allow-promoting-top-level-subtree)
8154 (replace-match "# " nil t))
8155 ((= level 1)
8156 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8157 (t (replace-match up-head nil t)))
8158 (unless (= level 1)
8159 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8160 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8161 (run-hooks 'org-after-promote-entry-hook))))
8163 (defun org-demote ()
8164 "Demote the current heading lower down the tree."
8165 (org-with-wide-buffer
8166 (org-back-to-heading t)
8167 (let* ((after-change-functions (remq 'flyspell-after-change-function
8168 after-change-functions))
8169 (level (save-match-data (funcall outline-level)))
8170 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8171 (diff (abs (- level (length down-head) -1))))
8172 (replace-match down-head nil t)
8173 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8174 (when org-adapt-indentation (org-fixup-indentation diff))
8175 (run-hooks 'org-after-demote-entry-hook))))
8177 (defun org-cycle-level ()
8178 "Cycle the level of an empty headline through possible states.
8179 This goes first to child, then to parent, level, then up the hierarchy.
8180 After top level, it switches back to sibling level."
8181 (interactive)
8182 (let ((org-adapt-indentation nil))
8183 (when (org-point-at-end-of-empty-headline)
8184 (setq this-command 'org-cycle-level) ; Only needed for caching
8185 (let ((cur-level (org-current-level))
8186 (prev-level (org-get-previous-line-level)))
8187 (cond
8188 ;; If first headline in file, promote to top-level.
8189 ((= prev-level 0)
8190 (loop repeat (/ (- cur-level 1) (org-level-increment))
8191 do (org-do-promote)))
8192 ;; If same level as prev, demote one.
8193 ((= prev-level cur-level)
8194 (org-do-demote))
8195 ;; If parent is top-level, promote to top level if not already.
8196 ((= prev-level 1)
8197 (loop repeat (/ (- cur-level 1) (org-level-increment))
8198 do (org-do-promote)))
8199 ;; If top-level, return to prev-level.
8200 ((= cur-level 1)
8201 (loop repeat (/ (- prev-level 1) (org-level-increment))
8202 do (org-do-demote)))
8203 ;; If less than prev-level, promote one.
8204 ((< cur-level prev-level)
8205 (org-do-promote))
8206 ;; If deeper than prev-level, promote until higher than
8207 ;; prev-level.
8208 ((> cur-level prev-level)
8209 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8210 do (org-do-promote))))
8211 t))))
8213 (defun org-map-tree (fun)
8214 "Call FUN for every heading underneath the current one."
8215 (org-back-to-heading)
8216 (let ((level (funcall outline-level)))
8217 (save-excursion
8218 (funcall fun)
8219 (while (and (progn
8220 (outline-next-heading)
8221 (> (funcall outline-level) level))
8222 (not (eobp)))
8223 (funcall fun)))))
8225 (defun org-map-region (fun beg end)
8226 "Call FUN for every heading between BEG and END."
8227 (let ((org-ignore-region t))
8228 (save-excursion
8229 (setq end (copy-marker end))
8230 (goto-char beg)
8231 (if (and (re-search-forward org-outline-regexp-bol nil t)
8232 (< (point) end))
8233 (funcall fun))
8234 (while (and (progn
8235 (outline-next-heading)
8236 (< (point) end))
8237 (not (eobp)))
8238 (funcall fun)))))
8240 (defun org-fixup-indentation (diff)
8241 "Change the indentation in the current entry by DIFF.
8243 DIFF is an integer. Indentation is done according to the
8244 following rules:
8246 - Planning information and property drawers are always indented
8247 according to the new level of the headline;
8249 - Footnote definitions and their contents are ignored;
8251 - Inlinetasks' boundaries are not shifted;
8253 - Empty lines are ignored;
8255 - Other lines' indentation are shifted by DIFF columns, unless
8256 it would introduce a structural change in the document, in
8257 which case no shifting is done at all.
8259 Assume point is at a heading or an inlinetask beginning."
8260 (org-with-wide-buffer
8261 (narrow-to-region (line-beginning-position)
8262 (save-excursion
8263 (if (org-with-limited-levels (org-at-heading-p))
8264 (org-with-limited-levels (outline-next-heading))
8265 (org-inlinetask-goto-end))
8266 (point)))
8267 (forward-line)
8268 ;; Indent properly planning info and property drawer.
8269 (when (org-looking-at-p org-planning-line-re)
8270 (org-indent-line)
8271 (forward-line))
8272 (when (looking-at org-property-drawer-re)
8273 (goto-char (match-end 0))
8274 (forward-line)
8275 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8276 (catch 'no-shift
8277 (when (zerop diff) (throw 'no-shift nil))
8278 ;; If DIFF is negative, first check if a shift is possible at all
8279 ;; (e.g., it doesn't break structure). This can only happen if
8280 ;; some contents are not properly indented.
8281 (let ((case-fold-search t))
8282 (when (< diff 0)
8283 (let ((diff (- diff))
8284 (forbidden-re (concat org-outline-regexp
8285 "\\|"
8286 (substring org-footnote-definition-re 1))))
8287 (save-excursion
8288 (while (not (eobp))
8289 (cond
8290 ((org-looking-at-p "[ \t]*$") (forward-line))
8291 ((and (org-looking-at-p org-footnote-definition-re)
8292 (let ((e (org-element-at-point)))
8293 (and (eq (org-element-type e) 'footnote-definition)
8294 (goto-char (org-element-property :end e))))))
8295 ((org-looking-at-p org-outline-regexp) (forward-line))
8296 ;; Give up if shifting would move before column 0 or
8297 ;; if it would introduce a headline or a footnote
8298 ;; definition.
8300 (skip-chars-forward " \t")
8301 (let ((ind (current-column)))
8302 (when (or (< ind diff)
8303 (and (= ind diff) (org-looking-at-p forbidden-re)))
8304 (throw 'no-shift nil)))
8305 ;; Ignore contents of example blocks and source
8306 ;; blocks if their indentation is meant to be
8307 ;; preserved. Jump to block's closing line.
8308 (beginning-of-line)
8309 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8310 (let ((e (org-element-at-point)))
8311 (and (memq (org-element-type e)
8312 '(example-block src-block))
8313 (or org-src-preserve-indentation
8314 (org-element-property :preserve-indent e))
8315 (goto-char (org-element-property :end e))
8316 (progn (skip-chars-backward " \r\t\n")
8317 (beginning-of-line)
8318 t))))
8319 (forward-line))))))))
8320 ;; Shift lines but footnote definitions, inlinetasks boundaries
8321 ;; by DIFF. Also skip contents of source or example blocks
8322 ;; when indentation is meant to be preserved.
8323 (while (not (eobp))
8324 (cond
8325 ((and (org-looking-at-p org-footnote-definition-re)
8326 (let ((e (org-element-at-point)))
8327 (and (eq (org-element-type e) 'footnote-definition)
8328 (goto-char (org-element-property :end e))))))
8329 ((org-looking-at-p org-outline-regexp) (forward-line))
8330 ((org-looking-at-p "[ \t]*$") (forward-line))
8332 (org-indent-line-to (+ (org-get-indentation) diff))
8333 (beginning-of-line)
8334 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8335 (let ((e (org-element-at-point)))
8336 (and (memq (org-element-type e)
8337 '(example-block src-block))
8338 (or org-src-preserve-indentation
8339 (org-element-property :preserve-indent e))
8340 (goto-char (org-element-property :end e))
8341 (progn (skip-chars-backward " \r\t\n")
8342 (beginning-of-line)
8343 t))))
8344 (forward-line)))))))))
8346 (defun org-convert-to-odd-levels ()
8347 "Convert an org-mode file with all levels allowed to one with odd levels.
8348 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8349 level 5 etc."
8350 (interactive)
8351 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8352 (let ((outline-level 'org-outline-level)
8353 (org-odd-levels-only nil) n)
8354 (save-excursion
8355 (goto-char (point-min))
8356 (while (re-search-forward "^\\*\\*+ " nil t)
8357 (setq n (- (length (match-string 0)) 2))
8358 (while (>= (setq n (1- n)) 0)
8359 (org-demote))
8360 (end-of-line 1))))))
8362 (defun org-convert-to-oddeven-levels ()
8363 "Convert an org-mode file with only odd levels to one with odd/even levels.
8364 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8365 file contains a section with an even level, conversion would
8366 destroy the structure of the file. An error is signaled in this
8367 case."
8368 (interactive)
8369 (goto-char (point-min))
8370 ;; First check if there are no even levels
8371 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8372 (org-show-set-visibility 'canonical)
8373 (error "Not all levels are odd in this file. Conversion not possible"))
8374 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8375 (let ((outline-regexp org-outline-regexp)
8376 (outline-level 'org-outline-level)
8377 (org-odd-levels-only nil) n)
8378 (save-excursion
8379 (goto-char (point-min))
8380 (while (re-search-forward "^\\*\\*+ " nil t)
8381 (setq n (/ (1- (length (match-string 0))) 2))
8382 (while (>= (setq n (1- n)) 0)
8383 (org-promote))
8384 (end-of-line 1))))))
8386 (defun org-tr-level (n)
8387 "Make N odd if required."
8388 (if org-odd-levels-only (1+ (/ n 2)) n))
8390 ;;; Vertical tree motion, cutting and pasting of subtrees
8392 (defun org-move-subtree-up (&optional arg)
8393 "Move the current subtree up past ARG headlines of the same level."
8394 (interactive "p")
8395 (org-move-subtree-down (- (prefix-numeric-value arg))))
8397 (defun org-move-subtree-down (&optional arg)
8398 "Move the current subtree down past ARG headlines of the same level."
8399 (interactive "p")
8400 (setq arg (prefix-numeric-value arg))
8401 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8402 'org-get-last-sibling))
8403 (ins-point (make-marker))
8404 (cnt (abs arg))
8405 (col (current-column))
8406 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8407 ;; Select the tree
8408 (org-back-to-heading)
8409 (setq beg0 (point))
8410 (save-excursion
8411 (setq ne-beg (org-back-over-empty-lines))
8412 (setq beg (point)))
8413 (save-match-data
8414 (save-excursion (outline-end-of-heading)
8415 (setq folded (outline-invisible-p)))
8416 (progn (org-end-of-subtree nil t)
8417 (unless (eobp) (backward-char))))
8418 (outline-next-heading)
8419 (setq ne-end (org-back-over-empty-lines))
8420 (setq end (point))
8421 (goto-char beg0)
8422 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8423 ;; include less whitespace
8424 (save-excursion
8425 (goto-char beg)
8426 (forward-line (- ne-beg ne-end))
8427 (setq beg (point))))
8428 ;; Find insertion point, with error handling
8429 (while (> cnt 0)
8430 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8431 (progn (goto-char beg0)
8432 (user-error "Cannot move past superior level or buffer limit")))
8433 (setq cnt (1- cnt)))
8434 (if (> arg 0)
8435 ;; Moving forward - still need to move over subtree
8436 (progn (org-end-of-subtree t t)
8437 (save-excursion
8438 (org-back-over-empty-lines)
8439 (or (bolp) (newline)))))
8440 (setq ne-ins (org-back-over-empty-lines))
8441 (move-marker ins-point (point))
8442 (setq txt (buffer-substring beg end))
8443 (org-save-markers-in-region beg end)
8444 (delete-region beg end)
8445 (org-remove-empty-overlays-at beg)
8446 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8447 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8448 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8449 (let ((bbb (point)))
8450 (insert-before-markers txt)
8451 (org-reinstall-markers-in-region bbb)
8452 (move-marker ins-point bbb))
8453 (or (bolp) (insert "\n"))
8454 (setq ins-end (point))
8455 (goto-char ins-point)
8456 (org-skip-whitespace)
8457 (when (and (< arg 0)
8458 (org-first-sibling-p)
8459 (> ne-ins ne-beg))
8460 ;; Move whitespace back to beginning
8461 (save-excursion
8462 (goto-char ins-end)
8463 (let ((kill-whole-line t))
8464 (kill-line (- ne-ins ne-beg)) (point)))
8465 (insert (make-string (- ne-ins ne-beg) ?\n)))
8466 (move-marker ins-point nil)
8467 (if folded
8468 (hide-subtree)
8469 (org-show-entry)
8470 (show-children)
8471 (org-cycle-hide-drawers 'children))
8472 (org-clean-visibility-after-subtree-move)
8473 ;; move back to the initial column we were at
8474 (move-to-column col)))
8476 (defvar org-subtree-clip ""
8477 "Clipboard for cut and paste of subtrees.
8478 This is actually only a copy of the kill, because we use the normal kill
8479 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8481 (defvar org-subtree-clip-folded nil
8482 "Was the last copied subtree folded?
8483 This is used to fold the tree back after pasting.")
8485 (defun org-cut-subtree (&optional n)
8486 "Cut the current subtree into the clipboard.
8487 With prefix arg N, cut this many sequential subtrees.
8488 This is a short-hand for marking the subtree and then cutting it."
8489 (interactive "p")
8490 (org-copy-subtree n 'cut))
8492 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8493 "Copy the current subtree it in the clipboard.
8494 With prefix arg N, copy this many sequential subtrees.
8495 This is a short-hand for marking the subtree and then copying it.
8496 If CUT is non-nil, actually cut the subtree.
8497 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8498 of some markers in the region, even if CUT is non-nil. This is
8499 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8500 (interactive "p")
8501 (let (beg end folded (beg0 (point)))
8502 (if (org-called-interactively-p 'any)
8503 (org-back-to-heading nil) ; take what looks like a subtree
8504 (org-back-to-heading t)) ; take what is really there
8505 (setq beg (point))
8506 (skip-chars-forward " \t\r\n")
8507 (save-match-data
8508 (if nosubtrees
8509 (outline-next-heading)
8510 (save-excursion (outline-end-of-heading)
8511 (setq folded (outline-invisible-p)))
8512 (ignore-errors (org-forward-heading-same-level (1- n) t))
8513 (org-end-of-subtree t t)))
8514 ;; Include the end of an inlinetask
8515 (when (and (featurep 'org-inlinetask)
8516 (looking-at-p (concat (org-inlinetask-outline-regexp)
8517 "END[ \t]*$")))
8518 (end-of-line))
8519 (setq end (point))
8520 (goto-char beg0)
8521 (when (> end beg)
8522 (setq org-subtree-clip-folded folded)
8523 (when (or cut force-store-markers)
8524 (org-save-markers-in-region beg end))
8525 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8526 (setq org-subtree-clip (current-kill 0))
8527 (message "%s: Subtree(s) with %d characters"
8528 (if cut "Cut" "Copied")
8529 (length org-subtree-clip)))))
8531 (defun org-paste-subtree (&optional level tree for-yank remove)
8532 "Paste the clipboard as a subtree, with modification of headline level.
8533 The entire subtree is promoted or demoted in order to match a new headline
8534 level.
8536 If the cursor is at the beginning of a headline, the same level as
8537 that headline is used to paste the tree.
8539 If not, the new level is derived from the *visible* headings
8540 before and after the insertion point, and taken to be the inferior headline
8541 level of the two. So if the previous visible heading is level 3 and the
8542 next is level 4 (or vice versa), level 4 will be used for insertion.
8543 This makes sure that the subtree remains an independent subtree and does
8544 not swallow low level entries.
8546 You can also force a different level, either by using a numeric prefix
8547 argument, or by inserting the heading marker by hand. For example, if the
8548 cursor is after \"*****\", then the tree will be shifted to level 5.
8550 If optional TREE is given, use this text instead of the kill ring.
8552 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8553 move back over whitespace before inserting, and move point to the end of
8554 the inserted text when done.
8556 When REMOVE is non-nil, remove the subtree from the clipboard."
8557 (interactive "P")
8558 (setq tree (or tree (and kill-ring (current-kill 0))))
8559 (unless (org-kill-is-subtree-p tree)
8560 (user-error "%s"
8561 (substitute-command-keys
8562 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8563 (org-with-limited-levels
8564 (let* ((visp (not (outline-invisible-p)))
8565 (txt tree)
8566 (^re_ "\\(\\*+\\)[ \t]*")
8567 (old-level (if (string-match org-outline-regexp-bol txt)
8568 (- (match-end 0) (match-beginning 0) 1)
8569 -1))
8570 (force-level (cond (level (prefix-numeric-value level))
8571 ((and (looking-at "[ \t]*$")
8572 (string-match
8573 "^\\*+$" (buffer-substring
8574 (point-at-bol) (point))))
8575 (- (match-end 0) (match-beginning 0)))
8576 ((and (bolp)
8577 (looking-at org-outline-regexp))
8578 (- (match-end 0) (point) 1))))
8579 (previous-level (save-excursion
8580 (condition-case nil
8581 (progn
8582 (outline-previous-visible-heading 1)
8583 (if (looking-at ^re_)
8584 (- (match-end 0) (match-beginning 0) 1)
8586 (error 1))))
8587 (next-level (save-excursion
8588 (condition-case nil
8589 (progn
8590 (or (looking-at org-outline-regexp)
8591 (outline-next-visible-heading 1))
8592 (if (looking-at ^re_)
8593 (- (match-end 0) (match-beginning 0) 1)
8595 (error 1))))
8596 (new-level (or force-level (max previous-level next-level)))
8597 (shift (if (or (= old-level -1)
8598 (= new-level -1)
8599 (= old-level new-level))
8601 (- new-level old-level)))
8602 (delta (if (> shift 0) -1 1))
8603 (func (if (> shift 0) 'org-demote 'org-promote))
8604 (org-odd-levels-only nil)
8605 beg end newend)
8606 ;; Remove the forced level indicator
8607 (if force-level
8608 (delete-region (point-at-bol) (point)))
8609 ;; Paste
8610 (beginning-of-line (if (bolp) 1 2))
8611 (setq beg (point))
8612 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8613 (insert-before-markers txt)
8614 (unless (string-match "\n\\'" txt) (insert "\n"))
8615 (setq newend (point))
8616 (org-reinstall-markers-in-region beg)
8617 (setq end (point))
8618 (goto-char beg)
8619 (skip-chars-forward " \t\n\r")
8620 (setq beg (point))
8621 (if (and (outline-invisible-p) visp)
8622 (save-excursion (outline-show-heading)))
8623 ;; Shift if necessary
8624 (unless (= shift 0)
8625 (save-restriction
8626 (narrow-to-region beg end)
8627 (while (not (= shift 0))
8628 (org-map-region func (point-min) (point-max))
8629 (setq shift (+ delta shift)))
8630 (goto-char (point-min))
8631 (setq newend (point-max))))
8632 (when (or (org-called-interactively-p 'interactive) for-yank)
8633 (message "Clipboard pasted as level %d subtree" new-level))
8634 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8635 kill-ring
8636 (eq org-subtree-clip (current-kill 0))
8637 org-subtree-clip-folded)
8638 ;; The tree was folded before it was killed/copied
8639 (hide-subtree))
8640 (and for-yank (goto-char newend))
8641 (and remove (setq kill-ring (cdr kill-ring))))))
8643 (defun org-kill-is-subtree-p (&optional txt)
8644 "Check if the current kill is an outline subtree, or a set of trees.
8645 Returns nil if kill does not start with a headline, or if the first
8646 headline level is not the largest headline level in the tree.
8647 So this will actually accept several entries of equal levels as well,
8648 which is OK for `org-paste-subtree'.
8649 If optional TXT is given, check this string instead of the current kill."
8650 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8651 (re (org-get-limited-outline-regexp))
8652 (^re (concat "^" re))
8653 (start-level (and kill
8654 (string-match
8655 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8656 kill)
8657 (- (match-end 2) (match-beginning 2) 1)))
8658 (start (1+ (or (match-beginning 2) -1))))
8659 (if (not start-level)
8660 (progn
8661 nil) ;; does not even start with a heading
8662 (catch 'exit
8663 (while (setq start (string-match ^re kill (1+ start)))
8664 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8665 (throw 'exit nil)))
8666 t))))
8668 (defvar org-markers-to-move nil
8669 "Markers that should be moved with a cut-and-paste operation.
8670 Those markers are stored together with their positions relative to
8671 the start of the region.")
8673 (defun org-save-markers-in-region (beg end)
8674 "Check markers in region.
8675 If these markers are between BEG and END, record their position relative
8676 to BEG, so that after moving the block of text, we can put the markers back
8677 into place.
8678 This function gets called just before an entry or tree gets cut from the
8679 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8680 called immediately, to move the markers with the entries."
8681 (setq org-markers-to-move nil)
8682 (when (featurep 'org-clock)
8683 (org-clock-save-markers-for-cut-and-paste beg end))
8684 (when (featurep 'org-agenda)
8685 (org-agenda-save-markers-for-cut-and-paste beg end)))
8687 (defun org-check-and-save-marker (marker beg end)
8688 "Check if MARKER is between BEG and END.
8689 If yes, remember the marker and the distance to BEG."
8690 (when (and (marker-buffer marker)
8691 (equal (marker-buffer marker) (current-buffer)))
8692 (if (and (>= marker beg) (< marker end))
8693 (push (cons marker (- marker beg)) org-markers-to-move))))
8695 (defun org-reinstall-markers-in-region (beg)
8696 "Move all remembered markers to their position relative to BEG."
8697 (mapc (lambda (x)
8698 (move-marker (car x) (+ beg (cdr x))))
8699 org-markers-to-move)
8700 (setq org-markers-to-move nil))
8702 (defun org-narrow-to-subtree ()
8703 "Narrow buffer to the current subtree."
8704 (interactive)
8705 (save-excursion
8706 (save-match-data
8707 (org-with-limited-levels
8708 (narrow-to-region
8709 (progn (org-back-to-heading t) (point))
8710 (progn (org-end-of-subtree t t)
8711 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8712 (point)))))))
8714 (defun org-narrow-to-block ()
8715 "Narrow buffer to the current block."
8716 (interactive)
8717 (let* ((case-fold-search t)
8718 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8719 "^[ \t]*#\\+end_.*")))
8720 (if blockp
8721 (narrow-to-region (car blockp) (cdr blockp))
8722 (user-error "Not in a block"))))
8724 (defun org-clone-subtree-with-time-shift (n &optional shift)
8725 "Clone the task (subtree) at point N times.
8726 The clones will be inserted as siblings.
8728 In interactive use, the user will be prompted for the number of
8729 clones to be produced. If the entry has a timestamp, the user
8730 will also be prompted for a time shift, which may be a repeater
8731 as used in time stamps, for example `+3d'. To disable this,
8732 you can call the function with a universal prefix argument.
8734 When a valid repeater is given and the entry contains any time
8735 stamps, the clones will become a sequence in time, with time
8736 stamps in the subtree shifted for each clone produced. If SHIFT
8737 is nil or the empty string, time stamps will be left alone. The
8738 ID property of the original subtree is removed.
8740 If the original subtree did contain time stamps with a repeater,
8741 the following will happen:
8742 - the repeater will be removed in each clone
8743 - an additional clone will be produced, with the current, unshifted
8744 date(s) in the entry.
8745 - the original entry will be placed *after* all the clones, with
8746 repeater intact.
8747 - the start days in the repeater in the original entry will be shifted
8748 to past the last clone.
8749 In this way you can spell out a number of instances of a repeating task,
8750 and still retain the repeater to cover future instances of the task."
8751 (interactive "nNumber of clones to produce: ")
8752 (let ((shift
8753 (or shift
8754 (if (and (not (equal current-prefix-arg '(4)))
8755 (save-excursion
8756 (re-search-forward org-ts-regexp-both
8757 (save-excursion
8758 (org-end-of-subtree t)
8759 (point)) t)))
8760 (read-from-minibuffer
8761 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8762 ""))) ;; No time shift
8763 (n-no-remove -1)
8764 (drawer-re org-drawer-regexp)
8765 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8766 beg end template task idprop
8767 shift-n shift-what doshift nmin nmax)
8768 (if (not (and (integerp n) (> n 0)))
8769 (user-error "Invalid number of replications %s" n))
8770 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8771 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8772 shift)))
8773 (user-error "Invalid shift specification %s" shift))
8774 (when doshift
8775 (setq shift-n (string-to-number (match-string 1 shift))
8776 shift-what (cdr (assoc (match-string 2 shift)
8777 '(("d" . day) ("w" . week)
8778 ("m" . month) ("y" . year))))))
8779 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8780 (setq nmin 1 nmax n)
8781 (org-back-to-heading t)
8782 (setq beg (point))
8783 (setq idprop (org-entry-get nil "ID"))
8784 (org-end-of-subtree t t)
8785 (or (bolp) (insert "\n"))
8786 (setq end (point))
8787 (setq template (buffer-substring beg end))
8788 (when (and doshift
8789 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8790 (delete-region beg end)
8791 (setq end beg)
8792 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8793 (goto-char end)
8794 (loop for n from nmin to nmax do
8795 ;; prepare clone
8796 (with-temp-buffer
8797 (insert template)
8798 (org-mode)
8799 (goto-char (point-min))
8800 (org-show-subtree)
8801 (and idprop (if org-clone-delete-id
8802 (org-entry-delete nil "ID")
8803 (org-id-get-create t)))
8804 (unless (= n 0)
8805 (while (re-search-forward org-clock-re nil t)
8806 (kill-whole-line))
8807 (goto-char (point-min))
8808 (while (re-search-forward drawer-re nil t)
8809 (org-remove-empty-drawer-at (point))))
8810 (goto-char (point-min))
8811 (when doshift
8812 (while (re-search-forward org-ts-regexp-both nil t)
8813 (org-timestamp-change (* n shift-n) shift-what))
8814 (unless (= n n-no-remove)
8815 (goto-char (point-min))
8816 (while (re-search-forward org-ts-regexp nil t)
8817 (save-excursion
8818 (goto-char (match-beginning 0))
8819 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8820 (delete-region (match-beginning 1) (match-end 1)))))))
8821 (setq task (buffer-string)))
8822 (insert task))
8823 (goto-char beg)))
8825 ;;; Outline Sorting
8827 (defun org-sort (with-case)
8828 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8829 Optional argument WITH-CASE means sort case-sensitively."
8830 (interactive "P")
8831 (cond
8832 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8833 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8835 (org-call-with-arg 'org-sort-entries with-case))))
8837 (defun org-sort-remove-invisible (s)
8838 "Remove invisible links from string S."
8839 (remove-text-properties 0 (length s) org-rm-props s)
8840 (while (string-match org-bracket-link-regexp s)
8841 (setq s (replace-match (if (match-end 2)
8842 (match-string 3 s)
8843 (match-string 1 s)) t t s)))
8844 (let ((st (format " %s " s)))
8845 (while (string-match org-emph-re st)
8846 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8847 (setq s (substring st 1 -1)))
8850 (defvar org-priority-regexp) ; defined later in the file
8852 (defvar org-after-sorting-entries-or-items-hook nil
8853 "Hook that is run after a bunch of entries or items have been sorted.
8854 When children are sorted, the cursor is in the parent line when this
8855 hook gets called. When a region or a plain list is sorted, the cursor
8856 will be in the first entry of the sorted region/list.")
8858 (defun org-sort-entries
8859 (&optional with-case sorting-type getkey-func compare-func property)
8860 "Sort entries on a certain level of an outline tree.
8861 If there is an active region, the entries in the region are sorted.
8862 Else, if the cursor is before the first entry, sort the top-level items.
8863 Else, the children of the entry at point are sorted.
8865 Sorting can be alphabetically, numerically, by date/time as given by
8866 a time stamp, by a property, by priority order, or by a custom function.
8868 The command prompts for the sorting type unless it has been given to the
8869 function through the SORTING-TYPE argument, which needs to be a character,
8870 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8871 the precise meaning of each character:
8873 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8874 c By creation time, which is assumed to be the first inactive time stamp
8875 at the beginning of a line.
8876 d By deadline date/time.
8877 k By clocking time.
8878 n Numerically, by converting the beginning of the entry/item to a number.
8879 o By order of TODO keywords.
8880 p By priority according to the cookie.
8881 r By the value of a property.
8882 s By scheduled date/time.
8883 t By date/time, either the first active time stamp in the entry, or, if
8884 none exist, by the first inactive one.
8886 Capital letters will reverse the sort order.
8888 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8889 called with point at the beginning of the record. It must return either
8890 a string or a number that should serve as the sorting key for that record.
8892 Comparing entries ignores case by default. However, with an optional argument
8893 WITH-CASE, the sorting considers case as well.
8895 Sorting is done against the visible part of the headlines, it ignores hidden
8896 links.
8898 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8899 (interactive "P")
8900 (let ((case-func (if with-case 'identity 'downcase))
8901 (cmstr
8902 ;; The clock marker is lost when using `sort-subr', let's
8903 ;; store the clocking string.
8904 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8905 (save-excursion
8906 (goto-char org-clock-marker)
8907 (looking-back "^.*") (match-string-no-properties 0))))
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))) contexts))
9358 (a alist) c r s)
9359 ;; loop over all commands or templates
9360 (while (setq c (pop a))
9361 (let (vrules repl)
9362 (cond
9363 ((not (assoc (car c) contexts))
9364 (push c r))
9365 ((and (assoc (car c) contexts)
9366 (setq vrules (org-contextualize-validate-key
9367 (car c) contexts)))
9368 (mapc (lambda (vr)
9369 (when (not (equal (car vr) (cadr vr)))
9370 (setq repl vr))) vrules)
9371 (if (not repl) (push c r)
9372 (push (cadr repl) s)
9373 (push
9374 (cons (car c)
9375 (cdr (or (assoc (cadr repl) alist)
9376 (error "Undefined key `%s' as contextual replacement for `%s'"
9377 (cadr repl) (car c)))))
9378 r))))))
9379 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9380 (delq
9382 (delete-dups
9383 (mapcar (lambda (x)
9384 (let ((tpl (car x)))
9385 (when (not (delq
9387 (mapcar (lambda(y)
9388 (equal y tpl)) s))) x)))
9389 (reverse r))))))
9391 (defun org-contextualize-validate-key (key contexts)
9392 "Check CONTEXTS for agenda or capture KEY."
9393 (let (r rr res)
9394 (while (setq r (pop contexts))
9395 (mapc
9396 (lambda (rr)
9397 (when
9398 (and (equal key (car r))
9399 (if (functionp rr) (funcall rr)
9400 (or (and (eq (car rr) 'in-file)
9401 (buffer-file-name)
9402 (string-match (cdr rr) (buffer-file-name)))
9403 (and (eq (car rr) 'in-mode)
9404 (string-match (cdr rr) (symbol-name major-mode)))
9405 (and (eq (car rr) 'in-buffer)
9406 (string-match (cdr rr) (buffer-name)))
9407 (when (and (eq (car rr) 'not-in-file)
9408 (buffer-file-name))
9409 (not (string-match (cdr rr) (buffer-file-name))))
9410 (when (eq (car rr) 'not-in-mode)
9411 (not (string-match (cdr rr) (symbol-name major-mode))))
9412 (when (eq (car rr) 'not-in-buffer)
9413 (not (string-match (cdr rr) (buffer-name)))))))
9414 (push r res)))
9415 (car (last r))))
9416 (delete-dups (delq nil res))))
9418 (defun org-context-p (&rest contexts)
9419 "Check if local context is any of CONTEXTS.
9420 Possible values in the list of contexts are `table', `headline', and `item'."
9421 (let ((pos (point)))
9422 (goto-char (point-at-bol))
9423 (prog1 (or (and (memq 'table contexts)
9424 (looking-at "[ \t]*|"))
9425 (and (memq 'headline contexts)
9426 (looking-at org-outline-regexp))
9427 (and (memq 'item contexts)
9428 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9429 (and (memq 'item-body contexts)
9430 (org-in-item-p)))
9431 (goto-char pos))))
9433 (defun org-get-local-variables ()
9434 "Return a list of all local variables in an Org mode buffer."
9435 (let (varlist)
9436 (with-current-buffer (get-buffer-create "*Org tmp*")
9437 (erase-buffer)
9438 (org-mode)
9439 (setq varlist (buffer-local-variables)))
9440 (kill-buffer "*Org tmp*")
9441 (delq nil
9442 (mapcar
9443 (lambda (x)
9444 (setq x
9445 (if (symbolp x)
9446 (list x)
9447 (list (car x) (cdr x))))
9448 (if (and (not (get (car x) 'org-state))
9449 (string-match
9450 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9451 (symbol-name (car x))))
9452 x nil))
9453 varlist))))
9455 (defun org-clone-local-variables (from-buffer &optional regexp)
9456 "Clone local variables from FROM-BUFFER.
9457 Optional argument REGEXP selects variables to clone."
9458 (mapc
9459 (lambda (pair)
9460 (and (symbolp (car pair))
9461 (or (null regexp)
9462 (string-match regexp (symbol-name (car pair))))
9463 (set (make-local-variable (car pair))
9464 (cdr pair))))
9465 (buffer-local-variables from-buffer)))
9467 ;;;###autoload
9468 (defun org-run-like-in-org-mode (cmd)
9469 "Run a command, pretending that the current buffer is in Org-mode.
9470 This will temporarily bind local variables that are typically bound in
9471 Org-mode to the values they have in Org-mode, and then interactively
9472 call CMD."
9473 (org-load-modules-maybe)
9474 (unless org-local-vars
9475 (setq org-local-vars (org-get-local-variables)))
9476 (let (binds)
9477 (dolist (var org-local-vars)
9478 (when (or (not (boundp (car var)))
9479 (eq (symbol-value (car var))
9480 (default-value (car var))))
9481 (push (list (car var) `(quote ,(cadr var))) binds)))
9482 (eval `(let ,binds
9483 (call-interactively (quote ,cmd))))))
9485 (defun org-get-category (&optional pos force-refresh)
9486 "Get the category applying to position POS."
9487 (save-match-data
9488 (if force-refresh (org-refresh-category-properties))
9489 (let ((pos (or pos (point))))
9490 (or (get-text-property pos 'org-category)
9491 (progn (org-refresh-category-properties)
9492 (get-text-property pos 'org-category))))))
9494 ;;; Refresh properties
9496 (defun org-refresh-properties (dprop tprop)
9497 "Refresh buffer text properties.
9498 DPROP is the drawer property and TPROP is either the
9499 corresponding text property to set, or an alist with each element
9500 being a text property (as a symbol) and a function to apply to
9501 the value of the drawer property."
9502 (let ((case-fold-search t)
9503 (inhibit-read-only t))
9504 (org-with-silent-modifications
9505 (save-excursion
9506 (save-restriction
9507 (widen)
9508 (goto-char (point-min))
9509 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9510 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9512 (defun org-refresh-property (tprop p)
9513 "Refresh the buffer text property TPROP from the drawer property P.
9514 The refresh happens only for the current tree (not subtree)."
9515 (unless (org-before-first-heading-p)
9516 (save-excursion
9517 (org-back-to-heading t)
9518 (if (symbolp tprop)
9519 ;; TPROP is a text property symbol
9520 (put-text-property
9521 (point) (or (outline-next-heading) (point-max)) tprop p)
9522 ;; TPROP is an alist with (properties . function) elements
9523 (dolist (al tprop)
9524 (save-excursion
9525 (put-text-property
9526 (line-beginning-position) (or (outline-next-heading) (point-max))
9527 (car al)
9528 (funcall (cdr al) p))))))))
9530 (defun org-refresh-category-properties ()
9531 "Refresh category text properties in the buffer."
9532 (let ((case-fold-search t)
9533 (inhibit-read-only t)
9534 (default-category
9535 (cond ((null org-category)
9536 (if buffer-file-name
9537 (file-name-sans-extension
9538 (file-name-nondirectory buffer-file-name))
9539 "???"))
9540 ((symbolp org-category) (symbol-name org-category))
9541 (t org-category))))
9542 (org-with-silent-modifications
9543 (org-with-wide-buffer
9544 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9545 ;; This is the default category for the buffer. If none is
9546 ;; found, fall-back to `org-category' or buffer file name.
9547 (put-text-property
9548 (point-min) (point-max)
9549 'org-category
9550 (catch 'buffer-category
9551 (goto-char (point-max))
9552 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9553 (let ((element (org-element-at-point)))
9554 (when (eq (org-element-type element) 'keyword)
9555 (throw 'buffer-category
9556 (org-element-property :value element)))))
9557 default-category))
9558 ;; Set sub-tree specific categories.
9559 (goto-char (point-min))
9560 (let ((regexp (org-re-property "CATEGORY")))
9561 (while (re-search-forward regexp nil t)
9562 (let ((value (org-match-string-no-properties 3)))
9563 (when (org-at-property-p)
9564 (put-text-property
9565 (save-excursion (org-back-to-heading t) (point))
9566 (save-excursion (org-end-of-subtree t t) (point))
9567 'org-category
9568 value)))))))))
9570 (defun org-refresh-stats-properties ()
9571 "Refresh stats text properties in the buffer."
9572 (let (stats)
9573 (org-with-silent-modifications
9574 (save-excursion
9575 (save-restriction
9576 (widen)
9577 (goto-char (point-min))
9578 (while (re-search-forward
9579 (concat org-outline-regexp-bol ".*"
9580 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9581 nil t)
9582 (setq stats (cond ((equal (match-string 3) "0") 0)
9583 ((match-string 2)
9584 (/ (* (string-to-number (match-string 2)) 100)
9585 (string-to-number (match-string 3))))
9586 (t (string-to-number (match-string 1)))))
9587 (org-back-to-heading t)
9588 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9589 'org-stats stats)))))))
9591 (defun org-refresh-effort-properties ()
9592 "Refresh effort properties"
9593 (org-refresh-properties
9594 org-effort-property
9595 '((effort . identity)
9596 (effort-minutes . org-duration-string-to-minutes))))
9598 ;;;; Link Stuff
9600 ;;; Link abbreviations
9602 (defun org-link-expand-abbrev (link)
9603 "Apply replacements as defined in `org-link-abbrev-alist'."
9604 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9605 (let* ((key (match-string 1 link))
9606 (as (or (assoc key org-link-abbrev-alist-local)
9607 (assoc key org-link-abbrev-alist)))
9608 (tag (and (match-end 2) (match-string 3 link)))
9609 rpl)
9610 (if (not as)
9611 link
9612 (setq rpl (cdr as))
9613 (cond
9614 ((symbolp rpl) (funcall rpl tag))
9615 ((string-match "%(\\([^)]+\\))" rpl)
9616 (replace-match
9617 (save-match-data
9618 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9619 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9620 ((string-match "%h" rpl)
9621 (replace-match (url-hexify-string (or tag "")) t t rpl))
9622 (t (concat rpl tag)))))
9623 link))
9625 ;;; Storing and inserting links
9627 (defvar org-insert-link-history nil
9628 "Minibuffer history for links inserted with `org-insert-link'.")
9630 (defvar org-stored-links nil
9631 "Contains the links stored with `org-store-link'.")
9633 (defvar org-store-link-plist nil
9634 "Plist with info about the most recently link created with `org-store-link'.")
9636 (defvar org-link-protocols nil
9637 "Link protocols added to Org-mode using `org-add-link-type'.")
9639 (defvar org-store-link-functions nil
9640 "List of functions that are called to create and store a link.
9641 Each function will be called in turn until one returns a non-nil
9642 value. Each function should check if it is responsible for creating
9643 this link (for example by looking at the major mode).
9644 If not, it must exit and return nil.
9645 If yes, it should return a non-nil value after a calling
9646 `org-store-link-props' with a list of properties and values.
9647 Special properties are:
9649 :type The link prefix, like \"http\". This must be given.
9650 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9651 This is obligatory as well.
9652 :description Optional default description for the second pair
9653 of brackets in an Org-mode link. The user can still change
9654 this when inserting this link into an Org-mode buffer.
9656 In addition to these, any additional properties can be specified
9657 and then used in capture templates.")
9659 (defun org-add-link-type (type &optional follow export)
9660 "Add TYPE to the list of `org-link-types'.
9661 Re-compute all regular expressions depending on `org-link-types'
9663 FOLLOW and EXPORT are two functions.
9665 FOLLOW should take the link path as the single argument and do whatever
9666 is necessary to follow the link, for example find a file or display
9667 a mail message.
9669 EXPORT should format the link path for export to one of the export formats.
9670 It should be a function accepting three arguments:
9672 path the path of the link, the text after the prefix (like \"http:\")
9673 desc the description of the link, if any
9674 format the export format, a symbol like `html' or `latex' or `ascii'.
9676 The function may use the FORMAT information to return different values
9677 depending on the format. The return value will be put literally into
9678 the exported file. If the return value is nil, this means Org should
9679 do what it normally does with links which do not have EXPORT defined.
9681 Org mode has a built-in default for exporting links. If you are happy with
9682 this default, there is no need to define an export function for the link
9683 type. For a simple example of an export function, see `org-bbdb.el'."
9684 (add-to-list 'org-link-types type t)
9685 (org-make-link-regexps)
9686 (org-element-update-syntax)
9687 (if (assoc type org-link-protocols)
9688 (setcdr (assoc type org-link-protocols) (list follow export))
9689 (push (list type follow export) org-link-protocols)))
9691 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9692 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9694 ;;;###autoload
9695 (defun org-store-link (arg)
9696 "\\<org-mode-map>Store an org-link to the current location.
9697 This link is added to `org-stored-links' and can later be inserted
9698 into an org-buffer with \\[org-insert-link].
9700 For some link types, a prefix arg is interpreted.
9701 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9702 For file links, arg negates `org-context-in-file-links'.
9704 A double prefix arg force skipping storing functions that are not
9705 part of Org's core.
9707 A triple prefix arg force storing a link for each line in the
9708 active region."
9709 (interactive "P")
9710 (org-load-modules-maybe)
9711 (if (and (equal arg '(64)) (org-region-active-p))
9712 (save-excursion
9713 (let ((end (region-end)))
9714 (goto-char (region-beginning))
9715 (set-mark (point))
9716 (while (< (point-at-eol) end)
9717 (move-end-of-line 1) (activate-mark)
9718 (let (current-prefix-arg)
9719 (call-interactively 'org-store-link))
9720 (move-beginning-of-line 2)
9721 (set-mark (point)))))
9722 (org-with-limited-levels
9723 (setq org-store-link-plist nil)
9724 (let (link cpltxt desc description search
9725 txt custom-id agenda-link sfuns sfunsn)
9726 (cond
9728 ;; Store a link using an external link type
9729 ((and (not (equal arg '(16)))
9730 (setq sfuns
9731 (delq
9732 nil (mapcar (lambda (f)
9733 (let (fs) (if (funcall f) (push f fs))))
9734 org-store-link-functions))
9735 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9736 (or (and (cdr sfuns)
9737 (funcall (intern
9738 (completing-read
9739 "Which function for creating the link? "
9740 sfunsn nil t (car sfunsn)))))
9741 (funcall (caar sfuns)))
9742 (setq link (plist-get org-store-link-plist :link)
9743 desc (or (plist-get org-store-link-plist
9744 :description) link))))
9746 ;; Store a link from a source code buffer
9747 ((org-src-edit-buffer-p)
9748 (let (label gc)
9749 (while (or (not label)
9750 (save-excursion
9751 (save-restriction
9752 (widen)
9753 (goto-char (point-min))
9754 (re-search-forward
9755 (regexp-quote (format org-coderef-label-format label))
9756 nil t))))
9757 (when label (message "Label exists already") (sit-for 2))
9758 (setq label (read-string "Code line label: " label)))
9759 (end-of-line 1)
9760 (setq link (format org-coderef-label-format label))
9761 (setq gc (- 79 (length link)))
9762 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9763 (insert link)
9764 (setq link (concat "(" label ")") desc nil)))
9766 ;; We are in the agenda, link to referenced location
9767 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9768 (let ((m (or (get-text-property (point) 'org-hd-marker)
9769 (get-text-property (point) 'org-marker))))
9770 (when m
9771 (org-with-point-at m
9772 (setq agenda-link
9773 (if (org-called-interactively-p 'any)
9774 (call-interactively 'org-store-link)
9775 (org-store-link nil)))))))
9777 ((eq major-mode 'calendar-mode)
9778 (let ((cd (calendar-cursor-to-date)))
9779 (setq link
9780 (format-time-string
9781 (car org-time-stamp-formats)
9782 (apply 'encode-time
9783 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9784 nil nil nil))))
9785 (org-store-link-props :type "calendar" :date cd)))
9787 ((eq major-mode 'help-mode)
9788 (setq link (concat "help:" (save-excursion
9789 (goto-char (point-min))
9790 (looking-at "^[^ ]+")
9791 (match-string 0))))
9792 (org-store-link-props :type "help"))
9794 ((eq major-mode 'w3-mode)
9795 (setq cpltxt (if (and (buffer-name)
9796 (not (string-match "Untitled" (buffer-name))))
9797 (buffer-name)
9798 (url-view-url t))
9799 link (url-view-url t))
9800 (org-store-link-props :type "w3" :url (url-view-url t)))
9802 ((eq major-mode 'image-mode)
9803 (setq cpltxt (concat "file:"
9804 (abbreviate-file-name buffer-file-name))
9805 link cpltxt)
9806 (org-store-link-props :type "image" :file buffer-file-name))
9808 ;; In dired, store a link to the file of the current line
9809 ((derived-mode-p 'dired-mode)
9810 (let ((file (dired-get-filename nil t)))
9811 (setq file (if file
9812 (abbreviate-file-name
9813 (expand-file-name (dired-get-filename nil t)))
9814 ;; otherwise, no file so use current directory.
9815 default-directory))
9816 (setq cpltxt (concat "file:" file)
9817 link cpltxt)))
9819 ((setq search (run-hook-with-args-until-success
9820 'org-create-file-search-functions))
9821 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9822 "::" search))
9823 (setq cpltxt (or description link)))
9825 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9826 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9827 (cond
9828 ;; Store a link using the target at point
9829 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9830 (setq cpltxt
9831 (concat "file:"
9832 (abbreviate-file-name
9833 (buffer-file-name (buffer-base-buffer)))
9834 "::" (match-string 1))
9835 link cpltxt))
9836 ((and (featurep 'org-id)
9837 (or (eq org-id-link-to-org-use-id t)
9838 (and (org-called-interactively-p 'any)
9839 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9840 (and (eq org-id-link-to-org-use-id
9841 'create-if-interactive-and-no-custom-id)
9842 (not custom-id))))
9843 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9844 ;; Store a link using the ID at point
9845 (setq link (condition-case nil
9846 (prog1 (org-id-store-link)
9847 (setq desc (or (plist-get org-store-link-plist
9848 :description)
9849 "")))
9850 (error
9851 ;; Probably before first headline, link only to file
9852 (concat "file:"
9853 (abbreviate-file-name
9854 (buffer-file-name (buffer-base-buffer))))))))
9856 ;; Just link to current headline
9857 (setq cpltxt (concat "file:"
9858 (abbreviate-file-name
9859 (buffer-file-name (buffer-base-buffer)))))
9860 ;; Add a context search string
9861 (when (org-xor org-context-in-file-links arg)
9862 (let* ((ee (org-element-at-point))
9863 (et (org-element-type ee))
9864 (ev (plist-get (cadr ee) :value))
9865 (ek (plist-get (cadr ee) :key))
9866 (eok (and (stringp ek) (string-match "name" ek))))
9867 (setq txt (cond
9868 ((org-at-heading-p) nil)
9869 ((and (eq et 'keyword) eok) ev)
9870 ((org-region-active-p)
9871 (buffer-substring (region-beginning) (region-end)))))
9872 (when (or (null txt) (string-match "\\S-" txt))
9873 (setq cpltxt
9874 (concat cpltxt "::"
9875 (condition-case nil
9876 (org-make-org-heading-search-string txt)
9877 (error "")))
9878 desc (or (and (eq et 'keyword) eok ev)
9879 (nth 4 (ignore-errors (org-heading-components)))
9880 "NONE")))))
9881 (if (string-match "::\\'" cpltxt)
9882 (setq cpltxt (substring cpltxt 0 -2)))
9883 (setq link cpltxt))))
9885 ((buffer-file-name (buffer-base-buffer))
9886 ;; Just link to this file here.
9887 (setq cpltxt (concat "file:"
9888 (abbreviate-file-name
9889 (buffer-file-name (buffer-base-buffer)))))
9890 ;; Add a context string.
9891 (when (org-xor org-context-in-file-links arg)
9892 (setq txt (if (org-region-active-p)
9893 (buffer-substring (region-beginning) (region-end))
9894 (buffer-substring (point-at-bol) (point-at-eol))))
9895 ;; Only use search option if there is some text.
9896 (when (string-match "\\S-" txt)
9897 (setq cpltxt
9898 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9899 desc "NONE")))
9900 (setq link cpltxt))
9902 ((org-called-interactively-p 'interactive)
9903 (user-error "No method for storing a link from this buffer"))
9905 (t (setq link nil)))
9907 ;; We're done setting link and desc, clean up
9908 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9909 (setq link (or link cpltxt)
9910 desc (or desc cpltxt))
9911 (cond ((equal desc "NONE") (setq desc nil))
9912 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9913 (let ((d0 (match-string 3 desc))
9914 (p0 (match-string 5 desc)))
9915 (setq desc
9916 (replace-regexp-in-string
9917 org-bracket-link-regexp
9918 (concat (or p0 d0)
9919 (if (equal (length (match-string 0 desc))
9920 (length desc)) "*" "")) desc)))))
9922 ;; Return the link
9923 (if (not (and (or (org-called-interactively-p 'any)
9924 executing-kbd-macro) link))
9925 (or agenda-link (and link (org-make-link-string link desc)))
9926 (push (list link desc) org-stored-links)
9927 (message "Stored: %s" (or desc link))
9928 (when custom-id
9929 (setq link (concat "file:" (abbreviate-file-name
9930 (buffer-file-name)) "::#" custom-id))
9931 (push (list link desc) org-stored-links))
9932 (car org-stored-links))))))
9934 (defun org-store-link-props (&rest plist)
9935 "Store link properties, extract names and addresses."
9936 (let (x adr)
9937 (when (setq x (plist-get plist :from))
9938 (setq adr (mail-extract-address-components x))
9939 (setq plist (plist-put plist :fromname (car adr)))
9940 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9941 (when (setq x (plist-get plist :to))
9942 (setq adr (mail-extract-address-components x))
9943 (setq plist (plist-put plist :toname (car adr)))
9944 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9945 (let ((from (plist-get plist :from))
9946 (to (plist-get plist :to)))
9947 (when (and from to org-from-is-user-regexp)
9948 (setq plist
9949 (plist-put plist :fromto
9950 (if (string-match org-from-is-user-regexp from)
9951 (concat "to %t")
9952 (concat "from %f"))))))
9953 (setq org-store-link-plist plist))
9955 (defun org-add-link-props (&rest plist)
9956 "Add these properties to the link property list."
9957 (let (key value)
9958 (while plist
9959 (setq key (pop plist) value (pop plist))
9960 (setq org-store-link-plist
9961 (plist-put org-store-link-plist key value)))))
9963 (defun org-email-link-description (&optional fmt)
9964 "Return the description part of an email link.
9965 This takes information from `org-store-link-plist' and formats it
9966 according to FMT (default from `org-email-link-description-format')."
9967 (setq fmt (or fmt org-email-link-description-format))
9968 (let* ((p org-store-link-plist)
9969 (to (plist-get p :toaddress))
9970 (from (plist-get p :fromaddress))
9971 (table
9972 (list
9973 (cons "%c" (plist-get p :fromto))
9974 (cons "%F" (plist-get p :from))
9975 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9976 (cons "%T" (plist-get p :to))
9977 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9978 (cons "%s" (plist-get p :subject))
9979 (cons "%d" (plist-get p :date))
9980 (cons "%m" (plist-get p :message-id)))))
9981 (when (string-match "%c" fmt)
9982 ;; Check if the user wrote this message
9983 (if (and org-from-is-user-regexp from to
9984 (save-match-data (string-match org-from-is-user-regexp from)))
9985 (setq fmt (replace-match "to %t" t t fmt))
9986 (setq fmt (replace-match "from %f" t t fmt))))
9987 (org-replace-escapes fmt table)))
9989 (defun org-make-org-heading-search-string (&optional string)
9990 "Make search string for the current headline or STRING."
9991 (let ((s (or string
9992 (and (derived-mode-p 'org-mode)
9993 (save-excursion
9994 (org-back-to-heading t)
9995 (org-element-property :raw-value (org-element-at-point))))))
9996 (lines org-context-in-file-links))
9997 (or string (setq s (concat "*" s))) ; Add * for headlines
9998 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9999 (when (and string (integerp lines) (> lines 0))
10000 (let ((slines (org-split-string s "\n")))
10001 (when (< lines (length slines))
10002 (setq s (mapconcat
10003 'identity
10004 (reverse (nthcdr (- (length slines) lines)
10005 (reverse slines))) "\n")))))
10006 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10008 (defun org-make-link-string (link &optional description)
10009 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10010 (unless (string-match "\\S-" link)
10011 (error "Empty link"))
10012 (when (and description
10013 (stringp description)
10014 (not (string-match "\\S-" description)))
10015 (setq description nil))
10016 (when (stringp description)
10017 ;; Remove brackets from the description, they are fatal.
10018 (while (string-match "\\[" description)
10019 (setq description (replace-match "{" t t description)))
10020 (while (string-match "\\]" description)
10021 (setq description (replace-match "}" t t description))))
10022 (when (equal link description)
10023 ;; No description needed, it is identical
10024 (setq description nil))
10025 (when (and (not description)
10026 (not (string-match (org-image-file-name-regexp) link))
10027 (not (equal link (org-link-escape link))))
10028 (setq description (org-extract-attributes link)))
10029 (setq link
10030 (cond ((string-match (org-image-file-name-regexp) link) link)
10031 ((string-match org-link-types-re link)
10032 (concat (match-string 1 link)
10033 (org-link-escape (substring link (match-end 1)))))
10034 (t (org-link-escape link))))
10035 (concat "[[" link "]"
10036 (if description (concat "[" description "]") "")
10037 "]"))
10039 (defconst org-link-escape-chars
10040 ;;%20 %5B %5D
10041 '(?\ ?\[ ?\])
10042 "List of characters that should be escaped in a link when stored to Org.
10043 This is the list that is used for internal purposes.")
10045 (defconst org-link-escape-chars-browser
10046 ;;%20 %22
10047 '(?\ ?\")
10048 "List of characters to be escaped before handing over to the browser.
10049 If you consider using this constant then you probably want to use
10050 the function `org-link-escape-browser' instead. See there why
10051 this constant is a candidate to be removed once Org drops support
10052 for Emacs 24.1 and 24.2.")
10054 (defun org-link-escape (text &optional table merge)
10055 "Return percent escaped representation of TEXT.
10056 TEXT is a string with the text to escape.
10057 Optional argument TABLE is a list with characters that should be
10058 escaped. When nil, `org-link-escape-chars' is used.
10059 If optional argument MERGE is set, merge TABLE into
10060 `org-link-escape-chars'."
10061 ;; Don't escape chars in internal links
10062 (if (string-match "^\\*[[:alnum:]]+" text)
10063 text
10064 (cond
10065 ((and table merge)
10066 (mapc (lambda (defchr)
10067 (unless (member defchr table)
10068 (setq table (cons defchr table))))
10069 org-link-escape-chars))
10070 ((null table)
10071 (setq table org-link-escape-chars)))
10072 (mapconcat
10073 (lambda (char)
10074 (if (or (member char table)
10075 (and (or (< char 32) (= char ?\%) (> char 126))
10076 org-url-hexify-p))
10077 (mapconcat (lambda (sequence-element)
10078 (format "%%%.2X" sequence-element))
10079 (or (encode-coding-char char 'utf-8)
10080 (error "Unable to percent escape character: %s"
10081 (char-to-string char))) "")
10082 (char-to-string char))) text "")))
10084 (defun org-link-escape-browser (text)
10085 "Escape some characters before handing over to the browser.
10086 This function is a candidate to be removed together with the
10087 constant `org-link-escape-chars-browser' once Org drops support
10088 for Emacs 24.1 and 24.2. All calls to this function will have to
10089 be replaced with `url-encode-url' which is available since Emacs
10090 24.3.1."
10091 ;; Example with the Org link
10092 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10093 ;; to open the browser with +subject:"Release 8.2" filled into the
10094 ;; query field: In this case the variable TEXT contains the
10095 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10096 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10097 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10098 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10099 (if (fboundp 'url-encode-url)
10100 (url-encode-url text)
10101 (if (org-string-match-p
10102 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10103 text)
10104 (org-link-escape text org-link-escape-chars-browser)
10105 text)))
10107 (defun org-link-unescape (str)
10108 "Unhex hexified Unicode strings as returned from the JavaScript function
10109 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10110 (unless (and (null str) (string= "" str))
10111 (let ((pos 0) (case-fold-search t) unhexed)
10112 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10113 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10114 (setq str (replace-match unhexed t t str))
10115 (setq pos (+ pos (length unhexed))))))
10116 str)
10118 (defun org-link-unescape-compound (hex)
10119 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10120 Note: this function also decodes single byte encodings like
10121 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10122 (save-match-data
10123 (let* ((bytes (cdr (split-string hex "%")))
10124 (ret "")
10125 (eat 0)
10126 (sum 0))
10127 (while bytes
10128 (let* ((val (string-to-number (pop bytes) 16))
10129 (shift-xor
10130 (if (= 0 eat)
10131 (cond
10132 ((>= val 252) (cons 6 252))
10133 ((>= val 248) (cons 5 248))
10134 ((>= val 240) (cons 4 240))
10135 ((>= val 224) (cons 3 224))
10136 ((>= val 192) (cons 2 192))
10137 (t (cons 0 0)))
10138 (cons 6 128))))
10139 (if (>= val 192) (setq eat (car shift-xor)))
10140 (setq val (logxor val (cdr shift-xor)))
10141 (setq sum (+ (lsh sum (car shift-xor)) val))
10142 (if (> eat 0) (setq eat (- eat 1)))
10143 (cond
10144 ((= 0 eat) ;multi byte
10145 (setq ret (concat ret (org-char-to-string sum)))
10146 (setq sum 0))
10147 ((not bytes) ; single byte(s)
10148 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10149 ret)))
10151 (defun org-link-unescape-single-byte-sequence (hex)
10152 "Unhexify hex-encoded single byte character sequences."
10153 (mapconcat (lambda (byte)
10154 (char-to-string (string-to-number byte 16)))
10155 (cdr (split-string hex "%")) ""))
10157 (defun org-xor (a b)
10158 "Exclusive or."
10159 (if a (not b) b))
10161 (defun org-fixup-message-id-for-http (s)
10162 "Replace special characters in a message id, so it can be used in an http query."
10163 (when (string-match "%" s)
10164 (setq s (mapconcat (lambda (c)
10165 (if (eq c ?%)
10166 "%25"
10167 (char-to-string c)))
10168 s "")))
10169 (while (string-match "<" s)
10170 (setq s (replace-match "%3C" t t s)))
10171 (while (string-match ">" s)
10172 (setq s (replace-match "%3E" t t s)))
10173 (while (string-match "@" s)
10174 (setq s (replace-match "%40" t t s)))
10177 (defun org-link-prettify (link)
10178 "Return a human-readable representation of LINK.
10179 The car of LINK must be a raw link.
10180 The cdr of LINK must be either a link description or nil."
10181 (let ((desc (or (cadr link) "<no description>")))
10182 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10183 "<" (car link) ">")))
10185 ;;;###autoload
10186 (defun org-insert-link-global ()
10187 "Insert a link like Org-mode does.
10188 This command can be called in any mode to insert a link in Org-mode syntax."
10189 (interactive)
10190 (org-load-modules-maybe)
10191 (org-run-like-in-org-mode 'org-insert-link))
10193 (defun org-insert-all-links (arg &optional pre post)
10194 "Insert all links in `org-stored-links'.
10195 When a universal prefix, do not delete the links from `org-stored-links'.
10196 When `ARG' is a number, insert the last N link(s).
10197 `PRE' and `POST' are optional arguments to define a string to
10198 prepend or to append."
10199 (interactive "P")
10200 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10201 (links (copy-seq org-stored-links))
10202 (pr (or pre "- "))
10203 (po (or post "\n"))
10204 (cnt 1) l)
10205 (if (null org-stored-links)
10206 (message "No link to insert")
10207 (while (and (or (listp arg) (>= arg cnt))
10208 (setq l (if (listp arg)
10209 (pop links)
10210 (pop org-stored-links))))
10211 (setq cnt (1+ cnt))
10212 (insert pr)
10213 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10214 (insert po)))))
10216 (defun org-insert-last-stored-link (arg)
10217 "Insert the last link stored in `org-stored-links'."
10218 (interactive "p")
10219 (org-insert-all-links arg "" "\n"))
10221 (defun org-link-fontify-links-to-this-file ()
10222 "Fontify links to the current file in `org-stored-links'."
10223 (let ((f (buffer-file-name)) a b)
10224 (setq a (mapcar (lambda(l)
10225 (let ((ll (car l)))
10226 (when (and (string-match "^file:\\(.+\\)::" ll)
10227 (equal f (expand-file-name (match-string 1 ll))))
10228 ll)))
10229 org-stored-links))
10230 (when (featurep 'org-id)
10231 (setq b (mapcar (lambda(l)
10232 (let ((ll (car l)))
10233 (when (and (string-match "^id:\\(.+\\)$" ll)
10234 (equal f (expand-file-name
10235 (or (org-id-find-id-file
10236 (match-string 1 ll)) ""))))
10237 ll)))
10238 org-stored-links)))
10239 (mapcar (lambda(l)
10240 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10241 (delq nil (append a b)))))
10243 (defvar org-link-links-in-this-file nil)
10244 (defun org-insert-link (&optional complete-file link-location default-description)
10245 "Insert a link. At the prompt, enter the link.
10247 Completion can be used to insert any of the link protocol prefixes like
10248 http or ftp in use.
10250 The history can be used to select a link previously stored with
10251 `org-store-link'. When the empty string is entered (i.e. if you just
10252 press RET at the prompt), the link defaults to the most recently
10253 stored link. As SPC triggers completion in the minibuffer, you need to
10254 use M-SPC or C-q SPC to force the insertion of a space character.
10256 You will also be prompted for a description, and if one is given, it will
10257 be displayed in the buffer instead of the link.
10259 If there is already a link at point, this command will allow you to edit link
10260 and description parts.
10262 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10263 be selected using completion. The path to the file will be relative to the
10264 current directory if the file is in the current directory or a subdirectory.
10265 Otherwise, the link will be the absolute path as completed in the minibuffer
10266 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10267 option `org-link-file-path-type'.
10269 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10270 the current directory or below.
10272 With three \\[universal-argument] prefixes, negate the meaning of
10273 `org-keep-stored-link-after-insertion'.
10275 If `org-make-link-description-function' is non-nil, this function will be
10276 called with the link target, and the result will be the default
10277 link description.
10279 If the LINK-LOCATION parameter is non-nil, this value will be
10280 used as the link location instead of reading one interactively.
10282 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10283 be used as the default description."
10284 (interactive "P")
10285 (let* ((wcf (current-window-configuration))
10286 (origbuf (current-buffer))
10287 (region (if (org-region-active-p)
10288 (buffer-substring (region-beginning) (region-end))))
10289 (remove (and region (list (region-beginning) (region-end))))
10290 (desc region)
10291 tmphist ; byte-compile incorrectly complains about this
10292 (link link-location)
10293 (abbrevs org-link-abbrev-alist-local)
10294 entry file all-prefixes auto-desc)
10295 (cond
10296 (link-location) ; specified by arg, just use it.
10297 ((org-in-regexp org-bracket-link-regexp 1)
10298 ;; We do have a link at point, and we are going to edit it.
10299 (setq remove (list (match-beginning 0) (match-end 0)))
10300 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10301 (setq link (read-string "Link: "
10302 (org-link-unescape
10303 (org-match-string-no-properties 1)))))
10304 ((or (org-in-regexp org-angle-link-re)
10305 (org-in-regexp org-plain-link-re))
10306 ;; Convert to bracket link
10307 (setq remove (list (match-beginning 0) (match-end 0))
10308 link (read-string "Link: "
10309 (org-remove-angle-brackets (match-string 0)))))
10310 ((member complete-file '((4) (16)))
10311 ;; Completing read for file names.
10312 (setq link (org-file-complete-link complete-file)))
10314 ;; Read link, with completion for stored links.
10315 (org-link-fontify-links-to-this-file)
10316 (org-switch-to-buffer-other-window "*Org Links*")
10317 (with-current-buffer "*Org Links*"
10318 (erase-buffer)
10319 (insert "Insert a link.
10320 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10321 (when org-stored-links
10322 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10323 (insert (mapconcat 'org-link-prettify
10324 (reverse org-stored-links) "\n")))
10325 (goto-char (point-min)))
10326 (let ((cw (selected-window)))
10327 (select-window (get-buffer-window "*Org Links*" 'visible))
10328 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10329 (unless (pos-visible-in-window-p (point-max))
10330 (org-fit-window-to-buffer))
10331 (and (window-live-p cw) (select-window cw)))
10332 ;; Fake a link history, containing the stored links.
10333 (setq tmphist (append (mapcar 'car org-stored-links)
10334 org-insert-link-history))
10335 (setq all-prefixes (append (mapcar 'car abbrevs)
10336 (mapcar 'car org-link-abbrev-alist)
10337 org-link-types))
10338 (unwind-protect
10339 (progn
10340 (setq link
10341 (org-completing-read
10342 "Link: "
10343 (append
10344 (mapcar (lambda (x) (concat x ":"))
10345 all-prefixes)
10346 (mapcar 'car org-stored-links))
10347 nil nil nil
10348 'tmphist
10349 (caar org-stored-links)))
10350 (if (not (string-match "\\S-" link))
10351 (user-error "No link selected"))
10352 (mapc (lambda(l)
10353 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10354 org-stored-links)
10355 (if (or (member link all-prefixes)
10356 (and (equal ":" (substring link -1))
10357 (member (substring link 0 -1) all-prefixes)
10358 (setq link (substring link 0 -1))))
10359 (setq link (with-current-buffer origbuf
10360 (org-link-try-special-completion link)))))
10361 (set-window-configuration wcf)
10362 (kill-buffer "*Org Links*"))
10363 (setq entry (assoc link org-stored-links))
10364 (or entry (push link org-insert-link-history))
10365 (setq desc (or desc (nth 1 entry)))))
10367 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10368 (not org-keep-stored-link-after-insertion))
10369 (setq org-stored-links (delq (assoc link org-stored-links)
10370 org-stored-links)))
10372 (if (and (string-match org-plain-link-re link)
10373 (not (string-match org-ts-regexp link)))
10374 ;; URL-like link, normalize the use of angular brackets.
10375 (setq link (org-remove-angle-brackets link)))
10377 ;; Check if we are linking to the current file with a search
10378 ;; option If yes, simplify the link by using only the search
10379 ;; option.
10380 (when (and buffer-file-name
10381 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10382 (let* ((path (match-string 1 link))
10383 (case-fold-search nil)
10384 (search (match-string 2 link)))
10385 (save-match-data
10386 (if (equal (file-truename buffer-file-name) (file-truename path))
10387 ;; We are linking to this same file, with a search option
10388 (setq link search)))))
10390 ;; Check if we can/should use a relative path. If yes, simplify the link
10391 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10392 (let* ((type (match-string 1 link))
10393 (path (match-string 2 link))
10394 (origpath path)
10395 (case-fold-search nil))
10396 (cond
10397 ((or (eq org-link-file-path-type 'absolute)
10398 (equal complete-file '(16)))
10399 (setq path (abbreviate-file-name (expand-file-name path))))
10400 ((eq org-link-file-path-type 'noabbrev)
10401 (setq path (expand-file-name path)))
10402 ((eq org-link-file-path-type 'relative)
10403 (setq path (file-relative-name path)))
10405 (save-match-data
10406 (if (string-match (concat "^" (regexp-quote
10407 (expand-file-name
10408 (file-name-as-directory
10409 default-directory))))
10410 (expand-file-name path))
10411 ;; We are linking a file with relative path name.
10412 (setq path (substring (expand-file-name path)
10413 (match-end 0)))
10414 (setq path (abbreviate-file-name (expand-file-name path)))))))
10415 (setq link (concat type path))
10416 (if (equal desc origpath)
10417 (setq desc path))))
10419 (if org-make-link-description-function
10420 (setq desc
10421 (or (condition-case nil
10422 (funcall org-make-link-description-function link desc)
10423 (error (progn (message "Can't get link description from `%s'"
10424 (symbol-name org-make-link-description-function))
10425 (sit-for 2) nil)))
10426 (read-string "Description: " default-description)))
10427 (if default-description (setq desc default-description)
10428 (setq desc (or (and auto-desc desc)
10429 (read-string "Description: " desc)))))
10431 (unless (string-match "\\S-" desc) (setq desc nil))
10432 (if remove (apply 'delete-region remove))
10433 (insert (org-make-link-string link desc))))
10435 (defun org-link-try-special-completion (type)
10436 "If there is completion support for link type TYPE, offer it."
10437 (let ((fun (intern (concat "org-" type "-complete-link"))))
10438 (if (functionp fun)
10439 (funcall fun)
10440 (read-string "Link (no completion support): " (concat type ":")))))
10442 (defun org-file-complete-link (&optional arg)
10443 "Create a file link using completion."
10444 (let ((file (org-iread-file-name "File: "))
10445 (pwd (file-name-as-directory (expand-file-name ".")))
10446 (pwd1 (file-name-as-directory (abbreviate-file-name
10447 (expand-file-name ".")))))
10448 (cond ((equal arg '(16))
10449 (concat "file:"
10450 (abbreviate-file-name (expand-file-name file))))
10451 ((string-match
10452 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10453 (concat "file:" (match-string 1 file)))
10454 ((string-match
10455 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10456 (expand-file-name file))
10457 (concat "file:"
10458 (match-string 1 (expand-file-name file))))
10459 (t (concat "file:" file)))))
10461 (defun org-iread-file-name (&rest args)
10462 "Read-file-name using `ido-mode' speedup if available.
10463 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10464 See `read-file-name' for a description of parameters."
10465 (org-without-partial-completion
10466 (if (and org-completion-use-ido
10467 (fboundp 'ido-read-file-name)
10468 (org-bound-and-true-p ido-mode)
10469 (listp (nth 1 args)))
10470 (let ((ido-enter-matching-directory nil))
10471 (apply #'ido-read-file-name args))
10472 (apply #'read-file-name args))))
10474 (defun org-completing-read (&rest args)
10475 "Completing-read with SPACE being a normal character."
10476 (let ((enable-recursive-minibuffers t)
10477 (minibuffer-local-completion-map
10478 (copy-keymap minibuffer-local-completion-map)))
10479 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10480 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10481 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10482 (apply 'org-icompleting-read args)))
10484 (defun org-completing-read-no-i (&rest args)
10485 (let (org-completion-use-ido org-completion-use-iswitchb)
10486 (apply 'org-completing-read args)))
10488 (defun org-iswitchb-completing-read (prompt choices &rest args)
10489 "Use iswitch as a completing-read replacement to choose from choices.
10490 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10491 from."
10492 (let* ((iswitchb-use-virtual-buffers nil)
10493 (iswitchb-make-buflist-hook
10494 (lambda ()
10495 (setq iswitchb-temp-buflist choices))))
10496 (iswitchb-read-buffer prompt)))
10498 (defun org-icompleting-read (&rest args)
10499 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10500 Should be called like `completing-read'."
10501 (org-without-partial-completion
10502 (if (not (listp (nth 1 args)))
10503 ;; Ido only supports lists as the COLLECTION argument. Use
10504 ;; default completion function when second argument is not
10505 ;; a list.
10506 (apply #'completing-read args)
10507 (let ((ido-enter-matching-directory nil))
10508 (apply (cond ((and org-completion-use-ido
10509 (fboundp 'ido-completing-read)
10510 (org-bound-and-true-p ido-mode))
10511 #'ido-completing-read)
10512 ((and org-completion-use-iswitchb
10513 (org-bound-and-true-p iswitchb-mode))
10514 #'org-iswitchb-completing-read)
10515 (t #'completing-read))
10516 (pop args)
10517 (if (org-some #'consp (car args))
10518 (mapcar #'car (pop args))
10519 (pop args))
10520 args)))))
10522 (defun org-extract-attributes (s)
10523 "Extract the attributes cookie from a string and set as text property."
10524 (let (a attr (start 0) key value)
10525 (save-match-data
10526 (when (string-match "{{\\([^}]+\\)}}$" s)
10527 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10528 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10529 (setq key (match-string 1 a) value (match-string 2 a)
10530 start (match-end 0)
10531 attr (plist-put attr (intern key) value))))
10532 (org-add-props s nil 'org-attr attr))
10535 ;;; Opening/following a link
10537 (defvar org-link-search-failed nil)
10539 (defvar org-open-link-functions nil
10540 "Hook for functions finding a plain text link.
10541 These functions must take a single argument, the link content.
10542 They will be called for links that look like [[link text][description]]
10543 when LINK TEXT does not have a protocol like \"http:\" and does not look
10544 like a filename (e.g. \"./blue.png\").
10546 These functions will be called *before* Org attempts to resolve the
10547 link by doing text searches in the current buffer - so if you want a
10548 link \"[[target]]\" to still find \"<<target>>\", your function should
10549 handle this as a special case.
10551 When the function does handle the link, it must return a non-nil value.
10552 If it decides that it is not responsible for this link, it must return
10553 nil to indicate that that Org-mode can continue with other options
10554 like exact and fuzzy text search.")
10556 (defun org-next-link (&optional search-backward)
10557 "Move forward to the next link.
10558 If the link is in hidden text, expose it."
10559 (interactive "P")
10560 (when (and org-link-search-failed (eq this-command last-command))
10561 (goto-char (point-min))
10562 (message "Link search wrapped back to beginning of buffer"))
10563 (setq org-link-search-failed nil)
10564 (let* ((pos (point))
10565 (ct (org-context))
10566 (a (assoc :link ct))
10567 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10568 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10569 ((looking-at org-any-link-re)
10570 ;; Don't stay stuck at link without an org-link face
10571 (forward-char (if search-backward -1 1))))
10572 (if (funcall srch-fun org-any-link-re nil t)
10573 (progn
10574 (goto-char (match-beginning 0))
10575 (if (outline-invisible-p) (org-show-context)))
10576 (goto-char pos)
10577 (setq org-link-search-failed t)
10578 (message "No further link found"))))
10580 (defun org-previous-link ()
10581 "Move backward to the previous link.
10582 If the link is in hidden text, expose it."
10583 (interactive)
10584 (funcall 'org-next-link t))
10586 (defun org-translate-link (s)
10587 "Translate a link string if a translation function has been defined."
10588 (if (and org-link-translation-function
10589 (fboundp org-link-translation-function)
10590 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10591 (progn
10592 (setq s (funcall org-link-translation-function
10593 (match-string 1 s) (match-string 2 s)))
10594 (concat (car s) ":" (cdr s)))
10597 (defun org-translate-link-from-planner (type path)
10598 "Translate a link from Emacs Planner syntax so that Org can follow it.
10599 This is still an experimental function, your mileage may vary."
10600 (cond
10601 ((member type '("http" "https" "news" "ftp"))
10602 ;; standard Internet links are the same.
10603 nil)
10604 ((and (equal type "irc") (string-match "^//" path))
10605 ;; Planner has two / at the beginning of an irc link, we have 1.
10606 ;; We should have zero, actually....
10607 (setq path (substring path 1)))
10608 ((and (equal type "lisp") (string-match "^/" path))
10609 ;; Planner has a slash, we do not.
10610 (setq type "elisp" path (substring path 1)))
10611 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10612 ;; A typical message link. Planner has the id after the final slash,
10613 ;; we separate it with a hash mark
10614 (setq path (concat (match-string 1 path) "#"
10615 (org-remove-angle-brackets (match-string 2 path))))))
10616 (cons type path))
10618 (defun org-find-file-at-mouse (ev)
10619 "Open file link or URL at mouse."
10620 (interactive "e")
10621 (mouse-set-point ev)
10622 (org-open-at-point 'in-emacs))
10624 (defun org-open-at-mouse (ev)
10625 "Open file link or URL at mouse.
10626 See the docstring of `org-open-file' for details."
10627 (interactive "e")
10628 (mouse-set-point ev)
10629 (if (eq major-mode 'org-agenda-mode)
10630 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10631 (org-open-at-point))
10633 (defvar org-window-config-before-follow-link nil
10634 "The window configuration before following a link.
10635 This is saved in case the need arises to restore it.")
10637 (defvar org-open-link-marker (make-marker)
10638 "Marker pointing to the location where `org-open-at-point' was called.")
10640 ;;;###autoload
10641 (defun org-open-at-point-global ()
10642 "Follow a link like Org-mode does.
10643 This command can be called in any mode to follow a link that has
10644 Org-mode syntax."
10645 (interactive)
10646 (org-run-like-in-org-mode 'org-open-at-point))
10648 ;;;###autoload
10649 (defun org-open-link-from-string (s &optional arg reference-buffer)
10650 "Open a link in the string S, as if it was in Org-mode."
10651 (interactive "sLink: \nP")
10652 (let ((reference-buffer (or reference-buffer (current-buffer))))
10653 (with-temp-buffer
10654 (let ((org-inhibit-startup (not reference-buffer)))
10655 (org-mode)
10656 (insert s)
10657 (goto-char (point-min))
10658 (when reference-buffer
10659 (setq org-link-abbrev-alist-local
10660 (with-current-buffer reference-buffer
10661 org-link-abbrev-alist-local)))
10662 (org-open-at-point arg reference-buffer)))))
10664 (defvar org-open-at-point-functions nil
10665 "Hook that is run when following a link at point.
10667 Functions in this hook must return t if they identify and follow
10668 a link at point. If they don't find anything interesting at point,
10669 they must return nil.")
10671 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10672 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10673 (defun org-open-at-point (&optional arg reference-buffer)
10674 "Open link, timestamp, footnote or tags at point.
10676 When point is on a link, follow it. Normally, files will be
10677 opened by an appropriate application. If the optional prefix
10678 argument ARG is non-nil, Emacs will visit the file. With
10679 a double prefix argument, try to open outside of Emacs, in the
10680 application the system uses for this file type.
10682 When point is on a timestamp, open the agenda at the day
10683 specified.
10685 When point is a footnote definition, move to the first reference
10686 found. If it is on a reference, move to the associated
10687 definition.
10689 When point is on a headline, display a list of every link in the
10690 entry, so it is possible to pick one, or all, of them. If point
10691 is on a tag, call `org-tags-view' instead.
10693 When optional argument REFERENCE-BUFFER is non-nil, it should
10694 specify a buffer from where the link search should happen. This
10695 is used internally by `org-open-link-from-string'.
10697 On top of syntactically correct links, this function will open
10698 the link at point in comments or comment blocks and the first
10699 link in a property drawer line."
10700 (interactive "P")
10701 ;; On a code block, open block's results.
10702 (unless (call-interactively 'org-babel-open-src-block-result)
10703 (org-load-modules-maybe)
10704 (move-marker org-open-link-marker (point))
10705 (setq org-window-config-before-follow-link (current-window-configuration))
10706 (org-remove-occur-highlights nil nil t)
10707 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10708 (let* ((context
10709 ;; Only consider supported types, even if they are not
10710 ;; the closest one.
10711 (org-element-lineage
10712 (org-element-context)
10713 '(comment comment-block footnote-definition footnote-reference
10714 headline inlinetask keyword link node-property
10715 timestamp)
10717 (type (org-element-type context))
10718 (value (org-element-property :value context)))
10719 (cond
10720 ((not context) (user-error "No link found"))
10721 ;; Exception: open timestamps and links in properties
10722 ;; drawers, keywords and comments.
10723 ((memq type '(comment comment-block keyword node-property))
10724 (cond ((org-in-regexp org-any-link-re)
10725 (org-open-link-from-string (match-string-no-properties 0)))
10726 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10727 (org-follow-timestamp-link))
10728 (t (user-error "No link found"))))
10729 ;; On a headline or an inlinetask, but not on a timestamp,
10730 ;; a link, a footnote reference or on tags.
10731 ((and (memq type '(headline inlinetask))
10732 ;; Not on tags.
10733 (progn (save-excursion (beginning-of-line)
10734 (looking-at org-complex-heading-regexp))
10735 (or (not (match-beginning 5))
10736 (< (point) (match-beginning 5)))))
10737 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10738 (links (car data))
10739 (links-end (cdr data)))
10740 (if links
10741 (dolist (link (if (stringp links) (list links) links))
10742 (search-forward link nil links-end)
10743 (goto-char (match-beginning 0))
10744 (org-open-at-point))
10745 (require 'org-attach)
10746 (org-attach-reveal 'if-exists))))
10747 ;; Do nothing on white spaces after an object, unless point
10748 ;; is right after it.
10749 ((> (point)
10750 (save-excursion
10751 (goto-char (org-element-property :end context))
10752 (skip-chars-backward " \t")
10753 (point)))
10754 (user-error "No link found"))
10755 ((eq type 'timestamp) (org-follow-timestamp-link))
10756 ;; On tags within a headline or an inlinetask.
10757 ((and (memq type '(headline inlinetask))
10758 (progn (save-excursion (beginning-of-line)
10759 (looking-at org-complex-heading-regexp))
10760 (and (match-beginning 5)
10761 (>= (point) (match-beginning 5)))))
10762 (org-tags-view arg (substring (match-string 5) 0 -1)))
10763 ((eq type 'link)
10764 ;; When link is located within the description of another
10765 ;; link (e.g., an inline image), always open the parent
10766 ;; link.
10767 (let*((link (let ((up (org-element-property :parent context)))
10768 (if (eq (org-element-type up) 'link) up context)))
10769 (type (org-element-property :type link))
10770 (path (org-link-unescape (org-element-property :path link))))
10771 ;; Switch back to REFERENCE-BUFFER needed when called in
10772 ;; a temporary buffer through `org-open-link-from-string'.
10773 (with-current-buffer (or reference-buffer (current-buffer))
10774 (cond
10775 ((equal type "file")
10776 (if (string-match "[*?{]" (file-name-nondirectory path))
10777 (dired path)
10778 ;; Look into `org-link-protocols' in order to find
10779 ;; a DEDICATED-FUNCTION to open file. The function
10780 ;; will be applied on raw link instead of parsed
10781 ;; link due to the limitation in `org-add-link-type'
10782 ;; ("open" function called with a single argument).
10783 ;; If no such function is found, fallback to
10784 ;; `org-open-file'.
10786 ;; Note : "file+emacs" and "file+sys" types are
10787 ;; hard-coded in order to escape the previous
10788 ;; limitation.
10789 (let* ((option (org-element-property :search-option link))
10790 (app (org-element-property :application link))
10791 (dedicated-function
10792 (nth 1 (assoc app org-link-protocols))))
10793 (if dedicated-function
10794 (funcall dedicated-function
10795 (concat path
10796 (and option (concat "::" option))))
10797 (apply 'org-open-file
10798 path
10799 (cond (arg)
10800 ((equal app "emacs") 'emacs)
10801 ((equal app "sys") 'system))
10802 (cond ((not option) nil)
10803 ((org-string-match-p "\\`[0-9]+\\'" option)
10804 (list (string-to-number option)))
10805 (t (list nil
10806 (org-link-unescape option)))))))))
10807 ((assoc type org-link-protocols)
10808 (funcall (nth 1 (assoc type org-link-protocols)) path))
10809 ((equal type "help")
10810 (let ((f-or-v (intern path)))
10811 (cond ((fboundp f-or-v) (describe-function f-or-v))
10812 ((boundp f-or-v) (describe-variable f-or-v))
10813 (t (error "Not a known function or variable")))))
10814 ((member type '("http" "https" "ftp" "mailto" "news"))
10815 (browse-url (org-link-escape-browser (concat type ":" path))))
10816 ((equal type "doi")
10817 (browse-url
10818 (org-link-escape-browser (concat org-doi-server-url path))))
10819 ((equal type "message") (browse-url (concat type ":" path)))
10820 ((equal type "shell")
10821 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10822 (cmd path))
10823 (if (or (and (org-string-nw-p
10824 org-confirm-shell-link-not-regexp)
10825 (string-match
10826 org-confirm-shell-link-not-regexp cmd))
10827 (not org-confirm-shell-link-function)
10828 (funcall org-confirm-shell-link-function
10829 (format "Execute \"%s\" in shell? "
10830 (org-add-props cmd nil
10831 'face 'org-warning))))
10832 (progn
10833 (message "Executing %s" cmd)
10834 (shell-command cmd buf)
10835 (when (featurep 'midnight)
10836 (setq clean-buffer-list-kill-buffer-names
10837 (cons (buffer-name buf)
10838 clean-buffer-list-kill-buffer-names))))
10839 (user-error "Abort"))))
10840 ((equal type "elisp")
10841 (let ((cmd path))
10842 (if (or (and (org-string-nw-p
10843 org-confirm-elisp-link-not-regexp)
10844 (org-string-match-p
10845 org-confirm-elisp-link-not-regexp cmd))
10846 (not org-confirm-elisp-link-function)
10847 (funcall org-confirm-elisp-link-function
10848 (format "Execute \"%s\" as elisp? "
10849 (org-add-props cmd nil
10850 'face 'org-warning))))
10851 (message "%s => %s" cmd
10852 (if (eq (string-to-char cmd) ?\()
10853 (eval (read cmd))
10854 (call-interactively (read cmd))))
10855 (user-error "Abort"))))
10856 ((equal type "id")
10857 (require 'ord-id)
10858 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10859 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10860 (unless (run-hook-with-args-until-success
10861 'org-open-link-functions path)
10862 (if (not arg) (org-mark-ring-push)
10863 (switch-to-buffer-other-window
10864 (org-get-buffer-for-internal-link (current-buffer))))
10865 (let ((cmd `(org-link-search
10866 ,(if (member type '("custom-id" "coderef"))
10867 (org-element-property :raw-link link)
10868 path)
10869 ,(cond ((equal arg '(4)) 'occur)
10870 ((equal arg '(16)) 'org-occur))
10871 ,(org-element-property :begin link))))
10872 (condition-case nil
10873 (let ((org-link-search-inhibit-query t))
10874 (eval cmd))
10875 (error (progn (widen) (eval cmd)))))))
10876 (t (browse-url-at-point))))))
10877 ;; On a footnote reference or at a footnote definition's label.
10878 ((or (eq type 'footnote-reference)
10879 (and (eq type 'footnote-definition)
10880 (save-excursion
10881 ;; Do not validate action when point is on the
10882 ;; spaces right after the footnote label, in
10883 ;; order to be on par with behaviour on links.
10884 (skip-chars-forward " \t")
10885 (let ((begin
10886 (org-element-property :contents-begin context)))
10887 (if begin (< (point) begin)
10888 (= (org-element-property :post-affiliated context)
10889 (line-beginning-position)))))))
10890 (org-footnote-action))
10891 (t (user-error "No link found")))))
10892 (move-marker org-open-link-marker nil)
10893 (run-hook-with-args 'org-follow-link-hook)))
10895 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10896 "Offer links in the current entry and return the selected link.
10897 If there is only one link, return it.
10898 If NTH is an integer, return the NTH link found.
10899 If ZERO is a string, check also this string for a link, and if
10900 there is one, return it."
10901 (with-current-buffer buffer
10902 (save-excursion
10903 (save-restriction
10904 (widen)
10905 (goto-char marker)
10906 (let ((cnt ?0)
10907 (in-emacs (if (integerp nth) nil nth))
10908 have-zero end links link c)
10909 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10910 (push (match-string 0 zero) links)
10911 (setq cnt (1- cnt) have-zero t))
10912 (save-excursion
10913 (org-back-to-heading t)
10914 (setq end (save-excursion (outline-next-heading) (point)))
10915 (while (re-search-forward org-any-link-re end t)
10916 (push (match-string 0) links))
10917 (setq links (org-uniquify (reverse links))))
10918 (cond
10919 ((null links)
10920 (message "No links"))
10921 ((equal (length links) 1)
10922 (setq link (car links)))
10923 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10924 (setq link (nth (if have-zero nth (1- nth)) links)))
10925 (t ; we have to select a link
10926 (save-excursion
10927 (save-window-excursion
10928 (delete-other-windows)
10929 (with-output-to-temp-buffer "*Select Link*"
10930 (mapc (lambda (l)
10931 (if (not (string-match org-bracket-link-regexp l))
10932 (princ (format "[%c] %s\n" (incf cnt)
10933 (org-remove-angle-brackets l)))
10934 (if (match-end 3)
10935 (princ (format "[%c] %s (%s)\n" (incf cnt)
10936 (match-string 3 l) (match-string 1 l)))
10937 (princ (format "[%c] %s\n" (incf cnt)
10938 (match-string 1 l))))))
10939 links))
10940 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10941 (message "Select link to open, RET to open all:")
10942 (setq c (read-char-exclusive))
10943 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10944 (when (equal c ?q) (user-error "Abort"))
10945 (if (equal c ?\C-m)
10946 (setq link links)
10947 (setq nth (- c ?0))
10948 (if have-zero (setq nth (1+ nth)))
10949 (unless (and (integerp nth) (>= (length links) nth))
10950 (user-error "Invalid link selection"))
10951 (setq link (nth (1- nth) links)))))
10952 (cons link end))))))
10954 ;; TODO: These functions are deprecated since `org-open-at-point'
10955 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10956 (defun org-open-file-with-system (path)
10957 "Open file at PATH using the system way of opening it."
10958 (org-open-file path 'system))
10959 (defun org-open-file-with-emacs (path)
10960 "Open file at PATH in Emacs."
10961 (org-open-file path 'emacs))
10964 ;;; File search
10966 (defvar org-create-file-search-functions nil
10967 "List of functions to construct the right search string for a file link.
10968 These functions are called in turn with point at the location to
10969 which the link should point.
10971 A function in the hook should first test if it would like to
10972 handle this file type, for example by checking the `major-mode'
10973 or the file extension. If it decides not to handle this file, it
10974 should just return nil to give other functions a chance. If it
10975 does handle the file, it must return the search string to be used
10976 when following the link. The search string will be part of the
10977 file link, given after a double colon, and `org-open-at-point'
10978 will automatically search for it. If special measures must be
10979 taken to make the search successful, another function should be
10980 added to the companion hook `org-execute-file-search-functions',
10981 which see.
10983 A function in this hook may also use `setq' to set the variable
10984 `description' to provide a suggestion for the descriptive text to
10985 be used for this link when it gets inserted into an Org-mode
10986 buffer with \\[org-insert-link].")
10988 (defvar org-execute-file-search-functions nil
10989 "List of functions to execute a file search triggered by a link.
10991 Functions added to this hook must accept a single argument, the
10992 search string that was part of the file link, the part after the
10993 double colon. The function must first check if it would like to
10994 handle this search, for example by checking the `major-mode' or
10995 the file extension. If it decides not to handle this search, it
10996 should just return nil to give other functions a chance. If it
10997 does handle the search, it must return a non-nil value to keep
10998 other functions from trying.
11000 Each function can access the current prefix argument through the
11001 variable `current-prefix-arg'. Note that a single prefix is used
11002 to force opening a link in Emacs, so it may be good to only use a
11003 numeric or double prefix to guide the search function.
11005 In case this is needed, a function in this hook can also restore
11006 the window configuration before `org-open-at-point' was called using:
11008 (set-window-configuration org-window-config-before-follow-link)")
11010 (defun org-link-search (s &optional type avoid-pos stealth)
11011 "Search for a link search option.
11012 If S is surrounded by forward slashes, it is interpreted as a
11013 regular expression. In org-mode files, this will create an `org-occur'
11014 sparse tree. In ordinary files, `occur' will be used to list matches.
11015 If the current buffer is in `dired-mode', grep will be used to search
11016 in all files. If AVOID-POS is given, ignore matches near that position.
11018 When optional argument STEALTH is non-nil, do not modify
11019 visibility around point, thus ignoring `org-show-context-detail'
11020 variable."
11021 (let ((case-fold-search t)
11022 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11023 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11024 (append '(("") (" ") ("\t") ("\n"))
11025 org-emphasis-alist)
11026 "\\|") "\\)"))
11027 (pos (point))
11028 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
11029 (cond
11030 ;; First check if there are any special search functions
11031 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11032 ;; Now try the builtin stuff
11033 ((and (eq (aref s0 0) ?#)
11034 (> (length s0) 1)
11035 (let ((match (org-find-property "CUSTOM_ID" (substring s0 1))))
11036 (and match (goto-char match) (setf type 'dedicated)))))
11037 ((save-excursion
11038 (goto-char (point-min))
11039 (and
11040 (re-search-forward
11041 (concat "<<" (regexp-quote s0) ">>") nil t)
11042 (setq type 'dedicated
11043 pos (match-beginning 0))))
11044 ;; There is an exact target for this
11045 (goto-char pos))
11046 ((save-excursion
11047 (goto-char (point-min))
11048 (and
11049 (re-search-forward
11050 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11051 (setq type 'dedicated pos (match-beginning 0))))
11052 ;; Found an element with a matching #+name affiliated keyword.
11053 (goto-char pos))
11054 ((and (string-match "^(\\(.*\\))$" s0)
11055 (save-excursion
11056 (goto-char (point-min))
11057 (and
11058 (re-search-forward
11059 (concat "[^[]" (regexp-quote
11060 (format org-coderef-label-format
11061 (match-string 1 s0))))
11062 nil t)
11063 (setq type 'dedicated
11064 pos (1+ (match-beginning 0))))))
11065 ;; There is a coderef target for this
11066 (goto-char pos))
11067 ((string-match "^/\\(.*\\)/$" s)
11068 ;; A regular expression
11069 (cond
11070 ((derived-mode-p 'org-mode)
11071 (org-occur (match-string 1 s)))
11072 (t (org-do-occur (match-string 1 s)))))
11073 ((and (derived-mode-p 'org-mode)
11074 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11075 org-link-search-must-match-exact-headline))
11076 ;; Headline search.
11077 (goto-char (point-min))
11078 (cond
11079 ((let (case-fold-search)
11080 (re-search-forward
11081 (let* ((wspace "[ \t]")
11082 (wspaceopt (concat wspace "*"))
11083 (cookie (concat "\\(?:"
11084 wspaceopt
11085 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11086 wspaceopt
11087 "\\)"))
11088 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11089 (concat
11090 org-outline-regexp-bol
11091 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11092 "\\(?:\\[#.\\][ \t]+\\)?"
11093 "\\(?:" org-comment-string "[ \t]+\\)?"
11094 sep "*"
11095 (mapconcat #'identity
11096 (org-split-string (regexp-quote s))
11097 (concat sep "+"))
11098 sep "*"
11099 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11100 "[ \t]*$"))
11101 nil t))
11102 ;; OK, found a match
11103 (setq type 'dedicated)
11104 (goto-char (match-beginning 0)))
11105 ((and (not org-link-search-inhibit-query)
11106 (eq org-link-search-must-match-exact-headline 'query-to-create)
11107 (y-or-n-p "No match - create this as a new heading? "))
11108 (goto-char (point-max))
11109 (unless (bolp) (newline))
11110 (org-insert-heading nil t t)
11111 (insert s "\n")
11112 (beginning-of-line 0))
11114 (goto-char pos)
11115 (error "No match"))))
11117 ;; A normal search string
11118 (remove-text-properties
11119 0 (length s)
11120 '(face nil mouse-face nil keymap nil fontified nil) s)
11121 ;; Make a series of regular expressions to find a match
11122 (setq words (org-split-string s "[ \n\r\t]+")
11124 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11125 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11126 "\\)" markers)
11127 re2a_ (concat "\\(" (mapconcat 'downcase words
11128 "[ \t\r\n]+") "\\)[ \t\r\n]")
11129 re2a (concat "[ \t\r\n]" re2a_)
11130 re4_ (concat "\\(" (mapconcat 'downcase words
11131 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11132 re4 (concat "[^a-zA-Z_]" re4_)
11134 re5 (concat ".*" re4)
11135 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11136 "\\)\\|\\(" re5 "\\)"))
11137 (cond
11138 ((eq type 'org-occur) (org-occur reall))
11139 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11140 (t (goto-char (point-min))
11141 (setq type 'fuzzy)
11142 (if (or (and (org-search-not-self 1 re0 nil t)
11143 (setq type 'dedicated))
11144 (org-search-not-self 1 re2 nil t)
11145 (org-search-not-self 1 re2a nil t)
11146 (org-search-not-self 1 re4 nil t)
11147 (org-search-not-self 1 re5 nil t))
11148 (goto-char (match-beginning 1))
11149 (goto-char pos)
11150 (error "No match"))))))
11151 (and (derived-mode-p 'org-mode)
11152 (not stealth)
11153 (org-show-context 'link-search))
11154 type))
11156 (defun org-search-not-self (group &rest args)
11157 "Execute `re-search-forward', but only accept matches that do not
11158 enclose the position of `org-open-link-marker'."
11159 (let ((m org-open-link-marker))
11160 (catch 'exit
11161 (while (apply 're-search-forward args)
11162 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11163 (goto-char (match-end group))
11164 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11165 (> (match-beginning 0) (marker-position m))
11166 (< (match-end 0) (marker-position m)))
11167 (save-match-data
11168 (or (not (org-in-regexp
11169 org-bracket-link-analytic-regexp 1))
11170 (not (match-end 4)) ; no description
11171 (and (<= (match-beginning 4) (point))
11172 (>= (match-end 4) (point))))))
11173 (throw 'exit (point))))))))
11175 (defun org-get-buffer-for-internal-link (buffer)
11176 "Return a buffer to be used for displaying the link target of internal links."
11177 (cond
11178 ((not org-display-internal-link-with-indirect-buffer)
11179 buffer)
11180 ((string-match "(Clone)$" (buffer-name buffer))
11181 (message "Buffer is already a clone, not making another one")
11182 ;; we also do not modify visibility in this case
11183 buffer)
11184 (t ; make a new indirect buffer for displaying the link
11185 (let* ((bn (buffer-name buffer))
11186 (ibn (concat bn "(Clone)"))
11187 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11188 (with-current-buffer ib (org-overview))
11189 ib))))
11191 (defun org-do-occur (regexp &optional cleanup)
11192 "Call the Emacs command `occur'.
11193 If CLEANUP is non-nil, remove the printout of the regular expression
11194 in the *Occur* buffer. This is useful if the regex is long and not useful
11195 to read."
11196 (occur regexp)
11197 (when cleanup
11198 (let ((cwin (selected-window)) win beg end)
11199 (when (setq win (get-buffer-window "*Occur*"))
11200 (select-window win))
11201 (goto-char (point-min))
11202 (when (re-search-forward "match[a-z]+" nil t)
11203 (setq beg (match-end 0))
11204 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11205 (setq end (1- (match-beginning 0)))))
11206 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11207 (goto-char (point-min))
11208 (select-window cwin))))
11210 ;;; The mark ring for links jumps
11212 (defvar org-mark-ring nil
11213 "Mark ring for positions before jumps in Org-mode.")
11214 (defvar org-mark-ring-last-goto nil
11215 "Last position in the mark ring used to go back.")
11216 ;; Fill and close the ring
11217 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11218 (loop for i from 1 to org-mark-ring-length do
11219 (push (make-marker) org-mark-ring))
11220 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11221 org-mark-ring)
11223 (defun org-mark-ring-push (&optional pos buffer)
11224 "Put the current position or POS into the mark ring and rotate it."
11225 (interactive)
11226 (setq pos (or pos (point)))
11227 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11228 (move-marker (car org-mark-ring)
11229 (or pos (point))
11230 (or buffer (current-buffer)))
11231 (message "%s"
11232 (substitute-command-keys
11233 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11235 (defun org-mark-ring-goto (&optional n)
11236 "Jump to the previous position in the mark ring.
11237 With prefix arg N, jump back that many stored positions. When
11238 called several times in succession, walk through the entire ring.
11239 Org-mode commands jumping to a different position in the current file,
11240 or to another Org-mode file, automatically push the old position
11241 onto the ring."
11242 (interactive "p")
11243 (let (p m)
11244 (if (eq last-command this-command)
11245 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11246 (setq p org-mark-ring))
11247 (setq org-mark-ring-last-goto p)
11248 (setq m (car p))
11249 (org-pop-to-buffer-same-window (marker-buffer m))
11250 (goto-char m)
11251 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11253 (defun org-remove-angle-brackets (s)
11254 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11255 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11257 (defun org-add-angle-brackets (s)
11258 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11259 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11261 (defun org-remove-double-quotes (s)
11262 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11263 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11266 ;;; Following specific links
11268 (defun org-follow-timestamp-link ()
11269 "Open an agenda view for the time-stamp date/range at point."
11270 (cond
11271 ((org-at-date-range-p t)
11272 (let ((org-agenda-start-on-weekday)
11273 (t1 (match-string 1))
11274 (t2 (match-string 2)) tt1 tt2)
11275 (setq tt1 (time-to-days (org-time-string-to-time t1))
11276 tt2 (time-to-days (org-time-string-to-time t2)))
11277 (let ((org-agenda-buffer-tmp-name
11278 (format "*Org Agenda(a:%s)"
11279 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11280 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11281 ((org-at-timestamp-p t)
11282 (let ((org-agenda-buffer-tmp-name
11283 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11284 (org-agenda-list nil (time-to-days (org-time-string-to-time
11285 (substring (match-string 1) 0 10)))
11286 1)))
11287 (t (error "This should not happen"))))
11290 ;;; Following file links
11291 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11292 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11293 (declare-function mailcap-mime-info
11294 "mailcap" (string &optional request no-decode))
11295 (defvar org-wait nil)
11296 (defun org-open-file (path &optional in-emacs line search)
11297 "Open the file at PATH.
11298 First, this expands any special file name abbreviations. Then the
11299 configuration variable `org-file-apps' is checked if it contains an
11300 entry for this file type, and if yes, the corresponding command is launched.
11302 If no application is found, Emacs simply visits the file.
11304 With optional prefix argument IN-EMACS, Emacs will visit the file.
11305 With a double \\[universal-argument] \\[universal-argument] \
11306 prefix arg, Org tries to avoid opening in Emacs
11307 and to use an external application to visit the file.
11309 Optional LINE specifies a line to go to, optional SEARCH a string
11310 to search for. If LINE or SEARCH is given, the file will be
11311 opened in Emacs, unless an entry from org-file-apps that makes
11312 use of groups in a regexp matches.
11314 If you want to change the way frames are used when following a
11315 link, please customize `org-link-frame-setup'.
11317 If the file does not exist, an error is thrown."
11318 (let* ((file (if (equal path "")
11319 buffer-file-name
11320 (substitute-in-file-name (expand-file-name path))))
11321 (file-apps (append org-file-apps (org-default-apps)))
11322 (apps (org-remove-if
11323 'org-file-apps-entry-match-against-dlink-p file-apps))
11324 (apps-dlink (org-remove-if-not
11325 'org-file-apps-entry-match-against-dlink-p file-apps))
11326 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11327 (dirp (if remp nil (file-directory-p file)))
11328 (file (if (and dirp org-open-directory-means-index-dot-org)
11329 (concat (file-name-as-directory file) "index.org")
11330 file))
11331 (a-m-a-p (assq 'auto-mode apps))
11332 (dfile (downcase file))
11333 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11334 (link (cond ((and (eq line nil)
11335 (eq search nil))
11336 file)
11337 (line
11338 (concat file "::" (number-to-string line)))
11339 (search
11340 (concat file "::" search))))
11341 (dlink (downcase link))
11342 (old-buffer (current-buffer))
11343 (old-pos (point))
11344 (old-mode major-mode)
11345 ext cmd link-match-data)
11346 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11347 (setq ext (match-string 1 dfile))
11348 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11349 (setq ext (match-string 1 dfile))))
11350 (cond
11351 ((member in-emacs '((16) system))
11352 (setq cmd (cdr (assoc 'system apps))))
11353 (in-emacs (setq cmd 'emacs))
11355 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11356 (and dirp (cdr (assoc 'directory apps)))
11357 ; first, try matching against apps-dlink
11358 ; if we get a match here, store the match data for later
11359 (let ((match (assoc-default dlink apps-dlink
11360 'string-match)))
11361 (if match
11362 (progn (setq link-match-data (match-data))
11363 match)
11364 (progn (setq in-emacs (or in-emacs line search))
11365 nil))) ; if we have no match in apps-dlink,
11366 ; always open the file in emacs if line or search
11367 ; is given (for backwards compatibility)
11368 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11369 'string-match)
11370 (cdr (assoc ext apps))
11371 (cdr (assoc t apps))))))
11372 (when (eq cmd 'system)
11373 (setq cmd (cdr (assoc 'system apps))))
11374 (when (eq cmd 'default)
11375 (setq cmd (cdr (assoc t apps))))
11376 (when (eq cmd 'mailcap)
11377 (require 'mailcap)
11378 (mailcap-parse-mailcaps)
11379 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11380 (command (mailcap-mime-info mime-type)))
11381 (if (stringp command)
11382 (setq cmd command)
11383 (setq cmd 'emacs))))
11384 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11385 (not (file-exists-p file))
11386 (not org-open-non-existing-files))
11387 (user-error "No such file: %s" file))
11388 (cond
11389 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11390 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11391 (while (string-match "['\"]%s['\"]" cmd)
11392 (setq cmd (replace-match "%s" t t cmd)))
11393 (while (string-match "%s" cmd)
11394 (setq cmd (replace-match
11395 (save-match-data
11396 (shell-quote-argument
11397 (convert-standard-filename file)))
11398 t t cmd)))
11400 ;; Replace "%1", "%2" etc. in command with group matches from regex
11401 (save-match-data
11402 (let ((match-index 1)
11403 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11404 (set-match-data link-match-data)
11405 (while (<= match-index number-of-groups)
11406 (let ((regex (concat "%" (number-to-string match-index)))
11407 (replace-with (match-string match-index dlink)))
11408 (while (string-match regex cmd)
11409 (setq cmd (replace-match replace-with t t cmd))))
11410 (setq match-index (+ match-index 1)))))
11412 (save-window-excursion
11413 (message "Running %s...done" cmd)
11414 (start-process-shell-command cmd nil cmd)
11415 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11416 ((or (stringp cmd)
11417 (eq cmd 'emacs))
11418 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11419 (widen)
11420 (if line (progn (org-goto-line line)
11421 (if (derived-mode-p 'org-mode)
11422 (org-reveal)))
11423 (if search (org-link-search search))))
11424 ((consp cmd)
11425 (let ((file (convert-standard-filename file)))
11426 (save-match-data
11427 (set-match-data link-match-data)
11428 (eval cmd))))
11429 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11430 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11431 (or (not (equal old-buffer (current-buffer)))
11432 (not (equal old-pos (point))))
11433 (org-mark-ring-push old-pos old-buffer))))
11435 (defun org-file-apps-entry-match-against-dlink-p (entry)
11436 "This function returns non-nil if `entry' uses a regular
11437 expression which should be matched against the whole link by
11438 org-open-file.
11440 It assumes that is the case when the entry uses a regular
11441 expression which has at least one grouping construct and the
11442 action is either a lisp form or a command string containing
11443 '%1', i.e. using at least one subexpression match as a
11444 parameter."
11445 (let ((selector (car entry))
11446 (action (cdr entry)))
11447 (if (stringp selector)
11448 (and (> (regexp-opt-depth selector) 0)
11449 (or (and (stringp action)
11450 (string-match "%[0-9]" action))
11451 (consp action)))
11452 nil)))
11454 (defun org-default-apps ()
11455 "Return the default applications for this operating system."
11456 (cond
11457 ((eq system-type 'darwin)
11458 org-file-apps-defaults-macosx)
11459 ((eq system-type 'windows-nt)
11460 org-file-apps-defaults-windowsnt)
11461 (t org-file-apps-defaults-gnu)))
11463 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11464 "Convert extensions to regular expressions in the cars of LIST.
11465 Also, weed out any non-string entries, because the return value is used
11466 only for regexp matching.
11467 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11468 point to the symbol `emacs', indicating that the file should
11469 be opened in Emacs."
11470 (append
11471 (delq nil
11472 (mapcar (lambda (x)
11473 (if (not (stringp (car x)))
11475 (if (string-match "\\W" (car x))
11477 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11478 list))
11479 (if add-auto-mode
11480 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11482 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11483 (defun org-file-remote-p (file)
11484 "Test whether FILE specifies a location on a remote system.
11485 Return non-nil if the location is indeed remote.
11487 For example, the filename \"/user@host:/foo\" specifies a location
11488 on the system \"/user@host:\"."
11489 (cond ((fboundp 'file-remote-p)
11490 (file-remote-p file))
11491 ((fboundp 'tramp-handle-file-remote-p)
11492 (tramp-handle-file-remote-p file))
11493 ((and (boundp 'ange-ftp-name-format)
11494 (string-match (car ange-ftp-name-format) file))
11495 t)))
11498 ;;;; Refiling
11500 (defun org-get-org-file ()
11501 "Read a filename, with default directory `org-directory'."
11502 (let ((default (or org-default-notes-file remember-data-file)))
11503 (read-file-name (format "File name [%s]: " default)
11504 (file-name-as-directory org-directory)
11505 default)))
11507 (defun org-notes-order-reversed-p ()
11508 "Check if the current file should receive notes in reversed order."
11509 (cond
11510 ((not org-reverse-note-order) nil)
11511 ((eq t org-reverse-note-order) t)
11512 ((not (listp org-reverse-note-order)) nil)
11513 (t (catch 'exit
11514 (let ((all org-reverse-note-order)
11515 entry)
11516 (while (setq entry (pop all))
11517 (if (string-match (car entry) buffer-file-name)
11518 (throw 'exit (cdr entry))))
11519 nil)))))
11521 (defvar org-refile-target-table nil
11522 "The list of refile targets, created by `org-refile'.")
11524 (defvar org-agenda-new-buffers nil
11525 "Buffers created to visit agenda files.")
11527 (defvar org-refile-cache nil
11528 "Cache for refile targets.")
11530 (defvar org-refile-markers nil
11531 "All the markers used for caching refile locations.")
11533 (defun org-refile-marker (pos)
11534 "Get a new refile marker, but only if caching is in use."
11535 (if (not org-refile-use-cache)
11537 (let ((m (make-marker)))
11538 (move-marker m pos)
11539 (push m org-refile-markers)
11540 m)))
11542 (defun org-refile-cache-clear ()
11543 "Clear the refile cache and disable all the markers."
11544 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11545 (setq org-refile-markers nil)
11546 (setq org-refile-cache nil)
11547 (message "Refile cache has been cleared"))
11549 (defun org-refile-cache-check-set (set)
11550 "Check if all the markers in the cache still have live buffers."
11551 (let (marker)
11552 (catch 'exit
11553 (while (and set (setq marker (nth 3 (pop set))))
11554 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11555 (when (and marker (null (marker-buffer marker)))
11556 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11557 (sit-for 3)
11558 (throw 'exit nil)))
11559 t)))
11561 (defun org-refile-cache-put (set &rest identifiers)
11562 "Push the refile targets SET into the cache, under IDENTIFIERS."
11563 (let* ((key (sha1 (prin1-to-string identifiers)))
11564 (entry (assoc key org-refile-cache)))
11565 (if entry
11566 (setcdr entry set)
11567 (push (cons key set) org-refile-cache))))
11569 (defun org-refile-cache-get (&rest identifiers)
11570 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11571 (cond
11572 ((not org-refile-cache) nil)
11573 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11575 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11576 org-refile-cache))))
11577 (and set (org-refile-cache-check-set set) set)))))
11579 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11580 "Produce a table with refile targets."
11581 (let ((case-fold-search nil)
11582 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11583 (entries (or org-refile-targets '((nil . (:level . 1)))))
11584 targets tgs txt re files f desc descre fast-path-p level pos0)
11585 (message "Getting targets...")
11586 (with-current-buffer (or default-buffer (current-buffer))
11587 (while (setq entry (pop entries))
11588 (setq files (car entry) desc (cdr entry))
11589 (setq fast-path-p nil)
11590 (cond
11591 ((null files) (setq files (list (current-buffer))))
11592 ((eq files 'org-agenda-files)
11593 (setq files (org-agenda-files 'unrestricted)))
11594 ((and (symbolp files) (fboundp files))
11595 (setq files (funcall files)))
11596 ((and (symbolp files) (boundp files))
11597 (setq files (symbol-value files))))
11598 (if (stringp files) (setq files (list files)))
11599 (cond
11600 ((eq (car desc) :tag)
11601 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11602 ((eq (car desc) :todo)
11603 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11604 ((eq (car desc) :regexp)
11605 (setq descre (cdr desc)))
11606 ((eq (car desc) :level)
11607 (setq descre (concat "^\\*\\{" (number-to-string
11608 (if org-odd-levels-only
11609 (1- (* 2 (cdr desc)))
11610 (cdr desc)))
11611 "\\}[ \t]")))
11612 ((eq (car desc) :maxlevel)
11613 (setq fast-path-p t)
11614 (setq descre (concat "^\\*\\{1," (number-to-string
11615 (if org-odd-levels-only
11616 (1- (* 2 (cdr desc)))
11617 (cdr desc)))
11618 "\\}[ \t]")))
11619 (t (error "Bad refiling target description %s" desc)))
11620 (while (setq f (pop files))
11621 (with-current-buffer
11622 (if (bufferp f) f (org-get-agenda-file-buffer f))
11624 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11625 (progn
11626 (if (bufferp f) (setq f (buffer-file-name
11627 (buffer-base-buffer f))))
11628 (setq f (and f (expand-file-name f)))
11629 (if (eq org-refile-use-outline-path 'file)
11630 (push (list (file-name-nondirectory f) f nil nil) tgs))
11631 (save-excursion
11632 (save-restriction
11633 (widen)
11634 (goto-char (point-min))
11635 (while (re-search-forward descre nil t)
11636 (goto-char (setq pos0 (point-at-bol)))
11637 (catch 'next
11638 (when org-refile-target-verify-function
11639 (save-match-data
11640 (or (funcall org-refile-target-verify-function)
11641 (throw 'next t))))
11642 (when (and (looking-at org-complex-heading-regexp)
11643 (not (member (match-string 4) excluded-entries))
11644 (match-string 4))
11645 (setq level (org-reduced-level
11646 (- (match-end 1) (match-beginning 1)))
11647 txt (org-link-display-format (match-string 4))
11648 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11649 re (format org-complex-heading-regexp-format
11650 (regexp-quote (match-string 4))))
11651 (when org-refile-use-outline-path
11652 (setq txt (mapconcat
11653 'org-protect-slash
11654 (append
11655 (if (eq org-refile-use-outline-path
11656 'file)
11657 (list (file-name-nondirectory
11658 (buffer-file-name
11659 (buffer-base-buffer))))
11660 (if (eq org-refile-use-outline-path
11661 'full-file-path)
11662 (list (buffer-file-name
11663 (buffer-base-buffer)))))
11664 (org-get-outline-path fast-path-p
11665 level txt)
11666 (list txt))
11667 "/")))
11668 (push (list txt f re (org-refile-marker (point)))
11669 tgs)))
11670 (when (= (point) pos0)
11671 ;; verification function has not moved point
11672 (goto-char (point-at-eol))))))))
11673 (when org-refile-use-cache
11674 (org-refile-cache-put tgs (buffer-file-name) descre))
11675 (setq targets (append tgs targets))))))
11676 (message "Getting targets...done")
11677 (nreverse targets)))
11679 (defun org-protect-slash (s)
11680 (while (string-match "/" s)
11681 (setq s (replace-match "\\" t t s)))
11684 (defvar org-olpa (make-vector 20 nil))
11686 (defun org-get-outline-path (&optional fastp level heading)
11687 "Return the outline path to the current entry, as a list.
11689 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11690 routine which makes outline path derivations for an entire file,
11691 avoiding backtracing. Refile target collection makes use of that."
11692 (if fastp
11693 (progn
11694 (if (> level 19)
11695 (error "Outline path failure, more than 19 levels"))
11696 (loop for i from level upto 19 do
11697 (aset org-olpa i nil))
11698 (prog1
11699 (delq nil (append org-olpa nil))
11700 (aset org-olpa level heading)))
11701 (let (rtn case-fold-search)
11702 (save-excursion
11703 (save-restriction
11704 (widen)
11705 (while (org-up-heading-safe)
11706 (when (looking-at org-complex-heading-regexp)
11707 (push (org-trim
11708 (replace-regexp-in-string
11709 ;; Remove statistical/checkboxes cookies
11710 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11711 (org-match-string-no-properties 4)))
11712 rtn)))
11713 rtn)))))
11715 (defun org-format-outline-path (path &optional width prefix separator)
11716 "Format the outline path PATH for display.
11717 WIDTH is the maximum number of characters that is available.
11718 PREFIX is a prefix to be included in the returned string,
11719 such as the file name.
11720 SEPARATOR is inserted between the different parts of the path,
11721 the default is \"/\"."
11722 (setq width (or width 79))
11723 (if prefix (setq width (- width (length prefix))))
11724 (if (not path)
11725 (or prefix "")
11726 (let* ((nsteps (length path))
11727 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11728 (maxwidth (if (<= total-width width)
11729 10000 ;; everything fits
11730 ;; we need to shorten the level headings
11731 (/ (- width nsteps) nsteps)))
11732 (org-odd-levels-only nil)
11733 (n 0)
11734 (total (1+ (length prefix))))
11735 (setq maxwidth (max maxwidth 10))
11736 (concat prefix
11737 (if prefix (or separator "/"))
11738 (mapconcat
11739 (lambda (h)
11740 (setq n (1+ n))
11741 (if (and (= n nsteps) (< maxwidth 10000))
11742 (setq maxwidth (- total-width total)))
11743 (if (< (length h) maxwidth)
11744 (progn (setq total (+ total (length h) 1)) h)
11745 (setq h (substring h 0 (- maxwidth 2))
11746 total (+ total maxwidth 1))
11747 (if (string-match "[ \t]+\\'" h)
11748 (setq h (substring h 0 (match-beginning 0))))
11749 (setq h (concat h "..")))
11750 (org-add-props h nil 'face
11751 (nth (% (1- n) org-n-level-faces)
11752 org-level-faces))
11754 path (or separator "/"))))))
11756 (defun org-display-outline-path (&optional file current separator just-return-string)
11757 "Display the current outline path in the echo area.
11759 If FILE is non-nil, prepend the output with the file name.
11760 If CURRENT is non-nil, append the current heading to the output.
11761 SEPARATOR is passed through to `org-format-outline-path'. It separates
11762 the different parts of the path and defaults to \"/\".
11763 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11764 (interactive "P")
11765 (let* (case-fold-search
11766 (bfn (buffer-file-name (buffer-base-buffer)))
11767 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11768 res)
11769 (if current (setq path (append path
11770 (save-excursion
11771 (org-back-to-heading t)
11772 (if (looking-at org-complex-heading-regexp)
11773 (list (match-string 4)))))))
11774 (setq res
11775 (org-format-outline-path
11776 path
11777 (1- (frame-width))
11778 (and file bfn (concat (file-name-nondirectory bfn) separator))
11779 separator))
11780 (if just-return-string
11781 (org-no-properties res)
11782 (org-unlogged-message "%s" res))))
11784 (defvar org-refile-history nil
11785 "History for refiling operations.")
11787 (defvar org-after-refile-insert-hook nil
11788 "Hook run after `org-refile' has inserted its stuff at the new location.
11789 Note that this is still *before* the stuff will be removed from
11790 the *old* location.")
11792 (defvar org-capture-last-stored-marker)
11793 (defvar org-refile-keep nil
11794 "Non-nil means `org-refile' will copy instead of refile.")
11796 (defun org-copy ()
11797 "Like `org-refile', but copy."
11798 (interactive)
11799 (let ((org-refile-keep t))
11800 (funcall 'org-refile nil nil nil "Copy")))
11802 (defun org-refile (&optional arg default-buffer rfloc msg)
11803 "Move the entry or entries at point to another heading.
11804 The list of target headings is compiled using the information in
11805 `org-refile-targets', which see.
11807 At the target location, the entry is filed as a subitem of the
11808 target heading. Depending on `org-reverse-note-order', the new
11809 subitem will either be the first or the last subitem.
11811 If there is an active region, all entries in that region will be
11812 refiled. However, the region must fulfill the requirement that
11813 the first heading sets the top-level of the moved text.
11815 With prefix arg ARG, the command will only visit the target
11816 location and not actually move anything.
11818 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11819 refiling operation has put the subtree.
11821 With a numeric prefix argument of `2', refile to the running clock.
11823 With a numeric prefix argument of `3', emulate `org-refile-keep'
11824 being set to `t' and copy to the target location, don't move it.
11825 Beware that keeping refiled entries may result in duplicated ID
11826 properties.
11828 RFLOC can be a refile location obtained in a different way.
11830 MSG is a string to replace \"Refile\" in the default prompt with
11831 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11833 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11835 If you are using target caching (see `org-refile-use-cache'), you
11836 have to clear the target cache in order to find new targets.
11837 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11838 prefix argument (`C-u C-u C-u C-c C-w')."
11839 (interactive "P")
11840 (if (member arg '(0 (64)))
11841 (org-refile-cache-clear)
11842 (let* ((actionmsg (cond (msg msg)
11843 ((equal arg 3) "Refile (and keep)")
11844 (t "Refile")))
11845 (cbuf (current-buffer))
11846 (regionp (org-region-active-p))
11847 (region-start (and regionp (region-beginning)))
11848 (region-end (and regionp (region-end)))
11849 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11850 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11851 pos it nbuf file re level reversed)
11852 (setq last-command nil)
11853 (when regionp
11854 (goto-char region-start)
11855 (or (bolp) (goto-char (point-at-bol)))
11856 (setq region-start (point))
11857 (unless (or (org-kill-is-subtree-p
11858 (buffer-substring region-start region-end))
11859 (prog1 org-refile-active-region-within-subtree
11860 (let ((s (point-at-eol)))
11861 (org-toggle-heading)
11862 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11863 (user-error "The region is not a (sequence of) subtree(s)")))
11864 (if (equal arg '(16))
11865 (org-refile-goto-last-stored)
11866 (when (or
11867 (and (equal arg 2)
11868 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11869 (prog1
11870 (setq it (list (or org-clock-heading "running clock")
11871 (buffer-file-name
11872 (marker-buffer org-clock-hd-marker))
11874 (marker-position org-clock-hd-marker)))
11875 (setq arg nil)))
11876 (setq it (or rfloc
11877 (let (heading-text)
11878 (save-excursion
11879 (unless (and arg (listp arg))
11880 (org-back-to-heading t)
11881 (setq heading-text
11882 (replace-regexp-in-string
11883 org-bracket-link-regexp
11884 "\\3"
11885 (nth 4 (org-heading-components)))))
11886 (org-refile-get-location
11887 (cond ((and arg (listp arg)) "Goto")
11888 (regionp (concat actionmsg " region to"))
11889 (t (concat actionmsg " subtree \""
11890 heading-text "\" to")))
11891 default-buffer
11892 (and (not (equal '(4) arg))
11893 org-refile-allow-creating-parent-nodes)
11894 arg))))))
11895 (setq file (nth 1 it)
11896 re (nth 2 it)
11897 pos (nth 3 it))
11898 (if (and (not arg)
11900 (equal (buffer-file-name) file)
11901 (if regionp
11902 (and (>= pos region-start)
11903 (<= pos region-end))
11904 (and (>= pos (point))
11905 (< pos (save-excursion
11906 (org-end-of-subtree t t))))))
11907 (error "Cannot refile to position inside the tree or region"))
11908 (setq nbuf (or (find-buffer-visiting file)
11909 (find-file-noselect file)))
11910 (if (and arg (not (equal arg 3)))
11911 (progn
11912 (org-pop-to-buffer-same-window nbuf)
11913 (goto-char pos)
11914 (org-show-context 'org-goto))
11915 (if regionp
11916 (progn
11917 (org-kill-new (buffer-substring region-start region-end))
11918 (org-save-markers-in-region region-start region-end))
11919 (org-copy-subtree 1 nil t))
11920 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11921 (find-file-noselect file)))
11922 (setq reversed (org-notes-order-reversed-p))
11923 (save-excursion
11924 (save-restriction
11925 (widen)
11926 (if pos
11927 (progn
11928 (goto-char pos)
11929 (looking-at org-outline-regexp)
11930 (setq level (org-get-valid-level (funcall outline-level) 1))
11931 (goto-char
11932 (if reversed
11933 (or (outline-next-heading) (point-max))
11934 (or (save-excursion (org-get-next-sibling))
11935 (org-end-of-subtree t t)
11936 (point-max)))))
11937 (setq level 1)
11938 (if (not reversed)
11939 (goto-char (point-max))
11940 (goto-char (point-min))
11941 (or (outline-next-heading) (goto-char (point-max)))))
11942 (if (not (bolp)) (newline))
11943 (org-paste-subtree level nil nil t)
11944 (when org-log-refile
11945 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11946 (unless (eq org-log-refile 'note)
11947 (save-excursion (org-add-log-note))))
11948 (and org-auto-align-tags
11949 (let ((org-loop-over-headlines-in-active-region nil))
11950 (org-set-tags nil t)))
11951 (let ((bookmark-name (plist-get org-bookmark-names-plist
11952 :last-refile)))
11953 (when bookmark-name
11954 (with-demoted-errors
11955 (bookmark-set bookmark-name))))
11956 ;; If we are refiling for capture, make sure that the
11957 ;; last-capture pointers point here
11958 (when (org-bound-and-true-p org-refile-for-capture)
11959 (let ((bookmark-name (plist-get org-bookmark-names-plist
11960 :last-capture-marker)))
11961 (when bookmark-name
11962 (with-demoted-errors
11963 (bookmark-set bookmark-name))))
11964 (move-marker org-capture-last-stored-marker (point)))
11965 (if (fboundp 'deactivate-mark) (deactivate-mark))
11966 (run-hooks 'org-after-refile-insert-hook))))
11967 (unless org-refile-keep
11968 (if regionp
11969 (delete-region (point) (+ (point) (- region-end region-start)))
11970 (delete-region
11971 (and (org-back-to-heading t) (point))
11972 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11973 (when (featurep 'org-inlinetask)
11974 (org-inlinetask-remove-END-maybe))
11975 (setq org-markers-to-move nil)
11976 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11978 (defun org-refile-goto-last-stored ()
11979 "Go to the location where the last refile was stored."
11980 (interactive)
11981 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11982 (message "This is the location of the last refile"))
11984 (defun org-refile--get-location (refloc tbl)
11985 "When user refile to REFLOC, find the associated target in TBL.
11986 Also check `org-refile-target-table'."
11987 (car (delq
11989 (mapcar
11990 (lambda (r) (or (assoc r tbl)
11991 (assoc r org-refile-target-table)))
11992 (list (replace-regexp-in-string "/$" "" refloc)
11993 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11995 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11996 no-exclude)
11997 "Prompt the user for a refile location, using PROMPT.
11998 PROMPT should not be suffixed with a colon and a space, because
11999 this function appends the default value from
12000 `org-refile-history' automatically, if that is not empty.
12001 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12002 this is used for the GOTO interface."
12003 (let ((org-refile-targets org-refile-targets)
12004 (org-refile-use-outline-path org-refile-use-outline-path)
12005 excluded-entries)
12006 (when (and (derived-mode-p 'org-mode)
12007 (not org-refile-use-cache)
12008 (not no-exclude))
12009 (org-map-tree
12010 (lambda()
12011 (setq excluded-entries
12012 (append excluded-entries (list (org-get-heading t t)))))))
12013 (setq org-refile-target-table
12014 (org-refile-get-targets default-buffer excluded-entries)))
12015 (unless org-refile-target-table
12016 (user-error "No refile targets"))
12017 (let* ((cbuf (current-buffer))
12018 (partial-completion-mode nil)
12019 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12020 (cfunc (if (and org-refile-use-outline-path
12021 org-outline-path-complete-in-steps)
12022 'org-olpath-completing-read
12023 'org-icompleting-read))
12024 (extra (if org-refile-use-outline-path "/" ""))
12025 (cbnex (concat (buffer-name) extra))
12026 (filename (and cfn (expand-file-name cfn)))
12027 (tbl (mapcar
12028 (lambda (x)
12029 (if (and (not (member org-refile-use-outline-path
12030 '(file full-file-path)))
12031 (not (equal filename (nth 1 x))))
12032 (cons (concat (car x) extra " ("
12033 (file-name-nondirectory (nth 1 x)) ")")
12034 (cdr x))
12035 (cons (concat (car x) extra) (cdr x))))
12036 org-refile-target-table))
12037 (completion-ignore-case t)
12038 cdef
12039 (prompt (concat prompt
12040 (or (and (car org-refile-history)
12041 (concat " (default " (car org-refile-history) ")"))
12042 (and (assoc cbnex tbl) (setq cdef cbnex)
12043 (concat " (default " cbnex ")"))) ": "))
12044 pa answ parent-target child parent old-hist)
12045 (setq old-hist org-refile-history)
12046 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12047 nil 'org-refile-history (or cdef (car org-refile-history))))
12048 (if (setq pa (org-refile--get-location answ tbl))
12049 (progn
12050 (org-refile-check-position pa)
12051 (when (or (not org-refile-history)
12052 (not (eq old-hist org-refile-history))
12053 (not (equal (car pa) (car org-refile-history))))
12054 (setq org-refile-history
12055 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12056 org-refile-history
12057 (cdr org-refile-history))))
12058 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12059 (pop org-refile-history)))
12061 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12062 (progn
12063 (setq parent (match-string 1 answ)
12064 child (match-string 2 answ))
12065 (setq parent-target (org-refile--get-location parent tbl))
12066 (when (and parent-target
12067 (or (eq new-nodes t)
12068 (and (eq new-nodes 'confirm)
12069 (y-or-n-p (format "Create new node \"%s\"? "
12070 child)))))
12071 (org-refile-new-child parent-target child)))
12072 (user-error "Invalid target location")))))
12074 (declare-function org-string-nw-p "org-macs" (s))
12075 (defun org-refile-check-position (refile-pointer)
12076 "Check if the refile pointer matches the headline to which it points."
12077 (let* ((file (nth 1 refile-pointer))
12078 (re (nth 2 refile-pointer))
12079 (pos (nth 3 refile-pointer))
12080 buffer)
12081 (if (and (not (markerp pos)) (not file))
12082 (user-error "Please indicate a target file in the refile path")
12083 (when (org-string-nw-p re)
12084 (setq buffer (if (markerp pos)
12085 (marker-buffer pos)
12086 (or (find-buffer-visiting file)
12087 (find-file-noselect file))))
12088 (with-current-buffer buffer
12089 (save-excursion
12090 (save-restriction
12091 (widen)
12092 (goto-char pos)
12093 (beginning-of-line 1)
12094 (unless (org-looking-at-p re)
12095 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12097 (defun org-refile-new-child (parent-target child)
12098 "Use refile target PARENT-TARGET to add new CHILD below it."
12099 (unless parent-target
12100 (error "Cannot find parent for new node"))
12101 (let ((file (nth 1 parent-target))
12102 (pos (nth 3 parent-target))
12103 level)
12104 (with-current-buffer (or (find-buffer-visiting file)
12105 (find-file-noselect file))
12106 (save-excursion
12107 (save-restriction
12108 (widen)
12109 (if pos
12110 (goto-char pos)
12111 (goto-char (point-max))
12112 (if (not (bolp)) (newline)))
12113 (when (looking-at org-outline-regexp)
12114 (setq level (funcall outline-level))
12115 (org-end-of-subtree t t))
12116 (org-back-over-empty-lines)
12117 (insert "\n" (make-string
12118 (if pos (org-get-valid-level level 1) 1) ?*)
12119 " " child "\n")
12120 (beginning-of-line 0)
12121 (list (concat (car parent-target) "/" child) file "" (point)))))))
12123 (defun org-olpath-completing-read (prompt collection &rest args)
12124 "Read an outline path like a file name."
12125 (let ((thetable collection)
12126 (org-completion-use-ido nil) ; does not work with ido.
12127 (org-completion-use-iswitchb nil)) ; or iswitchb
12128 (apply
12129 'org-icompleting-read prompt
12130 (lambda (string predicate &optional flag)
12131 (let (rtn r f (l (length string)))
12132 (cond
12133 ((eq flag nil)
12134 ;; try completion
12135 (try-completion string thetable))
12136 ((eq flag t)
12137 ;; all-completions
12138 (setq rtn (all-completions string thetable predicate))
12139 (mapcar
12140 (lambda (x)
12141 (setq r (substring x l))
12142 (if (string-match " ([^)]*)$" x)
12143 (setq f (match-string 0 x))
12144 (setq f ""))
12145 (if (string-match "/" r)
12146 (concat string (substring r 0 (match-end 0)) f)
12148 rtn))
12149 ((eq flag 'lambda)
12150 ;; exact match?
12151 (assoc string thetable)))))
12152 args)))
12154 ;;;; Dynamic blocks
12156 (defun org-find-dblock (name)
12157 "Find the first dynamic block with name NAME in the buffer.
12158 If not found, stay at current position and return nil."
12159 (let ((case-fold-search t) pos)
12160 (save-excursion
12161 (goto-char (point-min))
12162 (setq pos (and (re-search-forward
12163 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12164 (match-beginning 0))))
12165 (if pos (goto-char pos))
12166 pos))
12168 (defun org-create-dblock (plist)
12169 "Create a dynamic block section, with parameters taken from PLIST.
12170 PLIST must contain a :name entry which is used as the name of the block."
12171 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12172 (end-of-line 1)
12173 (newline))
12174 (let ((col (current-column))
12175 (name (plist-get plist :name)))
12176 (insert "#+BEGIN: " name)
12177 (while plist
12178 (if (eq (car plist) :name)
12179 (setq plist (cddr plist))
12180 (insert " " (prin1-to-string (pop plist)))))
12181 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12182 (beginning-of-line -2)))
12184 (defun org-prepare-dblock ()
12185 "Prepare dynamic block for refresh.
12186 This empties the block, puts the cursor at the insert position and returns
12187 the property list including an extra property :name with the block name."
12188 (unless (looking-at org-dblock-start-re)
12189 (user-error "Not at a dynamic block"))
12190 (let* ((begdel (1+ (match-end 0)))
12191 (name (org-no-properties (match-string 1)))
12192 (params (append (list :name name)
12193 (read (concat "(" (match-string 3) ")")))))
12194 (save-excursion
12195 (beginning-of-line 1)
12196 (skip-chars-forward " \t")
12197 (setq params (plist-put params :indentation-column (current-column))))
12198 (unless (re-search-forward org-dblock-end-re nil t)
12199 (error "Dynamic block not terminated"))
12200 (setq params
12201 (append params
12202 (list :content (buffer-substring
12203 begdel (match-beginning 0)))))
12204 (delete-region begdel (match-beginning 0))
12205 (goto-char begdel)
12206 (open-line 1)
12207 params))
12209 (defun org-map-dblocks (&optional command)
12210 "Apply COMMAND to all dynamic blocks in the current buffer.
12211 If COMMAND is not given, use `org-update-dblock'."
12212 (let ((cmd (or command 'org-update-dblock)))
12213 (save-excursion
12214 (goto-char (point-min))
12215 (while (re-search-forward org-dblock-start-re nil t)
12216 (goto-char (match-beginning 0))
12217 (save-excursion
12218 (condition-case nil
12219 (funcall cmd)
12220 (error (message "Error during update of dynamic block"))))
12221 (unless (re-search-forward org-dblock-end-re nil t)
12222 (error "Dynamic block not terminated"))))))
12224 (defun org-dblock-update (&optional arg)
12225 "User command for updating dynamic blocks.
12226 Update the dynamic block at point. With prefix ARG, update all dynamic
12227 blocks in the buffer."
12228 (interactive "P")
12229 (if arg
12230 (org-update-all-dblocks)
12231 (or (looking-at org-dblock-start-re)
12232 (org-beginning-of-dblock))
12233 (org-update-dblock)))
12235 (defun org-update-dblock ()
12236 "Update the dynamic block at point.
12237 This means to empty the block, parse for parameters and then call
12238 the correct writing function."
12239 (interactive)
12240 (save-excursion
12241 (let* ((win (selected-window))
12242 (pos (point))
12243 (line (org-current-line))
12244 (params (org-prepare-dblock))
12245 (name (plist-get params :name))
12246 (indent (plist-get params :indentation-column))
12247 (cmd (intern (concat "org-dblock-write:" name))))
12248 (message "Updating dynamic block `%s' at line %d..." name line)
12249 (funcall cmd params)
12250 (message "Updating dynamic block `%s' at line %d...done" name line)
12251 (goto-char pos)
12252 (when (and indent (> indent 0))
12253 (setq indent (make-string indent ?\ ))
12254 (save-excursion
12255 (select-window win)
12256 (org-beginning-of-dblock)
12257 (forward-line 1)
12258 (while (not (looking-at org-dblock-end-re))
12259 (insert indent)
12260 (beginning-of-line 2))
12261 (when (looking-at org-dblock-end-re)
12262 (and (looking-at "[ \t]+")
12263 (replace-match ""))
12264 (insert indent)))))))
12266 (defun org-beginning-of-dblock ()
12267 "Find the beginning of the dynamic block at point.
12268 Error if there is no such block at point."
12269 (let ((pos (point))
12270 beg)
12271 (end-of-line 1)
12272 (if (and (re-search-backward org-dblock-start-re nil t)
12273 (setq beg (match-beginning 0))
12274 (re-search-forward org-dblock-end-re nil t)
12275 (> (match-end 0) pos))
12276 (goto-char beg)
12277 (goto-char pos)
12278 (error "Not in a dynamic block"))))
12280 (defun org-update-all-dblocks ()
12281 "Update all dynamic blocks in the buffer.
12282 This function can be used in a hook."
12283 (interactive)
12284 (when (derived-mode-p 'org-mode)
12285 (org-map-dblocks 'org-update-dblock)))
12288 ;;;; Completion
12290 (declare-function org-export-backend-name "org-export" (cl-x))
12291 (declare-function org-export-backend-options "org-export" (cl-x))
12292 (defun org-get-export-keywords ()
12293 "Return a list of all currently understood export keywords.
12294 Export keywords include options, block names, attributes and
12295 keywords relative to each registered export back-end."
12296 (let (keywords)
12297 (dolist (backend
12298 (org-bound-and-true-p org-export-registered-backends)
12299 (delq nil keywords))
12300 ;; Back-end name (for keywords, like #+LATEX:)
12301 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12302 (dolist (option-entry (org-export-backend-options backend))
12303 ;; Back-end options.
12304 (push (nth 1 option-entry) keywords)))))
12306 (defconst org-options-keywords
12307 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12308 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12309 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12310 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12311 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12313 (defcustom org-structure-template-alist
12314 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12315 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12316 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12317 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12318 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12319 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12320 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12321 ("L" "#+LaTeX: ")
12322 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12323 ("H" "#+HTML: ")
12324 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12325 ("A" "#+ASCII: ")
12326 ("i" "#+INDEX: ?")
12327 ("I" "#+INCLUDE: %file ?"))
12328 "Structure completion elements.
12329 This is a list of abbreviation keys and values. The value gets inserted
12330 if you type `<' followed by the key and then press the completion key,
12331 usually `TAB'. %file will be replaced by a file name after prompting
12332 for the file using completion. The cursor will be placed at the position
12333 of the `?` in the template.
12334 There are two templates for each key, the first uses the original Org syntax,
12335 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12336 the default when the /org-mtags.el/ module has been loaded. See also the
12337 variable `org-mtags-prefer-muse-templates'."
12338 :group 'org-completion
12339 :type '(repeat
12340 (list
12341 (string :tag "Key")
12342 (string :tag "Template")))
12343 :version "25.1"
12344 :package-version '(Org . "8.3"))
12346 (defun org-try-structure-completion ()
12347 "Try to complete a structure template before point.
12348 This looks for strings like \"<e\" on an otherwise empty line and
12349 expands them."
12350 (let ((l (buffer-substring (point-at-bol) (point)))
12352 (when (and (looking-at "[ \t]*$")
12353 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12354 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12355 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12356 (match-beginning 1)) a)
12357 t)))
12359 (defun org-complete-expand-structure-template (start cell)
12360 "Expand a structure template."
12361 (let ((rpl (nth 1 cell))
12362 (ind ""))
12363 (delete-region start (point))
12364 (when (string-match "\\`[ \t]*#\\+" rpl)
12365 (cond
12366 ((bolp))
12367 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12368 (setq ind (buffer-substring (point-at-bol) (point))))
12369 (t (newline))))
12370 (setq start (point))
12371 (if (string-match "%file" rpl)
12372 (setq rpl (replace-match
12373 (concat
12374 "\""
12375 (save-match-data
12376 (abbreviate-file-name (read-file-name "Include file: ")))
12377 "\"")
12378 t t rpl)))
12379 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12380 (concat "\n" ind)))
12381 (insert rpl)
12382 (if (re-search-backward "\\?" start t) (delete-char 1))))
12384 ;;;; TODO, DEADLINE, Comments
12386 (defun org-toggle-comment ()
12387 "Change the COMMENT state of an entry."
12388 (interactive)
12389 (save-excursion
12390 (org-back-to-heading)
12391 (looking-at org-complex-heading-regexp)
12392 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12393 (skip-chars-forward " \t")
12394 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12395 (if (org-in-commented-heading-p t)
12396 (delete-region (point)
12397 (progn (search-forward " " (line-end-position) 'move)
12398 (skip-chars-forward " \t")
12399 (point)))
12400 (insert org-comment-string)
12401 (unless (eolp) (insert " ")))))
12403 (defvar org-last-todo-state-is-todo nil
12404 "This is non-nil when the last TODO state change led to a TODO state.
12405 If the last change removed the TODO tag or switched to DONE, then
12406 this is nil.")
12408 (defvar org-setting-tags nil) ; dynamically skipped
12410 (defvar org-todo-setup-filter-hook nil
12411 "Hook for functions that pre-filter todo specs.
12412 Each function takes a todo spec and returns either nil or the spec
12413 transformed into canonical form." )
12415 (defvar org-todo-get-default-hook nil
12416 "Hook for functions that get a default item for todo.
12417 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12418 nil or a string to be used for the todo mark." )
12420 (defvar org-agenda-headline-snapshot-before-repeat)
12422 (defun org-current-effective-time ()
12423 "Return current time adjusted for `org-extend-today-until' variable."
12424 (let* ((ct (org-current-time))
12425 (dct (decode-time ct))
12426 (ct1
12427 (cond
12428 (org-use-last-clock-out-time-as-effective-time
12429 (or (org-clock-get-last-clock-out-time) ct))
12430 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12431 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12432 (t ct))))
12433 ct1))
12435 (defun org-todo-yesterday (&optional arg)
12436 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12437 (interactive "P")
12438 (if (eq major-mode 'org-agenda-mode)
12439 (apply 'org-agenda-todo-yesterday arg)
12440 (let* ((org-use-effective-time t)
12441 (hour (third (decode-time
12442 (org-current-time))))
12443 (org-extend-today-until (1+ hour)))
12444 (org-todo arg))))
12446 (defvar org-block-entry-blocking ""
12447 "First entry preventing the TODO state change.")
12449 (defun org-cancel-repeater ()
12450 "Cancel a repeater by setting its numeric value to zero."
12451 (interactive)
12452 (save-excursion
12453 (org-back-to-heading t)
12454 (let ((bound1 (point))
12455 (bound0 (save-excursion (outline-next-heading) (point))))
12456 (when (re-search-forward
12457 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12458 org-deadline-time-regexp "\\)\\|\\("
12459 org-ts-regexp "\\)")
12460 bound0 t)
12461 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12462 (replace-match "0" t nil nil 1))))))
12464 (defun org-todo (&optional arg)
12465 "Change the TODO state of an item.
12466 The state of an item is given by a keyword at the start of the heading,
12467 like
12468 *** TODO Write paper
12469 *** DONE Call mom
12471 The different keywords are specified in the variable `org-todo-keywords'.
12472 By default the available states are \"TODO\" and \"DONE\".
12473 So for this example: when the item starts with TODO, it is changed to DONE.
12474 When it starts with DONE, the DONE is removed. And when neither TODO nor
12475 DONE are present, add TODO at the beginning of the heading.
12477 With \\[universal-argument] prefix arg, use completion to determine the new \
12478 state.
12479 With numeric prefix arg, switch to that state.
12480 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12481 keywords (nextset).
12482 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12483 With a numeric prefix arg of 0, inhibit note taking for the change.
12484 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12486 When called through ELisp, arg is also interpreted in the following way:
12487 'none -> empty state
12488 \"\"(empty string) -> switch to empty state
12489 'done -> switch to DONE
12490 'nextset -> switch to the next set of keywords
12491 'previousset -> switch to the previous set of keywords
12492 \"WAITING\" -> switch to the specified keyword, but only if it
12493 really is a member of `org-todo-keywords'."
12494 (interactive "P")
12495 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12496 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12497 'region-start-level 'region))
12498 org-loop-over-headlines-in-active-region)
12499 (org-map-entries
12500 `(org-todo ,arg)
12501 org-loop-over-headlines-in-active-region
12502 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12503 (if (equal arg '(16)) (setq arg 'nextset))
12504 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12505 (let ((org-blocker-hook org-blocker-hook)
12506 commentp
12507 case-fold-search)
12508 (when (equal arg '(64))
12509 (setq arg nil org-blocker-hook nil))
12510 (when (and org-blocker-hook
12511 (or org-inhibit-blocking
12512 (org-entry-get nil "NOBLOCKING")))
12513 (setq org-blocker-hook nil))
12514 (save-excursion
12515 (catch 'exit
12516 (org-back-to-heading t)
12517 (when (org-in-commented-heading-p t)
12518 (org-toggle-comment)
12519 (setq commentp t))
12520 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12521 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12522 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12523 (let* ((match-data (match-data))
12524 (startpos (point-at-bol))
12525 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12526 (org-log-done org-log-done)
12527 (org-log-repeat org-log-repeat)
12528 (org-todo-log-states org-todo-log-states)
12529 (org-inhibit-logging
12530 (if (equal arg 0)
12531 (progn (setq arg nil) 'note) org-inhibit-logging))
12532 (this (match-string 1))
12533 (hl-pos (match-beginning 0))
12534 (head (org-get-todo-sequence-head this))
12535 (ass (assoc head org-todo-kwd-alist))
12536 (interpret (nth 1 ass))
12537 (done-word (nth 3 ass))
12538 (final-done-word (nth 4 ass))
12539 (org-last-state (or this ""))
12540 (completion-ignore-case t)
12541 (member (member this org-todo-keywords-1))
12542 (tail (cdr member))
12543 (org-state (cond
12544 ((and org-todo-key-trigger
12545 (or (and (equal arg '(4))
12546 (eq org-use-fast-todo-selection 'prefix))
12547 (and (not arg) org-use-fast-todo-selection
12548 (not (eq org-use-fast-todo-selection
12549 'prefix)))))
12550 ;; Use fast selection
12551 (org-fast-todo-selection))
12552 ((and (equal arg '(4))
12553 (or (not org-use-fast-todo-selection)
12554 (not org-todo-key-trigger)))
12555 ;; Read a state with completion
12556 (org-icompleting-read
12557 "State: " (mapcar 'list org-todo-keywords-1)
12558 nil t))
12559 ((eq arg 'right)
12560 (if this
12561 (if tail (car tail) nil)
12562 (car org-todo-keywords-1)))
12563 ((eq arg 'left)
12564 (if (equal member org-todo-keywords-1)
12566 (if this
12567 (nth (- (length org-todo-keywords-1)
12568 (length tail) 2)
12569 org-todo-keywords-1)
12570 (org-last org-todo-keywords-1))))
12571 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12572 (setq arg nil))) ; hack to fall back to cycling
12573 (arg
12574 ;; user or caller requests a specific state
12575 (cond
12576 ((equal arg "") nil)
12577 ((eq arg 'none) nil)
12578 ((eq arg 'done) (or done-word (car org-done-keywords)))
12579 ((eq arg 'nextset)
12580 (or (car (cdr (member head org-todo-heads)))
12581 (car org-todo-heads)))
12582 ((eq arg 'previousset)
12583 (let ((org-todo-heads (reverse org-todo-heads)))
12584 (or (car (cdr (member head org-todo-heads)))
12585 (car org-todo-heads))))
12586 ((car (member arg org-todo-keywords-1)))
12587 ((stringp arg)
12588 (user-error "State `%s' not valid in this file" arg))
12589 ((nth (1- (prefix-numeric-value arg))
12590 org-todo-keywords-1))))
12591 ((null member) (or head (car org-todo-keywords-1)))
12592 ((equal this final-done-word) nil) ;; -> make empty
12593 ((null tail) nil) ;; -> first entry
12594 ((memq interpret '(type priority))
12595 (if (eq this-command last-command)
12596 (car tail)
12597 (if (> (length tail) 0)
12598 (or done-word (car org-done-keywords))
12599 nil)))
12601 (car tail))))
12602 (org-state (or
12603 (run-hook-with-args-until-success
12604 'org-todo-get-default-hook org-state org-last-state)
12605 org-state))
12606 (next (if org-state (concat " " org-state " ") " "))
12607 (change-plist (list :type 'todo-state-change :from this :to org-state
12608 :position startpos))
12609 dolog now-done-p)
12610 (when org-blocker-hook
12611 (setq org-last-todo-state-is-todo
12612 (not (member this org-done-keywords)))
12613 (unless (save-excursion
12614 (save-match-data
12615 (org-with-wide-buffer
12616 (run-hook-with-args-until-failure
12617 'org-blocker-hook change-plist))))
12618 (if (org-called-interactively-p 'interactive)
12619 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12620 this org-state org-block-entry-blocking)
12621 ;; fail silently
12622 (message "TODO state change from %s to %s blocked (by \"%s\")"
12623 this org-state org-block-entry-blocking)
12624 (throw 'exit nil))))
12625 (store-match-data match-data)
12626 (replace-match next t t)
12627 (cond ((equal this org-state)
12628 (message "TODO state was already %s" (org-trim next)))
12629 ((pos-visible-in-window-p hl-pos)
12630 (message "TODO state changed to %s" (org-trim next))))
12631 (unless head
12632 (setq head (org-get-todo-sequence-head org-state)
12633 ass (assoc head org-todo-kwd-alist)
12634 interpret (nth 1 ass)
12635 done-word (nth 3 ass)
12636 final-done-word (nth 4 ass)))
12637 (when (memq arg '(nextset previousset))
12638 (message "Keyword-Set %d/%d: %s"
12639 (- (length org-todo-sets) -1
12640 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12641 (length org-todo-sets)
12642 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12643 (setq org-last-todo-state-is-todo
12644 (not (member org-state org-done-keywords)))
12645 (setq now-done-p (and (member org-state org-done-keywords)
12646 (not (member this org-done-keywords))))
12647 (and logging (org-local-logging logging))
12648 (when (and (or org-todo-log-states org-log-done)
12649 (not (eq org-inhibit-logging t))
12650 (not (memq arg '(nextset previousset))))
12651 ;; we need to look at recording a time and note
12652 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12653 (nth 2 (assoc this org-todo-log-states))))
12654 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12655 (setq dolog 'time))
12656 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12657 (and org-state
12658 (member org-state org-not-done-keywords)
12659 (not (member this org-not-done-keywords))))
12660 ;; This is now a todo state and was not one before
12661 ;; If there was a CLOSED time stamp, get rid of it.
12662 (org-add-planning-info nil nil 'closed))
12663 (when (and now-done-p org-log-done)
12664 ;; It is now done, and it was not done before
12665 (org-add-planning-info 'closed (org-current-effective-time))
12666 (if (and (not dolog) (eq 'note org-log-done))
12667 (org-add-log-setup 'done org-state this 'findpos 'note)))
12668 (when (and org-state dolog)
12669 ;; This is a non-nil state, and we need to log it
12670 (org-add-log-setup 'state org-state this 'findpos dolog)))
12671 ;; Fixup tag positioning
12672 (org-todo-trigger-tag-changes org-state)
12673 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12674 (when org-provide-todo-statistics
12675 (org-update-parent-todo-statistics))
12676 (run-hooks 'org-after-todo-state-change-hook)
12677 (if (and arg (not (member org-state org-done-keywords)))
12678 (setq head (org-get-todo-sequence-head org-state)))
12679 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12680 ;; Do we need to trigger a repeat?
12681 (when now-done-p
12682 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12683 ;; This is for the agenda, take a snapshot of the headline.
12684 (save-match-data
12685 (setq org-agenda-headline-snapshot-before-repeat
12686 (org-get-heading))))
12687 (org-auto-repeat-maybe org-state))
12688 ;; Fixup cursor location if close to the keyword
12689 (if (and (outline-on-heading-p)
12690 (not (bolp))
12691 (save-excursion (beginning-of-line 1)
12692 (looking-at org-todo-line-regexp))
12693 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12694 (progn
12695 (goto-char (or (match-end 2) (match-end 1)))
12696 (and (looking-at " ") (just-one-space))))
12697 (when org-trigger-hook
12698 (save-excursion
12699 (run-hook-with-args 'org-trigger-hook change-plist)))
12700 (when commentp (org-toggle-comment))))))))
12702 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12703 "Block turning an entry into a TODO, using the hierarchy.
12704 This checks whether the current task should be blocked from state
12705 changes. Such blocking occurs when:
12707 1. The task has children which are not all in a completed state.
12709 2. A task has a parent with the property :ORDERED:, and there
12710 are siblings prior to the current task with incomplete
12711 status.
12713 3. The parent of the task is blocked because it has siblings that should
12714 be done first, or is child of a block grandparent TODO entry."
12716 (if (not org-enforce-todo-dependencies)
12717 t ; if locally turned off don't block
12718 (catch 'dont-block
12719 ;; If this is not a todo state change, or if this entry is already DONE,
12720 ;; do not block
12721 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12722 (member (plist-get change-plist :from)
12723 (cons 'done org-done-keywords))
12724 (member (plist-get change-plist :to)
12725 (cons 'todo org-not-done-keywords))
12726 (not (plist-get change-plist :to)))
12727 (throw 'dont-block t))
12728 ;; If this task has children, and any are undone, it's blocked
12729 (save-excursion
12730 (org-back-to-heading t)
12731 (let ((this-level (funcall outline-level)))
12732 (outline-next-heading)
12733 (let ((child-level (funcall outline-level)))
12734 (while (and (not (eobp))
12735 (> child-level this-level))
12736 ;; this todo has children, check whether they are all
12737 ;; completed
12738 (if (and (not (org-entry-is-done-p))
12739 (org-entry-is-todo-p))
12740 (progn (setq org-block-entry-blocking (org-get-heading))
12741 (throw 'dont-block nil)))
12742 (outline-next-heading)
12743 (setq child-level (funcall outline-level))))))
12744 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12745 ;; any previous siblings are undone, it's blocked
12746 (save-excursion
12747 (org-back-to-heading t)
12748 (let* ((pos (point))
12749 (parent-pos (and (org-up-heading-safe) (point))))
12750 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12751 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12752 (forward-line 1)
12753 (re-search-forward org-not-done-heading-regexp pos t))
12754 (setq org-block-entry-blocking (match-string 0))
12755 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12756 ;; Search further up the hierarchy, to see if an ancestor is blocked
12757 (while t
12758 (goto-char parent-pos)
12759 (if (not (looking-at org-not-done-heading-regexp))
12760 (throw 'dont-block t)) ; do not block, parent is not a TODO
12761 (setq pos (point))
12762 (setq 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 (org-get-heading)))
12768 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12770 (defcustom org-track-ordered-property-with-tag nil
12771 "Should the ORDERED property also be shown as a tag?
12772 The ORDERED property decides if an entry should require subtasks to be
12773 completed in sequence. Since a property is not very visible, setting
12774 this option means that toggling the ORDERED property with the command
12775 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12776 not relevant for the behavior, but it makes things more visible.
12778 Note that toggling the tag with tags commands will not change the property
12779 and therefore not influence behavior!
12781 This can be t, meaning the tag ORDERED should be used, It can also be a
12782 string to select a different tag for this task."
12783 :group 'org-todo
12784 :type '(choice
12785 (const :tag "No tracking" nil)
12786 (const :tag "Track with ORDERED tag" t)
12787 (string :tag "Use other tag")))
12789 (defun org-toggle-ordered-property ()
12790 "Toggle the ORDERED property of the current entry.
12791 For better visibility, you can track the value of this property with a tag.
12792 See variable `org-track-ordered-property-with-tag'."
12793 (interactive)
12794 (let* ((t1 org-track-ordered-property-with-tag)
12795 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12796 (save-excursion
12797 (org-back-to-heading)
12798 (if (org-entry-get nil "ORDERED")
12799 (progn
12800 (org-delete-property "ORDERED")
12801 (and tag (org-toggle-tag tag 'off))
12802 (message "Subtasks can be completed in arbitrary order"))
12803 (org-entry-put nil "ORDERED" "t")
12804 (and tag (org-toggle-tag tag 'on))
12805 (message "Subtasks must be completed in sequence")))))
12807 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12808 (defun org-block-todo-from-checkboxes (change-plist)
12809 "Block turning an entry into a TODO, using checkboxes.
12810 This checks whether the current task should be blocked from state
12811 changes because there are unchecked boxes in this entry."
12812 (if (not org-enforce-todo-checkbox-dependencies)
12813 t ; if locally turned off don't block
12814 (catch 'dont-block
12815 ;; If this is not a todo state change, or if this entry is already DONE,
12816 ;; do not block
12817 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12818 (member (plist-get change-plist :from)
12819 (cons 'done org-done-keywords))
12820 (member (plist-get change-plist :to)
12821 (cons 'todo org-not-done-keywords))
12822 (not (plist-get change-plist :to)))
12823 (throw 'dont-block t))
12824 ;; If this task has checkboxes that are not checked, it's blocked
12825 (save-excursion
12826 (org-back-to-heading t)
12827 (let ((beg (point)) end)
12828 (outline-next-heading)
12829 (setq end (point))
12830 (goto-char beg)
12831 (if (org-list-search-forward
12832 (concat (org-item-beginning-re)
12833 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12834 "\\[[- ]\\]")
12835 end t)
12836 (progn
12837 (if (boundp 'org-blocked-by-checkboxes)
12838 (setq org-blocked-by-checkboxes t))
12839 (throw 'dont-block nil)))))
12840 t))) ; do not block
12842 (defun org-entry-blocked-p ()
12843 "Is the current entry blocked?"
12844 (org-with-silent-modifications
12845 (if (org-entry-get nil "NOBLOCKING")
12846 nil ;; Never block this entry
12847 (not (run-hook-with-args-until-failure
12848 'org-blocker-hook
12849 (list :type 'todo-state-change
12850 :position (point)
12851 :from 'todo
12852 :to 'done))))))
12854 (defun org-update-statistics-cookies (all)
12855 "Update the statistics cookie, either from TODO or from checkboxes.
12856 This should be called with the cursor in a line with a statistics cookie."
12857 (interactive "P")
12858 (if all
12859 (progn
12860 (org-update-checkbox-count 'all)
12861 (org-map-entries 'org-update-parent-todo-statistics))
12862 (if (not (org-at-heading-p))
12863 (org-update-checkbox-count)
12864 (let ((pos (point-marker))
12865 end l1 l2)
12866 (ignore-errors (org-back-to-heading t))
12867 (if (not (org-at-heading-p))
12868 (org-update-checkbox-count)
12869 (setq l1 (org-outline-level))
12870 (setq end (save-excursion
12871 (outline-next-heading)
12872 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12873 (point)))
12874 (if (and (save-excursion
12875 (re-search-forward
12876 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12877 (not (save-excursion (re-search-forward
12878 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12879 (org-update-checkbox-count)
12880 (if (and l2 (> l2 l1))
12881 (progn
12882 (goto-char end)
12883 (org-update-parent-todo-statistics))
12884 (goto-char pos)
12885 (beginning-of-line 1)
12886 (while (re-search-forward
12887 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12888 (point-at-eol) t)
12889 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12890 (goto-char pos)
12891 (move-marker pos nil)))))
12893 (defvar org-entry-property-inherited-from) ;; defined below
12894 (defun org-update-parent-todo-statistics ()
12895 "Update any statistics cookie in the parent of the current headline.
12896 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12897 the entire subtree and this will travel up the hierarchy and update
12898 statistics everywhere."
12899 (let* ((prop (save-excursion (org-up-heading-safe)
12900 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12901 (recursive (or (not org-hierarchical-todo-statistics)
12902 (and prop (string-match "\\<recursive\\>" prop))))
12903 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12905 (first t)
12906 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12907 level ltoggle l1 new ndel
12908 (cnt-all 0) (cnt-done 0) is-percent kwd
12909 checkbox-beg ov ovs ove cookie-present)
12910 (catch 'exit
12911 (save-excursion
12912 (beginning-of-line 1)
12913 (setq ltoggle (funcall outline-level))
12914 ;; Three situations are to consider:
12916 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12917 ;; to the top-level ancestor on the headline;
12919 ;; 2. If parent has "recursive" property, repeat up to the
12920 ;; headline setting that property, taking inheritance into
12921 ;; account;
12923 ;; 3. Else, move up to direct parent and proceed only once.
12924 (while (and (setq level (org-up-heading-safe))
12925 (or recursive first)
12926 (>= (point) lim))
12927 (setq first nil cookie-present nil)
12928 (unless (and level
12929 (not (string-match
12930 "\\<checkbox\\>"
12931 (downcase (or (org-entry-get nil "COOKIE_DATA")
12932 "")))))
12933 (throw 'exit nil))
12934 (while (re-search-forward box-re (point-at-eol) t)
12935 (setq cnt-all 0 cnt-done 0 cookie-present t)
12936 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12937 (save-match-data
12938 (unless (outline-next-heading) (throw 'exit nil))
12939 (while (and (looking-at org-complex-heading-regexp)
12940 (> (setq l1 (length (match-string 1))) level))
12941 (setq kwd (and (or recursive (= l1 ltoggle))
12942 (match-string 2)))
12943 (if (or (eq org-provide-todo-statistics 'all-headlines)
12944 (and (eq org-provide-todo-statistics t)
12945 (or (member kwd org-done-keywords)))
12946 (and (listp org-provide-todo-statistics)
12947 (stringp (car org-provide-todo-statistics))
12948 (or (member kwd org-provide-todo-statistics)
12949 (member kwd org-done-keywords)))
12950 (and (listp org-provide-todo-statistics)
12951 (listp (car org-provide-todo-statistics))
12952 (or (member kwd (car org-provide-todo-statistics))
12953 (and (member kwd org-done-keywords)
12954 (member kwd (cadr org-provide-todo-statistics))))))
12955 (setq cnt-all (1+ cnt-all))
12956 (if (eq org-provide-todo-statistics t)
12957 (and kwd (setq cnt-all (1+ cnt-all)))))
12958 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12959 (member kwd org-done-keywords))
12960 (and (listp org-provide-todo-statistics)
12961 (listp (car org-provide-todo-statistics))
12962 (member kwd org-done-keywords)
12963 (member kwd (cadr org-provide-todo-statistics)))
12964 (and (listp org-provide-todo-statistics)
12965 (stringp (car org-provide-todo-statistics))
12966 (member kwd org-done-keywords)))
12967 (setq cnt-done (1+ cnt-done)))
12968 (outline-next-heading)))
12969 (setq new
12970 (if is-percent
12971 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12972 (format "[%d/%d]" cnt-done cnt-all))
12973 ndel (- (match-end 0) checkbox-beg))
12974 ;; handle overlays when updating cookie from column view
12975 (when (setq ov (car (overlays-at checkbox-beg)))
12976 (setq ovs (overlay-start ov) ove (overlay-end ov))
12977 (delete-overlay ov))
12978 (goto-char checkbox-beg)
12979 (insert new)
12980 (delete-region (point) (+ (point) ndel))
12981 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12982 (when ov (move-overlay ov ovs ove)))
12983 (when cookie-present
12984 (run-hook-with-args 'org-after-todo-statistics-hook
12985 cnt-done (- cnt-all cnt-done))))))
12986 (run-hooks 'org-todo-statistics-hook)))
12988 (defvar org-after-todo-statistics-hook nil
12989 "Hook that is called after a TODO statistics cookie has been updated.
12990 Each function is called with two arguments: the number of not-done entries
12991 and the number of done entries.
12993 For example, the following function, when added to this hook, will switch
12994 an entry to DONE when all children are done, and back to TODO when new
12995 entries are set to a TODO status. Note that this hook is only called
12996 when there is a statistics cookie in the headline!
12998 (defun org-summary-todo (n-done n-not-done)
12999 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13000 (let (org-log-done org-log-states) ; turn off logging
13001 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13004 (defvar org-todo-statistics-hook nil
13005 "Hook that is run whenever Org thinks TODO statistics should be updated.
13006 This hook runs even if there is no statistics cookie present, in which case
13007 `org-after-todo-statistics-hook' would not run.")
13009 (defun org-todo-trigger-tag-changes (state)
13010 "Apply the changes defined in `org-todo-state-tags-triggers'."
13011 (let ((l org-todo-state-tags-triggers)
13012 changes)
13013 (when (or (not state) (equal state ""))
13014 (setq changes (append changes (cdr (assoc "" l)))))
13015 (when (and (stringp state) (> (length state) 0))
13016 (setq changes (append changes (cdr (assoc state l)))))
13017 (when (member state org-not-done-keywords)
13018 (setq changes (append changes (cdr (assoc 'todo l)))))
13019 (when (member state org-done-keywords)
13020 (setq changes (append changes (cdr (assoc 'done l)))))
13021 (dolist (c changes)
13022 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13024 (defun org-local-logging (value)
13025 "Get logging settings from a property VALUE."
13026 (let* (words w a)
13027 ;; directly set the variables, they are already local.
13028 (setq org-log-done nil
13029 org-log-repeat nil
13030 org-todo-log-states nil)
13031 (setq words (org-split-string value))
13032 (while (setq w (pop words))
13033 (cond
13034 ((setq a (assoc w org-startup-options))
13035 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13036 (set (nth 1 a) (nth 2 a))))
13037 ((setq a (org-extract-log-state-settings w))
13038 (and (member (car a) org-todo-keywords-1)
13039 (push a org-todo-log-states)))))))
13041 (defun org-get-todo-sequence-head (kwd)
13042 "Return the head of the TODO sequence to which KWD belongs.
13043 If KWD is not set, check if there is a text property remembering the
13044 right sequence."
13045 (let (p)
13046 (cond
13047 ((not kwd)
13048 (or (get-text-property (point-at-bol) 'org-todo-head)
13049 (progn
13050 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13051 nil (point-at-eol)))
13052 (get-text-property p 'org-todo-head))))
13053 ((not (member kwd org-todo-keywords-1))
13054 (car org-todo-keywords-1))
13055 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13057 (defun org-fast-todo-selection ()
13058 "Fast TODO keyword selection with single keys.
13059 Returns the new TODO keyword, or nil if no state change should occur."
13060 (let* ((fulltable org-todo-key-alist)
13061 (done-keywords org-done-keywords) ;; needed for the faces.
13062 (maxlen (apply 'max (mapcar
13063 (lambda (x)
13064 (if (stringp (car x)) (string-width (car x)) 0))
13065 fulltable)))
13066 (expert nil)
13067 (fwidth (+ maxlen 3 1 3))
13068 (ncol (/ (- (window-width) 4) fwidth))
13069 tg cnt e c tbl
13070 groups ingroup)
13071 (save-excursion
13072 (save-window-excursion
13073 (if expert
13074 (set-buffer (get-buffer-create " *Org todo*"))
13075 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13076 (erase-buffer)
13077 (org-set-local 'org-done-keywords done-keywords)
13078 (setq tbl fulltable cnt 0)
13079 (while (setq e (pop tbl))
13080 (cond
13081 ((equal e '(:startgroup))
13082 (push '() groups) (setq ingroup t)
13083 (when (not (= cnt 0))
13084 (setq cnt 0)
13085 (insert "\n"))
13086 (insert "{ "))
13087 ((equal e '(:endgroup))
13088 (setq ingroup nil cnt 0)
13089 (insert "}\n"))
13090 ((equal e '(:newline))
13091 (when (not (= cnt 0))
13092 (setq cnt 0)
13093 (insert "\n")
13094 (setq e (car tbl))
13095 (while (equal (car tbl) '(:newline))
13096 (insert "\n")
13097 (setq tbl (cdr tbl)))))
13099 (setq tg (car e) c (cdr e))
13100 (if ingroup (push tg (car groups)))
13101 (setq tg (org-add-props tg nil 'face
13102 (org-get-todo-face tg)))
13103 (if (and (= cnt 0) (not ingroup)) (insert " "))
13104 (insert "[" c "] " tg (make-string
13105 (- fwidth 4 (length tg)) ?\ ))
13106 (when (= (setq cnt (1+ cnt)) ncol)
13107 (insert "\n")
13108 (if ingroup (insert " "))
13109 (setq cnt 0)))))
13110 (insert "\n")
13111 (goto-char (point-min))
13112 (if (not expert) (org-fit-window-to-buffer))
13113 (message "[a-z..]:Set [SPC]:clear")
13114 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13115 (cond
13116 ((or (= c ?\C-g)
13117 (and (= c ?q) (not (rassoc c fulltable))))
13118 (setq quit-flag t))
13119 ((= c ?\ ) nil)
13120 ((setq e (rassoc c fulltable) tg (car e))
13122 (t (setq quit-flag t)))))))
13124 (defun org-entry-is-todo-p ()
13125 (member (org-get-todo-state) org-not-done-keywords))
13127 (defun org-entry-is-done-p ()
13128 (member (org-get-todo-state) org-done-keywords))
13130 (defun org-get-todo-state ()
13131 "Return the TODO keyword of the current subtree."
13132 (save-excursion
13133 (org-back-to-heading t)
13134 (and (looking-at org-todo-line-regexp)
13135 (match-end 2)
13136 (match-string 2))))
13138 (defun org-at-date-range-p (&optional inactive-ok)
13139 "Is the cursor inside a date range?"
13140 (interactive)
13141 (save-excursion
13142 (catch 'exit
13143 (let ((pos (point)))
13144 (skip-chars-backward "^[<\r\n")
13145 (skip-chars-backward "<[")
13146 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13147 (>= (match-end 0) pos)
13148 (throw 'exit t))
13149 (skip-chars-backward "^<[\r\n")
13150 (skip-chars-backward "<[")
13151 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13152 (>= (match-end 0) pos)
13153 (throw 'exit t)))
13154 nil)))
13156 (defun org-get-repeat (&optional tagline)
13157 "Check if there is a deadline/schedule with repeater in this entry."
13158 (save-match-data
13159 (save-excursion
13160 (org-back-to-heading t)
13161 (and (re-search-forward (if tagline
13162 (concat tagline "\\s-*" org-repeat-re)
13163 org-repeat-re)
13164 (org-entry-end-position) t)
13165 (match-string-no-properties 1)))))
13167 (defvar org-last-changed-timestamp)
13168 (defvar org-last-inserted-timestamp)
13169 (defvar org-log-post-message)
13170 (defvar org-log-note-purpose)
13171 (defvar org-log-note-how nil)
13172 (defvar org-log-note-extra)
13173 (defun org-auto-repeat-maybe (done-word)
13174 "Check if the current headline contains a repeated deadline/schedule.
13175 If yes, set TODO state back to what it was and change the base date
13176 of repeating deadline/scheduled time stamps to new date.
13177 This function is run automatically after each state change to a DONE state."
13178 ;; last-state is dynamically scoped into this function
13179 (let* ((repeat (org-get-repeat))
13180 (aa (assoc org-last-state org-todo-kwd-alist))
13181 (interpret (nth 1 aa))
13182 (head (nth 2 aa))
13183 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13184 (msg "Entry repeats: ")
13185 (org-log-done nil)
13186 (org-todo-log-states nil)
13187 re type n what ts time to-state)
13188 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13189 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13190 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13191 org-todo-repeat-to-state))
13192 (unless (and to-state (member to-state org-todo-keywords-1))
13193 (setq to-state (if (eq interpret 'type) org-last-state head)))
13194 (org-todo to-state)
13195 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13196 (org-entry-put nil "LAST_REPEAT" (format-time-string
13197 (org-time-stamp-format t t))))
13198 (when org-log-repeat
13199 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13200 (memq 'org-add-log-note post-command-hook))
13201 ;; OK, we are already setup for some record
13202 (if (eq org-log-repeat 'note)
13203 ;; make sure we take a note, not only a time stamp
13204 (setq org-log-note-how 'note))
13205 ;; Set up for taking a record
13206 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13207 org-last-state
13208 'findpos org-log-repeat)))
13209 (org-back-to-heading t)
13210 (org-add-planning-info nil nil 'closed)
13211 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13212 org-deadline-time-regexp "\\)\\|\\("
13213 org-ts-regexp "\\)"))
13214 (while (re-search-forward
13215 re (save-excursion (outline-next-heading) (point)) t)
13216 (setq type (if (match-end 1) org-scheduled-string
13217 (if (match-end 3) org-deadline-string "Plain:"))
13218 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13219 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13220 (setq n (string-to-number (match-string 2 ts))
13221 what (match-string 3 ts))
13222 (if (equal what "w") (setq n (* n 7) what "d"))
13223 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13224 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13225 ;; Preparation, see if we need to modify the start date for the change
13226 (when (match-end 1)
13227 (setq time (save-match-data (org-time-string-to-time ts)))
13228 (cond
13229 ((equal (match-string 1 ts) ".")
13230 ;; Shift starting date to today
13231 (org-timestamp-change
13232 (- (org-today) (time-to-days time))
13233 'day))
13234 ((equal (match-string 1 ts) "+")
13235 (let ((nshiftmax 10) (nshift 0))
13236 (while (or (= nshift 0)
13237 (<= (time-to-days time)
13238 (time-to-days (current-time))))
13239 (when (= (incf nshift) nshiftmax)
13240 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13241 (user-error "Abort")))
13242 (org-timestamp-change n (cdr (assoc what whata)))
13243 (org-at-timestamp-p t)
13244 (setq ts (match-string 1))
13245 (setq time (save-match-data (org-time-string-to-time ts)))))
13246 (org-timestamp-change (- n) (cdr (assoc what whata)))
13247 ;; rematch, so that we have everything in place for the real shift
13248 (org-at-timestamp-p t)
13249 (setq ts (match-string 1))
13250 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13251 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13252 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13253 (setq org-log-post-message msg)
13254 (message "%s" msg))))
13256 (defun org-show-todo-tree (arg)
13257 "Make a compact tree which shows all headlines marked with TODO.
13258 The tree will show the lines where the regexp matches, and all higher
13259 headlines above the match.
13260 With a \\[universal-argument] prefix, prompt for a regexp to match.
13261 With a numeric prefix N, construct a sparse tree for the Nth element
13262 of `org-todo-keywords-1'."
13263 (interactive "P")
13264 (let ((case-fold-search nil)
13265 (kwd-re
13266 (cond ((null arg) org-not-done-regexp)
13267 ((equal arg '(4))
13268 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13269 (mapcar 'list org-todo-keywords-1))))
13270 (concat "\\("
13271 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13272 "\\)\\>")))
13273 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13274 (regexp-quote (nth (1- (prefix-numeric-value arg))
13275 org-todo-keywords-1)))
13276 (t (user-error "Invalid prefix argument: %s" arg)))))
13277 (message "%d TODO entries found"
13278 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13280 (defun org-deadline (arg &optional time)
13281 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13282 With one universal prefix argument, remove any deadline from the item.
13283 With two universal prefix arguments, prompt for a warning delay.
13284 With argument TIME, set the deadline at the corresponding date. TIME
13285 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13286 (interactive "P")
13287 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13288 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13289 'region-start-level 'region))
13290 org-loop-over-headlines-in-active-region)
13291 (org-map-entries
13292 `(org-deadline ',arg ,time)
13293 org-loop-over-headlines-in-active-region
13294 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13295 (let* ((old-date (org-entry-get nil "DEADLINE"))
13296 (old-date-time (if old-date (org-time-string-to-time old-date)))
13297 (repeater (and old-date
13298 (string-match
13299 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13300 old-date)
13301 (match-string 1 old-date))))
13302 (cond
13303 ((equal arg '(4))
13304 (when (and old-date org-log-redeadline)
13305 (org-add-log-setup 'deldeadline nil old-date 'findpos
13306 org-log-redeadline))
13307 (org-remove-timestamp-with-keyword org-deadline-string)
13308 (message "Item no longer has a deadline."))
13309 ((equal arg '(16))
13310 (save-excursion
13311 (org-back-to-heading t)
13312 (if (re-search-forward
13313 org-deadline-time-regexp
13314 (save-excursion (outline-next-heading) (point)) t)
13315 (let* ((rpl0 (match-string 1))
13316 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13317 (replace-match
13318 (concat org-deadline-string
13319 " <" rpl
13320 (format " -%dd"
13321 (abs
13322 (- (time-to-days
13323 (save-match-data
13324 (org-read-date nil t nil "Warn starting from" old-date-time)))
13325 (time-to-days old-date-time))))
13326 ">") t t))
13327 (user-error "No deadline information to update"))))
13329 (org-add-planning-info 'deadline time 'closed)
13330 (when (and old-date org-log-redeadline
13331 (not (equal old-date
13332 (substring org-last-inserted-timestamp 1 -1))))
13333 (org-add-log-setup 'redeadline nil old-date 'findpos
13334 org-log-redeadline))
13335 (when repeater
13336 (save-excursion
13337 (org-back-to-heading t)
13338 (when (re-search-forward (concat org-deadline-string " "
13339 org-last-inserted-timestamp)
13340 (save-excursion
13341 (outline-next-heading) (point)) t)
13342 (goto-char (1- (match-end 0)))
13343 (insert " " repeater)
13344 (setq org-last-inserted-timestamp
13345 (concat (substring org-last-inserted-timestamp 0 -1)
13346 " " repeater
13347 (substring org-last-inserted-timestamp -1))))))
13348 (message "Deadline on %s" org-last-inserted-timestamp))))))
13350 (defun org-schedule (arg &optional time)
13351 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13352 With one universal prefix argument, remove any scheduling date from the item.
13353 With two universal prefix arguments, prompt for a delay cookie.
13354 With argument TIME, scheduled at the corresponding date. TIME can
13355 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13356 (interactive "P")
13357 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13358 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13359 'region-start-level 'region))
13360 org-loop-over-headlines-in-active-region)
13361 (org-map-entries
13362 `(org-schedule ',arg ,time)
13363 org-loop-over-headlines-in-active-region
13364 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13365 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13366 (old-date-time (if old-date (org-time-string-to-time old-date)))
13367 (repeater (and old-date
13368 (string-match
13369 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13370 old-date)
13371 (match-string 1 old-date))))
13372 (cond
13373 ((equal arg '(4))
13374 (progn
13375 (when (and old-date org-log-reschedule)
13376 (org-add-log-setup 'delschedule nil old-date 'findpos
13377 org-log-reschedule))
13378 (org-remove-timestamp-with-keyword org-scheduled-string)
13379 (message "Item is no longer scheduled.")))
13380 ((equal arg '(16))
13381 (save-excursion
13382 (org-back-to-heading t)
13383 (if (re-search-forward
13384 org-scheduled-time-regexp
13385 (save-excursion (outline-next-heading) (point)) t)
13386 (let* ((rpl0 (match-string 1))
13387 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13388 (replace-match
13389 (concat org-scheduled-string
13390 " <" rpl
13391 (format " -%dd"
13392 (abs
13393 (- (time-to-days
13394 (save-match-data
13395 (org-read-date nil t nil "Delay until" old-date-time)))
13396 (time-to-days old-date-time))))
13397 ">") t t))
13398 (user-error "No scheduled information to update"))))
13400 (org-add-planning-info 'scheduled time 'closed)
13401 (when (and old-date org-log-reschedule
13402 (not (equal old-date
13403 (substring org-last-inserted-timestamp 1 -1))))
13404 (org-add-log-setup 'reschedule nil old-date 'findpos
13405 org-log-reschedule))
13406 (when repeater
13407 (save-excursion
13408 (org-back-to-heading t)
13409 (when (re-search-forward (concat org-scheduled-string " "
13410 org-last-inserted-timestamp)
13411 (save-excursion
13412 (outline-next-heading) (point)) t)
13413 (goto-char (1- (match-end 0)))
13414 (insert " " repeater)
13415 (setq org-last-inserted-timestamp
13416 (concat (substring org-last-inserted-timestamp 0 -1)
13417 " " repeater
13418 (substring org-last-inserted-timestamp -1))))))
13419 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13421 (defun org-get-scheduled-time (pom &optional inherit)
13422 "Get the scheduled time as a time tuple, of a format suitable
13423 for calling org-schedule with, or if there is no scheduling,
13424 returns nil."
13425 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13426 (when time
13427 (apply 'encode-time (org-parse-time-string time)))))
13429 (defun org-get-deadline-time (pom &optional inherit)
13430 "Get the deadline as a time tuple, of a format suitable for
13431 calling org-deadline with, or if there is no scheduling, returns
13432 nil."
13433 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13434 (when time
13435 (apply 'encode-time (org-parse-time-string time)))))
13437 (defun org-remove-timestamp-with-keyword (keyword)
13438 "Remove all time stamps with KEYWORD in the current entry."
13439 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13440 beg)
13441 (save-excursion
13442 (org-back-to-heading t)
13443 (setq beg (point))
13444 (outline-next-heading)
13445 (while (re-search-backward re beg t)
13446 (replace-match "")
13447 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13448 (equal (char-before) ?\ ))
13449 (backward-delete-char 1)
13450 (if (string-match "^[ \t]*$" (buffer-substring
13451 (point-at-bol) (point-at-eol)))
13452 (delete-region (point-at-bol)
13453 (min (point-max) (1+ (point-at-eol))))))))))
13455 (defvar org-time-was-given) ; dynamically scoped parameter
13456 (defvar org-end-time-was-given) ; dynamically scoped parameter
13458 (defun org-at-planning-p ()
13459 "Non-nil when point is on a planning info line."
13460 ;; This is as accurate and faster than `org-element-at-point' since
13461 ;; planning info location is fixed in the section.
13462 (org-with-wide-buffer
13463 (beginning-of-line)
13464 (and (org-looking-at-p org-planning-line-re)
13465 (eq (point)
13466 (ignore-errors
13467 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13468 (org-back-to-heading t)
13469 (org-with-limited-levels (org-back-to-heading t)))
13470 (line-beginning-position 2))))))
13472 (defun org-add-planning-info (what &optional time &rest remove)
13473 "Insert new timestamp with keyword in the planning line.
13474 WHAT indicates what kind of time stamp to add. It is a symbol
13475 among `closed', `deadline', `scheduled' and nil. TIME indicates
13476 the time to use. If none is given, the user is prompted for
13477 a date. REMOVE indicates what kind of entries to remove. An old
13478 WHAT entry will also be removed."
13479 (let (org-time-was-given org-end-time-was-given default-time default-input)
13480 (catch 'exit
13481 (when (and (memq what '(scheduled deadline))
13482 (or (not time)
13483 (and (stringp time)
13484 (string-match "^[-+]+[0-9]" time))))
13485 ;; Try to get a default date/time from existing timestamp
13486 (save-excursion
13487 (org-back-to-heading t)
13488 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13489 (when (re-search-forward (if (eq what 'scheduled)
13490 org-scheduled-time-regexp
13491 org-deadline-time-regexp)
13492 end t)
13493 (setq ts (match-string 1)
13494 default-time (apply 'encode-time (org-parse-time-string ts))
13495 default-input (and ts (org-get-compact-tod ts)))))))
13496 (when what
13497 (setq time
13498 (if (stringp time)
13499 ;; This is a string (relative or absolute), set
13500 ;; proper date.
13501 (apply #'encode-time
13502 (org-read-date-analyze
13503 time default-time (decode-time default-time)))
13504 ;; If necessary, get the time from the user
13505 (or time (org-read-date nil 'to-time nil nil
13506 default-time default-input)))))
13508 (org-with-wide-buffer
13509 (org-back-to-heading t)
13510 (forward-line)
13511 (unless (bolp) (insert "\n"))
13512 (cond ((org-looking-at-p org-planning-line-re)
13513 ;; Move to current indentation.
13514 (skip-chars-forward " \t")
13515 ;; Check if we have to remove something.
13516 (dolist (type (if what (cons what remove) remove))
13517 (when (save-excursion
13518 (re-search-forward
13519 (case type
13520 (closed org-closed-time-regexp)
13521 (deadline org-deadline-time-regexp)
13522 (scheduled org-scheduled-time-regexp)
13523 (otherwise (error "Invalid planning type: %s" type)))
13524 (line-end-position) t))
13525 (replace-match "")
13526 (when (looking-at "--+<[^>]+>") (replace-match ""))
13527 (when (and (not what) (eq type 'closed))
13528 (save-excursion
13529 (beginning-of-line)
13530 (if (looking-at "[ \t]*$")
13531 (delete-region (point) (1+ (point-at-eol)))))))
13532 ;; Remove leading white spaces.
13533 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13534 ((not what) (throw 'exit nil)) ; Nothing to do.
13535 (t (insert-before-markers "\n")
13536 (backward-char 1)
13537 (when org-adapt-indentation
13538 (org-indent-to-column (1+ (org-outline-level))))))
13539 (when what
13540 ;; Insert planning keyword.
13541 (insert (case what
13542 (closed org-closed-string)
13543 (deadline org-deadline-string)
13544 (scheduled org-scheduled-string)
13545 (otherwise (error "Invalid planning type: %s" what)))
13546 " ")
13547 ;; Insert associated timestamp.
13548 (let ((ts (org-insert-time-stamp
13549 time
13550 (or org-time-was-given
13551 (and (eq what 'closed) org-log-done-with-time))
13552 (eq what 'closed)
13553 nil nil (list org-end-time-was-given))))
13554 (unless (eolp) (insert " "))
13555 ts))))))
13557 (defvar org-log-note-marker (make-marker))
13558 (defvar org-log-note-purpose nil)
13559 (defvar org-log-note-state nil)
13560 (defvar org-log-note-previous-state nil)
13561 (defvar org-log-note-extra nil)
13562 (defvar org-log-note-window-configuration nil)
13563 (defvar org-log-note-return-to (make-marker))
13564 (defvar org-log-note-effective-time nil
13565 "Remembered current time so that dynamically scoped
13566 `org-extend-today-until' affects tha timestamps in state change
13567 log")
13569 (defvar org-log-post-message nil
13570 "Message to be displayed after a log note has been stored.
13571 The auto-repeater uses this.")
13573 (defun org-add-note ()
13574 "Add a note to the current entry.
13575 This is done in the same way as adding a state change note."
13576 (interactive)
13577 (org-add-log-setup 'note nil nil 'findpos nil))
13579 (defun org-log-beginning (&optional create)
13580 "Return expected start of log notes in current entry.
13581 When optional argument CREATE is non-nil, the function creates
13582 a drawer to store notes, if necessary. Returned position ignores
13583 narrowing."
13584 (org-with-wide-buffer
13585 (org-end-of-meta-data)
13586 (let ((end (if (org-at-heading-p) (point)
13587 (save-excursion (outline-next-heading) (point))))
13588 (drawer (org-log-into-drawer)))
13589 (cond
13590 (drawer
13591 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13592 (case-fold-search t))
13593 (catch 'exit
13594 ;; Try to find existing drawer.
13595 (while (re-search-forward regexp end t)
13596 (let ((element (org-element-at-point)))
13597 (when (eq (org-element-type element) 'drawer)
13598 (let ((cend (org-element-property :contents-end element)))
13599 (when (and (not org-log-states-order-reversed) cend)
13600 (goto-char cend)))
13601 (throw 'exit nil))))
13602 ;; No drawer found. Create one, if permitted.
13603 (when create
13604 (unless (bolp) (insert "\n"))
13605 (let ((beg (point)))
13606 (insert ":" drawer ":\n:END:\n")
13607 (org-indent-region beg (point)))
13608 (end-of-line -1)))))
13609 (org-log-state-notes-insert-after-drawers
13610 (while (and (looking-at org-drawer-regexp)
13611 (progn (goto-char (match-end 0))
13612 (re-search-forward org-property-end-re end t)))
13613 (forward-line)))))
13614 (if (bolp) (point) (line-beginning-position 2))))
13616 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13617 "Set up the post command hook to take a note.
13618 If this is about to TODO state change, the new state is expected in STATE.
13619 When FINDPOS is non-nil, find the correct position for the note in
13620 the current entry. If not, assume that it can be inserted at point.
13621 HOW is an indicator what kind of note should be created.
13622 EXTRA is additional text that will be inserted into the notes buffer."
13623 (org-with-wide-buffer
13624 (when findpos
13625 (goto-char (org-log-beginning t))
13626 (unless org-log-states-order-reversed
13627 (org-skip-over-state-notes)
13628 (skip-chars-backward " \t\n\r")
13629 (forward-line)))
13630 (move-marker org-log-note-marker (point))
13631 ;; Preserve position even if a property drawer is inserted in the
13632 ;; process.
13633 (set-marker-insertion-type org-log-note-marker t)
13634 (setq org-log-note-purpose purpose
13635 org-log-note-state state
13636 org-log-note-previous-state prev-state
13637 org-log-note-how how
13638 org-log-note-extra extra
13639 org-log-note-effective-time (org-current-effective-time))
13640 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13642 (defun org-skip-over-state-notes ()
13643 "Skip past the list of State notes in an entry."
13644 (when (ignore-errors (goto-char (org-in-item-p)))
13645 (let* ((struct (org-list-struct))
13646 (prevs (org-list-prevs-alist struct))
13647 (regexp
13648 (concat "[ \t]*- +"
13649 (replace-regexp-in-string
13650 " +" " +"
13651 (org-replace-escapes
13652 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13653 `(("%d" . ,org-ts-regexp-inactive)
13654 ("%D" . ,org-ts-regexp)
13655 ("%s" . "\"\\S-+\"")
13656 ("%S" . "\"\\S-+\"")
13657 ("%t" . ,org-ts-regexp-inactive)
13658 ("%T" . ,org-ts-regexp)
13659 ("%u" . ".*?")
13660 ("%U" . ".*?")))))))
13661 (while (org-looking-at-p regexp)
13662 (goto-char (or (org-list-get-next-item (point) struct prevs)
13663 (org-list-get-item-end (point) struct)))))))
13665 (defun org-add-log-note (&optional purpose)
13666 "Pop up a window for taking a note, and add this note later at point."
13667 (remove-hook 'post-command-hook 'org-add-log-note)
13668 (setq org-log-note-window-configuration (current-window-configuration))
13669 (delete-other-windows)
13670 (move-marker org-log-note-return-to (point))
13671 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13672 (goto-char org-log-note-marker)
13673 (org-switch-to-buffer-other-window "*Org Note*")
13674 (erase-buffer)
13675 (if (memq org-log-note-how '(time state))
13676 (let (current-prefix-arg) (org-store-log-note))
13677 (let ((org-inhibit-startup t)) (org-mode))
13678 (insert (format "# Insert note for %s.
13679 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13680 (cond
13681 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13682 ((eq org-log-note-purpose 'done) "closed todo item")
13683 ((eq org-log-note-purpose 'state)
13684 (format "state change from \"%s\" to \"%s\""
13685 (or org-log-note-previous-state "")
13686 (or org-log-note-state "")))
13687 ((eq org-log-note-purpose 'reschedule)
13688 "rescheduling")
13689 ((eq org-log-note-purpose 'delschedule)
13690 "no longer scheduled")
13691 ((eq org-log-note-purpose 'redeadline)
13692 "changing deadline")
13693 ((eq org-log-note-purpose 'deldeadline)
13694 "removing deadline")
13695 ((eq org-log-note-purpose 'refile)
13696 "refiling")
13697 ((eq org-log-note-purpose 'note)
13698 "this entry")
13699 (t (error "This should not happen")))))
13700 (if org-log-note-extra (insert org-log-note-extra))
13701 (org-set-local 'org-finish-function 'org-store-log-note)
13702 (run-hooks 'org-log-buffer-setup-hook)))
13704 (defvar org-note-abort nil) ; dynamically scoped
13705 (defun org-store-log-note ()
13706 "Finish taking a log note, and insert it to where it belongs."
13707 (let ((txt (buffer-string)))
13708 (kill-buffer (current-buffer))
13709 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13710 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13711 (setq txt (replace-match "" t t txt)))
13712 (if (string-match "\\s-+\\'" txt)
13713 (setq txt (replace-match "" t t txt)))
13714 (setq lines (org-split-string txt "\n"))
13715 (when (and note (string-match "\\S-" note))
13716 (setq note
13717 (org-replace-escapes
13718 note
13719 (list (cons "%u" (user-login-name))
13720 (cons "%U" user-full-name)
13721 (cons "%t" (format-time-string
13722 (org-time-stamp-format 'long 'inactive)
13723 org-log-note-effective-time))
13724 (cons "%T" (format-time-string
13725 (org-time-stamp-format 'long nil)
13726 org-log-note-effective-time))
13727 (cons "%d" (format-time-string
13728 (org-time-stamp-format nil 'inactive)
13729 org-log-note-effective-time))
13730 (cons "%D" (format-time-string
13731 (org-time-stamp-format nil nil)
13732 org-log-note-effective-time))
13733 (cons "%s" (if org-log-note-state
13734 (concat "\"" org-log-note-state "\"")
13735 ""))
13736 (cons "%S" (if org-log-note-previous-state
13737 (concat "\"" org-log-note-previous-state "\"")
13738 "\"\"")))))
13739 (when lines (setq note (concat note " \\\\")))
13740 (push note lines))
13741 (when (or current-prefix-arg org-note-abort)
13742 (when (org-log-into-drawer)
13743 (org-remove-empty-drawer-at org-log-note-marker))
13744 (setq lines nil))
13745 (when lines
13746 (with-current-buffer (marker-buffer org-log-note-marker)
13747 (save-excursion
13748 (goto-char org-log-note-marker)
13749 (move-marker org-log-note-marker nil)
13750 ;; Make sure point is at the beginning of an empty line.
13751 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13752 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13753 ;; In an existing list, add a new item at the top level.
13754 ;; Otherwise, indent line like a regular one.
13755 (let ((itemp (org-in-item-p)))
13756 (if itemp
13757 (org-indent-line-to
13758 (let ((struct (save-excursion
13759 (goto-char itemp) (org-list-struct))))
13760 (org-list-get-ind (org-list-get-top-point struct) struct)))
13761 (org-indent-line)))
13762 (insert (org-list-bullet-string "-") (pop lines))
13763 (let ((ind (org-list-item-body-column (line-beginning-position))))
13764 (dolist (line lines)
13765 (insert "\n")
13766 (org-indent-line-to ind)
13767 (insert line)))
13768 (message "Note stored")
13769 (org-back-to-heading t)
13770 (org-cycle-hide-drawers 'children))
13771 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13772 ;; from within `org-add-log-note' because `buffer-undo-list'
13773 ;; is then modified outside of `org-with-remote-undo'.
13774 (when (eq this-command 'org-agenda-todo)
13775 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13776 ;; Don't add undo information when called from `org-agenda-todo'
13777 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13778 (set-window-configuration org-log-note-window-configuration)
13779 (with-current-buffer (marker-buffer org-log-note-return-to)
13780 (goto-char org-log-note-return-to))
13781 (move-marker org-log-note-return-to nil)
13782 (and org-log-post-message (message "%s" org-log-post-message))))
13784 (defun org-remove-empty-drawer-at (pos)
13785 "Remove an empty drawer at position POS.
13786 POS may also be a marker."
13787 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13788 (org-with-wide-buffer
13789 (goto-char pos)
13790 (let ((drawer (org-element-at-point)))
13791 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13792 (not (org-element-property :contents-begin drawer)))
13793 (delete-region (org-element-property :begin drawer)
13794 (progn (goto-char (org-element-property :end drawer))
13795 (skip-chars-backward " \r\t\n")
13796 (forward-line)
13797 (point))))))))
13799 (defvar org-ts-type nil)
13800 (defun org-sparse-tree (&optional arg type)
13801 "Create a sparse tree, prompt for the details.
13802 This command can create sparse trees. You first need to select the type
13803 of match used to create the tree:
13805 t Show all TODO entries.
13806 T Show entries with a specific TODO keyword.
13807 m Show entries selected by a tags/property match.
13808 p Enter a property name and its value (both with completion on existing
13809 names/values) and show entries with that property.
13810 r Show entries matching a regular expression (`/' can be used as well).
13811 b Show deadlines and scheduled items before a date.
13812 a Show deadlines and scheduled items after a date.
13813 d Show deadlines due within `org-deadline-warning-days'.
13814 D Show deadlines and scheduled items between a date range."
13815 (interactive "P")
13816 (setq type (or type org-sparse-tree-default-date-type))
13817 (setq org-ts-type type)
13818 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13819 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13820 [c]ycle through date types: %s"
13821 (case type
13822 (all "all timestamps")
13823 (scheduled "only scheduled")
13824 (deadline "only deadline")
13825 (active "only active timestamps")
13826 (inactive "only inactive timestamps")
13827 (closed "with a closed time-stamp")
13828 (otherwise "scheduled/deadline")))
13829 (let ((answer (read-char-exclusive)))
13830 (case answer
13832 (org-sparse-tree
13834 (cadr
13835 (memq type '(nil all scheduled deadline active inactive closed)))))
13836 (?d (call-interactively 'org-check-deadlines))
13837 (?b (call-interactively 'org-check-before-date))
13838 (?a (call-interactively 'org-check-after-date))
13839 (?D (call-interactively 'org-check-dates-range))
13840 (?t (call-interactively 'org-show-todo-tree))
13841 (?T (org-show-todo-tree '(4)))
13842 (?m (call-interactively 'org-match-sparse-tree))
13843 ((?p ?P)
13844 (let* ((kwd (org-icompleting-read
13845 "Property: " (mapcar 'list (org-buffer-property-keys))))
13846 (value (org-icompleting-read
13847 "Value: " (mapcar 'list (org-property-values kwd)))))
13848 (unless (string-match "\\`{.*}\\'" value)
13849 (setq value (concat "\"" value "\"")))
13850 (org-match-sparse-tree arg (concat kwd "=" value))))
13851 ((?r ?R ?/) (call-interactively 'org-occur))
13852 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13854 (defvar org-occur-highlights nil
13855 "List of overlays used for occur matches.")
13856 (make-variable-buffer-local 'org-occur-highlights)
13857 (defvar org-occur-parameters nil
13858 "Parameters of the active org-occur calls.
13859 This is a list, each call to org-occur pushes as cons cell,
13860 containing the regular expression and the callback, onto the list.
13861 The list can contain several entries if `org-occur' has been called
13862 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13863 will only contain one set of parameters. When the highlights are
13864 removed (for example with `C-c C-c', or with the next edit (depending
13865 on `org-remove-highlights-with-change'), this variable is emptied
13866 as well.")
13867 (make-variable-buffer-local 'org-occur-parameters)
13869 (defun org-occur (regexp &optional keep-previous callback)
13870 "Make a compact tree which shows all matches of REGEXP.
13871 The tree will show the lines where the regexp matches, and all higher
13872 headlines above the match. It will also show the heading after the match,
13873 to make sure editing the matching entry is easy.
13874 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13875 call to `org-occur' will be kept, to allow stacking of calls to this
13876 command.
13877 If CALLBACK is non-nil, it is a function which is called to confirm
13878 that the match should indeed be shown."
13879 (interactive "sRegexp: \nP")
13880 (when (equal regexp "")
13881 (user-error "Regexp cannot be empty"))
13882 (unless keep-previous
13883 (org-remove-occur-highlights nil nil t))
13884 (push (cons regexp callback) org-occur-parameters)
13885 (let ((cnt 0))
13886 (save-excursion
13887 (goto-char (point-min))
13888 (if (or (not keep-previous) ; do not want to keep
13889 (not org-occur-highlights)) ; no previous matches
13890 ;; hide everything
13891 (org-overview))
13892 (while (re-search-forward regexp nil t)
13893 (when (or (not callback)
13894 (save-match-data (funcall callback)))
13895 (setq cnt (1+ cnt))
13896 (when org-highlight-sparse-tree-matches
13897 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13898 (org-show-context 'occur-tree))))
13899 (when org-remove-highlights-with-change
13900 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13901 nil 'local))
13902 (unless org-sparse-tree-open-archived-trees
13903 (org-hide-archived-subtrees (point-min) (point-max)))
13904 (run-hooks 'org-occur-hook)
13905 (if (org-called-interactively-p 'interactive)
13906 (message "%d match(es) for regexp %s" cnt regexp))
13907 cnt))
13909 (defun org-occur-next-match (&optional n reset)
13910 "Function for `next-error-function' to find sparse tree matches.
13911 N is the number of matches to move, when negative move backwards.
13912 RESET is entirely ignored - this function always goes back to the
13913 starting point when no match is found."
13914 (let* ((limit (if (< n 0) (point-min) (point-max)))
13915 (search-func (if (< n 0)
13916 'previous-single-char-property-change
13917 'next-single-char-property-change))
13918 (n (abs n))
13919 (pos (point))
13921 (catch 'exit
13922 (while (setq p1 (funcall search-func (point) 'org-type))
13923 (when (equal p1 limit)
13924 (goto-char pos)
13925 (user-error "No more matches"))
13926 (when (equal (get-char-property p1 'org-type) 'org-occur)
13927 (setq n (1- n))
13928 (when (= n 0)
13929 (goto-char p1)
13930 (throw 'exit (point))))
13931 (goto-char p1))
13932 (goto-char p1)
13933 (user-error "No more matches"))))
13935 (defun org-show-context (&optional key)
13936 "Make sure point and context are visible.
13937 Optional argument KEY, when non-nil, is a symbol. See
13938 `org-show-context-detail' for allowed values and how much is to
13939 be shown."
13940 (org-show-set-visibility
13941 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13942 ((cdr (assq key org-show-context-detail)))
13943 (t (cdr (assq 'default org-show-context-detail))))))
13945 (defun org-show-set-visibility (detail)
13946 "Set visibility around point according to DETAIL.
13947 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13948 `tree', `canonical' or t. See `org-show-context-detail' for more
13949 information."
13950 (unless (org-before-first-heading-p)
13951 ;; Show current heading and possibly its entry, following headline
13952 ;; or all children.
13953 (if (and (org-at-heading-p) (not (eq detail 'local)))
13954 (org-flag-heading nil)
13955 (org-show-entry)
13956 (org-with-limited-levels
13957 (case detail
13958 ((tree canonical t) (show-children))
13959 ((nil minimal ancestors))
13960 (t (save-excursion
13961 (outline-next-heading)
13962 (org-flag-heading nil))))))
13963 ;; Show all siblings.
13964 (when (eq detail 'lineage) (org-show-siblings))
13965 ;; Show ancestors, possibly with their children.
13966 (when (memq detail '(ancestors lineage tree canonical t))
13967 (save-excursion
13968 (while (org-up-heading-safe)
13969 (org-flag-heading nil)
13970 (when (memq detail '(canonical t)) (org-show-entry))
13971 (when (memq detail '(tree canonical t)) (show-children)))))))
13973 (defvar org-reveal-start-hook nil
13974 "Hook run before revealing a location.")
13976 (defun org-reveal (&optional siblings)
13977 "Show current entry, hierarchy above it, and the following headline.
13979 This can be used to show a consistent set of context around
13980 locations exposed with `org-show-context'.
13982 With optional argument SIBLINGS, on each level of the hierarchy all
13983 siblings are shown. This repairs the tree structure to what it would
13984 look like when opened with hierarchical calls to `org-cycle'.
13986 With double optional argument \\[universal-argument] \\[universal-argument], \
13987 go to the parent and show the
13988 entire tree."
13989 (interactive "P")
13990 (run-hooks 'org-reveal-start-hook)
13991 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
13992 ((equal siblings '(16))
13993 (save-excursion
13994 (when (org-up-heading-safe)
13995 (org-show-subtree)
13996 (run-hook-with-args 'org-cycle-hook 'subtree))))
13997 (t (org-show-set-visibility 'lineage))))
13999 (defun org-highlight-new-match (beg end)
14000 "Highlight from BEG to END and mark the highlight is an occur headline."
14001 (let ((ov (make-overlay beg end)))
14002 (overlay-put ov 'face 'secondary-selection)
14003 (overlay-put ov 'org-type 'org-occur)
14004 (push ov org-occur-highlights)))
14006 (defun org-remove-occur-highlights (&optional beg end noremove)
14007 "Remove the occur highlights from the buffer.
14008 BEG and END are ignored. If NOREMOVE is nil, remove this function
14009 from the `before-change-functions' in the current buffer."
14010 (interactive)
14011 (unless org-inhibit-highlight-removal
14012 (mapc 'delete-overlay org-occur-highlights)
14013 (setq org-occur-highlights nil)
14014 (setq org-occur-parameters nil)
14015 (unless noremove
14016 (remove-hook 'before-change-functions
14017 'org-remove-occur-highlights 'local))))
14019 ;;;; Priorities
14021 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14022 "Regular expression matching the priority indicator.")
14024 (defvar org-remove-priority-next-time nil)
14026 (defun org-priority-up ()
14027 "Increase the priority of the current item."
14028 (interactive)
14029 (org-priority 'up))
14031 (defun org-priority-down ()
14032 "Decrease the priority of the current item."
14033 (interactive)
14034 (org-priority 'down))
14036 (defun org-priority (&optional action show)
14037 "Change the priority of an item.
14038 ACTION can be `set', `up', `down', or a character."
14039 (interactive "P")
14040 (if (equal action '(4))
14041 (org-show-priority)
14042 (unless org-enable-priority-commands
14043 (user-error "Priority commands are disabled"))
14044 (setq action (or action 'set))
14045 (let (current new news have remove)
14046 (save-excursion
14047 (org-back-to-heading t)
14048 (if (looking-at org-priority-regexp)
14049 (setq current (string-to-char (match-string 2))
14050 have t))
14051 (cond
14052 ((eq action 'remove)
14053 (setq remove t new ?\ ))
14054 ((or (eq action 'set)
14055 (if (featurep 'xemacs) (characterp action) (integerp action)))
14056 (if (not (eq action 'set))
14057 (setq new action)
14058 (message "Priority %c-%c, SPC to remove: "
14059 org-highest-priority org-lowest-priority)
14060 (save-match-data
14061 (setq new (read-char-exclusive))))
14062 (if (and (= (upcase org-highest-priority) org-highest-priority)
14063 (= (upcase org-lowest-priority) org-lowest-priority))
14064 (setq new (upcase new)))
14065 (cond ((equal new ?\ ) (setq remove t))
14066 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14067 (user-error "Priority must be between `%c' and `%c'"
14068 org-highest-priority org-lowest-priority))))
14069 ((eq action 'up)
14070 (setq new (if have
14071 (1- current) ; normal cycling
14072 ;; last priority was empty
14073 (if (eq last-command this-command)
14074 org-lowest-priority ; wrap around empty to lowest
14075 ;; default
14076 (if org-priority-start-cycle-with-default
14077 org-default-priority
14078 (1- org-default-priority))))))
14079 ((eq action 'down)
14080 (setq new (if have
14081 (1+ current) ; normal cycling
14082 ;; last priority was empty
14083 (if (eq last-command this-command)
14084 org-highest-priority ; wrap around empty to highest
14085 ;; default
14086 (if org-priority-start-cycle-with-default
14087 org-default-priority
14088 (1+ org-default-priority))))))
14089 (t (user-error "Invalid action")))
14090 (if (or (< (upcase new) org-highest-priority)
14091 (> (upcase new) org-lowest-priority))
14092 (if (and (memq action '(up down))
14093 (not have) (not (eq last-command this-command)))
14094 ;; `new' is from default priority
14095 (error
14096 "The default can not be set, see `org-default-priority' why")
14097 ;; normal cycling: `new' is beyond highest/lowest priority
14098 ;; and is wrapped around to the empty priority
14099 (setq remove t)))
14100 (setq news (format "%c" new))
14101 (if have
14102 (if remove
14103 (replace-match "" t t nil 1)
14104 (replace-match news t t nil 2))
14105 (if remove
14106 (user-error "No priority cookie found in line")
14107 (let ((case-fold-search nil))
14108 (looking-at org-todo-line-regexp))
14109 (if (match-end 2)
14110 (progn
14111 (goto-char (match-end 2))
14112 (insert " [#" news "]"))
14113 (goto-char (match-beginning 3))
14114 (insert "[#" news "] "))))
14115 (org-set-tags nil 'align))
14116 (if remove
14117 (message "Priority removed")
14118 (message "Priority of current item set to %s" news)))))
14120 (defun org-show-priority ()
14121 "Show the priority of the current item.
14122 This priority is composed of the main priority given with the [#A] cookies,
14123 and by additional input from the age of a schedules or deadline entry."
14124 (interactive)
14125 (let ((pri (if (eq major-mode 'org-agenda-mode)
14126 (org-get-at-bol 'priority)
14127 (save-excursion
14128 (save-match-data
14129 (beginning-of-line)
14130 (and (looking-at org-heading-regexp)
14131 (org-get-priority (match-string 0))))))))
14132 (message "Priority is %d" (if pri pri -1000))))
14134 (defun org-get-priority (s)
14135 "Find priority cookie and return priority."
14136 (save-match-data
14137 (if (functionp org-get-priority-function)
14138 (funcall org-get-priority-function)
14139 (if (not (string-match org-priority-regexp s))
14140 (* 1000 (- org-lowest-priority org-default-priority))
14141 (* 1000 (- org-lowest-priority
14142 (string-to-char (match-string 2 s))))))))
14144 ;;;; Tags
14146 (defvar org-agenda-archives-mode)
14147 (defvar org-map-continue-from nil
14148 "Position from where mapping should continue.
14149 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14151 (defvar org-scanner-tags nil
14152 "The current tag list while the tags scanner is running.")
14153 (defvar org-trust-scanner-tags nil
14154 "Should `org-get-tags-at' use the tags for the scanner.
14155 This is for internal dynamical scoping only.
14156 When this is non-nil, the function `org-get-tags-at' will return the value
14157 of `org-scanner-tags' instead of building the list by itself. This
14158 can lead to large speed-ups when the tags scanner is used in a file with
14159 many entries, and when the list of tags is retrieved, for example to
14160 obtain a list of properties. Building the tags list for each entry in such
14161 a file becomes an N^2 operation - but with this variable set, it scales
14162 as N.")
14164 (defun org-scan-tags (action matcher todo-only &optional start-level)
14165 "Scan headline tags with inheritance and produce output ACTION.
14167 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14168 or `agenda' to produce an entry list for an agenda view. It can also be
14169 a Lisp form or a function that should be called at each matched headline, in
14170 this case the return value is a list of all return values from these calls.
14172 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14173 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14174 only lines with a not-done TODO keyword are included in the output.
14175 This should be the same variable that was scoped into
14176 and set by `org-make-tags-matcher' when it constructed MATCHER.
14178 START-LEVEL can be a string with asterisks, reducing the scope to
14179 headlines matching this string."
14180 (require 'org-agenda)
14181 (let* ((re (concat "^"
14182 (if start-level
14183 ;; Get the correct level to match
14184 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14185 org-outline-regexp)
14186 " *\\(\\<\\("
14187 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14188 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14189 (props (list 'face 'default
14190 'done-face 'org-agenda-done
14191 'undone-face 'default
14192 'mouse-face 'highlight
14193 'org-not-done-regexp org-not-done-regexp
14194 'org-todo-regexp org-todo-regexp
14195 'org-complex-heading-regexp org-complex-heading-regexp
14196 'help-echo
14197 (format "mouse-2 or RET jump to org file %s"
14198 (abbreviate-file-name
14199 (or (buffer-file-name (buffer-base-buffer))
14200 (buffer-name (buffer-base-buffer)))))))
14201 (org-map-continue-from nil)
14202 lspos tags tags-list
14203 (tags-alist (list (cons 0 org-file-tags)))
14204 (llast 0) rtn rtn1 level category i txt
14205 todo marker entry priority
14206 ts-date ts-date-type ts-date-pair)
14207 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14208 (setq action (list 'lambda nil action)))
14209 (save-excursion
14210 (goto-char (point-min))
14211 (when (eq action 'sparse-tree)
14212 (org-overview)
14213 (org-remove-occur-highlights))
14214 (while (let (case-fold-search)
14215 (re-search-forward re nil t))
14216 (setq org-map-continue-from nil)
14217 (catch :skip
14218 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14219 tags (if (match-end 4) (org-match-string-no-properties 4)))
14220 (goto-char (setq lspos (match-beginning 0)))
14221 (setq level (org-reduced-level (org-outline-level))
14222 category (org-get-category))
14223 (when (eq action 'agenda)
14224 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14225 ts-date (car ts-date-pair)
14226 ts-date-type (cdr ts-date-pair)))
14227 (setq i llast llast level)
14228 ;; remove tag lists from same and sublevels
14229 (while (>= i level)
14230 (when (setq entry (assoc i tags-alist))
14231 (setq tags-alist (delete entry tags-alist)))
14232 (setq i (1- i)))
14233 ;; add the next tags
14234 (when tags
14235 (setq tags (org-split-string tags ":")
14236 tags-alist
14237 (cons (cons level tags) tags-alist)))
14238 ;; compile tags for current headline
14239 (setq tags-list
14240 (if org-use-tag-inheritance
14241 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14242 tags)
14243 org-scanner-tags tags-list)
14244 (when org-use-tag-inheritance
14245 (setcdr (car tags-alist)
14246 (mapcar (lambda (x)
14247 (setq x (copy-sequence x))
14248 (org-add-prop-inherited x))
14249 (cdar tags-alist))))
14250 (when (and tags org-use-tag-inheritance
14251 (or (not (eq t org-use-tag-inheritance))
14252 org-tags-exclude-from-inheritance))
14253 ;; selective inheritance, remove uninherited ones
14254 (setcdr (car tags-alist)
14255 (org-remove-uninherited-tags (cdar tags-alist))))
14256 (when (and
14258 ;; eval matcher only when the todo condition is OK
14259 (and (or (not todo-only) (member todo org-not-done-keywords))
14260 (let ((case-fold-search t) (org-trust-scanner-tags t))
14261 (eval matcher)))
14263 ;; Call the skipper, but return t if it does not skip,
14264 ;; so that the `and' form continues evaluating
14265 (progn
14266 (unless (eq action 'sparse-tree) (org-agenda-skip))
14269 ;; Check if timestamps are deselecting this entry
14270 (or (not todo-only)
14271 (and (member todo org-not-done-keywords)
14272 (or (not org-agenda-tags-todo-honor-ignore-options)
14273 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14275 ;; select this headline
14276 (cond
14277 ((eq action 'sparse-tree)
14278 (and org-highlight-sparse-tree-matches
14279 (org-get-heading) (match-end 0)
14280 (org-highlight-new-match
14281 (match-beginning 1) (match-end 1)))
14282 (org-show-context 'tags-tree))
14283 ((eq action 'agenda)
14284 (setq txt (org-agenda-format-item
14286 (concat
14287 (if (eq org-tags-match-list-sublevels 'indented)
14288 (make-string (1- level) ?.) "")
14289 (org-get-heading))
14290 (make-string level ?\s)
14291 category
14292 tags-list)
14293 priority (org-get-priority txt))
14294 (goto-char lspos)
14295 (setq marker (org-agenda-new-marker))
14296 (org-add-props txt props
14297 'org-marker marker 'org-hd-marker marker 'org-category category
14298 'todo-state todo
14299 'ts-date ts-date
14300 'priority priority
14301 'type (concat "tagsmatch" ts-date-type))
14302 (push txt rtn))
14303 ((functionp action)
14304 (setq org-map-continue-from nil)
14305 (save-excursion
14306 (setq rtn1 (funcall action))
14307 (push rtn1 rtn)))
14308 (t (user-error "Invalid action")))
14310 ;; if we are to skip sublevels, jump to end of subtree
14311 (unless org-tags-match-list-sublevels
14312 (org-end-of-subtree t)
14313 (backward-char 1))))
14314 ;; Get the correct position from where to continue
14315 (if org-map-continue-from
14316 (goto-char org-map-continue-from)
14317 (and (= (point) lspos) (end-of-line 1)))))
14318 (when (and (eq action 'sparse-tree)
14319 (not org-sparse-tree-open-archived-trees))
14320 (org-hide-archived-subtrees (point-min) (point-max)))
14321 (nreverse rtn)))
14323 (defun org-remove-uninherited-tags (tags)
14324 "Remove all tags that are not inherited from the list TAGS."
14325 (cond
14326 ((eq org-use-tag-inheritance t)
14327 (if org-tags-exclude-from-inheritance
14328 (org-delete-all org-tags-exclude-from-inheritance tags)
14329 tags))
14330 ((not org-use-tag-inheritance) nil)
14331 ((stringp org-use-tag-inheritance)
14332 (delq nil (mapcar
14333 (lambda (x)
14334 (if (and (string-match org-use-tag-inheritance x)
14335 (not (member x org-tags-exclude-from-inheritance)))
14336 x nil))
14337 tags)))
14338 ((listp org-use-tag-inheritance)
14339 (delq nil (mapcar
14340 (lambda (x)
14341 (if (member x org-use-tag-inheritance) x nil))
14342 tags)))))
14344 (defun org-match-sparse-tree (&optional todo-only match)
14345 "Create a sparse tree according to tags string MATCH.
14346 MATCH can contain positive and negative selection of tags, like
14347 \"+WORK+URGENT-WITHBOSS\".
14348 If optional argument TODO-ONLY is non-nil, only select lines that are
14349 also TODO lines."
14350 (interactive "P")
14351 (org-agenda-prepare-buffers (list (current-buffer)))
14352 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14354 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14356 (defvar org-cached-props nil)
14357 (defun org-cached-entry-get (pom property)
14358 (if (or (eq t org-use-property-inheritance)
14359 (and (stringp org-use-property-inheritance)
14360 (let ((case-fold-search t))
14361 (org-string-match-p org-use-property-inheritance property)))
14362 (and (listp org-use-property-inheritance)
14363 (member-ignore-case property org-use-property-inheritance)))
14364 ;; Caching is not possible, check it directly.
14365 (org-entry-get pom property 'inherit)
14366 ;; Get all properties, so we can do complicated checks easily.
14367 (cdr (assoc-string property
14368 (or org-cached-props
14369 (setq org-cached-props (org-entry-properties pom)))
14370 t))))
14372 (defun org-global-tags-completion-table (&optional files)
14373 "Return the list of all tags in all agenda buffer/files.
14374 Optional FILES argument is a list of files which can be used
14375 instead of the agenda files."
14376 (save-excursion
14377 (org-uniquify
14378 (delq nil
14379 (apply 'append
14380 (mapcar
14381 (lambda (file)
14382 (set-buffer (find-file-noselect file))
14383 (append (org-get-buffer-tags)
14384 (mapcar (lambda (x) (if (stringp (car-safe x))
14385 (list (car-safe x)) nil))
14386 org-tag-alist)))
14387 (if (and files (car files))
14388 files
14389 (org-agenda-files))))))))
14391 (defun org-make-tags-matcher (match)
14392 "Create the TAGS/TODO matcher form for the selection string MATCH.
14394 The variable `todo-only' is scoped dynamically into this function.
14395 It will be set to t if the matcher restricts matching to TODO entries,
14396 otherwise will not be touched.
14398 Returns a cons of the selection string MATCH and the constructed
14399 lisp form implementing the matcher. The matcher is to be evaluated
14400 at an Org entry, with point on the headline, and returns t if the
14401 entry matches the selection string MATCH. The returned lisp form
14402 references two variables with information about the entry, which
14403 must be bound around the form's evaluation: todo, the TODO keyword
14404 at the entry (or nil of none); and tags-list, the list of all tags
14405 at the entry including inherited ones. Additionally, the category
14406 of the entry (if any) must be specified as the text property
14407 'org-category on the headline.
14409 See also `org-scan-tags'.
14411 (declare (special todo-only))
14412 (unless (boundp 'todo-only)
14413 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14414 (unless match
14415 ;; Get a new match request, with completion against the global
14416 ;; tags table and the local tags in current buffer
14417 (let ((org-last-tags-completion-table
14418 (org-uniquify
14419 (delq nil (append (org-get-buffer-tags)
14420 (org-global-tags-completion-table))))))
14421 (setq match (org-completing-read-no-i
14422 "Match: " 'org-tags-completion-function nil nil nil
14423 'org-tags-history))))
14425 ;; Parse the string and create a lisp form
14426 (let ((match0 match)
14427 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14428 minus tag mm
14429 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14430 orterms term orlist re-p str-p level-p level-op time-p
14431 prop-p pn pv po gv rest (start 0) (ss 0))
14432 ;; Expand group tags
14433 (setq match (org-tags-expand match))
14435 ;; Check if there is a TODO part of this match, which would be the
14436 ;; part after a "/". TO make sure that this slash is not part of
14437 ;; a property value to be matched against, we also check that there
14438 ;; is no " after that slash.
14439 ;; First, find the last slash
14440 (while (string-match "/+" match ss)
14441 (setq start (match-beginning 0) ss (match-end 0)))
14442 (if (and (string-match "/+" match start)
14443 (not (save-match-data (string-match "\"" match start))))
14444 ;; match contains also a todo-matching request
14445 (progn
14446 (setq tagsmatch (substring match 0 (match-beginning 0))
14447 todomatch (substring match (match-end 0)))
14448 (if (string-match "^!" todomatch)
14449 (setq todo-only t todomatch (substring todomatch 1)))
14450 (if (string-match "^\\s-*$" todomatch)
14451 (setq todomatch nil)))
14452 ;; only matching tags
14453 (setq tagsmatch match todomatch nil))
14455 ;; Make the tags matcher
14456 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14457 (setq tagsmatcher t)
14458 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14459 (while (setq term (pop orterms))
14460 (while (and (equal (substring term -1) "\\") orterms)
14461 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14462 (while (string-match re term)
14463 (setq rest (substring term (match-end 0))
14464 minus (and (match-end 1)
14465 (equal (match-string 1 term) "-"))
14466 tag (save-match-data (replace-regexp-in-string
14467 "\\\\-" "-"
14468 (match-string 2 term)))
14469 re-p (equal (string-to-char tag) ?{)
14470 level-p (match-end 4)
14471 prop-p (match-end 5)
14472 mm (cond
14473 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14474 (level-p
14475 (setq level-op (org-op-to-function (match-string 3 term)))
14476 `(,level-op level ,(string-to-number
14477 (match-string 4 term))))
14478 (prop-p
14479 (setq pn (match-string 5 term)
14480 po (match-string 6 term)
14481 pv (match-string 7 term)
14482 re-p (equal (string-to-char pv) ?{)
14483 str-p (equal (string-to-char pv) ?\")
14484 time-p (save-match-data
14485 (string-match "^\"[[<].*[]>]\"$" pv))
14486 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14487 (if time-p (setq pv (org-matcher-time pv)))
14488 (setq po (org-op-to-function po (if time-p 'time str-p)))
14489 (cond
14490 ((equal pn "CATEGORY")
14491 (setq gv '(get-text-property (point) 'org-category)))
14492 ((equal pn "TODO")
14493 (setq gv 'todo))
14495 (setq gv `(org-cached-entry-get nil ,pn))))
14496 (if re-p
14497 (if (eq po 'org<>)
14498 `(not (string-match ,pv (or ,gv "")))
14499 `(string-match ,pv (or ,gv "")))
14500 (if str-p
14501 `(,po (or ,gv "") ,pv)
14502 `(,po (string-to-number (or ,gv ""))
14503 ,(string-to-number pv) ))))
14504 (t `(member ,tag tags-list)))
14505 mm (if minus (list 'not mm) mm)
14506 term rest)
14507 (push mm tagsmatcher))
14508 (push (if (> (length tagsmatcher) 1)
14509 (cons 'and tagsmatcher)
14510 (car tagsmatcher))
14511 orlist)
14512 (setq tagsmatcher nil))
14513 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14514 (setq tagsmatcher
14515 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14516 ;; Make the todo matcher
14517 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14518 (setq todomatcher t)
14519 (setq orterms (org-split-string todomatch "|") orlist nil)
14520 (while (setq term (pop orterms))
14521 (while (string-match re term)
14522 (setq minus (and (match-end 1)
14523 (equal (match-string 1 term) "-"))
14524 kwd (match-string 2 term)
14525 re-p (equal (string-to-char kwd) ?{)
14526 term (substring term (match-end 0))
14527 mm (if re-p
14528 `(string-match ,(substring kwd 1 -1) todo)
14529 (list 'equal 'todo kwd))
14530 mm (if minus (list 'not mm) mm))
14531 (push mm todomatcher))
14532 (push (if (> (length todomatcher) 1)
14533 (cons 'and todomatcher)
14534 (car todomatcher))
14535 orlist)
14536 (setq todomatcher nil))
14537 (setq todomatcher (if (> (length orlist) 1)
14538 (cons 'or orlist) (car orlist))))
14540 ;; Return the string and lisp forms of the matcher
14541 (setq matcher (if todomatcher
14542 (list 'and tagsmatcher todomatcher)
14543 tagsmatcher))
14544 (when todo-only
14545 (setq matcher (list 'and '(member todo org-not-done-keywords)
14546 matcher)))
14547 (cons match0 matcher)))
14549 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14550 "Expand group tags in MATCH.
14552 This replaces every group tag in MATCH with a regexp tag search.
14553 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14554 will be replaced like this:
14556 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14557 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14558 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14560 Replacing by a regexp preserves the structure of the match.
14561 E.g., this expansion
14563 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14565 will match anything tagged with \"Lab\" and \"Home\", or tagged
14566 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14568 A group tag in MATCH can contain regular expressions of its own.
14569 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14570 will be replaced like this:
14572 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14574 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14575 assumed to be a single group tag, and the function will return
14576 the list of tags in this group.
14578 When DOWNCASE is non-nil, expand downcased TAGS."
14579 (if org-group-tags
14580 (let* ((case-fold-search t)
14581 (stable org-mode-syntax-table)
14582 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14583 (taggroups (if downcased
14584 (mapcar (lambda (tg) (mapcar #'downcase tg))
14585 taggroups)
14586 taggroups))
14587 (taggroups-keys (mapcar #'car taggroups))
14588 (return-match (if downcased (downcase match) match))
14589 (count 0)
14590 (work-already-expanded tags-already-expanded)
14591 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14592 ;; @ and _ are allowed as word-components in tags.
14593 (modify-syntax-entry ?@ "w" stable)
14594 (modify-syntax-entry ?_ "w" stable)
14595 ;; Temporarily replace regexp-expressions in the match-expression.
14596 (while (string-match "{.+?}" return-match)
14597 (incf count)
14598 (push (match-string 0 return-match) regexps-in-match)
14599 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14600 (while (and taggroups-keys
14601 (with-syntax-table stable
14602 (string-match
14603 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14604 (regexp-opt taggroups-keys) "\\>\\)") return-match)))
14605 (let* ((dir (match-string 1 return-match))
14606 (tag (match-string 2 return-match))
14607 (tag (if downcased (downcase tag) tag)))
14608 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14609 (member tag work-already-expanded))
14610 (setq tags-in-group (assoc tag taggroups))
14611 (push tag work-already-expanded)
14612 ;; Recursively expand each tag in the group, if the tag hasn't
14613 ;; already been expanded. Restore the match-data after all recursive calls.
14614 (save-match-data
14615 (let (tags-expanded)
14616 (dolist (x (cdr tags-in-group))
14617 (if (and (member x taggroups-keys)
14618 (not (member x work-already-expanded)))
14619 (setq tags-expanded
14620 (delete-dups
14621 (append
14622 (org-tags-expand x t downcased
14623 work-already-expanded)
14624 tags-expanded)))
14625 (setq tags-expanded
14626 (append (list x) tags-expanded)))
14627 (setq work-already-expanded
14628 (delete-dups
14629 (append tags-expanded
14630 work-already-expanded))))
14631 (setq tags-in-group
14632 (delete-dups (cons (car tags-in-group)
14633 tags-expanded)))))
14634 ;; Filter tag-regexps from tags.
14635 (setq regexp-in-group-escaped
14636 (delq nil (mapcar (lambda (x)
14637 (if (stringp x)
14638 (and (equal "{" (substring x 0 1))
14639 (equal "}" (substring x -1))
14642 tags-in-group))
14643 regexp-in-group
14644 (mapcar (lambda (x)
14645 (substring x 1 -1))
14646 regexp-in-group-escaped)
14647 tags-in-group
14648 (delq nil (mapcar (lambda (x)
14649 (if (stringp x)
14650 (and (not (equal "{" (substring x 0 1)))
14651 (not (equal "}" (substring x -1)))
14654 tags-in-group)))
14655 ;; If single-as-list, do no more in the while-loop.
14656 (if (not single-as-list)
14657 (progn
14658 (when regexp-in-group
14659 (setq regexp-in-group
14660 (concat "\\|"
14661 (mapconcat 'identity regexp-in-group
14662 "\\|"))))
14663 (setq tags-in-group
14664 (concat dir
14665 "{\\<"
14666 (regexp-opt tags-in-group)
14667 "\\>"
14668 regexp-in-group
14669 "}"))
14670 (when (stringp tags-in-group)
14671 (org-add-props tags-in-group '(grouptag t)))
14672 (setq return-match
14673 (replace-match tags-in-group t t return-match)))
14674 (setq tags-in-group
14675 (append regexp-in-group-escaped tags-in-group))))
14676 (setq taggroups-keys (delete tag taggroups-keys))))
14677 ;; Add the regular expressions back into the match-expression again.
14678 (while regexps-in-match
14679 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14680 (pop regexps-in-match)
14681 return-match t t))
14682 (decf count))
14683 (if single-as-list
14684 (if tags-in-group tags-in-group (list return-match))
14685 return-match))
14686 (if single-as-list
14687 (list (if downcased (downcase match) match))
14688 match)))
14690 (defun org-op-to-function (op &optional stringp)
14691 "Turn an operator into the appropriate function."
14692 (setq op
14693 (cond
14694 ((equal op "<" ) '(< string< org-time<))
14695 ((equal op ">" ) '(> org-string> org-time>))
14696 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14697 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14698 ((member op '("=" "==")) '(= string= org-time=))
14699 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14700 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14702 (defun org<> (a b) (not (= a b)))
14703 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14704 (defun org-string>= (a b) (not (string< a b)))
14705 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14706 (defun org-string<> (a b) (not (string= a b)))
14707 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14708 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14709 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14710 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14711 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14712 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14713 (defun org-2ft (s)
14714 "Convert S to a floating point time.
14715 If S is already a number, just return it. If it is a string, parse
14716 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14717 (cond
14718 ((numberp s) s)
14719 ((stringp s)
14720 (condition-case nil
14721 (float-time (apply 'encode-time (org-parse-time-string s)))
14722 (error 0.)))
14723 (t 0.)))
14725 (defun org-time-today ()
14726 "Time in seconds today at 0:00.
14727 Returns the float number of seconds since the beginning of the
14728 epoch to the beginning of today (00:00)."
14729 (float-time (apply 'encode-time
14730 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14732 (defun org-matcher-time (s)
14733 "Interpret a time comparison value."
14734 (save-match-data
14735 (cond
14736 ((string= s "<now>") (float-time))
14737 ((string= s "<today>") (org-time-today))
14738 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14739 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14740 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14741 (+ (org-time-today)
14742 (* (string-to-number (match-string 1 s))
14743 (cdr (assoc (match-string 2 s)
14744 '(("d" . 86400.0) ("w" . 604800.0)
14745 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14746 (t (org-2ft s)))))
14748 (defun org-match-any-p (re list)
14749 "Does re match any element of list?"
14750 (setq list (mapcar (lambda (x) (string-match re x)) list))
14751 (delq nil list))
14753 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14754 (defvar org-tags-overlay (make-overlay 1 1))
14755 (org-detach-overlay org-tags-overlay)
14757 (defun org-get-local-tags-at (&optional pos)
14758 "Get a list of tags defined in the current headline."
14759 (org-get-tags-at pos 'local))
14761 (defun org-get-local-tags ()
14762 "Get a list of tags defined in the current headline."
14763 (org-get-tags-at nil 'local))
14765 (defun org-get-tags-at (&optional pos local)
14766 "Get a list of all headline tags applicable at POS.
14767 POS defaults to point. If tags are inherited, the list contains
14768 the targets in the same sequence as the headlines appear, i.e.
14769 the tags of the current headline come last.
14770 When LOCAL is non-nil, only return tags from the current headline,
14771 ignore inherited ones."
14772 (interactive)
14773 (if (and org-trust-scanner-tags
14774 (or (not pos) (equal pos (point)))
14775 (not local))
14776 org-scanner-tags
14777 (let (tags ltags lastpos parent)
14778 (save-excursion
14779 (save-restriction
14780 (widen)
14781 (goto-char (or pos (point)))
14782 (save-match-data
14783 (catch 'done
14784 (condition-case nil
14785 (progn
14786 (org-back-to-heading t)
14787 (while (not (equal lastpos (point)))
14788 (setq lastpos (point))
14789 (when (looking-at
14790 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14791 (setq ltags (org-split-string
14792 (org-match-string-no-properties 1) ":"))
14793 (when parent
14794 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14795 (setq tags (append
14796 (if parent
14797 (org-remove-uninherited-tags ltags)
14798 ltags)
14799 tags)))
14800 (or org-use-tag-inheritance (throw 'done t))
14801 (if local (throw 'done t))
14802 (or (org-up-heading-safe) (error nil))
14803 (setq parent t)))
14804 (error nil)))))
14805 (if local
14806 tags
14807 (reverse (delete-dups
14808 (reverse (append
14809 (org-remove-uninherited-tags
14810 org-file-tags) tags)))))))))
14812 (defun org-add-prop-inherited (s)
14813 (add-text-properties 0 (length s) '(inherited t) s)
14816 (defun org-toggle-tag (tag &optional onoff)
14817 "Toggle the tag TAG for the current line.
14818 If ONOFF is `on' or `off', don't toggle but set to this state."
14819 (let (res current)
14820 (save-excursion
14821 (org-back-to-heading t)
14822 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14823 (point-at-eol) t)
14824 (progn
14825 (setq current (match-string 1))
14826 (replace-match ""))
14827 (setq current ""))
14828 (setq current (nreverse (org-split-string current ":")))
14829 (cond
14830 ((eq onoff 'on)
14831 (setq res t)
14832 (or (member tag current) (push tag current)))
14833 ((eq onoff 'off)
14834 (or (not (member tag current)) (setq current (delete tag current))))
14835 (t (if (member tag current)
14836 (setq current (delete tag current))
14837 (setq res t)
14838 (push tag current))))
14839 (end-of-line 1)
14840 (if current
14841 (progn
14842 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14843 (org-set-tags nil t))
14844 (delete-horizontal-space))
14845 (run-hooks 'org-after-tags-change-hook))
14846 res))
14848 (defun org-align-tags-here (to-col)
14849 ;; Assumes that this is a headline
14850 "Align tags on the current headline to TO-COL."
14851 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14852 (beginning-of-line 1)
14853 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14854 (< pos (match-beginning 2)))
14855 (progn
14856 (setq tags-l (- (match-end 2) (match-beginning 2)))
14857 (goto-char (match-beginning 1))
14858 (insert " ")
14859 (delete-region (point) (1+ (match-beginning 2)))
14860 (setq ncol (max (current-column)
14861 (1+ col)
14862 (if (> to-col 0)
14863 to-col
14864 (- (abs to-col) tags-l))))
14865 (setq p (point))
14866 (insert (make-string (- ncol (current-column)) ?\ ))
14867 (setq ncol (current-column))
14868 (when indent-tabs-mode (tabify p (point-at-eol)))
14869 (org-move-to-column (min ncol col)))
14870 (goto-char pos))))
14872 (defun org-set-tags-command (&optional arg just-align)
14873 "Call the set-tags command for the current entry."
14874 (interactive "P")
14875 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14876 (org-set-tags arg just-align)
14877 (save-excursion
14878 (unless (and (org-region-active-p)
14879 org-loop-over-headlines-in-active-region)
14880 (org-back-to-heading t))
14881 (org-set-tags arg just-align))))
14883 (defun org-set-tags-to (data)
14884 "Set the tags of the current entry to DATA, replacing the current tags.
14885 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14886 If DATA is nil or the empty string, any tags will be removed."
14887 (interactive "sTags: ")
14888 (setq data
14889 (cond
14890 ((eq data nil) "")
14891 ((equal data "") "")
14892 ((stringp data)
14893 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14894 ":"))
14895 ((listp data)
14896 (concat ":" (mapconcat 'identity data ":") ":"))))
14897 (when data
14898 (save-excursion
14899 (org-back-to-heading t)
14900 (when (looking-at org-complex-heading-regexp)
14901 (if (match-end 5)
14902 (progn
14903 (goto-char (match-beginning 5))
14904 (insert data)
14905 (delete-region (point) (point-at-eol))
14906 (org-set-tags nil 'align))
14907 (goto-char (point-at-eol))
14908 (insert " " data)
14909 (org-set-tags nil 'align)))
14910 (beginning-of-line 1)
14911 (if (looking-at ".*?\\([ \t]+\\)$")
14912 (delete-region (match-beginning 1) (match-end 1))))))
14914 (defun org-align-all-tags ()
14915 "Align the tags i all headings."
14916 (interactive)
14917 (save-excursion
14918 (or (ignore-errors (org-back-to-heading t))
14919 (outline-next-heading))
14920 (if (org-at-heading-p)
14921 (org-set-tags t)
14922 (message "No headings"))))
14924 (defvar org-indent-indentation-per-level)
14925 (defun org-set-tags (&optional arg just-align)
14926 "Set the tags for the current headline.
14927 With prefix ARG, realign all tags in headings in the current buffer.
14928 When JUST-ALIGN is non-nil, only align tags."
14929 (interactive "P")
14930 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14931 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14932 'region-start-level 'region))
14933 org-loop-over-headlines-in-active-region)
14934 (org-map-entries
14935 ;; We don't use ARG and JUST-ALIGN here because these args
14936 ;; are not useful when looping over headlines.
14937 `(org-set-tags)
14938 org-loop-over-headlines-in-active-region
14939 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14940 (let* ((re org-outline-regexp-bol)
14941 (current (unless arg (org-get-tags-string)))
14942 (col (current-column))
14943 (org-setting-tags t)
14944 table current-tags inherited-tags ; computed below when needed
14945 tags p0 c0 c1 rpl di tc level)
14946 (if arg
14947 (save-excursion
14948 (goto-char (point-min))
14949 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14950 (while (re-search-forward re nil t)
14951 (org-set-tags nil t)
14952 (end-of-line 1)))
14953 (message "All tags realigned to column %d" org-tags-column))
14954 (if just-align
14955 (setq tags current)
14956 ;; Get a new set of tags from the user
14957 (save-excursion
14958 (setq table (append org-tag-persistent-alist
14959 (or org-tag-alist (org-get-buffer-tags))
14960 (and
14961 org-complete-tags-always-offer-all-agenda-tags
14962 (org-global-tags-completion-table
14963 (org-agenda-files))))
14964 org-last-tags-completion-table table
14965 current-tags (org-split-string current ":")
14966 inherited-tags (nreverse
14967 (nthcdr (length current-tags)
14968 (nreverse (org-get-tags-at))))
14969 tags
14970 (if (or (eq t org-use-fast-tag-selection)
14971 (and org-use-fast-tag-selection
14972 (delq nil (mapcar 'cdr table))))
14973 (org-fast-tag-selection
14974 current-tags inherited-tags table
14975 (if org-fast-tag-selection-include-todo
14976 org-todo-key-alist))
14977 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14978 (org-trim
14979 (org-icompleting-read "Tags: "
14980 'org-tags-completion-function
14981 nil nil current 'org-tags-history))))))
14982 (while (string-match "[-+&]+" tags)
14983 ;; No boolean logic, just a list
14984 (setq tags (replace-match ":" t t tags))))
14986 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14988 (if org-tags-sort-function
14989 (setq tags (mapconcat 'identity
14990 (sort (org-split-string
14991 tags (org-re "[^[:alnum:]_@#%]+"))
14992 org-tags-sort-function) ":")))
14994 (if (string-match "\\`[\t ]*\\'" tags)
14995 (setq tags "")
14996 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14997 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14999 ;; Insert new tags at the correct column
15000 (beginning-of-line 1)
15001 (setq level (or (and (looking-at org-outline-regexp)
15002 (- (match-end 0) (point) 1))
15004 (cond
15005 ((and (equal current "") (equal tags "")))
15006 ((re-search-forward
15007 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15008 (point-at-eol) t)
15009 (if (equal tags "")
15010 (setq rpl "")
15011 (goto-char (match-beginning 0))
15012 (setq c0 (current-column)
15013 ;; compute offset for the case of org-indent-mode active
15014 di (if (org-bound-and-true-p org-indent-mode)
15015 (* (1- org-indent-indentation-per-level) (1- level))
15017 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
15018 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
15019 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
15020 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
15021 (replace-match rpl t t)
15022 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
15023 tags)
15024 (t (error "Tags alignment failed")))
15025 (org-move-to-column col)
15026 (unless just-align
15027 (run-hooks 'org-after-tags-change-hook))))))
15029 (defun org-change-tag-in-region (beg end tag off)
15030 "Add or remove TAG for each entry in the region.
15031 This works in the agenda, and also in an org-mode buffer."
15032 (interactive
15033 (list (region-beginning) (region-end)
15034 (let ((org-last-tags-completion-table
15035 (if (derived-mode-p 'org-mode)
15036 (org-uniquify
15037 (delq nil (append (org-get-buffer-tags)
15038 (org-global-tags-completion-table))))
15039 (org-global-tags-completion-table))))
15040 (org-icompleting-read
15041 "Tag: " 'org-tags-completion-function nil nil nil
15042 'org-tags-history))
15043 (progn
15044 (message "[s]et or [r]emove? ")
15045 (equal (read-char-exclusive) ?r))))
15046 (if (fboundp 'deactivate-mark) (deactivate-mark))
15047 (let ((agendap (equal major-mode 'org-agenda-mode))
15048 l1 l2 m buf pos newhead (cnt 0))
15049 (goto-char end)
15050 (setq l2 (1- (org-current-line)))
15051 (goto-char beg)
15052 (setq l1 (org-current-line))
15053 (loop for l from l1 to l2 do
15054 (org-goto-line l)
15055 (setq m (get-text-property (point) 'org-hd-marker))
15056 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15057 (and agendap m))
15058 (setq buf (if agendap (marker-buffer m) (current-buffer))
15059 pos (if agendap m (point)))
15060 (with-current-buffer buf
15061 (save-excursion
15062 (save-restriction
15063 (goto-char pos)
15064 (setq cnt (1+ cnt))
15065 (org-toggle-tag tag (if off 'off 'on))
15066 (setq newhead (org-get-heading)))))
15067 (and agendap (org-agenda-change-all-lines newhead m))))
15068 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15070 (defun org-tags-completion-function (string predicate &optional flag)
15071 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15072 (confirm (lambda (x) (stringp (car x)))))
15073 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15074 (setq s1 (match-string 1 string)
15075 s2 (match-string 2 string))
15076 (setq s1 "" s2 string))
15077 (cond
15078 ((eq flag nil)
15079 ;; try completion
15080 (setq rtn (try-completion s2 ctable confirm))
15081 (if (stringp rtn)
15082 (setq rtn
15083 (concat s1 s2 (substring rtn (length s2))
15084 (if (and org-add-colon-after-tag-completion
15085 (assoc rtn ctable))
15086 ":" ""))))
15087 rtn)
15088 ((eq flag t)
15089 ;; all-completions
15090 (all-completions s2 ctable confirm))
15091 ((eq flag 'lambda)
15092 ;; exact match?
15093 (assoc s2 ctable)))))
15095 (defun org-fast-tag-insert (kwd tags face &optional end)
15096 "Insert KDW, and the TAGS, the latter with face FACE.
15097 Also insert END."
15098 (insert (format "%-12s" (concat kwd ":"))
15099 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15100 (or end "")))
15102 (defun org-fast-tag-show-exit (flag)
15103 (save-excursion
15104 (org-goto-line 3)
15105 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15106 (replace-match ""))
15107 (when flag
15108 (end-of-line 1)
15109 (org-move-to-column (- (window-width) 19) t)
15110 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15112 (defun org-set-current-tags-overlay (current prefix)
15113 "Add an overlay to CURRENT tag with PREFIX."
15114 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15115 (if (featurep 'xemacs)
15116 (org-overlay-display org-tags-overlay (concat prefix s)
15117 'secondary-selection)
15118 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15119 (org-overlay-display org-tags-overlay (concat prefix s)))))
15121 (defvar org-last-tag-selection-key nil)
15122 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15123 "Fast tag selection with single keys.
15124 CURRENT is the current list of tags in the headline, INHERITED is the
15125 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15126 possibly with grouping information. TODO-TABLE is a similar table with
15127 TODO keywords, should these have keys assigned to them.
15128 If the keys are nil, a-z are automatically assigned.
15129 Returns the new tags string, or nil to not change the current settings."
15130 (let* ((fulltable (append table todo-table))
15131 (maxlen (apply 'max (mapcar
15132 (lambda (x)
15133 (if (stringp (car x)) (string-width (car x)) 0))
15134 fulltable)))
15135 (buf (current-buffer))
15136 (expert (eq org-fast-tag-selection-single-key 'expert))
15137 (buffer-tags nil)
15138 (fwidth (+ maxlen 3 1 3))
15139 (ncol (/ (- (window-width) 4) fwidth))
15140 (i-face 'org-done)
15141 (c-face 'org-todo)
15142 tg cnt e c char c1 c2 ntable tbl rtn
15143 ov-start ov-end ov-prefix
15144 (exit-after-next org-fast-tag-selection-single-key)
15145 (done-keywords org-done-keywords)
15146 groups ingroup intaggroup)
15147 (save-excursion
15148 (beginning-of-line 1)
15149 (if (looking-at
15150 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15151 (setq ov-start (match-beginning 1)
15152 ov-end (match-end 1)
15153 ov-prefix "")
15154 (setq ov-start (1- (point-at-eol))
15155 ov-end (1+ ov-start))
15156 (skip-chars-forward "^\n\r")
15157 (setq ov-prefix
15158 (concat
15159 (buffer-substring (1- (point)) (point))
15160 (if (> (current-column) org-tags-column)
15162 (make-string (- org-tags-column (current-column)) ?\ ))))))
15163 (move-overlay org-tags-overlay ov-start ov-end)
15164 (save-window-excursion
15165 (if expert
15166 (set-buffer (get-buffer-create " *Org tags*"))
15167 (delete-other-windows)
15168 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15169 (org-switch-to-buffer-other-window " *Org tags*"))
15170 (erase-buffer)
15171 (org-set-local 'org-done-keywords done-keywords)
15172 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15173 (org-fast-tag-insert "Current" current c-face "\n\n")
15174 (org-fast-tag-show-exit exit-after-next)
15175 (org-set-current-tags-overlay current ov-prefix)
15176 (setq tbl fulltable char ?a cnt 0)
15177 (while (setq e (pop tbl))
15178 (cond
15179 ((eq (car e) :startgroup)
15180 (push '() groups) (setq ingroup t)
15181 (unless (zerop cnt)
15182 (setq cnt 0)
15183 (insert "\n"))
15184 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15185 ((eq (car e) :endgroup)
15186 (setq ingroup nil cnt 0)
15187 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15188 ((eq (car e) :startgrouptag)
15189 (setq intaggroup t)
15190 (unless (zerop cnt)
15191 (setq cnt 0)
15192 (insert "\n"))
15193 (insert "[ "))
15194 ((eq (car e) :endgrouptag)
15195 (setq intaggroup nil cnt 0)
15196 (insert "]\n"))
15197 ((equal e '(:newline))
15198 (unless (zerop cnt)
15199 (setq cnt 0)
15200 (insert "\n")
15201 (setq e (car tbl))
15202 (while (equal (car tbl) '(:newline))
15203 (insert "\n")
15204 (setq tbl (cdr tbl)))))
15205 ((equal e '(:grouptags)) (insert " : "))
15207 (setq tg (copy-sequence (car e)) c2 nil)
15208 (if (cdr e)
15209 (setq c (cdr e))
15210 ;; automatically assign a character.
15211 (setq c1 (string-to-char
15212 (downcase (substring
15213 tg (if (= (string-to-char tg) ?@) 1 0)))))
15214 (if (or (rassoc c1 ntable) (rassoc c1 table))
15215 (while (or (rassoc char ntable) (rassoc char table))
15216 (setq char (1+ char)))
15217 (setq c2 c1))
15218 (setq c (or c2 char)))
15219 (when ingroup (push tg (car groups)))
15220 (setq tg (org-add-props tg nil 'face
15221 (cond
15222 ((not (assoc tg table))
15223 (org-get-todo-face tg))
15224 ((member tg current) c-face)
15225 ((member tg inherited) i-face))))
15226 (when (equal (caar tbl) :grouptags)
15227 (org-add-props tg nil 'face 'org-tag-group))
15228 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15229 (insert "[" c "] " tg (make-string
15230 (- fwidth 4 (length tg)) ?\ ))
15231 (push (cons tg c) ntable)
15232 (when (= (incf cnt) ncol)
15233 (insert "\n")
15234 (when (or ingroup intaggroup) (insert " "))
15235 (setq cnt 0)))))
15236 (setq ntable (nreverse ntable))
15237 (insert "\n")
15238 (goto-char (point-min))
15239 (unless expert (org-fit-window-to-buffer))
15240 (setq rtn
15241 (catch 'exit
15242 (while t
15243 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15244 (if (not groups) "no " "")
15245 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15246 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15247 (setq org-last-tag-selection-key c)
15248 (cond
15249 ((= c ?\r) (throw 'exit t))
15250 ((= c ?!)
15251 (setq groups (not groups))
15252 (goto-char (point-min))
15253 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15254 ((= c ?\C-c)
15255 (if (not expert)
15256 (org-fast-tag-show-exit
15257 (setq exit-after-next (not exit-after-next)))
15258 (setq expert nil)
15259 (delete-other-windows)
15260 (set-window-buffer (split-window-vertically) " *Org tags*")
15261 (org-switch-to-buffer-other-window " *Org tags*")
15262 (org-fit-window-to-buffer)))
15263 ((or (= c ?\C-g)
15264 (and (= c ?q) (not (rassoc c ntable))))
15265 (org-detach-overlay org-tags-overlay)
15266 (setq quit-flag t))
15267 ((= c ?\ )
15268 (setq current nil)
15269 (when exit-after-next (setq exit-after-next 'now)))
15270 ((= c ?\t)
15271 (condition-case nil
15272 (setq tg (org-icompleting-read
15273 "Tag: "
15274 (or buffer-tags
15275 (with-current-buffer buf
15276 (org-get-buffer-tags)))))
15277 (quit (setq tg "")))
15278 (when (string-match "\\S-" tg)
15279 (add-to-list 'buffer-tags (list tg))
15280 (if (member tg current)
15281 (setq current (delete tg current))
15282 (push tg current)))
15283 (when exit-after-next (setq exit-after-next 'now)))
15284 ((setq e (rassoc c todo-table) tg (car e))
15285 (with-current-buffer buf
15286 (save-excursion (org-todo tg)))
15287 (when exit-after-next (setq exit-after-next 'now)))
15288 ((setq e (rassoc c ntable) tg (car e))
15289 (if (member tg current)
15290 (setq current (delete tg current))
15291 (loop for g in groups do
15292 (when (member tg g)
15293 (dolist (x g) (setq current (delete x current)))))
15294 (push tg current))
15295 (when exit-after-next (setq exit-after-next 'now))))
15297 ;; Create a sorted list
15298 (setq current
15299 (sort current
15300 (lambda (a b)
15301 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15302 (when (eq exit-after-next 'now) (throw 'exit t))
15303 (goto-char (point-min))
15304 (beginning-of-line 2)
15305 (delete-region (point) (point-at-eol))
15306 (org-fast-tag-insert "Current" current c-face)
15307 (org-set-current-tags-overlay current ov-prefix)
15308 (while (re-search-forward
15309 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15310 (setq tg (match-string 1))
15311 (add-text-properties
15312 (match-beginning 1) (match-end 1)
15313 (list 'face
15314 (cond
15315 ((member tg current) c-face)
15316 ((member tg inherited) i-face)
15317 (t (get-text-property (match-beginning 1) 'face))))))
15318 (goto-char (point-min)))))
15319 (org-detach-overlay org-tags-overlay)
15320 (if rtn
15321 (mapconcat 'identity current ":")
15322 nil))))
15324 (defun org-get-tags-string ()
15325 "Get the TAGS string in the current headline."
15326 (unless (org-at-heading-p t)
15327 (user-error "Not on a heading"))
15328 (save-excursion
15329 (beginning-of-line 1)
15330 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15331 (org-match-string-no-properties 1)
15332 "")))
15334 (defun org-get-tags ()
15335 "Get the list of tags specified in the current headline."
15336 (org-split-string (org-get-tags-string) ":"))
15338 (defun org-get-buffer-tags ()
15339 "Get a table of all tags used in the buffer, for completion."
15340 (org-with-wide-buffer
15341 (goto-char (point-min))
15342 (let ((tag-re (concat org-outline-regexp-bol
15343 "\\(?:.*?[ \t]\\)?"
15344 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15345 tags)
15346 (while (re-search-forward tag-re nil t)
15347 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15348 (push tag tags)))
15349 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15351 ;;;; The mapping API
15353 (defun org-map-entries (func &optional match scope &rest skip)
15354 "Call FUNC at each headline selected by MATCH in SCOPE.
15356 FUNC is a function or a lisp form. The function will be called without
15357 arguments, with the cursor positioned at the beginning of the headline.
15358 The return values of all calls to the function will be collected and
15359 returned as a list.
15361 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15362 does not need to preserve point. After evaluation, the cursor will be
15363 moved to the end of the line (presumably of the headline of the
15364 processed entry) and search continues from there. Under some
15365 circumstances, this may not produce the wanted results. For example,
15366 if you have removed (e.g. archived) the current (sub)tree it could
15367 mean that the next entry will be skipped entirely. In such cases, you
15368 can specify the position from where search should continue by making
15369 FUNC set the variable `org-map-continue-from' to the desired buffer
15370 position.
15372 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15373 Only headlines that are matched by this query will be considered during
15374 the iteration. When MATCH is nil or t, all headlines will be
15375 visited by the iteration.
15377 SCOPE determines the scope of this command. It can be any of:
15379 nil The current buffer, respecting the restriction if any
15380 tree The subtree started with the entry at point
15381 region The entries within the active region, if any
15382 region-start-level
15383 The entries within the active region, but only those at
15384 the same level than the first one.
15385 file The current buffer, without restriction
15386 file-with-archives
15387 The current buffer, and any archives associated with it
15388 agenda All agenda files
15389 agenda-with-archives
15390 All agenda files with any archive files associated with them
15391 \(file1 file2 ...)
15392 If this is a list, all files in the list will be scanned
15394 The remaining args are treated as settings for the skipping facilities of
15395 the scanner. The following items can be given here:
15397 archive skip trees with the archive tag
15398 comment skip trees with the COMMENT keyword
15399 function or Emacs Lisp form:
15400 will be used as value for `org-agenda-skip-function', so
15401 whenever the function returns a position, FUNC will not be
15402 called for that entry and search will continue from the
15403 position returned
15405 If your function needs to retrieve the tags including inherited tags
15406 at the *current* entry, you can use the value of the variable
15407 `org-scanner-tags' which will be much faster than getting the value
15408 with `org-get-tags-at'. If your function gets properties with
15409 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15410 to t around the call to `org-entry-properties' to get the same speedup.
15411 Note that if your function moves around to retrieve tags and properties at
15412 a *different* entry, you cannot use these techniques."
15413 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15414 (not (org-region-active-p)))
15415 (let* ((org-agenda-archives-mode nil) ; just to make sure
15416 (org-agenda-skip-archived-trees (memq 'archive skip))
15417 (org-agenda-skip-comment-trees (memq 'comment skip))
15418 (org-agenda-skip-function
15419 (car (org-delete-all '(comment archive) skip)))
15420 (org-tags-match-list-sublevels t)
15421 (start-level (eq scope 'region-start-level))
15422 matcher file res
15423 org-todo-keywords-for-agenda
15424 org-done-keywords-for-agenda
15425 org-todo-keyword-alist-for-agenda
15426 org-tag-alist-for-agenda
15427 todo-only)
15429 (cond
15430 ((eq match t) (setq matcher t))
15431 ((eq match nil) (setq matcher t))
15432 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15434 (save-excursion
15435 (save-restriction
15436 (cond ((eq scope 'tree)
15437 (org-back-to-heading t)
15438 (org-narrow-to-subtree)
15439 (setq scope nil))
15440 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15441 (org-region-active-p))
15442 ;; If needed, set start-level to a string like "2"
15443 (when start-level
15444 (save-excursion
15445 (goto-char (region-beginning))
15446 (unless (org-at-heading-p) (outline-next-heading))
15447 (setq start-level (org-current-level))))
15448 (narrow-to-region (region-beginning)
15449 (save-excursion
15450 (goto-char (region-end))
15451 (unless (and (bolp) (org-at-heading-p))
15452 (outline-next-heading))
15453 (point)))
15454 (setq scope nil)))
15456 (if (not scope)
15457 (progn
15458 (org-agenda-prepare-buffers
15459 (list (buffer-file-name (current-buffer))))
15460 (setq res (org-scan-tags func matcher todo-only start-level)))
15461 ;; Get the right scope
15462 (cond
15463 ((and scope (listp scope) (symbolp (car scope)))
15464 (setq scope (eval scope)))
15465 ((eq scope 'agenda)
15466 (setq scope (org-agenda-files t)))
15467 ((eq scope 'agenda-with-archives)
15468 (setq scope (org-agenda-files t))
15469 (setq scope (org-add-archive-files scope)))
15470 ((eq scope 'file)
15471 (setq scope (list (buffer-file-name))))
15472 ((eq scope 'file-with-archives)
15473 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15474 (org-agenda-prepare-buffers scope)
15475 (while (setq file (pop scope))
15476 (with-current-buffer (org-find-base-buffer-visiting file)
15477 (save-excursion
15478 (save-restriction
15479 (widen)
15480 (goto-char (point-min))
15481 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15482 res)))
15484 ;;; Properties API
15486 (defconst org-special-properties
15487 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15488 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15489 "The special properties valid in Org mode.
15490 These are properties that are not defined in the property drawer,
15491 but in some other way.")
15493 (defconst org-default-properties
15494 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15495 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15496 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15497 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15498 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15499 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15500 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15501 "Some properties that are used by Org mode for various purposes.
15502 Being in this list makes sure that they are offered for completion.")
15504 (defun org--update-property-plist (key val props)
15505 "Associate KEY to VAL in alist PROPS.
15506 Modifications are made by side-effect. Return new alist."
15507 (let* ((appending (string= (substring key -1) "+"))
15508 (key (if appending (substring key 0 -1) key))
15509 (old (assoc-string key props t)))
15510 (if (not old) (cons (cons key val) props)
15511 (setcdr old (if appending (concat (cdr old) " " val) val))
15512 props)))
15514 (defun org-get-property-block (&optional beg force)
15515 "Return the (beg . end) range of the body of the property drawer.
15516 BEG is the beginning of the current subtree, or of the part
15517 before the first headline. If it is not given, it will be found.
15518 If the drawer does not exist, create it if FORCE is non-nil, or
15519 return nil."
15520 (org-with-wide-buffer
15521 (when beg (goto-char beg))
15522 (unless (org-before-first-heading-p)
15523 (let ((beg (cond (beg)
15524 ((or (not (featurep 'org-inlinetask))
15525 (org-inlinetask-in-task-p))
15526 (org-back-to-heading t))
15527 (t (org-with-limited-levels (org-back-to-heading t))))))
15528 (forward-line)
15529 (when (org-looking-at-p org-planning-line-re) (forward-line))
15530 (cond ((looking-at org-property-drawer-re)
15531 (forward-line)
15532 (cons (point) (progn (goto-char (match-end 0))
15533 (line-beginning-position))))
15534 (force
15535 (goto-char beg)
15536 (org-insert-property-drawer)
15537 (let ((pos (save-excursion (search-forward ":END:")
15538 (line-beginning-position))))
15539 (cons pos pos))))))))
15541 (defun org-at-property-p ()
15542 "Non-nil when point is inside a property drawer.
15543 See `org-property-re' for match data, if applicable."
15544 (save-excursion
15545 (beginning-of-line)
15546 (and (looking-at org-property-re)
15547 (let ((property-drawer (save-match-data (org-get-property-block))))
15548 (and property-drawer
15549 (>= (point) (car property-drawer))
15550 (< (point) (cdr property-drawer)))))))
15552 (defun org-property-action ()
15553 "Do an action on properties."
15554 (interactive)
15555 (unless (org-at-property-p) (user-error "Not at a property"))
15556 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15557 (let ((c (read-char-exclusive)))
15558 (case c
15559 (?s (call-interactively #'org-set-property))
15560 (?d (call-interactively #'org-delete-property))
15561 (?D (call-interactively #'org-delete-property-globally))
15562 (?c (call-interactively #'org-compute-property-at-point))
15563 (otherwise (user-error "No such property action %c" c)))))
15565 (defun org-inc-effort ()
15566 "Increment the value of the effort property in the current entry."
15567 (interactive)
15568 (org-set-effort nil t))
15570 (defvar org-clock-effort) ; Defined in org-clock.el.
15571 (defvar org-clock-current-task) ; Defined in org-clock.el.
15572 (defun org-set-effort (&optional value increment)
15573 "Set the effort property of the current entry.
15574 With numerical prefix arg, use the nth allowed value, 0 stands for the
15575 10th allowed value.
15577 When INCREMENT is non-nil, set the property to the next allowed value."
15578 (interactive "P")
15579 (if (equal value 0) (setq value 10))
15580 (let* ((completion-ignore-case t)
15581 (prop org-effort-property)
15582 (cur (org-entry-get nil prop))
15583 (allowed (org-property-get-allowed-values nil prop 'table))
15584 (existing (mapcar 'list (org-property-values prop)))
15585 (heading (nth 4 (org-heading-components)))
15587 (val (cond
15588 ((stringp value) value)
15589 ((and allowed (integerp value))
15590 (or (car (nth (1- value) allowed))
15591 (car (org-last allowed))))
15592 ((and allowed increment)
15593 (or (caadr (member (list cur) allowed))
15594 (user-error "Allowed effort values are not set")))
15595 (allowed
15596 (message "Select 1-9,0, [RET%s]: %s"
15597 (if cur (concat "=" cur) "")
15598 (mapconcat 'car allowed " "))
15599 (setq rpl (read-char-exclusive))
15600 (if (equal rpl ?\r)
15602 (setq rpl (- rpl ?0))
15603 (if (equal rpl 0) (setq rpl 10))
15604 (if (and (> rpl 0) (<= rpl (length allowed)))
15605 (car (nth (1- rpl) allowed))
15606 (org-completing-read "Effort: " allowed nil))))
15608 (let (org-completion-use-ido org-completion-use-iswitchb)
15609 (org-completing-read
15610 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15611 (concat "[" cur "]") "")
15612 ": ")
15613 existing nil nil "" nil cur))))))
15614 (unless (equal (org-entry-get nil prop) val)
15615 (org-entry-put nil prop val))
15616 (org-refresh-property
15617 '((effort . identity)
15618 (effort-minutes . org-duration-string-to-minutes))
15619 val)
15620 (when (string= heading org-clock-current-task)
15621 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15622 (org-clock-update-mode-line))
15623 (message "%s is now %s" prop val)))
15625 (defun org-entry-properties (&optional pom which)
15626 "Get all properties of the current entry.
15628 When POM is a buffer position, get all properties from the entry
15629 there instead.
15631 This includes the TODO keyword, the tags, time strings for
15632 deadline, scheduled, and clocking, and any additional properties
15633 defined in the entry.
15635 If WHICH is nil or `all', get all properties. If WHICH is
15636 `special' or `standard', only get that subclass. If WHICH is
15637 a string, only get that property.
15639 Return value is an alist. Keys are properties, as upcased
15640 strings."
15641 (org-with-point-at pom
15642 (when (and (derived-mode-p 'org-mode)
15643 (ignore-errors (org-back-to-heading t)))
15644 (catch 'exit
15645 (let* ((beg (point))
15646 (specific (and (stringp which) (upcase which)))
15647 (which (cond ((not specific) which)
15648 ((member specific org-special-properties) 'special)
15649 (t 'standard)))
15650 props)
15651 ;; Get the special properties, like TODO and TAGS.
15652 (when (memq which '(nil all special))
15653 (when (or (not specific) (string= specific "CLOCKSUM"))
15654 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15655 (when clocksum
15656 (push (cons "CLOCKSUM"
15657 (org-columns-number-to-string
15658 (/ (float clocksum) 60.) 'add_times))
15659 props)))
15660 (when specific (throw 'exit props)))
15661 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15662 (let ((clocksumt (get-text-property (point)
15663 :org-clock-minutes-today)))
15664 (when clocksumt
15665 (push (cons "CLOCKSUM_T"
15666 (org-columns-number-to-string
15667 (/ (float clocksumt) 60.) 'add_times))
15668 props)))
15669 (when specific (throw 'exit props)))
15670 (when (or (not specific) (string= specific "ITEM"))
15671 (when (looking-at org-complex-heading-regexp)
15672 (push (cons "ITEM"
15673 (concat
15674 (org-match-string-no-properties 1)
15675 (let ((title (org-match-string-no-properties 4)))
15676 (when (org-string-nw-p title)
15677 (concat " " (org-remove-tabs title))))))
15678 props))
15679 (when specific (throw 'exit props)))
15680 (when (or (not specific) (string= specific "TODO"))
15681 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15682 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15683 (when specific (throw 'exit props)))
15684 (when (or (not specific) (string= specific "PRIORITY"))
15685 (when (looking-at org-priority-regexp)
15686 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15687 (when specific (throw 'exit props)))
15688 (when (or (not specific) (string= specific "FILE"))
15689 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15690 props)
15691 (when specific (throw 'exit props)))
15692 (when (or (not specific) (string= specific "TAGS"))
15693 (let ((value (org-string-nw-p (org-get-tags-string))))
15694 (when value (push (cons "TAGS" value) props)))
15695 (when specific (throw 'exit props)))
15696 (when (or (not specific) (string= specific "ALLTAGS"))
15697 (let ((value (org-get-tags-at)))
15698 (when value
15699 (push (cons "ALLTAGS"
15700 (format ":%s:" (mapconcat #'identity value ":")))
15701 props)))
15702 (when specific (throw 'exit props)))
15703 (when (or (not specific) (string= specific "BLOCKED"))
15704 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15705 (when specific (throw 'exit props)))
15706 (when (or (not specific)
15707 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15708 (forward-line)
15709 (when (org-looking-at-p org-planning-line-re)
15710 (end-of-line)
15711 (let ((bol (line-beginning-position))
15712 ;; Backward compatibility: time keywords used to
15713 ;; be configurable (before 8.3). Make sure we
15714 ;; get the correct keyword.
15715 (key-assoc `(("CLOSED" . ,org-closed-string)
15716 ("DEADLINE" . ,org-deadline-string)
15717 ("SCHEDULED" . ,org-scheduled-string))))
15718 (dolist (pair (if specific (list (assoc specific key-assoc))
15719 key-assoc))
15720 (save-excursion
15721 (when (search-backward (cdr pair) bol t)
15722 (goto-char (match-end 0))
15723 (skip-chars-forward " \t")
15724 (and (looking-at org-ts-regexp-both)
15725 (push (cons (car pair)
15726 (org-match-string-no-properties 0))
15727 props)))))))
15728 (when specific (throw 'exit props)))
15729 (when (or (not specific)
15730 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15731 (let ((find-ts
15732 (lambda (end ts)
15733 (let ((regexp (if (or (string= specific "TIMESTAMP")
15734 (assoc "TIMESTAMP_IA" ts))
15735 org-ts-regexp
15736 org-ts-regexp-both)))
15737 (catch 'next
15738 (while (re-search-forward regexp end t)
15739 (backward-char)
15740 (let ((object (org-element-context)))
15741 ;; Accept to match timestamps in node
15742 ;; properties, too.
15743 (when (memq (org-element-type object)
15744 '(node-property timestamp))
15745 (let ((type
15746 (org-element-property :type object)))
15747 (cond
15748 ((and (memq type '(active active-range))
15749 (not (equal specific "TIMESTAMP_IA")))
15750 (unless (assoc "TIMESTAMP" ts)
15751 (push (cons "TIMESTAMP"
15752 (org-element-property
15753 :raw-value object))
15755 (when specific (throw 'exit ts))))
15756 ((and (memq type '(inactive inactive-range))
15757 (not (string= specific "TIMESTAMP")))
15758 (unless (assoc "TIMESTAMP_IA" ts)
15759 (push (cons "TIMESTAMP_IA"
15760 (org-element-property
15761 :raw-value object))
15763 (when specific (throw 'exit ts))))))
15764 ;; Both timestamp types are found,
15765 ;; move to next part.
15766 (when (= (length ts) 2) (throw 'next ts)))))
15767 ts)))))
15768 (goto-char beg)
15769 ;; First look for timestamps within headline.
15770 (let ((ts (funcall find-ts (line-end-position) nil)))
15771 (if (= (length ts) 2) (setq props (nconc ts props))
15772 (forward-line)
15773 ;; Then find timestamps in the section, skipping
15774 ;; planning line.
15775 (when (org-looking-at-p org-planning-line-re)
15776 (forward-line))
15777 (let ((end (save-excursion (outline-next-heading))))
15778 (setq props (nconc (funcall find-ts end ts) props))))))))
15779 ;; Get the standard properties, like :PROP:.
15780 (when (memq which '(nil all standard))
15781 ;; If we are looking after a specific property, delegate
15782 ;; to `org-entry-get', which is faster. However, make an
15783 ;; exception for "CATEGORY", since it can be also set
15784 ;; through keywords (i.e. #+CATEGORY).
15785 (if (and specific (not (equal specific "CATEGORY")))
15786 (let ((value (org-entry-get beg specific nil t)))
15787 (throw 'exit (and value (list (cons specific value)))))
15788 (let ((range (org-get-property-block beg)))
15789 (when range
15790 (let ((end (cdr range)) seen-base)
15791 (goto-char (car range))
15792 ;; Unlike to `org--update-property-plist', we
15793 ;; handle the case where base values is found
15794 ;; after its extension. We also forbid standard
15795 ;; properties to be named as special properties.
15796 (while (re-search-forward org-property-re end t)
15797 (let* ((key (upcase (org-match-string-no-properties 2)))
15798 (extendp (org-string-match-p "\\+\\'" key))
15799 (key-base (if extendp (substring key 0 -1) key))
15800 (value (org-match-string-no-properties 3)))
15801 (cond
15802 ((member-ignore-case key-base org-special-properties))
15803 (extendp
15804 (setq props
15805 (org--update-property-plist key value props)))
15806 ((member key seen-base))
15807 (t (push key seen-base)
15808 (let ((p (assoc-string key props t)))
15809 (if p (setcdr p (concat value " " (cdr p)))
15810 (push (cons key value) props))))))))))))
15811 (unless (assoc "CATEGORY" props)
15812 (push (cons "CATEGORY" (org-get-category beg)) props)
15813 (when (string= specific "CATEGORY") (throw 'exit props)))
15814 ;; Return value.
15815 (append (get-text-property beg 'org-summaries) props))))))
15817 (defun org-entry-get (pom property &optional inherit literal-nil)
15818 "Get value of PROPERTY for entry or content at point-or-marker POM.
15820 If INHERIT is non-nil and the entry does not have the property,
15821 then also check higher levels of the hierarchy. If INHERIT is
15822 the symbol `selective', use inheritance only if the setting in
15823 `org-use-property-inheritance' selects PROPERTY for inheritance.
15825 If the property is present but empty, the return value is the
15826 empty string. If the property is not present at all, nil is
15827 returned. In any other case, return the value as a string.
15828 Search is case-insensitive.
15830 If LITERAL-NIL is set, return the string value \"nil\" as
15831 a string, do not interpret it as the list atom nil. This is used
15832 for inheritance when a \"nil\" value can supersede a non-nil
15833 value higher up the hierarchy."
15834 (org-with-point-at pom
15835 (cond
15836 ((and inherit
15837 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15838 (org-entry-get-with-inheritance property literal-nil))
15839 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15840 ;; We need a special property. Use `org-entry-properties' to
15841 ;; retrieve it, but specify the wanted property.
15842 (cdr (assoc-string property (org-entry-properties nil property))))
15844 (let ((range (org-get-property-block)))
15845 (when range
15846 (let* ((case-fold-search t)
15847 (end (cdr range))
15848 (props
15849 (let ((global
15850 (or (assoc-string property org-file-properties t)
15851 (assoc-string property org-global-properties t)
15852 (assoc-string
15853 property org-global-properties-fixed t))))
15854 ;; Make sure to not re-use GLOBAL as
15855 ;; `org--update-property-plist' would alter it by
15856 ;; side-effect.
15857 (and global (list (cons property (cdr global))))))
15858 (find-value
15859 (lambda (key)
15860 (when (re-search-forward (org-re-property key nil t) end t)
15861 (setq props
15862 (org--update-property-plist
15863 key (org-match-string-no-properties 3) props))))))
15864 (goto-char (car range))
15865 ;; Find base value.
15866 (save-excursion (funcall find-value property))
15867 ;; Find additional values.
15868 (let ((property+ (concat property "+")))
15869 (while (funcall find-value property+)))
15870 ;; Return final value.
15871 (let ((val (cdr (assoc-string property props t))))
15872 (if literal-nil val (org-not-nil val))))))))))
15874 (defun org-property-or-variable-value (var &optional inherit)
15875 "Check if there is a property fixing the value of VAR.
15876 If yes, return this value. If not, return the current value of the variable."
15877 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15878 (if (and prop (stringp prop) (string-match "\\S-" prop))
15879 (read prop)
15880 (symbol-value var))))
15882 (defun org-entry-delete (pom property)
15883 "Delete PROPERTY from entry at point-or-marker POM.
15884 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15885 non-nil when a property was removed."
15886 (unless (member property org-special-properties)
15887 (org-with-point-at pom
15888 (let ((range (org-get-property-block)))
15889 (when range
15890 (let* ((begin (car range))
15891 (origin (cdr range))
15892 (end (copy-marker origin))
15893 (re (org-re-property
15894 (concat (regexp-quote property) "\\+?") t t)))
15895 (goto-char begin)
15896 (while (re-search-forward re end t)
15897 (delete-region (match-beginning 0) (line-beginning-position 2)))
15898 ;; If drawer is empty, remove it altogether.
15899 (when (= begin end)
15900 (delete-region (line-beginning-position 0)
15901 (line-beginning-position 2)))
15902 ;; Return non-nil if some property was removed.
15903 (prog1 (/= end origin) (set-marker end nil))))))))
15905 ;; Multi-values properties are properties that contain multiple values
15906 ;; These values are assumed to be single words, separated by whitespace.
15907 (defun org-entry-add-to-multivalued-property (pom property value)
15908 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15909 (let* ((old (org-entry-get pom property))
15910 (values (and old (org-split-string old "[ \t]"))))
15911 (setq value (org-entry-protect-space value))
15912 (unless (member value values)
15913 (setq values (append values (list value)))
15914 (org-entry-put pom property
15915 (mapconcat 'identity values " ")))))
15917 (defun org-entry-remove-from-multivalued-property (pom property value)
15918 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15919 (let* ((old (org-entry-get pom property))
15920 (values (and old (org-split-string old "[ \t]"))))
15921 (setq value (org-entry-protect-space value))
15922 (when (member value values)
15923 (setq values (delete value values))
15924 (org-entry-put pom property
15925 (mapconcat 'identity values " ")))))
15927 (defun org-entry-member-in-multivalued-property (pom property value)
15928 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15929 (let* ((old (org-entry-get pom property))
15930 (values (and old (org-split-string old "[ \t]"))))
15931 (setq value (org-entry-protect-space value))
15932 (member value values)))
15934 (defun org-entry-get-multivalued-property (pom property)
15935 "Return a list of values in a multivalued property."
15936 (let* ((value (org-entry-get pom property))
15937 (values (and value (org-split-string value "[ \t]"))))
15938 (mapcar 'org-entry-restore-space values)))
15940 (defun org-entry-put-multivalued-property (pom property &rest values)
15941 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15942 VALUES should be a list of strings. Spaces will be protected."
15943 (org-entry-put pom property
15944 (mapconcat 'org-entry-protect-space values " "))
15945 (let* ((value (org-entry-get pom property))
15946 (values (and value (org-split-string value "[ \t]"))))
15947 (mapcar 'org-entry-restore-space values)))
15949 (defun org-entry-protect-space (s)
15950 "Protect spaces and newline in string S."
15951 (while (string-match " " s)
15952 (setq s (replace-match "%20" t t s)))
15953 (while (string-match "\n" s)
15954 (setq s (replace-match "%0A" t t s)))
15957 (defun org-entry-restore-space (s)
15958 "Restore spaces and newline in string S."
15959 (while (string-match "%20" s)
15960 (setq s (replace-match " " t t s)))
15961 (while (string-match "%0A" s)
15962 (setq s (replace-match "\n" t t s)))
15965 (defvar org-entry-property-inherited-from (make-marker)
15966 "Marker pointing to the entry from where a property was inherited.
15967 Each call to `org-entry-get-with-inheritance' will set this marker to the
15968 location of the entry where the inheritance search matched. If there was
15969 no match, the marker will point nowhere.
15970 Note that also `org-entry-get' calls this function, if the INHERIT flag
15971 is set.")
15973 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15974 "Get PROPERTY of entry or content at point, search higher levels if needed.
15975 The search will stop at the first ancestor which has the property defined.
15976 If the value found is \"nil\", return nil to show that the property
15977 should be considered as undefined (this is the meaning of nil here).
15978 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15979 (move-marker org-entry-property-inherited-from nil)
15980 (let (value)
15981 (org-with-wide-buffer
15982 (catch 'exit
15983 (while t
15984 (when (setq value (org-entry-get nil property nil literal-nil))
15985 (org-back-to-heading t)
15986 (move-marker org-entry-property-inherited-from (point))
15987 (throw 'exit nil))
15988 (or (org-up-heading-safe) (throw 'exit nil)))))
15989 (unless value
15990 (setq value
15991 (cdr (or (assoc-string property org-file-properties t)
15992 (assoc-string property org-global-properties t)
15993 (assoc-string property org-global-properties-fixed t)))))
15994 (if literal-nil value (org-not-nil value))))
15996 (defvar org-property-changed-functions nil
15997 "Hook called when the value of a property has changed.
15998 Each hook function should accept two arguments, the name of the property
15999 and the new value.")
16001 (defun org-entry-put (pom property value)
16002 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16004 If the value is `nil', it is converted to the empty string. If
16005 it is not a string, an error is raised.
16007 PROPERTY can be any regular property (see
16008 `org-special-properties'). It can also be \"TODO\",
16009 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16011 For the last two properties, VALUE may have any of the special
16012 values \"earlier\" and \"later\". The function then increases or
16013 decreases scheduled or deadline date by one day."
16014 (cond ((null value) (setq value ""))
16015 ((not (stringp value)) (error "Properties values should be strings")))
16016 (org-with-point-at pom
16017 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16018 (org-back-to-heading t)
16019 (org-with-limited-levels (org-back-to-heading t)))
16020 (let ((beg (point)))
16021 (cond
16022 ((equal property "TODO")
16023 (cond ((not (org-string-nw-p value)) (setq value 'none))
16024 ((not (member value org-todo-keywords-1))
16025 (user-error "\"%s\" is not a valid TODO state" value)))
16026 (org-todo value)
16027 (org-set-tags nil 'align))
16028 ((equal property "PRIORITY")
16029 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16030 (org-set-tags nil 'align))
16031 ((equal property "SCHEDULED")
16032 (forward-line)
16033 (if (and (org-looking-at-p org-planning-line-re)
16034 (re-search-forward
16035 org-scheduled-time-regexp (line-end-position) t))
16036 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16037 ((string= value "later") (org-timestamp-change 1 'day))
16038 ((string= value "") (org-schedule '(4)))
16039 (t (org-schedule nil value)))
16040 (if (member value '("earlier" "later" ""))
16041 (call-interactively #'org-schedule)
16042 (org-schedule nil value))))
16043 ((equal property "DEADLINE")
16044 (forward-line)
16045 (if (and (org-looking-at-p org-planning-line-re)
16046 (re-search-forward
16047 org-deadline-time-regexp (line-end-position) t))
16048 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16049 ((string= value "later") (org-timestamp-change 1 'day))
16050 ((string= value "") (org-deadline '(4)))
16051 (t (org-deadline nil value)))
16052 (if (member value '("earlier" "later" ""))
16053 (call-interactively #'org-deadline)
16054 (org-deadline nil value))))
16055 ((member property org-special-properties)
16056 (error "The %s property cannot be set with `org-entry-put'" property))
16058 (let* ((range (org-get-property-block beg 'force))
16059 (end (cdr range))
16060 (case-fold-search t))
16061 (goto-char (car range))
16062 (if (re-search-forward (org-re-property property nil t) end t)
16063 (progn (delete-region (match-beginning 0) (match-end 0))
16064 (goto-char (match-beginning 0)))
16065 (goto-char end)
16066 (insert "\n")
16067 (backward-char))
16068 (insert ":" property ":")
16069 (when value (insert " " value))
16070 (org-indent-line)))))
16071 (run-hook-with-args 'org-property-changed-functions property value)))
16073 (defun org-buffer-property-keys (&optional specials defaults columns)
16074 "Get all property keys in the current buffer.
16076 When SPECIALS is non-nil, also list the special properties that
16077 reflect things like tags and TODO state.
16079 When DEFAULTS is non-nil, also include properties that has
16080 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16081 DESCRIPTION, LOCATION, and LOGGING and others.
16083 When COLUMNS in non-nil, also include property names given in
16084 COLUMN formats in the current buffer."
16085 (let ((case-fold-search t)
16086 (props (append
16087 (and specials org-special-properties)
16088 (and defaults (cons org-effort-property org-default-properties))
16089 nil)))
16090 (org-with-wide-buffer
16091 (goto-char (point-min))
16092 (while (re-search-forward org-property-start-re nil t)
16093 (let ((range (org-get-property-block)))
16094 (catch 'skip
16095 (unless range
16096 (when (and (not (org-before-first-heading-p))
16097 (y-or-n-p (format "Malformed drawer at %d, repair?"
16098 (line-beginning-position))))
16099 (org-get-property-block nil t))
16100 (throw 'skip nil))
16101 (goto-char (car range))
16102 (let ((begin (car range))
16103 (end (cdr range)))
16104 ;; Make sure that found property block is not located
16105 ;; before current point, as it would generate an infloop.
16106 ;; It can happen, for example, in the following
16107 ;; situation:
16109 ;; * Headline
16110 ;; :PROPERTIES:
16111 ;; ...
16112 ;; :END:
16113 ;; *************** Inlinetask
16114 ;; #+BEGIN_EXAMPLE
16115 ;; :PROPERTIES:
16116 ;; #+END_EXAMPLE
16118 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16119 (while (< (point) end)
16120 (let ((p (progn (looking-at org-property-re)
16121 (org-match-string-no-properties 2))))
16122 ;; Only add true property name, not extension symbol.
16123 (add-to-list 'props
16124 (if (not (org-string-match-p "\\+\\'" p)) p
16125 (substring p 0 -1))))
16126 (forward-line))))
16127 (outline-next-heading)))
16128 (when columns
16129 (goto-char (point-min))
16130 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16131 (let ((element (org-element-at-point)))
16132 (when (memq (org-element-type element) '(keyword node-property))
16133 (let ((value (org-element-property :value element))
16134 (start 0))
16135 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16136 (setq start (match-end 0))
16137 (let ((p (org-match-string-no-properties 1 value)))
16138 (unless (member-ignore-case p org-special-properties)
16139 (add-to-list 'props p))))))))))
16140 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16142 (defun org-property-values (key)
16143 "List all non-nil values of property KEY in current buffer."
16144 (org-with-wide-buffer
16145 (goto-char (point-min))
16146 (let ((case-fold-search t)
16147 (re (org-re-property key))
16148 values)
16149 (while (re-search-forward re nil t)
16150 (add-to-list 'values (org-entry-get (point) key)))
16151 values)))
16153 (defun org-insert-property-drawer ()
16154 "Insert a property drawer into the current entry."
16155 (org-with-wide-buffer
16156 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16157 (org-back-to-heading t)
16158 (org-with-limited-levels (org-back-to-heading t)))
16159 (forward-line)
16160 (when (org-looking-at-p org-planning-line-re) (forward-line))
16161 (unless (org-looking-at-p org-property-drawer-re)
16162 (let ((inhibit-read-only t))
16163 (unless (bolp) (insert "\n"))
16164 (let ((begin (point)))
16165 (insert ":PROPERTIES:\n:END:\n")
16166 (org-indent-region begin (point)))))))
16168 (defun org-insert-drawer (&optional arg drawer)
16169 "Insert a drawer at point.
16171 When optional argument ARG is non-nil, insert a property drawer.
16173 Optional argument DRAWER, when non-nil, is a string representing
16174 drawer's name. Otherwise, the user is prompted for a name.
16176 If a region is active, insert the drawer around that region
16177 instead.
16179 Point is left between drawer's boundaries."
16180 (interactive "P")
16181 (let* ((drawer (if arg "PROPERTIES"
16182 (or drawer (read-from-minibuffer "Drawer: ")))))
16183 (cond
16184 ;; With C-u, fall back on `org-insert-property-drawer'
16185 (arg (org-insert-property-drawer))
16186 ;; Check validity of suggested drawer's name.
16187 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16188 (user-error "Invalid drawer name"))
16189 ;; With an active region, insert a drawer at point.
16190 ((not (org-region-active-p))
16191 (progn
16192 (unless (bolp) (insert "\n"))
16193 (insert (format ":%s:\n\n:END:\n" drawer))
16194 (forward-line -2)))
16195 ;; Otherwise, insert the drawer at point
16197 (let ((rbeg (region-beginning))
16198 (rend (copy-marker (region-end))))
16199 (unwind-protect
16200 (progn
16201 (goto-char rbeg)
16202 (beginning-of-line)
16203 (when (save-excursion
16204 (re-search-forward org-outline-regexp-bol rend t))
16205 (user-error "Drawers cannot contain headlines"))
16206 ;; Position point at the beginning of the first
16207 ;; non-blank line in region. Insert drawer's opening
16208 ;; there, then indent it.
16209 (org-skip-whitespace)
16210 (beginning-of-line)
16211 (insert ":" drawer ":\n")
16212 (forward-line -1)
16213 (indent-for-tab-command)
16214 ;; Move point to the beginning of the first blank line
16215 ;; after the last non-blank line in region. Insert
16216 ;; drawer's closing, then indent it.
16217 (goto-char rend)
16218 (skip-chars-backward " \r\t\n")
16219 (insert "\n:END:")
16220 (deactivate-mark t)
16221 (indent-for-tab-command)
16222 (unless (eolp) (insert "\n")))
16223 ;; Clear marker, whatever the outcome of insertion is.
16224 (set-marker rend nil)))))))
16226 (defvar org-property-set-functions-alist nil
16227 "Property set function alist.
16228 Each entry should have the following format:
16230 (PROPERTY . READ-FUNCTION)
16232 The read function will be called with the same argument as
16233 `org-completing-read'.")
16235 (defun org-set-property-function (property)
16236 "Get the function that should be used to set PROPERTY.
16237 This is computed according to `org-property-set-functions-alist'."
16238 (or (cdr (assoc property org-property-set-functions-alist))
16239 'org-completing-read))
16241 (defun org-read-property-value (property)
16242 "Read PROPERTY value from user."
16243 (let* ((completion-ignore-case t)
16244 (allowed (org-property-get-allowed-values nil property 'table))
16245 (cur (org-entry-get nil property))
16246 (prompt (concat property " value"
16247 (if (and cur (string-match "\\S-" cur))
16248 (concat " [" cur "]") "") ": "))
16249 (set-function (org-set-property-function property))
16250 (val (if allowed
16251 (funcall set-function prompt allowed nil
16252 (not (get-text-property 0 'org-unrestricted
16253 (caar allowed))))
16254 (let (org-completion-use-ido org-completion-use-iswitchb)
16255 (funcall set-function prompt
16256 (mapcar 'list (org-property-values property))
16257 nil nil "" nil cur)))))
16258 (org-trim val)))
16260 (defvar org-last-set-property nil)
16261 (defvar org-last-set-property-value nil)
16262 (defun org-read-property-name ()
16263 "Read a property name."
16264 (let ((completion-ignore-case t)
16265 (default-prop (or (and (org-at-property-p)
16266 (org-match-string-no-properties 2))
16267 org-last-set-property)))
16268 (org-completing-read
16269 (concat "Property"
16270 (if default-prop (concat " [" default-prop "]") "")
16271 ": ")
16272 (mapcar #'list (org-buffer-property-keys nil t t))
16273 nil nil nil nil default-prop)))
16275 (defun org-set-property-and-value (use-last)
16276 "Allow to set [PROPERTY]: [value] direction from prompt.
16277 When use-default, don't even ask, just use the last
16278 \"[PROPERTY]: [value]\" string from the history."
16279 (interactive "P")
16280 (let* ((completion-ignore-case t)
16281 (pv (or (and use-last org-last-set-property-value)
16282 (org-completing-read
16283 "Enter a \"[Property]: [value]\" pair: "
16284 nil nil nil nil nil
16285 org-last-set-property-value)))
16286 prop val)
16287 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16288 (setq prop (match-string 1 pv)
16289 val (match-string 2 pv))
16290 (org-set-property prop val))))
16292 (defun org-set-property (property value)
16293 "In the current entry, set PROPERTY to VALUE.
16294 When called interactively, this will prompt for a property name, offering
16295 completion on existing and default properties. And then it will prompt
16296 for a value, offering completion either on allowed values (via an inherited
16297 xxx_ALL property) or on existing values in other instances of this property
16298 in the current file."
16299 (interactive (list nil nil))
16300 (let* ((property (or property (org-read-property-name)))
16301 (value (or value (org-read-property-value property)))
16302 (fn (cdr (assoc property org-properties-postprocess-alist))))
16303 (setq org-last-set-property property)
16304 (setq org-last-set-property-value (concat property ": " value))
16305 ;; Possibly postprocess the inserted value:
16306 (when fn (setq value (funcall fn value)))
16307 (unless (equal (org-entry-get nil property) value)
16308 (org-entry-put nil property value))))
16310 (defun org-find-property (property &optional value)
16311 "Find first entry in buffer that sets PROPERTY.
16313 When optional argument VALUE is non-nil, only consider an entry
16314 if it contains PROPERTY set to this value. If PROPERTY should be
16315 explicitly set to nil, use string \"nil\" for VALUE.
16317 Return position where the entry begins, or nil if there is no
16318 such entry. If narrowing is in effect, only search the visible
16319 part of the buffer."
16320 (save-excursion
16321 (goto-char (point-min))
16322 (let ((case-fold-search t)
16323 (re (org-re-property property nil (not value) value)))
16324 (catch 'exit
16325 (while (re-search-forward re nil t)
16326 (when (if value (org-at-property-p)
16327 (org-entry-get (point) property nil t))
16328 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16330 (defun org-delete-property (property)
16331 "In the current entry, delete PROPERTY."
16332 (interactive
16333 (let* ((completion-ignore-case t)
16334 (cat (org-entry-get (point) "CATEGORY"))
16335 (props0 (org-entry-properties nil 'standard))
16336 (props (if cat props0
16337 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16338 (prop (if (< 1 (length props))
16339 (org-icompleting-read "Property: " props nil t)
16340 (caar props))))
16341 (list prop)))
16342 (if (not property)
16343 (message "No property to delete in this entry")
16344 (org-entry-delete nil property)
16345 (message "Property \"%s\" deleted" property)))
16347 (defun org-delete-property-globally (property)
16348 "Remove PROPERTY globally, from all entries.
16349 This function ignores narrowing, if any."
16350 (interactive
16351 (let* ((completion-ignore-case t)
16352 (prop (org-icompleting-read
16353 "Globally remove property: "
16354 (mapcar #'list (org-buffer-property-keys)))))
16355 (list prop)))
16356 (org-with-wide-buffer
16357 (goto-char (point-min))
16358 (let ((count 0)
16359 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16360 (while (re-search-forward re nil t)
16361 (when (org-entry-delete (point) property) (incf count)))
16362 (message "Property \"%s\" removed from %d entries" property count))))
16364 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16366 (defun org-compute-property-at-point ()
16367 "Compute the property at point.
16368 This looks for an enclosing column format, extracts the operator and
16369 then applies it to the property in the column format's scope."
16370 (interactive)
16371 (unless (org-at-property-p)
16372 (user-error "Not at a property"))
16373 (let ((prop (org-match-string-no-properties 2)))
16374 (org-columns-get-format-and-top-level)
16375 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16376 (user-error "No operator defined for property %s" prop))
16377 (org-columns-compute prop)))
16379 (defvar org-property-allowed-value-functions nil
16380 "Hook for functions supplying allowed values for a specific property.
16381 The functions must take a single argument, the name of the property, and
16382 return a flat list of allowed values. If \":ETC\" is one of
16383 the values, this means that these values are intended as defaults for
16384 completion, but that other values should be allowed too.
16385 The functions must return nil if they are not responsible for this
16386 property.")
16388 (defun org-property-get-allowed-values (pom property &optional table)
16389 "Get allowed values for the property PROPERTY.
16390 When TABLE is non-nil, return an alist that can directly be used for
16391 completion."
16392 (let (vals)
16393 (cond
16394 ((equal property "TODO")
16395 (setq vals (org-with-point-at pom
16396 (append org-todo-keywords-1 '("")))))
16397 ((equal property "PRIORITY")
16398 (let ((n org-lowest-priority))
16399 (while (>= n org-highest-priority)
16400 (push (char-to-string n) vals)
16401 (setq n (1- n)))))
16402 ((equal property "CATEGORY"))
16403 ((member property org-special-properties))
16404 ((setq vals (run-hook-with-args-until-success
16405 'org-property-allowed-value-functions property)))
16407 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16408 (when (and vals (string-match "\\S-" vals))
16409 (setq vals (car (read-from-string (concat "(" vals ")"))))
16410 (setq vals (mapcar (lambda (x)
16411 (cond ((stringp x) x)
16412 ((numberp x) (number-to-string x))
16413 ((symbolp x) (symbol-name x))
16414 (t "???")))
16415 vals)))))
16416 (when (member ":ETC" vals)
16417 (setq vals (remove ":ETC" vals))
16418 (org-add-props (car vals) '(org-unrestricted t)))
16419 (if table (mapcar 'list vals) vals)))
16421 (defun org-property-previous-allowed-value (&optional previous)
16422 "Switch to the next allowed value for this property."
16423 (interactive)
16424 (org-property-next-allowed-value t))
16426 (defun org-property-next-allowed-value (&optional previous)
16427 "Switch to the next allowed value for this property."
16428 (interactive)
16429 (unless (org-at-property-p)
16430 (user-error "Not at a property"))
16431 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16432 (key (match-string 2))
16433 (value (match-string 3))
16434 (allowed (or (org-property-get-allowed-values (point) key)
16435 (and (member value '("[ ]" "[-]" "[X]"))
16436 '("[ ]" "[X]"))))
16437 (heading (save-match-data (nth 4 (org-heading-components))))
16438 nval)
16439 (unless allowed
16440 (user-error "Allowed values for this property have not been defined"))
16441 (if previous (setq allowed (reverse allowed)))
16442 (if (member value allowed)
16443 (setq nval (car (cdr (member value allowed)))))
16444 (setq nval (or nval (car allowed)))
16445 (if (equal nval value)
16446 (user-error "Only one allowed value for this property"))
16447 (org-at-property-p)
16448 (replace-match (concat " :" key ": " nval) t t)
16449 (org-indent-line)
16450 (beginning-of-line 1)
16451 (skip-chars-forward " \t")
16452 (when (equal prop org-effort-property)
16453 (org-refresh-property
16454 '((effort . identity)
16455 (effort-minutes . org-duration-string-to-minutes))
16456 nval)
16457 (when (string= org-clock-current-task heading)
16458 (setq org-clock-effort nval)
16459 (org-clock-update-mode-line)))
16460 (run-hook-with-args 'org-property-changed-functions key nval)))
16462 (defun org-find-olp (path &optional this-buffer)
16463 "Return a marker pointing to the entry at outline path OLP.
16464 If anything goes wrong, throw an error.
16465 You can wrap this call to catch the error like this:
16467 (condition-case msg
16468 (org-mobile-locate-entry (match-string 4))
16469 (error (nth 1 msg)))
16471 The return value will then be either a string with the error message,
16472 or a marker if everything is OK.
16474 If THIS-BUFFER is set, the outline path does not contain a file,
16475 only headings."
16476 (let* ((file (if this-buffer buffer-file-name (pop path)))
16477 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16478 (level 1)
16479 (lmin 1)
16480 (lmax 1)
16481 limit re end found pos heading cnt flevel)
16482 (unless buffer (error "File not found :%s" file))
16483 (with-current-buffer buffer
16484 (save-excursion
16485 (save-restriction
16486 (widen)
16487 (setq limit (point-max))
16488 (goto-char (point-min))
16489 (while (setq heading (pop path))
16490 (setq re (format org-complex-heading-regexp-format
16491 (regexp-quote heading)))
16492 (setq cnt 0 pos (point))
16493 (while (re-search-forward re end t)
16494 (setq level (- (match-end 1) (match-beginning 1)))
16495 (if (and (>= level lmin) (<= level lmax))
16496 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16497 (when (= cnt 0) (error "Heading not found on level %d: %s"
16498 lmax heading))
16499 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16500 lmax heading))
16501 (goto-char found)
16502 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16503 (setq end (save-excursion (org-end-of-subtree t t))))
16504 (when (org-at-heading-p)
16505 (point-marker)))))))
16507 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16508 "Find node HEADING in BUFFER.
16509 Return a marker to the heading if it was found, or nil if not.
16510 If POS-ONLY is set, return just the position instead of a marker.
16512 The heading text must match exact, but it may have a TODO keyword,
16513 a priority cookie and tags in the standard locations."
16514 (with-current-buffer (or buffer (current-buffer))
16515 (save-excursion
16516 (save-restriction
16517 (widen)
16518 (goto-char (point-min))
16519 (let (case-fold-search)
16520 (if (re-search-forward
16521 (format org-complex-heading-regexp-format
16522 (regexp-quote heading)) nil t)
16523 (if pos-only
16524 (match-beginning 0)
16525 (move-marker (make-marker) (match-beginning 0)))))))))
16527 (defun org-find-exact-heading-in-directory (heading &optional dir)
16528 "Find Org node headline HEADING in all .org files in directory DIR.
16529 When the target headline is found, return a marker to this location."
16530 (let ((files (directory-files (or dir default-directory)
16531 t "\\`[^.#].*\\.org\\'"))
16532 file visiting m buffer)
16533 (catch 'found
16534 (while (setq file (pop files))
16535 (message "trying %s" file)
16536 (setq visiting (org-find-base-buffer-visiting file))
16537 (setq buffer (or visiting (find-file-noselect file)))
16538 (setq m (org-find-exact-headline-in-buffer
16539 heading buffer))
16540 (when (and (not m) (not visiting)) (kill-buffer buffer))
16541 (and m (throw 'found m))))))
16543 (defun org-find-entry-with-id (ident)
16544 "Locate the entry that contains the ID property with exact value IDENT.
16545 IDENT can be a string, a symbol or a number, this function will search for
16546 the string representation of it.
16547 Return the position where this entry starts, or nil if there is no such entry."
16548 (interactive "sID: ")
16549 (let ((id (cond
16550 ((stringp ident) ident)
16551 ((symbolp ident) (symbol-name ident))
16552 ((numberp ident) (number-to-string ident))
16553 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16554 (org-with-wide-buffer (org-find-property "ID" id))))
16556 ;;;; Timestamps
16558 (defvar org-last-changed-timestamp nil)
16559 (defvar org-last-inserted-timestamp nil
16560 "The last time stamp inserted with `org-insert-time-stamp'.")
16561 (defvar org-ts-what) ; dynamically scoped parameter
16563 (defun org-time-stamp (arg &optional inactive)
16564 "Prompt for a date/time and insert a time stamp.
16566 If the user specifies a time like HH:MM or if this command is
16567 called with at least one prefix argument, the time stamp contains
16568 the date and the time. Otherwise, only the date is included.
16570 All parts of a date not specified by the user are filled in from
16571 the timestamp at point, if any, or the current date/time
16572 otherwise.
16574 If there is already a timestamp at the cursor, it is replaced.
16576 With two universal prefix arguments, insert an active timestamp
16577 with the current time without prompting the user.
16579 When called from lisp, the timestamp is inactive if INACTIVE is
16580 non-nil."
16581 (interactive "P")
16582 (let* ((ts
16583 (cond ((org-at-date-range-p t)
16584 (save-excursion
16585 (goto-char (match-beginning 0))
16586 (looking-at (if inactive org-ts-regexp-both org-ts-regexp)))
16587 (match-string 0))
16588 ((org-at-timestamp-p t) (match-string 0))))
16589 ;; Default time is either the timestamp at point or today.
16590 ;; When entering a range, only the range start is considered.
16591 (default-time (if (not ts) (current-time)
16592 (apply #'encode-time (org-parse-time-string ts))))
16593 (default-input (and ts (org-get-compact-tod ts)))
16594 (repeater (and ts
16595 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16596 (match-string 0 ts)))
16597 org-time-was-given
16598 org-end-time-was-given
16599 (time
16600 (and (if (equal arg '(16)) (current-time)
16601 ;; Preserve `this-command' and `last-command'.
16602 (let ((this-command this-command)
16603 (last-command last-command))
16604 (org-read-date
16605 arg 'totime nil nil default-time default-input
16606 inactive))))))
16607 (cond
16608 ((and ts
16609 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16610 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16611 (insert "--")
16612 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16614 ;; Make sure we're on a timestamp. When in the middle of a date
16615 ;; range, move arbitrarily to range end.
16616 (unless (org-at-timestamp-p t)
16617 (skip-chars-forward "-")
16618 (org-at-timestamp-p t))
16619 (replace-match "")
16620 (setq org-last-changed-timestamp
16621 (org-insert-time-stamp
16622 time (or org-time-was-given arg)
16623 inactive nil nil (list org-end-time-was-given)))
16624 (when repeater
16625 (backward-char)
16626 (insert " " repeater)
16627 (setq org-last-changed-timestamp
16628 (concat (substring org-last-inserted-timestamp 0 -1)
16629 " " repeater ">")))
16630 (message "Timestamp updated"))
16631 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16632 (t (org-insert-time-stamp
16633 time (or org-time-was-given arg) inactive nil nil
16634 (list org-end-time-was-given))))))
16636 ;; FIXME: can we use this for something else, like computing time differences?
16637 (defun org-get-compact-tod (s)
16638 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16639 (let* ((t1 (match-string 1 s))
16640 (h1 (string-to-number (match-string 2 s)))
16641 (m1 (string-to-number (match-string 3 s)))
16642 (t2 (and (match-end 4) (match-string 5 s)))
16643 (h2 (and t2 (string-to-number (match-string 6 s))))
16644 (m2 (and t2 (string-to-number (match-string 7 s))))
16645 dh dm)
16646 (if (not t2)
16648 (setq dh (- h2 h1) dm (- m2 m1))
16649 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16650 (concat t1 "+" (number-to-string dh)
16651 (and (/= 0 dm) (format ":%02d" dm)))))))
16653 (defun org-time-stamp-inactive (&optional arg)
16654 "Insert an inactive time stamp.
16655 An inactive time stamp is enclosed in square brackets instead of angle
16656 brackets. It is inactive in the sense that it does not trigger agenda entries,
16657 does not link to the calendar and cannot be changed with the S-cursor keys.
16658 So these are more for recording a certain time/date."
16659 (interactive "P")
16660 (org-time-stamp arg 'inactive))
16662 (defvar org-date-ovl (make-overlay 1 1))
16663 (overlay-put org-date-ovl 'face 'org-date-selected)
16664 (org-detach-overlay org-date-ovl)
16666 (defvar org-ans1) ; dynamically scoped parameter
16667 (defvar org-ans2) ; dynamically scoped parameter
16669 (defvar org-plain-time-of-day-regexp) ; defined below
16671 (defvar org-overriding-default-time nil) ; dynamically scoped
16672 (defvar org-read-date-overlay nil)
16673 (defvar org-dcst nil) ; dynamically scoped
16674 (defvar org-read-date-history nil)
16675 (defvar org-read-date-final-answer nil)
16676 (defvar org-read-date-analyze-futurep nil)
16677 (defvar org-read-date-analyze-forced-year nil)
16678 (defvar org-read-date-inactive)
16680 (defvar org-read-date-minibuffer-local-map
16681 (let* ((map (make-sparse-keymap)))
16682 (set-keymap-parent map minibuffer-local-map)
16683 (org-defkey map (kbd ".")
16684 (lambda () (interactive)
16685 ;; Are we at the beginning of the prompt?
16686 (if (looking-back "^[^:]+: ")
16687 (org-eval-in-calendar '(calendar-goto-today))
16688 (insert "."))))
16689 (org-defkey map (kbd "C-.")
16690 (lambda () (interactive)
16691 (org-eval-in-calendar '(calendar-goto-today))))
16692 (org-defkey map [(meta shift left)]
16693 (lambda () (interactive)
16694 (org-eval-in-calendar '(calendar-backward-month 1))))
16695 (org-defkey map [(meta shift right)]
16696 (lambda () (interactive)
16697 (org-eval-in-calendar '(calendar-forward-month 1))))
16698 (org-defkey map [(meta shift up)]
16699 (lambda () (interactive)
16700 (org-eval-in-calendar '(calendar-backward-year 1))))
16701 (org-defkey map [(meta shift down)]
16702 (lambda () (interactive)
16703 (org-eval-in-calendar '(calendar-forward-year 1))))
16704 (org-defkey map [?\e (shift left)]
16705 (lambda () (interactive)
16706 (org-eval-in-calendar '(calendar-backward-month 1))))
16707 (org-defkey map [?\e (shift right)]
16708 (lambda () (interactive)
16709 (org-eval-in-calendar '(calendar-forward-month 1))))
16710 (org-defkey map [?\e (shift up)]
16711 (lambda () (interactive)
16712 (org-eval-in-calendar '(calendar-backward-year 1))))
16713 (org-defkey map [?\e (shift down)]
16714 (lambda () (interactive)
16715 (org-eval-in-calendar '(calendar-forward-year 1))))
16716 (org-defkey map [(shift up)]
16717 (lambda () (interactive)
16718 (org-eval-in-calendar '(calendar-backward-week 1))))
16719 (org-defkey map [(shift down)]
16720 (lambda () (interactive)
16721 (org-eval-in-calendar '(calendar-forward-week 1))))
16722 (org-defkey map [(shift left)]
16723 (lambda () (interactive)
16724 (org-eval-in-calendar '(calendar-backward-day 1))))
16725 (org-defkey map [(shift right)]
16726 (lambda () (interactive)
16727 (org-eval-in-calendar '(calendar-forward-day 1))))
16728 (org-defkey map "!"
16729 (lambda () (interactive)
16730 (org-eval-in-calendar '(diary-view-entries))
16731 (message "")))
16732 (org-defkey map ">"
16733 (lambda () (interactive)
16734 (org-eval-in-calendar '(calendar-scroll-left 1))))
16735 (org-defkey map "<"
16736 (lambda () (interactive)
16737 (org-eval-in-calendar '(calendar-scroll-right 1))))
16738 (org-defkey map "\C-v"
16739 (lambda () (interactive)
16740 (org-eval-in-calendar
16741 '(calendar-scroll-left-three-months 1))))
16742 (org-defkey map "\M-v"
16743 (lambda () (interactive)
16744 (org-eval-in-calendar
16745 '(calendar-scroll-right-three-months 1))))
16746 map)
16747 "Keymap for minibuffer commands when using `org-read-date'.")
16749 (defvar org-def)
16750 (defvar org-defdecode)
16751 (defvar org-with-time)
16753 (defun org-read-date (&optional org-with-time to-time from-string prompt
16754 default-time default-input inactive)
16755 "Read a date, possibly a time, and make things smooth for the user.
16756 The prompt will suggest to enter an ISO date, but you can also enter anything
16757 which will at least partially be understood by `parse-time-string'.
16758 Unrecognized parts of the date will default to the current day, month, year,
16759 hour and minute. If this command is called to replace a timestamp at point,
16760 or to enter the second timestamp of a range, the default time is taken
16761 from the existing stamp. Furthermore, the command prefers the future,
16762 so if you are giving a date where the year is not given, and the day-month
16763 combination is already past in the current year, it will assume you
16764 mean next year. For details, see the manual. A few examples:
16766 3-2-5 --> 2003-02-05
16767 feb 15 --> currentyear-02-15
16768 2/15 --> currentyear-02-15
16769 sep 12 9 --> 2009-09-12
16770 12:45 --> today 12:45
16771 22 sept 0:34 --> currentyear-09-22 0:34
16772 12 --> currentyear-currentmonth-12
16773 Fri --> nearest Friday after today
16774 -Tue --> last Tuesday
16775 etc.
16777 Furthermore you can specify a relative date by giving, as the *first* thing
16778 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16779 change in days weeks, months, years.
16780 With a single plus or minus, the date is relative to today. With a double
16781 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16782 +4d --> four days from today
16783 +4 --> same as above
16784 +2w --> two weeks from today
16785 ++5 --> five days from default date
16787 The function understands only English month and weekday abbreviations.
16789 While prompting, a calendar is popped up - you can also select the
16790 date with the mouse (button 1). The calendar shows a period of three
16791 months. To scroll it to other months, use the keys `>' and `<'.
16792 If you don't like the calendar, turn it off with
16793 \(setq org-read-date-popup-calendar nil)
16795 With optional argument TO-TIME, the date will immediately be converted
16796 to an internal time.
16797 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16798 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16799 still enter a time, and this function will inform the calling routine
16800 about this change. The calling routine may then choose to change the
16801 format used to insert the time stamp into the buffer to include the time.
16802 With optional argument FROM-STRING, read from this string instead from
16803 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16804 the time/date that is used for everything that is not specified by the
16805 user."
16806 (require 'parse-time)
16807 (let* ((org-time-stamp-rounding-minutes
16808 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16809 (org-dcst org-display-custom-times)
16810 (ct (org-current-time))
16811 (org-def (or org-overriding-default-time default-time ct))
16812 (org-defdecode (decode-time org-def))
16813 (dummy (progn
16814 (when (< (nth 2 org-defdecode) org-extend-today-until)
16815 (setcar (nthcdr 2 org-defdecode) -1)
16816 (setcar (nthcdr 1 org-defdecode) 59)
16817 (setq org-def (apply 'encode-time org-defdecode)
16818 org-defdecode (decode-time org-def)))))
16819 (cur-frame (selected-frame))
16820 (mouse-autoselect-window nil) ; Don't let the mouse jump
16821 (calendar-frame-setup nil)
16822 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16823 (calendar-move-hook nil)
16824 (calendar-view-diary-initially-flag nil)
16825 (calendar-view-holidays-initially-flag nil)
16826 (timestr (format-time-string
16827 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16828 (prompt (concat (if prompt (concat prompt " ") "")
16829 (format "Date+time [%s]: " timestr)))
16830 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16832 (cond
16833 (from-string (setq ans from-string))
16834 (org-read-date-popup-calendar
16835 (save-excursion
16836 (save-window-excursion
16837 (calendar)
16838 (when (eq calendar-setup 'calendar-only)
16839 (setq cal-frame
16840 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16841 (select-frame cal-frame))
16842 (org-eval-in-calendar '(setq cursor-type nil) t)
16843 (unwind-protect
16844 (progn
16845 (calendar-forward-day (- (time-to-days org-def)
16846 (calendar-absolute-from-gregorian
16847 (calendar-current-date))))
16848 (org-eval-in-calendar nil t)
16849 (let* ((old-map (current-local-map))
16850 (map (copy-keymap calendar-mode-map))
16851 (minibuffer-local-map
16852 (copy-keymap org-read-date-minibuffer-local-map)))
16853 (org-defkey map (kbd "RET") 'org-calendar-select)
16854 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16855 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16856 (unwind-protect
16857 (progn
16858 (use-local-map map)
16859 (setq org-read-date-inactive inactive)
16860 (add-hook 'post-command-hook 'org-read-date-display)
16861 (setq org-ans0 (read-string prompt default-input
16862 'org-read-date-history nil))
16863 ;; org-ans0: from prompt
16864 ;; org-ans1: from mouse click
16865 ;; org-ans2: from calendar motion
16866 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16867 (remove-hook 'post-command-hook 'org-read-date-display)
16868 (use-local-map old-map)
16869 (when org-read-date-overlay
16870 (delete-overlay org-read-date-overlay)
16871 (setq org-read-date-overlay nil)))))
16872 (bury-buffer "*Calendar*")
16873 (when cal-frame
16874 (delete-frame cal-frame)
16875 (select-frame-set-input-focus cur-frame))))))
16877 (t ; Naked prompt only
16878 (unwind-protect
16879 (setq ans (read-string prompt default-input
16880 'org-read-date-history timestr))
16881 (when org-read-date-overlay
16882 (delete-overlay org-read-date-overlay)
16883 (setq org-read-date-overlay nil)))))
16885 (setq final (org-read-date-analyze ans org-def org-defdecode))
16887 (when org-read-date-analyze-forced-year
16888 (message "Year was forced into %s"
16889 (if org-read-date-force-compatible-dates
16890 "compatible range (1970-2037)"
16891 "range representable on this machine"))
16892 (ding))
16894 ;; One round trip to get rid of 34th of August and stuff like that....
16895 (setq final (decode-time (apply 'encode-time final)))
16897 (setq org-read-date-final-answer ans)
16899 (if to-time
16900 (apply 'encode-time final)
16901 (if (and (boundp 'org-time-was-given) org-time-was-given)
16902 (format "%04d-%02d-%02d %02d:%02d"
16903 (nth 5 final) (nth 4 final) (nth 3 final)
16904 (nth 2 final) (nth 1 final))
16905 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16907 (defun org-read-date-display ()
16908 "Display the current date prompt interpretation in the minibuffer."
16909 (when org-read-date-display-live
16910 (when org-read-date-overlay
16911 (delete-overlay org-read-date-overlay))
16912 (when (minibufferp (current-buffer))
16913 (save-excursion
16914 (end-of-line 1)
16915 (while (not (equal (buffer-substring
16916 (max (point-min) (- (point) 4)) (point))
16917 " "))
16918 (insert " ")))
16919 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16920 " " (or org-ans1 org-ans2)))
16921 (org-end-time-was-given nil)
16922 (f (org-read-date-analyze ans org-def org-defdecode))
16923 (fmts (if org-dcst
16924 org-time-stamp-custom-formats
16925 org-time-stamp-formats))
16926 (fmt (if (or org-with-time
16927 (and (boundp 'org-time-was-given) org-time-was-given))
16928 (cdr fmts)
16929 (car fmts)))
16930 (txt (format-time-string fmt (apply 'encode-time f)))
16931 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16932 (txt (concat "=> " txt)))
16933 (when (and org-end-time-was-given
16934 (string-match org-plain-time-of-day-regexp txt))
16935 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16936 org-end-time-was-given
16937 (substring txt (match-end 0)))))
16938 (when org-read-date-analyze-futurep
16939 (setq txt (concat txt " (=>F)")))
16940 (setq org-read-date-overlay
16941 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16942 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16944 (defun org-read-date-analyze (ans org-def org-defdecode)
16945 "Analyze the combined answer of the date prompt."
16946 ;; FIXME: cleanup and comment
16947 (let ((nowdecode (decode-time (current-time)))
16948 delta deltan deltaw deltadef year month day
16949 hour minute second wday pm h2 m2 tl wday1
16950 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16951 (setq org-read-date-analyze-futurep nil
16952 org-read-date-analyze-forced-year nil)
16953 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16954 (setq ans "+0"))
16956 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16957 (setq ans (replace-match "" t t ans)
16958 deltan (car delta)
16959 deltaw (nth 1 delta)
16960 deltadef (nth 2 delta)))
16962 ;; Check if there is an iso week date in there. If yes, store the
16963 ;; info and postpone interpreting it until the rest of the parsing
16964 ;; is done.
16965 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16966 (setq iso-year (if (match-end 1)
16967 (org-small-year-to-year
16968 (string-to-number (match-string 1 ans))))
16969 iso-weekday (if (match-end 3)
16970 (string-to-number (match-string 3 ans)))
16971 iso-week (string-to-number (match-string 2 ans)))
16972 (setq ans (replace-match "" t t ans)))
16974 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16975 (when (string-match
16976 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16977 (setq year (if (match-end 2)
16978 (string-to-number (match-string 2 ans))
16979 (progn (setq kill-year t)
16980 (string-to-number (format-time-string "%Y"))))
16981 month (string-to-number (match-string 3 ans))
16982 day (string-to-number (match-string 4 ans)))
16983 (if (< year 100) (setq year (+ 2000 year)))
16984 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16985 t nil ans)))
16987 ;; Help matching dotted european dates
16988 (when (string-match
16989 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16990 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16991 (setq kill-year t)
16992 (string-to-number (format-time-string "%Y")))
16993 day (string-to-number (match-string 1 ans))
16994 month (string-to-number (match-string 2 ans))
16995 ans (replace-match (format "%04d-%02d-%02d" year month day)
16996 t nil ans)))
16998 ;; Help matching american dates, like 5/30 or 5/30/7
16999 (when (string-match
17000 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17001 (setq year (if (match-end 4)
17002 (string-to-number (match-string 4 ans))
17003 (progn (setq kill-year t)
17004 (string-to-number (format-time-string "%Y"))))
17005 month (string-to-number (match-string 1 ans))
17006 day (string-to-number (match-string 2 ans)))
17007 (if (< year 100) (setq year (+ 2000 year)))
17008 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17009 t nil ans)))
17010 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17011 ;; If there is a time with am/pm, and *no* time without it, we convert
17012 ;; so that matching will be successful.
17013 (loop for i from 1 to 2 do ; twice, for end time as well
17014 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17015 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17016 (setq hour (string-to-number (match-string 1 ans))
17017 minute (if (match-end 3)
17018 (string-to-number (match-string 3 ans))
17020 pm (equal ?p
17021 (string-to-char (downcase (match-string 4 ans)))))
17022 (if (and (= hour 12) (not pm))
17023 (setq hour 0)
17024 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17025 (setq ans (replace-match (format "%02d:%02d" hour minute)
17026 t t ans))))
17028 ;; Check if a time range is given as a duration
17029 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17030 (setq hour (string-to-number (match-string 1 ans))
17031 h2 (+ hour (string-to-number (match-string 3 ans)))
17032 minute (string-to-number (match-string 2 ans))
17033 m2 (+ minute (if (match-end 5) (string-to-number
17034 (match-string 5 ans))0)))
17035 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17036 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17037 t t ans)))
17039 ;; Check if there is a time range
17040 (when (boundp 'org-end-time-was-given)
17041 (setq org-time-was-given nil)
17042 (when (and (string-match org-plain-time-of-day-regexp ans)
17043 (match-end 8))
17044 (setq org-end-time-was-given (match-string 8 ans))
17045 (setq ans (concat (substring ans 0 (match-beginning 7))
17046 (substring ans (match-end 7))))))
17048 (setq tl (parse-time-string ans)
17049 day (or (nth 3 tl) (nth 3 org-defdecode))
17050 month
17051 (cond ((nth 4 tl))
17052 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17053 ;; Day was specified. Make sure DAY+MONTH
17054 ;; combination happens in the future.
17055 ((nth 3 tl)
17056 (setq futurep t)
17057 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17058 (nth 4 nowdecode)))
17059 (t (nth 4 org-defdecode)))
17060 year
17061 (cond ((and (not kill-year) (nth 5 tl)))
17062 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17063 ;; Month was guessed in the future and is at least
17064 ;; equal to NOWDECODE's. Fix year accordingly.
17065 (futurep
17066 (if (or (> month (nth 4 nowdecode))
17067 (>= day (nth 3 nowdecode)))
17068 (nth 5 nowdecode)
17069 (1+ (nth 5 nowdecode))))
17070 ;; Month was specified. Make sure MONTH+YEAR
17071 ;; combination happens in the future.
17072 ((nth 4 tl)
17073 (setq futurep t)
17074 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17075 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17076 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17077 (t (nth 5 nowdecode))))
17078 (t (nth 5 org-defdecode)))
17079 hour (or (nth 2 tl) (nth 2 org-defdecode))
17080 minute (or (nth 1 tl) (nth 1 org-defdecode))
17081 second (or (nth 0 tl) 0)
17082 wday (nth 6 tl))
17084 (when (and (eq org-read-date-prefer-future 'time)
17085 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17086 (equal day (nth 3 nowdecode))
17087 (equal month (nth 4 nowdecode))
17088 (equal year (nth 5 nowdecode))
17089 (nth 2 tl)
17090 (or (< (nth 2 tl) (nth 2 nowdecode))
17091 (and (= (nth 2 tl) (nth 2 nowdecode))
17092 (nth 1 tl)
17093 (< (nth 1 tl) (nth 1 nowdecode)))))
17094 (setq day (1+ day)
17095 futurep t))
17097 ;; Special date definitions below
17098 (cond
17099 (iso-week
17100 ;; There was an iso week
17101 (require 'cal-iso)
17102 (setq futurep nil)
17103 (setq year (or iso-year year)
17104 day (or iso-weekday wday 1)
17105 wday nil ; to make sure that the trigger below does not match
17106 iso-date (calendar-gregorian-from-absolute
17107 (calendar-iso-to-absolute
17108 (list iso-week day year))))
17109 ; FIXME: Should we also push ISO weeks into the future?
17110 ; (when (and org-read-date-prefer-future
17111 ; (not iso-year)
17112 ; (< (calendar-absolute-from-gregorian iso-date)
17113 ; (time-to-days (current-time))))
17114 ; (setq year (1+ year)
17115 ; iso-date (calendar-gregorian-from-absolute
17116 ; (calendar-iso-to-absolute
17117 ; (list iso-week day year)))))
17118 (setq month (car iso-date)
17119 year (nth 2 iso-date)
17120 day (nth 1 iso-date)))
17121 (deltan
17122 (setq futurep nil)
17123 (unless deltadef
17124 (let ((now (decode-time (current-time))))
17125 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17126 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17127 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17128 ((equal deltaw "m") (setq month (+ month deltan)))
17129 ((equal deltaw "y") (setq year (+ year deltan)))))
17130 ((and wday (not (nth 3 tl)))
17131 ;; Weekday was given, but no day, so pick that day in the week
17132 ;; on or after the derived date.
17133 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17134 (unless (equal wday wday1)
17135 (setq day (+ day (% (- wday wday1 -7) 7))))))
17136 (if (and (boundp 'org-time-was-given)
17137 (nth 2 tl))
17138 (setq org-time-was-given t))
17139 (if (< year 100) (setq year (+ 2000 year)))
17140 ;; Check of the date is representable
17141 (if org-read-date-force-compatible-dates
17142 (progn
17143 (if (< year 1970)
17144 (setq year 1970 org-read-date-analyze-forced-year t))
17145 (if (> year 2037)
17146 (setq year 2037 org-read-date-analyze-forced-year t)))
17147 (condition-case nil
17148 (ignore (encode-time second minute hour day month year))
17149 (error
17150 (setq year (nth 5 org-defdecode))
17151 (setq org-read-date-analyze-forced-year t))))
17152 (setq org-read-date-analyze-futurep futurep)
17153 (list second minute hour day month year)))
17155 (defvar parse-time-weekdays)
17156 (defun org-read-date-get-relative (s today default)
17157 "Check string S for special relative date string.
17158 TODAY and DEFAULT are internal times, for today and for a default.
17159 Return shift list (N what def-flag)
17160 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17161 N is the number of WHATs to shift.
17162 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17163 the DEFAULT date rather than TODAY."
17164 (require 'parse-time)
17165 (when (and
17166 (string-match
17167 (concat
17168 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17169 "\\([0-9]+\\)?"
17170 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17171 "\\([ \t]\\|$\\)") s)
17172 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17173 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17174 (string-to-char (substring (match-string 1 s) -1))
17175 ?+))
17176 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17177 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17178 (what (if (match-end 3) (match-string 3 s) "d"))
17179 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17180 (date (if rel default today))
17181 (wday (nth 6 (decode-time date)))
17182 delta)
17183 (if wday1
17184 (progn
17185 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17186 (if (= delta 0) (setq delta 7))
17187 (if (= dir ?-)
17188 (progn
17189 (setq delta (- delta 7))
17190 (if (= delta 0) (setq delta -7))))
17191 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17192 (list delta "d" rel))
17193 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17195 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17196 "Turn a user-specified date into the internal representation.
17197 The internal representation needed by the calendar is (month day year).
17198 This is a wrapper to handle the brain-dead convention in calendar that
17199 user function argument order change dependent on argument order."
17200 (if (boundp 'calendar-date-style)
17201 (cond
17202 ((eq calendar-date-style 'american)
17203 (list arg1 arg2 arg3))
17204 ((eq calendar-date-style 'european)
17205 (list arg2 arg1 arg3))
17206 ((eq calendar-date-style 'iso)
17207 (list arg2 arg3 arg1)))
17208 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17209 (if (org-bound-and-true-p european-calendar-style)
17210 (list arg2 arg1 arg3)
17211 (list arg1 arg2 arg3)))))
17213 (defun org-eval-in-calendar (form &optional keepdate)
17214 "Eval FORM in the calendar window and return to current window.
17215 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17216 otherwise stick to the current value of `org-ans2'."
17217 (let ((sf (selected-frame))
17218 (sw (selected-window)))
17219 (select-window (get-buffer-window "*Calendar*" t))
17220 (eval form)
17221 (when (and (not keepdate) (calendar-cursor-to-date))
17222 (let* ((date (calendar-cursor-to-date))
17223 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17224 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17225 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17226 (select-window sw)
17227 (org-select-frame-set-input-focus sf)))
17229 (defun org-calendar-select ()
17230 "Return to `org-read-date' with the date currently selected.
17231 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17232 (interactive)
17233 (when (calendar-cursor-to-date)
17234 (let* ((date (calendar-cursor-to-date))
17235 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17236 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17237 (if (active-minibuffer-window) (exit-minibuffer))))
17239 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17240 "Insert a date stamp for the date given by the internal TIME.
17241 See `format-time-string' for the format of TIME.
17242 WITH-HM means use the stamp format that includes the time of the day.
17243 INACTIVE means use square brackets instead of angular ones, so that the
17244 stamp will not contribute to the agenda.
17245 PRE and POST are optional strings to be inserted before and after the
17246 stamp.
17247 The command returns the inserted time stamp."
17248 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17249 stamp)
17250 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17251 (insert-before-markers (or pre ""))
17252 (when (listp extra)
17253 (setq extra (car extra))
17254 (if (and (stringp extra)
17255 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17256 (setq extra (format "-%02d:%02d"
17257 (string-to-number (match-string 1 extra))
17258 (string-to-number (match-string 2 extra))))
17259 (setq extra nil)))
17260 (when extra
17261 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17262 (insert-before-markers (setq stamp (format-time-string fmt time)))
17263 (insert-before-markers (or post ""))
17264 (setq org-last-inserted-timestamp stamp)))
17266 (defun org-toggle-time-stamp-overlays ()
17267 "Toggle the use of custom time stamp formats."
17268 (interactive)
17269 (setq org-display-custom-times (not org-display-custom-times))
17270 (unless org-display-custom-times
17271 (let ((p (point-min)) (bmp (buffer-modified-p)))
17272 (while (setq p (next-single-property-change p 'display))
17273 (if (and (get-text-property p 'display)
17274 (eq (get-text-property p 'face) 'org-date))
17275 (remove-text-properties
17276 p (setq p (next-single-property-change p 'display))
17277 '(display t))))
17278 (set-buffer-modified-p bmp)))
17279 (if (featurep 'xemacs)
17280 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17281 (org-restart-font-lock)
17282 (setq org-table-may-need-update t)
17283 (if org-display-custom-times
17284 (message "Time stamps are overlaid with custom format")
17285 (message "Time stamp overlays removed")))
17287 (defun org-display-custom-time (beg end)
17288 "Overlay modified time stamp format over timestamp between BEG and END."
17289 (let* ((ts (buffer-substring beg end))
17290 t1 w1 with-hm tf time str w2 (off 0))
17291 (save-match-data
17292 (setq t1 (org-parse-time-string ts t))
17293 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17294 (setq off (- (match-end 0) (match-beginning 0)))))
17295 (setq end (- end off))
17296 (setq w1 (- end beg)
17297 with-hm (and (nth 1 t1) (nth 2 t1))
17298 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17299 time (org-fix-decoded-time t1)
17300 str (org-add-props
17301 (format-time-string
17302 (substring tf 1 -1) (apply 'encode-time time))
17303 nil 'mouse-face 'highlight)
17304 w2 (length str))
17305 (if (not (= w2 w1))
17306 (add-text-properties (1+ beg) (+ 2 beg)
17307 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17308 (if (featurep 'xemacs)
17309 (progn
17310 (put-text-property beg end 'invisible t)
17311 (put-text-property beg end 'end-glyph (make-glyph str)))
17312 (put-text-property beg end 'display str))))
17314 (defun org-fix-decoded-time (time)
17315 "Set 0 instead of nil for the first 6 elements of time.
17316 Don't touch the rest."
17317 (let ((n 0))
17318 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17320 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17322 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17323 "Difference between TIMESTAMP-STRING and now in days.
17324 If SECONDS is non-nil, return the difference in seconds."
17325 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17326 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17327 (funcall fdiff (current-time)))))
17329 (defun org-deadline-close (timestamp-string &optional ndays)
17330 "Is the time in TIMESTAMP-STRING close to the current date?"
17331 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17332 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17333 (not (org-entry-is-done-p))))
17335 (defun org-get-wdays (ts &optional delay zero-delay)
17336 "Get the deadline lead time appropriate for timestring TS.
17337 When DELAY is non-nil, get the delay time for scheduled items
17338 instead of the deadline lead time. When ZERO-DELAY is non-nil
17339 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17340 don't try to find the delay cookie in the scheduled timestamp."
17341 (let ((tv (if delay org-scheduled-delay-days
17342 org-deadline-warning-days)))
17343 (cond
17344 ((or (and delay (< tv 0))
17345 (and delay zero-delay (<= tv 0))
17346 (and (not delay) (<= tv 0)))
17347 ;; Enforce this value no matter what
17348 (- tv))
17349 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17350 ;; lead time is specified.
17351 (floor (* (string-to-number (match-string 1 ts))
17352 (cdr (assoc (match-string 2 ts)
17353 '(("d" . 1) ("w" . 7)
17354 ("m" . 30.4) ("y" . 365.25)
17355 ("h" . 0.041667)))))))
17356 ;; go for the default.
17357 (t tv))))
17359 (defun org-calendar-select-mouse (ev)
17360 "Return to `org-read-date' with the date currently selected.
17361 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17362 (interactive "e")
17363 (mouse-set-point ev)
17364 (when (calendar-cursor-to-date)
17365 (let* ((date (calendar-cursor-to-date))
17366 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17367 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17368 (if (active-minibuffer-window) (exit-minibuffer))))
17370 (defun org-check-deadlines (ndays)
17371 "Check if there are any deadlines due or past due.
17372 A deadline is considered due if it happens within `org-deadline-warning-days'
17373 days from today's date. If the deadline appears in an entry marked DONE,
17374 it is not shown. The prefix arg NDAYS can be used to test that many
17375 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17376 (interactive "P")
17377 (let* ((org-warn-days
17378 (cond
17379 ((equal ndays '(4)) 100000)
17380 (ndays (prefix-numeric-value ndays))
17381 (t (abs org-deadline-warning-days))))
17382 (case-fold-search nil)
17383 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17384 (callback
17385 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17387 (message "%d deadlines past-due or due within %d days"
17388 (org-occur regexp nil callback)
17389 org-warn-days)))
17391 (defsubst org-re-timestamp (type)
17392 "Return a regexp for timestamp TYPE.
17393 Allowed values for TYPE are:
17395 all: all timestamps
17396 active: only active timestamps (<...>)
17397 inactive: only inactive timestamps ([...])
17398 scheduled: only scheduled timestamps
17399 deadline: only deadline timestamps
17400 closed: only closed time-stamps
17402 When TYPE is nil, fall back on returning a regexp that matches
17403 both scheduled and deadline timestamps."
17404 (case type
17405 (all org-ts-regexp-both)
17406 (active org-ts-regexp)
17407 (inactive org-ts-regexp-inactive)
17408 (scheduled org-scheduled-time-regexp)
17409 (deadline org-deadline-time-regexp)
17410 (closed org-closed-time-regexp)
17411 (otherwise
17412 (concat "\\<"
17413 (regexp-opt (list org-deadline-string org-scheduled-string))
17414 " *<\\([^>]+\\)>"))))
17416 (defun org-check-before-date (date)
17417 "Check if there are deadlines or scheduled entries before DATE."
17418 (interactive (list (org-read-date)))
17419 (let ((case-fold-search nil)
17420 (regexp (org-re-timestamp org-ts-type))
17421 (callback
17422 `(lambda ()
17423 (and ,(if (memq org-ts-type '(active inactive all))
17424 '(eq (org-element-type (org-element-context) 'timestamp))
17425 '(org-at-planning-p))
17426 (time-less-p
17427 (org-time-string-to-time (match-string 1))
17428 (org-time-string-to-time date))))))
17429 (message "%d entries before %s"
17430 (org-occur regexp nil callback) date)))
17432 (defun org-check-after-date (date)
17433 "Check if there are deadlines or scheduled entries after DATE."
17434 (interactive (list (org-read-date)))
17435 (let ((case-fold-search nil)
17436 (regexp (org-re-timestamp org-ts-type))
17437 (callback
17438 `(lambda ()
17439 (and ,(if (memq org-ts-type '(active inactive all))
17440 '(eq (org-element-type (org-element-context) 'timestamp))
17441 '(org-at-planning-p))
17442 (not (time-less-p
17443 (org-time-string-to-time (match-string 1))
17444 (org-time-string-to-time date)))))))
17445 (message "%d entries after %s"
17446 (org-occur regexp nil callback) date)))
17448 (defun org-check-dates-range (start-date end-date)
17449 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17450 (interactive (list (org-read-date nil nil nil "Range starts")
17451 (org-read-date nil nil nil "Range end")))
17452 (let ((case-fold-search nil)
17453 (regexp (org-re-timestamp org-ts-type))
17454 (callback
17455 `(lambda ()
17456 (let ((match (match-string 1)))
17457 (and
17458 ,(if (memq org-ts-type '(active inactive all))
17459 '(eq (org-element-type (org-element-context) 'timestamp))
17460 '(org-at-planning-p))
17461 (not (time-less-p
17462 (org-time-string-to-time match)
17463 (org-time-string-to-time start-date)))
17464 (time-less-p
17465 (org-time-string-to-time match)
17466 (org-time-string-to-time end-date)))))))
17467 (message "%d entries between %s and %s"
17468 (org-occur regexp nil callback) start-date end-date)))
17470 (defun org-evaluate-time-range (&optional to-buffer)
17471 "Evaluate a time range by computing the difference between start and end.
17472 Normally the result is just printed in the echo area, but with prefix arg
17473 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17474 If the time range is actually in a table, the result is inserted into the
17475 next column.
17476 For time difference computation, a year is assumed to be exactly 365
17477 days in order to avoid rounding problems."
17478 (interactive "P")
17480 (org-clock-update-time-maybe)
17481 (save-excursion
17482 (unless (org-at-date-range-p t)
17483 (goto-char (point-at-bol))
17484 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17485 (if (not (org-at-date-range-p t))
17486 (user-error "Not at a time-stamp range, and none found in current line")))
17487 (let* ((ts1 (match-string 1))
17488 (ts2 (match-string 2))
17489 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17490 (match-end (match-end 0))
17491 (time1 (org-time-string-to-time ts1))
17492 (time2 (org-time-string-to-time ts2))
17493 (t1 (org-float-time time1))
17494 (t2 (org-float-time time2))
17495 (diff (abs (- t2 t1)))
17496 (negative (< (- t2 t1) 0))
17497 ;; (ys (floor (* 365 24 60 60)))
17498 (ds (* 24 60 60))
17499 (hs (* 60 60))
17500 (fy "%dy %dd %02d:%02d")
17501 (fy1 "%dy %dd")
17502 (fd "%dd %02d:%02d")
17503 (fd1 "%dd")
17504 (fh "%02d:%02d")
17505 y d h m align)
17506 (if havetime
17507 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17509 d (floor (/ diff ds)) diff (mod diff ds)
17510 h (floor (/ diff hs)) diff (mod diff hs)
17511 m (floor (/ diff 60)))
17512 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17514 d (floor (+ (/ diff ds) 0.5))
17515 h 0 m 0))
17516 (if (not to-buffer)
17517 (message "%s" (org-make-tdiff-string y d h m))
17518 (if (org-at-table-p)
17519 (progn
17520 (goto-char match-end)
17521 (setq align t)
17522 (and (looking-at " *|") (goto-char (match-end 0))))
17523 (goto-char match-end))
17524 (if (looking-at
17525 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17526 (replace-match ""))
17527 (if negative (insert " -"))
17528 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17529 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17530 (insert " " (format fh h m))))
17531 (if align (org-table-align))
17532 (message "Time difference inserted")))))
17534 (defun org-make-tdiff-string (y d h m)
17535 (let ((fmt "")
17536 (l nil))
17537 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17538 l (push y l)))
17539 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17540 l (push d l)))
17541 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17542 l (push h l)))
17543 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17544 l (push m l)))
17545 (apply 'format fmt (nreverse l))))
17547 (defun org-time-string-to-time (s &optional buffer pos)
17548 "Convert a timestamp string into internal time."
17549 (condition-case errdata
17550 (apply 'encode-time (org-parse-time-string s))
17551 (error (error "Bad timestamp `%s'%s\nError was: %s"
17552 s (if (not (and buffer pos))
17554 (format " at %d in buffer `%s'" pos buffer))
17555 (cdr errdata)))))
17557 (defun org-time-string-to-seconds (s)
17558 "Convert a timestamp string to a number of seconds."
17559 (org-float-time (org-time-string-to-time s)))
17561 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17562 "Convert a time stamp to an absolute day number.
17563 If there is a specifier for a cyclic time stamp, get the closest
17564 date to DAYNR.
17565 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17566 The variable `date' is bound by the calendar when this is called."
17567 (cond
17568 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17569 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17570 daynr
17571 (+ daynr 1000)))
17572 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17573 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17574 (time-to-days (current-time))) (match-string 0 s)
17575 prefer show-all))
17576 (t (time-to-days
17577 (condition-case errdata
17578 (apply 'encode-time (org-parse-time-string s))
17579 (error (error "Bad timestamp `%s'%s\nError was: %s"
17580 s (if (not (and buffer pos))
17582 (format " at %d in buffer `%s'" pos buffer))
17583 (cdr errdata))))))))
17585 (defun org-days-to-iso-week (days)
17586 "Return the iso week number."
17587 (require 'cal-iso)
17588 (car (calendar-iso-from-absolute days)))
17590 (defun org-small-year-to-year (year)
17591 "Convert 2-digit years into 4-digit years.
17592 YEAR is expanded into one of the 30 next years, if possible, or
17593 into a past one. Any year larger than 99 is returned unchanged."
17594 (if (>= year 100) year
17595 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17596 (century (/ current 100))
17597 (offset (- year (% current 100))))
17598 (cond ((> offset 30) (+ (* (1- century) 100) year))
17599 ((> offset -70) (+ (* century 100) year))
17600 (t (+ (* (1+ century) 100) year))))))
17602 (defun org-time-from-absolute (d)
17603 "Return the time corresponding to date D.
17604 D may be an absolute day number, or a calendar-type list (month day year)."
17605 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17606 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17608 (defun org-calendar-holiday ()
17609 "List of holidays, for Diary display in Org-mode."
17610 (require 'holidays)
17611 (let ((hl (funcall
17612 (if (fboundp 'calendar-check-holidays)
17613 'calendar-check-holidays 'check-calendar-holidays) date)))
17614 (if hl (mapconcat 'identity hl "; "))))
17616 (defun org-diary-sexp-entry (sexp entry date)
17617 "Process a SEXP diary ENTRY for DATE."
17618 (require 'diary-lib)
17619 (let ((result (if calendar-debug-sexp
17620 (let ((stack-trace-on-error t))
17621 (eval (car (read-from-string sexp))))
17622 (condition-case nil
17623 (eval (car (read-from-string sexp)))
17624 (error
17625 (beep)
17626 (message "Bad sexp at line %d in %s: %s"
17627 (org-current-line)
17628 (buffer-file-name) sexp)
17629 (sleep-for 2))))))
17630 (cond ((stringp result) (split-string result "; "))
17631 ((and (consp result)
17632 (not (consp (cdr result)))
17633 (stringp (cdr result))) (cdr result))
17634 ((and (consp result)
17635 (stringp (car result))) result)
17636 (result entry))))
17638 (defun org-diary-to-ical-string (frombuf)
17639 "Get iCalendar entries from diary entries in buffer FROMBUF.
17640 This uses the icalendar.el library."
17641 (let* ((tmpdir (if (featurep 'xemacs)
17642 (temp-directory)
17643 temporary-file-directory))
17644 (tmpfile (make-temp-name
17645 (expand-file-name "orgics" tmpdir)))
17646 buf rtn b e)
17647 (with-current-buffer frombuf
17648 (icalendar-export-region (point-min) (point-max) tmpfile)
17649 (setq buf (find-buffer-visiting tmpfile))
17650 (set-buffer buf)
17651 (goto-char (point-min))
17652 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17653 (setq b (match-beginning 0)))
17654 (goto-char (point-max))
17655 (if (re-search-backward "^END:VEVENT" nil t)
17656 (setq e (match-end 0)))
17657 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17658 (kill-buffer buf)
17659 (delete-file tmpfile)
17660 rtn))
17662 (defun org-closest-date (start current change prefer show-all)
17663 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17664 When PREFER is `past', return a date that is either CURRENT or past.
17665 When PREFER is `future', return a date that is either CURRENT or future.
17666 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17667 ;; Make the proper lists from the dates
17668 (catch 'exit
17669 (let ((a1 '(("h" . hour)
17670 ("d" . day)
17671 ("w" . week)
17672 ("m" . month)
17673 ("y" . year)))
17674 (shour (nth 2 (org-parse-time-string start)))
17675 dn dw sday cday n1 n2 n0
17676 d m y y1 y2 date1 date2 nmonths nm ny m2)
17678 (setq start (org-date-to-gregorian start)
17679 current (org-date-to-gregorian
17680 (if show-all
17681 current
17682 (time-to-days (current-time))))
17683 sday (calendar-absolute-from-gregorian start)
17684 cday (calendar-absolute-from-gregorian current))
17686 (if (<= cday sday) (throw 'exit sday))
17688 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17689 (setq dn (string-to-number (match-string 1 change))
17690 dw (cdr (assoc (match-string 2 change) a1)))
17691 (user-error "Invalid change specifier: %s" change))
17692 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17693 (cond
17694 ((eq dw 'hour)
17695 (let ((missing-hours
17696 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17697 dn)))
17698 (setq n1 (if (zerop missing-hours) cday
17699 (- cday (1+ (floor (/ missing-hours 24)))))
17700 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17701 ((eq dw 'day)
17702 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17703 n2 (+ n1 dn)))
17704 ((eq dw 'year)
17705 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17706 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17707 (setq date1 (list m d y1)
17708 n1 (calendar-absolute-from-gregorian date1)
17709 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17710 n2 (calendar-absolute-from-gregorian date2)))
17711 ((eq dw 'month)
17712 ;; approx number of month between the two dates
17713 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17714 ;; How often does dn fit in there?
17715 (setq d (nth 1 start) m (car start) y (nth 2 start)
17716 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17717 m (+ m nm)
17718 ny (floor (/ m 12))
17719 y (+ y ny)
17720 m (- m (* ny 12)))
17721 (while (> m 12) (setq m (- m 12) y (1+ y)))
17722 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17723 (setq m2 (+ m dn) y2 y)
17724 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17725 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17726 (while (<= n2 cday)
17727 (setq n1 n2 m m2 y y2)
17728 (setq m2 (+ m dn) y2 y)
17729 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17730 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17731 ;; Make sure n1 is the earlier date
17732 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17733 (if show-all
17734 (cond
17735 ((eq prefer 'past) (if (= cday n2) n2 n1))
17736 ((eq prefer 'future) (if (= cday n1) n1 n2))
17737 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17738 (cond
17739 ((eq prefer 'past) (if (= cday n2) n2 n1))
17740 ((eq prefer 'future) (if (= cday n1) n1 n2))
17741 (t (if (= cday n1) n1 n2)))))))
17743 (defun org-date-to-gregorian (date)
17744 "Turn any specification of DATE into a Gregorian date for the calendar."
17745 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17746 ((and (listp date) (= (length date) 3)) date)
17747 ((stringp date)
17748 (setq date (org-parse-time-string date))
17749 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17750 ((listp date)
17751 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17753 (defun org-parse-time-string (s &optional nodefault)
17754 "Parse the standard Org-mode time string.
17755 This should be a lot faster than the normal `parse-time-string'.
17756 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17757 hour and minute fields will be nil if not given."
17758 (cond ((string-match org-ts-regexp0 s)
17759 (list 0
17760 (if (or (match-beginning 8) (not nodefault))
17761 (string-to-number (or (match-string 8 s) "0")))
17762 (if (or (match-beginning 7) (not nodefault))
17763 (string-to-number (or (match-string 7 s) "0")))
17764 (string-to-number (match-string 4 s))
17765 (string-to-number (match-string 3 s))
17766 (string-to-number (match-string 2 s))
17767 nil nil nil))
17768 ((string-match "^<[^>]+>$" s)
17769 (decode-time (seconds-to-time (org-matcher-time s))))
17770 (t (error "Not a standard Org-mode time string: %s" s))))
17772 (defun org-timestamp-up (&optional arg)
17773 "Increase the date item at the cursor by one.
17774 If the cursor is on the year, change the year. If it is on the month,
17775 the day or the time, change that.
17776 With prefix ARG, change by that many units."
17777 (interactive "p")
17778 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17780 (defun org-timestamp-down (&optional arg)
17781 "Decrease the date item at the cursor by one.
17782 If the cursor is on the year, change the year. If it is on the month,
17783 the day or the time, change that.
17784 With prefix ARG, change by that many units."
17785 (interactive "p")
17786 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17788 (defun org-timestamp-up-day (&optional arg)
17789 "Increase the date in the time stamp by one day.
17790 With prefix ARG, change that many days."
17791 (interactive "p")
17792 (if (and (not (org-at-timestamp-p t))
17793 (org-at-heading-p))
17794 (org-todo 'up)
17795 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17797 (defun org-timestamp-down-day (&optional arg)
17798 "Decrease the date in the time stamp by one day.
17799 With prefix ARG, change that many days."
17800 (interactive "p")
17801 (if (and (not (org-at-timestamp-p t))
17802 (org-at-heading-p))
17803 (org-todo 'down)
17804 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17806 (defun org-at-timestamp-p (&optional inactive-ok)
17807 "Determine if the cursor is in or at a timestamp."
17808 (interactive)
17809 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17810 (pos (point))
17811 (ans (or (looking-at tsr)
17812 (save-excursion
17813 (skip-chars-backward "^[<\n\r\t")
17814 (if (> (point) (point-min)) (backward-char 1))
17815 (and (looking-at tsr)
17816 (> (- (match-end 0) pos) -1))))))
17817 (and ans
17818 (boundp 'org-ts-what)
17819 (setq org-ts-what
17820 (cond
17821 ((= pos (match-beginning 0)) 'bracket)
17822 ;; Point is considered to be "on the bracket" whether
17823 ;; it's really on it or right after it.
17824 ((= pos (1- (match-end 0))) 'bracket)
17825 ((= pos (match-end 0)) 'after)
17826 ((org-pos-in-match-range pos 2) 'year)
17827 ((org-pos-in-match-range pos 3) 'month)
17828 ((org-pos-in-match-range pos 7) 'hour)
17829 ((org-pos-in-match-range pos 8) 'minute)
17830 ((or (org-pos-in-match-range pos 4)
17831 (org-pos-in-match-range pos 5)) 'day)
17832 ((and (> pos (or (match-end 8) (match-end 5)))
17833 (< pos (match-end 0)))
17834 (- pos (or (match-end 8) (match-end 5))))
17835 (t 'day))))
17836 ans))
17838 (defun org-toggle-timestamp-type ()
17839 "Toggle the type (<active> or [inactive]) of a time stamp."
17840 (interactive)
17841 (when (org-at-timestamp-p t)
17842 (let ((beg (match-beginning 0)) (end (match-end 0))
17843 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17844 (save-excursion
17845 (goto-char beg)
17846 (while (re-search-forward "[][<>]" end t)
17847 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17848 t t)))
17849 (message "Timestamp is now %sactive"
17850 (if (equal (char-after beg) ?<) "" "in")))))
17852 (defun org-at-clock-log-p nil
17853 "Is the cursor on the clock log line?"
17854 (save-excursion
17855 (move-beginning-of-line 1)
17856 (looking-at org-clock-line-re)))
17858 (defvar org-clock-history) ; defined in org-clock.el
17859 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17860 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17861 "Change the date in the time stamp at point.
17862 The date will be changed by N times WHAT. WHAT can be `day', `month',
17863 `year', `minute', `second'. If WHAT is not given, the cursor position
17864 in the timestamp determines what will be changed.
17865 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17866 (let ((origin (point)) origin-cat
17867 with-hm inactive
17868 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17869 org-ts-what
17870 extra rem
17871 ts time time0 fixnext clrgx)
17872 (if (not (org-at-timestamp-p t))
17873 (user-error "Not at a timestamp"))
17874 (if (and (not what) (eq org-ts-what 'bracket))
17875 (org-toggle-timestamp-type)
17876 ;; Point isn't on brackets. Remember the part of the time-stamp
17877 ;; the point was in. Indeed, size of time-stamps may change,
17878 ;; but point must be kept in the same category nonetheless.
17879 (setq origin-cat org-ts-what)
17880 (if (and (not what) (not (eq org-ts-what 'day))
17881 org-display-custom-times
17882 (get-text-property (point) 'display)
17883 (not (get-text-property (1- (point)) 'display)))
17884 (setq org-ts-what 'day))
17885 (setq org-ts-what (or what org-ts-what)
17886 inactive (= (char-after (match-beginning 0)) ?\[)
17887 ts (match-string 0))
17888 (replace-match "")
17889 (when (string-match
17890 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17892 (setq extra (match-string 1 ts))
17893 (if suppress-tmp-delay
17894 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17895 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17896 (setq with-hm t))
17897 (setq time0 (org-parse-time-string ts))
17898 (when (and updown
17899 (eq org-ts-what 'minute)
17900 (not current-prefix-arg))
17901 ;; This looks like s-up and s-down. Change by one rounding step.
17902 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17903 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17904 (setcar (cdr time0) (+ (nth 1 time0)
17905 (if (> n 0) (- rem) (- dm rem))))))
17906 (setq time
17907 (encode-time (or (car time0) 0)
17908 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17909 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17910 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17911 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17912 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17913 (nthcdr 6 time0)))
17914 (when (and (member org-ts-what '(hour minute))
17915 extra
17916 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17917 (setq extra (org-modify-ts-extra
17918 extra
17919 (if (eq org-ts-what 'hour) 2 5)
17920 n dm)))
17921 (when (integerp org-ts-what)
17922 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17923 (if (eq what 'calendar)
17924 (let ((cal-date (org-get-date-from-calendar)))
17925 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17926 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17927 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17928 (setcar time0 (or (car time0) 0))
17929 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17930 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17931 (setq time (apply 'encode-time time0))))
17932 ;; Insert the new time-stamp, and ensure point stays in the same
17933 ;; category as before (i.e. not after the last position in that
17934 ;; category).
17935 (let ((pos (point)))
17936 ;; Stay before inserted string. `save-excursion' is of no use.
17937 (setq org-last-changed-timestamp
17938 (org-insert-time-stamp time with-hm inactive nil nil extra))
17939 (goto-char pos))
17940 (save-match-data
17941 (looking-at org-ts-regexp3)
17942 (goto-char (cond
17943 ;; `day' category ends before `hour' if any, or at
17944 ;; the end of the day name.
17945 ((eq origin-cat 'day)
17946 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17947 ((eq origin-cat 'hour) (min (match-end 7) origin))
17948 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17949 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17950 ;; `year' and `month' have both fixed size: point
17951 ;; couldn't have moved into another part.
17952 (t origin))))
17953 ;; Update clock if on a CLOCK line.
17954 (org-clock-update-time-maybe)
17955 ;; Maybe adjust the closest clock in `org-clock-history'
17956 (when org-clock-adjust-closest
17957 (if (not (and (org-at-clock-log-p)
17958 (< 1 (length (delq nil (mapcar 'marker-position
17959 org-clock-history))))))
17960 (message "No clock to adjust")
17961 (cond ((save-excursion ; fix previous clock?
17962 (re-search-backward org-ts-regexp0 nil t)
17963 (org-looking-back (concat org-clock-string " \\[")))
17964 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17965 ((save-excursion ; fix next clock?
17966 (re-search-backward org-ts-regexp0 nil t)
17967 (looking-at (concat org-ts-regexp0 "\\] =>")))
17968 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17969 (save-window-excursion
17970 ;; Find closest clock to point, adjust the previous/next one in history
17971 (let* ((p (save-excursion (org-back-to-heading t)))
17972 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17973 (clfixnth
17974 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17975 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17976 (if (not clfixpos)
17977 (message "No clock to adjust")
17978 (save-excursion
17979 (org-goto-marker-or-bmk clfixpos)
17980 (org-show-subtree)
17981 (when (re-search-forward clrgx nil t)
17982 (goto-char (match-beginning 1))
17983 (let (org-clock-adjust-closest)
17984 (org-timestamp-change n org-ts-what updown))
17985 (message "Clock adjusted in %s for heading: %s"
17986 (file-name-nondirectory (buffer-file-name))
17987 (org-get-heading t t)))))))))
17988 ;; Try to recenter the calendar window, if any.
17989 (if (and org-calendar-follow-timestamp-change
17990 (get-buffer-window "*Calendar*" t)
17991 (memq org-ts-what '(day month year)))
17992 (org-recenter-calendar (time-to-days time))))))
17994 (defun org-modify-ts-extra (s pos n dm)
17995 "Change the different parts of the lead-time and repeat fields in timestamp."
17996 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17997 ng h m new rem)
17998 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17999 (cond
18000 ((or (org-pos-in-match-range pos 2)
18001 (org-pos-in-match-range pos 3))
18002 (setq m (string-to-number (match-string 3 s))
18003 h (string-to-number (match-string 2 s)))
18004 (if (org-pos-in-match-range pos 2)
18005 (setq h (+ h n))
18006 (setq n (* dm (org-no-warnings (signum n))))
18007 (when (not (= 0 (setq rem (% m dm))))
18008 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18009 (setq m (+ m n)))
18010 (if (< m 0) (setq m (+ m 60) h (1- h)))
18011 (if (> m 59) (setq m (- m 60) h (1+ h)))
18012 (setq h (min 24 (max 0 h)))
18013 (setq ng 1 new (format "-%02d:%02d" h m)))
18014 ((org-pos-in-match-range pos 6)
18015 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18016 ((org-pos-in-match-range pos 5)
18017 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18019 ((org-pos-in-match-range pos 9)
18020 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18021 ((org-pos-in-match-range pos 8)
18022 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18024 (when ng
18025 (setq s (concat
18026 (substring s 0 (match-beginning ng))
18028 (substring s (match-end ng))))))
18031 (defun org-recenter-calendar (date)
18032 "If the calendar is visible, recenter it to DATE."
18033 (let ((cwin (get-buffer-window "*Calendar*" t)))
18034 (when cwin
18035 (let ((calendar-move-hook nil))
18036 (with-selected-window cwin
18037 (calendar-goto-date (if (listp date) date
18038 (calendar-gregorian-from-absolute date))))))))
18040 (defun org-goto-calendar (&optional arg)
18041 "Go to the Emacs calendar at the current date.
18042 If there is a time stamp in the current line, go to that date.
18043 A prefix ARG can be used to force the current date."
18044 (interactive "P")
18045 (let ((tsr org-ts-regexp) diff
18046 (calendar-move-hook nil)
18047 (calendar-view-holidays-initially-flag nil)
18048 (calendar-view-diary-initially-flag nil))
18049 (if (or (org-at-timestamp-p)
18050 (save-excursion
18051 (beginning-of-line 1)
18052 (looking-at (concat ".*" tsr))))
18053 (let ((d1 (time-to-days (current-time)))
18054 (d2 (time-to-days
18055 (org-time-string-to-time (match-string 1)))))
18056 (setq diff (- d2 d1))))
18057 (calendar)
18058 (calendar-goto-today)
18059 (if (and diff (not arg)) (calendar-forward-day diff))))
18061 (defun org-get-date-from-calendar ()
18062 "Return a list (month day year) of date at point in calendar."
18063 (with-current-buffer "*Calendar*"
18064 (save-match-data
18065 (calendar-cursor-to-date))))
18067 (defun org-date-from-calendar ()
18068 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18069 If there is already a time stamp at the cursor position, update it."
18070 (interactive)
18071 (if (org-at-timestamp-p t)
18072 (org-timestamp-change 0 'calendar)
18073 (let ((cal-date (org-get-date-from-calendar)))
18074 (org-insert-time-stamp
18075 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18077 (defcustom org-effort-durations
18078 `(("min" . 1)
18079 ("h" . 60)
18080 ("d" . ,(* 60 8))
18081 ("w" . ,(* 60 8 5))
18082 ("m" . ,(* 60 8 5 4))
18083 ("y" . ,(* 60 8 5 40)))
18084 "Conversion factor to minutes for an effort modifier.
18086 Each entry has the form (MODIFIER . MINUTES).
18088 In an effort string, a number followed by MODIFIER is multiplied
18089 by the specified number of MINUTES to obtain an effort in
18090 minutes.
18092 For example, if the value of this variable is ((\"hours\" . 60)), then an
18093 effort string \"2hours\" is equivalent to 120 minutes."
18094 :group 'org-agenda
18095 :version "25.1"
18096 :package-version '(Org . "8.3")
18097 :type '(alist :key-type (string :tag "Modifier")
18098 :value-type (number :tag "Minutes")))
18100 (defun org-minutes-to-clocksum-string (m)
18101 "Format number of minutes as a clocksum string.
18102 The format is determined by `org-time-clocksum-format',
18103 `org-time-clocksum-use-fractional' and
18104 `org-time-clocksum-fractional-format' and
18105 `org-time-clocksum-use-effort-durations'."
18106 (let ((clocksum "")
18107 (m (round m)) ; Don't allow fractions of minutes
18108 h d w mo y fmt n)
18109 (setq h (if org-time-clocksum-use-effort-durations
18110 (cdr (assoc "h" org-effort-durations)) 60)
18111 d (if org-time-clocksum-use-effort-durations
18112 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18113 w (if org-time-clocksum-use-effort-durations
18114 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18115 mo (if org-time-clocksum-use-effort-durations
18116 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18117 y (if org-time-clocksum-use-effort-durations
18118 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18119 ;; fractional format
18120 (if org-time-clocksum-use-fractional
18121 (cond
18122 ;; single format string
18123 ((stringp org-time-clocksum-fractional-format)
18124 (format org-time-clocksum-fractional-format (/ m (float h))))
18125 ;; choice of fractional formats for different time units
18126 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18127 (> (/ (truncate m) (* y d h)) 0))
18128 (format fmt (/ m (* y d (float h)))))
18129 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18130 (> (/ (truncate m) (* mo d h)) 0))
18131 (format fmt (/ m (* mo d (float h)))))
18132 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18133 (> (/ (truncate m) (* w d h)) 0))
18134 (format fmt (/ m (* w d (float h)))))
18135 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18136 (> (/ (truncate m) (* d h)) 0))
18137 (format fmt (/ m (* d (float h)))))
18138 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18139 (> (/ (truncate m) h) 0))
18140 (format fmt (/ m (float h))))
18141 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18142 (format fmt m))
18143 ;; fall back to smallest time unit with a format
18144 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18145 (format fmt (/ m (float h))))
18146 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18147 (format fmt (/ m (* d (float h)))))
18148 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18149 (format fmt (/ m (* w d (float h)))))
18150 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18151 (format fmt (/ m (* mo d (float h)))))
18152 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18153 (format fmt (/ m (* y d (float h))))))
18154 ;; standard (non-fractional) format, with single format string
18155 (if (stringp org-time-clocksum-format)
18156 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18157 ;; separate formats components
18158 (and (setq fmt (plist-get org-time-clocksum-format :years))
18159 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18160 (plist-get org-time-clocksum-format :require-years))
18161 (setq clocksum (concat clocksum (format fmt n))
18162 m (- m (* n y d h))))
18163 (and (setq fmt (plist-get org-time-clocksum-format :months))
18164 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18165 (plist-get org-time-clocksum-format :require-months))
18166 (setq clocksum (concat clocksum (format fmt n))
18167 m (- m (* n mo d h))))
18168 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18169 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18170 (plist-get org-time-clocksum-format :require-weeks))
18171 (setq clocksum (concat clocksum (format fmt n))
18172 m (- m (* n w d h))))
18173 (and (setq fmt (plist-get org-time-clocksum-format :days))
18174 (or (> (setq n (/ (truncate m) (* d h))) 0)
18175 (plist-get org-time-clocksum-format :require-days))
18176 (setq clocksum (concat clocksum (format fmt n))
18177 m (- m (* n d h))))
18178 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18179 (or (> (setq n (/ (truncate m) h)) 0)
18180 (plist-get org-time-clocksum-format :require-hours))
18181 (setq clocksum (concat clocksum (format fmt n))
18182 m (- m (* n h))))
18183 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18184 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18185 (setq clocksum (concat clocksum (format fmt m))))
18186 ;; return formatted time duration
18187 clocksum))))
18189 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18190 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18191 "Org mode version 8.0")
18193 (defun org-hours-to-clocksum-string (n)
18194 (org-minutes-to-clocksum-string (* n 60)))
18196 (defun org-hh:mm-string-to-minutes (s)
18197 "Convert a string H:MM to a number of minutes.
18198 If the string is just a number, interpret it as minutes.
18199 In fact, the first hh:mm or number in the string will be taken,
18200 there can be extra stuff in the string.
18201 If no number is found, the return value is 0."
18202 (cond
18203 ((integerp s) s)
18204 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18205 (+ (* (string-to-number (match-string 1 s)) 60)
18206 (string-to-number (match-string 2 s))))
18207 ((string-match "\\([0-9]+\\)" s)
18208 (string-to-number (match-string 1 s)))
18209 (t 0)))
18211 (defcustom org-image-actual-width t
18212 "Should we use the actual width of images when inlining them?
18214 When set to `t', always use the image width.
18216 When set to a number, use imagemagick (when available) to set
18217 the image's width to this value.
18219 When set to a number in a list, try to get the width from any
18220 #+ATTR.* keyword if it matches a width specification like
18222 #+ATTR_HTML: :width 300px
18224 and fall back on that number if none is found.
18226 When set to nil, try to get the width from an #+ATTR.* keyword
18227 and fall back on the original width if none is found.
18229 This requires Emacs >= 24.1, build with imagemagick support."
18230 :group 'org-appearance
18231 :version "24.4"
18232 :package-version '(Org . "8.0")
18233 :type '(choice
18234 (const :tag "Use the image width" t)
18235 (integer :tag "Use a number of pixels")
18236 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18237 (const :tag "Use #+ATTR* or don't resize" nil)))
18239 (defcustom org-agenda-inhibit-startup nil
18240 "Inhibit startup when preparing agenda buffers.
18241 When this variable is `t', the initialization of the Org agenda
18242 buffers is inhibited: e.g. the visibility state is not set, the
18243 tables are not re-aligned, etc."
18244 :type 'boolean
18245 :version "24.3"
18246 :group 'org-agenda)
18248 (define-obsolete-variable-alias
18249 'org-agenda-ignore-drawer-properties
18250 'org-agenda-ignore-properties "25.1")
18252 (defcustom org-agenda-ignore-properties nil
18253 "Avoid updating text properties when building the agenda.
18254 Properties are used to prepare buffers for effort estimates,
18255 appointments, statistics and subtree-local categories.
18256 If you don't use these in the agenda, you can add them to this
18257 list and agenda building will be a bit faster.
18258 The value is a list, with zero or more of the symbols `effort', `appt',
18259 `stats' or `category'."
18260 :type '(set :greedy t
18261 (const effort)
18262 (const appt)
18263 (const stats)
18264 (const category))
18265 :version "25.1"
18266 :package-version '(Org . "8.3")
18267 :group 'org-agenda)
18269 (defun org-duration-string-to-minutes (s &optional output-to-string)
18270 "Convert a duration string S to minutes.
18272 A bare number is interpreted as minutes, modifiers can be set by
18273 customizing `org-effort-durations' (which see).
18275 Entries containing a colon are interpreted as H:MM by
18276 `org-hh:mm-string-to-minutes'."
18277 (let ((result 0)
18278 (re (concat "\\([0-9.]+\\) *\\("
18279 (regexp-opt (mapcar 'car org-effort-durations))
18280 "\\)")))
18281 (while (string-match re s)
18282 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18283 (string-to-number (match-string 1 s))))
18284 (setq s (replace-match "" nil t s)))
18285 (setq result (floor result))
18286 (incf result (org-hh:mm-string-to-minutes s))
18287 (if output-to-string (number-to-string result) result)))
18289 ;;;; Files
18291 (defun org-save-all-org-buffers ()
18292 "Save all Org-mode buffers without user confirmation."
18293 (interactive)
18294 (message "Saving all Org-mode buffers...")
18295 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18296 (when (featurep 'org-id) (org-id-locations-save))
18297 (message "Saving all Org-mode buffers... done"))
18299 (defun org-revert-all-org-buffers ()
18300 "Revert all Org-mode buffers.
18301 Prompt for confirmation when there are unsaved changes.
18302 Be sure you know what you are doing before letting this function
18303 overwrite your changes.
18305 This function is useful in a setup where one tracks org files
18306 with a version control system, to revert on one machine after pulling
18307 changes from another. I believe the procedure must be like this:
18309 1. M-x org-save-all-org-buffers
18310 2. Pull changes from the other machine, resolve conflicts
18311 3. M-x org-revert-all-org-buffers"
18312 (interactive)
18313 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18314 (user-error "Abort"))
18315 (save-excursion
18316 (save-window-excursion
18317 (mapc
18318 (lambda (b)
18319 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18320 (with-current-buffer b buffer-file-name))
18321 (org-pop-to-buffer-same-window b)
18322 (revert-buffer t 'no-confirm)))
18323 (buffer-list))
18324 (when (and (featurep 'org-id) org-id-track-globally)
18325 (org-id-locations-load)))))
18327 ;;;; Agenda files
18329 ;;;###autoload
18330 (defun org-switchb (&optional arg)
18331 "Switch between Org buffers.
18332 With one prefix argument, restrict available buffers to files.
18333 With two prefix arguments, restrict available buffers to agenda files.
18335 Defaults to `iswitchb' for buffer name completion.
18336 Set `org-completion-use-ido' to make it use ido instead."
18337 (interactive "P")
18338 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18339 ((equal arg '(16)) (org-buffer-list 'agenda))
18340 (t (org-buffer-list))))
18341 (org-completion-use-iswitchb org-completion-use-iswitchb)
18342 (org-completion-use-ido org-completion-use-ido))
18343 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18344 (setq org-completion-use-iswitchb t))
18345 (org-pop-to-buffer-same-window
18346 (org-icompleting-read "Org buffer: "
18347 (mapcar 'list (mapcar 'buffer-name blist))
18348 nil t))))
18350 ;;; Define some older names previously used for this functionality
18351 ;;;###autoload
18352 (defalias 'org-ido-switchb 'org-switchb)
18353 ;;;###autoload
18354 (defalias 'org-iswitchb 'org-switchb)
18356 (defun org-buffer-list (&optional predicate exclude-tmp)
18357 "Return a list of Org buffers.
18358 PREDICATE can be `export', `files' or `agenda'.
18360 export restrict the list to Export buffers.
18361 files restrict the list to buffers visiting Org files.
18362 agenda restrict the list to buffers visiting agenda files.
18364 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18365 (let* ((bfn nil)
18366 (agenda-files (and (eq predicate 'agenda)
18367 (mapcar 'file-truename (org-agenda-files t))))
18368 (filter
18369 (cond
18370 ((eq predicate 'files)
18371 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18372 ((eq predicate 'export)
18373 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18374 ((eq predicate 'agenda)
18375 (lambda (b)
18376 (with-current-buffer b
18377 (and (derived-mode-p 'org-mode)
18378 (setq bfn (buffer-file-name b))
18379 (member (file-truename bfn) agenda-files)))))
18380 (t (lambda (b) (with-current-buffer b
18381 (or (derived-mode-p 'org-mode)
18382 (string-match "\*Org .*Export"
18383 (buffer-name b)))))))))
18384 (delq nil
18385 (mapcar
18386 (lambda(b)
18387 (if (and (funcall filter b)
18388 (or (not exclude-tmp)
18389 (not (string-match "tmp" (buffer-name b)))))
18391 nil))
18392 (buffer-list)))))
18394 (defun org-agenda-files (&optional unrestricted archives)
18395 "Get the list of agenda files.
18396 Optional UNRESTRICTED means return the full list even if a restriction
18397 is currently in place.
18398 When ARCHIVES is t, include all archive files that are really being
18399 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18400 `org-agenda-archives-mode' is t."
18401 (let ((files
18402 (cond
18403 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18404 ((stringp org-agenda-files) (org-read-agenda-file-list))
18405 ((listp org-agenda-files) org-agenda-files)
18406 (t (error "Invalid value of `org-agenda-files'")))))
18407 (setq files (apply 'append
18408 (mapcar (lambda (f)
18409 (if (file-directory-p f)
18410 (directory-files
18411 f t org-agenda-file-regexp)
18412 (list f)))
18413 files)))
18414 (when org-agenda-skip-unavailable-files
18415 (setq files (delq nil
18416 (mapcar (function
18417 (lambda (file)
18418 (and (file-readable-p file) file)))
18419 files))))
18420 (when (or (eq archives t)
18421 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18422 (setq files (org-add-archive-files files)))
18423 files))
18425 (defun org-agenda-file-p (&optional file)
18426 "Return non-nil, if FILE is an agenda file.
18427 If FILE is omitted, use the file associated with the current
18428 buffer."
18429 (let ((fname (or file (buffer-file-name))))
18430 (and fname
18431 (member (file-truename fname)
18432 (mapcar #'file-truename (org-agenda-files t))))))
18434 (defun org-edit-agenda-file-list ()
18435 "Edit the list of agenda files.
18436 Depending on setup, this either uses customize to edit the variable
18437 `org-agenda-files', or it visits the file that is holding the list. In the
18438 latter case, the buffer is set up in a way that saving it automatically kills
18439 the buffer and restores the previous window configuration."
18440 (interactive)
18441 (if (stringp org-agenda-files)
18442 (let ((cw (current-window-configuration)))
18443 (find-file org-agenda-files)
18444 (org-set-local 'org-window-configuration cw)
18445 (org-add-hook 'after-save-hook
18446 (lambda ()
18447 (set-window-configuration
18448 (prog1 org-window-configuration
18449 (kill-buffer (current-buffer))))
18450 (org-install-agenda-files-menu)
18451 (message "New agenda file list installed"))
18452 nil 'local)
18453 (message "%s" (substitute-command-keys
18454 "Edit list and finish with \\[save-buffer]")))
18455 (customize-variable 'org-agenda-files)))
18457 (defun org-store-new-agenda-file-list (list)
18458 "Set new value for the agenda file list and save it correctly."
18459 (if (stringp org-agenda-files)
18460 (let ((fe (org-read-agenda-file-list t)) b u)
18461 (while (setq b (find-buffer-visiting org-agenda-files))
18462 (kill-buffer b))
18463 (with-temp-file org-agenda-files
18464 (insert
18465 (mapconcat
18466 (lambda (f) ;; Keep un-expanded entries.
18467 (if (setq u (assoc f fe))
18468 (cdr u)
18470 list "\n")
18471 "\n")))
18472 (let ((org-mode-hook nil) (org-inhibit-startup t)
18473 (org-insert-mode-line-in-empty-file nil))
18474 (setq org-agenda-files list)
18475 (customize-save-variable 'org-agenda-files org-agenda-files))))
18477 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18478 "Read the list of agenda files from a file.
18479 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18480 filenames, used by `org-store-new-agenda-file-list' to write back
18481 un-expanded file names."
18482 (when (file-directory-p org-agenda-files)
18483 (error "`org-agenda-files' cannot be a single directory"))
18484 (when (stringp org-agenda-files)
18485 (with-temp-buffer
18486 (insert-file-contents org-agenda-files)
18487 (mapcar
18488 (lambda (f)
18489 (let ((e (expand-file-name (substitute-in-file-name f)
18490 org-directory)))
18491 (if pair-with-expansion
18492 (cons e f)
18493 e)))
18494 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18496 ;;;###autoload
18497 (defun org-cycle-agenda-files ()
18498 "Cycle through the files in `org-agenda-files'.
18499 If the current buffer visits an agenda file, find the next one in the list.
18500 If the current buffer does not, find the first agenda file."
18501 (interactive)
18502 (let* ((fs (org-agenda-files t))
18503 (files (append fs (list (car fs))))
18504 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18505 file)
18506 (unless files (user-error "No agenda files"))
18507 (catch 'exit
18508 (while (setq file (pop files))
18509 (if (equal (file-truename file) tcf)
18510 (when (car files)
18511 (find-file (car files))
18512 (throw 'exit t))))
18513 (find-file (car fs)))
18514 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18516 (defun org-agenda-file-to-front (&optional to-end)
18517 "Move/add the current file to the top of the agenda file list.
18518 If the file is not present in the list, it is added to the front. If it is
18519 present, it is moved there. With optional argument TO-END, add/move to the
18520 end of the list."
18521 (interactive "P")
18522 (let ((org-agenda-skip-unavailable-files nil)
18523 (file-alist (mapcar (lambda (x)
18524 (cons (file-truename x) x))
18525 (org-agenda-files t)))
18526 (ctf (file-truename
18527 (or buffer-file-name
18528 (user-error "Please save the current buffer to a file"))))
18529 x had)
18530 (setq x (assoc ctf file-alist) had x)
18532 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18533 (if to-end
18534 (setq file-alist (append (delq x file-alist) (list x)))
18535 (setq file-alist (cons x (delq x file-alist))))
18536 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18537 (org-install-agenda-files-menu)
18538 (message "File %s to %s of agenda file list"
18539 (if had "moved" "added") (if to-end "end" "front"))))
18541 (defun org-remove-file (&optional file)
18542 "Remove current file from the list of files in variable `org-agenda-files'.
18543 These are the files which are being checked for agenda entries.
18544 Optional argument FILE means use this file instead of the current."
18545 (interactive)
18546 (let* ((org-agenda-skip-unavailable-files nil)
18547 (file (or file buffer-file-name
18548 (user-error "Current buffer does not visit a file")))
18549 (true-file (file-truename file))
18550 (afile (abbreviate-file-name file))
18551 (files (delq nil (mapcar
18552 (lambda (x)
18553 (if (equal true-file
18554 (file-truename x))
18555 nil x))
18556 (org-agenda-files t)))))
18557 (if (not (= (length files) (length (org-agenda-files t))))
18558 (progn
18559 (org-store-new-agenda-file-list files)
18560 (org-install-agenda-files-menu)
18561 (message "Removed from Org Agenda list: %s" afile))
18562 (message "File was not in list: %s (not removed)" afile))))
18564 (defun org-file-menu-entry (file)
18565 (vector file (list 'find-file file) t))
18567 (defun org-check-agenda-file (file)
18568 "Make sure FILE exists. If not, ask user what to do."
18569 (when (not (file-exists-p file))
18570 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18571 (abbreviate-file-name file))
18572 (let ((r (downcase (read-char-exclusive))))
18573 (cond
18574 ((equal r ?r)
18575 (org-remove-file file)
18576 (throw 'nextfile t))
18577 (t (user-error "Abort"))))))
18579 (defun org-get-agenda-file-buffer (file)
18580 "Get an agenda buffer visiting FILE.
18581 If the buffer needs to be created, add it to the list of buffers
18582 which might be released later."
18583 (let ((buf (org-find-base-buffer-visiting file)))
18584 (if buf
18585 buf ; just return it
18586 ;; Make a new buffer and remember it
18587 (setq buf (find-file-noselect file))
18588 (if buf (push buf org-agenda-new-buffers))
18589 buf)))
18591 (defun org-release-buffers (blist)
18592 "Release all buffers in list, asking the user for confirmation when needed.
18593 When a buffer is unmodified, it is just killed. When modified, it is saved
18594 \(if the user agrees) and then killed."
18595 (let (buf file)
18596 (while (setq buf (pop blist))
18597 (setq file (buffer-file-name buf))
18598 (when (and (buffer-modified-p buf)
18599 file
18600 (y-or-n-p (format "Save file %s? " file)))
18601 (with-current-buffer buf (save-buffer)))
18602 (kill-buffer buf))))
18604 (defun org-agenda-prepare-buffers (files)
18605 "Create buffers for all agenda files, protect archived trees and comments."
18606 (interactive)
18607 (let ((pa '(:org-archived t))
18608 (pc '(:org-comment t))
18609 (pall '(:org-archived t :org-comment t))
18610 (inhibit-read-only t)
18611 (org-inhibit-startup org-agenda-inhibit-startup)
18612 (rea (concat ":" org-archive-tag ":"))
18613 file re pos)
18614 (setq org-tag-alist-for-agenda nil
18615 org-tag-groups-alist-for-agenda nil)
18616 (save-excursion
18617 (save-restriction
18618 (while (setq file (pop files))
18619 (catch 'nextfile
18620 (if (bufferp file)
18621 (set-buffer file)
18622 (org-check-agenda-file file)
18623 (set-buffer (org-get-agenda-file-buffer file)))
18624 (widen)
18625 (org-set-regexps-and-options 'tags-only)
18626 (setq pos (point))
18627 (or (memq 'category org-agenda-ignore-properties)
18628 (org-refresh-category-properties))
18629 (or (memq 'stats org-agenda-ignore-properties)
18630 (org-refresh-stats-properties))
18631 (or (memq 'effort org-agenda-ignore-properties)
18632 (org-refresh-effort-properties))
18633 (or (memq 'appt org-agenda-ignore-properties)
18634 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18635 (setq org-todo-keywords-for-agenda
18636 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18637 (setq org-done-keywords-for-agenda
18638 (append org-done-keywords-for-agenda org-done-keywords))
18639 (setq org-todo-keyword-alist-for-agenda
18640 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18641 (setq org-tag-alist-for-agenda
18642 (org-uniquify
18643 (append org-tag-alist-for-agenda
18644 org-tag-alist
18645 org-tag-persistent-alist)))
18646 (if org-group-tags
18647 (setq org-tag-groups-alist-for-agenda
18648 (org-uniquify-alist
18649 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18650 (org-with-silent-modifications
18651 (save-excursion
18652 (remove-text-properties (point-min) (point-max) pall)
18653 (when org-agenda-skip-archived-trees
18654 (goto-char (point-min))
18655 (while (re-search-forward rea nil t)
18656 (if (org-at-heading-p t)
18657 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18658 (goto-char (point-min))
18659 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18660 (while (re-search-forward re nil t)
18661 (when (save-match-data (org-in-commented-heading-p t))
18662 (add-text-properties
18663 (match-beginning 0) (org-end-of-subtree t) pc)))))
18664 (goto-char pos)))))
18665 (setq org-todo-keywords-for-agenda
18666 (org-uniquify org-todo-keywords-for-agenda))
18667 (setq org-todo-keyword-alist-for-agenda
18668 (org-uniquify org-todo-keyword-alist-for-agenda))))
18671 ;;;; CDLaTeX minor mode
18673 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18674 "Keymap for the minor `org-cdlatex-mode'.")
18676 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18677 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18678 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18679 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18680 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18682 (defvar org-cdlatex-texmathp-advice-is-done nil
18683 "Flag remembering if we have applied the advice to texmathp already.")
18685 (define-minor-mode org-cdlatex-mode
18686 "Toggle the minor `org-cdlatex-mode'.
18687 This mode supports entering LaTeX environment and math in LaTeX fragments
18688 in Org-mode.
18689 \\{org-cdlatex-mode-map}"
18690 nil " OCDL" nil
18691 (when org-cdlatex-mode
18692 (require 'cdlatex)
18693 (run-hooks 'cdlatex-mode-hook)
18694 (cdlatex-compute-tables))
18695 (unless org-cdlatex-texmathp-advice-is-done
18696 (setq org-cdlatex-texmathp-advice-is-done t)
18697 (defadvice texmathp (around org-math-always-on activate)
18698 "Always return t in org-mode buffers.
18699 This is because we want to insert math symbols without dollars even outside
18700 the LaTeX math segments. If Orgmode thinks that point is actually inside
18701 an embedded LaTeX fragment, let texmathp do its job.
18702 \\[org-cdlatex-mode-map]"
18703 (interactive)
18704 (let (p)
18705 (cond
18706 ((not (derived-mode-p 'org-mode)) ad-do-it)
18707 ((eq this-command 'cdlatex-math-symbol)
18708 (setq ad-return-value t
18709 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18711 (let ((p (org-inside-LaTeX-fragment-p)))
18712 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18713 (setq ad-return-value t
18714 texmathp-why '("Org-mode embedded math" . 0))
18715 (if p ad-do-it)))))))))
18717 (defun turn-on-org-cdlatex ()
18718 "Unconditionally turn on `org-cdlatex-mode'."
18719 (org-cdlatex-mode 1))
18721 (defun org-try-cdlatex-tab ()
18722 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18723 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18724 - inside a LaTeX fragment, or
18725 - after the first word in a line, where an abbreviation expansion could
18726 insert a LaTeX environment."
18727 (when org-cdlatex-mode
18728 (cond
18729 ;; Before any word on the line: No expansion possible.
18730 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18731 ;; Just after first word on the line: Expand it. Make sure it
18732 ;; cannot happen on headlines, though.
18733 ((save-excursion
18734 (skip-chars-backward "a-zA-Z0-9*")
18735 (skip-chars-backward " \t")
18736 (and (bolp) (not (org-at-heading-p))))
18737 (cdlatex-tab) t)
18738 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18740 (defun org-cdlatex-underscore-caret (&optional arg)
18741 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18742 Revert to the normal definition outside of these fragments."
18743 (interactive "P")
18744 (if (org-inside-LaTeX-fragment-p)
18745 (call-interactively 'cdlatex-sub-superscript)
18746 (let (org-cdlatex-mode)
18747 (call-interactively (key-binding (vector last-input-event))))))
18749 (defun org-cdlatex-math-modify (&optional arg)
18750 "Execute `cdlatex-math-modify' in LaTeX fragments.
18751 Revert to the normal definition outside of these fragments."
18752 (interactive "P")
18753 (if (org-inside-LaTeX-fragment-p)
18754 (call-interactively 'cdlatex-math-modify)
18755 (let (org-cdlatex-mode)
18756 (call-interactively (key-binding (vector last-input-event))))))
18758 (defun org-cdlatex-environment-indent (&optional environment item)
18759 "Execute `cdlatex-environment' and indent the inserted environment.
18761 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18763 The inserted environment is indented to current indentation
18764 unless point is at the beginning of the line, in which the
18765 environment remains unintended."
18766 (interactive)
18767 ;; cdlatex-environment always return nil. Therefore, capture output
18768 ;; first and determine if an environment was selected.
18769 (let* ((beg (point-marker))
18770 (end (copy-marker (point) t))
18771 (inserted (progn
18772 (ignore-errors (cdlatex-environment environment item))
18773 (< beg end)))
18774 ;; Figure out how many lines to move forward after the
18775 ;; environment has been inserted.
18776 (lines (when inserted
18777 (save-excursion
18778 (- (loop while (< beg (point))
18779 with x = 0
18780 do (forward-line -1)
18781 (incf x)
18782 finally return x)
18783 (if (progn (goto-char beg)
18784 (and (progn (skip-chars-forward " \t") (eolp))
18785 (progn (skip-chars-backward " \t") (bolp))))
18786 1 0)))))
18787 (env (org-trim (delete-and-extract-region beg end))))
18788 (when inserted
18789 ;; Get indentation of next line unless at column 0.
18790 (let ((ind (if (bolp) 0
18791 (save-excursion
18792 (org-return-indent)
18793 (prog1 (org-get-indentation)
18794 (when (progn (skip-chars-forward " \t") (eolp))
18795 (delete-region beg (point)))))))
18796 (bol (progn (skip-chars-backward " \t") (bolp))))
18797 ;; Insert a newline before environment unless at column zero
18798 ;; to "escape" the current line. Insert a newline if
18799 ;; something is one the same line as \end{ENVIRONMENT}.
18800 (insert
18801 (concat (unless bol "\n") env
18802 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18803 (unless (zerop ind)
18804 (save-excursion
18805 (goto-char beg)
18806 (while (< (point) end)
18807 (unless (eolp) (org-indent-line-to ind))
18808 (forward-line))))
18809 (goto-char beg)
18810 (forward-line lines)
18811 (org-indent-line-to ind)))
18812 (set-marker beg nil)
18813 (set-marker end nil)))
18816 ;;;; LaTeX fragments
18818 (defun org-inside-LaTeX-fragment-p ()
18819 "Test if point is inside a LaTeX fragment.
18820 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18821 sequence appearing also before point.
18822 Even though the matchers for math are configurable, this function assumes
18823 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18824 delimiters are skipped when they have been removed by customization.
18825 The return value is nil, or a cons cell with the delimiter and the
18826 position of this delimiter.
18828 This function does a reasonably good job, but can locally be fooled by
18829 for example currency specifications. For example it will assume being in
18830 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18831 fragments that are properly closed, but during editing, we have to live
18832 with the uncertainty caused by missing closing delimiters. This function
18833 looks only before point, not after."
18834 (catch 'exit
18835 (let ((pos (point))
18836 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18837 (lim (progn
18838 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18839 (point)))
18840 dd-on str (start 0) m re)
18841 (goto-char pos)
18842 (when dodollar
18843 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18844 re (nth 1 (assoc "$" org-latex-regexps)))
18845 (while (string-match re str start)
18846 (cond
18847 ((= (match-end 0) (length str))
18848 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18849 ((= (match-end 0) (- (length str) 5))
18850 (throw 'exit nil))
18851 (t (setq start (match-end 0))))))
18852 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18853 (goto-char pos)
18854 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18855 (and (match-beginning 2) (throw 'exit nil))
18856 ;; count $$
18857 (while (re-search-backward "\\$\\$" lim t)
18858 (setq dd-on (not dd-on)))
18859 (goto-char pos)
18860 (if dd-on (cons "$$" m))))))
18862 (defun org-inside-latex-macro-p ()
18863 "Is point inside a LaTeX macro or its arguments?"
18864 (save-match-data
18865 (org-in-regexp
18866 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18868 (defvar org-latex-fragment-image-overlays nil
18869 "List of overlays carrying the images of latex fragments.")
18870 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18872 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18873 "Remove all overlays with LaTeX fragment images in current buffer.
18874 When optional arguments BEG and END are non-nil, remove all
18875 overlays between them instead. Return t when some overlays were
18876 removed, nil otherwise."
18877 (let (removedp)
18878 (setq org-latex-fragment-image-overlays
18879 (let ((beg (or beg (point-min)))
18880 (end (or end (point-max))))
18881 (org-remove-if
18882 (lambda (o)
18883 (and (>= (overlay-start o) beg)
18884 (<= (overlay-end o) end)
18885 (progn (delete-overlay o)
18886 (or removedp (setq removedp t)))))
18887 org-latex-fragment-image-overlays)))
18888 removedp))
18890 (define-obsolete-function-alias
18891 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18892 (defun org-toggle-latex-fragment (&optional arg)
18893 "Preview the LaTeX fragment at point, or all locally or globally.
18895 If the cursor is on a LaTeX fragment, create the image and overlay
18896 it over the source code, if there is none. Remove it otherwise.
18897 If there is no fragment at point, display all fragments in the
18898 current section.
18900 With prefix ARG, preview or clear image for all fragments in the
18901 current subtree or in the whole buffer when used before the first
18902 headline. With a double prefix ARG \\[universal-argument] \
18903 \\[universal-argument] preview or clear images
18904 for all fragments in the buffer."
18905 (interactive "P")
18906 (unless (buffer-file-name (buffer-base-buffer))
18907 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18908 (when (display-graphic-p)
18909 (catch 'exit
18910 (save-excursion
18911 (let ((window-start (window-start)) msg)
18912 (save-restriction
18913 (cond
18914 ((or (equal arg '(16))
18915 (and (equal arg '(4))
18916 (org-with-limited-levels (org-before-first-heading-p))))
18917 (if (org-remove-latex-fragment-image-overlays)
18918 (progn (message "LaTeX fragments images removed from buffer")
18919 (throw 'exit nil))
18920 (setq msg "Creating images for buffer...")))
18921 ((equal arg '(4))
18922 (org-with-limited-levels (org-back-to-heading t))
18923 (let ((beg (point))
18924 (end (progn (org-end-of-subtree t) (point))))
18925 (if (org-remove-latex-fragment-image-overlays beg end)
18926 (progn
18927 (message "LaTeX fragment images removed from subtree")
18928 (throw 'exit nil))
18929 (setq msg "Creating images for subtree...")
18930 (narrow-to-region beg end))))
18931 ((let ((datum (org-element-context)))
18932 (when (memq (org-element-type datum)
18933 '(latex-environment latex-fragment))
18934 (let* ((beg (org-element-property :begin datum))
18935 (end (org-element-property :end datum)))
18936 (if (org-remove-latex-fragment-image-overlays beg end)
18937 (progn (message "LaTeX fragment image removed")
18938 (throw 'exit nil))
18939 (narrow-to-region beg end)
18940 (setq msg "Creating image..."))))))
18942 (org-with-limited-levels
18943 (let ((beg (if (org-at-heading-p) (line-beginning-position)
18944 (outline-previous-heading)
18945 (point)))
18946 (end (progn (outline-next-heading) (point))))
18947 (if (org-remove-latex-fragment-image-overlays beg end)
18948 (progn
18949 (message "LaTeX fragment images removed from section")
18950 (throw 'exit nil))
18951 (setq msg "Creating images for section...")
18952 (narrow-to-region beg end))))))
18953 (let ((file (buffer-file-name (buffer-base-buffer))))
18954 (org-format-latex
18955 (concat org-latex-preview-ltxpng-directory
18956 (file-name-sans-extension (file-name-nondirectory file)))
18957 ;; Emacs cannot overlay images from remote hosts.
18958 ;; Create it in `temporary-file-directory' instead.
18959 (if (file-remote-p file) temporary-file-directory
18960 default-directory)
18961 'overlays msg 'forbuffer
18962 org-latex-create-formula-image-program)))
18963 ;; Work around a bug that doesn't restore window's start
18964 ;; when widening back the buffer.
18965 (set-window-start nil window-start)
18966 (message (concat msg "done")))))))
18968 (defun org-format-latex
18969 (prefix &optional dir overlays msg forbuffer processing-type)
18970 "Replace LaTeX fragments with links to an image, and produce images.
18972 When optional argument OVERLAYS is non-nil, display the image on
18973 top of the fragment instead of replacing it.
18975 PROCESSING-TYPE is the conversion method to use, as a symbol.
18977 Some of the options can be changed using the variable
18978 `org-format-latex-options', which see."
18979 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18980 (unless (eq processing-type 'verbatim)
18981 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18982 (cnt 0)
18983 checkdir-flag)
18984 (goto-char (point-min))
18985 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
18986 (when (and overlays (memq processing-type '(dvipng imagemagick)))
18987 (overlay-recenter (point-max)))
18988 (while (re-search-forward math-regexp nil t)
18989 (unless (and overlays
18990 (eq (get-char-property (point) 'org-overlay-type)
18991 'org-latex-overlay))
18992 (let* ((context (org-element-context))
18993 (type (org-element-type context)))
18994 (when (memq type '(latex-environment latex-fragment))
18995 (let ((block-type (eq type 'latex-environment))
18996 (value (org-element-property :value context))
18997 (beg (org-element-property :begin context))
18998 (end (save-excursion
18999 (goto-char (org-element-property :end context))
19000 (skip-chars-backward " \r\t\n")
19001 (point))))
19002 (case processing-type
19003 (mathjax
19004 ;; Prepare for MathJax processing.
19005 (if (eq (char-after beg) ?$)
19006 (save-excursion
19007 (delete-region beg end)
19008 (insert "\\(" (substring value 1 -1) "\\)"))
19009 (goto-char end)))
19010 ((dvipng imagemagick)
19011 ;; Process to an image.
19012 (incf cnt)
19013 (goto-char beg)
19014 (let* ((face (face-at-point))
19015 ;; Get the colors from the face at point.
19017 (let ((color (plist-get org-format-latex-options
19018 :foreground)))
19019 (if (and forbuffer (eq color 'auto))
19020 (face-attribute face :foreground nil 'default)
19021 color)))
19023 (let ((color (plist-get org-format-latex-options
19024 :background)))
19025 (if (and forbuffer (eq color 'auto))
19026 (face-attribute face :background nil 'default)
19027 color)))
19028 (hash (sha1 (prin1-to-string
19029 (list org-format-latex-header
19030 org-latex-default-packages-alist
19031 org-latex-packages-alist
19032 org-format-latex-options
19033 forbuffer value fg bg))))
19034 (absprefix (expand-file-name prefix dir))
19035 (linkfile (format "%s_%s.png" prefix hash))
19036 (movefile (format "%s_%s.png" absprefix hash))
19037 (sep (and block-type "\n\n"))
19038 (link (concat sep "[[file:" linkfile "]]" sep))
19039 (options
19040 (org-combine-plists
19041 org-format-latex-options
19042 `(:foreground ,fg :background ,bg))))
19043 (when msg (message msg cnt))
19044 (unless checkdir-flag ; Ensure the directory exists.
19045 (setq checkdir-flag t)
19046 (let ((todir (file-name-directory absprefix)))
19047 (unless (file-directory-p todir)
19048 (make-directory todir t))))
19049 (unless (file-exists-p movefile)
19050 (org-create-formula-image
19051 value movefile options forbuffer processing-type))
19052 (if overlays
19053 (progn
19054 (dolist (o (overlays-in beg end))
19055 (when (eq (overlay-get o 'org-overlay-type)
19056 'org-latex-overlay)
19057 (delete-overlay o)))
19058 (let ((ov (make-overlay beg end)))
19059 (overlay-put ov
19060 'org-overlay-type
19061 'org-latex-overlay)
19062 (overlay-put ov 'evaporate t)
19063 (if (featurep 'xemacs)
19064 (progn
19065 (overlay-put ov 'invisible t)
19066 (overlay-put
19067 ov 'end-glyph
19068 (make-glyph
19069 (vector 'png :file movefile))))
19070 (overlay-put
19071 ov 'display
19072 (list 'image
19073 :type 'png
19074 :file movefile
19075 :ascent 'center)))
19076 (push ov org-latex-fragment-image-overlays))
19077 (goto-char end))
19078 (delete-region beg end)
19079 (insert
19080 (org-add-props link
19081 (list 'org-latex-src
19082 (replace-regexp-in-string "\"" "" value)
19083 'org-latex-src-embed-type
19084 (if block-type 'paragraph 'character)))))))
19085 (mathml
19086 ;; Process to MathML.
19087 (unless (org-format-latex-mathml-available-p)
19088 (user-error "LaTeX to MathML converter not configured"))
19089 (incf cnt)
19090 (when msg (message msg cnt))
19091 (goto-char beg)
19092 (delete-region beg end)
19093 (insert (org-format-latex-as-mathml
19094 value block-type prefix dir)))
19095 (otherwise
19096 (error "Unknown conversion type %s for LaTeX fragments"
19097 processing-type)))))))))))
19099 (defun org-create-math-formula (latex-frag &optional mathml-file)
19100 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19101 Use `org-latex-to-mathml-convert-command'. If the conversion is
19102 sucessful, return the portion between \"<math...> </math>\"
19103 elements otherwise return nil. When MATHML-FILE is specified,
19104 write the results in to that file. When invoked as an
19105 interactive command, prompt for LATEX-FRAG, with initial value
19106 set to the current active region and echo the results for user
19107 inspection."
19108 (interactive (list (let ((frag (when (org-region-active-p)
19109 (buffer-substring-no-properties
19110 (region-beginning) (region-end)))))
19111 (read-string "LaTeX Fragment: " frag nil frag))))
19112 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19113 (let* ((tmp-in-file (file-relative-name
19114 (make-temp-name (expand-file-name "ltxmathml-in"))))
19115 (ignore (write-region latex-frag nil tmp-in-file))
19116 (tmp-out-file (file-relative-name
19117 (make-temp-name (expand-file-name "ltxmathml-out"))))
19118 (cmd (format-spec
19119 org-latex-to-mathml-convert-command
19120 `((?j . ,(and org-latex-to-mathml-jar-file
19121 (shell-quote-argument
19122 (expand-file-name
19123 org-latex-to-mathml-jar-file))))
19124 (?I . ,(shell-quote-argument tmp-in-file))
19125 (?i . ,latex-frag)
19126 (?o . ,(shell-quote-argument tmp-out-file)))))
19127 mathml shell-command-output)
19128 (when (org-called-interactively-p 'any)
19129 (unless (org-format-latex-mathml-available-p)
19130 (user-error "LaTeX to MathML converter not configured")))
19131 (message "Running %s" cmd)
19132 (setq shell-command-output (shell-command-to-string cmd))
19133 (setq mathml
19134 (when (file-readable-p tmp-out-file)
19135 (with-current-buffer (find-file-noselect tmp-out-file t)
19136 (goto-char (point-min))
19137 (when (re-search-forward
19138 (concat
19139 (regexp-quote
19140 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19141 "[^>]*?>"
19142 "\\(.\\|\n\\)*"
19143 "</math>")
19144 nil t)
19145 (prog1 (match-string 0) (kill-buffer))))))
19146 (cond
19147 (mathml
19148 (setq mathml
19149 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19150 (when mathml-file
19151 (write-region mathml nil mathml-file))
19152 (when (org-called-interactively-p 'any)
19153 (message mathml)))
19154 ((message "LaTeX to MathML conversion failed")
19155 (message shell-command-output)))
19156 (delete-file tmp-in-file)
19157 (when (file-exists-p tmp-out-file)
19158 (delete-file tmp-out-file))
19159 mathml))
19161 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19162 prefix &optional dir)
19163 "Use `org-create-math-formula' but check local cache first."
19164 (let* ((absprefix (expand-file-name prefix dir))
19165 (print-length nil) (print-level nil)
19166 (formula-id (concat
19167 "formula-"
19168 (sha1
19169 (prin1-to-string
19170 (list latex-frag
19171 org-latex-to-mathml-convert-command)))))
19172 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19173 (formula-cache-dir (file-name-directory formula-cache)))
19175 (unless (file-directory-p formula-cache-dir)
19176 (make-directory formula-cache-dir t))
19178 (unless (file-exists-p formula-cache)
19179 (org-create-math-formula latex-frag formula-cache))
19181 (if (file-exists-p formula-cache)
19182 ;; Successful conversion. Return the link to MathML file.
19183 (org-add-props
19184 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19185 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19186 'org-latex-src-embed-type (if latex-frag-type
19187 'paragraph 'character)))
19188 ;; Failed conversion. Return the LaTeX fragment verbatim
19189 latex-frag)))
19191 (defun org-create-formula-image (string tofile options buffer &optional type)
19192 "Create an image from LaTeX source using dvipng or convert.
19193 This function calls either `org-create-formula-image-with-dvipng'
19194 or `org-create-formula-image-with-imagemagick' depending on the
19195 value of `org-latex-create-formula-image-program' or on the value
19196 of the optional TYPE variable.
19198 Note: ultimately these two function should be combined as they
19199 share a good deal of logic."
19200 (org-check-external-command
19201 "latex" "needed to convert LaTeX fragments to images")
19202 (funcall
19203 (case (or type org-latex-create-formula-image-program)
19204 ('dvipng
19205 (org-check-external-command
19206 "dvipng" "needed to convert LaTeX fragments to images")
19207 'org-create-formula-image-with-dvipng)
19208 ('imagemagick
19209 (org-check-external-command
19210 "convert" "you need to install imagemagick")
19211 'org-create-formula-image-with-imagemagick)
19212 (t (error
19213 "Invalid value of `org-latex-create-formula-image-program'")))
19214 string tofile options buffer))
19216 (declare-function org-export-get-backend "ox" (name))
19217 (declare-function org-export--get-global-options "ox" (&optional backend))
19218 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19219 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19220 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19221 (defun org-create-formula--latex-header ()
19222 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19223 (let ((info (org-combine-plists (org-export--get-global-options
19224 (org-export-get-backend 'latex))
19225 (org-export--get-inbuffer-options
19226 (org-export-get-backend 'latex)))))
19227 (org-latex-guess-babel-language
19228 (org-latex-guess-inputenc
19229 (org-splice-latex-header
19230 org-format-latex-header
19231 org-latex-default-packages-alist
19232 org-latex-packages-alist t
19233 (plist-get info :latex-header)))
19234 info)))
19236 (defun org--get-display-dpi ()
19237 "Get the DPI of the display.
19239 Assumes that the display has the same pixel width in the
19240 horizontal and vertical directions."
19241 (if (display-graphic-p)
19242 (round (/ (display-pixel-height)
19243 (/ (display-mm-height) 25.4)))
19244 (error "Attempt to calculate the dpi of a non-graphic display")))
19246 ;; This function borrows from Ganesh Swami's latex2png.el
19247 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19248 "This calls dvipng."
19249 (require 'ox-latex)
19250 (let* ((tmpdir (if (featurep 'xemacs)
19251 (temp-directory)
19252 temporary-file-directory))
19253 (texfilebase (make-temp-name
19254 (expand-file-name "orgtex" tmpdir)))
19255 (texfile (concat texfilebase ".tex"))
19256 (dvifile (concat texfilebase ".dvi"))
19257 (pngfile (concat texfilebase ".png"))
19258 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19259 ;; This assumes that the display has the same pixel width in
19260 ;; the horizontal and vertical directions
19261 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19262 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19263 "Black"))
19264 (bg (or (plist-get options (if buffer :background :html-background))
19265 "Transparent")))
19266 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19267 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19268 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19269 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19270 (let ((latex-header (org-create-formula--latex-header)))
19271 (with-temp-file texfile
19272 (insert latex-header)
19273 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19274 (let ((dir default-directory))
19275 (ignore-errors
19276 (cd tmpdir)
19277 (call-process "latex" nil nil nil texfile))
19278 (cd dir))
19279 (if (not (file-exists-p dvifile))
19280 (progn (message "Failed to create dvi file from %s" texfile) nil)
19281 (ignore-errors
19282 (if (featurep 'xemacs)
19283 (call-process "dvipng" nil nil nil
19284 "-fg" fg "-bg" bg
19285 "-T" "tight"
19286 "-o" pngfile
19287 dvifile)
19288 (call-process "dvipng" nil nil nil
19289 "-fg" fg "-bg" bg
19290 "-D" dpi
19291 ;;"-x" scale "-y" scale
19292 "-T" "tight"
19293 "-o" pngfile
19294 dvifile)))
19295 (if (not (file-exists-p pngfile))
19296 (if org-format-latex-signal-error
19297 (error "Failed to create png file from %s" texfile)
19298 (message "Failed to create png file from %s" texfile)
19299 nil)
19300 ;; Use the requested file name and clean up
19301 (copy-file pngfile tofile 'replace)
19302 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19303 (if (file-exists-p (concat texfilebase e))
19304 (delete-file (concat texfilebase e))))
19305 pngfile))))
19307 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19308 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19309 "This calls convert, which is included into imagemagick."
19310 (require 'ox-latex)
19311 (let* ((tmpdir (if (featurep 'xemacs)
19312 (temp-directory)
19313 temporary-file-directory))
19314 (texfilebase (make-temp-name
19315 (expand-file-name "orgtex" tmpdir)))
19316 (texfile (concat texfilebase ".tex"))
19317 (pdffile (concat texfilebase ".pdf"))
19318 (pngfile (concat texfilebase ".png"))
19319 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19320 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19321 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19322 "black"))
19323 (bg (or (plist-get options (if buffer :background :html-background))
19324 "white")))
19325 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19326 (setq fg (org-latex-color-format fg)))
19327 (if (eq bg 'default) (setq bg (org-latex-color :background))
19328 (setq bg (org-latex-color-format
19329 (if (string= bg "Transparent") "white" bg))))
19330 (let ((latex-header (org-create-formula--latex-header)))
19331 (with-temp-file texfile
19332 (insert latex-header)
19333 (insert "\n\\begin{document}\n"
19334 "\\definecolor{fg}{rgb}{" fg "}\n"
19335 "\\definecolor{bg}{rgb}{" bg "}\n"
19336 "\n\\pagecolor{bg}\n"
19337 "\n{\\color{fg}\n"
19338 string
19339 "\n}\n"
19340 "\n\\end{document}\n")))
19341 (org-latex-compile texfile t)
19342 (if (not (file-exists-p pdffile))
19343 (progn (message "Failed to create pdf file from %s" texfile) nil)
19344 (ignore-errors
19345 (if (featurep 'xemacs)
19346 (call-process "convert" nil nil nil
19347 "-density" "96"
19348 "-trim"
19349 "-antialias"
19350 pdffile
19351 "-quality" "100"
19352 ;; "-sharpen" "0x1.0"
19353 pngfile)
19354 (call-process "convert" nil nil nil
19355 "-density" dpi
19356 "-trim"
19357 "-antialias"
19358 pdffile
19359 "-quality" "100"
19360 ;; "-sharpen" "0x1.0"
19361 pngfile)))
19362 (if (not (file-exists-p pngfile))
19363 (if org-format-latex-signal-error
19364 (error "Failed to create png file from %s" texfile)
19365 (message "Failed to create png file from %s" texfile)
19366 nil)
19367 ;; Use the requested file name and clean up
19368 (copy-file pngfile tofile 'replace)
19369 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19370 (if (file-exists-p (concat texfilebase e))
19371 (delete-file (concat texfilebase e))))
19372 pngfile))))
19374 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19375 "Fill a LaTeX header template TPL.
19376 In the template, the following place holders will be recognized:
19378 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19379 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19380 [PACKAGES] \\usepackage statements for PKG
19381 [NO-PACKAGES] do not include PKG
19382 [EXTRA] the string EXTRA
19383 [NO-EXTRA] do not include EXTRA
19385 For backward compatibility, if both the positive and the negative place
19386 holder is missing, the positive one (without the \"NO-\") will be
19387 assumed to be present at the end of the template.
19388 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19389 EXTRA is a string.
19390 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19391 (let (rpl (end ""))
19392 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19393 (setq rpl (if (or (match-end 1) (not def-pkg))
19394 "" (org-latex-packages-to-string def-pkg snippets-p t))
19395 tpl (replace-match rpl t t tpl))
19396 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19398 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19399 (setq rpl (if (or (match-end 1) (not pkg))
19400 "" (org-latex-packages-to-string pkg snippets-p t))
19401 tpl (replace-match rpl t t tpl))
19402 (if pkg (setq end
19403 (concat end "\n"
19404 (org-latex-packages-to-string pkg snippets-p)))))
19406 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19407 (setq rpl (if (or (match-end 1) (not extra))
19408 "" (concat extra "\n"))
19409 tpl (replace-match rpl t t tpl))
19410 (if (and extra (string-match "\\S-" extra))
19411 (setq end (concat end "\n" extra))))
19413 (if (string-match "\\S-" end)
19414 (concat tpl "\n" end)
19415 tpl)))
19417 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19418 "Turn an alist of packages into a string with the \\usepackage macros."
19419 (setq pkg (mapconcat (lambda(p)
19420 (cond
19421 ((stringp p) p)
19422 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19423 (format "%% Package %s omitted" (cadr p)))
19424 ((equal "" (car p))
19425 (format "\\usepackage{%s}" (cadr p)))
19427 (format "\\usepackage[%s]{%s}"
19428 (car p) (cadr p)))))
19430 "\n"))
19431 (if newline (concat pkg "\n") pkg))
19433 (defun org-dvipng-color (attr)
19434 "Return a RGB color specification for dvipng."
19435 (apply 'format "rgb %s %s %s"
19436 (mapcar 'org-normalize-color
19437 (if (featurep 'xemacs)
19438 (color-rgb-components
19439 (face-property 'default
19440 (cond ((eq attr :foreground) 'foreground)
19441 ((eq attr :background) 'background))))
19442 (color-values (face-attribute 'default attr nil))))))
19444 (defun org-dvipng-color-format (color-name)
19445 "Convert COLOR-NAME to a RGB color value for dvipng."
19446 (apply 'format "rgb %s %s %s"
19447 (mapcar 'org-normalize-color
19448 (color-values color-name))))
19450 (defun org-latex-color (attr)
19451 "Return a RGB color for the LaTeX color package."
19452 (apply 'format "%s,%s,%s"
19453 (mapcar 'org-normalize-color
19454 (if (featurep 'xemacs)
19455 (color-rgb-components
19456 (face-property 'default
19457 (cond ((eq attr :foreground) 'foreground)
19458 ((eq attr :background) 'background))))
19459 (color-values (face-attribute 'default attr nil))))))
19461 (defun org-latex-color-format (color-name)
19462 "Convert COLOR-NAME to a RGB color value."
19463 (apply 'format "%s,%s,%s"
19464 (mapcar 'org-normalize-color
19465 (color-values color-name))))
19467 (defun org-normalize-color (value)
19468 "Return string to be used as color value for an RGB component."
19469 (format "%g" (/ value 65535.0)))
19473 ;; Image display
19475 (defvar org-inline-image-overlays nil)
19476 (make-variable-buffer-local 'org-inline-image-overlays)
19478 (defun org-toggle-inline-images (&optional include-linked)
19479 "Toggle the display of inline images.
19480 INCLUDE-LINKED is passed to `org-display-inline-images'."
19481 (interactive "P")
19482 (if org-inline-image-overlays
19483 (progn
19484 (org-remove-inline-images)
19485 (when (org-called-interactively-p 'interactive)
19486 (message "Inline image display turned off")))
19487 (org-display-inline-images include-linked)
19488 (when (org-called-interactively-p 'interactive)
19489 (message (if org-inline-image-overlays
19490 (format "%d images displayed inline"
19491 (length org-inline-image-overlays))
19492 "No images to display inline")))))
19494 (defun org-redisplay-inline-images ()
19495 "Refresh the display of inline images."
19496 (interactive)
19497 (if (not org-inline-image-overlays)
19498 (org-toggle-inline-images)
19499 (org-toggle-inline-images)
19500 (org-toggle-inline-images)))
19502 (defun org-display-inline-images (&optional include-linked refresh beg end)
19503 "Display inline images.
19505 An inline image is a link which follows either of these
19506 conventions:
19508 1. Its path is a file with an extension matching return value
19509 from `image-file-name-regexp' and it has no contents.
19511 2. Its description consists in a single link of the previous
19512 type.
19514 When optional argument INCLUDE-LINKED is non-nil, also links with
19515 a text description part will be inlined. This can be nice for
19516 a quick look at those images, but it does not reflect what
19517 exported files will look like.
19519 When optional argument REFRESH is non-nil, refresh existing
19520 images between BEG and END. This will create new image displays
19521 only if necessary. BEG and END default to the buffer
19522 boundaries."
19523 (interactive "P")
19524 (when (display-graphic-p)
19525 (unless refresh
19526 (org-remove-inline-images)
19527 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19528 (org-with-wide-buffer
19529 (goto-char (or beg (point-min)))
19530 (let ((case-fold-search t)
19531 (file-extension-re (org-image-file-name-regexp)))
19532 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19533 (let ((link (save-match-data (org-element-context))))
19534 ;; Check if we're at an inline image.
19535 (when (and (equal (org-element-property :type link) "file")
19536 (or include-linked
19537 (not (org-element-property :contents-begin link)))
19538 (let ((parent (org-element-property :parent link)))
19539 (or (not (eq (org-element-type parent) 'link))
19540 (not (cdr (org-element-contents parent)))))
19541 (org-string-match-p file-extension-re
19542 (org-element-property :path link)))
19543 (let ((file (expand-file-name (org-element-property :path link))))
19544 (when (file-exists-p file)
19545 (let ((width
19546 ;; Apply `org-image-actual-width' specifications.
19547 (cond
19548 ((not (image-type-available-p 'imagemagick)) nil)
19549 ((eq org-image-actual-width t) nil)
19550 ((listp org-image-actual-width)
19552 ;; First try to find a width among
19553 ;; attributes associated to the paragraph
19554 ;; containing link.
19555 (let ((paragraph
19556 (let ((e link))
19557 (while (and (setq e (org-element-property
19558 :parent e))
19559 (not (eq (org-element-type e)
19560 'paragraph))))
19561 e)))
19562 (when paragraph
19563 (save-excursion
19564 (goto-char (org-element-property :begin paragraph))
19565 (when
19566 (re-search-forward
19567 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19568 (org-element-property
19569 :post-affiliated paragraph)
19571 (string-to-number (match-string 1))))))
19572 ;; Otherwise, fall-back to provided number.
19573 (car org-image-actual-width)))
19574 ((numberp org-image-actual-width)
19575 org-image-actual-width)))
19576 (old (get-char-property-and-overlay
19577 (org-element-property :begin link)
19578 'org-image-overlay)))
19579 (if (and (car-safe old) refresh)
19580 (image-refresh (overlay-get (cdr old) 'display))
19581 (let ((image (create-image file
19582 (and width 'imagemagick)
19584 :width width)))
19585 (when image
19586 (let* ((link
19587 ;; If inline image is the description
19588 ;; of another link, be sure to
19589 ;; consider the latter as the one to
19590 ;; apply the overlay on.
19591 (let ((parent
19592 (org-element-property :parent link)))
19593 (if (eq (org-element-type parent) 'link)
19594 parent
19595 link)))
19596 (ov (make-overlay
19597 (org-element-property :begin link)
19598 (progn
19599 (goto-char
19600 (org-element-property :end link))
19601 (skip-chars-backward " \t")
19602 (point)))))
19603 (overlay-put ov 'display image)
19604 (overlay-put ov 'face 'default)
19605 (overlay-put ov 'org-image-overlay t)
19606 (overlay-put
19607 ov 'modification-hooks
19608 (list 'org-display-inline-remove-overlay))
19609 (push ov org-inline-image-overlays)))))))))))))))
19611 (define-obsolete-function-alias
19612 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19614 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19615 "Remove inline-display overlay if a corresponding region is modified."
19616 (let ((inhibit-modification-hooks t))
19617 (when (and ov after)
19618 (delete ov org-inline-image-overlays)
19619 (delete-overlay ov))))
19621 (defun org-remove-inline-images ()
19622 "Remove inline display of images."
19623 (interactive)
19624 (mapc 'delete-overlay org-inline-image-overlays)
19625 (setq org-inline-image-overlays nil))
19627 ;;;; Key bindings
19629 ;; Outline functions from `outline-mode-prefix-map'
19630 ;; that can be remapped in Org:
19631 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19632 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19633 (define-key org-mode-map [remap outline-forward-same-level]
19634 'org-forward-heading-same-level)
19635 (define-key org-mode-map [remap outline-backward-same-level]
19636 'org-backward-heading-same-level)
19637 (define-key org-mode-map [remap show-branches]
19638 'org-kill-note-or-show-branches)
19639 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19640 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19641 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19642 (define-key org-mode-map [remap outline-next-visible-heading]
19643 'org-next-visible-heading)
19644 (define-key org-mode-map [remap outline-previous-visible-heading]
19645 'org-previous-visible-heading)
19647 ;; Outline functions from `outline-mode-prefix-map' that can not
19648 ;; be remapped in Org:
19650 ;; - the column "key binding" shows whether the Outline function is still
19651 ;; available in Org mode on the same key that it has been bound to in
19652 ;; Outline mode:
19653 ;; - "overridden": key used for a different functionality in Org mode
19654 ;; - else: key still bound to the same Outline function in Org mode
19656 ;; | Outline function | key binding | Org replacement |
19657 ;; |------------------------------------+-------------+--------------------------|
19658 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19659 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19660 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19661 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19662 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19663 ;; | `show-entry' | overridden | no replacement |
19664 ;; | `show-children' | `C-c C-i' | visibility cycling |
19665 ;; | `show-branches' | `C-c C-k' | still same function |
19666 ;; | `show-subtree' | overridden | visibility cycling |
19667 ;; | `show-all' | overridden | no replacement |
19668 ;; | `hide-subtree' | overridden | visibility cycling |
19669 ;; | `hide-body' | overridden | no replacement |
19670 ;; | `hide-entry' | overridden | visibility cycling |
19671 ;; | `hide-leaves' | overridden | no replacement |
19672 ;; | `hide-sublevels' | overridden | no replacement |
19673 ;; | `hide-other' | overridden | no replacement |
19675 ;; Make `C-c C-x' a prefix key
19676 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19678 ;; TAB key with modifiers
19679 (org-defkey org-mode-map "\C-i" 'org-cycle)
19680 (org-defkey org-mode-map [(tab)] 'org-cycle)
19681 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19682 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19683 ;; The following line is necessary under Suse GNU/Linux
19684 (unless (featurep 'xemacs)
19685 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19686 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19687 (define-key org-mode-map [backtab] 'org-shifttab)
19689 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19690 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19691 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19693 ;; Cursor keys with modifiers
19694 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19695 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19696 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19697 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19699 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19700 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19701 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19702 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19703 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19704 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19706 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19707 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19708 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19709 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19711 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19712 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19713 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19714 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19716 ;; Babel keys
19717 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19718 (mapc (lambda (pair)
19719 (define-key org-babel-map (car pair) (cdr pair)))
19720 org-babel-key-bindings)
19722 ;;; Extra keys for tty access.
19723 ;; We only set them when really needed because otherwise the
19724 ;; menus don't show the simple keys
19726 (when (or org-use-extra-keys
19727 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19728 (not window-system))
19729 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19730 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19731 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19732 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19733 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19734 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19735 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19736 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19737 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19738 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19739 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19740 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19741 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19742 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19743 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19744 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19745 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19746 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19747 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19748 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19749 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19750 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19751 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19752 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19753 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19754 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19755 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19756 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19758 ;; All the other keys
19760 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19761 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19762 (if (boundp 'narrow-map)
19763 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19764 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19765 (if (boundp 'narrow-map)
19766 (org-defkey narrow-map "b" 'org-narrow-to-block)
19767 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19768 (if (boundp 'narrow-map)
19769 (org-defkey narrow-map "e" 'org-narrow-to-element)
19770 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19771 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19772 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19773 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19774 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19775 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19776 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19777 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19778 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19779 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19780 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19781 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19782 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19783 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19784 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19785 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19786 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19787 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19788 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19789 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19790 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19791 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19792 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19793 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19794 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19795 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19796 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19797 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19798 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19799 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19800 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19801 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19802 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19803 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19804 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19805 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19806 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19807 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19808 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19809 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19810 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19811 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19812 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19813 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19814 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19815 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19816 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19817 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19818 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19819 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19820 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19821 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19822 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19823 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19824 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19825 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19826 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19827 (org-defkey org-mode-map "\C-c^" 'org-sort)
19828 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19829 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19830 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19831 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19832 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19833 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19834 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19835 (org-defkey org-mode-map "\C-m" 'org-return)
19836 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19837 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19838 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19839 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19840 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19841 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19842 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19843 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19844 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19845 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19846 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19847 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19848 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19849 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19850 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19851 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19852 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19853 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19854 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19855 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19856 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19857 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19858 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19859 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19860 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19862 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19863 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19864 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19866 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19867 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19868 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19869 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19870 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19871 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19872 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19873 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19874 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19875 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19876 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19877 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19878 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19879 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19880 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19881 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19882 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19883 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19884 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19885 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19886 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19887 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19889 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19890 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19891 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19892 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19893 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19895 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19897 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19899 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19900 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19902 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19905 (when (featurep 'xemacs)
19906 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19909 (defconst org-speed-commands-default
19911 ("Outline Navigation")
19912 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19913 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19914 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19915 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19916 ("F" . org-next-block)
19917 ("B" . org-previous-block)
19918 ("u" . (org-speed-move-safe 'outline-up-heading))
19919 ("j" . org-goto)
19920 ("g" . (org-refile t))
19921 ("Outline Visibility")
19922 ("c" . org-cycle)
19923 ("C" . org-shifttab)
19924 (" " . org-display-outline-path)
19925 ("s" . org-narrow-to-subtree)
19926 ("=" . org-columns)
19927 ("Outline Structure Editing")
19928 ("U" . org-metaup)
19929 ("D" . org-metadown)
19930 ("r" . org-metaright)
19931 ("l" . org-metaleft)
19932 ("R" . org-shiftmetaright)
19933 ("L" . org-shiftmetaleft)
19934 ("i" . (progn (forward-char 1) (call-interactively
19935 'org-insert-heading-respect-content)))
19936 ("^" . org-sort)
19937 ("w" . org-refile)
19938 ("a" . org-archive-subtree-default-with-confirmation)
19939 ("@" . org-mark-subtree)
19940 ("#" . org-toggle-comment)
19941 ("Clock Commands")
19942 ("I" . org-clock-in)
19943 ("O" . org-clock-out)
19944 ("Meta Data Editing")
19945 ("t" . org-todo)
19946 ("," . (org-priority))
19947 ("0" . (org-priority ?\ ))
19948 ("1" . (org-priority ?A))
19949 ("2" . (org-priority ?B))
19950 ("3" . (org-priority ?C))
19951 (":" . org-set-tags-command)
19952 ("e" . org-set-effort)
19953 ("E" . org-inc-effort)
19954 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19955 (org-entry-put (point) "APPT_WARNTIME" m)))
19956 ("Agenda Views etc")
19957 ("v" . org-agenda)
19958 ("/" . org-sparse-tree)
19959 ("Misc")
19960 ("o" . org-open-at-point)
19961 ("?" . org-speed-command-help)
19962 ("<" . (org-agenda-set-restriction-lock 'subtree))
19963 (">" . (org-agenda-remove-restriction-lock))
19965 "The default speed commands.")
19967 (defun org-print-speed-command (e)
19968 (if (> (length (car e)) 1)
19969 (progn
19970 (princ "\n")
19971 (princ (car e))
19972 (princ "\n")
19973 (princ (make-string (length (car e)) ?-))
19974 (princ "\n"))
19975 (princ (car e))
19976 (princ " ")
19977 (if (symbolp (cdr e))
19978 (princ (symbol-name (cdr e)))
19979 (prin1 (cdr e)))
19980 (princ "\n")))
19982 (defun org-speed-command-help ()
19983 "Show the available speed commands."
19984 (interactive)
19985 (if (not org-use-speed-commands)
19986 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19987 (with-output-to-temp-buffer "*Help*"
19988 (princ "User-defined Speed commands\n===========================\n")
19989 (mapc 'org-print-speed-command org-speed-commands-user)
19990 (princ "\n")
19991 (princ "Built-in Speed commands\n=======================\n")
19992 (mapc 'org-print-speed-command org-speed-commands-default))
19993 (with-current-buffer "*Help*"
19994 (setq truncate-lines t))))
19996 (defun org-speed-move-safe (cmd)
19997 "Execute CMD, but make sure that the cursor always ends up in a headline.
19998 If not, return to the original position and throw an error."
19999 (interactive)
20000 (let ((pos (point)))
20001 (call-interactively cmd)
20002 (unless (and (bolp) (org-at-heading-p))
20003 (goto-char pos)
20004 (error "Boundary reached while executing %s" cmd))))
20006 (defvar org-self-insert-command-undo-counter 0)
20008 (defvar org-table-auto-blank-field) ; defined in org-table.el
20009 (defvar org-speed-command nil)
20011 (define-obsolete-function-alias
20012 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20014 (defun org-speed-command-activate (keys)
20015 "Hook for activating single-letter speed commands.
20016 `org-speed-commands-default' specifies a minimal command set.
20017 Use `org-speed-commands-user' for further customization."
20018 (when (or (and (bolp) (looking-at org-outline-regexp))
20019 (and (functionp org-use-speed-commands)
20020 (funcall org-use-speed-commands)))
20021 (cdr (assoc keys (append org-speed-commands-user
20022 org-speed-commands-default)))))
20024 (define-obsolete-function-alias
20025 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20027 (defun org-babel-speed-command-activate (keys)
20028 "Hook for activating single-letter code block commands."
20029 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20030 (cdr (assoc keys org-babel-key-bindings))))
20032 (defcustom org-speed-command-hook
20033 '(org-speed-command-default-hook org-babel-speed-command-hook)
20034 "Hook for activating speed commands at strategic locations.
20035 Hook functions are called in sequence until a valid handler is
20036 found.
20038 Each hook takes a single argument, a user-pressed command key
20039 which is also a `self-insert-command' from the global map.
20041 Within the hook, examine the cursor position and the command key
20042 and return nil or a valid handler as appropriate. Handler could
20043 be one of an interactive command, a function, or a form.
20045 Set `org-use-speed-commands' to non-nil value to enable this
20046 hook. The default setting is `org-speed-command-activate'."
20047 :group 'org-structure
20048 :version "24.1"
20049 :type 'hook)
20051 (defun org-self-insert-command (N)
20052 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20053 If the cursor is in a table looking at whitespace, the whitespace is
20054 overwritten, and the table is not marked as requiring realignment."
20055 (interactive "p")
20056 (org-check-before-invisible-edit 'insert)
20057 (cond
20058 ((and org-use-speed-commands
20059 (let ((kv (this-command-keys-vector)))
20060 (setq org-speed-command
20061 (run-hook-with-args-until-success
20062 'org-speed-command-hook
20063 (make-string 1 (aref kv (1- (length kv))))))))
20064 (cond
20065 ((commandp org-speed-command)
20066 (setq this-command org-speed-command)
20067 (call-interactively org-speed-command))
20068 ((functionp org-speed-command)
20069 (funcall org-speed-command))
20070 ((and org-speed-command (listp org-speed-command))
20071 (eval org-speed-command))
20072 (t (let (org-use-speed-commands)
20073 (call-interactively 'org-self-insert-command)))))
20074 ((and
20075 (org-table-p)
20076 (progn
20077 ;; check if we blank the field, and if that triggers align
20078 (and (featurep 'org-table) org-table-auto-blank-field
20079 (memq last-command
20080 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20081 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
20082 ;; got extra space, this field does not determine column width
20083 (let (org-table-may-need-update) (org-table-blank-field))
20084 ;; no extra space, this field may determine column width
20085 (org-table-blank-field)))
20087 (eq N 1)
20088 (looking-at "[^|\n]* |"))
20089 (let (org-table-may-need-update)
20090 (goto-char (1- (match-end 0)))
20091 (backward-delete-char 1)
20092 (goto-char (match-beginning 0))
20093 (self-insert-command N)))
20095 (setq org-table-may-need-update t)
20096 (self-insert-command N)
20097 (org-fix-tags-on-the-fly)
20098 (if org-self-insert-cluster-for-undo
20099 (if (not (eq last-command 'org-self-insert-command))
20100 (setq org-self-insert-command-undo-counter 1)
20101 (if (>= org-self-insert-command-undo-counter 20)
20102 (setq org-self-insert-command-undo-counter 1)
20103 (and (> org-self-insert-command-undo-counter 0)
20104 buffer-undo-list (listp buffer-undo-list)
20105 (not (cadr buffer-undo-list)) ; remove nil entry
20106 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20107 (setq org-self-insert-command-undo-counter
20108 (1+ org-self-insert-command-undo-counter))))))))
20110 (defun org-check-before-invisible-edit (kind)
20111 "Check is editing if kind KIND would be dangerous with invisible text around.
20112 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20113 ;; First, try to get out of here as quickly as possible, to reduce overhead
20114 (if (and org-catch-invisible-edits
20115 (or (not (boundp 'visible-mode)) (not visible-mode))
20116 (or (get-char-property (point) 'invisible)
20117 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20118 ;; OK, we need to take a closer look
20119 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20120 (invisible-before-point (if (bobp) nil (get-char-property
20121 (1- (point)) 'invisible)))
20122 (border-and-ok-direction
20124 ;; Check if we are acting predictably before invisible text
20125 (and invisible-at-point (not invisible-before-point)
20126 (memq kind '(insert delete-backward)))
20127 ;; Check if we are acting predictably after invisible text
20128 ;; This works not well, and I have turned it off. It seems
20129 ;; better to always show and stop after invisible text.
20130 ;; (and (not invisible-at-point) invisible-before-point
20131 ;; (memq kind '(insert delete)))
20133 (when (or (memq invisible-at-point '(outline org-hide-block t))
20134 (memq invisible-before-point '(outline org-hide-block t)))
20135 (if (eq org-catch-invisible-edits 'error)
20136 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20137 (if (and org-custom-properties-overlays
20138 (y-or-n-p "Display invisible properties in this buffer? "))
20139 (org-toggle-custom-properties-visibility)
20140 ;; Make the area visible
20141 (save-excursion
20142 (if invisible-before-point
20143 (goto-char (previous-single-char-property-change
20144 (point) 'invisible)))
20145 (show-subtree))
20146 (cond
20147 ((eq org-catch-invisible-edits 'show)
20148 ;; That's it, we do the edit after showing
20149 (message
20150 "Unfolding invisible region around point before editing")
20151 (sit-for 1))
20152 ((and (eq org-catch-invisible-edits 'smart)
20153 border-and-ok-direction)
20154 (message "Unfolding invisible region around point before editing"))
20156 ;; Don't do the edit, make the user repeat it in full visibility
20157 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20159 (defun org-fix-tags-on-the-fly ()
20160 (when (and (equal (char-after (point-at-bol)) ?*)
20161 (org-at-heading-p))
20162 (org-align-tags-here org-tags-column)))
20164 (defun org-delete-backward-char (N)
20165 "Like `delete-backward-char', insert whitespace at field end in tables.
20166 When deleting backwards, in tables this function will insert whitespace in
20167 front of the next \"|\" separator, to keep the table aligned. The table will
20168 still be marked for re-alignment if the field did fill the entire column,
20169 because, in this case the deletion might narrow the column."
20170 (interactive "p")
20171 (save-match-data
20172 (org-check-before-invisible-edit 'delete-backward)
20173 (if (and (org-table-p)
20174 (eq N 1)
20175 (string-match "|" (buffer-substring (point-at-bol) (point)))
20176 (looking-at ".*?|"))
20177 (let ((pos (point))
20178 (noalign (looking-at "[^|\n\r]* |"))
20179 (c org-table-may-need-update))
20180 (backward-delete-char N)
20181 (if (not overwrite-mode)
20182 (progn
20183 (skip-chars-forward "^|")
20184 (insert " ")
20185 (goto-char (1- pos))))
20186 ;; noalign: if there were two spaces at the end, this field
20187 ;; does not determine the width of the column.
20188 (if noalign (setq org-table-may-need-update c)))
20189 (backward-delete-char N)
20190 (org-fix-tags-on-the-fly))))
20192 (defun org-delete-char (N)
20193 "Like `delete-char', but insert whitespace at field end in tables.
20194 When deleting characters, in tables this function will insert whitespace in
20195 front of the next \"|\" separator, to keep the table aligned. The table will
20196 still be marked for re-alignment if the field did fill the entire column,
20197 because, in this case the deletion might narrow the column."
20198 (interactive "p")
20199 (save-match-data
20200 (org-check-before-invisible-edit 'delete)
20201 (if (and (org-table-p)
20202 (not (bolp))
20203 (not (= (char-after) ?|))
20204 (eq N 1))
20205 (if (looking-at ".*?|")
20206 (let ((pos (point))
20207 (noalign (looking-at "[^|\n\r]* |"))
20208 (c org-table-may-need-update))
20209 (replace-match
20210 (concat (substring (match-string 0) 1 -1) " |") nil t)
20211 (goto-char pos)
20212 ;; noalign: if there were two spaces at the end, this field
20213 ;; does not determine the width of the column.
20214 (if noalign (setq org-table-may-need-update c)))
20215 (delete-char N))
20216 (delete-char N)
20217 (org-fix-tags-on-the-fly))))
20219 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20220 (put 'org-self-insert-command 'delete-selection
20221 (lambda ()
20222 (not (run-hook-with-args-until-success
20223 'self-insert-uses-region-functions))))
20224 (put 'orgtbl-self-insert-command 'delete-selection
20225 (lambda ()
20226 (not (run-hook-with-args-until-success
20227 'self-insert-uses-region-functions))))
20228 (put 'org-delete-char 'delete-selection 'supersede)
20229 (put 'org-delete-backward-char 'delete-selection 'supersede)
20230 (put 'org-yank 'delete-selection 'yank)
20232 ;; Make `flyspell-mode' delay after some commands
20233 (put 'org-self-insert-command 'flyspell-delayed t)
20234 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20235 (put 'org-delete-char 'flyspell-delayed t)
20236 (put 'org-delete-backward-char 'flyspell-delayed t)
20238 ;; Make pabbrev-mode expand after org-mode commands
20239 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20240 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20242 (defun org-remap (map &rest commands)
20243 "In MAP, remap the functions given in COMMANDS.
20244 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20245 (let (new old)
20246 (while commands
20247 (setq old (pop commands) new (pop commands))
20248 (if (fboundp 'command-remapping)
20249 (org-defkey map (vector 'remap old) new)
20250 (substitute-key-definition old new map global-map)))))
20252 (defun org-transpose-words ()
20253 "Transpose words for Org.
20254 This uses the `org-mode-transpose-word-syntax-table' syntax
20255 table, which interprets characters in `org-emphasis-alist' as
20256 word constituents."
20257 (interactive)
20258 (with-syntax-table org-mode-transpose-word-syntax-table
20259 (call-interactively 'transpose-words)))
20260 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20262 (when (eq org-enable-table-editor 'optimized)
20263 ;; If the user wants maximum table support, we need to hijack
20264 ;; some standard editing functions
20265 (org-remap org-mode-map
20266 'self-insert-command 'org-self-insert-command
20267 'delete-char 'org-delete-char
20268 'delete-backward-char 'org-delete-backward-char)
20269 (org-defkey org-mode-map "|" 'org-force-self-insert))
20271 (defvar org-ctrl-c-ctrl-c-hook nil
20272 "Hook for functions attaching themselves to `C-c C-c'.
20274 This can be used to add additional functionality to the C-c C-c
20275 key which executes context-dependent commands. This hook is run
20276 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20277 run after the last test.
20279 Each function will be called with no arguments. The function
20280 must check if the context is appropriate for it to act. If yes,
20281 it should do its thing and then return a non-nil value. If the
20282 context is wrong, just do nothing and return nil.")
20284 (defvar org-ctrl-c-ctrl-c-final-hook nil
20285 "Hook for functions attaching themselves to `C-c C-c'.
20287 This can be used to add additional functionality to the C-c C-c
20288 key which executes context-dependent commands. This hook is run
20289 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20290 before the first test.
20292 Each function will be called with no arguments. The function
20293 must check if the context is appropriate for it to act. If yes,
20294 it should do its thing and then return a non-nil value. If the
20295 context is wrong, just do nothing and return nil.")
20297 (defvar org-tab-first-hook nil
20298 "Hook for functions to attach themselves to TAB.
20299 See `org-ctrl-c-ctrl-c-hook' for more information.
20300 This hook runs as the first action when TAB is pressed, even before
20301 `org-cycle' messes around with the `outline-regexp' to cater for
20302 inline tasks and plain list item folding.
20303 If any function in this hook returns t, any other actions that
20304 would have been caused by TAB (such as table field motion or visibility
20305 cycling) will not occur.")
20307 (defvar org-tab-after-check-for-table-hook nil
20308 "Hook for functions to attach themselves to TAB.
20309 See `org-ctrl-c-ctrl-c-hook' for more information.
20310 This hook runs after it has been established that the cursor is not in a
20311 table, but before checking if the cursor is in a headline or if global cycling
20312 should be done.
20313 If any function in this hook returns t, not other actions like visibility
20314 cycling will be done.")
20316 (defvar org-tab-after-check-for-cycling-hook nil
20317 "Hook for functions to attach themselves to TAB.
20318 See `org-ctrl-c-ctrl-c-hook' for more information.
20319 This hook runs after it has been established that not table field motion and
20320 not visibility should be done because of current context. This is probably
20321 the place where a package like yasnippets can hook in.")
20323 (defvar org-tab-before-tab-emulation-hook nil
20324 "Hook for functions to attach themselves to TAB.
20325 See `org-ctrl-c-ctrl-c-hook' for more information.
20326 This hook runs after every other options for TAB have been exhausted, but
20327 before indentation and \t insertion takes place.")
20329 (defvar org-metaleft-hook nil
20330 "Hook for functions attaching themselves to `M-left'.
20331 See `org-ctrl-c-ctrl-c-hook' for more information.")
20332 (defvar org-metaright-hook nil
20333 "Hook for functions attaching themselves to `M-right'.
20334 See `org-ctrl-c-ctrl-c-hook' for more information.")
20335 (defvar org-metaup-hook nil
20336 "Hook for functions attaching themselves to `M-up'.
20337 See `org-ctrl-c-ctrl-c-hook' for more information.")
20338 (defvar org-metadown-hook nil
20339 "Hook for functions attaching themselves to `M-down'.
20340 See `org-ctrl-c-ctrl-c-hook' for more information.")
20341 (defvar org-shiftmetaleft-hook nil
20342 "Hook for functions attaching themselves to `M-S-left'.
20343 See `org-ctrl-c-ctrl-c-hook' for more information.")
20344 (defvar org-shiftmetaright-hook nil
20345 "Hook for functions attaching themselves to `M-S-right'.
20346 See `org-ctrl-c-ctrl-c-hook' for more information.")
20347 (defvar org-shiftmetaup-hook nil
20348 "Hook for functions attaching themselves to `M-S-up'.
20349 See `org-ctrl-c-ctrl-c-hook' for more information.")
20350 (defvar org-shiftmetadown-hook nil
20351 "Hook for functions attaching themselves to `M-S-down'.
20352 See `org-ctrl-c-ctrl-c-hook' for more information.")
20353 (defvar org-metareturn-hook nil
20354 "Hook for functions attaching themselves to `M-RET'.
20355 See `org-ctrl-c-ctrl-c-hook' for more information.")
20356 (defvar org-shiftup-hook nil
20357 "Hook for functions attaching themselves to `S-up'.
20358 See `org-ctrl-c-ctrl-c-hook' for more information.")
20359 (defvar org-shiftup-final-hook nil
20360 "Hook for functions attaching themselves to `S-up'.
20361 This one runs after all other options except shift-select have been excluded.
20362 See `org-ctrl-c-ctrl-c-hook' for more information.")
20363 (defvar org-shiftdown-hook nil
20364 "Hook for functions attaching themselves to `S-down'.
20365 See `org-ctrl-c-ctrl-c-hook' for more information.")
20366 (defvar org-shiftdown-final-hook nil
20367 "Hook for functions attaching themselves to `S-down'.
20368 This one runs after all other options except shift-select have been excluded.
20369 See `org-ctrl-c-ctrl-c-hook' for more information.")
20370 (defvar org-shiftleft-hook nil
20371 "Hook for functions attaching themselves to `S-left'.
20372 See `org-ctrl-c-ctrl-c-hook' for more information.")
20373 (defvar org-shiftleft-final-hook nil
20374 "Hook for functions attaching themselves to `S-left'.
20375 This one runs after all other options except shift-select have been excluded.
20376 See `org-ctrl-c-ctrl-c-hook' for more information.")
20377 (defvar org-shiftright-hook nil
20378 "Hook for functions attaching themselves to `S-right'.
20379 See `org-ctrl-c-ctrl-c-hook' for more information.")
20380 (defvar org-shiftright-final-hook nil
20381 "Hook for functions attaching themselves to `S-right'.
20382 This one runs after all other options except shift-select have been excluded.
20383 See `org-ctrl-c-ctrl-c-hook' for more information.")
20385 (defun org-modifier-cursor-error ()
20386 "Throw an error, a modified cursor command was applied in wrong context."
20387 (user-error "This command is active in special context like tables, headlines or items"))
20389 (defun org-shiftselect-error ()
20390 "Throw an error because Shift-Cursor command was applied in wrong context."
20391 (if (and (boundp 'shift-select-mode) shift-select-mode)
20392 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20393 (user-error "This command works only in special context like headlines or timestamps")))
20395 (defun org-call-for-shift-select (cmd)
20396 (let ((this-command-keys-shift-translated t))
20397 (call-interactively cmd)))
20399 (defun org-shifttab (&optional arg)
20400 "Global visibility cycling or move to previous table field.
20401 Call `org-table-previous-field' within a table.
20402 When ARG is nil, cycle globally through visibility states.
20403 When ARG is a numeric prefix, show contents of this level."
20404 (interactive "P")
20405 (cond
20406 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20407 ((integerp arg)
20408 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20409 (message "Content view to level: %d" arg)
20410 (org-content (prefix-numeric-value arg2))
20411 (org-cycle-show-empty-lines t)
20412 (setq org-cycle-global-status 'overview)))
20413 (t (call-interactively 'org-global-cycle))))
20415 (defun org-shiftmetaleft ()
20416 "Promote subtree or delete table column.
20417 Calls `org-promote-subtree', `org-outdent-item-tree', or
20418 `org-table-delete-column', depending on context. See the
20419 individual commands for more information."
20420 (interactive)
20421 (cond
20422 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20423 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20424 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20425 ((if (not (org-region-active-p)) (org-at-item-p)
20426 (save-excursion (goto-char (region-beginning))
20427 (org-at-item-p)))
20428 (call-interactively 'org-outdent-item-tree))
20429 (t (org-modifier-cursor-error))))
20431 (defun org-shiftmetaright ()
20432 "Demote subtree or insert table column.
20433 Calls `org-demote-subtree', `org-indent-item-tree', or
20434 `org-table-insert-column', depending on context. See the
20435 individual commands for more information."
20436 (interactive)
20437 (cond
20438 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20439 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20440 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20441 ((if (not (org-region-active-p)) (org-at-item-p)
20442 (save-excursion (goto-char (region-beginning))
20443 (org-at-item-p)))
20444 (call-interactively 'org-indent-item-tree))
20445 (t (org-modifier-cursor-error))))
20447 (defun org-shiftmetaup (&optional arg)
20448 "Drag the line at point up.
20449 In a table, kill the current row.
20450 On a clock timestamp, update the value of the timestamp like `S-<up>'
20451 but also adjust the previous clocked item in the clock history.
20452 Everywhere else, drag the line at point up."
20453 (interactive "P")
20454 (cond
20455 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20456 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20457 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20458 (call-interactively 'org-timestamp-up)))
20459 (t (call-interactively 'org-drag-line-backward))))
20461 (defun org-shiftmetadown (&optional arg)
20462 "Drag the line at point down.
20463 In a table, insert an empty row at the current line.
20464 On a clock timestamp, update the value of the timestamp like `S-<down>'
20465 but also adjust the previous clocked item in the clock history.
20466 Everywhere else, drag the line at point down."
20467 (interactive "P")
20468 (cond
20469 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20470 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20471 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20472 (call-interactively 'org-timestamp-down)))
20473 (t (call-interactively 'org-drag-line-forward))))
20475 (defsubst org-hidden-tree-error ()
20476 (user-error
20477 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20479 (defun org-metaleft (&optional arg)
20480 "Promote heading, list item at point or move table column left.
20482 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20483 depending on context. With no specific context, calls the Emacs
20484 default `backward-word'. See the individual commands for more
20485 information.
20487 This function runs the hook `org-metaleft-hook' as a first step,
20488 and returns at first non-nil value."
20489 (interactive "P")
20490 (cond
20491 ((run-hook-with-args-until-success 'org-metaleft-hook))
20492 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20493 ((org-with-limited-levels
20494 (or (org-at-heading-p)
20495 (and (org-region-active-p)
20496 (save-excursion
20497 (goto-char (region-beginning))
20498 (org-at-heading-p)))))
20499 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20500 (call-interactively 'org-do-promote))
20501 ;; At an inline task.
20502 ((org-at-heading-p)
20503 (call-interactively 'org-inlinetask-promote))
20504 ((or (org-at-item-p)
20505 (and (org-region-active-p)
20506 (save-excursion
20507 (goto-char (region-beginning))
20508 (org-at-item-p))))
20509 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20510 (call-interactively 'org-outdent-item))
20511 (t (call-interactively 'backward-word))))
20513 (defun org-metaright (&optional arg)
20514 "Demote heading, list item at point or move table column right.
20516 In front of a drawer or a block keyword, indent it correctly.
20518 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20519 `org-indnet-drawer' or `org-indent-block' depending on context.
20520 With no specific context, calls the Emacs default `forward-word'.
20521 See the individual commands for more information.
20523 This function runs the hook `org-metaright-hook' as a first step,
20524 and returns at first non-nil value."
20525 (interactive "P")
20526 (cond
20527 ((run-hook-with-args-until-success 'org-metaright-hook))
20528 ((org-at-table-p) (call-interactively 'org-table-move-column))
20529 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20530 ((org-at-block-p) (call-interactively 'org-indent-block))
20531 ((org-with-limited-levels
20532 (or (org-at-heading-p)
20533 (and (org-region-active-p)
20534 (save-excursion
20535 (goto-char (region-beginning))
20536 (org-at-heading-p)))))
20537 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20538 (call-interactively 'org-do-demote))
20539 ;; At an inline task.
20540 ((org-at-heading-p)
20541 (call-interactively 'org-inlinetask-demote))
20542 ((or (org-at-item-p)
20543 (and (org-region-active-p)
20544 (save-excursion
20545 (goto-char (region-beginning))
20546 (org-at-item-p))))
20547 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20548 (call-interactively 'org-indent-item))
20549 (t (call-interactively 'forward-word))))
20551 (defun org-check-for-hidden (what)
20552 "Check if there are hidden headlines/items in the current visual line.
20553 WHAT can be either `headlines' or `items'. If the current line is
20554 an outline or item heading and it has a folded subtree below it,
20555 this function returns t, nil otherwise."
20556 (let ((re (cond
20557 ((eq what 'headlines) org-outline-regexp-bol)
20558 ((eq what 'items) (org-item-beginning-re))
20559 (t (error "This should not happen"))))
20560 beg end)
20561 (save-excursion
20562 (catch 'exit
20563 (unless (org-region-active-p)
20564 (setq beg (point-at-bol))
20565 (beginning-of-line 2)
20566 (while (and (not (eobp)) ;; this is like `next-line'
20567 (get-char-property (1- (point)) 'invisible))
20568 (beginning-of-line 2))
20569 (setq end (point))
20570 (goto-char beg)
20571 (goto-char (point-at-eol))
20572 (setq end (max end (point)))
20573 (while (re-search-forward re end t)
20574 (if (get-char-property (match-beginning 0) 'invisible)
20575 (throw 'exit t))))
20576 nil))))
20578 (defun org-metaup (&optional arg)
20579 "Move subtree up or move table row up.
20580 Calls `org-move-subtree-up' or `org-table-move-row' or
20581 `org-move-item-up', depending on context. See the individual commands
20582 for more information."
20583 (interactive "P")
20584 (cond
20585 ((run-hook-with-args-until-success 'org-metaup-hook))
20586 ((org-region-active-p)
20587 (let* ((a (min (region-beginning) (region-end)))
20588 (b (1- (max (region-beginning) (region-end))))
20589 (c (save-excursion (goto-char a)
20590 (move-beginning-of-line 0)))
20591 (d (save-excursion (goto-char a)
20592 (move-end-of-line 0) (point))))
20593 (transpose-regions a b c d)
20594 (goto-char c)))
20595 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20596 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20597 ((org-at-item-p) (call-interactively 'org-move-item-up))
20598 (t (org-drag-element-backward))))
20600 (defun org-metadown (&optional arg)
20601 "Move subtree down or move table row down.
20602 Calls `org-move-subtree-down' or `org-table-move-row' or
20603 `org-move-item-down', depending on context. See the individual
20604 commands for more information."
20605 (interactive "P")
20606 (cond
20607 ((run-hook-with-args-until-success 'org-metadown-hook))
20608 ((org-region-active-p)
20609 (let* ((a (min (region-beginning) (region-end)))
20610 (b (max (region-beginning) (region-end)))
20611 (c (save-excursion (goto-char b)
20612 (move-beginning-of-line 1)))
20613 (d (save-excursion (goto-char b)
20614 (move-end-of-line 1) (1+ (point)))))
20615 (transpose-regions a b c d)
20616 (goto-char d)))
20617 ((org-at-table-p) (call-interactively 'org-table-move-row))
20618 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20619 ((org-at-item-p) (call-interactively 'org-move-item-down))
20620 (t (org-drag-element-forward))))
20622 (defun org-shiftup (&optional arg)
20623 "Increase item in timestamp or increase priority of current headline.
20624 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20625 depending on context. See the individual commands for more information."
20626 (interactive "P")
20627 (cond
20628 ((run-hook-with-args-until-success 'org-shiftup-hook))
20629 ((and org-support-shift-select (org-region-active-p))
20630 (org-call-for-shift-select 'previous-line))
20631 ((org-at-timestamp-p t)
20632 (call-interactively (if org-edit-timestamp-down-means-later
20633 'org-timestamp-down 'org-timestamp-up)))
20634 ((and (not (eq org-support-shift-select 'always))
20635 org-enable-priority-commands
20636 (org-at-heading-p))
20637 (call-interactively 'org-priority-up))
20638 ((and (not org-support-shift-select) (org-at-item-p))
20639 (call-interactively 'org-previous-item))
20640 ((org-clocktable-try-shift 'up arg))
20641 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20642 (org-support-shift-select
20643 (org-call-for-shift-select 'previous-line))
20644 (t (org-shiftselect-error))))
20646 (defun org-shiftdown (&optional arg)
20647 "Decrease item in timestamp or decrease priority of current headline.
20648 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20649 depending on context. See the individual commands for more information."
20650 (interactive "P")
20651 (cond
20652 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20653 ((and org-support-shift-select (org-region-active-p))
20654 (org-call-for-shift-select 'next-line))
20655 ((org-at-timestamp-p t)
20656 (call-interactively (if org-edit-timestamp-down-means-later
20657 'org-timestamp-up 'org-timestamp-down)))
20658 ((and (not (eq org-support-shift-select 'always))
20659 org-enable-priority-commands
20660 (org-at-heading-p))
20661 (call-interactively 'org-priority-down))
20662 ((and (not org-support-shift-select) (org-at-item-p))
20663 (call-interactively 'org-next-item))
20664 ((org-clocktable-try-shift 'down arg))
20665 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20666 (org-support-shift-select
20667 (org-call-for-shift-select 'next-line))
20668 (t (org-shiftselect-error))))
20670 (defun org-shiftright (&optional arg)
20671 "Cycle the thing at point or in the current line, depending on context.
20672 Depending on context, this does one of the following:
20674 - switch a timestamp at point one day into the future
20675 - on a headline, switch to the next TODO keyword.
20676 - on an item, switch entire list to the next bullet type
20677 - on a property line, switch to the next allowed value
20678 - on a clocktable definition line, move time block into the future"
20679 (interactive "P")
20680 (cond
20681 ((run-hook-with-args-until-success 'org-shiftright-hook))
20682 ((and org-support-shift-select (org-region-active-p))
20683 (org-call-for-shift-select 'forward-char))
20684 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20685 ((and (not (eq org-support-shift-select 'always))
20686 (org-at-heading-p))
20687 (let ((org-inhibit-logging
20688 (not org-treat-S-cursor-todo-selection-as-state-change))
20689 (org-inhibit-blocking
20690 (not org-treat-S-cursor-todo-selection-as-state-change)))
20691 (org-call-with-arg 'org-todo 'right)))
20692 ((or (and org-support-shift-select
20693 (not (eq org-support-shift-select 'always))
20694 (org-at-item-bullet-p))
20695 (and (not org-support-shift-select) (org-at-item-p)))
20696 (org-call-with-arg 'org-cycle-list-bullet nil))
20697 ((and (not (eq org-support-shift-select 'always))
20698 (org-at-property-p))
20699 (call-interactively 'org-property-next-allowed-value))
20700 ((org-clocktable-try-shift 'right arg))
20701 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20702 (org-support-shift-select
20703 (org-call-for-shift-select 'forward-char))
20704 (t (org-shiftselect-error))))
20706 (defun org-shiftleft (&optional arg)
20707 "Cycle the thing at point or in the current line, depending on context.
20708 Depending on context, this does one of the following:
20710 - switch a timestamp at point one day into the past
20711 - on a headline, switch to the previous TODO keyword.
20712 - on an item, switch entire list to the previous bullet type
20713 - on a property line, switch to the previous allowed value
20714 - on a clocktable definition line, move time block into the past"
20715 (interactive "P")
20716 (cond
20717 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20718 ((and org-support-shift-select (org-region-active-p))
20719 (org-call-for-shift-select 'backward-char))
20720 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20721 ((and (not (eq org-support-shift-select 'always))
20722 (org-at-heading-p))
20723 (let ((org-inhibit-logging
20724 (not org-treat-S-cursor-todo-selection-as-state-change))
20725 (org-inhibit-blocking
20726 (not org-treat-S-cursor-todo-selection-as-state-change)))
20727 (org-call-with-arg 'org-todo 'left)))
20728 ((or (and org-support-shift-select
20729 (not (eq org-support-shift-select 'always))
20730 (org-at-item-bullet-p))
20731 (and (not org-support-shift-select) (org-at-item-p)))
20732 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20733 ((and (not (eq org-support-shift-select 'always))
20734 (org-at-property-p))
20735 (call-interactively 'org-property-previous-allowed-value))
20736 ((org-clocktable-try-shift 'left arg))
20737 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20738 (org-support-shift-select
20739 (org-call-for-shift-select 'backward-char))
20740 (t (org-shiftselect-error))))
20742 (defun org-shiftcontrolright ()
20743 "Switch to next TODO set."
20744 (interactive)
20745 (cond
20746 ((and org-support-shift-select (org-region-active-p))
20747 (org-call-for-shift-select 'forward-word))
20748 ((and (not (eq org-support-shift-select 'always))
20749 (org-at-heading-p))
20750 (org-call-with-arg 'org-todo 'nextset))
20751 (org-support-shift-select
20752 (org-call-for-shift-select 'forward-word))
20753 (t (org-shiftselect-error))))
20755 (defun org-shiftcontrolleft ()
20756 "Switch to previous TODO set."
20757 (interactive)
20758 (cond
20759 ((and org-support-shift-select (org-region-active-p))
20760 (org-call-for-shift-select 'backward-word))
20761 ((and (not (eq org-support-shift-select 'always))
20762 (org-at-heading-p))
20763 (org-call-with-arg 'org-todo 'previousset))
20764 (org-support-shift-select
20765 (org-call-for-shift-select 'backward-word))
20766 (t (org-shiftselect-error))))
20768 (defun org-shiftcontrolup (&optional n)
20769 "Change timestamps synchronously up in CLOCK log lines.
20770 Optional argument N tells to change by that many units."
20771 (interactive "P")
20772 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20773 (let (org-support-shift-select)
20774 (org-clock-timestamps-up n))
20775 (user-error "Not at a clock log")))
20777 (defun org-shiftcontroldown (&optional n)
20778 "Change timestamps synchronously down in CLOCK log lines.
20779 Optional argument N tells to change by that many units."
20780 (interactive "P")
20781 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20782 (let (org-support-shift-select)
20783 (org-clock-timestamps-down n))
20784 (user-error "Not at a clock log")))
20786 (defun org-increase-number-at-point (&optional inc)
20787 "Increment the number at point.
20788 With an optional prefix numeric argument INC, increment using
20789 this numeric value."
20790 (interactive "p")
20791 (if (not (number-at-point))
20792 (user-error "Not on a number")
20793 (unless inc (setq inc 1))
20794 (let ((pos (point))
20795 (beg (skip-chars-backward "-+^/*0-9eE."))
20796 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20797 (setq nap (buffer-substring-no-properties
20798 (+ pos beg) (+ pos beg end)))
20799 (delete-region (+ pos beg) (+ pos beg end))
20800 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20801 (when (org-at-table-p)
20802 (org-table-align)
20803 (org-table-end-of-field 1))))
20805 (defun org-decrease-number-at-point (&optional inc)
20806 "Decrement the number at point.
20807 With an optional prefix numeric argument INC, decrement using
20808 this numeric value."
20809 (interactive "p")
20810 (org-increase-number-at-point (- inc)))
20812 (defun org-ctrl-c-ret ()
20813 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20814 (interactive)
20815 (cond
20816 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20817 (t (call-interactively 'org-insert-heading))))
20819 (defun org-find-visible ()
20820 (let ((s (point)))
20821 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20822 (get-char-property s 'invisible)))
20824 (defun org-find-invisible ()
20825 (let ((s (point)))
20826 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20827 (not (get-char-property s 'invisible))))
20830 (defun org-copy-visible (beg end)
20831 "Copy the visible parts of the region."
20832 (interactive "r")
20833 (let (snippets s)
20834 (save-excursion
20835 (save-restriction
20836 (narrow-to-region beg end)
20837 (setq s (goto-char (point-min)))
20838 (while (not (= (point) (point-max)))
20839 (goto-char (org-find-invisible))
20840 (push (buffer-substring s (point)) snippets)
20841 (setq s (goto-char (org-find-visible))))))
20842 (kill-new (apply 'concat (nreverse snippets)))))
20844 (defun org-copy-special ()
20845 "Copy region in table or copy current subtree.
20846 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20847 See the individual commands for more information."
20848 (interactive)
20849 (call-interactively
20850 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20852 (defun org-cut-special ()
20853 "Cut region in table or cut current subtree.
20854 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20855 See the individual commands for more information."
20856 (interactive)
20857 (call-interactively
20858 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20860 (defun org-paste-special (arg)
20861 "Paste rectangular region into table, or past subtree relative to level.
20862 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20863 See the individual commands for more information."
20864 (interactive "P")
20865 (if (org-at-table-p)
20866 (org-table-paste-rectangle)
20867 (org-paste-subtree arg)))
20869 (defsubst org-in-fixed-width-region-p ()
20870 "Is point in a fixed-width region?"
20871 (save-match-data
20872 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20874 (defun org-edit-special (&optional arg)
20875 "Call a special editor for the element at point.
20876 When at a table, call the formula editor with `org-table-edit-formulas'.
20877 When in a source code block, call `org-edit-src-code'.
20878 When in a fixed-width region, call `org-edit-fixed-width-region'.
20879 When in an export block, call `org-edit-export-block'.
20880 When at an #+INCLUDE keyword, visit the included file.
20881 When at a footnote reference, call `org-edit-footnote-reference'
20882 On a link, call `ffap' to visit the link at point.
20883 Otherwise, return a user error."
20884 (interactive "P")
20885 (let ((element (org-element-at-point)))
20886 (assert (not buffer-read-only) nil
20887 "Buffer is read-only: %s" (buffer-name))
20888 (case (org-element-type element)
20889 (src-block
20890 (if (not arg) (org-edit-src-code)
20891 (let* ((info (org-babel-get-src-block-info))
20892 (lang (nth 0 info))
20893 (params (nth 2 info))
20894 (session (cdr (assq :session params))))
20895 (if (not session) (org-edit-src-code)
20896 ;; At a src-block with a session and function called with
20897 ;; an ARG: switch to the buffer related to the inferior
20898 ;; process.
20899 (switch-to-buffer
20900 (funcall (intern (concat "org-babel-prep-session:" lang))
20901 session params))))))
20902 (keyword
20903 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20904 (org-open-link-from-string
20905 (format "[[%s]]"
20906 (expand-file-name
20907 (let ((value (org-element-property :value element)))
20908 (cond ((not (org-string-nw-p value))
20909 (user-error "No file to edit"))
20910 ((string-match "\\`\"\\(.*?\\)\"" value)
20911 (match-string 1 value))
20912 ((string-match "\\`[^ \t\"]\\S-*" value)
20913 (match-string 0 value))
20914 (t (user-error "No valid file specified")))))))
20915 (user-error "No special environment to edit here")))
20916 (table
20917 (if (eq (org-element-property :type element) 'table.el)
20918 (org-edit-table.el)
20919 (call-interactively 'org-table-edit-formulas)))
20920 ;; Only Org tables contain `table-row' type elements.
20921 (table-row (call-interactively 'org-table-edit-formulas))
20922 (example-block (org-edit-src-code))
20923 (export-block (org-edit-export-block))
20924 (fixed-width (org-edit-fixed-width-region))
20925 (otherwise
20926 ;; No notable element at point. Though, we may be at a link or
20927 ;; a footnote reference, which are objects. Thus, scan deeper.
20928 (let ((context (org-element-context element)))
20929 (case (org-element-type context)
20930 (link (call-interactively #'ffap))
20931 (footnote-reference (org-edit-footnote-reference))
20932 (t (user-error "No special environment to edit here"))))))))
20934 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20935 (defun org-ctrl-c-ctrl-c (&optional arg)
20936 "Set tags in headline, or update according to changed information at point.
20938 This command does many different things, depending on context:
20940 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20941 this is what we do.
20943 - If the cursor is on a statistics cookie, update it.
20945 - If the cursor is in a headline, prompt for tags and insert them
20946 into the current line, aligned to `org-tags-column'. When called
20947 with prefix arg, realign all tags in the current buffer.
20949 - If the cursor is in one of the special #+KEYWORD lines, this
20950 triggers scanning the buffer for these lines and updating the
20951 information.
20953 - If the cursor is inside a table, realign the table. This command
20954 works even if the automatic table editor has been turned off.
20956 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20957 the entire table.
20959 - If the cursor is at a footnote reference or definition, jump to
20960 the corresponding definition or references, respectively.
20962 - If the cursor is a the beginning of a dynamic block, update it.
20964 - If the current buffer is a capture buffer, close note and file it.
20966 - If the cursor is on a <<<target>>>, update radio targets and
20967 corresponding links in this buffer.
20969 - If the cursor is on a numbered item in a plain list, renumber the
20970 ordered list.
20972 - If the cursor is on a checkbox, toggle it.
20974 - If the cursor is on a code block, evaluate it. The variable
20975 `org-confirm-babel-evaluate' can be used to control prompting
20976 before code block evaluation, by default every code block
20977 evaluation requires confirmation. Code block evaluation can be
20978 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20979 (interactive "P")
20980 (cond
20981 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20982 org-occur-highlights)
20983 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20984 (org-remove-occur-highlights)
20985 (message "Temporary highlights/overlays removed from current buffer"))
20986 ((and (local-variable-p 'org-finish-function (current-buffer))
20987 (fboundp org-finish-function))
20988 (funcall org-finish-function))
20989 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20991 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20992 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20993 (user-error "C-c C-c can do nothing useful at this location"))
20994 (let* ((context (org-element-context))
20995 (type (org-element-type context)))
20996 (case type
20997 ;; When at a link, act according to the parent instead.
20998 (link (setq context (org-element-property :parent context))
20999 (setq type (org-element-type context)))
21000 ;; Unsupported object types: refer to the first supported
21001 ;; element or object containing it.
21002 ((bold code entity export-snippet inline-babel-call inline-src-block
21003 italic latex-fragment line-break macro strike-through subscript
21004 superscript underline verbatim)
21005 (setq context
21006 (org-element-lineage
21007 context '(radio-target paragraph verse-block table-cell)))))
21008 ;; For convenience: at the first line of a paragraph on the
21009 ;; same line as an item, apply function on that item instead.
21010 (when (eq type 'paragraph)
21011 (let ((parent (org-element-property :parent context)))
21012 (when (and (eq (org-element-type parent) 'item)
21013 (= (line-beginning-position)
21014 (org-element-property :begin parent)))
21015 (setq context parent type 'item))))
21016 ;; Act according to type of element or object at point.
21017 (case type
21018 (clock (org-clock-update-time-maybe))
21019 (dynamic-block
21020 (save-excursion
21021 (goto-char (org-element-property :post-affiliated context))
21022 (org-update-dblock)))
21023 (footnote-definition
21024 (goto-char (org-element-property :post-affiliated context))
21025 (call-interactively 'org-footnote-action))
21026 (footnote-reference (call-interactively 'org-footnote-action))
21027 ((headline inlinetask)
21028 (save-excursion (goto-char (org-element-property :begin context))
21029 (call-interactively 'org-set-tags)))
21030 (item
21031 ;; At an item: a double C-u set checkbox to "[-]"
21032 ;; unconditionally, whereas a single one will toggle its
21033 ;; presence. Without an universal argument, if the item
21034 ;; has a checkbox, toggle it. Otherwise repair the list.
21035 (let* ((box (org-element-property :checkbox context))
21036 (struct (org-element-property :structure context))
21037 (old-struct (copy-tree struct))
21038 (parents (org-list-parents-alist struct))
21039 (prevs (org-list-prevs-alist struct))
21040 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21041 (org-list-set-checkbox
21042 (org-element-property :begin context) struct
21043 (cond ((equal arg '(16)) "[-]")
21044 ((and (not box) (equal arg '(4))) "[ ]")
21045 ((or (not box) (equal arg '(4))) nil)
21046 ((eq box 'on) "[ ]")
21047 (t "[X]")))
21048 ;; Mimic `org-list-write-struct' but with grabbing
21049 ;; a return value from `org-list-struct-fix-box'.
21050 (org-list-struct-fix-ind struct parents 2)
21051 (org-list-struct-fix-item-end struct)
21052 (org-list-struct-fix-bul struct prevs)
21053 (org-list-struct-fix-ind struct parents)
21054 (let ((block-item
21055 (org-list-struct-fix-box struct parents prevs orderedp)))
21056 (if (and box (equal struct old-struct))
21057 (if (equal arg '(16))
21058 (message "Checkboxes already reset")
21059 (user-error "Cannot toggle this checkbox: %s"
21060 (if (eq box 'on)
21061 "all subitems checked"
21062 "unchecked subitems")))
21063 (org-list-struct-apply-struct struct old-struct)
21064 (org-update-checkbox-count-maybe))
21065 (when block-item
21066 (message "Checkboxes were removed due to empty box at line %d"
21067 (org-current-line block-item))))))
21068 (keyword
21069 (let ((org-inhibit-startup-visibility-stuff t)
21070 (org-startup-align-all-tables nil))
21071 (when (boundp 'org-table-coordinate-overlays)
21072 (mapc 'delete-overlay org-table-coordinate-overlays)
21073 (setq org-table-coordinate-overlays nil))
21074 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21075 (message "Local setup has been refreshed"))
21076 (plain-list
21077 ;; At a plain list, with a double C-u argument, set
21078 ;; checkboxes of each item to "[-]", whereas a single one
21079 ;; will toggle their presence according to the state of the
21080 ;; first item in the list. Without an argument, repair the
21081 ;; list.
21082 (let* ((begin (org-element-property :contents-begin context))
21083 (beginm (move-marker (make-marker) begin))
21084 (struct (org-element-property :structure context))
21085 (old-struct (copy-tree struct))
21086 (first-box (save-excursion
21087 (goto-char begin)
21088 (looking-at org-list-full-item-re)
21089 (match-string-no-properties 3)))
21090 (new-box (cond ((equal arg '(16)) "[-]")
21091 ((equal arg '(4)) (unless first-box "[ ]"))
21092 ((equal first-box "[X]") "[ ]")
21093 (t "[X]"))))
21094 (cond
21095 (arg
21096 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21097 (org-list-get-all-items
21098 begin struct (org-list-prevs-alist struct))))
21099 ((and first-box (eq (point) begin))
21100 ;; For convenience, when point is at bol on the first
21101 ;; item of the list and no argument is provided, simply
21102 ;; toggle checkbox of that item, if any.
21103 (org-list-set-checkbox begin struct new-box)))
21104 (org-list-write-struct
21105 struct (org-list-parents-alist struct) old-struct)
21106 (org-update-checkbox-count-maybe)
21107 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21108 ((property-drawer node-property)
21109 (call-interactively 'org-property-action))
21110 ((radio-target target)
21111 (call-interactively 'org-update-radio-target-regexp))
21112 (statistics-cookie
21113 (call-interactively 'org-update-statistics-cookies))
21114 ((table table-cell table-row)
21115 ;; At a table, recalculate every field and align it. Also
21116 ;; send the table if necessary. If the table has
21117 ;; a `table.el' type, just give up. At a table row or
21118 ;; cell, maybe recalculate line but always align table.
21119 (if (eq (org-element-property :type context) 'table.el)
21120 (message "Use C-c ' to edit table.el tables")
21121 (let ((org-enable-table-editor t))
21122 (if (or (eq type 'table)
21123 ;; Check if point is at a TBLFM line.
21124 (and (eq type 'table-row)
21125 (= (point) (org-element-property :end context))))
21126 (save-excursion
21127 (if (org-at-TBLFM-p)
21128 (progn (require 'org-table)
21129 (org-table-calc-current-TBLFM))
21130 (goto-char (org-element-property :contents-begin context))
21131 (org-call-with-arg 'org-table-recalculate (or arg t))
21132 (orgtbl-send-table 'maybe)))
21133 (org-table-maybe-eval-formula)
21134 (cond (arg (call-interactively 'org-table-recalculate))
21135 ((org-table-maybe-recalculate-line))
21136 (t (org-table-align)))))))
21137 (timestamp (org-timestamp-change 0 'day))
21138 (otherwise
21139 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21140 (user-error
21141 "C-c C-c can do nothing useful at this location")))))))))
21143 (defun org-mode-restart ()
21144 (interactive)
21145 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21146 (funcall major-mode)
21147 (hack-local-variables)
21148 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21149 (org-indent-mode -1)))
21150 (message "%s restarted" major-mode))
21152 (defun org-kill-note-or-show-branches ()
21153 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21154 (interactive)
21155 (if (not org-finish-function)
21156 (progn
21157 (hide-subtree)
21158 (call-interactively 'show-branches))
21159 (let ((org-note-abort t))
21160 (funcall org-finish-function))))
21162 (defun org-open-line (n)
21163 "Insert a new row in tables, call `open-line' elsewhere.
21164 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21165 (interactive "*p")
21166 (cond
21167 ((not org-special-ctrl-o)
21168 (open-line n))
21169 ((org-at-table-p)
21170 (org-table-insert-row))
21172 (open-line n))))
21174 (defun org-return (&optional indent)
21175 "Goto next table row or insert a newline.
21177 Calls `org-table-next-row' or `newline', depending on context.
21179 When optional INDENT argument is non-nil, call
21180 `newline-and-indent' instead of `newline'.
21182 When `org-return-follows-link' is non-nil and point is on
21183 a timestamp or a link, call `org-open-at-point'. However, it
21184 will not happen if point is in a table or on a \"dead\"
21185 object (e.g., within a comment). In these case, you need to use
21186 `org-open-at-point' directly."
21187 (interactive)
21188 (if (and (not (bolp))
21189 (save-excursion (beginning-of-line)
21190 (looking-at org-complex-heading-regexp)))
21191 ;; At headline.
21192 (let ((tags-column (when (match-beginning 5)
21193 (save-excursion (goto-char (match-beginning 5))
21194 (current-column))))
21195 ;; Test if before or after headline title.
21196 (string (when (not (or (< (point)
21197 (or (match-end 3)
21198 (match-end 2)
21199 (save-excursion
21200 (goto-char (match-beginning 4))
21201 (skip-chars-backward " \t")
21202 (point))))
21203 (and (match-beginning 5)
21204 (>= (point) (match-beginning 5)))))
21205 ;; Point is on headline keywords, tags or cookies. Do not break
21206 ;; them: add a newline after the headline instead.
21207 (org-string-nw-p
21208 (delete-and-extract-region (point) (match-end 4))))))
21209 ;; Adjust alignment of tags.
21210 (when (and tags-column string)
21211 (org-align-tags-here (if org-auto-align-tags
21212 org-tags-column
21213 tags-column)))
21214 (end-of-line)
21215 (org-show-entry)
21216 (if indent (newline-and-indent) (newline))
21217 (and string (save-excursion (insert (org-trim string)))))
21218 (let* ((context (if org-return-follows-link (org-element-context)
21219 (org-element-at-point)))
21220 (type (org-element-type context)))
21221 (cond
21222 ;; In a table, call `org-table-next-row'.
21223 ((or (and (eq type 'table)
21224 (>= (point) (org-element-property :contents-begin context))
21225 (< (point) (org-element-property :contents-end context)))
21226 (org-element-lineage context '(table-row table-cell) t))
21227 (org-table-justify-field-maybe)
21228 (call-interactively #'org-table-next-row))
21229 ;; On a link or a timestamp but not on white spaces after it,
21230 ;; call `org-open-line' if `org-return-follows-link' allows it.
21231 ((and org-return-follows-link
21232 (memq type '(link timestamp))
21233 (< (point)
21234 (save-excursion (goto-char (org-element-property :end context))
21235 (skip-chars-backward " \t")
21236 (point))))
21237 (call-interactively #'org-open-at-point))
21238 ;; In a list, make sure indenting keeps trailing text within.
21239 ((and indent
21240 (not (eolp))
21241 (org-element-lineage context '(item)))
21242 (let ((trailing-data
21243 (delete-and-extract-region (point) (line-end-position))))
21244 (newline-and-indent)
21245 (save-excursion (insert trailing-data))))
21246 (t (if indent (newline-and-indent) (newline)))))))
21248 (defun org-return-indent ()
21249 "Goto next table row or insert a newline and indent.
21250 Calls `org-table-next-row' or `newline-and-indent', depending on
21251 context. See the individual commands for more information."
21252 (interactive)
21253 (org-return t))
21255 (defun org-ctrl-c-star ()
21256 "Compute table, or change heading status of lines.
21257 Calls `org-table-recalculate' or `org-toggle-heading',
21258 depending on context."
21259 (interactive)
21260 (cond
21261 ((org-at-table-p)
21262 (call-interactively 'org-table-recalculate))
21264 ;; Convert all lines in region to list items
21265 (call-interactively 'org-toggle-heading))))
21267 (defun org-ctrl-c-minus ()
21268 "Insert separator line in table or modify bullet status of line.
21269 Also turns a plain line or a region of lines into list items.
21270 Calls `org-table-insert-hline', `org-toggle-item', or
21271 `org-cycle-list-bullet', depending on context."
21272 (interactive)
21273 (cond
21274 ((org-at-table-p)
21275 (call-interactively 'org-table-insert-hline))
21276 ((org-region-active-p)
21277 (call-interactively 'org-toggle-item))
21278 ((org-in-item-p)
21279 (call-interactively 'org-cycle-list-bullet))
21281 (call-interactively 'org-toggle-item))))
21283 (defun org-toggle-item (arg)
21284 "Convert headings or normal lines to items, items to normal lines.
21285 If there is no active region, only the current line is considered.
21287 If the first non blank line in the region is a headline, convert
21288 all headlines to items, shifting text accordingly.
21290 If it is an item, convert all items to normal lines.
21292 If it is normal text, change region into a list of items.
21293 With a prefix argument ARG, change the region in a single item."
21294 (interactive "P")
21295 (let ((shift-text
21296 (function
21297 ;; Shift text in current section to IND, from point to END.
21298 ;; The function leaves point to END line.
21299 (lambda (ind end)
21300 (let ((min-i 1000) (end (copy-marker end)))
21301 ;; First determine the minimum indentation (MIN-I) of
21302 ;; the text.
21303 (save-excursion
21304 (catch 'exit
21305 (while (< (point) end)
21306 (let ((i (org-get-indentation)))
21307 (cond
21308 ;; Skip blank lines and inline tasks.
21309 ((looking-at "^[ \t]*$"))
21310 ((looking-at org-outline-regexp-bol))
21311 ;; We can't find less than 0 indentation.
21312 ((zerop i) (throw 'exit (setq min-i 0)))
21313 ((< i min-i) (setq min-i i))))
21314 (forward-line))))
21315 ;; Then indent each line so that a line indented to
21316 ;; MIN-I becomes indented to IND. Ignore blank lines
21317 ;; and inline tasks in the process.
21318 (let ((delta (- ind min-i)))
21319 (while (< (point) end)
21320 (unless (or (looking-at "^[ \t]*$")
21321 (looking-at org-outline-regexp-bol))
21322 (org-indent-line-to (+ (org-get-indentation) delta)))
21323 (forward-line)))))))
21324 (skip-blanks
21325 (function
21326 ;; Return beginning of first non-blank line, starting from
21327 ;; line at POS.
21328 (lambda (pos)
21329 (save-excursion
21330 (goto-char pos)
21331 (skip-chars-forward " \r\t\n")
21332 (point-at-bol)))))
21333 beg end)
21334 ;; Determine boundaries of changes.
21335 (if (org-region-active-p)
21336 (setq beg (funcall skip-blanks (region-beginning))
21337 end (copy-marker (region-end)))
21338 (setq beg (funcall skip-blanks (point-at-bol))
21339 end (copy-marker (point-at-eol))))
21340 ;; Depending on the starting line, choose an action on the text
21341 ;; between BEG and END.
21342 (org-with-limited-levels
21343 (save-excursion
21344 (goto-char beg)
21345 (cond
21346 ;; Case 1. Start at an item: de-itemize. Note that it only
21347 ;; happens when a region is active: `org-ctrl-c-minus'
21348 ;; would call `org-cycle-list-bullet' otherwise.
21349 ((org-at-item-p)
21350 (while (< (point) end)
21351 (when (org-at-item-p)
21352 (skip-chars-forward " \t")
21353 (delete-region (point) (match-end 0)))
21354 (forward-line)))
21355 ;; Case 2. Start at an heading: convert to items.
21356 ((org-at-heading-p)
21357 (let* ((bul (org-list-bullet-string "-"))
21358 (bul-len (length bul))
21359 (done (org-entry-is-done-p))
21360 (todo (org-entry-is-todo-p))
21361 ;; Indentation of the first heading. It should be
21362 ;; relative to the indentation of its parent, if any.
21363 (start-ind (save-excursion
21364 (cond
21365 ((not org-adapt-indentation) 0)
21366 ((not (outline-previous-heading)) 0)
21367 (t (length (match-string 0))))))
21368 ;; Level of first heading. Further headings will be
21369 ;; compared to it to determine hierarchy in the list.
21370 (ref-level (org-reduced-level (org-outline-level))))
21371 (when (or done todo) (org-todo ""))
21372 (while (< (point) end)
21373 (let* ((level (org-reduced-level (org-outline-level)))
21374 (delta (max 0 (- level ref-level))))
21375 ;; If current headline is less indented than the first
21376 ;; one, set it as reference, in order to preserve
21377 ;; subtrees.
21378 (when (< level ref-level) (setq ref-level level))
21379 (replace-match bul t t)
21380 (org-indent-line-to (+ start-ind (* delta bul-len)))
21381 (when (or done todo)
21382 (let* ((struct (org-list-struct))
21383 (old (copy-tree struct)))
21384 (org-list-set-checkbox (line-beginning-position)
21385 struct
21386 (if done "[X]" "[ ]"))
21387 (org-list-write-struct struct
21388 (org-list-parents-alist struct)
21389 old)))
21390 ;; Ensure all text down to END (or SECTION-END) belongs
21391 ;; to the newly created item.
21392 (let ((section-end (save-excursion
21393 (or (outline-next-heading) (point)))))
21394 (forward-line)
21395 (funcall shift-text
21396 (+ start-ind (* (1+ delta) bul-len))
21397 (min end section-end)))))))
21398 ;; Case 3. Normal line with ARG: make the first line of region
21399 ;; an item, and shift indentation of others lines to
21400 ;; set them as item's body.
21401 (arg (let* ((bul (org-list-bullet-string "-"))
21402 (bul-len (length bul))
21403 (ref-ind (org-get-indentation)))
21404 (skip-chars-forward " \t")
21405 (insert bul)
21406 (forward-line)
21407 (while (< (point) end)
21408 ;; Ensure that lines less indented than first one
21409 ;; still get included in item body.
21410 (funcall shift-text
21411 (+ ref-ind bul-len)
21412 (min end (save-excursion (or (outline-next-heading)
21413 (point)))))
21414 (forward-line))))
21415 ;; Case 4. Normal line without ARG: turn each non-item line
21416 ;; into an item.
21418 (while (< (point) end)
21419 (unless (or (org-at-heading-p) (org-at-item-p))
21420 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21421 (replace-match
21422 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21423 (forward-line))))))))
21425 (defun org-toggle-heading (&optional nstars)
21426 "Convert headings to normal text, or items or text to headings.
21427 If there is no active region, only convert the current line.
21429 With a \\[universal-argument] prefix, convert the whole list at
21430 point into heading.
21432 In a region:
21434 - If the first non blank line is a headline, remove the stars
21435 from all headlines in the region.
21437 - If it is a normal line, turn each and every normal line (i.e.,
21438 not an heading or an item) in the region into headings. If you
21439 want to convert only the first line of this region, use one
21440 universal prefix argument.
21442 - If it is a plain list item, turn all plain list items into headings.
21444 When converting a line into a heading, the number of stars is chosen
21445 such that the lines become children of the current entry. However,
21446 when a numeric prefix argument is given, its value determines the
21447 number of stars to add."
21448 (interactive "P")
21449 (let ((skip-blanks
21450 (function
21451 ;; Return beginning of first non-blank line, starting from
21452 ;; line at POS.
21453 (lambda (pos)
21454 (save-excursion
21455 (goto-char pos)
21456 (while (org-at-comment-p) (forward-line))
21457 (skip-chars-forward " \r\t\n")
21458 (point-at-bol)))))
21459 beg end toggled)
21460 ;; Determine boundaries of changes. If a universal prefix has
21461 ;; been given, put the list in a region. If region ends at a bol,
21462 ;; do not consider the last line to be in the region.
21464 (when (and current-prefix-arg (org-at-item-p))
21465 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21466 (org-mark-element))
21468 (if (org-region-active-p)
21469 (setq beg (funcall skip-blanks (region-beginning))
21470 end (copy-marker (save-excursion
21471 (goto-char (region-end))
21472 (if (bolp) (point) (point-at-eol)))))
21473 (setq beg (funcall skip-blanks (point-at-bol))
21474 end (copy-marker (point-at-eol))))
21475 ;; Ensure inline tasks don't count as headings.
21476 (org-with-limited-levels
21477 (save-excursion
21478 (goto-char beg)
21479 (cond
21480 ;; Case 1. Started at an heading: de-star headings.
21481 ((org-at-heading-p)
21482 (while (< (point) end)
21483 (when (org-at-heading-p t)
21484 (looking-at org-outline-regexp) (replace-match "")
21485 (setq toggled t))
21486 (forward-line)))
21487 ;; Case 2. Started at an item: change items into headlines.
21488 ;; One star will be added by `org-list-to-subtree'.
21489 ((org-at-item-p)
21490 (while (< (point) end)
21491 (when (org-at-item-p)
21492 ;; Pay attention to cases when region ends before list.
21493 (let* ((struct (org-list-struct))
21494 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21495 (save-restriction
21496 (narrow-to-region (point) list-end)
21497 (insert (org-list-to-subtree (org-list-parse-list t)))))
21498 (setq toggled t))
21499 (forward-line)))
21500 ;; Case 3. Started at normal text: make every line an heading,
21501 ;; skipping headlines and items.
21502 (t (let* ((stars
21503 (make-string
21504 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21505 (add-stars
21506 (cond (nstars "") ; stars from prefix only
21507 ((equal stars "") "*") ; before first heading
21508 (org-odd-levels-only "**") ; inside heading, odd
21509 (t "*"))) ; inside heading, oddeven
21510 (rpl (concat stars add-stars " "))
21511 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21512 (while (< (point) (if (equal nstars '(4)) lend end))
21513 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21514 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21515 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21516 (forward-line)))))))
21517 (unless toggled (message "Cannot toggle heading from here"))))
21519 (defun org-meta-return (&optional arg)
21520 "Insert a new heading or wrap a region in a table.
21521 Calls `org-insert-heading' or `org-table-wrap-region', depending
21522 on context. See the individual commands for more information."
21523 (interactive "P")
21524 (org-check-before-invisible-edit 'insert)
21525 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21526 (let* ((element (org-element-at-point))
21527 (type (org-element-type element)))
21528 (when (eq type 'table-row)
21529 (setq element (org-element-property :parent element))
21530 (setq type 'table))
21531 (if (and (eq type 'table)
21532 (eq (org-element-property :type element) 'org)
21533 (>= (point) (org-element-property :contents-begin element))
21534 (< (point) (org-element-property :contents-end element)))
21535 (call-interactively 'org-table-wrap-region)
21536 (call-interactively 'org-insert-heading)))))
21538 ;;; Menu entries
21540 (defsubst org-in-subtree-not-table-p ()
21541 "Are we in a subtree and not in a table?"
21542 (and (not (org-before-first-heading-p))
21543 (not (org-at-table-p))))
21545 ;; Define the Org-mode menus
21546 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21547 '("Tbl"
21548 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21549 ["Next Field" org-cycle (org-at-table-p)]
21550 ["Previous Field" org-shifttab (org-at-table-p)]
21551 ["Next Row" org-return (org-at-table-p)]
21552 "--"
21553 ["Blank Field" org-table-blank-field (org-at-table-p)]
21554 ["Edit Field" org-table-edit-field (org-at-table-p)]
21555 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21556 "--"
21557 ("Column"
21558 ["Move Column Left" org-metaleft (org-at-table-p)]
21559 ["Move Column Right" org-metaright (org-at-table-p)]
21560 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21561 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21562 ("Row"
21563 ["Move Row Up" org-metaup (org-at-table-p)]
21564 ["Move Row Down" org-metadown (org-at-table-p)]
21565 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21566 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21567 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21568 "--"
21569 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21570 ("Rectangle"
21571 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21572 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21573 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21574 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21575 "--"
21576 ("Calculate"
21577 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21578 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21579 ["Edit Formulas" org-edit-special (org-at-table-p)]
21580 "--"
21581 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21582 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21583 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21584 "--"
21585 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21586 "--"
21587 ["Sum Column/Rectangle" org-table-sum
21588 (or (org-at-table-p) (org-region-active-p))]
21589 ["Which Column?" org-table-current-column (org-at-table-p)])
21590 ["Debug Formulas"
21591 org-table-toggle-formula-debugger
21592 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21593 ["Show Col/Row Numbers"
21594 org-table-toggle-coordinate-overlays
21595 :style toggle
21596 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21597 "--"
21598 ["Create" org-table-create (and (not (org-at-table-p))
21599 org-enable-table-editor)]
21600 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21601 ["Import from File" org-table-import (not (org-at-table-p))]
21602 ["Export to File" org-table-export (org-at-table-p)]
21603 "--"
21604 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21605 "--"
21606 ("Plot"
21607 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21608 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21610 (easy-menu-define org-org-menu org-mode-map "Org menu"
21611 '("Org"
21612 ("Show/Hide"
21613 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21614 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21615 ["Sparse Tree..." org-sparse-tree t]
21616 ["Reveal Context" org-reveal t]
21617 ["Show All" show-all t]
21618 "--"
21619 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21620 "--"
21621 ["New Heading" org-insert-heading t]
21622 ("Navigate Headings"
21623 ["Up" outline-up-heading t]
21624 ["Next" outline-next-visible-heading t]
21625 ["Previous" outline-previous-visible-heading t]
21626 ["Next Same Level" outline-forward-same-level t]
21627 ["Previous Same Level" outline-backward-same-level t]
21628 "--"
21629 ["Jump" org-goto t])
21630 ("Edit Structure"
21631 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21632 "--"
21633 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21634 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21635 "--"
21636 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21637 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21638 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21639 "--"
21640 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21641 "--"
21642 ["Copy visible text" org-copy-visible t]
21643 "--"
21644 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21645 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21646 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21647 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21648 "--"
21649 ["Sort Region/Children" org-sort t]
21650 "--"
21651 ["Convert to odd levels" org-convert-to-odd-levels t]
21652 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21653 ("Editing"
21654 ["Emphasis..." org-emphasize t]
21655 ["Edit Source Example" org-edit-special t]
21656 "--"
21657 ["Footnote new/jump" org-footnote-action t]
21658 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21659 ("Archive"
21660 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21661 "--"
21662 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21663 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21664 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21666 "--"
21667 ("Hyperlinks"
21668 ["Store Link (Global)" org-store-link t]
21669 ["Find existing link to here" org-occur-link-in-agenda-files t]
21670 ["Insert Link" org-insert-link t]
21671 ["Follow Link" org-open-at-point t]
21672 "--"
21673 ["Next link" org-next-link t]
21674 ["Previous link" org-previous-link t]
21675 "--"
21676 ["Descriptive Links"
21677 org-toggle-link-display
21678 :style radio
21679 :selected org-descriptive-links
21681 ["Literal Links"
21682 org-toggle-link-display
21683 :style radio
21684 :selected (not org-descriptive-links)])
21685 "--"
21686 ("TODO Lists"
21687 ["TODO/DONE/-" org-todo t]
21688 ("Select keyword"
21689 ["Next keyword" org-shiftright (org-at-heading-p)]
21690 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21691 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21692 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21693 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21694 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21695 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21696 "--"
21697 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21698 :selected org-enforce-todo-dependencies :style toggle :active t]
21699 "Settings for tree at point"
21700 ["Do Children sequentially" org-toggle-ordered-property :style radio
21701 :selected (org-entry-get nil "ORDERED")
21702 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21703 ["Do Children parallel" org-toggle-ordered-property :style radio
21704 :selected (not (org-entry-get nil "ORDERED"))
21705 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21706 "--"
21707 ["Set Priority" org-priority t]
21708 ["Priority Up" org-shiftup t]
21709 ["Priority Down" org-shiftdown t]
21710 "--"
21711 ["Get news from all feeds" org-feed-update-all t]
21712 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21713 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21714 ("TAGS and Properties"
21715 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21716 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21717 "--"
21718 ["Set property" org-set-property (not (org-before-first-heading-p))]
21719 ["Column view of properties" org-columns t]
21720 ["Insert Column View DBlock" org-insert-columns-dblock t])
21721 ("Dates and Scheduling"
21722 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21723 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21724 ("Change Date"
21725 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21726 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21727 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21728 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21729 ["Compute Time Range" org-evaluate-time-range t]
21730 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21731 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21732 "--"
21733 ["Custom time format" org-toggle-time-stamp-overlays
21734 :style radio :selected org-display-custom-times]
21735 "--"
21736 ["Goto Calendar" org-goto-calendar t]
21737 ["Date from Calendar" org-date-from-calendar t]
21738 "--"
21739 ["Start/Restart Timer" org-timer-start t]
21740 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21741 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21742 ["Insert Timer String" org-timer t]
21743 ["Insert Timer Item" org-timer-item t])
21744 ("Logging work"
21745 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21746 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21747 ["Clock out" org-clock-out t]
21748 ["Clock cancel" org-clock-cancel t]
21749 "--"
21750 ["Mark as default task" org-clock-mark-default-task t]
21751 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21752 ["Goto running clock" org-clock-goto t]
21753 "--"
21754 ["Display times" org-clock-display t]
21755 ["Create clock table" org-clock-report t]
21756 "--"
21757 ["Record DONE time"
21758 (progn (setq org-log-done (not org-log-done))
21759 (message "Switching to %s will %s record a timestamp"
21760 (car org-done-keywords)
21761 (if org-log-done "automatically" "not")))
21762 :style toggle :selected org-log-done])
21763 "--"
21764 ["Agenda Command..." org-agenda t]
21765 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21766 ("File List for Agenda")
21767 ("Special views current file"
21768 ["TODO Tree" org-show-todo-tree t]
21769 ["Check Deadlines" org-check-deadlines t]
21770 ["Timeline" org-timeline t]
21771 ["Tags/Property tree" org-match-sparse-tree t])
21772 "--"
21773 ["Export/Publish..." org-export-dispatch t]
21774 ("LaTeX"
21775 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21776 :selected org-cdlatex-mode]
21777 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21778 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21779 ["Modify math symbol" org-cdlatex-math-modify
21780 (org-inside-LaTeX-fragment-p)]
21781 ["Insert citation" org-reftex-citation t]
21782 "--"
21783 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21784 "--"
21785 ("MobileOrg"
21786 ["Push Files and Views" org-mobile-push t]
21787 ["Get Captured and Flagged" org-mobile-pull t]
21788 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21789 "--"
21790 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21791 "--"
21792 ("Documentation"
21793 ["Show Version" org-version t]
21794 ["Info Documentation" org-info t])
21795 ("Customize"
21796 ["Browse Org Group" org-customize t]
21797 "--"
21798 ["Expand This Menu" org-create-customize-menu
21799 (fboundp 'customize-menu-create)])
21800 ["Send bug report" org-submit-bug-report t]
21801 "--"
21802 ("Refresh/Reload"
21803 ["Refresh setup current buffer" org-mode-restart t]
21804 ["Reload Org (after update)" org-reload t]
21805 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21808 (defun org-info (&optional node)
21809 "Read documentation for Org-mode in the info system.
21810 With optional NODE, go directly to that node."
21811 (interactive)
21812 (info (format "(org)%s" (or node ""))))
21814 ;;;###autoload
21815 (defun org-submit-bug-report ()
21816 "Submit a bug report on Org-mode via mail.
21818 Don't hesitate to report any problems or inaccurate documentation.
21820 If you don't have setup sending mail from (X)Emacs, please copy the
21821 output buffer into your mail program, as it gives us important
21822 information about your Org-mode version and configuration."
21823 (interactive)
21824 (require 'reporter)
21825 (org-load-modules-maybe)
21826 (org-require-autoloaded-modules)
21827 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21828 (reporter-submit-bug-report
21829 "emacs-orgmode@gnu.org"
21830 (org-version nil 'full)
21831 (let (list)
21832 (save-window-excursion
21833 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21834 (delete-other-windows)
21835 (erase-buffer)
21836 (insert "You are about to submit a bug report to the Org-mode mailing list.
21838 We would like to add your full Org-mode and Outline configuration to the
21839 bug report. This greatly simplifies the work of the maintainer and
21840 other experts on the mailing list.
21842 HOWEVER, some variables you have customized may contain private
21843 information. The names of customers, colleagues, or friends, might
21844 appear in the form of file names, tags, todo states, or search strings.
21845 If you answer yes to the prompt, you might want to check and remove
21846 such private information before sending the email.")
21847 (add-text-properties (point-min) (point-max) '(face org-warning))
21848 (when (yes-or-no-p "Include your Org-mode configuration ")
21849 (mapatoms
21850 (lambda (v)
21851 (and (boundp v)
21852 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21853 (or (and (symbol-value v)
21854 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21855 (and
21856 (get v 'custom-type) (get v 'standard-value)
21857 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21858 (push v list)))))
21859 (kill-buffer (get-buffer "*Warn about privacy*"))
21860 list))
21861 nil nil
21862 "Remember to cover the basics, that is, what you expected to happen and
21863 what in fact did happen. You don't know how to make a good report? See
21865 http://orgmode.org/manual/Feedback.html#Feedback
21867 Your bug report will be posted to the Org-mode mailing list.
21868 ------------------------------------------------------------------------")
21869 (save-excursion
21870 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21871 (replace-match "\\1Bug: \\3 [\\2]")))))
21874 (defun org-install-agenda-files-menu ()
21875 (let ((bl (buffer-list)))
21876 (save-excursion
21877 (while bl
21878 (set-buffer (pop bl))
21879 (if (derived-mode-p 'org-mode) (setq bl nil)))
21880 (when (derived-mode-p 'org-mode)
21881 (easy-menu-change
21882 '("Org") "File List for Agenda"
21883 (append
21884 (list
21885 ["Edit File List" (org-edit-agenda-file-list) t]
21886 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21887 ["Remove Current File from List" org-remove-file t]
21888 ["Cycle through agenda files" org-cycle-agenda-files t]
21889 ["Occur in all agenda files" org-occur-in-agenda-files t]
21890 "--")
21891 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21893 ;;;; Documentation
21895 (defun org-require-autoloaded-modules ()
21896 (interactive)
21897 (mapc 'require
21898 '(org-agenda org-archive org-attach org-clock org-colview org-id
21899 org-table org-timer)))
21901 ;;;###autoload
21902 (defun org-reload (&optional uncompiled)
21903 "Reload all org lisp files.
21904 With prefix arg UNCOMPILED, load the uncompiled versions."
21905 (interactive "P")
21906 (require 'loadhist)
21907 (let* ((org-dir (org-find-library-dir "org"))
21908 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21909 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21910 (remove-re (mapconcat 'identity
21911 (mapcar (lambda (f) (concat "^" f "$"))
21912 (list (if (featurep 'xemacs)
21913 "org-colview"
21914 "org-colview-xemacs")
21915 "org" "org-loaddefs" "org-version"))
21916 "\\|"))
21917 (feats (delete-dups
21918 (mapcar 'file-name-sans-extension
21919 (mapcar 'file-name-nondirectory
21920 (delq nil
21921 (mapcar 'feature-file
21922 features))))))
21923 (lfeat (append
21924 (sort
21925 (setq feats
21926 (delq nil (mapcar
21927 (lambda (f)
21928 (if (and (string-match feature-re f)
21929 (not (string-match remove-re f)))
21930 f nil))
21931 feats)))
21932 'string-lessp)
21933 (list "org-version" "org")))
21934 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21935 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21936 load-uncore load-misses)
21937 (setq load-misses
21938 (delq 't
21939 (mapcar (lambda (f)
21940 (or (org-load-noerror-mustsuffix (concat org-dir f))
21941 (and (string= org-dir contrib-dir)
21942 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21943 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21944 (add-to-list 'load-uncore f 'append)
21947 lfeat)))
21948 (if load-uncore
21949 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21950 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21951 (if load-misses
21952 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21953 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21954 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21956 ;;;###autoload
21957 (defun org-customize ()
21958 "Call the customize function with org as argument."
21959 (interactive)
21960 (org-load-modules-maybe)
21961 (org-require-autoloaded-modules)
21962 (customize-browse 'org))
21964 (defun org-create-customize-menu ()
21965 "Create a full customization menu for Org-mode, insert it into the menu."
21966 (interactive)
21967 (org-load-modules-maybe)
21968 (org-require-autoloaded-modules)
21969 (if (fboundp 'customize-menu-create)
21970 (progn
21971 (easy-menu-change
21972 '("Org") "Customize"
21973 `(["Browse Org group" org-customize t]
21974 "--"
21975 ,(customize-menu-create 'org)
21976 ["Set" Custom-set t]
21977 ["Save" Custom-save t]
21978 ["Reset to Current" Custom-reset-current t]
21979 ["Reset to Saved" Custom-reset-saved t]
21980 ["Reset to Standard Settings" Custom-reset-standard t]))
21981 (message "\"Org\"-menu now contains full customization menu"))
21982 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21984 ;;;; Miscellaneous stuff
21986 ;;; Generally useful functions
21988 (defsubst org-get-at-eol (property n)
21989 "Get text property PROPERTY at the end of line less N characters."
21990 (get-text-property (- (point-at-eol) n) property))
21992 (defun org-find-text-property-in-string (prop s)
21993 "Return the first non-nil value of property PROP in string S."
21994 (or (get-text-property 0 prop s)
21995 (get-text-property (or (next-single-property-change 0 prop s) 0)
21996 prop s)))
21998 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21999 "Display the given MESSAGE as a warning."
22000 (if (fboundp 'display-warning)
22001 (display-warning 'org message
22002 (if (featurep 'xemacs) 'warning :warning))
22003 (let ((buf (get-buffer-create "*Org warnings*")))
22004 (with-current-buffer buf
22005 (goto-char (point-max))
22006 (insert "Warning (Org): " message)
22007 (unless (bolp)
22008 (newline)))
22009 (display-buffer buf)
22010 (sit-for 0))))
22012 (defun org-eval (form)
22013 "Eval FORM and return result."
22014 (condition-case error
22015 (eval form)
22016 (error (format "%%![Error: %s]" error))))
22018 (defun org-in-clocktable-p ()
22019 "Check if the cursor is in a clocktable."
22020 (let ((pos (point)) start)
22021 (save-excursion
22022 (end-of-line 1)
22023 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22024 (setq start (match-beginning 0))
22025 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22026 (>= (match-end 0) pos)
22027 start))))
22029 (defun org-in-verbatim-emphasis ()
22030 (save-match-data
22031 (and (org-in-regexp org-emph-re 2)
22032 (>= (point) (match-beginning 3))
22033 (<= (point) (match-end 4))
22034 (member (match-string 3) '("=" "~")))))
22036 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22037 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22038 (if (and marker (marker-buffer marker)
22039 (buffer-live-p (marker-buffer marker)))
22040 (progn
22041 (org-pop-to-buffer-same-window (marker-buffer marker))
22042 (if (or (> marker (point-max)) (< marker (point-min)))
22043 (widen))
22044 (goto-char marker)
22045 (org-show-context 'org-goto))
22046 (if bookmark
22047 (bookmark-jump bookmark)
22048 (error "Cannot find location"))))
22050 (defun org-quote-csv-field (s)
22051 "Quote field for inclusion in CSV material."
22052 (if (string-match "[\",]" s)
22053 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22056 (defun org-force-self-insert (N)
22057 "Needed to enforce self-insert under remapping."
22058 (interactive "p")
22059 (self-insert-command N))
22061 (defun org-string-width (s)
22062 "Compute width of string, ignoring invisible characters.
22063 This ignores character with invisibility property `org-link', and also
22064 characters with property `org-cwidth', because these will become invisible
22065 upon the next fontification round."
22066 (let (b l)
22067 (when (or (eq t buffer-invisibility-spec)
22068 (assq 'org-link buffer-invisibility-spec))
22069 (while (setq b (text-property-any 0 (length s)
22070 'invisible 'org-link s))
22071 (setq s (concat (substring s 0 b)
22072 (substring s (or (next-single-property-change
22073 b 'invisible s) (length s)))))))
22074 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22075 (setq s (concat (substring s 0 b)
22076 (substring s (or (next-single-property-change
22077 b 'org-cwidth s) (length s))))))
22078 (setq l (string-width s) b -1)
22079 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22080 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22083 (defun org-shorten-string (s maxlength)
22084 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22085 If the string is shorter or has length MAXLENGTH, just return the
22086 original string. If it is longer, the functions finds a space in the
22087 string, breaks this string off at that locations and adds three dots
22088 as ellipsis. Including the ellipsis, the string will not be longer
22089 than MAXLENGTH. If finding a good breaking point in the string does
22090 not work, the string is just chopped off in the middle of a word
22091 if necessary."
22092 (if (<= (length s) maxlength)
22094 (let* ((n (max (- maxlength 4) 1))
22095 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22096 (if (string-match re s)
22097 (concat (match-string 1 s) "...")
22098 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22100 (defun org-get-indentation (&optional line)
22101 "Get the indentation of the current line, interpreting tabs.
22102 When LINE is given, assume it represents a line and compute its indentation."
22103 (if line
22104 (if (string-match "^ *" (org-remove-tabs line))
22105 (match-end 0))
22106 (save-excursion
22107 (beginning-of-line 1)
22108 (skip-chars-forward " \t")
22109 (current-column))))
22111 (defun org-get-string-indentation (s)
22112 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22113 (let ((n -1) (i 0) (w tab-width) c)
22114 (catch 'exit
22115 (while (< (setq n (1+ n)) (length s))
22116 (setq c (aref s n))
22117 (cond ((= c ?\ ) (setq i (1+ i)))
22118 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22119 (t (throw 'exit t)))))
22122 (defun org-remove-tabs (s &optional width)
22123 "Replace tabulators in S with spaces.
22124 Assumes that s is a single line, starting in column 0."
22125 (setq width (or width tab-width))
22126 (while (string-match "\t" s)
22127 (setq s (replace-match
22128 (make-string
22129 (- (* width (/ (+ (match-beginning 0) width) width))
22130 (match-beginning 0)) ?\ )
22131 t t s)))
22134 (defun org-fix-indentation (line ind)
22135 "Fix indentation in LINE.
22136 IND is a cons cell with target and minimum indentation.
22137 If the current indentation in LINE is smaller than the minimum,
22138 leave it alone. If it is larger than ind, set it to the target."
22139 (let* ((l (org-remove-tabs line))
22140 (i (org-get-indentation l))
22141 (i1 (car ind)) (i2 (cdr ind)))
22142 (if (>= i i2) (setq l (substring line i2)))
22143 (if (> i1 0)
22144 (concat (make-string i1 ?\ ) l)
22145 l)))
22147 (defun org-remove-indentation (code &optional n)
22148 "Remove the maximum common indentation from the lines in CODE.
22149 N may optionally be the number of spaces to remove."
22150 (with-temp-buffer
22151 (insert code)
22152 (org-do-remove-indentation n)
22153 (buffer-string)))
22155 (defun org-do-remove-indentation (&optional n)
22156 "Remove the maximum common indentation from the buffer."
22157 (untabify (point-min) (point-max))
22158 (let ((min 10000) re)
22159 (if n
22160 (setq min n)
22161 (goto-char (point-min))
22162 (while (re-search-forward "^ *[^ \n]" nil t)
22163 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22164 (unless (or (= min 0) (= min 10000))
22165 (setq re (format "^ \\{%d\\}" min))
22166 (goto-char (point-min))
22167 (while (re-search-forward re nil t)
22168 (replace-match "")
22169 (end-of-line 1))
22170 min)))
22172 (defun org-fill-template (template alist)
22173 "Find each %key of ALIST in TEMPLATE and replace it."
22174 (let ((case-fold-search nil)
22175 entry key value)
22176 (setq alist (sort (copy-sequence alist)
22177 (lambda (a b) (< (length (car a)) (length (car b))))))
22178 (while (setq entry (pop alist))
22179 (setq template
22180 (replace-regexp-in-string
22181 (concat "%" (regexp-quote (car entry)))
22182 (or (cdr entry) "") template t t)))
22183 template))
22185 (defun org-base-buffer (buffer)
22186 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22187 (if (not buffer)
22188 buffer
22189 (or (buffer-base-buffer buffer)
22190 buffer)))
22192 (defun org-wrap (string &optional width lines)
22193 "Wrap string to either a number of lines, or a width in characters.
22194 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22195 that costs. If there is a word longer than WIDTH, the text is actually
22196 wrapped to the length of that word.
22197 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22198 many lines, whatever width that takes.
22199 The return value is a list of lines, without newlines at the end."
22200 (let* ((words (org-split-string string "[ \t\n]+"))
22201 (maxword (apply 'max (mapcar 'org-string-width words)))
22202 w ll)
22203 (cond (width
22204 (org-do-wrap words (max maxword width)))
22205 (lines
22206 (setq w maxword)
22207 (setq ll (org-do-wrap words maxword))
22208 (if (<= (length ll) lines)
22210 (setq ll words)
22211 (while (> (length ll) lines)
22212 (setq w (1+ w))
22213 (setq ll (org-do-wrap words w)))
22214 ll))
22215 (t (error "Cannot wrap this")))))
22217 (defun org-do-wrap (words width)
22218 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22219 (let (lines line)
22220 (while words
22221 (setq line (pop words))
22222 (while (and words (< (+ (length line) (length (car words))) width))
22223 (setq line (concat line " " (pop words))))
22224 (setq lines (push line lines)))
22225 (nreverse lines)))
22227 (defun org-split-string (string &optional separators)
22228 "Splits STRING into substrings at SEPARATORS.
22229 No empty strings are returned if there are matches at the beginning
22230 and end of string."
22231 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22232 (start 0)
22233 notfirst
22234 (list nil))
22235 (while (and (string-match rexp string
22236 (if (and notfirst
22237 (= start (match-beginning 0))
22238 (< start (length string)))
22239 (1+ start) start))
22240 (< (match-beginning 0) (length string)))
22241 (setq notfirst t)
22242 (or (eq (match-beginning 0) 0)
22243 (and (eq (match-beginning 0) (match-end 0))
22244 (eq (match-beginning 0) start))
22245 (setq list
22246 (cons (substring string start (match-beginning 0))
22247 list)))
22248 (setq start (match-end 0)))
22249 (or (eq start (length string))
22250 (setq list
22251 (cons (substring string start)
22252 list)))
22253 (nreverse list)))
22255 (defun org-quote-vert (s)
22256 "Replace \"|\" with \"\\vert\"."
22257 (while (string-match "|" s)
22258 (setq s (replace-match "\\vert" t t s)))
22261 (defun org-uuidgen-p (s)
22262 "Is S an ID created by UUIDGEN?"
22263 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22265 (defun org-in-src-block-p (&optional inside)
22266 "Whether point is in a code source block.
22267 When INSIDE is non-nil, don't consider we are within a src block
22268 when point is at #+BEGIN_SRC or #+END_SRC."
22269 (let ((case-fold-search t) ov)
22270 (or (and (eq (get-char-property (point) 'src-block) t))
22271 (and (not inside)
22272 (save-match-data
22273 (save-excursion
22274 (beginning-of-line)
22275 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22277 (defun org-context ()
22278 "Return a list of contexts of the current cursor position.
22279 If several contexts apply, all are returned.
22280 Each context entry is a list with a symbol naming the context, and
22281 two positions indicating start and end of the context. Possible
22282 contexts are:
22284 :headline anywhere in a headline
22285 :headline-stars on the leading stars in a headline
22286 :todo-keyword on a TODO keyword (including DONE) in a headline
22287 :tags on the TAGS in a headline
22288 :priority on the priority cookie in a headline
22289 :item on the first line of a plain list item
22290 :item-bullet on the bullet/number of a plain list item
22291 :checkbox on the checkbox in a plain list item
22292 :table in an org-mode table
22293 :table-special on a special filed in a table
22294 :table-table in a table.el table
22295 :clocktable in a clocktable
22296 :src-block in a source block
22297 :link on a hyperlink
22298 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22299 :target on a <<target>>
22300 :radio-target on a <<<radio-target>>>
22301 :latex-fragment on a LaTeX fragment
22302 :latex-preview on a LaTeX fragment with overlaid preview image
22304 This function expects the position to be visible because it uses font-lock
22305 faces as a help to recognize the following contexts: :table-special, :link,
22306 and :keyword."
22307 (let* ((f (get-text-property (point) 'face))
22308 (faces (if (listp f) f (list f)))
22309 (case-fold-search t)
22310 (p (point)) clist o)
22311 ;; First the large context
22312 (cond
22313 ((org-at-heading-p t)
22314 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22315 (when (progn
22316 (beginning-of-line 1)
22317 (looking-at org-todo-line-tags-regexp))
22318 (push (org-point-in-group p 1 :headline-stars) clist)
22319 (push (org-point-in-group p 2 :todo-keyword) clist)
22320 (push (org-point-in-group p 4 :tags) clist))
22321 (goto-char p)
22322 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22323 (if (looking-at "\\[#[A-Z0-9]\\]")
22324 (push (org-point-in-group p 0 :priority) clist)))
22326 ((org-at-item-p)
22327 (push (org-point-in-group p 2 :item-bullet) clist)
22328 (push (list :item (point-at-bol)
22329 (save-excursion (org-end-of-item) (point)))
22330 clist)
22331 (and (org-at-item-checkbox-p)
22332 (push (org-point-in-group p 0 :checkbox) clist)))
22334 ((org-at-table-p)
22335 (push (list :table (org-table-begin) (org-table-end)) clist)
22336 (if (memq 'org-formula faces)
22337 (push (list :table-special
22338 (previous-single-property-change p 'face)
22339 (next-single-property-change p 'face)) clist)))
22340 ((org-at-table-p 'any)
22341 (push (list :table-table) clist)))
22342 (goto-char p)
22344 (let ((case-fold-search t))
22345 ;; New the "medium" contexts: clocktables, source blocks
22346 (cond ((org-in-clocktable-p)
22347 (push (list :clocktable
22348 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22349 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22350 (match-beginning 1))
22351 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22352 (match-end 0))) clist))
22353 ((org-in-src-block-p)
22354 (push (list :src-block
22355 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22356 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22357 (match-beginning 1))
22358 (and (search-forward "#+END_SRC" nil t)
22359 (match-beginning 0))) clist))))
22360 (goto-char p)
22362 ;; Now the small context
22363 (cond
22364 ((org-at-timestamp-p)
22365 (push (org-point-in-group p 0 :timestamp) clist))
22366 ((memq 'org-link faces)
22367 (push (list :link
22368 (previous-single-property-change p 'face)
22369 (next-single-property-change p 'face)) clist))
22370 ((memq 'org-special-keyword faces)
22371 (push (list :keyword
22372 (previous-single-property-change p 'face)
22373 (next-single-property-change p 'face)) clist))
22374 ((org-at-target-p)
22375 (push (org-point-in-group p 0 :target) clist)
22376 (goto-char (1- (match-beginning 0)))
22377 (if (looking-at org-radio-target-regexp)
22378 (push (org-point-in-group p 0 :radio-target) clist))
22379 (goto-char p))
22380 ((setq o (car (delq nil
22381 (mapcar
22382 (lambda (x)
22383 (if (memq x org-latex-fragment-image-overlays) x))
22384 (overlays-at (point))))))
22385 (push (list :latex-fragment
22386 (overlay-start o) (overlay-end o)) clist)
22387 (push (list :latex-preview
22388 (overlay-start o) (overlay-end o)) clist))
22389 ((org-inside-LaTeX-fragment-p)
22390 ;; FIXME: positions wrong.
22391 (push (list :latex-fragment (point) (point)) clist)))
22393 (setq clist (nreverse (delq nil clist)))
22394 clist))
22396 (defun org-in-regexp (re &optional nlines visually)
22397 "Check if point is inside a match of RE.
22399 Normally only the current line is checked, but you can include
22400 NLINES extra lines after point into the search. If VISUALLY is
22401 set, require that the cursor is not after the match but really
22402 on, so that the block visually is on the match."
22403 (catch 'exit
22404 (let ((pos (point))
22405 (eol (point-at-eol (+ 1 (or nlines 0))))
22406 (inc (if visually 1 0)))
22407 (save-excursion
22408 (beginning-of-line (- 1 (or nlines 0)))
22409 (while (re-search-forward re eol t)
22410 (if (and (<= (match-beginning 0) pos)
22411 (>= (+ inc (match-end 0)) pos))
22412 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22413 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22414 "Org mode 8.3")
22416 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22417 "Non-nil when point is between matches of START-RE and END-RE.
22419 Also return a non-nil value when point is on one of the matches.
22421 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22422 buffer positions. Default values are the positions of headlines
22423 surrounding the point.
22425 The functions returns a cons cell whose car (resp. cdr) is the
22426 position before START-RE (resp. after END-RE)."
22427 (save-match-data
22428 (let ((pos (point))
22429 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22430 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22431 beg end)
22432 (save-excursion
22433 ;; Point is on a block when on START-RE or if START-RE can be
22434 ;; found before it...
22435 (and (or (org-in-regexp start-re)
22436 (re-search-backward start-re limit-up t))
22437 (setq beg (match-beginning 0))
22438 ;; ... and END-RE after it...
22439 (goto-char (match-end 0))
22440 (re-search-forward end-re limit-down t)
22441 (> (setq end (match-end 0)) pos)
22442 ;; ... without another START-RE in-between.
22443 (goto-char (match-beginning 0))
22444 (not (re-search-backward start-re (1+ beg) t))
22445 ;; Return value.
22446 (cons beg end))))))
22448 (defun org-in-block-p (names)
22449 "Non-nil when point belongs to a block whose name belongs to NAMES.
22451 NAMES is a list of strings containing names of blocks.
22453 Return first block name matched, or nil. Beware that in case of
22454 nested blocks, the returned name may not belong to the closest
22455 block from point."
22456 (save-match-data
22457 (catch 'exit
22458 (let ((case-fold-search t)
22459 (lim-up (save-excursion (outline-previous-heading)))
22460 (lim-down (save-excursion (outline-next-heading))))
22461 (mapc (lambda (name)
22462 (let ((n (regexp-quote name)))
22463 (when (org-between-regexps-p
22464 (concat "^[ \t]*#\\+begin_" n)
22465 (concat "^[ \t]*#\\+end_" n)
22466 lim-up lim-down)
22467 (throw 'exit n))))
22468 names))
22469 nil)))
22471 (defun org-occur-in-agenda-files (regexp &optional nlines)
22472 "Call `multi-occur' with buffers for all agenda files."
22473 (interactive "sOrg-files matching: \np")
22474 (let* ((files (org-agenda-files))
22475 (tnames (mapcar 'file-truename files))
22476 (extra org-agenda-text-search-extra-files)
22478 (when (eq (car extra) 'agenda-archives)
22479 (setq extra (cdr extra))
22480 (setq files (org-add-archive-files files)))
22481 (while (setq f (pop extra))
22482 (unless (member (file-truename f) tnames)
22483 (add-to-list 'files f 'append)
22484 (add-to-list 'tnames (file-truename f) 'append)))
22485 (multi-occur
22486 (mapcar (lambda (x)
22487 (with-current-buffer
22488 (or (get-file-buffer x) (find-file-noselect x))
22489 (widen)
22490 (current-buffer)))
22491 files)
22492 regexp)))
22494 (if (boundp 'occur-mode-find-occurrence-hook)
22495 ;; Emacs 23
22496 (add-hook 'occur-mode-find-occurrence-hook
22497 (lambda ()
22498 (when (derived-mode-p 'org-mode)
22499 (org-reveal))))
22500 ;; Emacs 22
22501 (defadvice occur-mode-goto-occurrence
22502 (after org-occur-reveal activate)
22503 (and (derived-mode-p 'org-mode) (org-reveal)))
22504 (defadvice occur-mode-goto-occurrence-other-window
22505 (after org-occur-reveal activate)
22506 (and (derived-mode-p 'org-mode) (org-reveal)))
22507 (defadvice occur-mode-display-occurrence
22508 (after org-occur-reveal activate)
22509 (when (derived-mode-p 'org-mode)
22510 (let ((pos (occur-mode-find-occurrence)))
22511 (with-current-buffer (marker-buffer pos)
22512 (save-excursion
22513 (goto-char pos)
22514 (org-reveal)))))))
22516 (defun org-occur-link-in-agenda-files ()
22517 "Create a link and search for it in the agendas.
22518 The link is not stored in `org-stored-links', it is just created
22519 for the search purpose."
22520 (interactive)
22521 (let ((link (condition-case nil
22522 (org-store-link nil)
22523 (error "Unable to create a link to here"))))
22524 (org-occur-in-agenda-files (regexp-quote link))))
22526 (defun org-reverse-string (string)
22527 "Return the reverse of STRING."
22528 (apply 'string (reverse (string-to-list string))))
22530 ;; defsubst org-uniquify must be defined before first use
22532 (defun org-uniquify-alist (alist)
22533 "Merge elements of ALIST with the same key.
22535 For example, in this alist:
22537 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22538 => '((a 1 3) (b 2))
22540 merge (a 1) and (a 3) into (a 1 3).
22542 The function returns the new ALIST."
22543 (let (rtn)
22544 (mapc
22545 (lambda (e)
22546 (let (n)
22547 (if (not (assoc (car e) rtn))
22548 (push e rtn)
22549 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22550 (setq rtn (assq-delete-all (car e) rtn))
22551 (push n rtn))))
22552 alist)
22553 rtn))
22555 (defun org-delete-all (elts list)
22556 "Remove all elements in ELTS from LIST."
22557 (while elts
22558 (setq list (delete (pop elts) list)))
22559 list)
22561 (defun org-count (cl-item cl-seq)
22562 "Count the number of occurrences of ITEM in SEQ.
22563 Taken from `count' in cl-seq.el with all keyword arguments removed."
22564 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22565 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22566 (while (< cl-start cl-end)
22567 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22568 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22569 (setq cl-start (1+ cl-start)))
22570 cl-count))
22572 (defun org-remove-if (predicate seq)
22573 "Remove everything from SEQ that fulfills PREDICATE."
22574 (let (res e)
22575 (while seq
22576 (setq e (pop seq))
22577 (if (not (funcall predicate e)) (push e res)))
22578 (nreverse res)))
22580 (defun org-remove-if-not (predicate seq)
22581 "Remove everything from SEQ that does not fulfill PREDICATE."
22582 (let (res e)
22583 (while seq
22584 (setq e (pop seq))
22585 (if (funcall predicate e) (push e res)))
22586 (nreverse res)))
22588 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22589 "Reduce two-argument FUNCTION across SEQ.
22590 Taken from `reduce' in cl-seq.el with all keyword arguments but
22591 \":initial-value\" removed."
22592 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22593 (cadr (memq :initial-value cl-keys)))
22594 (cl-seq (pop cl-seq))
22595 (t (funcall cl-func)))))
22596 (while cl-seq
22597 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22598 cl-accum))
22600 (defun org-every (pred seq)
22601 "Return true if PREDICATE is true of every element of SEQ.
22602 Adapted from `every' in cl.el."
22603 (catch 'org-every
22604 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22607 (defun org-some (pred seq)
22608 "Return true if PREDICATE is true of any element of SEQ.
22609 Adapted from `some' in cl.el."
22610 (catch 'org-some
22611 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22612 nil))
22614 (defun org-back-over-empty-lines ()
22615 "Move backwards over whitespace, to the beginning of the first empty line.
22616 Returns the number of empty lines passed."
22617 (let ((pos (point)))
22618 (if (cdr (assoc 'heading org-blank-before-new-entry))
22619 (skip-chars-backward " \t\n\r")
22620 (unless (eobp)
22621 (forward-line -1)))
22622 (beginning-of-line 2)
22623 (goto-char (min (point) pos))
22624 (count-lines (point) pos)))
22626 (defun org-skip-whitespace ()
22627 (skip-chars-forward " \t\n\r"))
22629 (defun org-point-in-group (point group &optional context)
22630 "Check if POINT is in match-group GROUP.
22631 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22632 match. If the match group does not exist or point is not inside it,
22633 return nil."
22634 (and (match-beginning group)
22635 (>= point (match-beginning group))
22636 (<= point (match-end group))
22637 (if context
22638 (list context (match-beginning group) (match-end group))
22639 t)))
22641 (defun org-switch-to-buffer-other-window (&rest args)
22642 "Switch to buffer in a second window on the current frame.
22643 In particular, do not allow pop-up frames.
22644 Returns the newly created buffer."
22645 (org-no-popups
22646 (apply 'switch-to-buffer-other-window args)))
22648 (defun org-combine-plists (&rest plists)
22649 "Create a single property list from all plists in PLISTS.
22650 The process starts by copying the first list, and then setting properties
22651 from the other lists. Settings in the last list are the most significant
22652 ones and overrule settings in the other lists."
22653 (let ((rtn (copy-sequence (pop plists)))
22654 p v ls)
22655 (while plists
22656 (setq ls (pop plists))
22657 (while ls
22658 (setq p (pop ls) v (pop ls))
22659 (setq rtn (plist-put rtn p v))))
22660 rtn))
22662 (defun org-replace-escapes (string table)
22663 "Replace %-escapes in STRING with values in TABLE.
22664 TABLE is an association list with keys like \"%a\" and string values.
22665 The sequences in STRING may contain normal field width and padding information,
22666 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22667 so values can contain further %-escapes if they are define later in TABLE."
22668 (let ((tbl (copy-alist table))
22669 (case-fold-search nil)
22670 (pchg 0)
22671 e re rpl)
22672 (while (setq e (pop tbl))
22673 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22674 (when (and (cdr e) (string-match re (cdr e)))
22675 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22676 (safe "SREF"))
22677 (add-text-properties 0 3 (list 'sref sref) safe)
22678 (setcdr e (replace-match safe t t (cdr e)))))
22679 (while (string-match re string)
22680 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22681 (cdr e)))
22682 (setq string (replace-match rpl t t string))))
22683 (while (setq pchg (next-property-change pchg string))
22684 (let ((sref (get-text-property pchg 'sref string)))
22685 (when (and sref (string-match "SREF" string pchg))
22686 (setq string (replace-match sref t t string)))))
22687 string))
22689 (defun org-sublist (list start end)
22690 "Return a section of LIST, from START to END.
22691 Counting starts at 1."
22692 (let (rtn (c start))
22693 (setq list (nthcdr (1- start) list))
22694 (while (and list (<= c end))
22695 (push (pop list) rtn)
22696 (setq c (1+ c)))
22697 (nreverse rtn)))
22699 (defun org-find-base-buffer-visiting (file)
22700 "Like `find-buffer-visiting' but always return the base buffer and
22701 not an indirect buffer."
22702 (let ((buf (or (get-file-buffer file)
22703 (find-buffer-visiting file))))
22704 (if buf
22705 (or (buffer-base-buffer buf) buf)
22706 nil)))
22708 (defun org-image-file-name-regexp (&optional extensions)
22709 "Return regexp matching the file names of images.
22710 If EXTENSIONS is given, only match these."
22711 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22712 (image-file-name-regexp)
22713 (let ((image-file-name-extensions
22714 (or extensions
22715 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22716 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22717 (concat "\\."
22718 (regexp-opt (nconc (mapcar 'upcase
22719 image-file-name-extensions)
22720 image-file-name-extensions)
22722 "\\'"))))
22724 (defun org-file-image-p (file &optional extensions)
22725 "Return non-nil if FILE is an image."
22726 (save-match-data
22727 (string-match (org-image-file-name-regexp extensions) file)))
22729 (defun org-get-cursor-date (&optional with-time)
22730 "Return the date at cursor in as a time.
22731 This works in the calendar and in the agenda, anywhere else it just
22732 returns the current time.
22733 If WITH-TIME is non-nil, returns the time of the event at point (in
22734 the agenda) or the current time of the day."
22735 (let (date day defd tp tm hod mod)
22736 (when with-time
22737 (setq tp (get-text-property (point) 'time))
22738 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22739 (setq hod (string-to-number (match-string 1 tp))
22740 mod (string-to-number (match-string 2 tp))))
22741 (or tp (setq hod (nth 2 (decode-time (current-time)))
22742 mod (nth 1 (decode-time (current-time))))))
22743 (cond
22744 ((eq major-mode 'calendar-mode)
22745 (setq date (calendar-cursor-to-date)
22746 defd (encode-time 0 (or mod 0) (or hod 0)
22747 (nth 1 date) (nth 0 date) (nth 2 date))))
22748 ((eq major-mode 'org-agenda-mode)
22749 (setq day (get-text-property (point) 'day))
22750 (if day
22751 (setq date (calendar-gregorian-from-absolute day)
22752 defd (encode-time 0 (or mod 0) (or hod 0)
22753 (nth 1 date) (nth 0 date) (nth 2 date))))))
22754 (or defd (current-time))))
22756 (defun org-mark-subtree (&optional up)
22757 "Mark the current subtree.
22758 This puts point at the start of the current subtree, and mark at
22759 the end. If a numeric prefix UP is given, move up into the
22760 hierarchy of headlines by UP levels before marking the subtree."
22761 (interactive "P")
22762 (org-with-limited-levels
22763 (cond ((org-at-heading-p) (beginning-of-line))
22764 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22765 (t (outline-previous-visible-heading 1))))
22766 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22767 (if (org-called-interactively-p 'any)
22768 (call-interactively 'org-mark-element)
22769 (org-mark-element)))
22772 ;;; Indentation
22774 (defun org--get-expected-indentation (element contentsp)
22775 "Expected indentation column for current line, according to ELEMENT.
22776 ELEMENT is an element containing point. CONTENTSP is non-nil
22777 when indentation is to be computed according to contents of
22778 ELEMENT."
22779 (let ((type (org-element-type element))
22780 (start (org-element-property :begin element))
22781 (post-affiliated (org-element-property :post-affiliated element)))
22782 (org-with-wide-buffer
22783 (cond
22784 (contentsp
22785 (case type
22786 ((diary-sexp footnote-definition) 0)
22787 ((headline inlinetask nil)
22788 (if (not org-adapt-indentation) 0
22789 (let ((level (org-current-level)))
22790 (if level (1+ level) 0))))
22791 ((item plain-list) (org-list-item-body-column post-affiliated))
22793 (goto-char start)
22794 (org-get-indentation))))
22795 ((memq type '(headline inlinetask nil))
22796 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22797 (org--get-expected-indentation element t)
22799 ((memq type '(diary-sexp footnote-definition)) 0)
22800 ;; First paragraph of a footnote definition or an item.
22801 ;; Indent like parent.
22802 ((< (line-beginning-position) start)
22803 (org--get-expected-indentation
22804 (org-element-property :parent element) t))
22805 ;; At first line: indent according to previous sibling, if any,
22806 ;; ignoring footnote definitions and inline tasks, or parent's
22807 ;; contents.
22808 ((= (line-beginning-position) start)
22809 (catch 'exit
22810 (while t
22811 (if (= (point-min) start) (throw 'exit 0)
22812 (goto-char (1- start))
22813 (let* ((previous (org-element-at-point))
22814 (parent previous))
22815 (while (and parent (<= (org-element-property :end parent) start))
22816 (setq previous parent
22817 parent (org-element-property :parent parent)))
22818 (cond
22819 ((not previous) (throw 'exit 0))
22820 ((> (org-element-property :end previous) start)
22821 (throw 'exit (org--get-expected-indentation previous t)))
22822 ((memq (org-element-type previous)
22823 '(footnote-definition inlinetask))
22824 (setq start (org-element-property :begin previous)))
22825 (t (goto-char (org-element-property :begin previous))
22826 (throw 'exit
22827 (if (bolp) (org-get-indentation)
22828 ;; At first paragraph in an item or
22829 ;; a footnote definition.
22830 (org--get-expected-indentation
22831 (org-element-property :parent previous) t))))))))))
22832 ;; Otherwise, move to the first non-blank line above.
22834 (beginning-of-line)
22835 (let ((pos (point)))
22836 (skip-chars-backward " \r\t\n")
22837 (cond
22838 ;; Two blank lines end a footnote definition or a plain
22839 ;; list. When we indent an empty line after them, the
22840 ;; containing list or footnote definition is over, so it
22841 ;; qualifies as a previous sibling. Therefore, we indent
22842 ;; like its first line.
22843 ((and (memq type '(footnote-definition plain-list))
22844 (> (count-lines (point) pos) 2))
22845 (goto-char start)
22846 (org-get-indentation))
22847 ;; Line above is the first one of a paragraph at the
22848 ;; beginning of an item or a footnote definition. Indent
22849 ;; like parent.
22850 ((< (line-beginning-position) start)
22851 (org--get-expected-indentation
22852 (org-element-property :parent element) t))
22853 ;; Line above is the beginning of an element, i.e., point
22854 ;; was originally on the blank lines between element's start
22855 ;; and contents.
22856 ((= (line-beginning-position) post-affiliated)
22857 (org--get-expected-indentation element t))
22858 ;; POS is after contents in a greater element. Indent like
22859 ;; the beginning of the element.
22861 ;; As a special case, if point is at the end of a footnote
22862 ;; definition or an item, indent like the very last element
22863 ;; within.
22864 ((and (not (eq type 'paragraph))
22865 (let ((cend (org-element-property :contents-end element)))
22866 (and cend (<= cend pos))))
22867 (if (memq type '(footnote-definition item plain-list))
22868 (let ((last (org-element-at-point)))
22869 (org--get-expected-indentation
22870 last
22871 (memq (org-element-type last)
22872 '(footnote-definition item plain-list))))
22873 (goto-char start)
22874 (org-get-indentation)))
22875 ;; In any other case, indent like the current line.
22876 (t (org-get-indentation)))))))))
22878 (defun org--align-node-property ()
22879 "Align node property at point.
22880 Alignment is done according to `org-property-format', which see."
22881 (when (save-excursion
22882 (beginning-of-line)
22883 (looking-at org-property-re))
22884 (replace-match
22885 (concat (match-string 4)
22886 (org-trim
22887 (format org-property-format (match-string 1) (match-string 3))))
22888 t t)))
22890 (defun org-indent-line ()
22891 "Indent line depending on context.
22893 Indentation is done according to the following rules:
22895 - Footnote definitions, diary sexps, headlines and inline tasks
22896 have to start at column 0.
22898 - On the very first line of an element, consider, in order, the
22899 next rules until one matches:
22901 1. If there's a sibling element before, ignoring footnote
22902 definitions and inline tasks, indent like its first line.
22904 2. If element has a parent, indent like its contents. More
22905 precisely, if parent is an item, indent after the
22906 description part, if any, or the bullet (see
22907 `org-list-description-max-indent'). Else, indent like
22908 parent's first line.
22910 3. Otherwise, indent relatively to current level, if
22911 `org-adapt-indentation' is non-nil, or to left margin.
22913 - On a blank line at the end of an element, indent according to
22914 the type of the element. More precisely
22916 1. If element is a plain list, an item, or a footnote
22917 definition, indent like the very last element within.
22919 2. If element is a paragraph, indent like its last non blank
22920 line.
22922 3. Otherwise, indent like its very first line.
22924 - In the code part of a source block, use language major mode
22925 to indent current line if `org-src-tab-acts-natively' is
22926 non-nil. If it is nil, do nothing.
22928 - Otherwise, indent like the first non-blank line above.
22930 The function doesn't indent an item as it could break the whole
22931 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22932 \\[org-shiftmetaright].
22934 Also align node properties according to `org-property-format'."
22935 (interactive)
22936 (cond
22937 (orgstruct-is-++
22938 (let ((indent-line-function
22939 (cadadr (assq 'indent-line-function org-fb-vars))))
22940 (indent-according-to-mode)))
22941 ((org-at-heading-p) 'noindent)
22943 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22944 (type (org-element-type element)))
22945 (cond ((and (memq type '(plain-list item))
22946 (= (line-beginning-position)
22947 (org-element-property :post-affiliated element)))
22948 'noindent)
22949 ((and (eq type 'src-block)
22950 org-src-tab-acts-natively
22951 (> (line-beginning-position)
22952 (org-element-property :post-affiliated element))
22953 (< (line-beginning-position)
22954 (org-with-wide-buffer
22955 (goto-char (org-element-property :end element))
22956 (skip-chars-backward " \r\t\n")
22957 (line-beginning-position))))
22958 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22960 (let ((column (org--get-expected-indentation element nil)))
22961 ;; Preserve current column.
22962 (if (<= (current-column) (current-indentation))
22963 (org-indent-line-to column)
22964 (save-excursion (org-indent-line-to column))))
22965 ;; Align node property. Also preserve current column.
22966 (when (eq type 'node-property)
22967 (let ((column (current-column)))
22968 (org--align-node-property)
22969 (org-move-to-column column)))))))))
22971 (defun org-indent-region (start end)
22972 "Indent each non-blank line in the region.
22973 Called from a program, START and END specify the region to
22974 indent. The function will not indent contents of example blocks,
22975 verse blocks and export blocks as leading white spaces are
22976 assumed to be significant there."
22977 (interactive "r")
22978 (save-excursion
22979 (goto-char start)
22980 (skip-chars-forward " \r\t\n")
22981 (unless (eobp) (beginning-of-line))
22982 (let ((indent-to
22983 (lambda (ind pos)
22984 ;; Set IND as indentation for all lines between point and
22985 ;; POS or END, whichever comes first. Blank lines are
22986 ;; ignored. Leave point after POS once done.
22987 (let ((limit (copy-marker (min end pos))))
22988 (while (< (point) limit)
22989 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22990 (forward-line))
22991 (set-marker limit nil))))
22992 (end (copy-marker end)))
22993 (while (< (point) end)
22994 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22995 (let* ((element (org-element-at-point))
22996 (type (org-element-type element))
22997 (element-end (copy-marker (org-element-property :end element)))
22998 (ind (org--get-expected-indentation element nil)))
22999 (cond
23000 ((or (memq type '(paragraph table table-row))
23001 (not (or (org-element-property :contents-begin element)
23002 (memq type
23003 '(example-block export-block src-block)))))
23004 ;; Elements here are indented as a single block. Also
23005 ;; align node properties.
23006 (when (eq type 'node-property)
23007 (org--align-node-property)
23008 (beginning-of-line))
23009 (funcall indent-to ind element-end))
23011 ;; Elements in this category consist of three parts:
23012 ;; before the contents, the contents, and after the
23013 ;; contents. The contents are treated specially,
23014 ;; according to the element type, or not indented at
23015 ;; all. Other parts are indented as a single block.
23016 (let* ((post (copy-marker
23017 (org-element-property :post-affiliated element)))
23018 (cbeg
23019 (copy-marker
23020 (cond
23021 ((not (org-element-property :contents-begin element))
23022 ;; Fake contents for source blocks.
23023 (org-with-wide-buffer
23024 (goto-char post)
23025 (forward-line)
23026 (point)))
23027 ((memq type '(footnote-definition item plain-list))
23028 ;; Contents in these elements could start on
23029 ;; the same line as the beginning of the
23030 ;; element. Make sure we start indenting
23031 ;; from the second line.
23032 (org-with-wide-buffer
23033 (goto-char post)
23034 (end-of-line)
23035 (skip-chars-forward " \r\t\n")
23036 (if (eobp) (point) (line-beginning-position))))
23037 (t (org-element-property :contents-begin element)))))
23038 (cend (copy-marker
23039 (or (org-element-property :contents-end element)
23040 ;; Fake contents for source blocks.
23041 (org-with-wide-buffer
23042 (goto-char element-end)
23043 (skip-chars-backward " \r\t\n")
23044 (line-beginning-position)))
23045 t)))
23046 ;; Do not change items indentation individually as it
23047 ;; might break the list as a whole. On the other
23048 ;; hand, when at a plain list, indent it as a whole.
23049 (cond ((eq type 'plain-list)
23050 (let ((offset (- ind (org-get-indentation))))
23051 (unless (zerop offset)
23052 (indent-rigidly (org-element-property :begin element)
23053 (org-element-property :end element)
23054 offset))
23055 (goto-char cbeg)))
23056 ((eq type 'item) (goto-char cbeg))
23057 (t (funcall indent-to ind cbeg)))
23058 (when (< (point) end)
23059 (case type
23060 ((example-block export-block verse-block))
23061 (src-block
23062 ;; In a source block, indent source code
23063 ;; according to language major mode, but only if
23064 ;; `org-src-tab-acts-natively' is non-nil.
23065 (when (and (< (point) end) org-src-tab-acts-natively)
23066 (ignore-errors
23067 (org-babel-do-in-edit-buffer
23068 (indent-region (point-min) (point-max))))))
23069 (t (org-indent-region (point) (min cend end))))
23070 (goto-char (min cend end))
23071 (when (< (point) end) (funcall indent-to ind element-end)))
23072 (set-marker post nil)
23073 (set-marker cbeg nil)
23074 (set-marker cend nil))))
23075 (set-marker element-end nil))))
23076 (set-marker end nil))))
23078 (defun org-indent-drawer ()
23079 "Indent the drawer at point."
23080 (interactive)
23081 (unless (save-excursion
23082 (beginning-of-line)
23083 (org-looking-at-p org-drawer-regexp))
23084 (user-error "Not at a drawer"))
23085 (let ((element (org-element-at-point)))
23086 (unless (memq (org-element-type element) '(drawer property-drawer))
23087 (user-error "Not at a drawer"))
23088 (org-with-wide-buffer
23089 (org-indent-region (org-element-property :begin element)
23090 (org-element-property :end element))))
23091 (message "Drawer at point indented"))
23093 (defun org-indent-block ()
23094 "Indent the block at point."
23095 (interactive)
23096 (unless (save-excursion
23097 (beginning-of-line)
23098 (let ((case-fold-search t))
23099 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23100 (user-error "Not at a block"))
23101 (let ((element (org-element-at-point)))
23102 (unless (memq (org-element-type element)
23103 '(comment-block center-block dynamic-block example-block
23104 export-block quote-block special-block
23105 src-block verse-block))
23106 (user-error "Not at a block"))
23107 (org-with-wide-buffer
23108 (org-indent-region (org-element-property :begin element)
23109 (org-element-property :end element))))
23110 (message "Block at point indented"))
23113 ;;; Filling
23115 ;; We use our own fill-paragraph and auto-fill functions.
23117 ;; `org-fill-paragraph' relies on adaptive filling and context
23118 ;; checking. Appropriate `fill-prefix' is computed with
23119 ;; `org-adaptive-fill-function'.
23121 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23122 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23123 ;; `org-adaptive-fill-function' value. Internally,
23124 ;; `org-comment-line-break-function' breaks the line.
23126 ;; `org-setup-filling' installs filling and auto-filling related
23127 ;; variables during `org-mode' initialization.
23129 (defvar org-element-paragraph-separate) ; org-element.el
23130 (defun org-setup-filling ()
23131 (require 'org-element)
23132 ;; Prevent auto-fill from inserting unwanted new items.
23133 (when (boundp 'fill-nobreak-predicate)
23134 (org-set-local
23135 'fill-nobreak-predicate
23136 (org-uniquify
23137 (append fill-nobreak-predicate
23138 '(org-fill-line-break-nobreak-p
23139 org-fill-paragraph-with-timestamp-nobreak-p)))))
23140 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23141 (org-set-local 'paragraph-start paragraph-ending)
23142 (org-set-local 'paragraph-separate paragraph-ending))
23143 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23144 (org-set-local 'auto-fill-inhibit-regexp nil)
23145 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23146 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23147 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23149 (defun org-fill-line-break-nobreak-p ()
23150 "Non-nil when a new line at point would create an Org line break."
23151 (save-excursion
23152 (skip-chars-backward "[ \t]")
23153 (skip-chars-backward "\\\\")
23154 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23156 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23157 "Non-nil when a new line at point would split a timestamp."
23158 (and (org-at-timestamp-p t)
23159 (not (looking-at org-ts-regexp-both))))
23161 (declare-function message-in-body-p "message" ())
23162 (defvar orgtbl-line-start-regexp) ; From org-table.el
23163 (defun org-adaptive-fill-function ()
23164 "Compute a fill prefix for the current line.
23165 Return fill prefix, as a string, or nil if current line isn't
23166 meant to be filled. For convenience, if `adaptive-fill-regexp'
23167 matches in paragraphs or comments, use it."
23168 (catch 'exit
23169 (when (derived-mode-p 'message-mode)
23170 (save-excursion
23171 (beginning-of-line)
23172 (cond ((not (message-in-body-p)) (throw 'exit nil))
23173 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23174 ((looking-at message-cite-prefix-regexp)
23175 (throw 'exit (match-string-no-properties 0)))
23176 ((looking-at org-outline-regexp)
23177 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23178 (org-with-wide-buffer
23179 (unless (org-at-heading-p)
23180 (let* ((p (line-beginning-position))
23181 (element (save-excursion
23182 (beginning-of-line)
23183 (org-element-at-point)))
23184 (type (org-element-type element))
23185 (post-affiliated (org-element-property :post-affiliated element)))
23186 (unless (< p post-affiliated)
23187 (case type
23188 (comment
23189 (save-excursion
23190 (beginning-of-line)
23191 (looking-at "[ \t]*")
23192 (concat (match-string 0) "# ")))
23193 (footnote-definition "")
23194 ((item plain-list)
23195 (make-string (org-list-item-body-column post-affiliated) ?\s))
23196 (paragraph
23197 ;; Fill prefix is usually the same as the current line,
23198 ;; unless the paragraph is at the beginning of an item.
23199 (let ((parent (org-element-property :parent element)))
23200 (save-excursion
23201 (beginning-of-line)
23202 (cond ((eq (org-element-type parent) 'item)
23203 (make-string (org-list-item-body-column
23204 (org-element-property :begin parent))
23205 ?\s))
23206 ((and adaptive-fill-regexp
23207 ;; Locally disable
23208 ;; `adaptive-fill-function' to let
23209 ;; `fill-context-prefix' handle
23210 ;; `adaptive-fill-regexp' variable.
23211 (let (adaptive-fill-function)
23212 (fill-context-prefix
23213 post-affiliated
23214 (org-element-property :end element)))))
23215 ((looking-at "[ \t]+") (match-string 0))
23216 (t "")))))
23217 (comment-block
23218 ;; Only fill contents if P is within block boundaries.
23219 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23220 (forward-line)
23221 (point)))
23222 (cend (save-excursion
23223 (goto-char (org-element-property :end element))
23224 (skip-chars-backward " \r\t\n")
23225 (line-beginning-position))))
23226 (when (and (>= p cbeg) (< p cend))
23227 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23228 (match-string 0)
23229 "")))))))))))
23231 (declare-function message-goto-body "message" ())
23232 (defvar message-cite-prefix-regexp) ; From message.el
23233 (defun org-fill-paragraph (&optional justify)
23234 "Fill element at point, when applicable.
23236 This function only applies to comment blocks, comments, example
23237 blocks and paragraphs. Also, as a special case, re-align table
23238 when point is at one.
23240 If JUSTIFY is non-nil (interactively, with prefix argument),
23241 justify as well. If `sentence-end-double-space' is non-nil, then
23242 period followed by one space does not end a sentence, so don't
23243 break a line there. The variable `fill-column' controls the
23244 width for filling.
23246 For convenience, when point is at a plain list, an item or
23247 a footnote definition, try to fill the first paragraph within."
23248 (interactive)
23249 (if (and (derived-mode-p 'message-mode)
23250 (or (not (message-in-body-p))
23251 (save-excursion (move-beginning-of-line 1)
23252 (looking-at message-cite-prefix-regexp))))
23253 ;; First ensure filling is correct in message-mode.
23254 (let ((fill-paragraph-function
23255 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23256 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23257 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23258 (paragraph-separate
23259 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23260 (fill-paragraph nil))
23261 (with-syntax-table org-mode-transpose-word-syntax-table
23262 ;; Move to end of line in order to get the first paragraph
23263 ;; within a plain list or a footnote definition.
23264 (let ((element (save-excursion
23265 (end-of-line)
23266 (or (ignore-errors (org-element-at-point))
23267 (user-error "An element cannot be parsed line %d"
23268 (line-number-at-pos (point)))))))
23269 ;; First check if point is in a blank line at the beginning of
23270 ;; the buffer. In that case, ignore filling.
23271 (case (org-element-type element)
23272 ;; Use major mode filling function is src blocks.
23273 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23274 ;; Align Org tables, leave table.el tables as-is.
23275 (table-row (org-table-align) t)
23276 (table
23277 (when (eq (org-element-property :type element) 'org)
23278 (save-excursion
23279 (goto-char (org-element-property :post-affiliated element))
23280 (org-table-align)))
23282 (paragraph
23283 ;; Paragraphs may contain `line-break' type objects.
23284 (let ((beg (max (point-min)
23285 (org-element-property :contents-begin element)))
23286 (end (min (point-max)
23287 (org-element-property :contents-end element))))
23288 ;; Do nothing if point is at an affiliated keyword.
23289 (if (< (line-end-position) beg) t
23290 (when (derived-mode-p 'message-mode)
23291 ;; In `message-mode', do not fill following citation
23292 ;; in current paragraph nor text before message body.
23293 (let ((body-start (save-excursion (message-goto-body))))
23294 (when body-start (setq beg (max body-start beg))))
23295 (when (save-excursion
23296 (re-search-forward
23297 (concat "^" message-cite-prefix-regexp) end t))
23298 (setq end (match-beginning 0))))
23299 ;; Fill paragraph, taking line breaks into account.
23300 (save-excursion
23301 (goto-char beg)
23302 (let ((cuts (list beg)))
23303 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23304 (when (eq 'line-break
23305 (org-element-type
23306 (save-excursion (backward-char)
23307 (org-element-context))))
23308 (push (point) cuts)))
23309 (dolist (c (delq end cuts))
23310 (fill-region-as-paragraph c end justify)
23311 (setq end c))))
23312 t)))
23313 ;; Contents of `comment-block' type elements should be
23314 ;; filled as plain text, but only if point is within block
23315 ;; markers.
23316 (comment-block
23317 (let* ((case-fold-search t)
23318 (beg (save-excursion
23319 (goto-char (org-element-property :begin element))
23320 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23321 (forward-line)
23322 (point)))
23323 (end (save-excursion
23324 (goto-char (org-element-property :end element))
23325 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23326 (line-beginning-position))))
23327 (if (or (< (point) beg) (> (point) end)) t
23328 (fill-region-as-paragraph
23329 (save-excursion (end-of-line)
23330 (re-search-backward "^[ \t]*$" beg 'move)
23331 (line-beginning-position))
23332 (save-excursion (beginning-of-line)
23333 (re-search-forward "^[ \t]*$" end 'move)
23334 (line-beginning-position))
23335 justify))))
23336 ;; Fill comments.
23337 (comment
23338 (let ((begin (org-element-property :post-affiliated element))
23339 (end (org-element-property :end element)))
23340 (when (and (>= (point) begin) (<= (point) end))
23341 (let ((begin (save-excursion
23342 (end-of-line)
23343 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23344 (progn (forward-line) (point))
23345 begin)))
23346 (end (save-excursion
23347 (end-of-line)
23348 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23349 (1- (line-beginning-position))
23350 (skip-chars-backward " \r\t\n")
23351 (line-end-position)))))
23352 ;; Do not fill comments when at a blank line.
23353 (when (> end begin)
23354 (let ((fill-prefix
23355 (save-excursion
23356 (beginning-of-line)
23357 (looking-at "[ \t]*#")
23358 (let ((comment-prefix (match-string 0)))
23359 (goto-char (match-end 0))
23360 (if (looking-at adaptive-fill-regexp)
23361 (concat comment-prefix (match-string 0))
23362 (concat comment-prefix " "))))))
23363 (save-excursion
23364 (fill-region-as-paragraph begin end justify))))))
23366 ;; Ignore every other element.
23367 (otherwise t))))))
23369 (defun org-auto-fill-function ()
23370 "Auto-fill function."
23371 ;; Check if auto-filling is meaningful.
23372 (let ((fc (current-fill-column)))
23373 (when (and fc (> (current-column) fc))
23374 (let* ((fill-prefix (org-adaptive-fill-function))
23375 ;; Enforce empty fill prefix, if required. Otherwise, it
23376 ;; will be computed again.
23377 (adaptive-fill-mode (not (equal fill-prefix ""))))
23378 (when fill-prefix (do-auto-fill))))))
23380 (defun org-comment-line-break-function (&optional soft)
23381 "Break line at point and indent, continuing comment if within one.
23382 The inserted newline is marked hard if variable
23383 `use-hard-newlines' is true, unless optional argument SOFT is
23384 non-nil."
23385 (if soft (insert-and-inherit ?\n) (newline 1))
23386 (save-excursion (forward-char -1) (delete-horizontal-space))
23387 (delete-horizontal-space)
23388 (indent-to-left-margin)
23389 (insert-before-markers-and-inherit fill-prefix))
23392 ;;; Fixed Width Areas
23394 (defun org-toggle-fixed-width ()
23395 "Toggle fixed-width markup.
23397 Add or remove fixed-width markup on current line, whenever it
23398 makes sense. Return an error otherwise.
23400 If a region is active and if it contains only fixed-width areas
23401 or blank lines, remove all fixed-width markup in it. If the
23402 region contains anything else, convert all non-fixed-width lines
23403 to fixed-width ones.
23405 Blank lines at the end of the region are ignored unless the
23406 region only contains such lines."
23407 (interactive)
23408 (if (not (org-region-active-p))
23409 ;; No region:
23411 ;; Remove fixed width marker only in a fixed-with element.
23413 ;; Add fixed width maker in paragraphs, in blank lines after
23414 ;; elements or at the beginning of a headline or an inlinetask,
23415 ;; and before any one-line elements (e.g., a clock).
23416 (progn
23417 (beginning-of-line)
23418 (let* ((element (org-element-at-point))
23419 (type (org-element-type element)))
23420 (cond
23421 ((and (eq type 'fixed-width)
23422 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23423 (replace-match
23424 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23425 ((and (memq type '(babel-call clock comment diary-sexp headline
23426 horizontal-rule keyword paragraph
23427 planning))
23428 (<= (org-element-property :post-affiliated element) (point)))
23429 (skip-chars-forward " \t")
23430 (insert ": "))
23431 ((and (org-looking-at-p "[ \t]*$")
23432 (or (eq type 'inlinetask)
23433 (save-excursion
23434 (skip-chars-forward " \r\t\n")
23435 (<= (org-element-property :end element) (point)))))
23436 (delete-region (point) (line-end-position))
23437 (org-indent-line)
23438 (insert ": "))
23439 (t (user-error "Cannot insert a fixed-width line here")))))
23440 ;; Region active.
23441 (let* ((begin (save-excursion
23442 (goto-char (region-beginning))
23443 (line-beginning-position)))
23444 (end (copy-marker
23445 (save-excursion
23446 (goto-char (region-end))
23447 (unless (eolp) (beginning-of-line))
23448 (if (save-excursion (re-search-backward "\\S-" begin t))
23449 (progn (skip-chars-backward " \r\t\n") (point))
23450 (point)))))
23451 (all-fixed-width-p
23452 (catch 'not-all-p
23453 (save-excursion
23454 (goto-char begin)
23455 (skip-chars-forward " \r\t\n")
23456 (when (eobp) (throw 'not-all-p nil))
23457 (while (< (point) end)
23458 (let ((element (org-element-at-point)))
23459 (if (eq (org-element-type element) 'fixed-width)
23460 (goto-char (org-element-property :end element))
23461 (throw 'not-all-p nil))))
23462 t))))
23463 (if all-fixed-width-p
23464 (save-excursion
23465 (goto-char begin)
23466 (while (< (point) end)
23467 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23468 (replace-match
23469 "" nil nil nil
23470 (if (= (line-end-position) (match-end 0)) 0 1)))
23471 (forward-line)))
23472 (let ((min-ind (point-max)))
23473 ;; Find minimum indentation across all lines.
23474 (save-excursion
23475 (goto-char begin)
23476 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23477 (setq min-ind 0)
23478 (catch 'zerop
23479 (while (< (point) end)
23480 (unless (org-looking-at-p "[ \t]*$")
23481 (let ((ind (org-get-indentation)))
23482 (setq min-ind (min min-ind ind))
23483 (when (zerop ind) (throw 'zerop t))))
23484 (forward-line)))))
23485 ;; Loop over all lines and add fixed-width markup everywhere
23486 ;; but in fixed-width lines.
23487 (save-excursion
23488 (goto-char begin)
23489 (while (< (point) end)
23490 (cond
23491 ((org-at-heading-p)
23492 (insert ": ")
23493 (forward-line)
23494 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23495 (insert ":")
23496 (forward-line)))
23497 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23498 (let* ((element (org-element-at-point))
23499 (element-end (org-element-property :end element)))
23500 (if (eq (org-element-type element) 'fixed-width)
23501 (progn (goto-char element-end)
23502 (skip-chars-backward " \r\t\n")
23503 (forward-line))
23504 (let ((limit (min end element-end)))
23505 (while (< (point) limit)
23506 (org-move-to-column min-ind t)
23507 (insert ": ")
23508 (forward-line))))))
23510 (org-move-to-column min-ind t)
23511 (insert ": ")
23512 (forward-line)))))))
23513 (set-marker end nil))))
23516 ;;; Comments
23518 ;; Org comments syntax is quite complex. It requires the entire line
23519 ;; to be just a comment. Also, even with the right syntax at the
23520 ;; beginning of line, some some elements (i.e. verse-block or
23521 ;; example-block) don't accept comments. Usual Emacs comment commands
23522 ;; cannot cope with those requirements. Therefore, Org replaces them.
23524 ;; Org still relies on `comment-dwim', but cannot trust
23525 ;; `comment-only-p'. So, `comment-region-function' and
23526 ;; `uncomment-region-function' both point
23527 ;; to`org-comment-or-uncomment-region'. Eventually,
23528 ;; `org-insert-comment' takes care of insertion of comments at the
23529 ;; beginning of line.
23531 ;; `org-setup-comments-handling' install comments related variables
23532 ;; during `org-mode' initialization.
23534 (defun org-setup-comments-handling ()
23535 (interactive)
23536 (org-set-local 'comment-use-syntax nil)
23537 (org-set-local 'comment-start "# ")
23538 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23539 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23540 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23541 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23543 (defun org-insert-comment ()
23544 "Insert an empty comment above current line.
23545 If the line is empty, insert comment at its beginning. When
23546 point is within a source block, comment according to the related
23547 major mode."
23548 (if (let ((element (org-element-at-point)))
23549 (and (eq (org-element-type element) 'src-block)
23550 (< (save-excursion
23551 (goto-char (org-element-property :post-affiliated element))
23552 (line-end-position))
23553 (point))
23554 (> (save-excursion
23555 (goto-char (org-element-property :end element))
23556 (skip-chars-backward " \r\t\n")
23557 (line-beginning-position))
23558 (point))))
23559 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23560 (beginning-of-line)
23561 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23562 (open-line 1))
23563 (org-indent-line)
23564 (insert "# ")))
23566 (defvar comment-empty-lines) ; From newcomment.el.
23567 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23568 "Comment or uncomment each non-blank line in the region.
23569 Uncomment each non-blank line between BEG and END if it only
23570 contains commented lines. Otherwise, comment them. If region is
23571 strictly within a source block, use appropriate comment syntax."
23572 (if (let ((element (org-element-at-point)))
23573 (and (eq (org-element-type element) 'src-block)
23574 (< (save-excursion
23575 (goto-char (org-element-property :post-affiliated element))
23576 (line-end-position))
23577 beg)
23578 (>= (save-excursion
23579 (goto-char (org-element-property :end element))
23580 (skip-chars-backward " \r\t\n")
23581 (line-beginning-position))
23582 end)))
23583 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23584 (save-restriction
23585 ;; Restrict region
23586 (narrow-to-region (save-excursion (goto-char beg)
23587 (skip-chars-forward " \r\t\n" end)
23588 (line-beginning-position))
23589 (save-excursion (goto-char end)
23590 (skip-chars-backward " \r\t\n" beg)
23591 (line-end-position)))
23592 (let ((uncommentp
23593 ;; UNCOMMENTP is non-nil when every non blank line between
23594 ;; BEG and END is a comment.
23595 (save-excursion
23596 (goto-char (point-min))
23597 (while (and (not (eobp))
23598 (let ((element (org-element-at-point)))
23599 (and (eq (org-element-type element) 'comment)
23600 (goto-char (min (point-max)
23601 (org-element-property
23602 :end element)))))))
23603 (eobp))))
23604 (if uncommentp
23605 ;; Only blank lines and comments in region: uncomment it.
23606 (save-excursion
23607 (goto-char (point-min))
23608 (while (not (eobp))
23609 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23610 (replace-match "" nil nil nil 1))
23611 (forward-line)))
23612 ;; Comment each line in region.
23613 (let ((min-indent (point-max)))
23614 ;; First find the minimum indentation across all lines.
23615 (save-excursion
23616 (goto-char (point-min))
23617 (while (and (not (eobp)) (not (zerop min-indent)))
23618 (unless (looking-at "[ \t]*$")
23619 (setq min-indent (min min-indent (current-indentation))))
23620 (forward-line)))
23621 ;; Then loop over all lines.
23622 (save-excursion
23623 (goto-char (point-min))
23624 (while (not (eobp))
23625 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23626 ;; Don't get fooled by invisible text (e.g. link path)
23627 ;; when moving to column MIN-INDENT.
23628 (let ((buffer-invisibility-spec nil))
23629 (org-move-to-column min-indent t))
23630 (insert comment-start))
23631 (forward-line)))))))))
23633 (defun org-comment-dwim (arg)
23634 "Call `comment-dwim' within a source edit buffer if needed."
23635 (interactive "*P")
23636 (if (org-in-src-block-p)
23637 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23638 (call-interactively 'comment-dwim)))
23641 ;;; Timestamps API
23643 ;; This section contains tools to operate on timestamp objects, as
23644 ;; returned by, e.g. `org-element-context'.
23646 (defun org-timestamp--to-internal-time (timestamp &optional end)
23647 "Encode TIMESTAMP object into Emacs internal time.
23648 Use end of date range or time range when END is non-nil."
23649 (apply #'encode-time
23650 (cons 0
23651 (mapcar
23652 (lambda (prop) (or (org-element-property prop timestamp) 0))
23653 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23654 '(:minute-start :hour-start :day-start :month-start
23655 :year-start))))))
23657 (defun org-timestamp-has-time-p (timestamp)
23658 "Non-nil when TIMESTAMP has a time specified."
23659 (org-element-property :hour-start timestamp))
23661 (defun org-timestamp-format (timestamp format &optional end utc)
23662 "Format a TIMESTAMP object into a string.
23664 FORMAT is a format specifier to be passed to
23665 `format-time-string'.
23667 When optional argument END is non-nil, use end of date-range or
23668 time-range, if possible.
23670 When optional argument UTC is non-nil, time will be expressed as
23671 Universal Time."
23672 (format-time-string
23673 format (org-timestamp--to-internal-time timestamp end) utc))
23675 (defun org-timestamp-split-range (timestamp &optional end)
23676 "Extract a TIMESTAMP object from a date or time range.
23678 END, when non-nil, means extract the end of the range.
23679 Otherwise, extract its start.
23681 Return a new timestamp object."
23682 (let ((type (org-element-property :type timestamp)))
23683 (if (memq type '(active inactive diary)) timestamp
23684 (let ((split-ts (org-element-copy timestamp)))
23685 ;; Set new type.
23686 (org-element-put-property
23687 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23688 ;; Copy start properties over end properties if END is
23689 ;; non-nil. Otherwise, copy end properties over `start' ones.
23690 (let ((p-alist '((:minute-start . :minute-end)
23691 (:hour-start . :hour-end)
23692 (:day-start . :day-end)
23693 (:month-start . :month-end)
23694 (:year-start . :year-end))))
23695 (dolist (p-cell p-alist)
23696 (org-element-put-property
23697 split-ts
23698 (funcall (if end #'car #'cdr) p-cell)
23699 (org-element-property
23700 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23701 ;; Eventually refresh `:raw-value'.
23702 (org-element-put-property split-ts :raw-value nil)
23703 (org-element-put-property
23704 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23706 (defun org-timestamp-translate (timestamp &optional boundary)
23707 "Translate TIMESTAMP object to custom format.
23709 Format string is defined in `org-time-stamp-custom-formats',
23710 which see.
23712 When optional argument BOUNDARY is non-nil, it is either the
23713 symbol `start' or `end'. In this case, only translate the
23714 starting or ending part of TIMESTAMP if it is a date or time
23715 range. Otherwise, translate both parts.
23717 Return timestamp as-is if `org-display-custom-times' is nil or if
23718 it has a `diary' type."
23719 (let ((type (org-element-property :type timestamp)))
23720 (if (or (not org-display-custom-times) (eq type 'diary))
23721 (org-element-interpret-data timestamp)
23722 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23723 org-time-stamp-custom-formats)))
23724 (if (and (not boundary) (memq type '(active-range inactive-range)))
23725 (concat (org-timestamp-format timestamp fmt)
23726 "--"
23727 (org-timestamp-format timestamp fmt t))
23728 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23732 ;;; Other stuff.
23734 (defun org-reftex-citation ()
23735 "Use reftex-citation to insert a citation into the buffer.
23736 This looks for a line like
23738 #+BIBLIOGRAPHY: foo plain option:-d
23740 and derives from it that foo.bib is the bibliography file relevant
23741 for this document. It then installs the necessary environment for RefTeX
23742 to work in this buffer and calls `reftex-citation' to insert a citation
23743 into the buffer.
23745 Export of such citations to both LaTeX and HTML is handled by the contributed
23746 package ox-bibtex by Taru Karttunen."
23747 (interactive)
23748 (let ((reftex-docstruct-symbol 'rds)
23749 (reftex-cite-format "\\cite{%l}")
23750 rds bib)
23751 (save-excursion
23752 (save-restriction
23753 (widen)
23754 (let ((case-fold-search t)
23755 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23756 (if (not (save-excursion
23757 (or (re-search-forward re nil t)
23758 (re-search-backward re nil t))))
23759 (user-error "No bibliography defined in file")
23760 (setq bib (concat (match-string 1) ".bib")
23761 rds (list (list 'bib bib)))))))
23762 (call-interactively 'reftex-citation)))
23764 ;;;; Functions extending outline functionality
23766 (defun org-beginning-of-line (&optional arg)
23767 "Go to the beginning of the current line. If that is invisible, continue
23768 to a visible line beginning. This makes the function of C-a more intuitive.
23769 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23770 first attempt, and only move to after the tags when the cursor is already
23771 beyond the end of the headline."
23772 (interactive "P")
23773 (let ((pos (point))
23774 (special (if (consp org-special-ctrl-a/e)
23775 (car org-special-ctrl-a/e)
23776 org-special-ctrl-a/e))
23777 deactivate-mark refpos)
23778 (if (org-bound-and-true-p visual-line-mode)
23779 (beginning-of-visual-line 1)
23780 (beginning-of-line 1))
23781 (if (and arg (fboundp 'move-beginning-of-line))
23782 (call-interactively 'move-beginning-of-line)
23783 (if (bobp)
23785 (backward-char 1)
23786 (if (org-truely-invisible-p)
23787 (while (and (not (bobp)) (org-truely-invisible-p))
23788 (backward-char 1)
23789 (beginning-of-line 1))
23790 (forward-char 1))))
23791 (when special
23792 (cond
23793 ((and (looking-at org-complex-heading-regexp)
23794 (= (char-after (match-end 1)) ?\ ))
23795 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23796 (point-at-eol)))
23797 (goto-char
23798 (if (eq special t)
23799 (cond ((> pos refpos) refpos)
23800 ((= pos (point)) refpos)
23801 (t (point)))
23802 (cond ((> pos (point)) (point))
23803 ((not (eq last-command this-command)) (point))
23804 (t refpos)))))
23805 ((org-at-item-p)
23806 ;; Being at an item and not looking at an the item means point
23807 ;; was previously moved to beginning of a visual line, which
23808 ;; doesn't contain the item. Therefore, do nothing special,
23809 ;; just stay here.
23810 (when (looking-at org-list-full-item-re)
23811 ;; Set special position at first white space character after
23812 ;; bullet, and check-box, if any.
23813 (let ((after-bullet
23814 (let ((box (match-end 3)))
23815 (if (not box) (match-end 1)
23816 (let ((after (char-after box)))
23817 (if (and after (= after ? )) (1+ box) box))))))
23818 ;; Special case: Move point to special position when
23819 ;; currently after it or at beginning of line.
23820 (if (eq special t)
23821 (when (or (> pos after-bullet) (= (point) pos))
23822 (goto-char after-bullet))
23823 ;; Reversed case: Move point to special position when
23824 ;; point was already at beginning of line and command is
23825 ;; repeated.
23826 (when (and (= (point) pos) (eq last-command this-command))
23827 (goto-char after-bullet))))))))
23828 (org-no-warnings
23829 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23830 (setq disable-point-adjustment
23831 (or (not (invisible-p (point)))
23832 (not (invisible-p (max (point-min) (1- (point))))))))
23834 (defun org-end-of-line (&optional arg)
23835 "Go to the end of the line.
23836 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23837 tags on the first attempt, and only move to after the tags when
23838 the cursor is already beyond the end of the headline."
23839 (interactive "P")
23840 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23841 org-special-ctrl-a/e))
23842 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23843 'end-of-visual-line)
23844 ((fboundp 'move-end-of-line) 'move-end-of-line)
23845 (t 'end-of-line)))
23846 deactivate-mark)
23847 (if (or (not special) arg) (call-interactively move-fun)
23848 (let* ((element (save-excursion (beginning-of-line)
23849 (org-element-at-point)))
23850 (type (org-element-type element)))
23851 (cond
23852 ((memq type '(headline inlinetask))
23853 (let ((pos (point)))
23854 (beginning-of-line 1)
23855 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23856 (if (eq special t)
23857 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23858 (goto-char (match-beginning 1))
23859 (goto-char (match-end 0)))
23860 (if (or (< pos (match-end 0))
23861 (not (eq this-command last-command)))
23862 (goto-char (match-end 0))
23863 (goto-char (match-beginning 1))))
23864 (call-interactively move-fun))))
23865 ((outline-invisible-p (line-end-position))
23866 ;; If element is hidden, `move-end-of-line' would put point
23867 ;; after it. Use `end-of-line' to stay on current line.
23868 (call-interactively 'end-of-line))
23869 (t (call-interactively move-fun)))))
23870 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23871 (setq disable-point-adjustment
23872 (or (not (invisible-p (point)))
23873 (not (invisible-p (max (point-min) (1- (point))))))))
23875 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23876 (define-key org-mode-map "\C-e" 'org-end-of-line)
23878 (defun org-backward-sentence (&optional arg)
23879 "Go to beginning of sentence, or beginning of table field.
23880 This will call `backward-sentence' or `org-table-beginning-of-field',
23881 depending on context."
23882 (interactive "P")
23883 (let* ((element (org-element-at-point))
23884 (contents-begin (org-element-property :contents-begin element))
23885 (table (org-element-lineage element '(table) t)))
23886 (if (and table
23887 (> (point) contents-begin)
23888 (<= (point) (org-element-property :contents-end table)))
23889 (call-interactively #'org-table-beginning-of-field)
23890 (save-restriction
23891 (when (and contents-begin
23892 (< (point-min) contents-begin)
23893 (> (point) contents-begin))
23894 (narrow-to-region contents-begin
23895 (org-element-property :contents-end element)))
23896 (call-interactively #'backward-sentence)))))
23898 (defun org-forward-sentence (&optional arg)
23899 "Go to end of sentence, or end of table field.
23900 This will call `forward-sentence' or `org-table-end-of-field',
23901 depending on context."
23902 (interactive "P")
23903 (let* ((element (org-element-at-point))
23904 (contents-end (org-element-property :contents-end element))
23905 (table (org-element-lineage element '(table) t)))
23906 (if (and table
23907 (>= (point) (org-element-property :contents-begin table))
23908 (< (point) contents-end))
23909 (call-interactively #'org-table-end-of-field)
23910 (save-restriction
23911 (when (and contents-end
23912 (> (point-max) contents-end)
23913 ;; Skip blank lines between elements.
23914 (< (org-element-property :end element)
23915 (save-excursion (goto-char contents-end)
23916 (skip-chars-forward " \r\t\n"))))
23917 (narrow-to-region (org-element-property :contents-begin element)
23918 contents-end))
23919 (call-interactively #'forward-sentence)))))
23921 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23922 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23924 (defun org-kill-line (&optional arg)
23925 "Kill line, to tags or end of line."
23926 (interactive "P")
23927 (cond
23928 ((or (not org-special-ctrl-k)
23929 (bolp)
23930 (not (org-at-heading-p)))
23931 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23932 org-ctrl-k-protect-subtree)
23933 (if (or (eq org-ctrl-k-protect-subtree 'error)
23934 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23935 (user-error "C-k aborted as it would kill a hidden subtree")))
23936 (call-interactively
23937 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23938 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23939 (kill-region (point) (match-beginning 1))
23940 (org-set-tags nil t))
23941 (t (kill-region (point) (point-at-eol)))))
23943 (define-key org-mode-map "\C-k" 'org-kill-line)
23945 (defun org-yank (&optional arg)
23946 "Yank. If the kill is a subtree, treat it specially.
23947 This command will look at the current kill and check if is a single
23948 subtree, or a series of subtrees[1]. If it passes the test, and if the
23949 cursor is at the beginning of a line or after the stars of a currently
23950 empty headline, then the yank is handled specially. How exactly depends
23951 on the value of the following variables, both set by default.
23953 `org-yank-folded-subtrees'
23954 When set, the subtree(s) will be folded after insertion, but only
23955 if doing so would now swallow text after the yanked text.
23957 `org-yank-adjusted-subtrees'
23958 When set, the subtree will be promoted or demoted in order to
23959 fit into the local outline tree structure, which means that the
23960 level will be adjusted so that it becomes the smaller one of the
23961 two *visible* surrounding headings.
23963 Any prefix to this command will cause `yank' to be called directly with
23964 no special treatment. In particular, a simple \\[universal-argument] prefix \
23965 will just
23966 plainly yank the text as it is.
23968 \[1] The test checks if the first non-white line is a heading
23969 and if there are no other headings with fewer stars."
23970 (interactive "P")
23971 (org-yank-generic 'yank arg))
23973 (defun org-yank-generic (command arg)
23974 "Perform some yank-like command.
23976 This function implements the behavior described in the `org-yank'
23977 documentation. However, it has been generalized to work for any
23978 interactive command with similar behavior."
23980 ;; pretend to be command COMMAND
23981 (setq this-command command)
23983 (if arg
23984 (call-interactively command)
23986 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23987 (and (org-kill-is-subtree-p)
23988 (or (bolp)
23989 (and (looking-at "[ \t]*$")
23990 (string-match
23991 "\\`\\*+\\'"
23992 (buffer-substring (point-at-bol) (point)))))))
23993 swallowp)
23994 (cond
23995 ((and subtreep org-yank-folded-subtrees)
23996 (let ((beg (point))
23997 end)
23998 (if (and subtreep org-yank-adjusted-subtrees)
23999 (org-paste-subtree nil nil 'for-yank)
24000 (call-interactively command))
24002 (setq end (point))
24003 (goto-char beg)
24004 (when (and (bolp) subtreep
24005 (not (setq swallowp
24006 (org-yank-folding-would-swallow-text beg end))))
24007 (org-with-limited-levels
24008 (or (looking-at org-outline-regexp)
24009 (re-search-forward org-outline-regexp-bol end t))
24010 (while (and (< (point) end) (looking-at org-outline-regexp))
24011 (hide-subtree)
24012 (org-cycle-show-empty-lines 'folded)
24013 (condition-case nil
24014 (outline-forward-same-level 1)
24015 (error (goto-char end))))))
24016 (when swallowp
24017 (message
24018 "Inserted text not folded because that would swallow text"))
24020 (goto-char end)
24021 (skip-chars-forward " \t\n\r")
24022 (beginning-of-line 1)
24023 (push-mark beg 'nomsg)))
24024 ((and subtreep org-yank-adjusted-subtrees)
24025 (let ((beg (point-at-bol)))
24026 (org-paste-subtree nil nil 'for-yank)
24027 (push-mark beg 'nomsg)))
24029 (call-interactively command))))))
24031 (defun org-yank-folding-would-swallow-text (beg end)
24032 "Would hide-subtree at BEG swallow any text after END?"
24033 (let (level)
24034 (org-with-limited-levels
24035 (save-excursion
24036 (goto-char beg)
24037 (when (or (looking-at org-outline-regexp)
24038 (re-search-forward org-outline-regexp-bol end t))
24039 (setq level (org-outline-level)))
24040 (goto-char end)
24041 (skip-chars-forward " \t\r\n\v\f")
24042 (if (or (eobp)
24043 (and (bolp) (looking-at org-outline-regexp)
24044 (<= (org-outline-level) level)))
24045 nil ; Nothing would be swallowed
24046 t))))) ; something would swallow
24048 (define-key org-mode-map "\C-y" 'org-yank)
24050 (defun org-truely-invisible-p ()
24051 "Check if point is at a character currently not visible.
24052 This version does not only check the character property, but also
24053 `visible-mode'."
24054 ;; Early versions of noutline don't have `outline-invisible-p'.
24055 (if (org-bound-and-true-p visible-mode)
24057 (outline-invisible-p)))
24059 (defun org-invisible-p2 ()
24060 "Check if point is at a character currently not visible."
24061 (save-excursion
24062 (if (and (eolp) (not (bobp))) (backward-char 1))
24063 ;; Early versions of noutline don't have `outline-invisible-p'.
24064 (outline-invisible-p)))
24066 (defun org-back-to-heading (&optional invisible-ok)
24067 "Call `outline-back-to-heading', but provide a better error message."
24068 (condition-case nil
24069 (outline-back-to-heading invisible-ok)
24070 (error (error "Before first headline at position %d in buffer %s"
24071 (point) (current-buffer)))))
24073 (defun org-before-first-heading-p ()
24074 "Before first heading?"
24075 (save-excursion
24076 (end-of-line)
24077 (null (re-search-backward org-outline-regexp-bol nil t))))
24079 (defun org-at-heading-p (&optional ignored)
24080 (outline-on-heading-p t))
24081 ;; Compatibility alias with Org versions < 7.8.03
24082 (defalias 'org-on-heading-p 'org-at-heading-p)
24084 (defun org-in-commented-heading-p (&optional no-inheritance)
24085 "Non-nil if point is under a commented heading.
24086 This function also checks ancestors of the current headline,
24087 unless optional argument NO-INHERITANCE is non-nil."
24088 (cond
24089 ((org-before-first-heading-p) nil)
24090 ((let ((headline (nth 4 (org-heading-components))))
24091 (and headline
24092 (let ((case-fold-search nil))
24093 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24094 headline)))))
24095 (no-inheritance nil)
24097 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24099 (defun org-at-comment-p nil
24100 "Is cursor in a commented line?"
24101 (save-excursion
24102 (save-match-data
24103 (beginning-of-line)
24104 (looking-at "^[ \t]*# "))))
24106 (defun org-at-drawer-p nil
24107 "Is cursor at a drawer keyword?"
24108 (save-excursion
24109 (move-beginning-of-line 1)
24110 (looking-at org-drawer-regexp)))
24112 (defun org-at-block-p nil
24113 "Is cursor at a block keyword?"
24114 (save-excursion
24115 (move-beginning-of-line 1)
24116 (looking-at org-block-regexp)))
24118 (defun org-point-at-end-of-empty-headline ()
24119 "If point is at the end of an empty headline, return t, else nil.
24120 If the heading only contains a TODO keyword, it is still still considered
24121 empty."
24122 (and (looking-at "[ \t]*$")
24123 (when org-todo-line-regexp
24124 (save-excursion
24125 (beginning-of-line 1)
24126 (let ((case-fold-search nil))
24127 (looking-at org-todo-line-regexp)
24128 (string= (match-string 3) ""))))))
24130 (defun org-at-heading-or-item-p ()
24131 (or (org-at-heading-p) (org-at-item-p)))
24133 (defun org-at-target-p ()
24134 (or (org-in-regexp org-radio-target-regexp)
24135 (org-in-regexp org-target-regexp)))
24136 ;; Compatibility alias with Org versions < 7.8.03
24137 (defalias 'org-on-target-p 'org-at-target-p)
24139 (defun org-up-heading-all (arg)
24140 "Move to the heading line of which the present line is a subheading.
24141 This function considers both visible and invisible heading lines.
24142 With argument, move up ARG levels."
24143 (if (fboundp 'outline-up-heading-all)
24144 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24145 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24147 (defun org-up-heading-safe ()
24148 "Move to the heading line of which the present line is a subheading.
24149 This version will not throw an error. It will return the level of the
24150 headline found, or nil if no higher level is found.
24152 Also, this function will be a lot faster than `outline-up-heading',
24153 because it relies on stars being the outline starters. This can really
24154 make a significant difference in outlines with very many siblings."
24155 (when (ignore-errors (org-back-to-heading t))
24156 (let ((level-up (1- (funcall outline-level))))
24157 (and (> level-up 0)
24158 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24159 (funcall outline-level)))))
24161 (defun org-first-sibling-p ()
24162 "Is this heading the first child of its parents?"
24163 (interactive)
24164 (let ((re org-outline-regexp-bol)
24165 level l)
24166 (unless (org-at-heading-p t)
24167 (user-error "Not at a heading"))
24168 (setq level (funcall outline-level))
24169 (save-excursion
24170 (if (not (re-search-backward re nil t))
24172 (setq l (funcall outline-level))
24173 (< l level)))))
24175 (defun org-goto-sibling (&optional previous)
24176 "Goto the next sibling, even if it is invisible.
24177 When PREVIOUS is set, go to the previous sibling instead. Returns t
24178 when a sibling was found. When none is found, return nil and don't
24179 move point."
24180 (let ((fun (if previous 're-search-backward 're-search-forward))
24181 (pos (point))
24182 (re org-outline-regexp-bol)
24183 level l)
24184 (when (ignore-errors (org-back-to-heading t))
24185 (setq level (funcall outline-level))
24186 (catch 'exit
24187 (or previous (forward-char 1))
24188 (while (funcall fun re nil t)
24189 (setq l (funcall outline-level))
24190 (when (< l level) (goto-char pos) (throw 'exit nil))
24191 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24192 (goto-char pos)
24193 nil))))
24195 (defun org-show-siblings ()
24196 "Show all siblings of the current headline."
24197 (save-excursion
24198 (while (org-goto-sibling) (org-flag-heading nil)))
24199 (save-excursion
24200 (while (org-goto-sibling 'previous)
24201 (org-flag-heading nil))))
24203 (defun org-goto-first-child ()
24204 "Goto the first child, even if it is invisible.
24205 Return t when a child was found. Otherwise don't move point and
24206 return nil."
24207 (let (level (pos (point)) (re org-outline-regexp-bol))
24208 (when (ignore-errors (org-back-to-heading t))
24209 (setq level (outline-level))
24210 (forward-char 1)
24211 (if (and (re-search-forward re nil t) (> (outline-level) level))
24212 (progn (goto-char (match-beginning 0)) t)
24213 (goto-char pos) nil))))
24215 (defun org-show-hidden-entry ()
24216 "Show an entry where even the heading is hidden."
24217 (save-excursion
24218 (org-show-entry)))
24220 (defun org-flag-heading (flag &optional entry)
24221 "Flag the current heading. FLAG non-nil means make invisible.
24222 When ENTRY is non-nil, show the entire entry."
24223 (save-excursion
24224 (org-back-to-heading t)
24225 ;; Check if we should show the entire entry
24226 (if entry
24227 (progn
24228 (org-show-entry)
24229 (save-excursion
24230 (and (outline-next-heading)
24231 (org-flag-heading nil))))
24232 (outline-flag-region (max (point-min) (1- (point)))
24233 (save-excursion (outline-end-of-heading) (point))
24234 flag))))
24236 (defun org-get-next-sibling ()
24237 "Move to next heading of the same level, and return point.
24238 If there is no such heading, return nil.
24239 This is like outline-next-sibling, but invisible headings are ok."
24240 (let ((level (funcall outline-level)))
24241 (outline-next-heading)
24242 (while (and (not (eobp)) (> (funcall outline-level) level))
24243 (outline-next-heading))
24244 (if (or (eobp) (< (funcall outline-level) level))
24246 (point))))
24248 (defun org-get-last-sibling ()
24249 "Move to previous heading of the same level, and return point.
24250 If there is no such heading, return nil."
24251 (let ((opoint (point))
24252 (level (funcall outline-level)))
24253 (outline-previous-heading)
24254 (when (and (/= (point) opoint) (outline-on-heading-p t))
24255 (while (and (> (funcall outline-level) level)
24256 (not (bobp)))
24257 (outline-previous-heading))
24258 (if (< (funcall outline-level) level)
24260 (point)))))
24262 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24263 "Goto to the end of a subtree."
24264 ;; This contains an exact copy of the original function, but it uses
24265 ;; `org-back-to-heading', to make it work also in invisible
24266 ;; trees. And is uses an invisible-ok argument.
24267 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24268 ;; Furthermore, when used inside Org, finding the end of a large subtree
24269 ;; with many children and grandchildren etc, this can be much faster
24270 ;; than the outline version.
24271 (org-back-to-heading invisible-ok)
24272 (let ((first t)
24273 (level (funcall outline-level)))
24274 (if (and (derived-mode-p 'org-mode) (< level 1000))
24275 ;; A true heading (not a plain list item), in Org-mode
24276 ;; This means we can easily find the end by looking
24277 ;; only for the right number of stars. Using a regexp to do
24278 ;; this is so much faster than using a Lisp loop.
24279 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24280 (forward-char 1)
24281 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24282 ;; something else, do it the slow way
24283 (while (and (not (eobp))
24284 (or first (> (funcall outline-level) level)))
24285 (setq first nil)
24286 (outline-next-heading)))
24287 (unless to-heading
24288 (if (memq (preceding-char) '(?\n ?\^M))
24289 (progn
24290 ;; Go to end of line before heading
24291 (forward-char -1)
24292 (if (memq (preceding-char) '(?\n ?\^M))
24293 ;; leave blank line before heading
24294 (forward-char -1))))))
24295 (point))
24297 (defun org-end-of-meta-data (&optional full)
24298 "Skip planning line and properties drawer in current entry.
24299 When optional argument FULL is non-nil, also skip empty lines,
24300 clocking lines and regular drawers at the beginning of the
24301 entry."
24302 (org-back-to-heading t)
24303 (forward-line)
24304 (when (org-looking-at-p org-planning-line-re) (forward-line))
24305 (when (looking-at org-property-drawer-re)
24306 (goto-char (match-end 0))
24307 (forward-line))
24308 (when (and full (not (org-at-heading-p)))
24309 (catch 'exit
24310 (let ((end (save-excursion (outline-next-heading) (point)))
24311 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24312 (while (not (eobp))
24313 (cond ((org-looking-at-p org-drawer-regexp)
24314 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24315 (forward-line)
24316 (throw 'exit t)))
24317 ((org-looking-at-p re) (forward-line))
24318 (t (throw 'exit t))))))))
24320 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24321 "Move forward to the ARG'th subheading at same level as this one.
24322 Stop at the first and last subheadings of a superior heading.
24323 Normally this only looks at visible headings, but when INVISIBLE-OK is
24324 non-nil it will also look at invisible ones."
24325 (interactive "p")
24326 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24327 (if (and arg (< arg 0))
24328 (goto-char (point-min))
24329 (outline-next-heading))
24330 (org-at-heading-p)
24331 (let ((level (- (match-end 0) (match-beginning 0) 1))
24332 (f (if (and arg (< arg 0))
24333 're-search-backward
24334 're-search-forward))
24335 (count (if arg (abs arg) 1))
24336 (result (point)))
24337 (while (and (prog1 (> count 0)
24338 (forward-char (if (and arg (< arg 0)) -1 1)))
24339 (funcall f org-outline-regexp-bol nil 'move))
24340 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24341 (cond ((< l level) (setq count 0))
24342 ((and (= l level)
24343 (or invisible-ok
24344 (progn
24345 (goto-char (line-beginning-position))
24346 (not (outline-invisible-p)))))
24347 (setq count (1- count))
24348 (when (eq l level)
24349 (setq result (point)))))))
24350 (goto-char result))
24351 (beginning-of-line 1)))
24353 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24354 "Move backward to the ARG'th subheading at same level as this one.
24355 Stop at the first and last subheadings of a superior heading."
24356 (interactive "p")
24357 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24359 (defun org-next-visible-heading (arg)
24360 "Move to the next visible heading.
24362 This function wraps `outline-next-visible-heading' with
24363 `org-with-limited-levels' in order to skip over inline tasks and
24364 respect customization of `org-odd-levels-only'."
24365 (interactive "p")
24366 (org-with-limited-levels
24367 (outline-next-visible-heading arg)))
24369 (defun org-previous-visible-heading (arg)
24370 "Move to the next visible heading.
24372 This function wraps `outline-previous-visible-heading' with
24373 `org-with-limited-levels' in order to skip over inline tasks and
24374 respect customization of `org-odd-levels-only'."
24375 (interactive "p")
24376 (org-with-limited-levels
24377 (outline-previous-visible-heading arg)))
24379 (defun org-next-block (arg &optional backward block-regexp)
24380 "Jump to the next block.
24382 With a prefix argument ARG, jump forward ARG many blocks.
24384 When BACKWARD is non-nil, jump to the previous block.
24386 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24387 Match data is set according to this regexp when the function
24388 returns.
24390 Return point at beginning of the opening line of found block.
24391 Throw an error if no block is found."
24392 (interactive "p")
24393 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24394 (case-fold-search t)
24395 (search-fn (if backward #'re-search-backward #'re-search-forward))
24396 (count (or arg 1))
24397 (origin (point))
24398 last-element)
24399 (if backward (beginning-of-line) (end-of-line))
24400 (while (and (> count 0) (funcall search-fn re nil t))
24401 (let ((element (save-excursion
24402 (goto-char (match-beginning 0))
24403 (save-match-data (org-element-at-point)))))
24404 (when (and (memq (org-element-type element)
24405 '(center-block comment-block dynamic-block
24406 example-block export-block quote-block
24407 special-block src-block verse-block))
24408 (<= (match-beginning 0)
24409 (org-element-property :post-affiliated element)))
24410 (setq last-element element)
24411 (decf count))))
24412 (if (= count 0)
24413 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24414 (save-match-data (org-show-context)))
24415 (goto-char origin)
24416 (user-error "No %s code blocks" (if backward "previous" "further")))))
24418 (defun org-previous-block (arg &optional block-regexp)
24419 "Jump to the previous block.
24420 With a prefix argument ARG, jump backward ARG many source blocks.
24421 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24422 (interactive "p")
24423 (org-next-block arg t block-regexp))
24425 (defun org-forward-paragraph ()
24426 "Move forward to beginning of next paragraph or equivalent.
24428 The function moves point to the beginning of the next visible
24429 structural element, which can be a paragraph, a table, a list
24430 item, etc. It also provides some special moves for convenience:
24432 - On an affiliated keyword, jump to the beginning of the
24433 relative element.
24434 - On an item or a footnote definition, move to the second
24435 element inside, if any.
24436 - On a table or a property drawer, jump after it.
24437 - On a verse or source block, stop after blank lines."
24438 (interactive)
24439 (when (eobp) (user-error "Cannot move further down"))
24440 (let* ((deactivate-mark nil)
24441 (element (org-element-at-point))
24442 (type (org-element-type element))
24443 (post-affiliated (org-element-property :post-affiliated element))
24444 (contents-begin (org-element-property :contents-begin element))
24445 (contents-end (org-element-property :contents-end element))
24446 (end (let ((end (org-element-property :end element)) (parent element))
24447 (while (and (setq parent (org-element-property :parent parent))
24448 (= (org-element-property :contents-end parent) end))
24449 (setq end (org-element-property :end parent)))
24450 end)))
24451 (cond ((not element)
24452 (skip-chars-forward " \r\t\n")
24453 (or (eobp) (beginning-of-line)))
24454 ;; On affiliated keywords, move to element's beginning.
24455 ((< (point) post-affiliated)
24456 (goto-char post-affiliated))
24457 ;; At a table row, move to the end of the table. Similarly,
24458 ;; at a node property, move to the end of the property
24459 ;; drawer.
24460 ((memq type '(node-property table-row))
24461 (goto-char (org-element-property
24462 :end (org-element-property :parent element))))
24463 ((memq type '(property-drawer table)) (goto-char end))
24464 ;; Consider blank lines as separators in verse and source
24465 ;; blocks to ease editing.
24466 ((memq type '(src-block verse-block))
24467 (when (eq type 'src-block)
24468 (setq contents-end
24469 (save-excursion (goto-char end)
24470 (skip-chars-backward " \r\t\n")
24471 (line-beginning-position))))
24472 (beginning-of-line)
24473 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24474 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24475 (goto-char end)
24476 (skip-chars-forward " \r\t\n")
24477 (if (= (point) contents-end) (goto-char end)
24478 (beginning-of-line))))
24479 ;; With no contents, just skip element.
24480 ((not contents-begin) (goto-char end))
24481 ;; If contents are invisible, skip the element altogether.
24482 ((outline-invisible-p (line-end-position))
24483 (case type
24484 (headline
24485 (org-with-limited-levels (outline-next-visible-heading 1)))
24486 ;; At a plain list, make sure we move to the next item
24487 ;; instead of skipping the whole list.
24488 (plain-list (forward-char)
24489 (org-forward-paragraph))
24490 (otherwise (goto-char end))))
24491 ((>= (point) contents-end) (goto-char end))
24492 ((>= (point) contents-begin)
24493 ;; This can only happen on paragraphs and plain lists.
24494 (case type
24495 (paragraph (goto-char end))
24496 ;; At a plain list, try to move to second element in
24497 ;; first item, if possible.
24498 (plain-list (end-of-line)
24499 (org-forward-paragraph))))
24500 ;; When contents start on the middle of a line (e.g. in
24501 ;; items and footnote definitions), try to reach first
24502 ;; element starting after current line.
24503 ((> (line-end-position) contents-begin)
24504 (end-of-line)
24505 (org-forward-paragraph))
24506 (t (goto-char contents-begin)))))
24508 (defun org-backward-paragraph ()
24509 "Move backward to start of previous paragraph or equivalent.
24511 The function moves point to the beginning of the current
24512 structural element, which can be a paragraph, a table, a list
24513 item, etc., or to the beginning of the previous visible one if
24514 point is already there. It also provides some special moves for
24515 convenience:
24517 - On an affiliated keyword, jump to the first one.
24518 - On a table or a property drawer, move to its beginning.
24519 - On a verse or source block, stop before blank lines."
24520 (interactive)
24521 (when (bobp) (user-error "Cannot move further up"))
24522 (let* ((deactivate-mark nil)
24523 (element (org-element-at-point))
24524 (type (org-element-type element))
24525 (contents-begin (org-element-property :contents-begin element))
24526 (contents-end (org-element-property :contents-end element))
24527 (post-affiliated (org-element-property :post-affiliated element))
24528 (begin (org-element-property :begin element)))
24529 (cond
24530 ((not element) (goto-char (point-min)))
24531 ((= (point) begin)
24532 (backward-char)
24533 (org-backward-paragraph))
24534 ((<= (point) post-affiliated) (goto-char begin))
24535 ((memq type '(node-property table-row))
24536 (goto-char (org-element-property
24537 :post-affiliated (org-element-property :parent element))))
24538 ((memq type '(property-drawer table)) (goto-char begin))
24539 ((memq type '(src-block verse-block))
24540 (when (eq type 'src-block)
24541 (setq contents-begin
24542 (save-excursion (goto-char begin) (forward-line) (point))))
24543 (if (= (point) contents-begin) (goto-char post-affiliated)
24544 ;; Inside a verse block, see blank lines as paragraph
24545 ;; separators.
24546 (let ((origin (point)))
24547 (skip-chars-backward " \r\t\n" contents-begin)
24548 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24549 (skip-chars-forward " \r\t\n" origin)
24550 (if (= (point) origin) (goto-char contents-begin)
24551 (beginning-of-line))))))
24552 ((not contents-begin) (goto-char (or post-affiliated begin)))
24553 ((eq type 'paragraph)
24554 (goto-char contents-begin)
24555 ;; When at first paragraph in an item or a footnote definition,
24556 ;; move directly to beginning of line.
24557 (let ((parent-contents
24558 (org-element-property
24559 :contents-begin (org-element-property :parent element))))
24560 (when (and parent-contents (= parent-contents contents-begin))
24561 (beginning-of-line))))
24562 ;; At the end of a greater element, move to the beginning of the
24563 ;; last element within.
24564 ((>= (point) contents-end)
24565 (goto-char (1- contents-end))
24566 (org-backward-paragraph))
24567 (t (goto-char (or post-affiliated begin))))
24568 ;; Ensure we never leave point invisible.
24569 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24571 (defun org-forward-element ()
24572 "Move forward by one element.
24573 Move to the next element at the same level, when possible."
24574 (interactive)
24575 (cond ((eobp) (user-error "Cannot move further down"))
24576 ((org-with-limited-levels (org-at-heading-p))
24577 (let ((origin (point)))
24578 (goto-char (org-end-of-subtree nil t))
24579 (unless (org-with-limited-levels (org-at-heading-p))
24580 (goto-char origin)
24581 (user-error "Cannot move further down"))))
24583 (let* ((elem (org-element-at-point))
24584 (end (org-element-property :end elem))
24585 (parent (org-element-property :parent elem)))
24586 (cond ((and parent (= (org-element-property :contents-end parent) end))
24587 (goto-char (org-element-property :end parent)))
24588 ((integer-or-marker-p end) (goto-char end))
24589 (t (message "No element at point")))))))
24591 (defun org-backward-element ()
24592 "Move backward by one element.
24593 Move to the previous element at the same level, when possible."
24594 (interactive)
24595 (cond ((bobp) (user-error "Cannot move further up"))
24596 ((org-with-limited-levels (org-at-heading-p))
24597 ;; At a headline, move to the previous one, if any, or stay
24598 ;; here.
24599 (let ((origin (point)))
24600 (org-with-limited-levels (org-backward-heading-same-level 1))
24601 ;; When current headline has no sibling above, move to its
24602 ;; parent.
24603 (when (= (point) origin)
24604 (or (org-with-limited-levels (org-up-heading-safe))
24605 (progn (goto-char origin)
24606 (user-error "Cannot move further up"))))))
24608 (let* ((elem (org-element-at-point))
24609 (beg (org-element-property :begin elem)))
24610 (cond
24611 ;; Move to beginning of current element if point isn't
24612 ;; there already.
24613 ((null beg) (message "No element at point"))
24614 ((/= (point) beg) (goto-char beg))
24615 (t (goto-char beg)
24616 (skip-chars-backward " \r\t\n")
24617 (unless (bobp)
24618 (let ((prev (org-element-at-point)))
24619 (goto-char (org-element-property :begin prev))
24620 (while (and (setq prev (org-element-property :parent prev))
24621 (<= (org-element-property :end prev) beg))
24622 (goto-char (org-element-property :begin prev)))))))))))
24624 (defun org-up-element ()
24625 "Move to upper element."
24626 (interactive)
24627 (if (org-with-limited-levels (org-at-heading-p))
24628 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24629 (let* ((elem (org-element-at-point))
24630 (parent (org-element-property :parent elem)))
24631 (if parent (goto-char (org-element-property :begin parent))
24632 (if (org-with-limited-levels (org-before-first-heading-p))
24633 (user-error "No surrounding element")
24634 (org-with-limited-levels (org-back-to-heading)))))))
24636 (defvar org-element-greater-elements)
24637 (defun org-down-element ()
24638 "Move to inner element."
24639 (interactive)
24640 (let ((element (org-element-at-point)))
24641 (cond
24642 ((memq (org-element-type element) '(plain-list table))
24643 (goto-char (org-element-property :contents-begin element))
24644 (forward-char))
24645 ((memq (org-element-type element) org-element-greater-elements)
24646 ;; If contents are hidden, first disclose them.
24647 (when (outline-invisible-p (line-end-position)) (org-cycle))
24648 (goto-char (or (org-element-property :contents-begin element)
24649 (user-error "No content for this element"))))
24650 (t (user-error "No inner element")))))
24652 (defun org-drag-element-backward ()
24653 "Move backward element at point."
24654 (interactive)
24655 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24656 (let* ((elem (org-element-at-point))
24657 (prev-elem
24658 (save-excursion
24659 (goto-char (org-element-property :begin elem))
24660 (skip-chars-backward " \r\t\n")
24661 (unless (bobp)
24662 (let* ((beg (org-element-property :begin elem))
24663 (prev (org-element-at-point))
24664 (up prev))
24665 (while (and (setq up (org-element-property :parent up))
24666 (<= (org-element-property :end up) beg))
24667 (setq prev up))
24668 prev)))))
24669 ;; Error out if no previous element or previous element is
24670 ;; a parent of the current one.
24671 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24672 (user-error "Cannot drag element backward")
24673 (let ((pos (point)))
24674 (org-element-swap-A-B prev-elem elem)
24675 (goto-char (+ (org-element-property :begin prev-elem)
24676 (- pos (org-element-property :begin elem)))))))))
24678 (defun org-drag-element-forward ()
24679 "Move forward element at point."
24680 (interactive)
24681 (let* ((pos (point))
24682 (elem (org-element-at-point)))
24683 (when (= (point-max) (org-element-property :end elem))
24684 (user-error "Cannot drag element forward"))
24685 (goto-char (org-element-property :end elem))
24686 (let ((next-elem (org-element-at-point)))
24687 (when (or (org-element-nested-p elem next-elem)
24688 (and (eq (org-element-type next-elem) 'headline)
24689 (not (eq (org-element-type elem) 'headline))))
24690 (goto-char pos)
24691 (user-error "Cannot drag element forward"))
24692 ;; Compute new position of point: it's shifted by NEXT-ELEM
24693 ;; body's length (without final blanks) and by the length of
24694 ;; blanks between ELEM and NEXT-ELEM.
24695 (let ((size-next (- (save-excursion
24696 (goto-char (org-element-property :end next-elem))
24697 (skip-chars-backward " \r\t\n")
24698 (forward-line)
24699 ;; Small correction if buffer doesn't end
24700 ;; with a newline character.
24701 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24702 (org-element-property :begin next-elem)))
24703 (size-blank (- (org-element-property :end elem)
24704 (save-excursion
24705 (goto-char (org-element-property :end elem))
24706 (skip-chars-backward " \r\t\n")
24707 (forward-line)
24708 (point)))))
24709 (org-element-swap-A-B elem next-elem)
24710 (goto-char (+ pos size-next size-blank))))))
24712 (defun org-drag-line-forward (arg)
24713 "Drag the line at point ARG lines forward."
24714 (interactive "p")
24715 (dotimes (n (abs arg))
24716 (let ((c (current-column)))
24717 (if (< 0 arg)
24718 (progn
24719 (beginning-of-line 2)
24720 (transpose-lines 1)
24721 (beginning-of-line 0))
24722 (transpose-lines 1)
24723 (beginning-of-line -1))
24724 (org-move-to-column c))))
24726 (defun org-drag-line-backward (arg)
24727 "Drag the line at point ARG lines backward."
24728 (interactive "p")
24729 (org-drag-line-forward (- arg)))
24731 (defun org-mark-element ()
24732 "Put point at beginning of this element, mark at end.
24734 Interactively, if this command is repeated or (in Transient Mark
24735 mode) if the mark is active, it marks the next element after the
24736 ones already marked."
24737 (interactive)
24738 (let (deactivate-mark)
24739 (if (and (org-called-interactively-p 'any)
24740 (or (and (eq last-command this-command) (mark t))
24741 (and transient-mark-mode mark-active)))
24742 (set-mark
24743 (save-excursion
24744 (goto-char (mark))
24745 (goto-char (org-element-property :end (org-element-at-point)))))
24746 (let ((element (org-element-at-point)))
24747 (end-of-line)
24748 (push-mark (org-element-property :end element) t t)
24749 (goto-char (org-element-property :begin element))))))
24751 (defun org-narrow-to-element ()
24752 "Narrow buffer to current element."
24753 (interactive)
24754 (let ((elem (org-element-at-point)))
24755 (cond
24756 ((eq (car elem) 'headline)
24757 (narrow-to-region
24758 (org-element-property :begin elem)
24759 (org-element-property :end elem)))
24760 ((memq (car elem) org-element-greater-elements)
24761 (narrow-to-region
24762 (org-element-property :contents-begin elem)
24763 (org-element-property :contents-end elem)))
24765 (narrow-to-region
24766 (org-element-property :begin elem)
24767 (org-element-property :end elem))))))
24769 (defun org-transpose-element ()
24770 "Transpose current and previous elements, keeping blank lines between.
24771 Point is moved after both elements."
24772 (interactive)
24773 (org-skip-whitespace)
24774 (let ((end (org-element-property :end (org-element-at-point))))
24775 (org-drag-element-backward)
24776 (goto-char end)))
24778 (defun org-unindent-buffer ()
24779 "Un-indent the visible part of the buffer.
24780 Relative indentation (between items, inside blocks, etc.) isn't
24781 modified."
24782 (interactive)
24783 (unless (eq major-mode 'org-mode)
24784 (user-error "Cannot un-indent a buffer not in Org mode"))
24785 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24786 unindent-tree ; For byte-compiler.
24787 (unindent-tree
24788 (function
24789 (lambda (contents)
24790 (mapc
24791 (lambda (element)
24792 (if (memq (org-element-type element) '(headline section))
24793 (funcall unindent-tree (org-element-contents element))
24794 (save-excursion
24795 (save-restriction
24796 (narrow-to-region
24797 (org-element-property :begin element)
24798 (org-element-property :end element))
24799 (org-do-remove-indentation)))))
24800 (reverse contents))))))
24801 (funcall unindent-tree (org-element-contents parse-tree))))
24803 (defun org-show-subtree ()
24804 "Show everything after this heading at deeper levels."
24805 (interactive)
24806 (outline-flag-region
24807 (point)
24808 (save-excursion
24809 (org-end-of-subtree t t))
24810 nil))
24812 (defun org-show-entry ()
24813 "Show the body directly following this heading.
24814 Show the heading too, if it is currently invisible."
24815 (interactive)
24816 (save-excursion
24817 (ignore-errors
24818 (org-back-to-heading t)
24819 (outline-flag-region
24820 (max (point-min) (1- (point)))
24821 (save-excursion
24822 (if (re-search-forward
24823 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24824 (match-beginning 1)
24825 (point-max)))
24826 nil)
24827 (org-cycle-hide-drawers 'children))))
24829 (defun org-make-options-regexp (kwds &optional extra)
24830 "Make a regular expression for keyword lines.
24831 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24832 when non-nil, is a regexp matching keywords names."
24833 (concat "^[ \t]*#\\+\\("
24834 (regexp-opt kwds)
24835 (and extra (concat (and kwds "\\|") extra))
24836 "\\):[ \t]*\\(.*\\)"))
24838 ;; Make isearch reveal the necessary context
24839 (defun org-isearch-end ()
24840 "Reveal context after isearch exits."
24841 (when isearch-success ; only if search was successful
24842 (if (featurep 'xemacs)
24843 ;; Under XEmacs, the hook is run in the correct place,
24844 ;; we directly show the context.
24845 (org-show-context 'isearch)
24846 ;; In Emacs the hook runs *before* restoring the overlays.
24847 ;; So we have to use a one-time post-command-hook to do this.
24848 ;; (Emacs 22 has a special variable, see function `org-mode')
24849 (unless (and (boundp 'isearch-mode-end-hook-quit)
24850 isearch-mode-end-hook-quit)
24851 ;; Only when the isearch was not quitted.
24852 (org-add-hook 'post-command-hook 'org-isearch-post-command
24853 'append 'local)))))
24855 (defun org-isearch-post-command ()
24856 "Remove self from hook, and show context."
24857 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24858 (org-show-context 'isearch))
24861 ;;;; Integration with and fixes for other packages
24863 ;;; Imenu support
24865 (defvar org-imenu-markers nil
24866 "All markers currently used by Imenu.")
24867 (make-variable-buffer-local 'org-imenu-markers)
24869 (defun org-imenu-new-marker (&optional pos)
24870 "Return a new marker for use by Imenu, and remember the marker."
24871 (let ((m (make-marker)))
24872 (move-marker m (or pos (point)))
24873 (push m org-imenu-markers)
24876 (defun org-imenu-get-tree ()
24877 "Produce the index for Imenu."
24878 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24879 (setq org-imenu-markers nil)
24880 (let* ((n org-imenu-depth)
24881 (re (concat "^" (org-get-limited-outline-regexp)))
24882 (subs (make-vector (1+ n) nil))
24883 (last-level 0)
24884 m level head0 head)
24885 (save-excursion
24886 (save-restriction
24887 (widen)
24888 (goto-char (point-max))
24889 (while (re-search-backward re nil t)
24890 (setq level (org-reduced-level (funcall outline-level)))
24891 (when (and (<= level n)
24892 (looking-at org-complex-heading-regexp)
24893 (setq head0 (org-match-string-no-properties 4)))
24894 (setq head (org-link-display-format head0)
24895 m (org-imenu-new-marker))
24896 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24897 (if (>= level last-level)
24898 (push (cons head m) (aref subs level))
24899 (push (cons head (aref subs (1+ level))) (aref subs level))
24900 (loop for i from (1+ level) to n do (aset subs i nil)))
24901 (setq last-level level)))))
24902 (aref subs 1)))
24904 (eval-after-load "imenu"
24905 '(progn
24906 (add-hook 'imenu-after-jump-hook
24907 (lambda ()
24908 (if (derived-mode-p 'org-mode)
24909 (org-show-context 'org-goto))))))
24911 (defun org-link-display-format (link)
24912 "Replace a link with its the description.
24913 If there is no description, use the link target."
24914 (save-match-data
24915 (if (string-match org-bracket-link-analytic-regexp link)
24916 (replace-match (if (match-end 5)
24917 (match-string 5 link)
24918 (concat (match-string 1 link)
24919 (match-string 3 link)))
24920 nil t link)
24921 link)))
24923 (defun org-toggle-link-display ()
24924 "Toggle the literal or descriptive display of links."
24925 (interactive)
24926 (if org-descriptive-links
24927 (progn (org-remove-from-invisibility-spec '(org-link))
24928 (org-restart-font-lock)
24929 (setq org-descriptive-links nil))
24930 (progn (add-to-invisibility-spec '(org-link))
24931 (org-restart-font-lock)
24932 (setq org-descriptive-links t))))
24934 ;; Speedbar support
24936 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24937 "Overlay marking the agenda restriction line in speedbar.")
24938 (overlay-put org-speedbar-restriction-lock-overlay
24939 'face 'org-agenda-restriction-lock)
24940 (overlay-put org-speedbar-restriction-lock-overlay
24941 'help-echo "Agendas are currently limited to this item.")
24942 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24944 (defun org-speedbar-set-agenda-restriction ()
24945 "Restrict future agenda commands to the location at point in speedbar.
24946 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24947 (interactive)
24948 (require 'org-agenda)
24949 (let (p m tp np dir txt)
24950 (cond
24951 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24952 'org-imenu t))
24953 (setq m (get-text-property p 'org-imenu-marker))
24954 (with-current-buffer (marker-buffer m)
24955 (goto-char m)
24956 (org-agenda-set-restriction-lock 'subtree)))
24957 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24958 'speedbar-function 'speedbar-find-file))
24959 (setq tp (previous-single-property-change
24960 (1+ p) 'speedbar-function)
24961 np (next-single-property-change
24962 tp 'speedbar-function)
24963 dir (speedbar-line-directory)
24964 txt (buffer-substring-no-properties (or tp (point-min))
24965 (or np (point-max))))
24966 (with-current-buffer (find-file-noselect
24967 (let ((default-directory dir))
24968 (expand-file-name txt)))
24969 (unless (derived-mode-p 'org-mode)
24970 (user-error "Cannot restrict to non-Org-mode file"))
24971 (org-agenda-set-restriction-lock 'file)))
24972 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24973 (move-overlay org-speedbar-restriction-lock-overlay
24974 (point-at-bol) (point-at-eol))
24975 (setq current-prefix-arg nil)
24976 (org-agenda-maybe-redo)))
24978 (defvar speedbar-file-key-map)
24979 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24980 (eval-after-load "speedbar"
24981 '(progn
24982 (speedbar-add-supported-extension ".org")
24983 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24984 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24985 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24986 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24987 (add-hook 'speedbar-visiting-tag-hook
24988 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24990 ;;; Fixes and Hacks for problems with other packages
24992 (defun org--flyspell-object-check-p (element)
24993 "Non-nil when Flyspell can check object at point.
24994 ELEMENT is the element at point."
24995 (let ((object (save-excursion
24996 (when (org-looking-at-p "\\>") (backward-char))
24997 (org-element-context element))))
24998 (case (org-element-type object)
24999 ;; Prevent checks in links due to keybinding conflict with
25000 ;; Flyspell.
25001 ((code entity export-snippet inline-babel-call
25002 inline-src-block line-break latex-fragment link macro
25003 statistics-cookie target timestamp verbatim)
25004 nil)
25005 (footnote-reference
25006 ;; Only in inline footnotes, within the definition.
25007 (and (eq (org-element-property :type object) 'inline)
25008 (< (save-excursion
25009 (goto-char (org-element-property :begin object))
25010 (search-forward ":" nil t 2))
25011 (point))))
25012 (otherwise t))))
25014 (defun org-mode-flyspell-verify ()
25015 "Function used for `flyspell-generic-check-word-predicate'."
25016 (if (org-at-heading-p)
25017 ;; At a headline or an inlinetask, check title only. This is
25018 ;; faster than relying on `org-element-at-point'.
25019 (and (save-excursion (beginning-of-line)
25020 (and (let ((case-fold-search t))
25021 (not (looking-at "\\*+ END[ \t]*$")))
25022 (looking-at org-complex-heading-regexp)))
25023 (match-beginning 4)
25024 (>= (point) (match-beginning 4))
25025 (or (not (match-beginning 5))
25026 (< (point) (match-beginning 5))))
25027 (let* ((element (org-element-at-point))
25028 (post-affiliated (org-element-property :post-affiliated element)))
25029 (cond
25030 ;; Ignore checks in all affiliated keywords but captions.
25031 ((< (point) post-affiliated)
25032 (and (save-excursion
25033 (beginning-of-line)
25034 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25035 (> (point) (match-end 0))
25036 (org--flyspell-object-check-p element)))
25037 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25038 ((let ((log (org-log-into-drawer)))
25039 (and log
25040 (let ((drawer (org-element-lineage element '(drawer))))
25041 (and drawer
25042 (eq (compare-strings
25043 log nil nil
25044 (org-element-property :drawer-name drawer) nil nil t)
25045 t)))))
25046 nil)
25048 (case (org-element-type element)
25049 ((comment quote-section) t)
25050 (comment-block
25051 ;; Allow checks between block markers, not on them.
25052 (and (> (line-beginning-position) post-affiliated)
25053 (save-excursion
25054 (end-of-line)
25055 (skip-chars-forward " \r\t\n")
25056 (< (point) (org-element-property :end element)))))
25057 ;; Arbitrary list of keywords where checks are meaningful.
25058 ;; Make sure point is on the value part of the element.
25059 (keyword
25060 (and (member (org-element-property :key element)
25061 '("DESCRIPTION" "TITLE"))
25062 (save-excursion
25063 (search-backward ":" (line-beginning-position) t))))
25064 ;; Check is globally allowed in paragraphs verse blocks and
25065 ;; table rows (after affiliated keywords) but some objects
25066 ;; must not be affected.
25067 ((paragraph table-row verse-block)
25068 (let ((cbeg (org-element-property :contents-begin element))
25069 (cend (org-element-property :contents-end element)))
25070 (and cbeg (>= (point) cbeg) (< (point) cend)
25071 (org--flyspell-object-check-p element))))))))))
25072 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25074 (defun org-remove-flyspell-overlays-in (beg end)
25075 "Remove flyspell overlays in region."
25076 (and (org-bound-and-true-p flyspell-mode)
25077 (fboundp 'flyspell-delete-region-overlays)
25078 (flyspell-delete-region-overlays beg end)))
25080 (defvar flyspell-delayed-commands)
25081 (eval-after-load "flyspell"
25082 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25084 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25085 (eval-after-load "bookmark"
25086 '(if (boundp 'bookmark-after-jump-hook)
25087 ;; We can use the hook
25088 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25089 ;; Hook not available, use advice
25090 (defadvice bookmark-jump (after org-make-visible activate)
25091 "Make the position visible."
25092 (org-bookmark-jump-unhide))))
25094 ;; Make sure saveplace shows the location if it was hidden
25095 (eval-after-load "saveplace"
25096 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25097 "Make the position visible."
25098 (org-bookmark-jump-unhide)))
25100 ;; Make sure ecb shows the location if it was hidden
25101 (eval-after-load "ecb"
25102 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25103 "Make hierarchy visible when jumping into location from ECB tree buffer."
25104 (if (derived-mode-p 'org-mode)
25105 (org-show-context))))
25107 (defun org-bookmark-jump-unhide ()
25108 "Unhide the current position, to show the bookmark location."
25109 (and (derived-mode-p 'org-mode)
25110 (or (outline-invisible-p)
25111 (save-excursion (goto-char (max (point-min) (1- (point))))
25112 (outline-invisible-p)))
25113 (org-show-context 'bookmark-jump)))
25115 (defun org-mark-jump-unhide ()
25116 "Make the point visible with `org-show-context' after jumping to the mark."
25117 (when (and (derived-mode-p 'org-mode)
25118 (outline-invisible-p))
25119 (org-show-context 'mark-goto)))
25121 (eval-after-load "simple"
25122 '(defadvice pop-to-mark-command (after org-make-visible activate)
25123 "Make the point visible with `org-show-context'."
25124 (org-mark-jump-unhide)))
25126 (eval-after-load "simple"
25127 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25128 "Make the point visible with `org-show-context'."
25129 (org-mark-jump-unhide)))
25131 (eval-after-load "simple"
25132 '(defadvice pop-global-mark (after org-make-visible activate)
25133 "Make the point visible with `org-show-context'."
25134 (org-mark-jump-unhide)))
25136 ;; Make session.el ignore our circular variable
25137 (defvar session-globals-exclude)
25138 (eval-after-load "session"
25139 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25141 ;;;; Finish up
25143 (provide 'org)
25145 (run-hooks 'org-load-hook)
25147 ;;; org.el ends here