Fix wrong type error with %l in `org-agenda-prefix-format'
[org-mode.git] / lisp / org.el
blob3a6e571b500e2f9a6fc811f1a0cd2d02856e7c85
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,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
544 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\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 '(choice
2319 (const :tag "Default from remember-data-file" nil)
2320 file))
2322 (defcustom org-goto-interface 'outline
2323 "The default interface to be used for `org-goto'.
2324 Allowed values are:
2325 outline The interface shows an outline of the relevant file
2326 and the correct heading is found by moving through
2327 the outline or by searching with incremental search.
2328 outline-path-completion Headlines in the current buffer are offered via
2329 completion. This is the interface also used by
2330 the refile command."
2331 :group 'org-refile
2332 :type '(choice
2333 (const :tag "Outline" outline)
2334 (const :tag "Outline-path-completion" outline-path-completion)))
2336 (defcustom org-goto-max-level 5
2337 "Maximum target level when running `org-goto' with refile interface."
2338 :group 'org-refile
2339 :type 'integer)
2341 (defcustom org-reverse-note-order nil
2342 "Non-nil means store new notes at the beginning of a file or entry.
2343 When nil, new notes will be filed to the end of a file or entry.
2344 This can also be a list with cons cells of regular expressions that
2345 are matched against file names, and values."
2346 :group 'org-capture
2347 :group 'org-refile
2348 :type '(choice
2349 (const :tag "Reverse always" t)
2350 (const :tag "Reverse never" nil)
2351 (repeat :tag "By file name regexp"
2352 (cons regexp boolean))))
2354 (defcustom org-log-refile nil
2355 "Information to record when a task is refiled.
2357 Possible values are:
2359 nil Don't add anything
2360 time Add a time stamp to the task
2361 note Prompt for a note and add it with template `org-log-note-headings'
2363 This option can also be set with on a per-file-basis with
2365 #+STARTUP: nologrefile
2366 #+STARTUP: logrefile
2367 #+STARTUP: lognoterefile
2369 You can have local logging settings for a subtree by setting the LOGGING
2370 property to one or more of these keywords.
2372 When bulk-refiling from the agenda, the value `note' is forbidden and
2373 will temporarily be changed to `time'."
2374 :group 'org-refile
2375 :group 'org-progress
2376 :version "24.1"
2377 :type '(choice
2378 (const :tag "No logging" nil)
2379 (const :tag "Record timestamp" time)
2380 (const :tag "Record timestamp with note." note)))
2382 (defcustom org-refile-targets nil
2383 "Targets for refiling entries with \\[org-refile].
2384 This is a list of cons cells. Each cell contains:
2385 - a specification of the files to be considered, either a list of files,
2386 or a symbol whose function or variable value will be used to retrieve
2387 a file name or a list of file names. If you use `org-agenda-files' for
2388 that, all agenda files will be scanned for targets. Nil means consider
2389 headings in the current buffer.
2390 - A specification of how to find candidate refile targets. This may be
2391 any of:
2392 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2393 This tag has to be present in all target headlines, inheritance will
2394 not be considered.
2395 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2396 todo keyword.
2397 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2398 headlines that are refiling targets.
2399 - a cons cell (:level . N). Any headline of level N is considered a target.
2400 Note that, when `org-odd-levels-only' is set, level corresponds to
2401 order in hierarchy, not to the number of stars.
2402 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2403 Note that, when `org-odd-levels-only' is set, level corresponds to
2404 order in hierarchy, not to the number of stars.
2406 Each element of this list generates a set of possible targets.
2407 The union of these sets is presented (with completion) to
2408 the user by `org-refile'.
2410 You can set the variable `org-refile-target-verify-function' to a function
2411 to verify each headline found by the simple criteria above.
2413 When this variable is nil, all top-level headlines in the current buffer
2414 are used, equivalent to the value `((nil . (:level . 1))'."
2415 :group 'org-refile
2416 :type '(repeat
2417 (cons
2418 (choice :value org-agenda-files
2419 (const :tag "All agenda files" org-agenda-files)
2420 (const :tag "Current buffer" nil)
2421 (function) (variable) (file))
2422 (choice :tag "Identify target headline by"
2423 (cons :tag "Specific tag" (const :value :tag) (string))
2424 (cons :tag "TODO keyword" (const :value :todo) (string))
2425 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2426 (cons :tag "Level number" (const :value :level) (integer))
2427 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2429 (defcustom org-refile-target-verify-function nil
2430 "Function to verify if the headline at point should be a refile target.
2431 The function will be called without arguments, with point at the
2432 beginning of the headline. It should return t and leave point
2433 where it is if the headline is a valid target for refiling.
2435 If the target should not be selected, the function must return nil.
2436 In addition to this, it may move point to a place from where the search
2437 should be continued. For example, the function may decide that the entire
2438 subtree of the current entry should be excluded and move point to the end
2439 of the subtree."
2440 :group 'org-refile
2441 :type '(choice
2442 (const nil)
2443 (function)))
2445 (defcustom org-refile-use-cache nil
2446 "Non-nil means cache refile targets to speed up the process.
2447 The cache for a particular file will be updated automatically when
2448 the buffer has been killed, or when any of the marker used for flagging
2449 refile targets no longer points at a live buffer.
2450 If you have added new entries to a buffer that might themselves be targets,
2451 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2452 find that easier, `C-u C-u C-u C-c C-w'."
2453 :group 'org-refile
2454 :version "24.1"
2455 :type 'boolean)
2457 (defcustom org-refile-use-outline-path nil
2458 "Non-nil means provide refile targets as paths.
2459 So a level 3 headline will be available as level1/level2/level3.
2461 When the value is `file', also include the file name (without directory)
2462 into the path. In this case, you can also stop the completion after
2463 the file name, to get entries inserted as top level in the file.
2465 When `full-file-path', include the full file path."
2466 :group 'org-refile
2467 :type '(choice
2468 (const :tag "Not" nil)
2469 (const :tag "Yes" t)
2470 (const :tag "Start with file name" file)
2471 (const :tag "Start with full file path" full-file-path)))
2473 (defcustom org-outline-path-complete-in-steps t
2474 "Non-nil means complete the outline path in hierarchical steps.
2475 When Org-mode uses the refile interface to select an outline path
2476 \(see variable `org-refile-use-outline-path'), the completion of
2477 the path can be done is a single go, or if can be done in steps down
2478 the headline hierarchy. Going in steps is probably the best if you
2479 do not use a special completion package like `ido' or `icicles'.
2480 However, when using these packages, going in one step can be very
2481 fast, while still showing the whole path to the entry."
2482 :group 'org-refile
2483 :type 'boolean)
2485 (defcustom org-refile-allow-creating-parent-nodes nil
2486 "Non-nil means allow to create new nodes as refile targets.
2487 New nodes are then created by adding \"/new node name\" to the completion
2488 of an existing node. When the value of this variable is `confirm',
2489 new node creation must be confirmed by the user (recommended).
2490 When nil, the completion must match an existing entry.
2492 Note that, if the new heading is not seen by the criteria
2493 listed in `org-refile-targets', multiple instances of the same
2494 heading would be created by trying again to file under the new
2495 heading."
2496 :group 'org-refile
2497 :type '(choice
2498 (const :tag "Never" nil)
2499 (const :tag "Always" t)
2500 (const :tag "Prompt for confirmation" confirm)))
2502 (defcustom org-refile-active-region-within-subtree nil
2503 "Non-nil means also refile active region within a subtree.
2505 By default `org-refile' doesn't allow refiling regions if they
2506 don't contain a set of subtrees, but it might be convenient to
2507 do so sometimes: in that case, the first line of the region is
2508 converted to a headline before refiling."
2509 :group 'org-refile
2510 :version "24.1"
2511 :type 'boolean)
2513 (defgroup org-todo nil
2514 "Options concerning TODO items in Org-mode."
2515 :tag "Org TODO"
2516 :group 'org)
2518 (defgroup org-progress nil
2519 "Options concerning Progress logging in Org-mode."
2520 :tag "Org Progress"
2521 :group 'org-time)
2523 (defvar org-todo-interpretation-widgets
2524 '((:tag "Sequence (cycling hits every state)" sequence)
2525 (:tag "Type (cycling directly to DONE)" type))
2526 "The available interpretation symbols for customizing `org-todo-keywords'.
2527 Interested libraries should add to this list.")
2529 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2530 "List of TODO entry keyword sequences and their interpretation.
2531 \\<org-mode-map>This is a list of sequences.
2533 Each sequence starts with a symbol, either `sequence' or `type',
2534 indicating if the keywords should be interpreted as a sequence of
2535 action steps, or as different types of TODO items. The first
2536 keywords are states requiring action - these states will select a headline
2537 for inclusion into the global TODO list Org-mode produces. If one of
2538 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2539 signify that no further action is necessary. If \"|\" is not found,
2540 the last keyword is treated as the only DONE state of the sequence.
2542 The command \\[org-todo] cycles an entry through these states, and one
2543 additional state where no keyword is present. For details about this
2544 cycling, see the manual.
2546 TODO keywords and interpretation can also be set on a per-file basis with
2547 the special #+SEQ_TODO and #+TYP_TODO lines.
2549 Each keyword can optionally specify a character for fast state selection
2550 \(in combination with the variable `org-use-fast-todo-selection')
2551 and specifiers for state change logging, using the same syntax that
2552 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2553 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2554 indicates to record a time stamp each time this state is selected.
2556 Each keyword may also specify if a timestamp or a note should be
2557 recorded when entering or leaving the state, by adding additional
2558 characters in the parenthesis after the keyword. This looks like this:
2559 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2560 record only the time of the state change. With X and Y being either
2561 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2562 Y when leaving the state if and only if the *target* state does not
2563 define X. You may omit any of the fast-selection key or X or /Y,
2564 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2566 For backward compatibility, this variable may also be just a list
2567 of keywords. In this case the interpretation (sequence or type) will be
2568 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2569 :group 'org-todo
2570 :group 'org-keywords
2571 :type '(choice
2572 (repeat :tag "Old syntax, just keywords"
2573 (string :tag "Keyword"))
2574 (repeat :tag "New syntax"
2575 (cons
2576 (choice
2577 :tag "Interpretation"
2578 ;;Quick and dirty way to see
2579 ;;`org-todo-interpretations'. This takes the
2580 ;;place of item arguments
2581 :convert-widget
2582 (lambda (widget)
2583 (widget-put widget
2584 :args (mapcar
2585 (lambda (x)
2586 (widget-convert
2587 (cons 'const x)))
2588 org-todo-interpretation-widgets))
2589 widget))
2590 (repeat
2591 (string :tag "Keyword"))))))
2593 (defvar org-todo-keywords-1 nil
2594 "All TODO and DONE keywords active in a buffer.")
2595 (make-variable-buffer-local 'org-todo-keywords-1)
2596 (defvar org-todo-keywords-for-agenda nil)
2597 (defvar org-done-keywords-for-agenda nil)
2598 (defvar org-todo-keyword-alist-for-agenda nil)
2599 (defvar org-tag-alist-for-agenda nil
2600 "Alist of all tags from all agenda files.")
2601 (defvar org-tag-groups-alist-for-agenda nil
2602 "Alist of all groups tags from all current agenda files.")
2603 (defvar org-tag-groups-alist nil)
2604 (make-variable-buffer-local 'org-tag-groups-alist)
2605 (defvar org-agenda-contributing-files nil)
2606 (defvar org-not-done-keywords nil)
2607 (make-variable-buffer-local 'org-not-done-keywords)
2608 (defvar org-done-keywords nil)
2609 (make-variable-buffer-local 'org-done-keywords)
2610 (defvar org-todo-heads nil)
2611 (make-variable-buffer-local 'org-todo-heads)
2612 (defvar org-todo-sets nil)
2613 (make-variable-buffer-local 'org-todo-sets)
2614 (defvar org-todo-log-states nil)
2615 (make-variable-buffer-local 'org-todo-log-states)
2616 (defvar org-todo-kwd-alist nil)
2617 (make-variable-buffer-local 'org-todo-kwd-alist)
2618 (defvar org-todo-key-alist nil)
2619 (make-variable-buffer-local 'org-todo-key-alist)
2620 (defvar org-todo-key-trigger nil)
2621 (make-variable-buffer-local 'org-todo-key-trigger)
2623 (defcustom org-todo-interpretation 'sequence
2624 "Controls how TODO keywords are interpreted.
2625 This variable is in principle obsolete and is only used for
2626 backward compatibility, if the interpretation of todo keywords is
2627 not given already in `org-todo-keywords'. See that variable for
2628 more information."
2629 :group 'org-todo
2630 :group 'org-keywords
2631 :type '(choice (const sequence)
2632 (const type)))
2634 (defcustom org-use-fast-todo-selection t
2635 "Non-nil means use the fast todo selection scheme with C-c C-t.
2636 This variable describes if and under what circumstances the cycling
2637 mechanism for TODO keywords will be replaced by a single-key, direct
2638 selection scheme.
2640 When nil, fast selection is never used.
2642 When the symbol `prefix', it will be used when `org-todo' is called
2643 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2644 `C-u t' in an agenda buffer.
2646 When t, fast selection is used by default. In this case, the prefix
2647 argument forces cycling instead.
2649 In all cases, the special interface is only used if access keys have
2650 actually been assigned by the user, i.e. if keywords in the configuration
2651 are followed by a letter in parenthesis, like TODO(t)."
2652 :group 'org-todo
2653 :type '(choice
2654 (const :tag "Never" nil)
2655 (const :tag "By default" t)
2656 (const :tag "Only with C-u C-c C-t" prefix)))
2658 (defcustom org-provide-todo-statistics t
2659 "Non-nil means update todo statistics after insert and toggle.
2660 ALL-HEADLINES means update todo statistics by including headlines
2661 with no TODO keyword as well, counting them as not done.
2662 A list of TODO keywords means the same, but skip keywords that are
2663 not in this list.
2664 When set to a list of two lists, the first list contains keywords
2665 to consider as TODO keywords, the second list contains keywords
2666 to consider as DONE keywords.
2668 When this is set, todo statistics is updated in the parent of the
2669 current entry each time a todo state is changed."
2670 :group 'org-todo
2671 :type '(choice
2672 (const :tag "Yes, only for TODO entries" t)
2673 (const :tag "Yes, including all entries" all-headlines)
2674 (repeat :tag "Yes, for TODOs in this list"
2675 (string :tag "TODO keyword"))
2676 (list :tag "Yes, for TODOs and DONEs in these lists"
2677 (repeat (string :tag "TODO keyword"))
2678 (repeat (string :tag "DONE keyword")))
2679 (other :tag "No TODO statistics" nil)))
2681 (defcustom org-hierarchical-todo-statistics t
2682 "Non-nil means TODO statistics covers just direct children.
2683 When nil, all entries in the subtree are considered.
2684 This has only an effect if `org-provide-todo-statistics' is set.
2685 To set this to nil for only a single subtree, use a COOKIE_DATA
2686 property and include the word \"recursive\" into the value."
2687 :group 'org-todo
2688 :type 'boolean)
2690 (defcustom org-after-todo-state-change-hook nil
2691 "Hook which is run after the state of a TODO item was changed.
2692 The new state (a string with a TODO keyword, or nil) is available in the
2693 Lisp variable `org-state'."
2694 :group 'org-todo
2695 :type 'hook)
2697 (defvar org-blocker-hook nil
2698 "Hook for functions that are allowed to block a state change.
2700 Functions in this hook should not modify the buffer.
2701 Each function gets as its single argument a property list,
2702 see `org-trigger-hook' for more information about this list.
2704 If any of the functions in this hook returns nil, the state change
2705 is blocked.")
2707 (defvar org-trigger-hook nil
2708 "Hook for functions that are triggered by a state change.
2710 Each function gets as its single argument a property list with at
2711 least the following elements:
2713 (:type type-of-change :position pos-at-entry-start
2714 :from old-state :to new-state)
2716 Depending on the type, more properties may be present.
2718 This mechanism is currently implemented for:
2720 TODO state changes
2721 ------------------
2722 :type todo-state-change
2723 :from previous state (keyword as a string), or nil, or a symbol
2724 'todo' or 'done', to indicate the general type of state.
2725 :to new state, like in :from")
2727 (defcustom org-enforce-todo-dependencies nil
2728 "Non-nil means undone TODO entries will block switching the parent to DONE.
2729 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2730 be blocked if any prior sibling is not yet done.
2731 Finally, if the parent is blocked because of ordered siblings of its own,
2732 the child will also be blocked."
2733 :set (lambda (var val)
2734 (set var val)
2735 (if val
2736 (add-hook 'org-blocker-hook
2737 'org-block-todo-from-children-or-siblings-or-parent)
2738 (remove-hook 'org-blocker-hook
2739 'org-block-todo-from-children-or-siblings-or-parent)))
2740 :group 'org-todo
2741 :type 'boolean)
2743 (defcustom org-enforce-todo-checkbox-dependencies nil
2744 "Non-nil means unchecked boxes will block switching the parent to DONE.
2745 When this is nil, checkboxes have no influence on switching TODO states.
2746 When non-nil, you first need to check off all check boxes before the TODO
2747 entry can be switched to DONE.
2748 This variable needs to be set before org.el is loaded, and you need to
2749 restart Emacs after a change to make the change effective. The only way
2750 to change is while Emacs is running is through the customize interface."
2751 :set (lambda (var val)
2752 (set var val)
2753 (if val
2754 (add-hook 'org-blocker-hook
2755 'org-block-todo-from-checkboxes)
2756 (remove-hook 'org-blocker-hook
2757 'org-block-todo-from-checkboxes)))
2758 :group 'org-todo
2759 :type 'boolean)
2761 (defcustom org-treat-insert-todo-heading-as-state-change nil
2762 "Non-nil means inserting a TODO heading is treated as state change.
2763 So when the command \\[org-insert-todo-heading] is used, state change
2764 logging will apply if appropriate. When nil, the new TODO item will
2765 be inserted directly, and no logging will take place."
2766 :group 'org-todo
2767 :type 'boolean)
2769 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2770 "Non-nil means switching TODO states with S-cursor counts as state change.
2771 This is the default behavior. However, setting this to nil allows a
2772 convenient way to select a TODO state and bypass any logging associated
2773 with that."
2774 :group 'org-todo
2775 :type 'boolean)
2777 (defcustom org-todo-state-tags-triggers nil
2778 "Tag changes that should be triggered by TODO state changes.
2779 This is a list. Each entry is
2781 (state-change (tag . flag) .......)
2783 State-change can be a string with a state, and empty string to indicate the
2784 state that has no TODO keyword, or it can be one of the symbols `todo'
2785 or `done', meaning any not-done or done state, respectively."
2786 :group 'org-todo
2787 :group 'org-tags
2788 :type '(repeat
2789 (cons (choice :tag "When changing to"
2790 (const :tag "Not-done state" todo)
2791 (const :tag "Done state" done)
2792 (string :tag "State"))
2793 (repeat
2794 (cons :tag "Tag action"
2795 (string :tag "Tag")
2796 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2798 (defcustom org-log-done nil
2799 "Information to record when a task moves to the DONE state.
2801 Possible values are:
2803 nil Don't add anything, just change the keyword
2804 time Add a time stamp to the task
2805 note Prompt for a note and add it with template `org-log-note-headings'
2807 This option can also be set with on a per-file-basis with
2809 #+STARTUP: nologdone
2810 #+STARTUP: logdone
2811 #+STARTUP: lognotedone
2813 You can have local logging settings for a subtree by setting the LOGGING
2814 property to one or more of these keywords."
2815 :group 'org-todo
2816 :group 'org-progress
2817 :type '(choice
2818 (const :tag "No logging" nil)
2819 (const :tag "Record CLOSED timestamp" time)
2820 (const :tag "Record CLOSED timestamp with note." note)))
2822 ;; Normalize old uses of org-log-done.
2823 (cond
2824 ((eq org-log-done t) (setq org-log-done 'time))
2825 ((and (listp org-log-done) (memq 'done org-log-done))
2826 (setq org-log-done 'note)))
2828 (defcustom org-log-reschedule nil
2829 "Information to record when the scheduling date of a tasks is modified.
2831 Possible values are:
2833 nil Don't add anything, just change the date
2834 time Add a time stamp to the task
2835 note Prompt for a note and add it with template `org-log-note-headings'
2837 This option can also be set with on a per-file-basis with
2839 #+STARTUP: nologreschedule
2840 #+STARTUP: logreschedule
2841 #+STARTUP: lognotereschedule"
2842 :group 'org-todo
2843 :group 'org-progress
2844 :type '(choice
2845 (const :tag "No logging" nil)
2846 (const :tag "Record timestamp" time)
2847 (const :tag "Record timestamp with note." note)))
2849 (defcustom org-log-redeadline nil
2850 "Information to record when the deadline date of a tasks is modified.
2852 Possible values are:
2854 nil Don't add anything, just change the date
2855 time Add a time stamp to the task
2856 note Prompt for a note and add it with template `org-log-note-headings'
2858 This option can also be set with on a per-file-basis with
2860 #+STARTUP: nologredeadline
2861 #+STARTUP: logredeadline
2862 #+STARTUP: lognoteredeadline
2864 You can have local logging settings for a subtree by setting the LOGGING
2865 property to one or more of these keywords."
2866 :group 'org-todo
2867 :group 'org-progress
2868 :type '(choice
2869 (const :tag "No logging" nil)
2870 (const :tag "Record timestamp" time)
2871 (const :tag "Record timestamp with note." note)))
2873 (defcustom org-log-note-clock-out nil
2874 "Non-nil means record a note when clocking out of an item.
2875 This can also be configured on a per-file basis by adding one of
2876 the following lines anywhere in the buffer:
2878 #+STARTUP: lognoteclock-out
2879 #+STARTUP: nolognoteclock-out"
2880 :group 'org-todo
2881 :group 'org-progress
2882 :type 'boolean)
2884 (defcustom org-log-done-with-time t
2885 "Non-nil means the CLOSED time stamp will contain date and time.
2886 When nil, only the date will be recorded."
2887 :group 'org-progress
2888 :type 'boolean)
2890 (defcustom org-log-note-headings
2891 '((done . "CLOSING NOTE %t")
2892 (state . "State %-12s from %-12S %t")
2893 (note . "Note taken on %t")
2894 (reschedule . "Rescheduled from %S on %t")
2895 (delschedule . "Not scheduled, was %S on %t")
2896 (redeadline . "New deadline from %S on %t")
2897 (deldeadline . "Removed deadline, was %S on %t")
2898 (refile . "Refiled on %t")
2899 (clock-out . ""))
2900 "Headings for notes added to entries.
2901 The value is an alist, with the car being a symbol indicating the note
2902 context, and the cdr is the heading to be used. The heading may also be the
2903 empty string.
2904 %t in the heading will be replaced by a time stamp.
2905 %T will be an active time stamp instead the default inactive one
2906 %d will be replaced by a short-format time stamp.
2907 %D will be replaced by an active short-format time stamp.
2908 %s will be replaced by the new TODO state, in double quotes.
2909 %S will be replaced by the old TODO state, in double quotes.
2910 %u will be replaced by the user name.
2911 %U will be replaced by the full user name.
2913 In fact, it is not a good idea to change the `state' entry, because
2914 agenda log mode depends on the format of these entries."
2915 :group 'org-todo
2916 :group 'org-progress
2917 :type '(list :greedy t
2918 (cons (const :tag "Heading when closing an item" done) string)
2919 (cons (const :tag
2920 "Heading when changing todo state (todo sequence only)"
2921 state) string)
2922 (cons (const :tag "Heading when just taking a note" note) string)
2923 (cons (const :tag "Heading when rescheduling" reschedule) string)
2924 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2925 (cons (const :tag "Heading when changing deadline" redeadline) string)
2926 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2927 (cons (const :tag "Heading when refiling" refile) string)
2928 (cons (const :tag "Heading when clocking out" clock-out) string)))
2930 (unless (assq 'note org-log-note-headings)
2931 (push '(note . "%t") org-log-note-headings))
2933 (defcustom org-log-into-drawer nil
2934 "Non-nil means insert state change notes and time stamps into a drawer.
2935 When nil, state changes notes will be inserted after the headline and
2936 any scheduling and clock lines, but not inside a drawer.
2938 The value of this variable should be the name of the drawer to use.
2939 LOGBOOK is proposed as the default drawer for this purpose, you can
2940 also set this to a string to define the drawer of your choice.
2942 A value of t is also allowed, representing \"LOGBOOK\".
2944 A value of t or nil can also be set with on a per-file-basis with
2946 #+STARTUP: logdrawer
2947 #+STARTUP: nologdrawer
2949 If this variable is set, `org-log-state-notes-insert-after-drawers'
2950 will be ignored.
2952 You can set the property LOG_INTO_DRAWER to overrule this setting for
2953 a subtree.
2955 Do not check directly this variable in a Lisp program. Call
2956 function `org-log-into-drawer' instead."
2957 :group 'org-todo
2958 :group 'org-progress
2959 :type '(choice
2960 (const :tag "Not into a drawer" nil)
2961 (const :tag "LOGBOOK" t)
2962 (string :tag "Other")))
2964 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2966 (defun org-log-into-drawer ()
2967 "Name of the log drawer, as a string, or nil.
2968 This is the value of `org-log-into-drawer'. However, if the
2969 current entry has or inherits a LOG_INTO_DRAWER property, it will
2970 be used instead of the default value."
2971 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2972 (cond ((equal p "nil") nil)
2973 ((equal p "t") "LOGBOOK")
2974 ((stringp p) p)
2975 (p "LOGBOOK")
2976 ((stringp org-log-into-drawer) org-log-into-drawer)
2977 (org-log-into-drawer "LOGBOOK"))))
2979 (defcustom org-log-state-notes-insert-after-drawers nil
2980 "Non-nil means insert state change notes after any drawers in entry.
2981 Only the drawers that *immediately* follow the headline and the
2982 deadline/scheduled line are skipped.
2983 When nil, insert notes right after the heading and perhaps the line
2984 with deadline/scheduling if present.
2986 This variable will have no effect if `org-log-into-drawer' is
2987 set."
2988 :group 'org-todo
2989 :group 'org-progress
2990 :type 'boolean)
2992 (defcustom org-log-states-order-reversed t
2993 "Non-nil means the latest state note will be directly after heading.
2994 When nil, the state change notes will be ordered according to time.
2996 This option can also be set with on a per-file-basis with
2998 #+STARTUP: logstatesreversed
2999 #+STARTUP: nologstatesreversed"
3000 :group 'org-todo
3001 :group 'org-progress
3002 :type 'boolean)
3004 (defcustom org-todo-repeat-to-state nil
3005 "The TODO state to which a repeater should return the repeating task.
3006 By default this is the first task in a TODO sequence, or the previous state
3007 in a TODO_TYP set. But you can specify another task here.
3008 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3009 :group 'org-todo
3010 :version "24.1"
3011 :type '(choice (const :tag "Head of sequence" nil)
3012 (string :tag "Specific state")))
3014 (defcustom org-log-repeat 'time
3015 "Non-nil means record moving through the DONE state when triggering repeat.
3016 An auto-repeating task is immediately switched back to TODO when
3017 marked DONE. If you are not logging state changes (by adding \"@\"
3018 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3019 record a closing note, there will be no record of the task moving
3020 through DONE. This variable forces taking a note anyway.
3022 nil Don't force a record
3023 time Record a time stamp
3024 note Prompt for a note and add it with template `org-log-note-headings'
3026 This option can also be set with on a per-file-basis with
3028 #+STARTUP: nologrepeat
3029 #+STARTUP: logrepeat
3030 #+STARTUP: lognoterepeat
3032 You can have local logging settings for a subtree by setting the LOGGING
3033 property to one or more of these keywords."
3034 :group 'org-todo
3035 :group 'org-progress
3036 :type '(choice
3037 (const :tag "Don't force a record" nil)
3038 (const :tag "Force recording the DONE state" time)
3039 (const :tag "Force recording a note with the DONE state" note)))
3042 (defgroup org-priorities nil
3043 "Priorities in Org-mode."
3044 :tag "Org Priorities"
3045 :group 'org-todo)
3047 (defcustom org-enable-priority-commands t
3048 "Non-nil means priority commands are active.
3049 When nil, these commands will be disabled, so that you never accidentally
3050 set a priority."
3051 :group 'org-priorities
3052 :type 'boolean)
3054 (defcustom org-highest-priority ?A
3055 "The highest priority of TODO items. A character like ?A, ?B etc.
3056 Must have a smaller ASCII number than `org-lowest-priority'."
3057 :group 'org-priorities
3058 :type 'character)
3060 (defcustom org-lowest-priority ?C
3061 "The lowest priority of TODO items. A character like ?A, ?B etc.
3062 Must have a larger ASCII number than `org-highest-priority'."
3063 :group 'org-priorities
3064 :type 'character)
3066 (defcustom org-default-priority ?B
3067 "The default priority of TODO items.
3068 This is the priority an item gets if no explicit priority is given.
3069 When starting to cycle on an empty priority the first step in the cycle
3070 depends on `org-priority-start-cycle-with-default'. The resulting first
3071 step priority must not exceed the range from `org-highest-priority' to
3072 `org-lowest-priority' which means that `org-default-priority' has to be
3073 in this range exclusive or inclusive the range boundaries. Else the
3074 first step refuses to set the default and the second will fall back
3075 to (depending on the command used) the highest or lowest priority."
3076 :group 'org-priorities
3077 :type 'character)
3079 (defcustom org-priority-start-cycle-with-default t
3080 "Non-nil means start with default priority when starting to cycle.
3081 When this is nil, the first step in the cycle will be (depending on the
3082 command used) one higher or lower than the default priority.
3083 See also `org-default-priority'."
3084 :group 'org-priorities
3085 :type 'boolean)
3087 (defcustom org-get-priority-function nil
3088 "Function to extract the priority from a string.
3089 The string is normally the headline. If this is nil Org computes the
3090 priority from the priority cookie like [#A] in the headline. It returns
3091 an integer, increasing by 1000 for each priority level.
3092 The user can set a different function here, which should take a string
3093 as an argument and return the numeric priority."
3094 :group 'org-priorities
3095 :version "24.1"
3096 :type '(choice
3097 (const nil)
3098 (function)))
3100 (defgroup org-time nil
3101 "Options concerning time stamps and deadlines in Org-mode."
3102 :tag "Org Time"
3103 :group 'org)
3105 (defcustom org-time-stamp-rounding-minutes '(0 5)
3106 "Number of minutes to round time stamps to.
3107 These are two values, the first applies when first creating a time stamp.
3108 The second applies when changing it with the commands `S-up' and `S-down'.
3109 When changing the time stamp, this means that it will change in steps
3110 of N minutes, as given by the second value.
3112 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3113 numbers should be factors of 60, so for example 5, 10, 15.
3115 When this is larger than 1, you can still force an exact time stamp by using
3116 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3117 and by using a prefix arg to `S-up/down' to specify the exact number
3118 of minutes to shift."
3119 :group 'org-time
3120 :get (lambda (var) ; Make sure both elements are there
3121 (if (integerp (default-value var))
3122 (list (default-value var) 5)
3123 (default-value var)))
3124 :type '(list
3125 (integer :tag "when inserting times")
3126 (integer :tag "when modifying times")))
3128 ;; Normalize old customizations of this variable.
3129 (when (integerp org-time-stamp-rounding-minutes)
3130 (setq org-time-stamp-rounding-minutes
3131 (list org-time-stamp-rounding-minutes
3132 org-time-stamp-rounding-minutes)))
3134 (defcustom org-display-custom-times nil
3135 "Non-nil means overlay custom formats over all time stamps.
3136 The formats are defined through the variable `org-time-stamp-custom-formats'.
3137 To turn this on on a per-file basis, insert anywhere in the file:
3138 #+STARTUP: customtime"
3139 :group 'org-time
3140 :set 'set-default
3141 :type 'sexp)
3142 (make-variable-buffer-local 'org-display-custom-times)
3144 (defcustom org-time-stamp-custom-formats
3145 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3146 "Custom formats for time stamps. See `format-time-string' for the syntax.
3147 These are overlaid over the default ISO format if the variable
3148 `org-display-custom-times' is set. Time like %H:%M should be at the
3149 end of the second format. The custom formats are also honored by export
3150 commands, if custom time display is turned on at the time of export."
3151 :group 'org-time
3152 :type 'sexp)
3154 (defun org-time-stamp-format (&optional long inactive)
3155 "Get the right format for a time string."
3156 (let ((f (if long (cdr org-time-stamp-formats)
3157 (car org-time-stamp-formats))))
3158 (if inactive
3159 (concat "[" (substring f 1 -1) "]")
3160 f)))
3162 (defcustom org-time-clocksum-format
3163 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3164 "The format string used when creating CLOCKSUM lines.
3165 This is also used when Org mode generates a time duration.
3167 The value can be a single format string containing two
3168 %-sequences, which will be filled with the number of hours and
3169 minutes in that order.
3171 Alternatively, the value can be a plist associating any of the
3172 keys :years, :months, :weeks, :days, :hours or :minutes with
3173 format strings. The time duration is formatted using only the
3174 time components that are needed and concatenating the results.
3175 If a time unit in absent, it falls back to the next smallest
3176 unit.
3178 The keys :require-years, :require-months, :require-days,
3179 :require-weeks, :require-hours, :require-minutes are also
3180 meaningful. A non-nil value for these keys indicates that the
3181 corresponding time component should always be included, even if
3182 its value is 0.
3185 For example,
3187 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3188 :require-minutes t)
3190 means durations longer than a day will be expressed in days,
3191 hours and minutes, and durations less than a day will always be
3192 expressed in hours and minutes (even for durations less than an
3193 hour).
3195 The value
3197 \(:days \"%dd\" :minutes \"%dm\")
3199 means durations longer than a day will be expressed in days and
3200 minutes, and durations less than a day will be expressed entirely
3201 in minutes (even for durations longer than an hour)."
3202 :group 'org-time
3203 :group 'org-clock
3204 :version "24.4"
3205 :package-version '(Org . "8.0")
3206 :type '(choice (string :tag "Format string")
3207 (set :tag "Plist"
3208 (group :inline t (const :tag "Years" :years)
3209 (string :tag "Format string"))
3210 (group :inline t
3211 (const :tag "Always show years" :require-years)
3212 (const t))
3213 (group :inline t (const :tag "Months" :months)
3214 (string :tag "Format string"))
3215 (group :inline t
3216 (const :tag "Always show months" :require-months)
3217 (const t))
3218 (group :inline t (const :tag "Weeks" :weeks)
3219 (string :tag "Format string"))
3220 (group :inline t
3221 (const :tag "Always show weeks" :require-weeks)
3222 (const t))
3223 (group :inline t (const :tag "Days" :days)
3224 (string :tag "Format string"))
3225 (group :inline t
3226 (const :tag "Always show days" :require-days)
3227 (const t))
3228 (group :inline t (const :tag "Hours" :hours)
3229 (string :tag "Format string"))
3230 (group :inline t
3231 (const :tag "Always show hours" :require-hours)
3232 (const t))
3233 (group :inline t (const :tag "Minutes" :minutes)
3234 (string :tag "Format string"))
3235 (group :inline t
3236 (const :tag "Always show minutes" :require-minutes)
3237 (const t)))))
3239 (defcustom org-time-clocksum-use-fractional nil
3240 "When non-nil, \\[org-clock-display] uses fractional times.
3241 See `org-time-clocksum-format' for more on time clock formats."
3242 :group 'org-time
3243 :group 'org-clock
3244 :version "24.3"
3245 :type 'boolean)
3247 (defcustom org-time-clocksum-use-effort-durations nil
3248 "When non-nil, \\[org-clock-display] uses effort durations.
3249 E.g. by default, one day is considered to be a 8 hours effort,
3250 so a task that has been clocked for 16 hours will be displayed
3251 as during 2 days in the clock display or in the clocktable.
3253 See `org-effort-durations' on how to set effort durations
3254 and `org-time-clocksum-format' for more on time clock formats."
3255 :group 'org-time
3256 :group 'org-clock
3257 :version "24.4"
3258 :package-version '(Org . "8.0")
3259 :type 'boolean)
3261 (defcustom org-time-clocksum-fractional-format "%.2f"
3262 "The format string used when creating CLOCKSUM lines,
3263 or when Org mode generates a time duration, if
3264 `org-time-clocksum-use-fractional' is enabled.
3266 The value can be a single format string containing one
3267 %-sequence, which will be filled with the number of hours as
3268 a float.
3270 Alternatively, the value can be a plist associating any of the
3271 keys :years, :months, :weeks, :days, :hours or :minutes with
3272 a format string. The time duration is formatted using the
3273 largest time unit which gives a non-zero integer part. If all
3274 specified formats have zero integer part, the smallest time unit
3275 is used."
3276 :group 'org-time
3277 :type '(choice (string :tag "Format string")
3278 (set (group :inline t (const :tag "Years" :years)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Months" :months)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Weeks" :weeks)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Days" :days)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Hours" :hours)
3287 (string :tag "Format string"))
3288 (group :inline t (const :tag "Minutes" :minutes)
3289 (string :tag "Format string")))))
3291 (defcustom org-deadline-warning-days 14
3292 "Number of days before expiration during which a deadline becomes active.
3293 This variable governs the display in sparse trees and in the agenda.
3294 When 0 or negative, it means use this number (the absolute value of it)
3295 even if a deadline has a different individual lead time specified.
3297 Custom commands can set this variable in the options section."
3298 :group 'org-time
3299 :group 'org-agenda-daily/weekly
3300 :type 'integer)
3302 (defcustom org-scheduled-delay-days 0
3303 "Number of days before a scheduled item becomes active.
3304 This variable governs the display in sparse trees and in the agenda.
3305 The default value (i.e. 0) means: don't delay scheduled item.
3306 When negative, it means use this number (the absolute value of it)
3307 even if a scheduled item has a different individual delay time
3308 specified.
3310 Custom commands can set this variable in the options section."
3311 :group 'org-time
3312 :group 'org-agenda-daily/weekly
3313 :version "24.4"
3314 :package-version '(Org . "8.0")
3315 :type 'integer)
3317 (defcustom org-read-date-prefer-future t
3318 "Non-nil means assume future for incomplete date input from user.
3319 This affects the following situations:
3320 1. The user gives a month but not a year.
3321 For example, if it is April and you enter \"feb 2\", this will be read
3322 as Feb 2, *next* year. \"May 5\", however, will be this year.
3323 2. The user gives a day, but no month.
3324 For example, if today is the 15th, and you enter \"3\", Org-mode will
3325 read this as the third of *next* month. However, if you enter \"17\",
3326 it will be considered as *this* month.
3328 If you set this variable to the symbol `time', then also the following
3329 will work:
3331 3. If the user gives a time.
3332 If the time is before now, it will be interpreted as tomorrow.
3334 Currently none of this works for ISO week specifications.
3336 When this option is nil, the current day, month and year will always be
3337 used as defaults.
3339 See also `org-agenda-jump-prefer-future'."
3340 :group 'org-time
3341 :type '(choice
3342 (const :tag "Never" nil)
3343 (const :tag "Check month and day" t)
3344 (const :tag "Check month, day, and time" time)))
3346 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3347 "Should the agenda jump command prefer the future for incomplete dates?
3348 The default is to do the same as configured in `org-read-date-prefer-future'.
3349 But you can also set a deviating value here.
3350 This may t or nil, or the symbol `org-read-date-prefer-future'."
3351 :group 'org-agenda
3352 :group 'org-time
3353 :version "24.1"
3354 :type '(choice
3355 (const :tag "Use org-read-date-prefer-future"
3356 org-read-date-prefer-future)
3357 (const :tag "Never" nil)
3358 (const :tag "Always" t)))
3360 (defcustom org-read-date-force-compatible-dates t
3361 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3363 Depending on the system Emacs is running on, certain dates cannot
3364 be represented with the type used internally to represent time.
3365 Dates between 1970-1-1 and 2038-1-1 can always be represented
3366 correctly. Some systems allow for earlier dates, some for later,
3367 some for both. One way to find out it to insert any date into an
3368 Org buffer, putting the cursor on the year and hitting S-up and
3369 S-down to test the range.
3371 When this variable is set to t, the date/time prompt will not let
3372 you specify dates outside the 1970-2037 range, so it is certain that
3373 these dates will work in whatever version of Emacs you are
3374 running, and also that you can move a file from one Emacs implementation
3375 to another. WHenever Org is forcing the year for you, it will display
3376 a message and beep.
3378 When this variable is nil, Org will check if the date is
3379 representable in the specific Emacs implementation you are using.
3380 If not, it will force a year, usually the current year, and beep
3381 to remind you. Currently this setting is not recommended because
3382 the likelihood that you will open your Org files in an Emacs that
3383 has limited date range is not negligible.
3385 A workaround for this problem is to use diary sexp dates for time
3386 stamps outside of this range."
3387 :group 'org-time
3388 :version "24.1"
3389 :type 'boolean)
3391 (defcustom org-read-date-display-live t
3392 "Non-nil means display current interpretation of date prompt live.
3393 This display will be in an overlay, in the minibuffer."
3394 :group 'org-time
3395 :type 'boolean)
3397 (defcustom org-read-date-popup-calendar t
3398 "Non-nil means pop up a calendar when prompting for a date.
3399 In the calendar, the date can be selected with mouse-1. However, the
3400 minibuffer will also be active, and you can simply enter the date as well.
3401 When nil, only the minibuffer will be available."
3402 :group 'org-time
3403 :type 'boolean)
3404 (org-defvaralias 'org-popup-calendar-for-date-prompt
3405 'org-read-date-popup-calendar)
3407 (make-obsolete-variable
3408 'org-read-date-minibuffer-setup-hook
3409 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3410 (defcustom org-read-date-minibuffer-setup-hook nil
3411 "Hook to be used to set up keys for the date/time interface.
3412 Add key definitions to `minibuffer-local-map', which will be a
3413 temporary copy.
3415 WARNING: This option is obsolete, you should use
3416 `org-read-date-minibuffer-local-map' to set up keys."
3417 :group 'org-time
3418 :type 'hook)
3420 (defcustom org-extend-today-until 0
3421 "The hour when your day really ends. Must be an integer.
3422 This has influence for the following applications:
3423 - When switching the agenda to \"today\". It it is still earlier than
3424 the time given here, the day recognized as TODAY is actually yesterday.
3425 - When a date is read from the user and it is still before the time given
3426 here, the current date and time will be assumed to be yesterday, 23:59.
3427 Also, timestamps inserted in capture templates follow this rule.
3429 IMPORTANT: This is a feature whose implementation is and likely will
3430 remain incomplete. Really, it is only here because past midnight seems to
3431 be the favorite working time of John Wiegley :-)"
3432 :group 'org-time
3433 :type 'integer)
3435 (defcustom org-use-effective-time nil
3436 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3437 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3438 \"effective time\" of any timestamps between midnight and 8am will be
3439 23:59 of the previous day."
3440 :group 'org-time
3441 :version "24.1"
3442 :type 'boolean)
3444 (defcustom org-use-last-clock-out-time-as-effective-time nil
3445 "When non-nil, use the last clock out time for `org-todo'.
3446 Note that this option has precedence over the combined use of
3447 `org-use-effective-time' and `org-extend-today-until'."
3448 :group 'org-time
3449 :version "24.4"
3450 :package-version '(Org . "8.0")
3451 :type 'boolean)
3453 (defcustom org-edit-timestamp-down-means-later nil
3454 "Non-nil means S-down will increase the time in a time stamp.
3455 When nil, S-up will increase."
3456 :group 'org-time
3457 :type 'boolean)
3459 (defcustom org-calendar-follow-timestamp-change t
3460 "Non-nil means make the calendar window follow timestamp changes.
3461 When a timestamp is modified and the calendar window is visible, it will be
3462 moved to the new date."
3463 :group 'org-time
3464 :type 'boolean)
3466 (defgroup org-tags nil
3467 "Options concerning tags in Org-mode."
3468 :tag "Org Tags"
3469 :group 'org)
3471 (defcustom org-tag-alist nil
3472 "List of tags allowed in Org-mode files.
3473 When this list is nil, Org-mode will base TAG input on what is already in the
3474 buffer.
3475 The value of this variable is an alist, the car of each entry must be a
3476 keyword as a string, the cdr may be a character that is used to select
3477 that tag through the fast-tag-selection interface.
3478 See the manual for details."
3479 :group 'org-tags
3480 :type '(repeat
3481 (choice
3482 (cons (string :tag "Tag name")
3483 (character :tag "Access char"))
3484 (list :tag "Start radio group"
3485 (const :startgroup)
3486 (option (string :tag "Group description")))
3487 (list :tag "Start tag group, non distinct"
3488 (const :startgrouptag)
3489 (option (string :tag "Group description")))
3490 (list :tag "Group tags delimiter"
3491 (const :grouptags))
3492 (list :tag "End radio group"
3493 (const :endgroup)
3494 (option (string :tag "Group description")))
3495 (list :tag "End tag group, non distinct"
3496 (const :endgrouptag)
3497 (option (string :tag "Group description")))
3498 (const :tag "New line" (:newline)))))
3500 (defcustom org-tag-persistent-alist nil
3501 "List of tags that will always appear in all Org-mode files.
3502 This is in addition to any in buffer settings or customizations
3503 of `org-tag-alist'.
3504 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3505 The value of this variable is an alist, the car of each entry must be a
3506 keyword as a string, the cdr may be a character that is used to select
3507 that tag through the fast-tag-selection interface.
3508 See the manual for details.
3509 To disable these tags on a per-file basis, insert anywhere in the file:
3510 #+STARTUP: noptag"
3511 :group 'org-tags
3512 :type '(repeat
3513 (choice
3514 (cons (string :tag "Tag name")
3515 (character :tag "Access char"))
3516 (const :tag "Start radio group" (:startgroup))
3517 (const :tag "Group tags delimiter" (:grouptags))
3518 (const :tag "End radio group" (:endgroup))
3519 (const :tag "New line" (:newline)))))
3521 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3522 "If non-nil, always offer completion for all tags of all agenda files.
3523 Instead of customizing this variable directly, you might want to
3524 set it locally for capture buffers, because there no list of
3525 tags in that file can be created dynamically (there are none).
3527 (add-hook 'org-capture-mode-hook
3528 (lambda ()
3529 (set (make-local-variable
3530 'org-complete-tags-always-offer-all-agenda-tags)
3531 t)))"
3532 :group 'org-tags
3533 :version "24.1"
3534 :type 'boolean)
3536 (defvar org-file-tags nil
3537 "List of tags that can be inherited by all entries in the file.
3538 The tags will be inherited if the variable `org-use-tag-inheritance'
3539 says they should be.
3540 This variable is populated from #+FILETAGS lines.")
3542 (defcustom org-use-fast-tag-selection 'auto
3543 "Non-nil means use fast tag selection scheme.
3544 This is a special interface to select and deselect tags with single keys.
3545 When nil, fast selection is never used.
3546 When the symbol `auto', fast selection is used if and only if selection
3547 characters for tags have been configured, either through the variable
3548 `org-tag-alist' or through a #+TAGS line in the buffer.
3549 When t, fast selection is always used and selection keys are assigned
3550 automatically if necessary."
3551 :group 'org-tags
3552 :type '(choice
3553 (const :tag "Always" t)
3554 (const :tag "Never" nil)
3555 (const :tag "When selection characters are configured" auto)))
3557 (defcustom org-fast-tag-selection-single-key nil
3558 "Non-nil means fast tag selection exits after first change.
3559 When nil, you have to press RET to exit it.
3560 During fast tag selection, you can toggle this flag with `C-c'.
3561 This variable can also have the value `expert'. In this case, the window
3562 displaying the tags menu is not even shown, until you press C-c again."
3563 :group 'org-tags
3564 :type '(choice
3565 (const :tag "No" nil)
3566 (const :tag "Yes" t)
3567 (const :tag "Expert" expert)))
3569 (defvar org-fast-tag-selection-include-todo nil
3570 "Non-nil means fast tags selection interface will also offer TODO states.
3571 This is an undocumented feature, you should not rely on it.")
3573 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3574 "The column to which tags should be indented in a headline.
3575 If this number is positive, it specifies the column. If it is negative,
3576 it means that the tags should be flushright to that column. For example,
3577 -80 works well for a normal 80 character screen.
3578 When 0, place tags directly after headline text, with only one space in
3579 between."
3580 :group 'org-tags
3581 :type 'integer)
3583 (defcustom org-auto-align-tags t
3584 "Non-nil keeps tags aligned when modifying headlines.
3585 Some operations (i.e. demoting) change the length of a headline and
3586 therefore shift the tags around. With this option turned on, after
3587 each such operation the tags are again aligned to `org-tags-column'."
3588 :group 'org-tags
3589 :type 'boolean)
3591 (defcustom org-use-tag-inheritance t
3592 "Non-nil means tags in levels apply also for sublevels.
3593 When nil, only the tags directly given in a specific line apply there.
3594 This may also be a list of tags that should be inherited, or a regexp that
3595 matches tags that should be inherited. Additional control is possible
3596 with the variable `org-tags-exclude-from-inheritance' which gives an
3597 explicit list of tags to be excluded from inheritance, even if the value of
3598 `org-use-tag-inheritance' would select it for inheritance.
3600 If this option is t, a match early-on in a tree can lead to a large
3601 number of matches in the subtree when constructing the agenda or creating
3602 a sparse tree. If you only want to see the first match in a tree during
3603 a search, check out the variable `org-tags-match-list-sublevels'."
3604 :group 'org-tags
3605 :type '(choice
3606 (const :tag "Not" nil)
3607 (const :tag "Always" t)
3608 (repeat :tag "Specific tags" (string :tag "Tag"))
3609 (regexp :tag "Tags matched by regexp")))
3611 (defcustom org-tags-exclude-from-inheritance nil
3612 "List of tags that should never be inherited.
3613 This is a way to exclude a few tags from inheritance. For way to do
3614 the opposite, to actively allow inheritance for selected tags,
3615 see the variable `org-use-tag-inheritance'."
3616 :group 'org-tags
3617 :type '(repeat (string :tag "Tag")))
3619 (defun org-tag-inherit-p (tag)
3620 "Check if TAG is one that should be inherited."
3621 (cond
3622 ((member tag org-tags-exclude-from-inheritance) nil)
3623 ((eq org-use-tag-inheritance t) t)
3624 ((not org-use-tag-inheritance) nil)
3625 ((stringp org-use-tag-inheritance)
3626 (string-match org-use-tag-inheritance tag))
3627 ((listp org-use-tag-inheritance)
3628 (member tag org-use-tag-inheritance))
3629 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3631 (defcustom org-tags-match-list-sublevels t
3632 "Non-nil means list also sublevels of headlines matching a search.
3633 This variable applies to tags/property searches, and also to stuck
3634 projects because this search is based on a tags match as well.
3636 When set to the symbol `indented', sublevels are indented with
3637 leading dots.
3639 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3640 the sublevels of a headline matching a tag search often also match
3641 the same search. Listing all of them can create very long lists.
3642 Setting this variable to nil causes subtrees of a match to be skipped.
3644 This variable is semi-obsolete and probably should always be true. It
3645 is better to limit inheritance to certain tags using the variables
3646 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3647 :group 'org-tags
3648 :type '(choice
3649 (const :tag "No, don't list them" nil)
3650 (const :tag "Yes, do list them" t)
3651 (const :tag "List them, indented with leading dots" indented)))
3653 (defcustom org-tags-sort-function nil
3654 "When set, tags are sorted using this function as a comparator."
3655 :group 'org-tags
3656 :type '(choice
3657 (const :tag "No sorting" nil)
3658 (const :tag "Alphabetical" string<)
3659 (const :tag "Reverse alphabetical" string>)
3660 (function :tag "Custom function" nil)))
3662 (defvar org-tags-history nil
3663 "History of minibuffer reads for tags.")
3664 (defvar org-last-tags-completion-table nil
3665 "The last used completion table for tags.")
3666 (defvar org-after-tags-change-hook nil
3667 "Hook that is run after the tags in a line have changed.")
3669 (defgroup org-properties nil
3670 "Options concerning properties in Org-mode."
3671 :tag "Org Properties"
3672 :group 'org)
3674 (defcustom org-property-format "%-10s %s"
3675 "How property key/value pairs should be formatted by `indent-line'.
3676 When `indent-line' hits a property definition, it will format the line
3677 according to this format, mainly to make sure that the values are
3678 lined-up with respect to each other."
3679 :group 'org-properties
3680 :type 'string)
3682 (defcustom org-properties-postprocess-alist nil
3683 "Alist of properties and functions to adjust inserted values.
3684 Elements of this alist must be of the form
3686 ([string] [function])
3688 where [string] must be a property name and [function] must be a
3689 lambda expression: this lambda expression must take one argument,
3690 the value to adjust, and return the new value as a string.
3692 For example, this element will allow the property \"Remaining\"
3693 to be updated wrt the relation between the \"Effort\" property
3694 and the clock summary:
3696 ((\"Remaining\" (lambda(value)
3697 (let ((clocksum (org-clock-sum-current-item))
3698 (effort (org-duration-string-to-minutes
3699 (org-entry-get (point) \"Effort\"))))
3700 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3701 :group 'org-properties
3702 :version "24.1"
3703 :type '(alist :key-type (string :tag "Property")
3704 :value-type (function :tag "Function")))
3706 (defcustom org-use-property-inheritance nil
3707 "Non-nil means properties apply also for sublevels.
3709 This setting is chiefly used during property searches. Turning it on can
3710 cause significant overhead when doing a search, which is why it is not
3711 on by default.
3713 When nil, only the properties directly given in the current entry count.
3714 When t, every property is inherited. The value may also be a list of
3715 properties that should have inheritance, or a regular expression matching
3716 properties that should be inherited.
3718 However, note that some special properties use inheritance under special
3719 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3720 and the properties ending in \"_ALL\" when they are used as descriptor
3721 for valid values of a property.
3723 Note for programmers:
3724 When querying an entry with `org-entry-get', you can control if inheritance
3725 should be used. By default, `org-entry-get' looks only at the local
3726 properties. You can request inheritance by setting the inherit argument
3727 to t (to force inheritance) or to `selective' (to respect the setting
3728 in this variable)."
3729 :group 'org-properties
3730 :type '(choice
3731 (const :tag "Not" nil)
3732 (const :tag "Always" t)
3733 (repeat :tag "Specific properties" (string :tag "Property"))
3734 (regexp :tag "Properties matched by regexp")))
3736 (defun org-property-inherit-p (property)
3737 "Check if PROPERTY is one that should be inherited."
3738 (cond
3739 ((eq org-use-property-inheritance t) t)
3740 ((not org-use-property-inheritance) nil)
3741 ((stringp org-use-property-inheritance)
3742 (string-match org-use-property-inheritance property))
3743 ((listp org-use-property-inheritance)
3744 (member property org-use-property-inheritance))
3745 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3747 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3748 "The default column format, if no other format has been defined.
3749 This variable can be set on the per-file basis by inserting a line
3751 #+COLUMNS: %25ITEM ....."
3752 :group 'org-properties
3753 :type 'string)
3755 (defcustom org-columns-ellipses ".."
3756 "The ellipses to be used when a field in column view is truncated.
3757 When this is the empty string, as many characters as possible are shown,
3758 but then there will be no visual indication that the field has been truncated.
3759 When this is a string of length N, the last N characters of a truncated
3760 field are replaced by this string. If the column is narrower than the
3761 ellipses string, only part of the ellipses string will be shown."
3762 :group 'org-properties
3763 :type 'string)
3765 (defcustom org-columns-modify-value-for-display-function nil
3766 "Function that modifies values for display in column view.
3767 For example, it can be used to cut out a certain part from a time stamp.
3768 The function must take 2 arguments:
3770 column-title The title of the column (*not* the property name)
3771 value The value that should be modified.
3773 The function should return the value that should be displayed,
3774 or nil if the normal value should be used."
3775 :group 'org-properties
3776 :type '(choice (const nil) (function)))
3778 (defconst org-global-properties-fixed
3779 '(("VISIBILITY_ALL" . "folded children content all")
3780 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3781 "List of property/value pairs that can be inherited by any entry.
3783 These are fixed values, for the preset properties. The user variable
3784 that can be used to add to this list is `org-global-properties'.
3786 The entries in this list are cons cells where the car is a property
3787 name and cdr is a string with the value. If the value represents
3788 multiple items like an \"_ALL\" property, separate the items by
3789 spaces.")
3791 (defcustom org-global-properties nil
3792 "List of property/value pairs that can be inherited by any entry.
3794 This list will be combined with the constant `org-global-properties-fixed'.
3796 The entries in this list are cons cells where the car is a property
3797 name and cdr is a string with the value.
3799 You can set buffer-local values for the same purpose in the variable
3800 `org-file-properties' this by adding lines like
3802 #+PROPERTY: NAME VALUE"
3803 :group 'org-properties
3804 :type '(repeat
3805 (cons (string :tag "Property")
3806 (string :tag "Value"))))
3808 (defvar org-file-properties nil
3809 "List of property/value pairs that can be inherited by any entry.
3810 Valid for the current buffer.
3811 This variable is populated from #+PROPERTY lines.")
3812 (make-variable-buffer-local 'org-file-properties)
3814 (defgroup org-agenda nil
3815 "Options concerning agenda views in Org-mode."
3816 :tag "Org Agenda"
3817 :group 'org)
3819 (defvar org-category nil
3820 "Variable used by org files to set a category for agenda display.
3821 Such files should use a file variable to set it, for example
3823 # -*- mode: org; org-category: \"ELisp\"
3825 or contain a special line
3827 #+CATEGORY: ELisp
3829 If the file does not specify a category, then file's base name
3830 is used instead.")
3831 (make-variable-buffer-local 'org-category)
3832 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3834 (defcustom org-agenda-files nil
3835 "The files to be used for agenda display.
3836 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3837 \\[org-remove-file]. You can also use customize to edit the list.
3839 If an entry is a directory, all files in that directory that are matched by
3840 `org-agenda-file-regexp' will be part of the file list.
3842 If the value of the variable is not a list but a single file name, then
3843 the list of agenda files is actually stored and maintained in that file, one
3844 agenda file per line. In this file paths can be given relative to
3845 `org-directory'. Tilde expansion and environment variable substitution
3846 are also made."
3847 :group 'org-agenda
3848 :type '(choice
3849 (repeat :tag "List of files and directories" file)
3850 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3852 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3853 "Regular expression to match files for `org-agenda-files'.
3854 If any element in the list in that variable contains a directory instead
3855 of a normal file, all files in that directory that are matched by this
3856 regular expression will be included."
3857 :group 'org-agenda
3858 :type 'regexp)
3860 (defcustom org-agenda-text-search-extra-files nil
3861 "List of extra files to be searched by text search commands.
3862 These files will be searched in addition to the agenda files by the
3863 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3864 Note that these files will only be searched for text search commands,
3865 not for the other agenda views like todo lists, tag searches or the weekly
3866 agenda. This variable is intended to list notes and possibly archive files
3867 that should also be searched by these two commands.
3868 In fact, if the first element in the list is the symbol `agenda-archives',
3869 then all archive files of all agenda files will be added to the search
3870 scope."
3871 :group 'org-agenda
3872 :type '(set :greedy t
3873 (const :tag "Agenda Archives" agenda-archives)
3874 (repeat :inline t (file))))
3876 (org-defvaralias 'org-agenda-multi-occur-extra-files
3877 'org-agenda-text-search-extra-files)
3879 (defcustom org-agenda-skip-unavailable-files nil
3880 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3881 A nil value means to remove them, after a query, from the list."
3882 :group 'org-agenda
3883 :type 'boolean)
3885 (defcustom org-calendar-to-agenda-key [?c]
3886 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3887 The command `org-calendar-goto-agenda' will be bound to this key. The
3888 default is the character `c' because then `c' can be used to switch back and
3889 forth between agenda and calendar."
3890 :group 'org-agenda
3891 :type 'sexp)
3893 (defcustom org-calendar-insert-diary-entry-key [?i]
3894 "The key to be installed in `calendar-mode-map' for adding diary entries.
3895 This option is irrelevant until `org-agenda-diary-file' has been configured
3896 to point to an Org-mode file. When that is the case, the command
3897 `org-agenda-diary-entry' will be bound to the key given here, by default
3898 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3899 if you want to continue doing this, you need to change this to a different
3900 key."
3901 :group 'org-agenda
3902 :type 'sexp)
3904 (defcustom org-agenda-diary-file 'diary-file
3905 "File to which to add new entries with the `i' key in agenda and calendar.
3906 When this is the symbol `diary-file', the functionality in the Emacs
3907 calendar will be used to add entries to the `diary-file'. But when this
3908 points to a file, `org-agenda-diary-entry' will be used instead."
3909 :group 'org-agenda
3910 :type '(choice
3911 (const :tag "The standard Emacs diary file" diary-file)
3912 (file :tag "Special Org file diary entries")))
3914 (eval-after-load "calendar"
3915 '(progn
3916 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3917 'org-calendar-goto-agenda)
3918 (add-hook 'calendar-mode-hook
3919 (lambda ()
3920 (unless (eq org-agenda-diary-file 'diary-file)
3921 (define-key calendar-mode-map
3922 org-calendar-insert-diary-entry-key
3923 'org-agenda-diary-entry))))))
3925 (defgroup org-latex nil
3926 "Options for embedding LaTeX code into Org-mode."
3927 :tag "Org LaTeX"
3928 :group 'org)
3930 (defcustom org-format-latex-options
3931 '(:foreground default :background default :scale 1.0
3932 :html-foreground "Black" :html-background "Transparent"
3933 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3934 "Options for creating images from LaTeX fragments.
3935 This is a property list with the following properties:
3936 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3937 `default' means use the foreground of the default face.
3938 `auto' means use the foreground from the text face.
3939 :background the background color, or \"Transparent\".
3940 `default' means use the background of the default face.
3941 `auto' means use the background from the text face.
3942 :scale a scaling factor for the size of the images, to get more pixels
3943 :html-foreground, :html-background, :html-scale
3944 the same numbers for HTML export.
3945 :matchers a list indicating which matchers should be used to
3946 find LaTeX fragments. Valid members of this list are:
3947 \"begin\" find environments
3948 \"$1\" find single characters surrounded by $.$
3949 \"$\" find math expressions surrounded by $...$
3950 \"$$\" find math expressions surrounded by $$....$$
3951 \"\\(\" find math expressions surrounded by \\(...\\)
3952 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3953 :group 'org-latex
3954 :type 'plist)
3956 (defcustom org-format-latex-signal-error t
3957 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3958 When nil, just push out a message."
3959 :group 'org-latex
3960 :version "24.1"
3961 :type 'boolean)
3963 (defcustom org-latex-to-mathml-jar-file nil
3964 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3965 Use this to specify additional executable file say a jar file.
3967 When using MathToWeb as the converter, specify the full-path to
3968 your mathtoweb.jar file."
3969 :group 'org-latex
3970 :version "24.1"
3971 :type '(choice
3972 (const :tag "None" nil)
3973 (file :tag "JAR file" :must-match t)))
3975 (defcustom org-latex-to-mathml-convert-command nil
3976 "Command to convert LaTeX fragments to MathML.
3977 Replace format-specifiers in the command as noted below and use
3978 `shell-command' to convert LaTeX to MathML.
3979 %j: Executable file in fully expanded form as specified by
3980 `org-latex-to-mathml-jar-file'.
3981 %I: Input LaTeX file in fully expanded form.
3982 %i: The latex fragment to be converted.
3983 %o: Output MathML file.
3984 This command is used by `org-create-math-formula'.
3986 When using MathToWeb as the converter, set this to
3987 \"java -jar %j -unicode -force -df %o %I\".
3989 When using LaTeXML set this to
3990 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3991 :group 'org-latex
3992 :version "24.1"
3993 :type '(choice
3994 (const :tag "None" nil)
3995 (string :tag "\nShell command")))
3997 (defcustom org-latex-create-formula-image-program 'dvipng
3998 "Program to convert LaTeX fragments with.
4000 dvipng Process the LaTeX fragments to dvi file, then convert
4001 dvi files to png files using dvipng.
4002 This will also include processing of non-math environments.
4003 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4004 to convert pdf files to png files"
4005 :group 'org-latex
4006 :version "24.1"
4007 :type '(choice
4008 (const :tag "dvipng" dvipng)
4009 (const :tag "imagemagick" imagemagick)))
4011 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4012 "Path to store latex preview images.
4013 A relative path here creates many directories relative to the
4014 processed org files paths. An absolute path puts all preview
4015 images at the same place."
4016 :group 'org-latex
4017 :version "24.3"
4018 :type 'string)
4020 (defun org-format-latex-mathml-available-p ()
4021 "Return t if `org-latex-to-mathml-convert-command' is usable."
4022 (save-match-data
4023 (when (and (boundp 'org-latex-to-mathml-convert-command)
4024 org-latex-to-mathml-convert-command)
4025 (let ((executable (car (split-string
4026 org-latex-to-mathml-convert-command))))
4027 (when (executable-find executable)
4028 (if (string-match
4029 "%j" org-latex-to-mathml-convert-command)
4030 (file-readable-p org-latex-to-mathml-jar-file)
4031 t))))))
4033 (defcustom org-format-latex-header "\\documentclass{article}
4034 \\usepackage[usenames]{color}
4035 \[PACKAGES]
4036 \[DEFAULT-PACKAGES]
4037 \\pagestyle{empty} % do not remove
4038 % The settings below are copied from fullpage.sty
4039 \\setlength{\\textwidth}{\\paperwidth}
4040 \\addtolength{\\textwidth}{-3cm}
4041 \\setlength{\\oddsidemargin}{1.5cm}
4042 \\addtolength{\\oddsidemargin}{-2.54cm}
4043 \\setlength{\\evensidemargin}{\\oddsidemargin}
4044 \\setlength{\\textheight}{\\paperheight}
4045 \\addtolength{\\textheight}{-\\headheight}
4046 \\addtolength{\\textheight}{-\\headsep}
4047 \\addtolength{\\textheight}{-\\footskip}
4048 \\addtolength{\\textheight}{-3cm}
4049 \\setlength{\\topmargin}{1.5cm}
4050 \\addtolength{\\topmargin}{-2.54cm}"
4051 "The document header used for processing LaTeX fragments.
4052 It is imperative that this header make sure that no page number
4053 appears on the page. The package defined in the variables
4054 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4055 will either replace the placeholder \"[PACKAGES]\" in this
4056 header, or they will be appended."
4057 :group 'org-latex
4058 :type 'string)
4060 (defun org-set-packages-alist (var val)
4061 "Set the packages alist and make sure it has 3 elements per entry."
4062 (set var (mapcar (lambda (x)
4063 (if (and (consp x) (= (length x) 2))
4064 (list (car x) (nth 1 x) t)
4066 val)))
4068 (defun org-get-packages-alist (var)
4069 "Get the packages alist and make sure it has 3 elements per entry."
4070 (mapcar (lambda (x)
4071 (if (and (consp x) (= (length x) 2))
4072 (list (car x) (nth 1 x) t)
4074 (default-value var)))
4076 (defcustom org-latex-default-packages-alist
4077 '(("AUTO" "inputenc" t)
4078 ("T1" "fontenc" t)
4079 ("" "fixltx2e" nil)
4080 ("" "graphicx" t)
4081 ("" "longtable" nil)
4082 ("" "float" nil)
4083 ("" "wrapfig" nil)
4084 ("" "rotating" nil)
4085 ("normalem" "ulem" t)
4086 ("" "amsmath" t)
4087 ("" "textcomp" t)
4088 ("" "marvosym" t)
4089 ("" "wasysym" t)
4090 ("" "amssymb" t)
4091 ("" "capt-of" nil)
4092 ("" "hyperref" nil)
4093 "\\tolerance=1000")
4094 "Alist of default packages to be inserted in the header.
4096 Change this only if one of the packages here causes an
4097 incompatibility with another package you are using.
4099 The packages in this list are needed by one part or another of
4100 Org mode to function properly:
4102 - inputenc, fontenc: for basic font and character selection
4103 - fixltx2e: Important patches of LaTeX itself
4104 - graphicx: for including images
4105 - longtable: For multipage tables
4106 - float, wrapfig: for figure placement
4107 - rotating: for sideways figures and tables
4108 - ulem: for underline and strike-through
4109 - amsmath: for subscript and superscript and math environments
4110 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4111 for interpreting the entities in `org-entities'. You can skip
4112 some of these packages if you don't use any of their symbols.
4113 - capt-of: for captions outside of floats
4114 - hyperref: for cross references
4116 Therefore you should not modify this variable unless you know
4117 what you are doing. The one reason to change it anyway is that
4118 you might be loading some other package that conflicts with one
4119 of the default packages. Each element is either a cell or
4120 a string.
4122 A cell is of the format:
4124 \( \"options\" \"package\" SNIPPET-FLAG).
4126 If SNIPPET-FLAG is non-nil, the package also needs to be included
4127 when compiling LaTeX snippets into images for inclusion into
4128 non-LaTeX output.
4130 A string will be inserted as-is in the header of the document."
4131 :group 'org-latex
4132 :group 'org-export-latex
4133 :set 'org-set-packages-alist
4134 :get 'org-get-packages-alist
4135 :version "24.1"
4136 :type '(repeat
4137 (choice
4138 (list :tag "options/package pair"
4139 (string :tag "options")
4140 (string :tag "package")
4141 (boolean :tag "Snippet"))
4142 (string :tag "A line of LaTeX"))))
4144 (defcustom org-latex-packages-alist nil
4145 "Alist of packages to be inserted in every LaTeX header.
4147 These will be inserted after `org-latex-default-packages-alist'.
4148 Each element is either a cell or a string.
4150 A cell is of the format:
4152 \(\"options\" \"package\" SNIPPET-FLAG)
4154 SNIPPET-FLAG, when non-nil, indicates that this package is also
4155 needed when turning LaTeX snippets into images for inclusion into
4156 non-LaTeX output.
4158 A string will be inserted as-is in the header of the document.
4160 Make sure that you only list packages here which:
4162 - you want in every file;
4163 - do not conflict with the setup in `org-format-latex-header';
4164 - do not conflict with the default packages in
4165 `org-latex-default-packages-alist'."
4166 :group 'org-latex
4167 :group 'org-export-latex
4168 :set 'org-set-packages-alist
4169 :get 'org-get-packages-alist
4170 :type '(repeat
4171 (choice
4172 (list :tag "options/package pair"
4173 (string :tag "options")
4174 (string :tag "package")
4175 (boolean :tag "Snippet"))
4176 (string :tag "A line of LaTeX"))))
4178 (defgroup org-appearance nil
4179 "Settings for Org-mode appearance."
4180 :tag "Org Appearance"
4181 :group 'org)
4183 (defcustom org-level-color-stars-only nil
4184 "Non-nil means fontify only the stars in each headline.
4185 When nil, the entire headline is fontified.
4186 Changing it requires restart of `font-lock-mode' to become effective
4187 also in regions already fontified."
4188 :group 'org-appearance
4189 :type 'boolean)
4191 (defcustom org-hide-leading-stars nil
4192 "Non-nil means hide the first N-1 stars in a headline.
4193 This works by using the face `org-hide' for these stars. This
4194 face is white for a light background, and black for a dark
4195 background. You may have to customize the face `org-hide' to
4196 make this work.
4197 Changing it requires restart of `font-lock-mode' to become effective
4198 also in regions already fontified.
4199 You may also set this on a per-file basis by adding one of the following
4200 lines to the buffer:
4202 #+STARTUP: hidestars
4203 #+STARTUP: showstars"
4204 :group 'org-appearance
4205 :type 'boolean)
4207 (defcustom org-hidden-keywords nil
4208 "List of symbols corresponding to keywords to be hidden the org buffer.
4209 For example, a value '(title) for this list will make the document's title
4210 appear in the buffer without the initial #+TITLE: keyword."
4211 :group 'org-appearance
4212 :version "24.1"
4213 :type '(set (const :tag "#+AUTHOR" author)
4214 (const :tag "#+DATE" date)
4215 (const :tag "#+EMAIL" email)
4216 (const :tag "#+TITLE" title)))
4218 (defcustom org-custom-properties nil
4219 "List of properties (as strings) with a special meaning.
4220 The default use of these custom properties is to let the user
4221 hide them with `org-toggle-custom-properties-visibility'."
4222 :group 'org-properties
4223 :group 'org-appearance
4224 :version "24.3"
4225 :type '(repeat (string :tag "Property Name")))
4227 (defcustom org-fontify-done-headline nil
4228 "Non-nil means change the face of a headline if it is marked DONE.
4229 Normally, only the TODO/DONE keyword indicates the state of a headline.
4230 When this is non-nil, the headline after the keyword is set to the
4231 `org-headline-done' as an additional indication."
4232 :group 'org-appearance
4233 :type 'boolean)
4235 (defcustom org-fontify-emphasized-text t
4236 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4237 Changing this variable requires a restart of Emacs to take effect."
4238 :group 'org-appearance
4239 :type 'boolean)
4241 (defcustom org-fontify-whole-heading-line nil
4242 "Non-nil means fontify the whole line for headings.
4243 This is useful when setting a background color for the
4244 org-level-* faces."
4245 :group 'org-appearance
4246 :type 'boolean)
4248 (defcustom org-highlight-latex-and-related nil
4249 "Non-nil means highlight LaTeX related syntax in the buffer.
4250 When non nil, the value should be a list containing any of the
4251 following symbols:
4252 `latex' Highlight LaTeX snippets and environments.
4253 `script' Highlight subscript and superscript.
4254 `entities' Highlight entities."
4255 :group 'org-appearance
4256 :version "24.4"
4257 :package-version '(Org . "8.0")
4258 :type '(choice
4259 (const :tag "No highlighting" nil)
4260 (set :greedy t :tag "Highlight"
4261 (const :tag "LaTeX snippets and environments" latex)
4262 (const :tag "Subscript and superscript" script)
4263 (const :tag "Entities" entities))))
4265 (defcustom org-hide-emphasis-markers nil
4266 "Non-nil mean font-lock should hide the emphasis marker characters."
4267 :group 'org-appearance
4268 :type 'boolean)
4270 (defcustom org-hide-macro-markers nil
4271 "Non-nil mean font-lock should hide the brackets marking macro calls."
4272 :group 'org-appearance
4273 :type 'boolean)
4275 (defcustom org-pretty-entities nil
4276 "Non-nil means show entities as UTF8 characters.
4277 When nil, the \\name form remains in the buffer."
4278 :group 'org-appearance
4279 :version "24.1"
4280 :type 'boolean)
4282 (defcustom org-pretty-entities-include-sub-superscripts t
4283 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4284 :group 'org-appearance
4285 :version "24.1"
4286 :type 'boolean)
4288 (defvar org-emph-re nil
4289 "Regular expression for matching emphasis.
4290 After a match, the match groups contain these elements:
4291 0 The match of the full regular expression, including the characters
4292 before and after the proper match
4293 1 The character before the proper match, or empty at beginning of line
4294 2 The proper match, including the leading and trailing markers
4295 3 The leading marker like * or /, indicating the type of highlighting
4296 4 The text between the emphasis markers, not including the markers
4297 5 The character after the match, empty at the end of a line")
4298 (defvar org-verbatim-re nil
4299 "Regular expression for matching verbatim text.")
4300 (defvar org-emphasis-regexp-components) ; defined just below
4301 (defvar org-emphasis-alist) ; defined just below
4302 (defun org-set-emph-re (var val)
4303 "Set variable and compute the emphasis regular expression."
4304 (set var val)
4305 (when (and (boundp 'org-emphasis-alist)
4306 (boundp 'org-emphasis-regexp-components)
4307 org-emphasis-alist org-emphasis-regexp-components)
4308 (let* ((e org-emphasis-regexp-components)
4309 (pre (car e))
4310 (post (nth 1 e))
4311 (border (nth 2 e))
4312 (body (nth 3 e))
4313 (nl (nth 4 e))
4314 (body1 (concat body "*?"))
4315 (markers (mapconcat 'car org-emphasis-alist ""))
4316 (vmarkers (mapconcat
4317 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4318 org-emphasis-alist "")))
4319 ;; make sure special characters appear at the right position in the class
4320 (if (string-match "\\^" markers)
4321 (setq markers (concat (replace-match "" t t markers) "^")))
4322 (if (string-match "-" markers)
4323 (setq markers (concat (replace-match "" t t markers) "-")))
4324 (if (string-match "\\^" vmarkers)
4325 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4326 (if (string-match "-" vmarkers)
4327 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4328 (if (> nl 0)
4329 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4330 (int-to-string nl) "\\}")))
4331 ;; Make the regexp
4332 (setq org-emph-re
4333 (concat "\\([" pre "]\\|^\\)"
4334 "\\("
4335 "\\([" markers "]\\)"
4336 "\\("
4337 "[^" border "]\\|"
4338 "[^" border "]"
4339 body1
4340 "[^" border "]"
4341 "\\)"
4342 "\\3\\)"
4343 "\\([" post "]\\|$\\)"))
4344 (setq org-verbatim-re
4345 (concat "\\([" pre "]\\|^\\)"
4346 "\\("
4347 "\\([" vmarkers "]\\)"
4348 "\\("
4349 "[^" border "]\\|"
4350 "[^" border "]"
4351 body1
4352 "[^" border "]"
4353 "\\)"
4354 "\\3\\)"
4355 "\\([" post "]\\|$\\)")))))
4357 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4358 ;; set this option proved cumbersome. See this message/thread:
4359 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4360 (defvar org-emphasis-regexp-components
4361 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4362 "Components used to build the regular expression for emphasis.
4363 This is a list with five entries. Terminology: In an emphasis string
4364 like \" *strong word* \", we call the initial space PREMATCH, the final
4365 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4366 and \"trong wor\" is the body. The different components in this variable
4367 specify what is allowed/forbidden in each part:
4369 pre Chars allowed as prematch. Beginning of line will be allowed too.
4370 post Chars allowed as postmatch. End of line will be allowed too.
4371 border The chars *forbidden* as border characters.
4372 body-regexp A regexp like \".\" to match a body character. Don't use
4373 non-shy groups here, and don't allow newline here.
4374 newline The maximum number of newlines allowed in an emphasis exp.
4376 You need to reload Org or to restart Emacs after customizing this.")
4378 (defcustom org-emphasis-alist
4379 `(("*" bold)
4380 ("/" italic)
4381 ("_" underline)
4382 ("=" org-verbatim verbatim)
4383 ("~" org-code verbatim)
4384 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4385 "Alist of characters and faces to emphasize text.
4386 Text starting and ending with a special character will be emphasized,
4387 for example *bold*, _underlined_ and /italic/. This variable sets the
4388 marker characters and the face to be used by font-lock for highlighting
4389 in Org-mode Emacs buffers.
4391 You need to reload Org or to restart Emacs after customizing this."
4392 :group 'org-appearance
4393 :set 'org-set-emph-re
4394 :version "24.4"
4395 :package-version '(Org . "8.0")
4396 :type '(repeat
4397 (list
4398 (string :tag "Marker character")
4399 (choice
4400 (face :tag "Font-lock-face")
4401 (plist :tag "Face property list"))
4402 (option (const verbatim)))))
4404 (defvar org-protecting-blocks
4405 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4406 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4407 This is needed for font-lock setup.")
4409 ;;; Miscellaneous options
4411 (defgroup org-completion nil
4412 "Completion in Org-mode."
4413 :tag "Org Completion"
4414 :group 'org)
4416 (defcustom org-completion-use-ido nil
4417 "Non-nil means use ido completion wherever possible.
4418 Note that `ido-mode' must be active for this variable to be relevant.
4419 If you decide to turn this variable on, you might well want to turn off
4420 `org-outline-path-complete-in-steps'.
4421 See also `org-completion-use-iswitchb'."
4422 :group 'org-completion
4423 :type 'boolean)
4425 (defcustom org-completion-use-iswitchb nil
4426 "Non-nil means use iswitchb completion wherever possible.
4427 Note that `iswitchb-mode' must be active for this variable to be relevant.
4428 If you decide to turn this variable on, you might well want to turn off
4429 `org-outline-path-complete-in-steps'.
4430 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4431 :group 'org-completion
4432 :type 'boolean)
4434 (defcustom org-completion-fallback-command 'hippie-expand
4435 "The expansion command called by \\[pcomplete] in normal context.
4436 Normal means, no org-mode-specific context."
4437 :group 'org-completion
4438 :type 'function)
4440 ;;; Functions and variables from their packages
4441 ;; Declared here to avoid compiler warnings
4443 ;; XEmacs only
4444 (defvar outline-mode-menu-heading)
4445 (defvar outline-mode-menu-show)
4446 (defvar outline-mode-menu-hide)
4447 (defvar zmacs-regions) ; XEmacs regions
4449 ;; Emacs only
4450 (defvar mark-active)
4452 ;; Various packages
4453 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4454 (declare-function calendar-forward-day "cal-move" (arg))
4455 (declare-function calendar-goto-date "cal-move" (date))
4456 (declare-function calendar-goto-today "cal-move" ())
4457 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4458 (defvar calc-embedded-close-formula)
4459 (defvar calc-embedded-open-formula)
4460 (declare-function cdlatex-tab "ext:cdlatex" ())
4461 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4462 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4463 (defvar font-lock-unfontify-region-function)
4464 (declare-function iswitchb-read-buffer "iswitchb"
4465 (prompt &optional default require-match start matches-set))
4466 (defvar iswitchb-temp-buflist)
4467 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4468 (defvar org-agenda-tags-todo-honor-ignore-options)
4469 (declare-function org-agenda-skip "org-agenda" ())
4470 (declare-function
4471 org-agenda-format-item "org-agenda"
4472 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4473 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4474 (declare-function org-agenda-change-all-lines "org-agenda"
4475 (newhead hdmarker &optional fixface just-this))
4476 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4477 (declare-function org-agenda-maybe-redo "org-agenda" ())
4478 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4479 (beg end))
4480 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4481 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4482 "org-agenda" (&optional end))
4483 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4484 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4485 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4486 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4487 (declare-function org-indent-mode "org-indent" (&optional arg))
4488 (declare-function parse-time-string "parse-time" (string))
4489 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4490 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4491 (defvar remember-data-file)
4492 (defvar texmathp-why)
4493 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4494 (declare-function table--at-cell-p "table" (position &optional object at-column))
4495 (declare-function calc-eval "calc" (str &optional separator &rest args))
4497 ;;;###autoload
4498 (defun turn-on-orgtbl ()
4499 "Unconditionally turn on `orgtbl-mode'."
4500 (require 'org-table)
4501 (orgtbl-mode 1))
4503 (defun org-at-table-p (&optional table-type)
4504 "Return t if the cursor is inside an org-type table.
4505 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4506 (if org-enable-table-editor
4507 (save-excursion
4508 (beginning-of-line 1)
4509 (looking-at (if table-type org-table-any-line-regexp
4510 org-table-line-regexp)))
4511 nil))
4512 (defsubst org-table-p () (org-at-table-p))
4514 (defun org-at-table.el-p ()
4515 "Return t if and only if we are at a table.el table."
4516 (and (org-at-table-p 'any)
4517 (save-excursion
4518 (goto-char (org-table-begin 'any))
4519 (looking-at org-table1-hline-regexp))))
4521 (defun org-table-recognize-table.el ()
4522 "If there is a table.el table nearby, recognize it and move into it."
4523 (if org-table-tab-recognizes-table.el
4524 (if (org-at-table.el-p)
4525 (progn
4526 (beginning-of-line 1)
4527 (if (looking-at org-table-dataline-regexp)
4529 (if (looking-at org-table1-hline-regexp)
4530 (progn
4531 (beginning-of-line 2)
4532 (if (looking-at org-table-any-border-regexp)
4533 (beginning-of-line -1)))))
4534 (if (re-search-forward "|" (org-table-end t) t)
4535 (progn
4536 (require 'table)
4537 (if (table--at-cell-p (point))
4539 (message "recognizing table.el table...")
4540 (table-recognize-table)
4541 (message "recognizing table.el table...done")))
4542 (error "This should not happen"))
4544 nil)
4545 nil))
4547 (defun org-at-table-hline-p ()
4548 "Return t if the cursor is inside a hline in a table."
4549 (if org-enable-table-editor
4550 (save-excursion
4551 (beginning-of-line 1)
4552 (looking-at org-table-hline-regexp))
4553 nil))
4555 (defun org-table-map-tables (function &optional quietly)
4556 "Apply FUNCTION to the start of all tables in the buffer."
4557 (save-excursion
4558 (save-restriction
4559 (widen)
4560 (goto-char (point-min))
4561 (while (re-search-forward org-table-any-line-regexp nil t)
4562 (unless quietly
4563 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4564 (beginning-of-line 1)
4565 (when (and (looking-at org-table-line-regexp)
4566 ;; Exclude tables in src/example/verbatim/clocktable blocks
4567 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4568 (save-excursion (funcall function))
4569 (or (looking-at org-table-line-regexp)
4570 (forward-char 1)))
4571 (re-search-forward org-table-any-border-regexp nil 1))))
4572 (unless quietly (message "Mapping tables: done")))
4574 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4575 (declare-function org-clock-update-mode-line "org-clock" ())
4576 (declare-function org-resolve-clocks "org-clock"
4577 (&optional also-non-dangling-p prompt last-valid))
4579 (defun org-at-TBLFM-p (&optional pos)
4580 "Return t when point (or POS) is in #+TBLFM line."
4581 (save-excursion
4582 (let ((pos pos)))
4583 (goto-char (or pos (point)))
4584 (beginning-of-line 1)
4585 (looking-at org-TBLFM-regexp)))
4587 (defvar org-clock-start-time)
4588 (defvar org-clock-marker (make-marker)
4589 "Marker recording the last clock-in.")
4590 (defvar org-clock-hd-marker (make-marker)
4591 "Marker recording the last clock-in, but the headline position.")
4592 (defvar org-clock-heading ""
4593 "The heading of the current clock entry.")
4594 (defun org-clock-is-active ()
4595 "Return the buffer where the clock is currently running.
4596 Return nil if no clock is running."
4597 (marker-buffer org-clock-marker))
4599 (defun org-check-running-clock ()
4600 "Check if the current buffer contains the running clock.
4601 If yes, offer to stop it and to save the buffer with the changes."
4602 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4603 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4604 (buffer-name))))
4605 (org-clock-out)
4606 (when (y-or-n-p "Save changed buffer?")
4607 (save-buffer))))
4609 (defun org-clocktable-try-shift (dir n)
4610 "Check if this line starts a clock table, if yes, shift the time block."
4611 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4612 (org-clocktable-shift dir n)))
4614 ;;;###autoload
4615 (defun org-clock-persistence-insinuate ()
4616 "Set up hooks for clock persistence."
4617 (require 'org-clock)
4618 (add-hook 'org-mode-hook 'org-clock-load)
4619 (add-hook 'kill-emacs-hook 'org-clock-save))
4621 (defgroup org-archive nil
4622 "Options concerning archiving in Org-mode."
4623 :tag "Org Archive"
4624 :group 'org-structure)
4626 (defcustom org-archive-location "%s_archive::"
4627 "The location where subtrees should be archived.
4629 The value of this variable is a string, consisting of two parts,
4630 separated by a double-colon. The first part is a filename and
4631 the second part is a headline.
4633 When the filename is omitted, archiving happens in the same file.
4634 %s in the filename will be replaced by the current file
4635 name (without the directory part). Archiving to a different file
4636 is useful to keep archived entries from contributing to the
4637 Org-mode Agenda.
4639 The archived entries will be filed as subtrees of the specified
4640 headline. When the headline is omitted, the subtrees are simply
4641 filed away at the end of the file, as top-level entries. Also in
4642 the heading you can use %s to represent the file name, this can be
4643 useful when using the same archive for a number of different files.
4645 Here are a few examples:
4646 \"%s_archive::\"
4647 If the current file is Projects.org, archive in file
4648 Projects.org_archive, as top-level trees. This is the default.
4650 \"::* Archived Tasks\"
4651 Archive in the current file, under the top-level headline
4652 \"* Archived Tasks\".
4654 \"~/org/archive.org::\"
4655 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4657 \"~/org/archive.org::* From %s\"
4658 Archive in file ~/org/archive.org (absolute path), under headlines
4659 \"From FILENAME\" where file name is the current file name.
4661 \"~/org/datetree.org::datetree/* Finished Tasks\"
4662 The \"datetree/\" string is special, signifying to archive
4663 items to the datetree. Items are placed in either the CLOSED
4664 date of the item, or the current date if there is no CLOSED date.
4665 The heading will be a subentry to the current date. There doesn't
4666 need to be a heading, but there always needs to be a slash after
4667 datetree. For example, to store archived items directly in the
4668 datetree, use \"~/org/datetree.org::datetree/\".
4670 \"basement::** Finished Tasks\"
4671 Archive in file ./basement (relative path), as level 3 trees
4672 below the level 2 heading \"** Finished Tasks\".
4674 You may set this option on a per-file basis by adding to the buffer a
4675 line like
4677 #+ARCHIVE: basement::** Finished Tasks
4679 You may also define it locally for a subtree by setting an ARCHIVE property
4680 in the entry. If such a property is found in an entry, or anywhere up
4681 the hierarchy, it will be used."
4682 :group 'org-archive
4683 :type 'string)
4685 (defcustom org-agenda-skip-archived-trees t
4686 "Non-nil means the agenda will skip any items located in archived trees.
4687 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4688 variable is no longer recommended, you should leave it at the value t.
4689 Instead, use the key `v' to cycle the archives-mode in the agenda."
4690 :group 'org-archive
4691 :group 'org-agenda-skip
4692 :type 'boolean)
4694 (defcustom org-columns-skip-archived-trees t
4695 "Non-nil means ignore archived trees when creating column view."
4696 :group 'org-archive
4697 :group 'org-properties
4698 :type 'boolean)
4700 (defcustom org-cycle-open-archived-trees nil
4701 "Non-nil means `org-cycle' will open archived trees.
4702 An archived tree is a tree marked with the tag ARCHIVE.
4703 When nil, archived trees will stay folded. You can still open them with
4704 normal outline commands like `show-all', but not with the cycling commands."
4705 :group 'org-archive
4706 :group 'org-cycle
4707 :type 'boolean)
4709 (defcustom org-sparse-tree-open-archived-trees nil
4710 "Non-nil means sparse tree construction shows matches in archived trees.
4711 When nil, matches in these trees are highlighted, but the trees are kept in
4712 collapsed state."
4713 :group 'org-archive
4714 :group 'org-sparse-trees
4715 :type 'boolean)
4717 (defcustom org-sparse-tree-default-date-type nil
4718 "The default date type when building a sparse tree.
4719 When this is nil, a date is a scheduled or a deadline timestamp.
4720 Otherwise, these types are allowed:
4722 all: all timestamps
4723 active: only active timestamps (<...>)
4724 inactive: only inactive timestamps ([...])
4725 scheduled: only scheduled timestamps
4726 deadline: only deadline timestamps"
4727 :type '(choice (const :tag "Scheduled or deadline" nil)
4728 (const :tag "All timestamps" all)
4729 (const :tag "Only active timestamps" active)
4730 (const :tag "Only inactive timestamps" inactive)
4731 (const :tag "Only scheduled timestamps" scheduled)
4732 (const :tag "Only deadline timestamps" deadline)
4733 (const :tag "Only closed timestamps" closed))
4734 :version "25.1"
4735 :package-version '(Org . "8.3")
4736 :group 'org-sparse-trees)
4738 (defun org-cycle-hide-archived-subtrees (state)
4739 "Re-hide all archived subtrees after a visibility state change."
4740 (when (and (not org-cycle-open-archived-trees)
4741 (not (memq state '(overview folded))))
4742 (save-excursion
4743 (let* ((globalp (memq state '(contents all)))
4744 (beg (if globalp (point-min) (point)))
4745 (end (if globalp (point-max) (org-end-of-subtree t))))
4746 (org-hide-archived-subtrees beg end)
4747 (goto-char beg)
4748 (if (looking-at (concat ".*:" org-archive-tag ":"))
4749 (message "%s" (substitute-command-keys
4750 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4752 (defun org-force-cycle-archived ()
4753 "Cycle subtree even if it is archived."
4754 (interactive)
4755 (setq this-command 'org-cycle)
4756 (let ((org-cycle-open-archived-trees t))
4757 (call-interactively 'org-cycle)))
4759 (defun org-hide-archived-subtrees (beg end)
4760 "Re-hide all archived subtrees after a visibility state change."
4761 (org-with-wide-buffer
4762 (let ((case-fold-search nil)
4763 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4764 (goto-char beg)
4765 (while (and (< (point) end) (re-search-forward re end t))
4766 (when (member org-archive-tag (org-get-tags))
4767 (org-flag-subtree t)
4768 (org-end-of-subtree t))))))
4770 (declare-function outline-end-of-heading "outline" ())
4771 (declare-function outline-flag-region "outline" (from to flag))
4772 (defun org-flag-subtree (flag)
4773 (save-excursion
4774 (org-back-to-heading t)
4775 (outline-end-of-heading)
4776 (outline-flag-region (point)
4777 (progn (org-end-of-subtree t) (point))
4778 flag)))
4780 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4782 ;; Declare Column View Code
4784 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4785 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4786 (declare-function org-columns-compute "org-colview" (property))
4788 ;; Declare ID code
4790 (declare-function org-id-store-link "org-id")
4791 (declare-function org-id-locations-load "org-id")
4792 (declare-function org-id-locations-save "org-id")
4793 (defvar org-id-track-globally)
4795 ;;; Variables for pre-computed regular expressions, all buffer local
4797 (defvar org-todo-regexp nil
4798 "Matches any of the TODO state keywords.")
4799 (make-variable-buffer-local 'org-todo-regexp)
4800 (defvar org-not-done-regexp nil
4801 "Matches any of the TODO state keywords except the last one.")
4802 (make-variable-buffer-local 'org-not-done-regexp)
4803 (defvar org-not-done-heading-regexp nil
4804 "Matches a TODO headline that is not done.")
4805 (make-variable-buffer-local 'org-not-done-regexp)
4806 (defvar org-todo-line-regexp nil
4807 "Matches a headline and puts TODO state into group 2 if present.")
4808 (make-variable-buffer-local 'org-todo-line-regexp)
4809 (defvar org-complex-heading-regexp nil
4810 "Matches a headline and puts everything into groups:
4811 group 1: the stars
4812 group 2: The todo keyword, maybe
4813 group 3: Priority cookie
4814 group 4: True headline
4815 group 5: Tags")
4816 (make-variable-buffer-local 'org-complex-heading-regexp)
4817 (defvar org-complex-heading-regexp-format nil
4818 "Printf format to make regexp to match an exact headline.
4819 This regexp will match the headline of any node which has the
4820 exact headline text that is put into the format, but may have any
4821 TODO state, priority and tags.")
4822 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4823 (defvar org-todo-line-tags-regexp nil
4824 "Matches a headline and puts TODO state into group 2 if present.
4825 Also put tags into group 4 if tags are present.")
4826 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4828 (defconst org-plain-time-of-day-regexp
4829 (concat
4830 "\\(\\<[012]?[0-9]"
4831 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4832 "\\(--?"
4833 "\\(\\<[012]?[0-9]"
4834 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4835 "\\)?")
4836 "Regular expression to match a plain time or time range.
4837 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4838 groups carry important information:
4839 0 the full match
4840 1 the first time, range or not
4841 8 the second time, if it is a range.")
4843 (defconst org-plain-time-extension-regexp
4844 (concat
4845 "\\(\\<[012]?[0-9]"
4846 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4847 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4848 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4849 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4850 groups carry important information:
4851 0 the full match
4852 7 hours of duration
4853 9 minutes of duration")
4855 (defconst org-stamp-time-of-day-regexp
4856 (concat
4857 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4858 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4859 "\\(--?"
4860 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4861 "Regular expression to match a timestamp time or time range.
4862 After a match, the following groups carry important information:
4863 0 the full match
4864 1 date plus weekday, for back referencing to make sure both times are on the same day
4865 2 the first time, range or not
4866 4 the second time, if it is a range.")
4868 (defconst org-startup-options
4869 '(("fold" org-startup-folded t)
4870 ("overview" org-startup-folded t)
4871 ("nofold" org-startup-folded nil)
4872 ("showall" org-startup-folded nil)
4873 ("showeverything" org-startup-folded showeverything)
4874 ("content" org-startup-folded content)
4875 ("indent" org-startup-indented t)
4876 ("noindent" org-startup-indented nil)
4877 ("hidestars" org-hide-leading-stars t)
4878 ("showstars" org-hide-leading-stars nil)
4879 ("odd" org-odd-levels-only t)
4880 ("oddeven" org-odd-levels-only nil)
4881 ("align" org-startup-align-all-tables t)
4882 ("noalign" org-startup-align-all-tables nil)
4883 ("inlineimages" org-startup-with-inline-images t)
4884 ("noinlineimages" org-startup-with-inline-images nil)
4885 ("latexpreview" org-startup-with-latex-preview t)
4886 ("nolatexpreview" org-startup-with-latex-preview nil)
4887 ("customtime" org-display-custom-times t)
4888 ("logdone" org-log-done time)
4889 ("lognotedone" org-log-done note)
4890 ("nologdone" org-log-done nil)
4891 ("lognoteclock-out" org-log-note-clock-out t)
4892 ("nolognoteclock-out" org-log-note-clock-out nil)
4893 ("logrepeat" org-log-repeat state)
4894 ("lognoterepeat" org-log-repeat note)
4895 ("logdrawer" org-log-into-drawer t)
4896 ("nologdrawer" org-log-into-drawer nil)
4897 ("logstatesreversed" org-log-states-order-reversed t)
4898 ("nologstatesreversed" org-log-states-order-reversed nil)
4899 ("nologrepeat" org-log-repeat nil)
4900 ("logreschedule" org-log-reschedule time)
4901 ("lognotereschedule" org-log-reschedule note)
4902 ("nologreschedule" org-log-reschedule nil)
4903 ("logredeadline" org-log-redeadline time)
4904 ("lognoteredeadline" org-log-redeadline note)
4905 ("nologredeadline" org-log-redeadline nil)
4906 ("logrefile" org-log-refile time)
4907 ("lognoterefile" org-log-refile note)
4908 ("nologrefile" org-log-refile nil)
4909 ("fninline" org-footnote-define-inline t)
4910 ("nofninline" org-footnote-define-inline nil)
4911 ("fnlocal" org-footnote-section nil)
4912 ("fnauto" org-footnote-auto-label t)
4913 ("fnprompt" org-footnote-auto-label nil)
4914 ("fnconfirm" org-footnote-auto-label confirm)
4915 ("fnplain" org-footnote-auto-label plain)
4916 ("fnadjust" org-footnote-auto-adjust t)
4917 ("nofnadjust" org-footnote-auto-adjust nil)
4918 ("constcgs" constants-unit-system cgs)
4919 ("constSI" constants-unit-system SI)
4920 ("noptag" org-tag-persistent-alist nil)
4921 ("hideblocks" org-hide-block-startup t)
4922 ("nohideblocks" org-hide-block-startup nil)
4923 ("beamer" org-startup-with-beamer-mode t)
4924 ("entitiespretty" org-pretty-entities t)
4925 ("entitiesplain" org-pretty-entities nil))
4926 "Variable associated with STARTUP options for org-mode.
4927 Each element is a list of three items: the startup options (as written
4928 in the #+STARTUP line), the corresponding variable, and the value to set
4929 this variable to if the option is found. An optional forth element PUSH
4930 means to push this value onto the list in the variable.")
4932 (defcustom org-group-tags t
4933 "When non-nil (the default), use group tags.
4934 This can be turned on/off through `org-toggle-tags-groups'."
4935 :group 'org-tags
4936 :group 'org-startup
4937 :type 'boolean)
4939 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4941 (defun org-toggle-tags-groups ()
4942 "Toggle support for group tags.
4943 Support for group tags is controlled by the option
4944 `org-group-tags', which is non-nil by default."
4945 (interactive)
4946 (setq org-group-tags (not org-group-tags))
4947 (cond ((and (derived-mode-p 'org-agenda-mode)
4948 org-group-tags)
4949 (org-agenda-redo))
4950 ((derived-mode-p 'org-mode)
4951 (let ((org-inhibit-startup t)) (org-mode))))
4952 (message "Groups tags support has been turned %s"
4953 (if org-group-tags "on" "off")))
4955 (defun org-set-regexps-and-options (&optional tags-only)
4956 "Precompute regular expressions used in the current buffer.
4957 When optional argument TAGS-ONLY is non-nil, only compute tags
4958 related expressions."
4959 (when (derived-mode-p 'org-mode)
4960 (let ((alist (org--setup-collect-keywords
4961 (org-make-options-regexp
4962 (append '("FILETAGS" "TAGS" "SETUPFILE")
4963 (and (not tags-only)
4964 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4965 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4966 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4967 (org--setup-process-tags
4968 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4969 (unless tags-only
4970 ;; File properties.
4971 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4972 ;; Archive location.
4973 (let ((archive (cdr (assq 'archive alist))))
4974 (when archive (org-set-local 'org-archive-location archive)))
4975 ;; Category.
4976 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4977 (when cat
4978 (org-set-local 'org-category (intern cat))
4979 (org-set-local 'org-file-properties
4980 (org--update-property-plist
4981 "CATEGORY" cat org-file-properties))))
4982 ;; Columns.
4983 (let ((column (cdr (assq 'columns alist))))
4984 (when column (org-set-local 'org-columns-default-format column)))
4985 ;; Constants.
4986 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4987 ;; Link abbreviations.
4988 (let ((links (cdr (assq 'link alist))))
4989 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4990 ;; Priorities.
4991 (let ((priorities (cdr (assq 'priorities alist))))
4992 (when priorities
4993 (org-set-local 'org-highest-priority (nth 0 priorities))
4994 (org-set-local 'org-lowest-priority (nth 1 priorities))
4995 (org-set-local 'org-default-priority (nth 2 priorities))))
4996 ;; Scripts.
4997 (let ((scripts (assq 'scripts alist)))
4998 (when scripts
4999 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
5000 ;; Startup options.
5001 (let ((startup (cdr (assq 'startup alist))))
5002 (dolist (option startup)
5003 (let ((entry (assoc-string option org-startup-options t)))
5004 (when entry
5005 (let ((var (nth 1 entry))
5006 (val (nth 2 entry)))
5007 (if (not (nth 3 entry)) (org-set-local var val)
5008 (unless (listp (symbol-value var))
5009 (org-set-local var nil))
5010 (add-to-list var val)))))))
5011 ;; TODO keywords.
5012 (org-set-local 'org-todo-kwd-alist nil)
5013 (org-set-local 'org-todo-key-alist nil)
5014 (org-set-local 'org-todo-key-trigger nil)
5015 (org-set-local 'org-todo-keywords-1 nil)
5016 (org-set-local 'org-done-keywords nil)
5017 (org-set-local 'org-todo-heads nil)
5018 (org-set-local 'org-todo-sets nil)
5019 (org-set-local 'org-todo-log-states nil)
5020 (let ((todo-sequences
5021 (or (nreverse (cdr (assq 'todo alist)))
5022 (let ((d (default-value 'org-todo-keywords)))
5023 (if (not (stringp (car d))) d
5024 ;; XXX: Backward compatibility code.
5025 (list (cons org-todo-interpretation d)))))))
5026 (dolist (sequence todo-sequences)
5027 (let* ((sequence (or (run-hook-with-args-until-success
5028 'org-todo-setup-filter-hook sequence)
5029 sequence))
5030 (sequence-type (car sequence))
5031 (keywords (cdr sequence))
5032 (sep (member "|" keywords))
5033 names alist)
5034 (dolist (k (remove "|" keywords))
5035 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5037 (error "Invalid TODO keyword %s" k))
5038 (let ((name (match-string 1 k))
5039 (key (match-string 2 k))
5040 (log (org-extract-log-state-settings k)))
5041 (push name names)
5042 (push (cons name (and key (string-to-char key))) alist)
5043 (when log (push log org-todo-log-states))))
5044 (let* ((names (nreverse names))
5045 (done (if sep (org-remove-keyword-keys (cdr sep))
5046 (last names)))
5047 (head (car names))
5048 (tail (list sequence-type head (car done) (org-last done))))
5049 (add-to-list 'org-todo-heads head 'append)
5050 (push names org-todo-sets)
5051 (setq org-done-keywords (append org-done-keywords done nil))
5052 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5053 (setq org-todo-key-alist
5054 (append org-todo-key-alist
5055 (and alist
5056 (append '((:startgroup))
5057 (nreverse alist)
5058 '((:endgroup))))))
5059 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5060 (setq org-todo-sets (nreverse org-todo-sets)
5061 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5062 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5063 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5064 ;; Compute the regular expressions and other local variables.
5065 ;; Using `org-outline-regexp-bol' would complicate them much,
5066 ;; because of the fixed white space at the end of that string.
5067 (if (not org-done-keywords)
5068 (setq org-done-keywords
5069 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5070 (setq org-not-done-keywords
5071 (org-delete-all org-done-keywords
5072 (copy-sequence org-todo-keywords-1))
5073 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5074 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5075 org-not-done-heading-regexp
5076 (format org-heading-keyword-regexp-format org-not-done-regexp)
5077 org-todo-line-regexp
5078 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5079 org-complex-heading-regexp
5080 (concat "^\\(\\*+\\)"
5081 "\\(?: +" org-todo-regexp "\\)?"
5082 "\\(?: +\\(\\[#.\\]\\)\\)?"
5083 "\\(?: +\\(.*?\\)\\)??"
5084 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5085 "[ \t]*$")
5086 org-complex-heading-regexp-format
5087 (concat "^\\(\\*+\\)"
5088 "\\(?: +" org-todo-regexp "\\)?"
5089 "\\(?: +\\(\\[#.\\]\\)\\)?"
5090 "\\(?: +"
5091 ;; Stats cookies can be stuck to body.
5092 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5093 "\\(%s\\)"
5094 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5095 "\\)"
5096 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5097 "[ \t]*$")
5098 org-todo-line-tags-regexp
5099 (concat "^\\(\\*+\\)"
5100 "\\(?: +" org-todo-regexp "\\)?"
5101 "\\(?: +\\(.*?\\)\\)??"
5102 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5103 "[ \t]*$"))
5104 (org-compute-latex-and-related-regexp)))))
5106 (defun org--setup-collect-keywords (regexp &optional files alist)
5107 "Return setup keywords values as an alist.
5109 REGEXP matches a subset of setup keywords. FILES is a list of
5110 file names already visited. It is used to avoid circular setup
5111 files. ALIST, when non-nil, is the alist computed so far.
5113 Return value contains the following keys: `archive', `category',
5114 `columns', `constants', `filetags', `link', `priorities',
5115 `property', `scripts', `startup', `tags' and `todo'."
5116 (org-with-wide-buffer
5117 (goto-char (point-min))
5118 (let ((case-fold-search t))
5119 (while (re-search-forward regexp nil t)
5120 (let ((element (org-element-at-point)))
5121 (when (eq (org-element-type element) 'keyword)
5122 (let ((key (org-element-property :key element))
5123 (value (org-element-property :value element)))
5124 (cond
5125 ((equal key "ARCHIVE")
5126 (when (org-string-nw-p value)
5127 (push (cons 'archive value) alist)))
5128 ((equal key "CATEGORY") (push (cons 'category value) alist))
5129 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5130 ((equal key "CONSTANTS")
5131 (let* ((constants (assq 'constants alist))
5132 (store (cdr constants)))
5133 (dolist (pair (org-split-string value))
5134 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5135 pair)
5136 (let* ((name (match-string 1 pair))
5137 (value (match-string 2 pair))
5138 (old (assoc name store)))
5139 (if old (setcdr old value)
5140 (push (cons name value) store)))))
5141 (if constants (setcdr constants store)
5142 (push (cons 'constants store) alist))))
5143 ((equal key "FILETAGS")
5144 (when (org-string-nw-p value)
5145 (let ((old (assq 'filetags alist))
5146 (new (apply #'nconc
5147 (mapcar (lambda (x) (org-split-string x ":"))
5148 (org-split-string value)))))
5149 (if old (setcdr old (append new (cdr old)))
5150 (push (cons 'filetags new) alist)))))
5151 ((equal key "LINK")
5152 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5153 (let ((links (assq 'link alist))
5154 (pair (cons (org-match-string-no-properties 1 value)
5155 (org-match-string-no-properties 2 value))))
5156 (if links (push pair (cdr links))
5157 (push (list 'link pair) alist)))))
5158 ((equal key "OPTIONS")
5159 (when (and (org-string-nw-p value)
5160 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5161 (push (cons 'scripts (read (match-string 1 value))) alist)))
5162 ((equal key "PRIORITIES")
5163 (push (cons 'priorities
5164 (let ((prio (org-split-string value)))
5165 (if (< (length prio) 3) '(?A ?C ?B)
5166 (mapcar #'string-to-char prio))))
5167 alist))
5168 ((equal key "PROPERTY")
5169 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5170 (let* ((property (assq 'property alist))
5171 (value (org--update-property-plist
5172 (org-match-string-no-properties 1 value)
5173 (org-match-string-no-properties 2 value)
5174 (cdr property))))
5175 (if property (setcdr property value)
5176 (push (cons 'property value) alist)))))
5177 ((equal key "STARTUP")
5178 (let ((startup (assq 'startup alist)))
5179 (if startup
5180 (setcdr startup
5181 (append (cdr startup) (org-split-string value)))
5182 (push (cons 'startup (org-split-string value)) alist))))
5183 ((equal key "TAGS")
5184 (let ((tag-cell (assq 'tags alist)))
5185 (if tag-cell
5186 (setcdr tag-cell
5187 (append (cdr tag-cell)
5188 '("\\n")
5189 (org-split-string value)))
5190 (push (cons 'tags (org-split-string value)) alist))))
5191 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5192 (let ((todo (assq 'todo alist))
5193 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5194 (org-split-string value))))
5195 (if todo (push value (cdr todo))
5196 (push (list 'todo value) alist))))
5197 ((equal key "SETUPFILE")
5198 (unless buffer-read-only ; Do not check in Gnus messages.
5199 (let ((f (and (org-string-nw-p value)
5200 (expand-file-name
5201 (org-remove-double-quotes value)))))
5202 (when (and f (file-readable-p f) (not (member f files)))
5203 (with-temp-buffer
5204 (insert-file-contents f)
5205 (setq alist
5206 ;; Fake Org mode to benefit from cache
5207 ;; without recurring needlessly.
5208 (let ((major-mode 'org-mode))
5209 (org--setup-collect-keywords
5210 regexp (cons f files) alist)))))))))))))))
5211 alist)
5213 (defun org--setup-process-tags (tags filetags)
5214 "Precompute variables used for tags.
5215 TAGS is a list of tags and tag group symbols, as strings.
5216 FILETAGS is a list of tags, as strings."
5217 ;; Process the file tags.
5218 (org-set-local 'org-file-tags
5219 (mapcar #'org-add-prop-inherited filetags))
5220 ;; Provide default tags if no local tags are found.
5221 (when (and (not tags) org-tag-alist)
5222 (setq tags
5223 (mapcar (lambda (tag)
5224 (case (car tag)
5225 (:startgroup "{")
5226 (:endgroup "}")
5227 (:startgrouptag "[")
5228 (:endgrouptag "]")
5229 (:grouptags ":")
5230 (:newline "\\n")
5231 (otherwise (concat (car tag)
5232 (and (characterp (cdr tag))
5233 (format "(%c)" (cdr tag)))))))
5234 org-tag-alist)))
5235 ;; Process the tags.
5236 (org-set-local 'org-tag-groups-alist nil)
5237 (org-set-local 'org-tag-alist nil)
5238 (let (group-flag)
5239 (while tags
5240 (let ((e (car tags)))
5241 (setq tags (cdr tags))
5242 (cond
5243 ((equal e "{")
5244 (push '(:startgroup) org-tag-alist)
5245 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5246 ((equal e "}")
5247 (push '(:endgroup) org-tag-alist)
5248 (setq group-flag nil))
5249 ((equal e "[")
5250 (push '(:startgrouptag) org-tag-alist)
5251 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5252 ((equal e "]")
5253 (push '(:endgrouptag) org-tag-alist)
5254 (setq group-flag nil))
5255 ((equal e ":")
5256 (push '(:grouptags) org-tag-alist)
5257 (setq group-flag 'append))
5258 ((equal e "\\n") (push '(:newline) org-tag-alist))
5259 ((string-match
5260 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5261 "\\|{.+?}\\)" ; regular expression
5262 "\\(?:(\\(.\\))\\)?\\'")) e)
5263 (let ((tag (match-string 1 e))
5264 (key (and (match-beginning 2)
5265 (string-to-char (match-string 2 e)))))
5266 (cond ((eq group-flag 'append)
5267 (setcar org-tag-groups-alist
5268 (append (car org-tag-groups-alist) (list tag))))
5269 (group-flag (push (list tag) org-tag-groups-alist)))
5270 ;; Push all tags in groups, no matter if they already exist.
5271 (unless (and (not group-flag) (assoc tag org-tag-alist))
5272 (push (cons tag key) org-tag-alist))))))))
5273 (setq org-tag-alist (nreverse org-tag-alist)))
5275 (defun org-file-contents (file &optional noerror)
5276 "Return the contents of FILE, as a string."
5277 (if (and file (file-readable-p file))
5278 (with-temp-buffer
5279 (insert-file-contents file)
5280 (buffer-string))
5281 (funcall (if noerror 'message 'error)
5282 "Cannot read file \"%s\"%s"
5283 file
5284 (let ((from (buffer-file-name (buffer-base-buffer))))
5285 (if from (concat " (referenced in file \"" from "\")") "")))))
5287 (defun org-extract-log-state-settings (x)
5288 "Extract the log state setting from a TODO keyword string.
5289 This will extract info from a string like \"WAIT(w@/!)\"."
5290 (let (kw key log1 log2)
5291 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5292 (setq kw (match-string 1 x)
5293 key (and (match-end 2) (match-string 2 x))
5294 log1 (and (match-end 3) (match-string 3 x))
5295 log2 (and (match-end 4) (match-string 4 x)))
5296 (and (or log1 log2)
5297 (list kw
5298 (and log1 (if (equal log1 "!") 'time 'note))
5299 (and log2 (if (equal log2 "!") 'time 'note)))))))
5301 (defun org-remove-keyword-keys (list)
5302 "Remove a pair of parenthesis at the end of each string in LIST."
5303 (mapcar (lambda (x)
5304 (if (string-match "(.*)$" x)
5305 (substring x 0 (match-beginning 0))
5307 list))
5309 (defun org-assign-fast-keys (alist)
5310 "Assign fast keys to a keyword-key alist.
5311 Respect keys that are already there."
5312 (let (new e (alt ?0))
5313 (while (setq e (pop alist))
5314 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5315 (cdr e)) ;; Key already assigned.
5316 (push e new)
5317 (let ((clist (string-to-list (downcase (car e))))
5318 (used (append new alist)))
5319 (when (= (car clist) ?@)
5320 (pop clist))
5321 (while (and clist (rassoc (car clist) used))
5322 (pop clist))
5323 (unless clist
5324 (while (rassoc alt used)
5325 (incf alt)))
5326 (push (cons (car e) (or (car clist) alt)) new))))
5327 (nreverse new)))
5329 ;;; Some variables used in various places
5331 (defvar org-window-configuration nil
5332 "Used in various places to store a window configuration.")
5333 (defvar org-selected-window nil
5334 "Used in various places to store a window configuration.")
5335 (defvar org-finish-function nil
5336 "Function to be called when `C-c C-c' is used.
5337 This is for getting out of special buffers like capture.")
5340 ;; FIXME: Occasionally check by commenting these, to make sure
5341 ;; no other functions uses these, forgetting to let-bind them.
5342 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5343 (defvar org-last-state)
5344 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5346 ;; Defined somewhere in this file, but used before definition.
5347 (defvar org-entities) ;; defined in org-entities.el
5348 (defvar org-struct-menu)
5349 (defvar org-org-menu)
5350 (defvar org-tbl-menu)
5352 ;;;; Define the Org-mode
5354 ;; We use a before-change function to check if a table might need
5355 ;; an update.
5356 (defvar org-table-may-need-update t
5357 "Indicates that a table might need an update.
5358 This variable is set by `org-before-change-function'.
5359 `org-table-align' sets it back to nil.")
5360 (defun org-before-change-function (beg end)
5361 "Every change indicates that a table might need an update."
5362 (setq org-table-may-need-update t))
5363 (defvar org-mode-map)
5364 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5365 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5366 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5367 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5368 (defvar org-table-buffer-is-an nil)
5370 (defvar bidi-paragraph-direction)
5371 (defvar buffer-face-mode-face)
5373 (require 'outline)
5374 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5375 (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"))
5376 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5378 ;; Other stuff we need.
5379 (require 'time-date)
5380 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5381 (require 'easymenu)
5382 (require 'overlay)
5384 ;; (require 'org-macs) moved higher up in the file before it is first used
5385 (require 'org-entities)
5386 ;; (require 'org-compat) moved higher up in the file before it is first used
5387 (require 'org-faces)
5388 (require 'org-list)
5389 (require 'org-pcomplete)
5390 (require 'org-src)
5391 (require 'org-footnote)
5392 (require 'org-macro)
5394 ;; babel
5395 (require 'ob)
5397 ;;;###autoload
5398 (define-derived-mode org-mode outline-mode "Org"
5399 "Outline-based notes management and organizer, alias
5400 \"Carsten's outline-mode for keeping track of everything.\"
5402 Org-mode develops organizational tasks around a NOTES file which
5403 contains information about projects as plain text. Org-mode is
5404 implemented on top of outline-mode, which is ideal to keep the content
5405 of large files well structured. It supports ToDo items, deadlines and
5406 time stamps, which magically appear in the diary listing of the Emacs
5407 calendar. Tables are easily created with a built-in table editor.
5408 Plain text URL-like links connect to websites, emails (VM), Usenet
5409 messages (Gnus), BBDB entries, and any files related to the project.
5410 For printing and sharing of notes, an Org-mode file (or a part of it)
5411 can be exported as a structured ASCII or HTML file.
5413 The following commands are available:
5415 \\{org-mode-map}"
5417 ;; Get rid of Outline menus, they are not needed
5418 ;; Need to do this here because define-derived-mode sets up
5419 ;; the keymap so late. Still, it is a waste to call this each time
5420 ;; we switch another buffer into org-mode.
5421 (if (featurep 'xemacs)
5422 (when (boundp 'outline-mode-menu-heading)
5423 ;; Assume this is Greg's port, it uses easymenu
5424 (easy-menu-remove outline-mode-menu-heading)
5425 (easy-menu-remove outline-mode-menu-show)
5426 (easy-menu-remove outline-mode-menu-hide))
5427 (define-key org-mode-map [menu-bar headings] 'undefined)
5428 (define-key org-mode-map [menu-bar hide] 'undefined)
5429 (define-key org-mode-map [menu-bar show] 'undefined))
5431 (org-load-modules-maybe)
5432 (easy-menu-add org-org-menu)
5433 (easy-menu-add org-tbl-menu)
5434 (org-install-agenda-files-menu)
5435 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5436 (add-to-invisibility-spec '(org-cwidth))
5437 (add-to-invisibility-spec '(org-hide-block . t))
5438 (when (featurep 'xemacs)
5439 (org-set-local 'line-move-ignore-invisible t))
5440 (org-set-local 'outline-regexp org-outline-regexp)
5441 (org-set-local 'outline-level 'org-outline-level)
5442 (setq bidi-paragraph-direction 'left-to-right)
5443 (when (and org-ellipsis
5444 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5445 (fboundp 'make-glyph-code))
5446 (unless org-display-table
5447 (setq org-display-table (make-display-table)))
5448 (set-display-table-slot
5449 org-display-table 4
5450 (vconcat (mapcar
5451 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5452 org-ellipsis)))
5453 (if (stringp org-ellipsis) org-ellipsis "..."))))
5454 (setq buffer-display-table org-display-table))
5455 (org-set-regexps-and-options)
5456 (org-set-font-lock-defaults)
5457 (when (and org-tag-faces (not org-tags-special-faces-re))
5458 ;; tag faces set outside customize.... force initialization.
5459 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5460 ;; Calc embedded
5461 (org-set-local 'calc-embedded-open-mode "# ")
5462 ;; Modify a few syntax entries
5463 (modify-syntax-entry ?@ "w")
5464 (modify-syntax-entry ?\" "\"")
5465 (modify-syntax-entry ?\\ "_")
5466 (modify-syntax-entry ?~ "_")
5467 (if org-startup-truncated (setq truncate-lines t))
5468 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5469 (org-set-local 'font-lock-unfontify-region-function
5470 'org-unfontify-region)
5471 ;; Activate before-change-function
5472 (org-set-local 'org-table-may-need-update t)
5473 (org-add-hook 'before-change-functions 'org-before-change-function nil
5474 'local)
5475 ;; Check for running clock before killing a buffer
5476 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5477 ;; Initialize macros templates.
5478 (org-macro-initialize-templates)
5479 ;; Initialize radio targets.
5480 (org-update-radio-target-regexp)
5481 ;; Indentation.
5482 (org-set-local 'indent-line-function 'org-indent-line)
5483 (org-set-local 'indent-region-function 'org-indent-region)
5484 ;; Filling and auto-filling.
5485 (org-setup-filling)
5486 ;; Comments.
5487 (org-setup-comments-handling)
5488 ;; Initialize cache.
5489 (org-element-cache-reset)
5490 ;; Beginning/end of defun
5491 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5492 (org-set-local 'end-of-defun-function
5493 (lambda ()
5494 (if (not (org-at-heading-p))
5495 (org-forward-element)
5496 (org-forward-element)
5497 (forward-char -1))))
5498 ;; Next error for sparse trees
5499 (org-set-local 'next-error-function 'org-occur-next-match)
5500 ;; Make sure dependence stuff works reliably, even for users who set it
5501 ;; too late :-(
5502 (if org-enforce-todo-dependencies
5503 (add-hook 'org-blocker-hook
5504 'org-block-todo-from-children-or-siblings-or-parent)
5505 (remove-hook 'org-blocker-hook
5506 'org-block-todo-from-children-or-siblings-or-parent))
5507 (if org-enforce-todo-checkbox-dependencies
5508 (add-hook 'org-blocker-hook
5509 'org-block-todo-from-checkboxes)
5510 (remove-hook 'org-blocker-hook
5511 'org-block-todo-from-checkboxes))
5513 ;; Align options lines
5514 (org-set-local
5515 'align-mode-rules-list
5516 '((org-in-buffer-settings
5517 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5518 (modes . '(org-mode)))))
5520 ;; Imenu
5521 (org-set-local 'imenu-create-index-function
5522 'org-imenu-get-tree)
5524 ;; Make isearch reveal context
5525 (if (or (featurep 'xemacs)
5526 (not (boundp 'outline-isearch-open-invisible-function)))
5527 ;; Emacs 21 and XEmacs make use of the hook
5528 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5529 ;; Emacs 22 deals with this through a special variable
5530 (org-set-local 'outline-isearch-open-invisible-function
5531 (lambda (&rest ignore) (org-show-context 'isearch))))
5533 ;; Setup the pcomplete hooks
5534 (set (make-local-variable 'pcomplete-command-completion-function)
5535 'org-pcomplete-initial)
5536 (set (make-local-variable 'pcomplete-command-name-function)
5537 'org-command-at-point)
5538 (set (make-local-variable 'pcomplete-default-completion-function)
5539 'ignore)
5540 (set (make-local-variable 'pcomplete-parse-arguments-function)
5541 'org-parse-arguments)
5542 (set (make-local-variable 'pcomplete-termination-string) "")
5543 (when (>= emacs-major-version 23)
5544 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5546 ;; If empty file that did not turn on org-mode automatically, make it to.
5547 (if (and org-insert-mode-line-in-empty-file
5548 (org-called-interactively-p 'any)
5549 (= (point-min) (point-max)))
5550 (insert "# -*- mode: org -*-\n\n"))
5551 (unless org-inhibit-startup
5552 (org-unmodified
5553 (and org-startup-with-beamer-mode (org-beamer-mode))
5554 (when org-startup-align-all-tables
5555 (org-table-map-tables 'org-table-align 'quietly))
5556 (when org-startup-with-inline-images
5557 (org-display-inline-images))
5558 (when org-startup-with-latex-preview
5559 (org-toggle-latex-fragment))
5560 (unless org-inhibit-startup-visibility-stuff
5561 (org-set-startup-visibility))
5562 (org-refresh-effort-properties)))
5563 ;; Try to set org-hide correctly
5564 (let ((foreground (org-find-invisible-foreground)))
5565 (if foreground
5566 (set-face-foreground 'org-hide foreground))))
5568 ;; Update `customize-package-emacs-version-alist'
5569 (add-to-list 'customize-package-emacs-version-alist
5570 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5571 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5572 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5574 (defvar org-mode-transpose-word-syntax-table
5575 (let ((st (make-syntax-table text-mode-syntax-table)))
5576 (mapc (lambda(c) (modify-syntax-entry
5577 (string-to-char (car c)) "w p" st))
5578 org-emphasis-alist)
5579 st))
5581 (when (fboundp 'abbrev-table-put)
5582 (abbrev-table-put org-mode-abbrev-table
5583 :parents (list text-mode-abbrev-table)))
5585 (defun org-find-invisible-foreground ()
5586 (let ((candidates (remove
5587 "unspecified-bg"
5588 (nconc
5589 (list (face-background 'default)
5590 (face-background 'org-default))
5591 (mapcar
5592 (lambda (alist)
5593 (when (boundp alist)
5594 (cdr (assoc 'background-color (symbol-value alist)))))
5595 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5596 (list (face-foreground 'org-hide))))))
5597 (car (remove nil candidates))))
5599 (defun org-current-time (&optional rounding-minutes past)
5600 "Current time, possibly rounded to ROUNDING-MINUTES.
5601 When ROUNDING-MINUTES is not an integer, fall back on the car of
5602 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5603 the rounding returns a past time."
5604 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5605 (car org-time-stamp-rounding-minutes)))
5606 (time (decode-time)) res)
5607 (if (< r 1)
5608 (current-time)
5609 (setq res
5610 (apply 'encode-time
5611 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5612 (nthcdr 2 time))))
5613 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5614 (seconds-to-time (- (org-float-time res) (* r 60)))
5615 res))))
5617 (defun org-today ()
5618 "Return today date, considering `org-extend-today-until'."
5619 (time-to-days
5620 (time-subtract (current-time)
5621 (list 0 (* 3600 org-extend-today-until) 0))))
5623 ;;;; Font-Lock stuff, including the activators
5625 (defvar org-mouse-map (make-sparse-keymap))
5626 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5627 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5628 (when org-mouse-1-follows-link
5629 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5630 (when org-tab-follows-link
5631 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5632 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5634 (require 'font-lock)
5636 (defconst org-non-link-chars "]\t\n\r<>")
5637 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5638 "file+sys" "news" "shell" "elisp" "doi" "message"
5639 "help"))
5640 (defvar org-link-types-re nil
5641 "Matches a link that has a url-like prefix like \"http:\"")
5642 (defvar org-link-re-with-space nil
5643 "Matches a link with spaces, optional angular brackets around it.")
5644 (defvar org-link-re-with-space2 nil
5645 "Matches a link with spaces, optional angular brackets around it.")
5646 (defvar org-link-re-with-space3 nil
5647 "Matches a link with spaces, only for internal part in bracket links.")
5648 (defvar org-angle-link-re nil
5649 "Matches link with angular brackets, spaces are allowed.")
5650 (defvar org-plain-link-re nil
5651 "Matches plain link, without spaces.")
5652 (defvar org-bracket-link-regexp nil
5653 "Matches a link in double brackets.")
5654 (defvar org-bracket-link-analytic-regexp nil
5655 "Regular expression used to analyze links.
5656 Here is what the match groups contain after a match:
5657 1: http:
5658 2: http
5659 3: path
5660 4: [desc]
5661 5: desc")
5662 (defvar org-bracket-link-analytic-regexp++ nil
5663 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5664 (defvar org-any-link-re nil
5665 "Regular expression matching any link.")
5667 (defconst org-match-sexp-depth 3
5668 "Number of stacked braces for sub/superscript matching.")
5670 (defun org-create-multibrace-regexp (left right n)
5671 "Create a regular expression which will match a balanced sexp.
5672 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5673 as single character strings.
5674 The regexp returned will match the entire expression including the
5675 delimiters. It will also define a single group which contains the
5676 match except for the outermost delimiters. The maximum depth of
5677 stacked delimiters is N. Escaping delimiters is not possible."
5678 (let* ((nothing (concat "[^" left right "]*?"))
5679 (or "\\|")
5680 (re nothing)
5681 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5682 (while (> n 1)
5683 (setq n (1- n)
5684 re (concat re or next)
5685 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5686 (concat left "\\(" re "\\)" right)))
5688 (defconst org-match-substring-regexp
5689 (concat
5690 "\\(\\S-\\)\\([_^]\\)\\("
5691 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5692 "\\|"
5693 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5694 "\\|"
5695 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5696 "The regular expression matching a sub- or superscript.")
5698 (defconst org-match-substring-with-braces-regexp
5699 (concat
5700 "\\(\\S-\\)\\([_^]\\)"
5701 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5702 "The regular expression matching a sub- or superscript, forcing braces.")
5704 (defun org-make-link-regexps ()
5705 "Update the link regular expressions.
5706 This should be called after the variable `org-link-types' has changed."
5707 (let ((types-re (regexp-opt org-link-types t)))
5708 (setq org-link-types-re
5709 (concat "\\`" types-re ":")
5710 org-link-re-with-space
5711 (concat "<?" types-re ":"
5712 "\\([^" org-non-link-chars " ]"
5713 "[^" org-non-link-chars "]*"
5714 "[^" org-non-link-chars " ]\\)>?")
5715 org-link-re-with-space2
5716 (concat "<?" types-re ":"
5717 "\\([^" org-non-link-chars " ]"
5718 "[^\t\n\r]*"
5719 "[^" org-non-link-chars " ]\\)>?")
5720 org-link-re-with-space3
5721 (concat "<?" types-re ":"
5722 "\\([^" org-non-link-chars " ]"
5723 "[^\t\n\r]*\\)")
5724 org-angle-link-re
5725 (concat "<" types-re ":"
5726 "\\([^" org-non-link-chars " ]"
5727 "[^" org-non-link-chars "]*"
5728 "\\)>")
5729 org-plain-link-re
5730 (concat
5731 "\\<" types-re ":"
5732 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5733 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5734 org-bracket-link-regexp
5735 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5736 org-bracket-link-analytic-regexp
5737 (concat
5738 "\\[\\["
5739 "\\(" types-re ":\\)?"
5740 "\\([^]]+\\)"
5741 "\\]"
5742 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5743 "\\]")
5744 org-bracket-link-analytic-regexp++
5745 (concat
5746 "\\[\\["
5747 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5748 "\\([^]]+\\)"
5749 "\\]"
5750 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5751 "\\]")
5752 org-any-link-re
5753 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5754 org-angle-link-re "\\)\\|\\("
5755 org-plain-link-re "\\)"))))
5757 (org-make-link-regexps)
5759 (defvar org-emph-face nil)
5761 (defun org-do-emphasis-faces (limit)
5762 "Run through the buffer and emphasize strings."
5763 (let (rtn a)
5764 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5765 (let* ((border (char-after (match-beginning 3)))
5766 (bre (regexp-quote (char-to-string border))))
5767 (if (and (not (= border (char-after (match-beginning 4))))
5768 (not (save-match-data
5769 (string-match (concat bre ".*" bre)
5770 (replace-regexp-in-string
5771 "\n" " "
5772 (substring (match-string 2) 1 -1))))))
5773 (progn
5774 (setq rtn t)
5775 (setq a (assoc (match-string 3) org-emphasis-alist))
5776 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5777 'face
5778 (nth 1 a))
5779 (and (nth 2 a)
5780 (org-remove-flyspell-overlays-in
5781 (match-beginning 0) (match-end 0)))
5782 (add-text-properties (match-beginning 2) (match-end 2)
5783 '(font-lock-multiline t org-emphasis t))
5784 (when org-hide-emphasis-markers
5785 (add-text-properties (match-end 4) (match-beginning 5)
5786 '(invisible org-link))
5787 (add-text-properties (match-beginning 3) (match-end 3)
5788 '(invisible org-link))))))
5789 (goto-char (1+ (match-beginning 0))))
5790 rtn))
5792 (defun org-emphasize (&optional char)
5793 "Insert or change an emphasis, i.e. a font like bold or italic.
5794 If there is an active region, change that region to a new emphasis.
5795 If there is no region, just insert the marker characters and position
5796 the cursor between them.
5797 CHAR should be the marker character. If it is a space, it means to
5798 remove the emphasis of the selected region.
5799 If CHAR is not given (for example in an interactive call) it will be
5800 prompted for."
5801 (interactive)
5802 (let ((erc org-emphasis-regexp-components)
5803 (prompt "")
5804 (string "") beg end move c s)
5805 (if (org-region-active-p)
5806 (setq beg (region-beginning) end (region-end)
5807 string (buffer-substring beg end))
5808 (setq move t))
5810 (unless char
5811 (message "Emphasis marker or tag: [%s]"
5812 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5813 (setq char (read-char-exclusive)))
5814 (if (equal char ?\ )
5815 (setq s "" move nil)
5816 (unless (assoc (char-to-string char) org-emphasis-alist)
5817 (user-error "No such emphasis marker: \"%c\"" char))
5818 (setq s (char-to-string char)))
5819 (while (and (> (length string) 1)
5820 (equal (substring string 0 1) (substring string -1))
5821 (assoc (substring string 0 1) org-emphasis-alist))
5822 (setq string (substring string 1 -1)))
5823 (setq string (concat s string s))
5824 (if beg (delete-region beg end))
5825 (unless (or (bolp)
5826 (string-match (concat "[" (nth 0 erc) "\n]")
5827 (char-to-string (char-before (point)))))
5828 (insert " "))
5829 (unless (or (eobp)
5830 (string-match (concat "[" (nth 1 erc) "\n]")
5831 (char-to-string (char-after (point)))))
5832 (insert " ") (backward-char 1))
5833 (insert string)
5834 (and move (backward-char 1))))
5836 (defconst org-nonsticky-props
5837 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5839 (defsubst org-rear-nonsticky-at (pos)
5840 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5842 (defun org-activate-plain-links (limit)
5843 "Add link properties for plain links."
5844 (let (f hl)
5845 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5846 (not (member 'org-tag
5847 (get-text-property (1- (match-beginning 0)) 'face)))
5848 (not (org-in-src-block-p)))
5849 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5850 (setq f (get-text-property (match-beginning 0) 'face))
5851 (setq hl (org-match-string-no-properties 0))
5852 (if (or (eq f 'org-tag)
5853 (and (listp f) (memq 'org-tag f)))
5855 (add-text-properties (match-beginning 0) (match-end 0)
5856 (list 'mouse-face 'highlight
5857 'face 'org-link
5858 'htmlize-link `(:uri ,hl)
5859 'keymap org-mouse-map))
5860 (org-rear-nonsticky-at (match-end 0)))
5861 t)))
5863 (defun org-activate-code (limit)
5864 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5865 (progn
5866 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5867 (remove-text-properties (match-beginning 0) (match-end 0)
5868 '(display t invisible t intangible t))
5869 t)))
5871 (defcustom org-src-fontify-natively t
5872 "When non-nil, fontify code in code blocks."
5873 :type 'boolean
5874 :version "24.4"
5875 :package-version '(Org . "8.3")
5876 :group 'org-appearance
5877 :group 'org-babel)
5879 (defcustom org-allow-promoting-top-level-subtree nil
5880 "When non-nil, allow promoting a top level subtree.
5881 The leading star of the top level headline will be replaced
5882 by a #."
5883 :type 'boolean
5884 :version "24.1"
5885 :group 'org-appearance)
5887 (defun org-fontify-meta-lines-and-blocks (limit)
5888 (condition-case nil
5889 (org-fontify-meta-lines-and-blocks-1 limit)
5890 (error (message "org-mode fontification error"))))
5892 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5893 "Fontify #+ lines and blocks."
5894 (let ((case-fold-search t))
5895 (if (re-search-forward
5896 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5897 limit t)
5898 (let ((beg (match-beginning 0))
5899 (block-start (match-end 0))
5900 (block-end nil)
5901 (lang (match-string 7))
5902 (beg1 (line-beginning-position 2))
5903 (dc1 (downcase (match-string 2)))
5904 (dc3 (downcase (match-string 3)))
5905 end end1 quoting block-type ovl)
5906 (cond
5907 ((and (match-end 4) (equal dc3 "+begin"))
5908 ;; Truly a block
5909 (setq block-type (downcase (match-string 5))
5910 quoting (member block-type org-protecting-blocks))
5911 (when (re-search-forward
5912 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5913 nil t) ;; on purpose, we look further than LIMIT
5914 (setq end (min (point-max) (match-end 0))
5915 end1 (min (point-max) (1- (match-beginning 0))))
5916 (setq block-end (match-beginning 0))
5917 (when quoting
5918 (org-remove-flyspell-overlays-in beg1 end1)
5919 (remove-text-properties beg end
5920 '(display t invisible t intangible t)))
5921 (add-text-properties
5922 beg end '(font-lock-fontified t font-lock-multiline t))
5923 (add-text-properties beg beg1 '(face org-meta-line))
5924 (org-remove-flyspell-overlays-in beg beg1)
5925 (add-text-properties ; For end_src
5926 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5927 (org-remove-flyspell-overlays-in end1 end)
5928 (cond
5929 ((and lang (not (string= lang "")) org-src-fontify-natively)
5930 (org-src-font-lock-fontify-block lang block-start block-end)
5931 (add-text-properties beg1 block-end '(src-block t)))
5932 (quoting
5933 (add-text-properties beg1 (min (point-max) (1+ end1))
5934 '(face org-block))) ; end of source block
5935 ((not org-fontify-quote-and-verse-blocks))
5936 ((string= block-type "quote")
5937 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5938 ((string= block-type "verse")
5939 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5940 (add-text-properties beg beg1 '(face org-block-begin-line))
5941 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5942 '(face org-block-end-line))
5944 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5945 (org-remove-flyspell-overlays-in
5946 (match-beginning 0)
5947 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5948 (add-text-properties
5949 beg (match-end 3)
5950 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5951 '(font-lock-fontified t invisible t)
5952 '(font-lock-fontified t face org-document-info-keyword)))
5953 (add-text-properties
5954 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5955 (if (string-equal dc1 "+title:")
5956 '(font-lock-fontified t face org-document-title)
5957 '(font-lock-fontified t face org-document-info))))
5958 ((equal dc1 "+caption:")
5959 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5960 (remove-text-properties (match-beginning 0) (match-end 0)
5961 '(display t invisible t intangible t))
5962 (add-text-properties (match-beginning 1) (match-end 3)
5963 '(font-lock-fontified t face org-meta-line))
5964 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5965 '(font-lock-fontified t face org-block))
5967 ((member dc3 '(" " ""))
5968 (org-remove-flyspell-overlays-in beg (match-end 0))
5969 (add-text-properties
5970 beg (match-end 0)
5971 '(font-lock-fontified t face font-lock-comment-face)))
5972 (t ;; just any other in-buffer setting, but not indented
5973 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5974 (remove-text-properties (match-beginning 0) (match-end 0)
5975 '(display t invisible t intangible t))
5976 (add-text-properties beg (match-end 0)
5977 '(font-lock-fontified t face org-meta-line))
5978 t))))))
5980 (defun org-fontify-drawers (limit)
5981 "Fontify drawers."
5982 (when (re-search-forward org-drawer-regexp limit t)
5983 (add-text-properties
5984 (match-beginning 0) (match-end 0)
5985 '(font-lock-fontified t face org-special-keyword))
5986 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5989 (defun org-fontify-macros (limit)
5990 "Fontify macros."
5991 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5992 (add-text-properties
5993 (match-beginning 0) (match-end 0)
5994 '(font-lock-fontified t face org-macro))
5995 (when org-hide-macro-markers
5996 (add-text-properties (match-end 2) (match-beginning 2)
5997 '(invisible t))
5998 (add-text-properties (match-beginning 1) (match-end 1)
5999 '(invisible t)))
6000 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6003 (defun org-activate-angle-links (limit)
6004 "Add text properties for angle links."
6005 (if (and (re-search-forward org-angle-link-re limit t)
6006 (not (org-in-src-block-p)))
6007 (progn
6008 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6009 (add-text-properties (match-beginning 0) (match-end 0)
6010 (list 'mouse-face 'highlight
6011 'keymap org-mouse-map))
6012 (org-rear-nonsticky-at (match-end 0))
6013 t)))
6015 (defun org-activate-footnote-links (limit)
6016 "Add text properties for footnotes."
6017 (let ((fn (org-footnote-next-reference-or-definition limit)))
6018 (when fn
6019 (let* ((beg (nth 1 fn))
6020 (end (nth 2 fn))
6021 (label (car fn))
6022 (referencep (/= (line-beginning-position) beg)))
6023 (when (and referencep (nth 3 fn))
6024 (save-excursion
6025 (goto-char beg)
6026 (search-forward (or label "fn:"))
6027 (org-remove-flyspell-overlays-in beg (match-end 0))))
6028 (add-text-properties beg end
6029 (list 'mouse-face 'highlight
6030 'keymap org-mouse-map
6031 'help-echo
6032 (if referencep "Footnote reference"
6033 "Footnote definition")
6034 'font-lock-fontified t
6035 'font-lock-multiline t
6036 'face 'org-footnote))))))
6038 (defun org-activate-bracket-links (limit)
6039 "Add text properties for bracketed links."
6040 (if (and (re-search-forward org-bracket-link-regexp limit t)
6041 (not (org-in-src-block-p)))
6042 (let* ((hl (org-match-string-no-properties 1))
6043 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6044 (ip (org-maybe-intangible
6045 (list 'invisible 'org-link
6046 'keymap org-mouse-map 'mouse-face 'highlight
6047 'font-lock-multiline t 'help-echo help
6048 'htmlize-link `(:uri ,hl))))
6049 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6050 'font-lock-multiline t 'help-echo help
6051 'htmlize-link `(:uri ,hl))))
6052 ;; We need to remove the invisible property here. Table narrowing
6053 ;; may have made some of this invisible.
6054 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6055 (remove-text-properties (match-beginning 0) (match-end 0)
6056 '(invisible nil))
6057 (if (match-end 3)
6058 (progn
6059 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6060 (org-rear-nonsticky-at (match-beginning 3))
6061 (add-text-properties (match-beginning 3) (match-end 3) vp)
6062 (org-rear-nonsticky-at (match-end 3))
6063 (add-text-properties (match-end 3) (match-end 0) ip)
6064 (org-rear-nonsticky-at (match-end 0)))
6065 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6066 (org-rear-nonsticky-at (match-beginning 1))
6067 (add-text-properties (match-beginning 1) (match-end 1) vp)
6068 (org-rear-nonsticky-at (match-end 1))
6069 (add-text-properties (match-end 1) (match-end 0) ip)
6070 (org-rear-nonsticky-at (match-end 0)))
6071 t)))
6073 (defun org-activate-dates (limit)
6074 "Add text properties for dates."
6075 (if (and (re-search-forward org-tsr-regexp-both limit t)
6076 (not (equal (char-before (match-beginning 0)) 91)))
6077 (progn
6078 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6079 (add-text-properties (match-beginning 0) (match-end 0)
6080 (list 'mouse-face 'highlight
6081 'keymap org-mouse-map))
6082 (org-rear-nonsticky-at (match-end 0))
6083 (when org-display-custom-times
6084 (if (match-end 3)
6085 (org-display-custom-time (match-beginning 3) (match-end 3)))
6086 (org-display-custom-time (match-beginning 1) (match-end 1)))
6087 t)))
6089 (defvar org-target-link-regexp nil
6090 "Regular expression matching radio targets in plain text.")
6091 (make-variable-buffer-local 'org-target-link-regexp)
6093 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6094 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6095 border border border))
6096 "Regular expression matching a link target.")
6098 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6099 "Regular expression matching a radio target.")
6101 (defconst org-any-target-regexp
6102 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6103 "Regular expression matching any target.")
6105 (defun org-activate-target-links (limit)
6106 "Add text properties for target matches."
6107 (when org-target-link-regexp
6108 (let ((case-fold-search t))
6109 (if (re-search-forward org-target-link-regexp limit t)
6110 (progn
6111 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6112 (add-text-properties (match-beginning 1) (match-end 1)
6113 (list 'mouse-face 'highlight
6114 'keymap org-mouse-map
6115 'help-echo "Radio target link"
6116 'org-linked-text t))
6117 (org-rear-nonsticky-at (match-end 1))
6118 t)))))
6120 (defun org-update-radio-target-regexp ()
6121 "Find all radio targets in this file and update the regular expression.
6122 Also refresh fontification if needed."
6123 (interactive)
6124 (let ((old-regexp org-target-link-regexp)
6125 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6126 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6127 (targets
6128 (org-with-wide-buffer
6129 (goto-char (point-min))
6130 (let (rtn)
6131 (while (re-search-forward org-radio-target-regexp nil t)
6132 ;; Make sure point is really within the object.
6133 (backward-char)
6134 (let ((obj (org-element-context)))
6135 (when (eq (org-element-type obj) 'radio-target)
6136 (add-to-list 'rtn (org-element-property :value obj)))))
6137 rtn))))
6138 (setq org-target-link-regexp
6139 (and targets
6140 (concat before-re
6141 (mapconcat
6142 (lambda (x)
6143 (replace-regexp-in-string
6144 " +" "\\s-+" (regexp-quote x) t t))
6145 targets
6146 "\\|")
6147 after-re)))
6148 (unless (equal old-regexp org-target-link-regexp)
6149 ;; Clean-up cache.
6150 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6151 ((not org-target-link-regexp) old-regexp)
6153 (concat before-re
6154 (mapconcat
6155 (lambda (re)
6156 (substring re (length before-re)
6157 (- (length after-re))))
6158 (list old-regexp org-target-link-regexp)
6159 "\\|")
6160 after-re)))))
6161 (org-with-wide-buffer
6162 (goto-char (point-min))
6163 (while (re-search-forward regexp nil t)
6164 (org-element-cache-refresh (match-beginning 1)))))
6165 ;; Re fontify buffer.
6166 (when (memq 'radio org-highlight-links)
6167 (org-restart-font-lock)))))
6169 (defun org-hide-wide-columns (limit)
6170 (let (s e)
6171 (setq s (text-property-any (point) (or limit (point-max))
6172 'org-cwidth t))
6173 (when s
6174 (setq e (next-single-property-change s 'org-cwidth))
6175 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6176 (goto-char e)
6177 t)))
6179 (defvar org-latex-and-related-regexp nil
6180 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6182 (defun org-compute-latex-and-related-regexp ()
6183 "Compute regular expression for LaTeX, entities and sub/superscript.
6184 Result depends on variable `org-highlight-latex-and-related'."
6185 (org-set-local
6186 'org-latex-and-related-regexp
6187 (let* ((re-sub
6188 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6189 ((eq org-use-sub-superscripts '{})
6190 (list org-match-substring-with-braces-regexp))
6191 (org-use-sub-superscripts (list org-match-substring-regexp))))
6192 (re-latex
6193 (when (memq 'latex org-highlight-latex-and-related)
6194 (let ((matchers (plist-get org-format-latex-options :matchers)))
6195 (delq nil
6196 (mapcar (lambda (x)
6197 (and (member (car x) matchers) (nth 1 x)))
6198 org-latex-regexps)))))
6199 (re-entities
6200 (when (memq 'entities org-highlight-latex-and-related)
6201 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6202 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6204 (defun org-do-latex-and-related (limit)
6205 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6206 LIMIT bounds the search for syntax to highlight. Stop at first
6207 highlighted object, if any. Return t if some highlighting was
6208 done, nil otherwise."
6209 (when (org-string-nw-p org-latex-and-related-regexp)
6210 (catch 'found
6211 (while (re-search-forward org-latex-and-related-regexp limit t)
6212 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6213 'face))
6214 '(org-code org-verbatim underline))
6215 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6216 '(?_ ?^))
6218 0)))
6219 (font-lock-prepend-text-property
6220 (+ offset (match-beginning 0)) (match-end 0)
6221 'face 'org-latex-and-related)
6222 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6223 '(font-lock-multiline t)))
6224 (throw 'found t)))
6225 nil)))
6227 (defun org-restart-font-lock ()
6228 "Restart `font-lock-mode', to force refontification."
6229 (when (and (boundp 'font-lock-mode) font-lock-mode)
6230 (font-lock-mode -1)
6231 (font-lock-mode 1)))
6233 (defun org-activate-tags (limit)
6234 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6235 (progn
6236 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6237 (add-text-properties (match-beginning 1) (match-end 1)
6238 (list 'mouse-face 'highlight
6239 'keymap org-mouse-map))
6240 (org-rear-nonsticky-at (match-end 1))
6241 t)))
6243 (defun org-outline-level ()
6244 "Compute the outline level of the heading at point.
6246 If this is called at a normal headline, the level is the number
6247 of stars. Use `org-reduced-level' to remove the effect of
6248 `org-odd-levels'. Unlike to `org-current-level', this function
6249 takes into consideration inlinetasks."
6250 (org-with-wide-buffer
6251 (end-of-line)
6252 (if (re-search-backward org-outline-regexp-bol nil t)
6253 (1- (- (match-end 0) (match-beginning 0)))
6254 0)))
6256 (defvar org-font-lock-keywords nil)
6258 (defsubst org-re-property (property &optional literal allow-null value)
6259 "Return a regexp matching a PROPERTY line.
6261 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6262 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6263 non-nil, match properties even without a value.
6265 Match group 3 is set to the value when it exists. If there is no
6266 value and ALLOW-NULL is non-nil, it is set to the empty string.
6268 With optional argument VALUE, match only property lines with
6269 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6270 unless LITERAL is non-nil."
6271 (concat
6272 "^\\(?4:[ \t]*\\)"
6273 (format "\\(?1::\\(?2:%s\\):\\)"
6274 (if literal property (regexp-quote property)))
6275 (cond (value
6276 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6277 (if literal value (regexp-quote value))))
6278 (allow-null
6279 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6281 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6283 (defconst org-property-re
6284 (org-re-property "\\S-+" 'literal t)
6285 "Regular expression matching a property line.
6286 There are four matching groups:
6287 1: :PROPKEY: including the leading and trailing colon,
6288 2: PROPKEY without the leading and trailing colon,
6289 3: PROPVAL without leading or trailing spaces,
6290 4: the indentation of the current line,
6291 5: trailing whitespace.")
6293 (defvar org-font-lock-hook nil
6294 "Functions to be called for special font lock stuff.")
6296 (defvar org-font-lock-set-keywords-hook nil
6297 "Functions that can manipulate `org-font-lock-extra-keywords'.
6298 This is called after `org-font-lock-extra-keywords' is defined, but before
6299 it is installed to be used by font lock. This can be useful if something
6300 needs to be inserted at a specific position in the font-lock sequence.")
6302 (defun org-font-lock-hook (limit)
6303 "Run `org-font-lock-hook' within LIMIT."
6304 (run-hook-with-args 'org-font-lock-hook limit))
6306 (defun org-set-font-lock-defaults ()
6307 "Set font lock defaults for the current buffer."
6308 (let* ((em org-fontify-emphasized-text)
6309 (lk org-highlight-links)
6310 (org-font-lock-extra-keywords
6311 (list
6312 ;; Call the hook
6313 '(org-font-lock-hook)
6314 ;; Headlines
6315 `(,(if org-fontify-whole-heading-line
6316 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6317 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6318 (1 (org-get-level-face 1))
6319 (2 (org-get-level-face 2))
6320 (3 (org-get-level-face 3)))
6321 ;; Table lines
6322 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6323 (1 'org-table t))
6324 ;; Table internals
6325 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6326 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6327 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6328 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6329 ;; Drawers
6330 '(org-fontify-drawers)
6331 ;; Properties
6332 (list org-property-re
6333 '(1 'org-special-keyword t)
6334 '(3 'org-property-value t))
6335 ;; Links
6336 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6337 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6338 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6339 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6340 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6341 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6342 (if (memq 'footnote lk) '(org-activate-footnote-links))
6343 ;; Targets.
6344 (list org-any-target-regexp '(0 'org-target t))
6345 ;; Diary sexps.
6346 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6347 ;; Macro
6348 '(org-fontify-macros)
6349 '(org-hide-wide-columns (0 nil append))
6350 ;; TODO keyword
6351 (list (format org-heading-keyword-regexp-format
6352 org-todo-regexp)
6353 '(2 (org-get-todo-face 2) t))
6354 ;; DONE
6355 (if org-fontify-done-headline
6356 (list (format org-heading-keyword-regexp-format
6357 (concat
6358 "\\(?:"
6359 (mapconcat 'regexp-quote org-done-keywords "\\|")
6360 "\\)"))
6361 '(2 'org-headline-done t))
6362 nil)
6363 ;; Priorities
6364 '(org-font-lock-add-priority-faces)
6365 ;; Tags
6366 '(org-font-lock-add-tag-faces)
6367 ;; Tags groups
6368 (if (and org-group-tags org-tag-groups-alist)
6369 (list (concat org-outline-regexp-bol ".+\\(:"
6370 (regexp-opt (mapcar 'car org-tag-groups-alist))
6371 ":\\).*$")
6372 '(1 'org-tag-group prepend)))
6373 ;; Special keywords
6374 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6375 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6376 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6377 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6378 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6379 ;; Emphasis
6380 (if em
6381 (if (featurep 'xemacs)
6382 '(org-do-emphasis-faces (0 nil append))
6383 '(org-do-emphasis-faces)))
6384 ;; Checkboxes
6385 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6386 1 'org-checkbox prepend)
6387 (if (cdr (assq 'checkbox org-list-automatic-rules))
6388 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6389 (0 (org-get-checkbox-statistics-face) t)))
6390 ;; Description list items
6391 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6392 1 'org-list-dt prepend)
6393 ;; ARCHIVEd headings
6394 (list (concat
6395 org-outline-regexp-bol
6396 "\\(.*:" org-archive-tag ":.*\\)")
6397 '(1 'org-archived prepend))
6398 ;; Specials
6399 '(org-do-latex-and-related)
6400 '(org-fontify-entities)
6401 '(org-raise-scripts)
6402 ;; Code
6403 '(org-activate-code (1 'org-code t))
6404 ;; COMMENT
6405 (list (format
6406 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6407 org-todo-regexp
6408 org-comment-string)
6409 '(9 'org-special-keyword t))
6410 ;; Blocks and meta lines
6411 '(org-fontify-meta-lines-and-blocks))))
6412 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6413 (run-hooks 'org-font-lock-set-keywords-hook)
6414 ;; Now set the full font-lock-keywords
6415 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6416 (org-set-local 'font-lock-defaults
6417 '(org-font-lock-keywords t nil nil backward-paragraph))
6418 (kill-local-variable 'font-lock-keywords) nil))
6420 (defun org-toggle-pretty-entities ()
6421 "Toggle the composition display of entities as UTF8 characters."
6422 (interactive)
6423 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6424 (org-restart-font-lock)
6425 (if org-pretty-entities
6426 (message "Entities are now displayed as UTF8 characters")
6427 (save-restriction
6428 (widen)
6429 (org-decompose-region (point-min) (point-max))
6430 (message "Entities are now displayed as plain text"))))
6432 (defvar org-custom-properties-overlays nil
6433 "List of overlays used for custom properties.")
6434 (make-variable-buffer-local 'org-custom-properties-overlays)
6436 (defun org-toggle-custom-properties-visibility ()
6437 "Display or hide properties in `org-custom-properties'."
6438 (interactive)
6439 (if org-custom-properties-overlays
6440 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6441 (setq org-custom-properties-overlays nil))
6442 (when org-custom-properties
6443 (org-with-wide-buffer
6444 (goto-char (point-min))
6445 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6446 (while (re-search-forward regexp nil t)
6447 (let ((end (cdr (save-match-data (org-get-property-block)))))
6448 (when (and end (< (point) end))
6449 ;; Hide first custom property in current drawer.
6450 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6451 (overlay-put o 'invisible t)
6452 (overlay-put o 'org-custom-property t)
6453 (push o org-custom-properties-overlays))
6454 ;; Hide additional custom properties in the same drawer.
6455 (while (re-search-forward regexp end t)
6456 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6457 (overlay-put o 'invisible t)
6458 (overlay-put o 'org-custom-property t)
6459 (push o org-custom-properties-overlays)))))
6460 ;; Each entry is limited to a single property drawer.
6461 (outline-next-heading)))))))
6463 (defun org-fontify-entities (limit)
6464 "Find an entity to fontify."
6465 (let (ee)
6466 (when org-pretty-entities
6467 (catch 'match
6468 ;; "\_ "-family is left out on purpose. Only the first one,
6469 ;; i.e., "\_ ", could be fontified anyway, and it would be
6470 ;; confusing when adding a second white space character.
6471 (while (re-search-forward
6472 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6473 limit t)
6474 (if (and (not (org-at-comment-p))
6475 (setq ee (org-entity-get (match-string 1)))
6476 (= (length (nth 6 ee)) 1))
6477 (let*
6478 ((end (if (equal (match-string 2) "{}")
6479 (match-end 2)
6480 (match-end 1))))
6481 (add-text-properties
6482 (match-beginning 0) end
6483 (list 'font-lock-fontified t))
6484 (compose-region (match-beginning 0) end
6485 (nth 6 ee) nil)
6486 (backward-char 1)
6487 (throw 'match t))))
6488 nil))))
6490 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6491 "Fontify string S like in Org-mode."
6492 (with-temp-buffer
6493 (insert s)
6494 (let ((org-odd-levels-only odd-levels))
6495 (org-mode)
6496 (font-lock-ensure)
6497 (buffer-string))))
6499 (defvar org-m nil)
6500 (defvar org-l nil)
6501 (defvar org-f nil)
6502 (defun org-get-level-face (n)
6503 "Get the right face for match N in font-lock matching of headlines."
6504 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6505 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6506 (if org-cycle-level-faces
6507 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6508 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6509 (cond
6510 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6511 ((eq n 2) org-f)
6512 (t (if org-level-color-stars-only nil org-f))))
6515 (defun org-get-todo-face (kwd)
6516 "Get the right face for a TODO keyword KWD.
6517 If KWD is a number, get the corresponding match group."
6518 (if (numberp kwd) (setq kwd (match-string kwd)))
6519 (or (org-face-from-face-or-color
6520 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6521 (and (member kwd org-done-keywords) 'org-done)
6522 'org-todo))
6524 (defun org-face-from-face-or-color (context inherit face-or-color)
6525 "Create a face list that inherits INHERIT, but sets the foreground color.
6526 When FACE-OR-COLOR is not a string, just return it."
6527 (if (stringp face-or-color)
6528 (list :inherit inherit
6529 (cdr (assoc context org-faces-easy-properties))
6530 face-or-color)
6531 face-or-color))
6533 (defun org-font-lock-add-tag-faces (limit)
6534 "Add the special tag faces."
6535 (when (and org-tag-faces org-tags-special-faces-re)
6536 (while (re-search-forward org-tags-special-faces-re limit t)
6537 (add-text-properties (match-beginning 1) (match-end 1)
6538 (list 'face (org-get-tag-face 1)
6539 'font-lock-fontified t))
6540 (backward-char 1))))
6542 (defun org-font-lock-add-priority-faces (limit)
6543 "Add the special priority faces."
6544 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6545 (when (save-match-data (org-at-heading-p))
6546 (add-text-properties
6547 (match-beginning 0) (match-end 0)
6548 (list 'face (or (org-face-from-face-or-color
6549 'priority 'org-priority
6550 (cdr (assoc (char-after (match-beginning 1))
6551 org-priority-faces)))
6552 'org-priority)
6553 'font-lock-fontified t)))))
6555 (defun org-get-tag-face (kwd)
6556 "Get the right face for a TODO keyword KWD.
6557 If KWD is a number, get the corresponding match group."
6558 (if (numberp kwd) (setq kwd (match-string kwd)))
6559 (or (org-face-from-face-or-color
6560 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6561 'org-tag))
6563 (defun org-unfontify-region (beg end &optional maybe_loudly)
6564 "Remove fontification and activation overlays from links."
6565 (font-lock-default-unfontify-region beg end)
6566 (let* ((buffer-undo-list t)
6567 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6568 (inhibit-modification-hooks t)
6569 deactivate-mark buffer-file-name buffer-file-truename)
6570 (org-decompose-region beg end)
6571 (remove-text-properties beg end
6572 '(mouse-face t keymap t org-linked-text t
6573 invisible t intangible t
6574 org-emphasis t))
6575 (org-remove-font-lock-display-properties beg end)))
6577 (defconst org-script-display '(((raise -0.3) (height 0.7))
6578 ((raise 0.3) (height 0.7))
6579 ((raise -0.5))
6580 ((raise 0.5)))
6581 "Display properties for showing superscripts and subscripts.")
6583 (defun org-remove-font-lock-display-properties (beg end)
6584 "Remove specific display properties that have been added by font lock.
6585 The will remove the raise properties that are used to show superscripts
6586 and subscripts."
6587 (let (next prop)
6588 (while (< beg end)
6589 (setq next (next-single-property-change beg 'display nil end)
6590 prop (get-text-property beg 'display))
6591 (if (member prop org-script-display)
6592 (put-text-property beg next 'display nil))
6593 (setq beg next))))
6595 (defun org-raise-scripts (limit)
6596 "Add raise properties to sub/superscripts."
6597 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6598 (if (re-search-forward
6599 (if (eq org-use-sub-superscripts t)
6600 org-match-substring-regexp
6601 org-match-substring-with-braces-regexp)
6602 limit t)
6603 (let* ((pos (point)) table-p comment-p
6604 (mpos (match-beginning 3))
6605 (emph-p (get-text-property mpos 'org-emphasis))
6606 (link-p (get-text-property mpos 'mouse-face))
6607 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6608 (goto-char (point-at-bol))
6609 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6610 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6611 (goto-char pos)
6612 ;; Handle a_b^c
6613 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6614 (if (or comment-p emph-p link-p keyw-p)
6616 (put-text-property (match-beginning 3) (match-end 0)
6617 'display
6618 (if (equal (char-after (match-beginning 2)) ?^)
6619 (nth (if table-p 3 1) org-script-display)
6620 (nth (if table-p 2 0) org-script-display)))
6621 (add-text-properties (match-beginning 2) (match-end 2)
6622 (list 'invisible t
6623 'org-dwidth t 'org-dwidth-n 1))
6624 (if (and (eq (char-after (match-beginning 3)) ?{)
6625 (eq (char-before (match-end 3)) ?}))
6626 (progn
6627 (add-text-properties
6628 (match-beginning 3) (1+ (match-beginning 3))
6629 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6630 (add-text-properties
6631 (1- (match-end 3)) (match-end 3)
6632 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6633 t)))))
6635 ;;;; Visibility cycling, including org-goto and indirect buffer
6637 ;;; Cycling
6639 (defvar org-cycle-global-status nil)
6640 (make-variable-buffer-local 'org-cycle-global-status)
6641 (put 'org-cycle-global-status 'org-state t)
6642 (defvar org-cycle-subtree-status nil)
6643 (make-variable-buffer-local 'org-cycle-subtree-status)
6644 (put 'org-cycle-subtree-status 'org-state t)
6646 (defvar org-inlinetask-min-level)
6648 (defun org-unlogged-message (&rest args)
6649 "Display a message, but avoid logging it in the *Messages* buffer."
6650 (let ((message-log-max nil))
6651 (apply 'message args)))
6653 ;;;###autoload
6654 (defun org-cycle (&optional arg)
6655 "TAB-action and visibility cycling for Org-mode.
6657 This is the command invoked in Org-mode by the TAB key. Its main purpose
6658 is outline visibility cycling, but it also invokes other actions
6659 in special contexts.
6661 - When this function is called with a prefix argument, rotate the entire
6662 buffer through 3 states (global cycling)
6663 1. OVERVIEW: Show only top-level headlines.
6664 2. CONTENTS: Show all headlines of all levels, but no body text.
6665 3. SHOW ALL: Show everything.
6666 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6667 determined by the variable `org-startup-folded', and by any VISIBILITY
6668 properties in the buffer.
6669 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6670 including any drawers.
6672 - When inside a table, re-align the table and move to the next field.
6674 - When point is at the beginning of a headline, rotate the subtree started
6675 by this line through 3 different states (local cycling)
6676 1. FOLDED: Only the main headline is shown.
6677 2. CHILDREN: The main headline and the direct children are shown.
6678 From this state, you can move to one of the children
6679 and zoom in further.
6680 3. SUBTREE: Show the entire subtree, including body text.
6681 If there is no subtree, switch directly from CHILDREN to FOLDED.
6683 - When point is at the beginning of an empty headline and the variable
6684 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6685 of the headline by demoting and promoting it to likely levels. This
6686 speeds up creation document structure by pressing TAB once or several
6687 times right after creating a new headline.
6689 - When there is a numeric prefix, go up to a heading with level ARG, do
6690 a `show-subtree' and return to the previous cursor position. If ARG
6691 is negative, go up that many levels.
6693 - When point is not at the beginning of a headline, execute the global
6694 binding for TAB, which is re-indenting the line. See the option
6695 `org-cycle-emulate-tab' for details.
6697 - Special case: if point is at the beginning of the buffer and there is
6698 no headline in line 1, this function will act as if called with prefix arg
6699 (C-u TAB, same as S-TAB) also when called without prefix arg.
6700 But only if also the variable `org-cycle-global-at-bob' is t."
6701 (interactive "P")
6702 (org-load-modules-maybe)
6703 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6704 (and org-cycle-level-after-item/entry-creation
6705 (or (org-cycle-level)
6706 (org-cycle-item-indentation))))
6707 (let* ((limit-level
6708 (or org-cycle-max-level
6709 (and (boundp 'org-inlinetask-min-level)
6710 org-inlinetask-min-level
6711 (1- org-inlinetask-min-level))))
6712 (nstars (and limit-level
6713 (if org-odd-levels-only
6714 (and limit-level (1- (* limit-level 2)))
6715 limit-level)))
6716 (org-outline-regexp
6717 (if (not (derived-mode-p 'org-mode))
6718 outline-regexp
6719 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6720 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6721 (not (looking-at org-outline-regexp))))
6722 (org-cycle-hook
6723 (if bob-special
6724 (delq 'org-optimize-window-after-visibility-change
6725 (copy-sequence org-cycle-hook))
6726 org-cycle-hook))
6727 (pos (point)))
6729 (if (or bob-special (equal arg '(4)))
6730 ;; special case: use global cycling
6731 (setq arg t))
6733 (cond
6735 ((equal arg '(16))
6736 (setq last-command 'dummy)
6737 (org-set-startup-visibility)
6738 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6740 ((equal arg '(64))
6741 (show-all)
6742 (org-unlogged-message "Entire buffer visible, including drawers"))
6744 ;; Try cdlatex TAB completion
6745 ((org-try-cdlatex-tab))
6747 ;; Table: enter it or move to the next field.
6748 ((org-at-table-p 'any)
6749 (if (org-at-table.el-p)
6750 (message "Use C-c ' to edit table.el tables")
6751 (if arg (org-table-edit-field t)
6752 (org-table-justify-field-maybe)
6753 (call-interactively 'org-table-next-field))))
6755 ((run-hook-with-args-until-success
6756 'org-tab-after-check-for-table-hook))
6758 ;; Global cycling: delegate to `org-cycle-internal-global'.
6759 ((eq arg t) (org-cycle-internal-global))
6761 ;; Drawers: delegate to `org-flag-drawer'.
6762 ((save-excursion
6763 (beginning-of-line 1)
6764 (looking-at org-drawer-regexp))
6765 (org-flag-drawer ; toggle block visibility
6766 (not (get-char-property (match-end 0) 'invisible))))
6768 ;; Show-subtree, ARG levels up from here.
6769 ((integerp arg)
6770 (save-excursion
6771 (org-back-to-heading)
6772 (outline-up-heading (if (< arg 0) (- arg)
6773 (- (funcall outline-level) arg)))
6774 (org-show-subtree)))
6776 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6777 ((and (featurep 'org-inlinetask)
6778 (org-inlinetask-at-task-p)
6779 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6780 (org-inlinetask-toggle-visibility))
6782 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6783 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6784 (save-excursion (beginning-of-line 1)
6785 (looking-at org-outline-regexp)))
6786 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6787 (org-cycle-internal-local))
6789 ;; From there: TAB emulation and template completion.
6790 (buffer-read-only (org-back-to-heading))
6792 ((run-hook-with-args-until-success
6793 'org-tab-after-check-for-cycling-hook))
6795 ((org-try-structure-completion))
6797 ((run-hook-with-args-until-success
6798 'org-tab-before-tab-emulation-hook))
6800 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6801 (or (not (bolp))
6802 (not (looking-at org-outline-regexp))))
6803 (call-interactively (global-key-binding "\t")))
6805 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6806 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6807 (or (and (eq org-cycle-emulate-tab 'white)
6808 (= (match-end 0) (point-at-eol)))
6809 (and (eq org-cycle-emulate-tab 'whitestart)
6810 (>= (match-end 0) pos))))
6812 (eq org-cycle-emulate-tab t))
6813 (call-interactively (global-key-binding "\t")))
6815 (t (save-excursion
6816 (org-back-to-heading)
6817 (org-cycle)))))))
6819 (defun org-cycle-internal-global ()
6820 "Do the global cycling action."
6821 ;; Hack to avoid display of messages for .org attachments in Gnus
6822 (let ((ga (string-match "\\*fontification" (buffer-name))))
6823 (cond
6824 ((and (eq last-command this-command)
6825 (eq org-cycle-global-status 'overview))
6826 ;; We just created the overview - now do table of contents
6827 ;; This can be slow in very large buffers, so indicate action
6828 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6829 (unless ga (org-unlogged-message "CONTENTS..."))
6830 (org-content)
6831 (unless ga (org-unlogged-message "CONTENTS...done"))
6832 (setq org-cycle-global-status 'contents)
6833 (run-hook-with-args 'org-cycle-hook 'contents))
6835 ((and (eq last-command this-command)
6836 (eq org-cycle-global-status 'contents))
6837 ;; We just showed the table of contents - now show everything
6838 (run-hook-with-args 'org-pre-cycle-hook 'all)
6839 (show-all)
6840 (unless ga (org-unlogged-message "SHOW ALL"))
6841 (setq org-cycle-global-status 'all)
6842 (run-hook-with-args 'org-cycle-hook 'all))
6845 ;; Default action: go to overview
6846 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6847 (org-overview)
6848 (unless ga (org-unlogged-message "OVERVIEW"))
6849 (setq org-cycle-global-status 'overview)
6850 (run-hook-with-args 'org-cycle-hook 'overview)))))
6852 (defvar org-called-with-limited-levels nil
6853 "Non-nil when `org-with-limited-levels' is currently active.")
6855 (defun org-cycle-internal-local ()
6856 "Do the local cycling action."
6857 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6858 ;; First, determine end of headline (EOH), end of subtree or item
6859 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6860 (save-excursion
6861 (if (org-at-item-p)
6862 (progn
6863 (beginning-of-line)
6864 (setq struct (org-list-struct))
6865 (setq eoh (point-at-eol))
6866 (setq eos (org-list-get-item-end-before-blank (point) struct))
6867 (setq has-children (org-list-has-child-p (point) struct)))
6868 (org-back-to-heading)
6869 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6870 (setq eos (save-excursion (org-end-of-subtree t t)
6871 (when (bolp) (backward-char)) (point)))
6872 (setq has-children
6873 (or (save-excursion
6874 (let ((level (funcall outline-level)))
6875 (outline-next-heading)
6876 (and (org-at-heading-p t)
6877 (> (funcall outline-level) level))))
6878 (save-excursion
6879 (org-list-search-forward (org-item-beginning-re) eos t)))))
6880 ;; Determine end invisible part of buffer (EOL)
6881 (beginning-of-line 2)
6882 ;; XEmacs doesn't have `next-single-char-property-change'
6883 (if (featurep 'xemacs)
6884 (while (and (not (eobp)) ;; this is like `next-line'
6885 (get-char-property (1- (point)) 'invisible))
6886 (beginning-of-line 2))
6887 (while (and (not (eobp)) ;; this is like `next-line'
6888 (get-char-property (1- (point)) 'invisible))
6889 (goto-char (next-single-char-property-change (point) 'invisible))
6890 (and (eolp) (beginning-of-line 2))))
6891 (setq eol (point)))
6892 ;; Find out what to do next and set `this-command'
6893 (cond
6894 ((= eos eoh)
6895 ;; Nothing is hidden behind this heading
6896 (unless (org-before-first-heading-p)
6897 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6898 (org-unlogged-message "EMPTY ENTRY")
6899 (setq org-cycle-subtree-status nil)
6900 (save-excursion
6901 (goto-char eos)
6902 (outline-next-heading)
6903 (if (outline-invisible-p) (org-flag-heading nil))))
6904 ((and (or (>= eol eos)
6905 (not (string-match "\\S-" (buffer-substring eol eos))))
6906 (or has-children
6907 (not (setq children-skipped
6908 org-cycle-skip-children-state-if-no-children))))
6909 ;; Entire subtree is hidden in one line: children view
6910 (unless (org-before-first-heading-p)
6911 (run-hook-with-args 'org-pre-cycle-hook 'children))
6912 (if (org-at-item-p)
6913 (org-list-set-item-visibility (point-at-bol) struct 'children)
6914 (org-show-entry)
6915 (org-with-limited-levels (show-children))
6916 ;; FIXME: This slows down the func way too much.
6917 ;; How keep drawers hidden in subtree anyway?
6918 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6919 ;; (org-cycle-hide-drawers 'subtree))
6921 ;; Fold every list in subtree to top-level items.
6922 (when (eq org-cycle-include-plain-lists 'integrate)
6923 (save-excursion
6924 (org-back-to-heading)
6925 (while (org-list-search-forward (org-item-beginning-re) eos t)
6926 (beginning-of-line 1)
6927 (let* ((struct (org-list-struct))
6928 (prevs (org-list-prevs-alist struct))
6929 (end (org-list-get-bottom-point struct)))
6930 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6931 (org-list-get-all-items (point) struct prevs))
6932 (goto-char (if (< end eos) end eos)))))))
6933 (org-unlogged-message "CHILDREN")
6934 (save-excursion
6935 (goto-char eos)
6936 (outline-next-heading)
6937 (if (outline-invisible-p) (org-flag-heading nil)))
6938 (setq org-cycle-subtree-status 'children)
6939 (unless (org-before-first-heading-p)
6940 (run-hook-with-args 'org-cycle-hook 'children)))
6941 ((or children-skipped
6942 (and (eq last-command this-command)
6943 (eq org-cycle-subtree-status 'children)))
6944 ;; We just showed the children, or no children are there,
6945 ;; now show everything.
6946 (unless (org-before-first-heading-p)
6947 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6948 (outline-flag-region eoh eos nil)
6949 (org-unlogged-message
6950 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6951 (setq org-cycle-subtree-status 'subtree)
6952 (unless (org-before-first-heading-p)
6953 (run-hook-with-args 'org-cycle-hook 'subtree)))
6955 ;; Default action: hide the subtree.
6956 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6957 (outline-flag-region eoh eos t)
6958 (org-unlogged-message "FOLDED")
6959 (setq org-cycle-subtree-status 'folded)
6960 (unless (org-before-first-heading-p)
6961 (run-hook-with-args 'org-cycle-hook 'folded))))))
6963 ;;;###autoload
6964 (defun org-global-cycle (&optional arg)
6965 "Cycle the global visibility. For details see `org-cycle'.
6966 With \\[universal-argument] prefix arg, switch to startup visibility.
6967 With a numeric prefix, show all headlines up to that level."
6968 (interactive "P")
6969 (let ((org-cycle-include-plain-lists
6970 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6971 (cond
6972 ((integerp arg)
6973 (show-all)
6974 (hide-sublevels arg)
6975 (setq org-cycle-global-status 'contents))
6976 ((equal arg '(4))
6977 (org-set-startup-visibility)
6978 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6980 (org-cycle '(4))))))
6982 (defun org-set-startup-visibility ()
6983 "Set the visibility required by startup options and properties."
6984 (cond
6985 ((eq org-startup-folded t)
6986 (org-overview))
6987 ((eq org-startup-folded 'content)
6988 (org-content))
6989 ((or (eq org-startup-folded 'showeverything)
6990 (eq org-startup-folded nil))
6991 (show-all)))
6992 (unless (eq org-startup-folded 'showeverything)
6993 (if org-hide-block-startup (org-hide-block-all))
6994 (org-set-visibility-according-to-property 'no-cleanup)
6995 (org-cycle-hide-archived-subtrees 'all)
6996 (org-cycle-hide-drawers 'all)
6997 (org-cycle-show-empty-lines t)))
6999 (defun org-set-visibility-according-to-property (&optional no-cleanup)
7000 "Switch subtree visibilities according to :VISIBILITY: property."
7001 (interactive)
7002 (let (org-show-entry-below)
7003 (org-with-wide-buffer
7004 (goto-char (point-min))
7005 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7006 (if (not (org-at-property-p)) (outline-next-heading)
7007 (let ((state (match-string 3)))
7008 (save-excursion
7009 (org-back-to-heading t)
7010 (hide-subtree)
7011 (org-reveal)
7012 (cond
7013 ((equal state "folded")
7014 (hide-subtree))
7015 ((equal state "children")
7016 (org-show-hidden-entry)
7017 (show-children))
7018 ((equal state "content")
7019 (save-excursion
7020 (save-restriction
7021 (org-narrow-to-subtree)
7022 (org-content))))
7023 ((member state '("all" "showall"))
7024 (show-subtree)))))))
7025 (unless no-cleanup
7026 (org-cycle-hide-archived-subtrees 'all)
7027 (org-cycle-hide-drawers 'all)
7028 (org-cycle-show-empty-lines 'all)))))
7030 ;; This function uses outline-regexp instead of the more fundamental
7031 ;; org-outline-regexp so that org-cycle-global works outside of Org
7032 ;; buffers, where outline-regexp is needed.
7033 (defun org-overview ()
7034 "Switch to overview mode, showing only top-level headlines.
7035 This shows all headlines with a level equal or greater than the level
7036 of the first headline in the buffer. This is important, because if the
7037 first headline is not level one, then (hide-sublevels 1) gives confusing
7038 results."
7039 (interactive)
7040 (save-excursion
7041 (let ((level
7042 (save-excursion
7043 (goto-char (point-min))
7044 (if (re-search-forward (concat "^" outline-regexp) nil t)
7045 (progn
7046 (goto-char (match-beginning 0))
7047 (funcall outline-level))))))
7048 (and level (hide-sublevels level)))))
7050 (defun org-content (&optional arg)
7051 "Show all headlines in the buffer, like a table of contents.
7052 With numerical argument N, show content up to level N."
7053 (interactive "P")
7054 (org-overview)
7055 (save-excursion
7056 ;; Visit all headings and show their offspring
7057 (and (integerp arg) (org-overview))
7058 (goto-char (point-max))
7059 (catch 'exit
7060 (while (and (progn (condition-case nil
7061 (outline-previous-visible-heading 1)
7062 (error (goto-char (point-min))))
7064 (looking-at org-outline-regexp))
7065 (if (integerp arg)
7066 (show-children (1- arg))
7067 (show-branches))
7068 (if (bobp) (throw 'exit nil))))))
7070 (defun org-optimize-window-after-visibility-change (state)
7071 "Adjust the window after a change in outline visibility.
7072 This function is the default value of the hook `org-cycle-hook'."
7073 (when (get-buffer-window (current-buffer))
7074 (cond
7075 ((eq state 'content) nil)
7076 ((eq state 'all) nil)
7077 ((eq state 'folded) nil)
7078 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7079 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7081 (defun org-remove-empty-overlays-at (pos)
7082 "Remove outline overlays that do not contain non-white stuff."
7083 (mapc
7084 (lambda (o)
7085 (and (eq 'outline (overlay-get o 'invisible))
7086 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7087 (overlay-end o))))
7088 (delete-overlay o)))
7089 (overlays-at pos)))
7091 (defun org-clean-visibility-after-subtree-move ()
7092 "Fix visibility issues after moving a subtree."
7093 ;; First, find a reasonable region to look at:
7094 ;; Start two siblings above, end three below
7095 (let* ((beg (save-excursion
7096 (and (org-get-last-sibling)
7097 (org-get-last-sibling))
7098 (point)))
7099 (end (save-excursion
7100 (and (org-get-next-sibling)
7101 (org-get-next-sibling)
7102 (org-get-next-sibling))
7103 (if (org-at-heading-p)
7104 (point-at-eol)
7105 (point))))
7106 (level (looking-at "\\*+"))
7107 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7108 (save-excursion
7109 (save-restriction
7110 (narrow-to-region beg end)
7111 (when re
7112 ;; Properly fold already folded siblings
7113 (goto-char (point-min))
7114 (while (re-search-forward re nil t)
7115 (if (and (not (outline-invisible-p))
7116 (save-excursion
7117 (goto-char (point-at-eol)) (outline-invisible-p)))
7118 (hide-entry))))
7119 (org-cycle-show-empty-lines 'overview)
7120 (org-cycle-hide-drawers 'overview)))))
7122 (defun org-cycle-show-empty-lines (state)
7123 "Show empty lines above all visible headlines.
7124 The region to be covered depends on STATE when called through
7125 `org-cycle-hook'. Lisp program can use t for STATE to get the
7126 entire buffer covered. Note that an empty line is only shown if there
7127 are at least `org-cycle-separator-lines' empty lines before the headline."
7128 (when (not (= org-cycle-separator-lines 0))
7129 (save-excursion
7130 (let* ((n (abs org-cycle-separator-lines))
7131 (re (cond
7132 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7133 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7134 (t (let ((ns (number-to-string (- n 2))))
7135 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7136 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7137 beg end b e)
7138 (cond
7139 ((memq state '(overview contents t))
7140 (setq beg (point-min) end (point-max)))
7141 ((memq state '(children folded))
7142 (setq beg (point) end (progn (org-end-of-subtree t t)
7143 (beginning-of-line 2)
7144 (point)))))
7145 (when beg
7146 (goto-char beg)
7147 (while (re-search-forward re end t)
7148 (unless (get-char-property (match-end 1) 'invisible)
7149 (setq e (match-end 1))
7150 (if (< org-cycle-separator-lines 0)
7151 (setq b (save-excursion
7152 (goto-char (match-beginning 0))
7153 (org-back-over-empty-lines)
7154 (if (save-excursion
7155 (goto-char (max (point-min) (1- (point))))
7156 (org-at-heading-p))
7157 (1- (point))
7158 (point))))
7159 (setq b (match-beginning 1)))
7160 (outline-flag-region b e nil)))))))
7161 ;; Never hide empty lines at the end of the file.
7162 (save-excursion
7163 (goto-char (point-max))
7164 (outline-previous-heading)
7165 (outline-end-of-heading)
7166 (if (and (looking-at "[ \t\n]+")
7167 (= (match-end 0) (point-max)))
7168 (outline-flag-region (point) (match-end 0) nil))))
7170 (defun org-show-empty-lines-in-parent ()
7171 "Move to the parent and re-show empty lines before visible headlines."
7172 (save-excursion
7173 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7174 (org-cycle-show-empty-lines context))))
7176 (defun org-files-list ()
7177 "Return `org-agenda-files' list, plus all open org-mode files.
7178 This is useful for operations that need to scan all of a user's
7179 open and agenda-wise Org files."
7180 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7181 (dolist (buf (buffer-list))
7182 (with-current-buffer buf
7183 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7184 (let ((file (expand-file-name (buffer-file-name))))
7185 (unless (member file files)
7186 (push file files))))))
7187 files))
7189 (defsubst org-entry-beginning-position ()
7190 "Return the beginning position of the current entry."
7191 (save-excursion (outline-back-to-heading t) (point)))
7193 (defsubst org-entry-end-position ()
7194 "Return the end position of the current entry."
7195 (save-excursion (outline-next-heading) (point)))
7197 (defun org-cycle-hide-drawers (state &optional exceptions)
7198 "Re-hide all drawers after a visibility state change.
7199 When non-nil, optional argument EXCEPTIONS is a list of strings
7200 specifying which drawers should not be hidden."
7201 (when (and (derived-mode-p 'org-mode)
7202 (not (memq state '(overview folded contents))))
7203 (save-excursion
7204 (let* ((globalp (memq state '(contents all)))
7205 (beg (if globalp (point-min) (point)))
7206 (end (if globalp (point-max)
7207 (if (eq state 'children)
7208 (save-excursion (outline-next-heading) (point))
7209 (org-end-of-subtree t)))))
7210 (goto-char beg)
7211 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7212 (unless (member-ignore-case (match-string 1) exceptions)
7213 (let ((drawer (org-element-at-point)))
7214 (when (memq (org-element-type drawer) '(drawer property-drawer))
7215 (org-flag-drawer t drawer)
7216 ;; Make sure to skip drawer entirely or we might flag
7217 ;; it another time when matching its ending line with
7218 ;; `org-drawer-regexp'.
7219 (goto-char (org-element-property :end drawer))))))))))
7221 (defun org-flag-drawer (flag &optional element)
7222 "When FLAG is non-nil, hide the drawer we are at.
7223 Otherwise make it visible. When optional argument ELEMENT is
7224 a parsed drawer, as returned by `org-element-at-point', hide or
7225 show that drawer instead."
7226 (when (save-excursion
7227 (beginning-of-line)
7228 (org-looking-at-p org-drawer-regexp))
7229 (let ((drawer (or element (org-element-at-point))))
7230 (when (memq (org-element-type drawer) '(drawer property-drawer))
7231 (let ((post (org-element-property :post-affiliated drawer)))
7232 (save-excursion
7233 (outline-flag-region
7234 (progn (goto-char post) (line-end-position))
7235 (progn (goto-char (org-element-property :end drawer))
7236 (skip-chars-backward " \r\t\n")
7237 (line-end-position))
7238 flag))
7239 ;; When the drawer is hidden away, make sure point lies in
7240 ;; a visible part of the buffer.
7241 (when (and flag (> (line-beginning-position) post))
7242 (goto-char post)))))))
7244 (defun org-subtree-end-visible-p ()
7245 "Is the end of the current subtree visible?"
7246 (pos-visible-in-window-p
7247 (save-excursion (org-end-of-subtree t) (point))))
7249 (defun org-first-headline-recenter ()
7250 "Move cursor to the first headline and recenter the headline."
7251 (goto-char (point-min))
7252 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7253 (set-window-start (selected-window) (point-at-bol))))
7255 ;;; Saving and restoring visibility
7257 (defun org-outline-overlay-data (&optional use-markers)
7258 "Return a list of the locations of all outline overlays.
7259 These are overlays with the `invisible' property value `outline'.
7260 The return value is a list of cons cells, with start and stop
7261 positions for each overlay.
7262 If USE-MARKERS is set, return the positions as markers."
7263 (let (beg end)
7264 (save-excursion
7265 (save-restriction
7266 (widen)
7267 (delq nil
7268 (mapcar (lambda (o)
7269 (when (eq (overlay-get o 'invisible) 'outline)
7270 (setq beg (overlay-start o)
7271 end (overlay-end o))
7272 (and beg end (> end beg)
7273 (if use-markers
7274 (cons (copy-marker beg)
7275 (copy-marker end t))
7276 (cons beg end)))))
7277 (overlays-in (point-min) (point-max))))))))
7279 (defun org-set-outline-overlay-data (data)
7280 "Create visibility overlays for all positions in DATA.
7281 DATA should have been made by `org-outline-overlay-data'."
7282 (let (o)
7283 (save-excursion
7284 (save-restriction
7285 (widen)
7286 (show-all)
7287 (mapc (lambda (c)
7288 (outline-flag-region (car c) (cdr c) t))
7289 data)))))
7291 ;;; Folding of blocks
7293 (defvar org-hide-block-overlays nil
7294 "Overlays hiding blocks.")
7295 (make-variable-buffer-local 'org-hide-block-overlays)
7297 (defun org-block-map (function &optional start end)
7298 "Call FUNCTION at the head of all source blocks in the current buffer.
7299 Optional arguments START and END can be used to limit the range."
7300 (let ((start (or start (point-min)))
7301 (end (or end (point-max))))
7302 (save-excursion
7303 (goto-char start)
7304 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7305 (save-excursion
7306 (save-match-data
7307 (goto-char (match-beginning 0))
7308 (funcall function)))))))
7310 (defun org-hide-block-toggle-all ()
7311 "Toggle the visibility of all blocks in the current buffer."
7312 (org-block-map 'org-hide-block-toggle))
7314 (defun org-hide-block-all ()
7315 "Fold all blocks in the current buffer."
7316 (interactive)
7317 (org-show-block-all)
7318 (org-block-map 'org-hide-block-toggle-maybe))
7320 (defun org-show-block-all ()
7321 "Unfold all blocks in the current buffer."
7322 (interactive)
7323 (mapc 'delete-overlay org-hide-block-overlays)
7324 (setq org-hide-block-overlays nil))
7326 (defun org-hide-block-toggle-maybe ()
7327 "Toggle visibility of block at point.
7328 Unlike to `org-hide-block-toggle', this function does not throw
7329 an error. Return a non-nil value when toggling is successful."
7330 (interactive)
7331 (ignore-errors (org-hide-block-toggle)))
7333 (defun org-hide-block-toggle (&optional force)
7334 "Toggle the visibility of the current block.
7335 When optional argument FORCE is `off', make block visible. If it
7336 is non-nil, hide it unconditionally. Throw an error when not at
7337 a block. Return a non-nil value when toggling is successful."
7338 (interactive)
7339 (let ((element (org-element-at-point)))
7340 (unless (memq (org-element-type element)
7341 '(center-block comment-block dynamic-block example-block
7342 export-block quote-block special-block
7343 src-block verse-block))
7344 (user-error "Not at a block"))
7345 (let* ((start (save-excursion
7346 (goto-char (org-element-property :post-affiliated element))
7347 (line-end-position)))
7348 (end (save-excursion
7349 (goto-char (org-element-property :end element))
7350 (skip-chars-backward " \r\t\n")
7351 (line-end-position)))
7352 (overlays (overlays-at start)))
7353 (cond
7354 ;; Do nothing when not before or at the block opening line or
7355 ;; at the block closing line.
7356 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7357 ((and (not (eq force 'off))
7358 (not (memq t (mapcar
7359 (lambda (o)
7360 (eq (overlay-get o 'invisible) 'org-hide-block))
7361 overlays))))
7362 (let ((ov (make-overlay start end)))
7363 (overlay-put ov 'invisible 'org-hide-block)
7364 ;; Make the block accessible to `isearch'.
7365 (overlay-put
7366 ov 'isearch-open-invisible
7367 (lambda (ov)
7368 (when (memq ov org-hide-block-overlays)
7369 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7370 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7371 (delete-overlay ov))))
7372 (push ov org-hide-block-overlays)
7373 ;; When the block is hidden away, make sure point is left in
7374 ;; a visible part of the buffer.
7375 (when (> (line-beginning-position) start)
7376 (goto-char start)
7377 (beginning-of-line))
7378 ;; Signal successful toggling.
7380 ((or (not force) (eq force 'off))
7381 (dolist (ov overlays t)
7382 (when (memq ov org-hide-block-overlays)
7383 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7384 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7385 (delete-overlay ov))))))))
7387 ;; org-tab-after-check-for-cycling-hook
7388 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7389 ;; Remove overlays when changing major mode
7390 (add-hook 'org-mode-hook
7391 (lambda () (org-add-hook 'change-major-mode-hook
7392 'org-show-block-all 'append 'local)))
7394 ;;; Org-goto
7396 (defvar org-goto-window-configuration nil)
7397 (defvar org-goto-marker nil)
7398 (defvar org-goto-map)
7399 (defun org-goto-map ()
7400 "Set the keymap `org-goto'."
7401 (setq org-goto-map
7402 (let ((map (make-sparse-keymap)))
7403 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7404 mouse-drag-region universal-argument org-occur))
7405 cmd)
7406 (while (setq cmd (pop cmds))
7407 (substitute-key-definition cmd cmd map global-map)))
7408 (suppress-keymap map)
7409 (org-defkey map "\C-m" 'org-goto-ret)
7410 (org-defkey map [(return)] 'org-goto-ret)
7411 (org-defkey map [(left)] 'org-goto-left)
7412 (org-defkey map [(right)] 'org-goto-right)
7413 (org-defkey map [(control ?g)] 'org-goto-quit)
7414 (org-defkey map "\C-i" 'org-cycle)
7415 (org-defkey map [(tab)] 'org-cycle)
7416 (org-defkey map [(down)] 'outline-next-visible-heading)
7417 (org-defkey map [(up)] 'outline-previous-visible-heading)
7418 (if org-goto-auto-isearch
7419 (if (fboundp 'define-key-after)
7420 (define-key-after map [t] 'org-goto-local-auto-isearch)
7421 nil)
7422 (org-defkey map "q" 'org-goto-quit)
7423 (org-defkey map "n" 'outline-next-visible-heading)
7424 (org-defkey map "p" 'outline-previous-visible-heading)
7425 (org-defkey map "f" 'outline-forward-same-level)
7426 (org-defkey map "b" 'outline-backward-same-level)
7427 (org-defkey map "u" 'outline-up-heading))
7428 (org-defkey map "/" 'org-occur)
7429 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7430 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7431 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7432 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7433 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7434 map)))
7436 (defconst org-goto-help
7437 "Browse buffer copy, to find location or copy text.%s
7438 RET=jump to location C-g=quit and return to previous location
7439 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7441 (defvar org-goto-start-pos) ; dynamically scoped parameter
7443 (defun org-goto (&optional alternative-interface)
7444 "Look up a different location in the current file, keeping current visibility.
7446 When you want look-up or go to a different location in a
7447 document, the fastest way is often to fold the entire buffer and
7448 then dive into the tree. This method has the disadvantage, that
7449 the previous location will be folded, which may not be what you
7450 want.
7452 This command works around this by showing a copy of the current
7453 buffer in an indirect buffer, in overview mode. You can dive
7454 into the tree in that copy, use org-occur and incremental search
7455 to find a location. When pressing RET or `Q', the command
7456 returns to the original buffer in which the visibility is still
7457 unchanged. After RET it will also jump to the location selected
7458 in the indirect buffer and expose the headline hierarchy above.
7460 With a prefix argument, use the alternative interface: e.g. if
7461 `org-goto-interface' is 'outline use 'outline-path-completion."
7462 (interactive "P")
7463 (org-goto-map)
7464 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7465 (org-refile-use-outline-path t)
7466 (org-refile-target-verify-function nil)
7467 (interface
7468 (if (not alternative-interface)
7469 org-goto-interface
7470 (if (eq org-goto-interface 'outline)
7471 'outline-path-completion
7472 'outline)))
7473 (org-goto-start-pos (point))
7474 (selected-point
7475 (if (eq interface 'outline)
7476 (car (org-get-location (current-buffer) org-goto-help))
7477 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7478 (org-refile-check-position pa)
7479 (nth 3 pa)))))
7480 (if selected-point
7481 (progn
7482 (org-mark-ring-push org-goto-start-pos)
7483 (goto-char selected-point)
7484 (if (or (outline-invisible-p) (org-invisible-p2))
7485 (org-show-context 'org-goto)))
7486 (message "Quit"))))
7488 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7489 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7490 (defvar org-goto-local-auto-isearch-map) ; defined below
7492 (defun org-get-location (buf help)
7493 "Let the user select a location in the Org-mode buffer BUF.
7494 This function uses a recursive edit. It returns the selected position
7495 or nil."
7496 (org-no-popups
7497 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7498 (isearch-hide-immediately nil)
7499 (isearch-search-fun-function
7500 (lambda () 'org-goto-local-search-headings))
7501 (org-goto-selected-point org-goto-exit-command))
7502 (save-excursion
7503 (save-window-excursion
7504 (delete-other-windows)
7505 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7506 (org-pop-to-buffer-same-window
7507 (condition-case nil
7508 (make-indirect-buffer (current-buffer) "*org-goto*")
7509 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7510 (with-output-to-temp-buffer "*Org Help*"
7511 (princ (format help (if org-goto-auto-isearch
7512 " Just type for auto-isearch."
7513 " n/p/f/b/u to navigate, q to quit."))))
7514 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7515 (setq buffer-read-only nil)
7516 (let ((org-startup-truncated t)
7517 (org-startup-folded nil)
7518 (org-startup-align-all-tables nil))
7519 (org-mode)
7520 (org-overview))
7521 (setq buffer-read-only t)
7522 (if (and (boundp 'org-goto-start-pos)
7523 (integer-or-marker-p org-goto-start-pos))
7524 (progn (goto-char org-goto-start-pos)
7525 (when (outline-invisible-p)
7526 (org-show-set-visibility 'lineage)))
7527 (goto-char (point-min)))
7528 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7529 (message "Select location and press RET")
7530 (use-local-map org-goto-map)
7531 (recursive-edit)))
7532 (kill-buffer "*org-goto*")
7533 (cons org-goto-selected-point org-goto-exit-command))))
7535 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7536 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7537 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7538 (if (fboundp 'isearch-other-control-char)
7539 (progn
7540 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7541 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7542 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7543 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7544 (define-key org-goto-local-auto-isearch-map [return] nil))
7546 (defun org-goto-local-search-headings (string bound noerror)
7547 "Search and make sure that any matches are in headlines."
7548 (catch 'return
7549 (while (if isearch-forward
7550 (search-forward string bound noerror)
7551 (search-backward string bound noerror))
7552 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7553 (and (member :headline context)
7554 (not (member :tags context))))
7555 (throw 'return (point))))))
7557 (defun org-goto-local-auto-isearch ()
7558 "Start isearch."
7559 (interactive)
7560 (goto-char (point-min))
7561 (let ((keys (this-command-keys)))
7562 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7563 (isearch-mode t)
7564 (isearch-process-search-char (string-to-char keys)))))
7566 (defun org-goto-ret (&optional arg)
7567 "Finish `org-goto' by going to the new location."
7568 (interactive "P")
7569 (setq org-goto-selected-point (point)
7570 org-goto-exit-command 'return)
7571 (throw 'exit nil))
7573 (defun org-goto-left ()
7574 "Finish `org-goto' by going to the new location."
7575 (interactive)
7576 (if (org-at-heading-p)
7577 (progn
7578 (beginning-of-line 1)
7579 (setq org-goto-selected-point (point)
7580 org-goto-exit-command 'left)
7581 (throw 'exit nil))
7582 (user-error "Not on a heading")))
7584 (defun org-goto-right ()
7585 "Finish `org-goto' by going to the new location."
7586 (interactive)
7587 (if (org-at-heading-p)
7588 (progn
7589 (setq org-goto-selected-point (point)
7590 org-goto-exit-command 'right)
7591 (throw 'exit nil))
7592 (user-error "Not on a heading")))
7594 (defun org-goto-quit ()
7595 "Finish `org-goto' without cursor motion."
7596 (interactive)
7597 (setq org-goto-selected-point nil)
7598 (setq org-goto-exit-command 'quit)
7599 (throw 'exit nil))
7601 ;;; Indirect buffer display of subtrees
7603 (defvar org-indirect-dedicated-frame nil
7604 "This is the frame being used for indirect tree display.")
7605 (defvar org-last-indirect-buffer nil)
7607 (defun org-tree-to-indirect-buffer (&optional arg)
7608 "Create indirect buffer and narrow it to current subtree.
7609 With a numerical prefix ARG, go up to this level and then take that tree.
7610 If ARG is negative, go up that many levels.
7612 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7613 indirect buffer previously made with this command, to avoid proliferation of
7614 indirect buffers. However, when you call the command with a \
7615 \\[universal-argument] prefix, or
7616 when `org-indirect-buffer-display' is `new-frame', the last buffer
7617 is kept so that you can work with several indirect buffers at the same time.
7618 If `org-indirect-buffer-display' is `dedicated-frame', the \
7619 \\[universal-argument] prefix also
7620 requests that a new frame be made for the new buffer, so that the dedicated
7621 frame is not changed."
7622 (interactive "P")
7623 (let ((cbuf (current-buffer))
7624 (cwin (selected-window))
7625 (pos (point))
7626 beg end level heading ibuf)
7627 (save-excursion
7628 (org-back-to-heading t)
7629 (when (numberp arg)
7630 (setq level (org-outline-level))
7631 (if (< arg 0) (setq arg (+ level arg)))
7632 (while (> (setq level (org-outline-level)) arg)
7633 (org-up-heading-safe)))
7634 (setq beg (point)
7635 heading (org-get-heading))
7636 (org-end-of-subtree t t)
7637 (if (org-at-heading-p) (backward-char 1))
7638 (setq end (point)))
7639 (if (and (buffer-live-p org-last-indirect-buffer)
7640 (not (eq org-indirect-buffer-display 'new-frame))
7641 (not arg))
7642 (kill-buffer org-last-indirect-buffer))
7643 (setq ibuf (org-get-indirect-buffer cbuf heading)
7644 org-last-indirect-buffer ibuf)
7645 (cond
7646 ((or (eq org-indirect-buffer-display 'new-frame)
7647 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7648 (select-frame (make-frame))
7649 (delete-other-windows)
7650 (org-pop-to-buffer-same-window ibuf)
7651 (org-set-frame-title heading))
7652 ((eq org-indirect-buffer-display 'dedicated-frame)
7653 (raise-frame
7654 (select-frame (or (and org-indirect-dedicated-frame
7655 (frame-live-p org-indirect-dedicated-frame)
7656 org-indirect-dedicated-frame)
7657 (setq org-indirect-dedicated-frame (make-frame)))))
7658 (delete-other-windows)
7659 (org-pop-to-buffer-same-window ibuf)
7660 (org-set-frame-title (concat "Indirect: " heading)))
7661 ((eq org-indirect-buffer-display 'current-window)
7662 (org-pop-to-buffer-same-window ibuf))
7663 ((eq org-indirect-buffer-display 'other-window)
7664 (pop-to-buffer ibuf))
7665 (t (error "Invalid value")))
7666 (if (featurep 'xemacs)
7667 (save-excursion (org-mode) (turn-on-font-lock)))
7668 (narrow-to-region beg end)
7669 (show-all)
7670 (goto-char pos)
7671 (run-hook-with-args 'org-cycle-hook 'all)
7672 (and (window-live-p cwin) (select-window cwin))))
7674 (defun org-get-indirect-buffer (&optional buffer heading)
7675 (setq buffer (or buffer (current-buffer)))
7676 (let ((n 1) (base (buffer-name buffer)) bname)
7677 (while (buffer-live-p
7678 (get-buffer
7679 (setq bname
7680 (concat base "-"
7681 (if heading (concat heading "-" (number-to-string n))
7682 (number-to-string n))))))
7683 (setq n (1+ n)))
7684 (condition-case nil
7685 (make-indirect-buffer buffer bname 'clone)
7686 (error (make-indirect-buffer buffer bname)))))
7688 (defun org-set-frame-title (title)
7689 "Set the title of the current frame to the string TITLE."
7690 ;; FIXME: how to name a single frame in XEmacs???
7691 (unless (featurep 'xemacs)
7692 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7694 ;;;; Structure editing
7696 ;;; Inserting headlines
7698 (defun org-previous-line-empty-p (&optional next)
7699 "Is the previous line a blank line?
7700 When NEXT is non-nil, check the next line instead."
7701 (save-excursion
7702 (and (not (bobp))
7703 (or (beginning-of-line (if next 2 0)) t)
7704 (save-match-data
7705 (looking-at "[ \t]*$")))))
7707 (defun org-insert-heading (&optional arg invisible-ok top-level)
7708 "Insert a new heading or an item with the same depth at point.
7710 If point is at the beginning of a heading or a list item, insert
7711 a new heading or a new item above the current one. If point is
7712 at the beginning of a normal line, turn the line into a heading.
7714 If point is in the middle of a headline or a list item, split the
7715 headline or the item and create a new headline/item with the text
7716 in the current line after point \(see `org-M-RET-may-split-line'
7717 on how to modify this behavior).
7719 With one universal prefix argument, set the user option
7720 `org-insert-heading-respect-content' to t for the duration of
7721 the command. This modifies the behavior described above in this
7722 ways: on list items and at the beginning of normal lines, force
7723 the insertion of a heading after the current subtree.
7725 With two universal prefix arguments, insert the heading at the
7726 end of the grandparent subtree. For example, if point is within
7727 a 2nd-level heading, then it will insert a 2nd-level heading at
7728 the end of the 1st-level parent heading.
7730 If point is at the beginning of a headline, insert a sibling
7731 before the current headline. If point is not at the beginning,
7732 split the line and create a new headline with the text in the
7733 current line after point \(see `org-M-RET-may-split-line' on how
7734 to modify this behavior).
7736 If point is at the beginning of a normal line, turn this line
7737 into a heading.
7739 When INVISIBLE-OK is set, stop at invisible headlines when going
7740 back. This is important for non-interactive uses of the
7741 command.
7743 When optional argument TOP-LEVEL is non-nil, insert a level 1
7744 heading, unconditionally."
7745 (interactive "P")
7746 (if (org-called-interactively-p 'any) (org-reveal))
7747 (let ((itemp (and (not top-level) (org-in-item-p)))
7748 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7749 (respect-content (or org-insert-heading-respect-content
7750 (equal arg '(4))))
7751 (initial-content ""))
7753 (cond
7755 ((or (= (buffer-size) 0)
7756 (and (not (save-excursion
7757 (and (ignore-errors (org-back-to-heading invisible-ok))
7758 (org-at-heading-p))))
7759 (or arg (not itemp))))
7760 ;; At beginning of buffer or so high up that only a heading
7761 ;; makes sense.
7762 (cond ((and (bolp) (not respect-content)) (insert "* "))
7763 ((not respect-content)
7764 (unless may-split (end-of-line))
7765 (insert "\n* "))
7766 ((re-search-forward org-outline-regexp-bol nil t)
7767 (beginning-of-line)
7768 (insert "* \n")
7769 (backward-char))
7770 (t (goto-char (point-max))
7771 (insert "\n* ")))
7772 (run-hooks 'org-insert-heading-hook))
7774 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7777 ;; Maybe move at the end of the subtree
7778 (when (equal arg '(16))
7779 (org-up-heading-safe)
7780 (org-end-of-subtree t))
7781 ;; Insert a heading
7782 (save-restriction
7783 (widen)
7784 (let* ((level nil)
7785 (on-heading (org-at-heading-p))
7786 (empty-line-p (if on-heading
7787 (org-previous-line-empty-p)
7788 ;; We will decide later
7789 nil))
7790 ;; Get a level string to fall back on.
7791 (fix-level
7792 (if (org-before-first-heading-p) "*"
7793 (save-excursion
7794 (org-back-to-heading t)
7795 (if (org-previous-line-empty-p) (setq empty-line-p t))
7796 (looking-at org-outline-regexp)
7797 (make-string (1- (length (match-string 0))) ?*))))
7798 (stars
7799 (save-excursion
7800 (condition-case nil
7801 (if top-level "* "
7802 (org-back-to-heading invisible-ok)
7803 (when (and (not on-heading)
7804 (featurep 'org-inlinetask)
7805 (integerp org-inlinetask-min-level)
7806 (>= (length (match-string 0))
7807 org-inlinetask-min-level))
7808 ;; Find a heading level before the inline
7809 ;; task.
7810 (while (and (setq level (org-up-heading-safe))
7811 (>= level org-inlinetask-min-level)))
7812 (if (org-at-heading-p)
7813 (org-back-to-heading invisible-ok)
7814 (error "This should not happen")))
7815 (unless (and (save-excursion
7816 (save-match-data
7817 (org-backward-heading-same-level
7818 1 invisible-ok))
7819 (= (point) (match-beginning 0)))
7820 (not (org-previous-line-empty-p t)))
7821 (setq empty-line-p (or empty-line-p
7822 (org-previous-line-empty-p))))
7823 (match-string 0))
7824 (error (or fix-level "* ")))))
7825 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7826 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7827 pos hide-previous previous-pos)
7829 ;; If we insert after content, move there and clean up
7830 ;; whitespace.
7831 (when (and respect-content
7832 (not (org-looking-at-p org-outline-regexp-bol)))
7833 (if (not (org-before-first-heading-p))
7834 (org-end-of-subtree nil t)
7835 (re-search-forward org-outline-regexp-bol)
7836 (beginning-of-line 0))
7837 (skip-chars-backward " \r\t\n")
7838 (and (not (looking-back "^\\*+"))
7839 (looking-at "[ \t]+") (replace-match ""))
7840 (unless (eobp) (forward-char 1))
7841 (when (looking-at "^\\*")
7842 (unless (bobp) (backward-char 1))
7843 (insert "\n")))
7845 ;; If we are splitting, grab the text that should be moved
7846 ;; to the new headline.
7847 (when may-split
7848 (if (org-on-heading-p)
7849 ;; This is a heading: split intelligently (keeping
7850 ;; tags).
7851 (let ((pos (point)))
7852 (beginning-of-line)
7853 (unless (looking-at org-complex-heading-regexp)
7854 (error "This should not happen"))
7855 (when (and (match-beginning 4)
7856 (> pos (match-beginning 4))
7857 (< pos (match-end 4)))
7858 (setq initial-content (buffer-substring pos (match-end 4)))
7859 (goto-char pos)
7860 (delete-region (point) (match-end 4))
7861 (if (looking-at "[ \t]*$")
7862 (replace-match "")
7863 (insert (make-string (length initial-content) ?\s)))
7864 (setq initial-content (org-trim initial-content)))
7865 (goto-char pos))
7866 ;; A normal line.
7867 (setq initial-content
7868 (org-trim
7869 (delete-and-extract-region (point) (line-end-position))))))
7871 ;; If we are at the beginning of the line, insert before it.
7872 ;; Otherwise, after it.
7873 (cond
7874 ((and (bolp) (looking-at "[ \t]*$")))
7875 ((bolp) (save-excursion (insert "\n")))
7876 (t (end-of-line)
7877 (insert "\n")))
7879 ;; Insert the new heading
7880 (insert stars)
7881 (just-one-space)
7882 (insert initial-content)
7883 (unless (and blank (org-previous-line-empty-p))
7884 (org-N-empty-lines-before-current (if blank 1 0)))
7885 ;; Adjust visibility, which may be messed up if we removed
7886 ;; blank lines while previous entry was hidden.
7887 (let ((bol (line-beginning-position)))
7888 (dolist (o (overlays-at (1- bol)))
7889 (when (and (eq (overlay-get o 'invisible) 'outline)
7890 (eq (overlay-end o) bol))
7891 (move-overlay o (overlay-start o) (1- bol)))))
7892 (run-hooks 'org-insert-heading-hook)))))))
7894 (defun org-N-empty-lines-before-current (N)
7895 "Make the number of empty lines before current exactly N.
7896 So this will delete or add empty lines."
7897 (save-excursion
7898 (beginning-of-line)
7899 (let ((p (point)))
7900 (skip-chars-backward " \r\t\n")
7901 (unless (bolp) (forward-line))
7902 (delete-region (point) p))
7903 (when (> N 0) (insert (make-string N ?\n)))))
7905 (defun org-get-heading (&optional no-tags no-todo)
7906 "Return the heading of the current entry, without the stars.
7907 When NO-TAGS is non-nil, don't include tags.
7908 When NO-TODO is non-nil, don't include TODO keywords."
7909 (save-excursion
7910 (org-back-to-heading t)
7911 (cond
7912 ((and no-tags no-todo)
7913 (looking-at org-complex-heading-regexp)
7914 (match-string 4))
7915 (no-tags
7916 (looking-at (concat org-outline-regexp
7917 "\\(.*?\\)"
7918 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7919 (match-string 1))
7920 (no-todo
7921 (looking-at org-todo-line-regexp)
7922 (match-string 3))
7923 (t (looking-at org-heading-regexp)
7924 (match-string 2)))))
7926 (defvar orgstruct-mode) ; defined below
7928 (defun org-heading-components ()
7929 "Return the components of the current heading.
7930 This is a list with the following elements:
7931 - the level as an integer
7932 - the reduced level, different if `org-odd-levels-only' is set.
7933 - the TODO keyword, or nil
7934 - the priority character, like ?A, or nil if no priority is given
7935 - the headline text itself, or the tags string if no headline text
7936 - the tags string, or nil."
7937 (save-excursion
7938 (org-back-to-heading t)
7939 (if (let (case-fold-search)
7940 (looking-at
7941 (if orgstruct-mode
7942 org-heading-regexp
7943 org-complex-heading-regexp)))
7944 (if orgstruct-mode
7945 (list (length (match-string 1))
7946 (org-reduced-level (length (match-string 1)))
7949 (match-string 2)
7950 nil)
7951 (list (length (match-string 1))
7952 (org-reduced-level (length (match-string 1)))
7953 (org-match-string-no-properties 2)
7954 (and (match-end 3) (aref (match-string 3) 2))
7955 (org-match-string-no-properties 4)
7956 (org-match-string-no-properties 5))))))
7958 (defun org-get-entry ()
7959 "Get the entry text, after heading, entire subtree."
7960 (save-excursion
7961 (org-back-to-heading t)
7962 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7964 (defun org-insert-heading-after-current ()
7965 "Insert a new heading with same level as current, after current subtree."
7966 (interactive)
7967 (org-back-to-heading)
7968 (org-insert-heading)
7969 (org-move-subtree-down)
7970 (end-of-line 1))
7972 (defun org-insert-heading-respect-content (&optional invisible-ok)
7973 "Insert heading with `org-insert-heading-respect-content' set to t."
7974 (interactive)
7975 (org-insert-heading '(4) invisible-ok))
7977 (defun org-insert-todo-heading-respect-content (&optional force-state)
7978 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7979 (interactive)
7980 (org-insert-todo-heading force-state '(4)))
7982 (defun org-insert-todo-heading (arg &optional force-heading)
7983 "Insert a new heading with the same level and TODO state as current heading.
7984 If the heading has no TODO state, or if the state is DONE, use the first
7985 state (TODO by default). Also with one prefix arg, force first state. With
7986 two prefix args, force inserting at the end of the parent subtree."
7987 (interactive "P")
7988 (when (or force-heading (not (org-insert-item 'checkbox)))
7989 (org-insert-heading (or (and (equal arg '(16)) '(16))
7990 force-heading))
7991 (save-excursion
7992 (org-back-to-heading)
7993 (outline-previous-heading)
7994 (looking-at org-todo-line-regexp))
7995 (let*
7996 ((new-mark-x
7997 (if (or (equal arg '(4))
7998 (not (match-beginning 2))
7999 (member (match-string 2) org-done-keywords))
8000 (car org-todo-keywords-1)
8001 (match-string 2)))
8002 (new-mark
8004 (run-hook-with-args-until-success
8005 'org-todo-get-default-hook new-mark-x nil)
8006 new-mark-x)))
8007 (beginning-of-line 1)
8008 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8009 (if org-treat-insert-todo-heading-as-state-change
8010 (org-todo new-mark)
8011 (insert new-mark " "))))
8012 (when org-provide-todo-statistics
8013 (org-update-parent-todo-statistics))))
8015 (defun org-insert-subheading (arg)
8016 "Insert a new subheading and demote it.
8017 Works for outline headings and for plain lists alike."
8018 (interactive "P")
8019 (org-insert-heading arg)
8020 (cond
8021 ((org-at-heading-p) (org-do-demote))
8022 ((org-at-item-p) (org-indent-item))))
8024 (defun org-insert-todo-subheading (arg)
8025 "Insert a new subheading with TODO keyword or checkbox and demote it.
8026 Works for outline headings and for plain lists alike."
8027 (interactive "P")
8028 (org-insert-todo-heading arg)
8029 (cond
8030 ((org-at-heading-p) (org-do-demote))
8031 ((org-at-item-p) (org-indent-item))))
8033 ;;; Promotion and Demotion
8035 (defvar org-after-demote-entry-hook nil
8036 "Hook run after an entry has been demoted.
8037 The cursor will be at the beginning of the entry.
8038 When a subtree is being demoted, the hook will be called for each node.")
8040 (defvar org-after-promote-entry-hook nil
8041 "Hook run after an entry has been promoted.
8042 The cursor will be at the beginning of the entry.
8043 When a subtree is being promoted, the hook will be called for each node.")
8045 (defun org-promote-subtree ()
8046 "Promote the entire subtree.
8047 See also `org-promote'."
8048 (interactive)
8049 (save-excursion
8050 (org-with-limited-levels (org-map-tree 'org-promote)))
8051 (org-fix-position-after-promote))
8053 (defun org-demote-subtree ()
8054 "Demote the entire subtree. See `org-demote'.
8055 See also `org-promote'."
8056 (interactive)
8057 (save-excursion
8058 (org-with-limited-levels (org-map-tree 'org-demote)))
8059 (org-fix-position-after-promote))
8062 (defun org-do-promote ()
8063 "Promote the current heading higher up the tree.
8064 If the region is active in `transient-mark-mode', promote all headings
8065 in the region."
8066 (interactive)
8067 (save-excursion
8068 (if (org-region-active-p)
8069 (org-map-region 'org-promote (region-beginning) (region-end))
8070 (org-promote)))
8071 (org-fix-position-after-promote))
8073 (defun org-do-demote ()
8074 "Demote the current heading lower down the tree.
8075 If the region is active in `transient-mark-mode', demote all headings
8076 in the region."
8077 (interactive)
8078 (save-excursion
8079 (if (org-region-active-p)
8080 (org-map-region 'org-demote (region-beginning) (region-end))
8081 (org-demote)))
8082 (org-fix-position-after-promote))
8084 (defun org-fix-position-after-promote ()
8085 "Make sure that after pro/demotion cursor position is right."
8086 (let ((pos (point)))
8087 (when (save-excursion
8088 (beginning-of-line 1)
8089 (looking-at org-todo-line-regexp)
8090 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8091 (cond ((eobp) (insert " "))
8092 ((eolp) (insert " "))
8093 ((equal (char-after) ?\ ) (forward-char 1))))))
8095 (defun org-current-level ()
8096 "Return the level of the current entry, or nil if before the first headline.
8097 The level is the number of stars at the beginning of the
8098 headline. Use `org-reduced-level' to remove the effect of
8099 `org-odd-levels'. Unlike to `org-outline-level', this function
8100 ignores inlinetasks."
8101 (let ((level (org-with-limited-levels (org-outline-level))))
8102 (and (> level 0) level)))
8104 (defun org-get-previous-line-level ()
8105 "Return the outline depth of the last headline before the current line.
8106 Returns 0 for the first headline in the buffer, and nil if before the
8107 first headline."
8108 (and (org-current-level)
8109 (or (and (/= (line-beginning-position) (point-min))
8110 (save-excursion (beginning-of-line 0) (org-current-level)))
8111 0)))
8113 (defun org-reduced-level (l)
8114 "Compute the effective level of a heading.
8115 This takes into account the setting of `org-odd-levels-only'."
8116 (cond
8117 ((zerop l) 0)
8118 (org-odd-levels-only (1+ (floor (/ l 2))))
8119 (t l)))
8121 (defun org-level-increment ()
8122 "Return the number of stars that will be added or removed at a
8123 time to headlines when structure editing, based on the value of
8124 `org-odd-levels-only'."
8125 (if org-odd-levels-only 2 1))
8127 (defun org-get-valid-level (level &optional change)
8128 "Rectify a level change under the influence of `org-odd-levels-only'
8129 LEVEL is a current level, CHANGE is by how much the level should be
8130 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8131 even level numbers will become the next higher odd number."
8132 (if org-odd-levels-only
8133 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8134 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8135 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8136 (max 1 (+ level (or change 0)))))
8138 (if (boundp 'define-obsolete-function-alias)
8139 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8140 (define-obsolete-function-alias 'org-get-legal-level
8141 'org-get-valid-level)
8142 (define-obsolete-function-alias 'org-get-legal-level
8143 'org-get-valid-level "23.1")))
8145 (defun org-promote ()
8146 "Promote the current heading higher up the tree."
8147 (org-with-wide-buffer
8148 (org-back-to-heading t)
8149 (let* ((after-change-functions (remq 'flyspell-after-change-function
8150 after-change-functions))
8151 (level (save-match-data (funcall outline-level)))
8152 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8153 (diff (abs (- level (length up-head) -1))))
8154 (cond
8155 ((and (= level 1) org-allow-promoting-top-level-subtree)
8156 (replace-match "# " nil t))
8157 ((= level 1)
8158 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8159 (t (replace-match up-head nil t)))
8160 (unless (= level 1)
8161 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8162 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8163 (run-hooks 'org-after-promote-entry-hook))))
8165 (defun org-demote ()
8166 "Demote the current heading lower down the tree."
8167 (org-with-wide-buffer
8168 (org-back-to-heading t)
8169 (let* ((after-change-functions (remq 'flyspell-after-change-function
8170 after-change-functions))
8171 (level (save-match-data (funcall outline-level)))
8172 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8173 (diff (abs (- level (length down-head) -1))))
8174 (replace-match down-head nil t)
8175 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8176 (when org-adapt-indentation (org-fixup-indentation diff))
8177 (run-hooks 'org-after-demote-entry-hook))))
8179 (defun org-cycle-level ()
8180 "Cycle the level of an empty headline through possible states.
8181 This goes first to child, then to parent, level, then up the hierarchy.
8182 After top level, it switches back to sibling level."
8183 (interactive)
8184 (let ((org-adapt-indentation nil))
8185 (when (org-point-at-end-of-empty-headline)
8186 (setq this-command 'org-cycle-level) ; Only needed for caching
8187 (let ((cur-level (org-current-level))
8188 (prev-level (org-get-previous-line-level)))
8189 (cond
8190 ;; If first headline in file, promote to top-level.
8191 ((= prev-level 0)
8192 (loop repeat (/ (- cur-level 1) (org-level-increment))
8193 do (org-do-promote)))
8194 ;; If same level as prev, demote one.
8195 ((= prev-level cur-level)
8196 (org-do-demote))
8197 ;; If parent is top-level, promote to top level if not already.
8198 ((= prev-level 1)
8199 (loop repeat (/ (- cur-level 1) (org-level-increment))
8200 do (org-do-promote)))
8201 ;; If top-level, return to prev-level.
8202 ((= cur-level 1)
8203 (loop repeat (/ (- prev-level 1) (org-level-increment))
8204 do (org-do-demote)))
8205 ;; If less than prev-level, promote one.
8206 ((< cur-level prev-level)
8207 (org-do-promote))
8208 ;; If deeper than prev-level, promote until higher than
8209 ;; prev-level.
8210 ((> cur-level prev-level)
8211 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8212 do (org-do-promote))))
8213 t))))
8215 (defun org-map-tree (fun)
8216 "Call FUN for every heading underneath the current one."
8217 (org-back-to-heading)
8218 (let ((level (funcall outline-level)))
8219 (save-excursion
8220 (funcall fun)
8221 (while (and (progn
8222 (outline-next-heading)
8223 (> (funcall outline-level) level))
8224 (not (eobp)))
8225 (funcall fun)))))
8227 (defun org-map-region (fun beg end)
8228 "Call FUN for every heading between BEG and END."
8229 (let ((org-ignore-region t))
8230 (save-excursion
8231 (setq end (copy-marker end))
8232 (goto-char beg)
8233 (if (and (re-search-forward org-outline-regexp-bol nil t)
8234 (< (point) end))
8235 (funcall fun))
8236 (while (and (progn
8237 (outline-next-heading)
8238 (< (point) end))
8239 (not (eobp)))
8240 (funcall fun)))))
8242 (defun org-fixup-indentation (diff)
8243 "Change the indentation in the current entry by DIFF.
8245 DIFF is an integer. Indentation is done according to the
8246 following rules:
8248 - Planning information and property drawers are always indented
8249 according to the new level of the headline;
8251 - Footnote definitions and their contents are ignored;
8253 - Inlinetasks' boundaries are not shifted;
8255 - Empty lines are ignored;
8257 - Other lines' indentation are shifted by DIFF columns, unless
8258 it would introduce a structural change in the document, in
8259 which case no shifting is done at all.
8261 Assume point is at a heading or an inlinetask beginning."
8262 (org-with-wide-buffer
8263 (narrow-to-region (line-beginning-position)
8264 (save-excursion
8265 (if (org-with-limited-levels (org-at-heading-p))
8266 (org-with-limited-levels (outline-next-heading))
8267 (org-inlinetask-goto-end))
8268 (point)))
8269 (forward-line)
8270 ;; Indent properly planning info and property drawer.
8271 (when (org-looking-at-p org-planning-line-re)
8272 (org-indent-line)
8273 (forward-line))
8274 (when (looking-at org-property-drawer-re)
8275 (goto-char (match-end 0))
8276 (forward-line)
8277 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8278 (catch 'no-shift
8279 (when (zerop diff) (throw 'no-shift nil))
8280 ;; If DIFF is negative, first check if a shift is possible at all
8281 ;; (e.g., it doesn't break structure). This can only happen if
8282 ;; some contents are not properly indented.
8283 (let ((case-fold-search t))
8284 (when (< diff 0)
8285 (let ((diff (- diff))
8286 (forbidden-re (concat org-outline-regexp
8287 "\\|"
8288 (substring org-footnote-definition-re 1))))
8289 (save-excursion
8290 (while (not (eobp))
8291 (cond
8292 ((org-looking-at-p "[ \t]*$") (forward-line))
8293 ((and (org-looking-at-p org-footnote-definition-re)
8294 (let ((e (org-element-at-point)))
8295 (and (eq (org-element-type e) 'footnote-definition)
8296 (goto-char (org-element-property :end e))))))
8297 ((org-looking-at-p org-outline-regexp) (forward-line))
8298 ;; Give up if shifting would move before column 0 or
8299 ;; if it would introduce a headline or a footnote
8300 ;; definition.
8302 (skip-chars-forward " \t")
8303 (let ((ind (current-column)))
8304 (when (or (< ind diff)
8305 (and (= ind diff) (org-looking-at-p forbidden-re)))
8306 (throw 'no-shift nil)))
8307 ;; Ignore contents of example blocks and source
8308 ;; blocks if their indentation is meant to be
8309 ;; preserved. Jump to block's closing line.
8310 (beginning-of-line)
8311 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8312 (let ((e (org-element-at-point)))
8313 (and (memq (org-element-type e)
8314 '(example-block src-block))
8315 (or org-src-preserve-indentation
8316 (org-element-property :preserve-indent e))
8317 (goto-char (org-element-property :end e))
8318 (progn (skip-chars-backward " \r\t\n")
8319 (beginning-of-line)
8320 t))))
8321 (forward-line))))))))
8322 ;; Shift lines but footnote definitions, inlinetasks boundaries
8323 ;; by DIFF. Also skip contents of source or example blocks
8324 ;; when indentation is meant to be preserved.
8325 (while (not (eobp))
8326 (cond
8327 ((and (org-looking-at-p org-footnote-definition-re)
8328 (let ((e (org-element-at-point)))
8329 (and (eq (org-element-type e) 'footnote-definition)
8330 (goto-char (org-element-property :end e))))))
8331 ((org-looking-at-p org-outline-regexp) (forward-line))
8332 ((org-looking-at-p "[ \t]*$") (forward-line))
8334 (org-indent-line-to (+ (org-get-indentation) diff))
8335 (beginning-of-line)
8336 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8337 (let ((e (org-element-at-point)))
8338 (and (memq (org-element-type e)
8339 '(example-block src-block))
8340 (or org-src-preserve-indentation
8341 (org-element-property :preserve-indent e))
8342 (goto-char (org-element-property :end e))
8343 (progn (skip-chars-backward " \r\t\n")
8344 (beginning-of-line)
8345 t))))
8346 (forward-line)))))))))
8348 (defun org-convert-to-odd-levels ()
8349 "Convert an org-mode file with all levels allowed to one with odd levels.
8350 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8351 level 5 etc."
8352 (interactive)
8353 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8354 (let ((outline-level 'org-outline-level)
8355 (org-odd-levels-only nil) n)
8356 (save-excursion
8357 (goto-char (point-min))
8358 (while (re-search-forward "^\\*\\*+ " nil t)
8359 (setq n (- (length (match-string 0)) 2))
8360 (while (>= (setq n (1- n)) 0)
8361 (org-demote))
8362 (end-of-line 1))))))
8364 (defun org-convert-to-oddeven-levels ()
8365 "Convert an org-mode file with only odd levels to one with odd/even levels.
8366 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8367 file contains a section with an even level, conversion would
8368 destroy the structure of the file. An error is signaled in this
8369 case."
8370 (interactive)
8371 (goto-char (point-min))
8372 ;; First check if there are no even levels
8373 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8374 (org-show-set-visibility 'canonical)
8375 (error "Not all levels are odd in this file. Conversion not possible"))
8376 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8377 (let ((outline-regexp org-outline-regexp)
8378 (outline-level 'org-outline-level)
8379 (org-odd-levels-only nil) n)
8380 (save-excursion
8381 (goto-char (point-min))
8382 (while (re-search-forward "^\\*\\*+ " nil t)
8383 (setq n (/ (1- (length (match-string 0))) 2))
8384 (while (>= (setq n (1- n)) 0)
8385 (org-promote))
8386 (end-of-line 1))))))
8388 (defun org-tr-level (n)
8389 "Make N odd if required."
8390 (if org-odd-levels-only (1+ (/ n 2)) n))
8392 ;;; Vertical tree motion, cutting and pasting of subtrees
8394 (defun org-move-subtree-up (&optional arg)
8395 "Move the current subtree up past ARG headlines of the same level."
8396 (interactive "p")
8397 (org-move-subtree-down (- (prefix-numeric-value arg))))
8399 (defun org-move-subtree-down (&optional arg)
8400 "Move the current subtree down past ARG headlines of the same level."
8401 (interactive "p")
8402 (setq arg (prefix-numeric-value arg))
8403 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8404 'org-get-last-sibling))
8405 (ins-point (make-marker))
8406 (cnt (abs arg))
8407 (col (current-column))
8408 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8409 ;; Select the tree
8410 (org-back-to-heading)
8411 (setq beg0 (point))
8412 (save-excursion
8413 (setq ne-beg (org-back-over-empty-lines))
8414 (setq beg (point)))
8415 (save-match-data
8416 (save-excursion (outline-end-of-heading)
8417 (setq folded (outline-invisible-p)))
8418 (progn (org-end-of-subtree nil t)
8419 (unless (eobp) (backward-char))))
8420 (outline-next-heading)
8421 (setq ne-end (org-back-over-empty-lines))
8422 (setq end (point))
8423 (goto-char beg0)
8424 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8425 ;; include less whitespace
8426 (save-excursion
8427 (goto-char beg)
8428 (forward-line (- ne-beg ne-end))
8429 (setq beg (point))))
8430 ;; Find insertion point, with error handling
8431 (while (> cnt 0)
8432 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8433 (progn (goto-char beg0)
8434 (user-error "Cannot move past superior level or buffer limit")))
8435 (setq cnt (1- cnt)))
8436 (if (> arg 0)
8437 ;; Moving forward - still need to move over subtree
8438 (progn (org-end-of-subtree t t)
8439 (save-excursion
8440 (org-back-over-empty-lines)
8441 (or (bolp) (newline)))))
8442 (setq ne-ins (org-back-over-empty-lines))
8443 (move-marker ins-point (point))
8444 (setq txt (buffer-substring beg end))
8445 (org-save-markers-in-region beg end)
8446 (delete-region beg end)
8447 (org-remove-empty-overlays-at beg)
8448 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8449 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8450 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8451 (let ((bbb (point)))
8452 (insert-before-markers txt)
8453 (org-reinstall-markers-in-region bbb)
8454 (move-marker ins-point bbb))
8455 (or (bolp) (insert "\n"))
8456 (setq ins-end (point))
8457 (goto-char ins-point)
8458 (org-skip-whitespace)
8459 (when (and (< arg 0)
8460 (org-first-sibling-p)
8461 (> ne-ins ne-beg))
8462 ;; Move whitespace back to beginning
8463 (save-excursion
8464 (goto-char ins-end)
8465 (let ((kill-whole-line t))
8466 (kill-line (- ne-ins ne-beg)) (point)))
8467 (insert (make-string (- ne-ins ne-beg) ?\n)))
8468 (move-marker ins-point nil)
8469 (if folded
8470 (hide-subtree)
8471 (org-show-entry)
8472 (show-children)
8473 (org-cycle-hide-drawers 'children))
8474 (org-clean-visibility-after-subtree-move)
8475 ;; move back to the initial column we were at
8476 (move-to-column col)))
8478 (defvar org-subtree-clip ""
8479 "Clipboard for cut and paste of subtrees.
8480 This is actually only a copy of the kill, because we use the normal kill
8481 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8483 (defvar org-subtree-clip-folded nil
8484 "Was the last copied subtree folded?
8485 This is used to fold the tree back after pasting.")
8487 (defun org-cut-subtree (&optional n)
8488 "Cut the current subtree into the clipboard.
8489 With prefix arg N, cut this many sequential subtrees.
8490 This is a short-hand for marking the subtree and then cutting it."
8491 (interactive "p")
8492 (org-copy-subtree n 'cut))
8494 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8495 "Copy the current subtree it in the clipboard.
8496 With prefix arg N, copy this many sequential subtrees.
8497 This is a short-hand for marking the subtree and then copying it.
8498 If CUT is non-nil, actually cut the subtree.
8499 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8500 of some markers in the region, even if CUT is non-nil. This is
8501 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8502 (interactive "p")
8503 (let (beg end folded (beg0 (point)))
8504 (if (org-called-interactively-p 'any)
8505 (org-back-to-heading nil) ; take what looks like a subtree
8506 (org-back-to-heading t)) ; take what is really there
8507 (setq beg (point))
8508 (skip-chars-forward " \t\r\n")
8509 (save-match-data
8510 (if nosubtrees
8511 (outline-next-heading)
8512 (save-excursion (outline-end-of-heading)
8513 (setq folded (outline-invisible-p)))
8514 (ignore-errors (org-forward-heading-same-level (1- n) t))
8515 (org-end-of-subtree t t)))
8516 ;; Include the end of an inlinetask
8517 (when (and (featurep 'org-inlinetask)
8518 (looking-at-p (concat (org-inlinetask-outline-regexp)
8519 "END[ \t]*$")))
8520 (end-of-line))
8521 (setq end (point))
8522 (goto-char beg0)
8523 (when (> end beg)
8524 (setq org-subtree-clip-folded folded)
8525 (when (or cut force-store-markers)
8526 (org-save-markers-in-region beg end))
8527 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8528 (setq org-subtree-clip (current-kill 0))
8529 (message "%s: Subtree(s) with %d characters"
8530 (if cut "Cut" "Copied")
8531 (length org-subtree-clip)))))
8533 (defun org-paste-subtree (&optional level tree for-yank remove)
8534 "Paste the clipboard as a subtree, with modification of headline level.
8535 The entire subtree is promoted or demoted in order to match a new headline
8536 level.
8538 If the cursor is at the beginning of a headline, the same level as
8539 that headline is used to paste the tree.
8541 If not, the new level is derived from the *visible* headings
8542 before and after the insertion point, and taken to be the inferior headline
8543 level of the two. So if the previous visible heading is level 3 and the
8544 next is level 4 (or vice versa), level 4 will be used for insertion.
8545 This makes sure that the subtree remains an independent subtree and does
8546 not swallow low level entries.
8548 You can also force a different level, either by using a numeric prefix
8549 argument, or by inserting the heading marker by hand. For example, if the
8550 cursor is after \"*****\", then the tree will be shifted to level 5.
8552 If optional TREE is given, use this text instead of the kill ring.
8554 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8555 move back over whitespace before inserting, and move point to the end of
8556 the inserted text when done.
8558 When REMOVE is non-nil, remove the subtree from the clipboard."
8559 (interactive "P")
8560 (setq tree (or tree (and kill-ring (current-kill 0))))
8561 (unless (org-kill-is-subtree-p tree)
8562 (user-error "%s"
8563 (substitute-command-keys
8564 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8565 (org-with-limited-levels
8566 (let* ((visp (not (outline-invisible-p)))
8567 (txt tree)
8568 (^re_ "\\(\\*+\\)[ \t]*")
8569 (old-level (if (string-match org-outline-regexp-bol txt)
8570 (- (match-end 0) (match-beginning 0) 1)
8571 -1))
8572 (force-level (cond (level (prefix-numeric-value level))
8573 ((and (looking-at "[ \t]*$")
8574 (string-match
8575 "^\\*+$" (buffer-substring
8576 (point-at-bol) (point))))
8577 (- (match-end 0) (match-beginning 0)))
8578 ((and (bolp)
8579 (looking-at org-outline-regexp))
8580 (- (match-end 0) (point) 1))))
8581 (previous-level (save-excursion
8582 (condition-case nil
8583 (progn
8584 (outline-previous-visible-heading 1)
8585 (if (looking-at ^re_)
8586 (- (match-end 0) (match-beginning 0) 1)
8588 (error 1))))
8589 (next-level (save-excursion
8590 (condition-case nil
8591 (progn
8592 (or (looking-at org-outline-regexp)
8593 (outline-next-visible-heading 1))
8594 (if (looking-at ^re_)
8595 (- (match-end 0) (match-beginning 0) 1)
8597 (error 1))))
8598 (new-level (or force-level (max previous-level next-level)))
8599 (shift (if (or (= old-level -1)
8600 (= new-level -1)
8601 (= old-level new-level))
8603 (- new-level old-level)))
8604 (delta (if (> shift 0) -1 1))
8605 (func (if (> shift 0) 'org-demote 'org-promote))
8606 (org-odd-levels-only nil)
8607 beg end newend)
8608 ;; Remove the forced level indicator
8609 (if force-level
8610 (delete-region (point-at-bol) (point)))
8611 ;; Paste
8612 (beginning-of-line (if (bolp) 1 2))
8613 (setq beg (point))
8614 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8615 (insert-before-markers txt)
8616 (unless (string-match "\n\\'" txt) (insert "\n"))
8617 (setq newend (point))
8618 (org-reinstall-markers-in-region beg)
8619 (setq end (point))
8620 (goto-char beg)
8621 (skip-chars-forward " \t\n\r")
8622 (setq beg (point))
8623 (if (and (outline-invisible-p) visp)
8624 (save-excursion (outline-show-heading)))
8625 ;; Shift if necessary
8626 (unless (= shift 0)
8627 (save-restriction
8628 (narrow-to-region beg end)
8629 (while (not (= shift 0))
8630 (org-map-region func (point-min) (point-max))
8631 (setq shift (+ delta shift)))
8632 (goto-char (point-min))
8633 (setq newend (point-max))))
8634 (when (or (org-called-interactively-p 'interactive) for-yank)
8635 (message "Clipboard pasted as level %d subtree" new-level))
8636 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8637 kill-ring
8638 (eq org-subtree-clip (current-kill 0))
8639 org-subtree-clip-folded)
8640 ;; The tree was folded before it was killed/copied
8641 (hide-subtree))
8642 (and for-yank (goto-char newend))
8643 (and remove (setq kill-ring (cdr kill-ring))))))
8645 (defun org-kill-is-subtree-p (&optional txt)
8646 "Check if the current kill is an outline subtree, or a set of trees.
8647 Returns nil if kill does not start with a headline, or if the first
8648 headline level is not the largest headline level in the tree.
8649 So this will actually accept several entries of equal levels as well,
8650 which is OK for `org-paste-subtree'.
8651 If optional TXT is given, check this string instead of the current kill."
8652 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8653 (re (org-get-limited-outline-regexp))
8654 (^re (concat "^" re))
8655 (start-level (and kill
8656 (string-match
8657 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8658 kill)
8659 (- (match-end 2) (match-beginning 2) 1)))
8660 (start (1+ (or (match-beginning 2) -1))))
8661 (if (not start-level)
8662 (progn
8663 nil) ;; does not even start with a heading
8664 (catch 'exit
8665 (while (setq start (string-match ^re kill (1+ start)))
8666 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8667 (throw 'exit nil)))
8668 t))))
8670 (defvar org-markers-to-move nil
8671 "Markers that should be moved with a cut-and-paste operation.
8672 Those markers are stored together with their positions relative to
8673 the start of the region.")
8675 (defun org-save-markers-in-region (beg end)
8676 "Check markers in region.
8677 If these markers are between BEG and END, record their position relative
8678 to BEG, so that after moving the block of text, we can put the markers back
8679 into place.
8680 This function gets called just before an entry or tree gets cut from the
8681 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8682 called immediately, to move the markers with the entries."
8683 (setq org-markers-to-move nil)
8684 (when (featurep 'org-clock)
8685 (org-clock-save-markers-for-cut-and-paste beg end))
8686 (when (featurep 'org-agenda)
8687 (org-agenda-save-markers-for-cut-and-paste beg end)))
8689 (defun org-check-and-save-marker (marker beg end)
8690 "Check if MARKER is between BEG and END.
8691 If yes, remember the marker and the distance to BEG."
8692 (when (and (marker-buffer marker)
8693 (equal (marker-buffer marker) (current-buffer)))
8694 (if (and (>= marker beg) (< marker end))
8695 (push (cons marker (- marker beg)) org-markers-to-move))))
8697 (defun org-reinstall-markers-in-region (beg)
8698 "Move all remembered markers to their position relative to BEG."
8699 (mapc (lambda (x)
8700 (move-marker (car x) (+ beg (cdr x))))
8701 org-markers-to-move)
8702 (setq org-markers-to-move nil))
8704 (defun org-narrow-to-subtree ()
8705 "Narrow buffer to the current subtree."
8706 (interactive)
8707 (save-excursion
8708 (save-match-data
8709 (org-with-limited-levels
8710 (narrow-to-region
8711 (progn (org-back-to-heading t) (point))
8712 (progn (org-end-of-subtree t t)
8713 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8714 (point)))))))
8716 (defun org-narrow-to-block ()
8717 "Narrow buffer to the current block."
8718 (interactive)
8719 (let* ((case-fold-search t)
8720 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8721 "^[ \t]*#\\+end_.*")))
8722 (if blockp
8723 (narrow-to-region (car blockp) (cdr blockp))
8724 (user-error "Not in a block"))))
8726 (defun org-clone-subtree-with-time-shift (n &optional shift)
8727 "Clone the task (subtree) at point N times.
8728 The clones will be inserted as siblings.
8730 In interactive use, the user will be prompted for the number of
8731 clones to be produced. If the entry has a timestamp, the user
8732 will also be prompted for a time shift, which may be a repeater
8733 as used in time stamps, for example `+3d'. To disable this,
8734 you can call the function with a universal prefix argument.
8736 When a valid repeater is given and the entry contains any time
8737 stamps, the clones will become a sequence in time, with time
8738 stamps in the subtree shifted for each clone produced. If SHIFT
8739 is nil or the empty string, time stamps will be left alone. The
8740 ID property of the original subtree is removed.
8742 If the original subtree did contain time stamps with a repeater,
8743 the following will happen:
8744 - the repeater will be removed in each clone
8745 - an additional clone will be produced, with the current, unshifted
8746 date(s) in the entry.
8747 - the original entry will be placed *after* all the clones, with
8748 repeater intact.
8749 - the start days in the repeater in the original entry will be shifted
8750 to past the last clone.
8751 In this way you can spell out a number of instances of a repeating task,
8752 and still retain the repeater to cover future instances of the task."
8753 (interactive "nNumber of clones to produce: ")
8754 (let ((shift
8755 (or shift
8756 (if (and (not (equal current-prefix-arg '(4)))
8757 (save-excursion
8758 (re-search-forward org-ts-regexp-both
8759 (save-excursion
8760 (org-end-of-subtree t)
8761 (point)) t)))
8762 (read-from-minibuffer
8763 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8764 ""))) ;; No time shift
8765 (n-no-remove -1)
8766 (drawer-re org-drawer-regexp)
8767 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8768 beg end template task idprop
8769 shift-n shift-what doshift nmin nmax)
8770 (if (not (and (integerp n) (> n 0)))
8771 (user-error "Invalid number of replications %s" n))
8772 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8773 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8774 shift)))
8775 (user-error "Invalid shift specification %s" shift))
8776 (when doshift
8777 (setq shift-n (string-to-number (match-string 1 shift))
8778 shift-what (cdr (assoc (match-string 2 shift)
8779 '(("d" . day) ("w" . week)
8780 ("m" . month) ("y" . year))))))
8781 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8782 (setq nmin 1 nmax n)
8783 (org-back-to-heading t)
8784 (setq beg (point))
8785 (setq idprop (org-entry-get nil "ID"))
8786 (org-end-of-subtree t t)
8787 (or (bolp) (insert "\n"))
8788 (setq end (point))
8789 (setq template (buffer-substring beg end))
8790 (when (and doshift
8791 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8792 (delete-region beg end)
8793 (setq end beg)
8794 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8795 (goto-char end)
8796 (loop for n from nmin to nmax do
8797 ;; prepare clone
8798 (with-temp-buffer
8799 (insert template)
8800 (org-mode)
8801 (goto-char (point-min))
8802 (org-show-subtree)
8803 (and idprop (if org-clone-delete-id
8804 (org-entry-delete nil "ID")
8805 (org-id-get-create t)))
8806 (unless (= n 0)
8807 (while (re-search-forward org-clock-re nil t)
8808 (kill-whole-line))
8809 (goto-char (point-min))
8810 (while (re-search-forward drawer-re nil t)
8811 (org-remove-empty-drawer-at (point))))
8812 (goto-char (point-min))
8813 (when doshift
8814 (while (re-search-forward org-ts-regexp-both nil t)
8815 (org-timestamp-change (* n shift-n) shift-what))
8816 (unless (= n n-no-remove)
8817 (goto-char (point-min))
8818 (while (re-search-forward org-ts-regexp nil t)
8819 (save-excursion
8820 (goto-char (match-beginning 0))
8821 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8822 (delete-region (match-beginning 1) (match-end 1)))))))
8823 (setq task (buffer-string)))
8824 (insert task))
8825 (goto-char beg)))
8827 ;;; Outline Sorting
8829 (defun org-sort (with-case)
8830 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8831 Optional argument WITH-CASE means sort case-sensitively."
8832 (interactive "P")
8833 (cond
8834 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8835 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8837 (org-call-with-arg 'org-sort-entries with-case))))
8839 (defun org-sort-remove-invisible (s)
8840 "Remove invisible links from string S."
8841 (remove-text-properties 0 (length s) org-rm-props s)
8842 (while (string-match org-bracket-link-regexp s)
8843 (setq s (replace-match (if (match-end 2)
8844 (match-string 3 s)
8845 (match-string 1 s)) t t s)))
8846 (let ((st (format " %s " s)))
8847 (while (string-match org-emph-re st)
8848 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8849 (setq s (substring st 1 -1)))
8852 (defvar org-priority-regexp) ; defined later in the file
8854 (defvar org-after-sorting-entries-or-items-hook nil
8855 "Hook that is run after a bunch of entries or items have been sorted.
8856 When children are sorted, the cursor is in the parent line when this
8857 hook gets called. When a region or a plain list is sorted, the cursor
8858 will be in the first entry of the sorted region/list.")
8860 (defun org-sort-entries
8861 (&optional with-case sorting-type getkey-func compare-func property)
8862 "Sort entries on a certain level of an outline tree.
8863 If there is an active region, the entries in the region are sorted.
8864 Else, if the cursor is before the first entry, sort the top-level items.
8865 Else, the children of the entry at point are sorted.
8867 Sorting can be alphabetically, numerically, by date/time as given by
8868 a time stamp, by a property, by priority order, or by a custom function.
8870 The command prompts for the sorting type unless it has been given to the
8871 function through the SORTING-TYPE argument, which needs to be a character,
8872 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8873 the precise meaning of each character:
8875 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8876 c By creation time, which is assumed to be the first inactive time stamp
8877 at the beginning of a line.
8878 d By deadline date/time.
8879 k By clocking time.
8880 n Numerically, by converting the beginning of the entry/item to a number.
8881 o By order of TODO keywords.
8882 p By priority according to the cookie.
8883 r By the value of a property.
8884 s By scheduled date/time.
8885 t By date/time, either the first active time stamp in the entry, or, if
8886 none exist, by the first inactive one.
8888 Capital letters will reverse the sort order.
8890 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8891 called with point at the beginning of the record. It must return either
8892 a string or a number that should serve as the sorting key for that record.
8894 Comparing entries ignores case by default. However, with an optional argument
8895 WITH-CASE, the sorting considers case as well.
8897 Sorting is done against the visible part of the headlines, it ignores hidden
8898 links.
8900 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8901 (interactive "P")
8902 (let ((case-func (if with-case 'identity 'downcase))
8903 (cmstr
8904 ;; The clock marker is lost when using `sort-subr', let's
8905 ;; store the clocking string.
8906 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8907 (save-excursion
8908 (goto-char org-clock-marker)
8909 (looking-back "^.*") (match-string-no-properties 0))))
8910 start beg end stars re re2
8911 txt what tmp)
8912 ;; Find beginning and end of region to sort
8913 (cond
8914 ((org-region-active-p)
8915 ;; we will sort the region
8916 (setq end (region-end)
8917 what "region")
8918 (goto-char (region-beginning))
8919 (if (not (org-at-heading-p)) (outline-next-heading))
8920 (setq start (point)))
8921 ((or (org-at-heading-p)
8922 (ignore-errors (progn (org-back-to-heading) t)))
8923 ;; we will sort the children of the current headline
8924 (org-back-to-heading)
8925 (setq start (point)
8926 end (progn (org-end-of-subtree t t)
8927 (or (bolp) (insert "\n"))
8928 (when (>= (org-back-over-empty-lines) 1)
8929 (forward-line 1))
8930 (point))
8931 what "children")
8932 (goto-char start)
8933 (show-subtree)
8934 (outline-next-heading))
8936 ;; we will sort the top-level entries in this file
8937 (goto-char (point-min))
8938 (or (org-at-heading-p) (outline-next-heading))
8939 (setq start (point))
8940 (goto-char (point-max))
8941 (beginning-of-line 1)
8942 (when (looking-at ".*?\\S-")
8943 ;; File ends in a non-white line
8944 (end-of-line 1)
8945 (insert "\n"))
8946 (setq end (point-max))
8947 (setq what "top-level")
8948 (goto-char start)
8949 (show-all)))
8951 (setq beg (point))
8952 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8954 (looking-at "\\(\\*+\\)")
8955 (setq stars (match-string 1)
8956 re (concat "^" (regexp-quote stars) " +")
8957 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8958 txt (buffer-substring beg end))
8959 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8960 (if (and (not (equal stars "*")) (string-match re2 txt))
8961 (user-error "Region to sort contains a level above the first entry"))
8963 (unless sorting-type
8964 (message
8965 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8966 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8967 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8968 what)
8969 (setq sorting-type (read-char-exclusive))
8971 (unless getkey-func
8972 (and (= (downcase sorting-type) ?f)
8973 (setq getkey-func
8974 (org-icompleting-read "Sort using function: "
8975 obarray 'fboundp t nil nil))
8976 (setq getkey-func (intern getkey-func))))
8978 (and (= (downcase sorting-type) ?r)
8979 (not property)
8980 (setq property
8981 (org-icompleting-read "Property: "
8982 (mapcar 'list (org-buffer-property-keys t))
8983 nil t))))
8985 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8986 (message "Sorting entries...")
8988 (save-restriction
8989 (narrow-to-region start end)
8990 (let ((dcst (downcase sorting-type))
8991 (case-fold-search nil)
8992 (now (current-time)))
8993 (sort-subr
8994 (/= dcst sorting-type)
8995 ;; This function moves to the beginning character of the "record" to
8996 ;; be sorted.
8997 (lambda nil
8998 (if (re-search-forward re nil t)
8999 (goto-char (match-beginning 0))
9000 (goto-char (point-max))))
9001 ;; This function moves to the last character of the "record" being
9002 ;; sorted.
9003 (lambda nil
9004 (save-match-data
9005 (condition-case nil
9006 (outline-forward-same-level 1)
9007 (error
9008 (goto-char (point-max))))))
9009 ;; This function returns the value that gets sorted against.
9010 (lambda nil
9011 (cond
9012 ((= dcst ?n)
9013 (if (looking-at org-complex-heading-regexp)
9014 (string-to-number (org-sort-remove-invisible (match-string 4)))
9015 nil))
9016 ((= dcst ?a)
9017 (if (looking-at org-complex-heading-regexp)
9018 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9019 nil))
9020 ((= dcst ?k)
9021 (or (get-text-property (point) :org-clock-minutes) 0))
9022 ((= dcst ?t)
9023 (let ((end (save-excursion (outline-next-heading) (point))))
9024 (if (or (re-search-forward org-ts-regexp end t)
9025 (re-search-forward org-ts-regexp-both end t))
9026 (org-time-string-to-seconds (match-string 0))
9027 (org-float-time now))))
9028 ((= dcst ?c)
9029 (let ((end (save-excursion (outline-next-heading) (point))))
9030 (if (re-search-forward
9031 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9032 end t)
9033 (org-time-string-to-seconds (match-string 0))
9034 (org-float-time now))))
9035 ((= dcst ?s)
9036 (let ((end (save-excursion (outline-next-heading) (point))))
9037 (if (re-search-forward org-scheduled-time-regexp end t)
9038 (org-time-string-to-seconds (match-string 1))
9039 (org-float-time now))))
9040 ((= dcst ?d)
9041 (let ((end (save-excursion (outline-next-heading) (point))))
9042 (if (re-search-forward org-deadline-time-regexp end t)
9043 (org-time-string-to-seconds (match-string 1))
9044 (org-float-time now))))
9045 ((= dcst ?p)
9046 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9047 (string-to-char (match-string 2))
9048 org-default-priority))
9049 ((= dcst ?r)
9050 (or (org-entry-get nil property) ""))
9051 ((= dcst ?o)
9052 (if (looking-at org-complex-heading-regexp)
9053 (let* ((m (match-string 2))
9054 (s (if (member m org-done-keywords) '- '+)))
9055 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9056 ((= dcst ?f)
9057 (if getkey-func
9058 (progn
9059 (setq tmp (funcall getkey-func))
9060 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9061 tmp)
9062 (error "Invalid key function `%s'" getkey-func)))
9063 (t (error "Invalid sorting type `%c'" sorting-type))))
9065 (cond
9066 ((= dcst ?a) 'string<)
9067 ((= dcst ?f) compare-func)
9068 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9069 (run-hooks 'org-after-sorting-entries-or-items-hook)
9070 ;; Reset the clock marker if needed
9071 (when cmstr
9072 (save-excursion
9073 (goto-char start)
9074 (search-forward cmstr nil t)
9075 (move-marker org-clock-marker (point))))
9076 (message "Sorting entries...done")))
9078 ;;; The orgstruct minor mode
9080 ;; Define a minor mode which can be used in other modes in order to
9081 ;; integrate the org-mode structure editing commands.
9083 ;; This is really a hack, because the org-mode structure commands use
9084 ;; keys which normally belong to the major mode. Here is how it
9085 ;; works: The minor mode defines all the keys necessary to operate the
9086 ;; structure commands, but wraps the commands into a function which
9087 ;; tests if the cursor is currently at a headline or a plain list
9088 ;; item. If that is the case, the structure command is used,
9089 ;; temporarily setting many Org-mode variables like regular
9090 ;; expressions for filling etc. However, when any of those keys is
9091 ;; used at a different location, function uses `key-binding' to look
9092 ;; up if the key has an associated command in another currently active
9093 ;; keymap (minor modes, major mode, global), and executes that
9094 ;; command. There might be problems if any of the keys is otherwise
9095 ;; used as a prefix key.
9097 (defcustom orgstruct-heading-prefix-regexp ""
9098 "Regexp that matches the custom prefix of Org headlines in
9099 orgstruct(++)-mode."
9100 :group 'org
9101 :version "24.4"
9102 :package-version '(Org . "8.3")
9103 :type 'regexp)
9104 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9106 (defcustom orgstruct-setup-hook nil
9107 "Hook run after orgstruct-mode-map is filled."
9108 :group 'org
9109 :version "24.4"
9110 :package-version '(Org . "8.0")
9111 :type 'hook)
9113 (defvar orgstruct-initialized nil)
9115 (defvar org-local-vars nil
9116 "List of local variables, for use by `orgstruct-mode'.")
9118 ;;;###autoload
9119 (define-minor-mode orgstruct-mode
9120 "Toggle the minor mode `orgstruct-mode'.
9121 This mode is for using Org-mode structure commands in other
9122 modes. The following keys behave as if Org-mode were active, if
9123 the cursor is on a headline, or on a plain list item (both as
9124 defined by Org-mode)."
9125 nil " OrgStruct" (make-sparse-keymap)
9126 (funcall (if orgstruct-mode
9127 'add-to-invisibility-spec
9128 'remove-from-invisibility-spec)
9129 '(outline . t))
9130 (when orgstruct-mode
9131 (org-load-modules-maybe)
9132 (unless orgstruct-initialized
9133 (orgstruct-setup)
9134 (setq orgstruct-initialized t))))
9136 ;;;###autoload
9137 (defun turn-on-orgstruct ()
9138 "Unconditionally turn on `orgstruct-mode'."
9139 (orgstruct-mode 1))
9141 (defvar org-fb-vars nil)
9142 (make-variable-buffer-local 'org-fb-vars)
9143 (defun orgstruct++-mode (&optional arg)
9144 "Toggle `orgstruct-mode', the enhanced version of it.
9145 In addition to setting orgstruct-mode, this also exports all
9146 indentation and autofilling variables from org-mode into the
9147 buffer. It will also recognize item context in multiline items."
9148 (interactive "P")
9149 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9150 (if (< arg 1)
9151 (progn (orgstruct-mode -1)
9152 (mapc (lambda(v)
9153 (org-set-local (car v)
9154 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9155 org-fb-vars))
9156 (orgstruct-mode 1)
9157 (setq org-fb-vars nil)
9158 (unless org-local-vars
9159 (setq org-local-vars (org-get-local-variables)))
9160 (let (var val)
9161 (mapc
9162 (lambda (x)
9163 (when (string-match
9164 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9165 (symbol-name (car x)))
9166 (setq var (car x) val (nth 1 x))
9167 (push (list var `(quote ,(eval var))) org-fb-vars)
9168 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9169 org-local-vars)
9170 (org-set-local 'orgstruct-is-++ t))))
9172 (defvar orgstruct-is-++ nil
9173 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9174 (make-variable-buffer-local 'orgstruct-is-++)
9176 ;;;###autoload
9177 (defun turn-on-orgstruct++ ()
9178 "Unconditionally turn on `orgstruct++-mode'."
9179 (orgstruct++-mode 1))
9181 (defun orgstruct-error ()
9182 "Error when there is no default binding for a structure key."
9183 (interactive)
9184 (funcall (if (fboundp 'user-error)
9185 'user-error
9186 'error)
9187 "This key has no function outside structure elements"))
9189 (defun orgstruct-setup ()
9190 "Setup orgstruct keymap."
9191 (dolist (cell '((org-demote . t)
9192 (org-metaleft . t)
9193 (org-metaright . t)
9194 (org-promote . t)
9195 (org-shiftmetaleft . t)
9196 (org-shiftmetaright . t)
9197 org-backward-element
9198 org-backward-heading-same-level
9199 org-ctrl-c-ret
9200 org-ctrl-c-minus
9201 org-ctrl-c-star
9202 org-cycle
9203 org-forward-heading-same-level
9204 org-insert-heading
9205 org-insert-heading-respect-content
9206 org-kill-note-or-show-branches
9207 org-mark-subtree
9208 org-meta-return
9209 org-metadown
9210 org-metaup
9211 org-narrow-to-subtree
9212 org-promote-subtree
9213 org-reveal
9214 org-shiftdown
9215 org-shiftleft
9216 org-shiftmetadown
9217 org-shiftmetaup
9218 org-shiftright
9219 org-shifttab
9220 org-shifttab
9221 org-shiftup
9222 org-show-subtree
9223 org-sort
9224 org-up-element
9225 outline-demote
9226 outline-next-visible-heading
9227 outline-previous-visible-heading
9228 outline-promote
9229 outline-up-heading
9230 show-children))
9231 (let ((f (or (car-safe cell) cell))
9232 (disable-when-heading-prefix (cdr-safe cell)))
9233 (when (fboundp f)
9234 (let ((new-bindings))
9235 (dolist (binding (nconc (where-is-internal f org-mode-map)
9236 (where-is-internal f outline-mode-map)))
9237 (push binding new-bindings)
9238 ;; TODO use local-function-key-map
9239 (dolist (rep '(("<tab>" . "TAB")
9240 ("<return>" . "RET")
9241 ("<escape>" . "ESC")
9242 ("<delete>" . "DEL")))
9243 (setq binding (read-kbd-macro
9244 (let ((case-fold-search))
9245 (replace-regexp-in-string
9246 (regexp-quote (cdr rep))
9247 (car rep)
9248 (key-description binding)))))
9249 (pushnew binding new-bindings :test 'equal)))
9250 (dolist (binding new-bindings)
9251 (let ((key (lookup-key orgstruct-mode-map binding)))
9252 (when (or (not key) (numberp key))
9253 (ignore-errors
9254 (org-defkey orgstruct-mode-map
9255 binding
9256 (orgstruct-make-binding
9257 f binding disable-when-heading-prefix))))))))))
9258 (run-hooks 'orgstruct-setup-hook))
9260 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9261 "Create a function for binding in the structure minor mode.
9262 FUN is the command to call inside a table. KEY is the key that
9263 should be checked in for a command to execute outside of tables.
9264 Non-nil `disable-when-heading-prefix' means to disable the command
9265 if `orgstruct-heading-prefix-regexp' is not empty."
9266 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9267 (let ((nname name)
9268 (i 0))
9269 (while (fboundp (intern nname))
9270 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9271 (setq name (intern nname)))
9272 (eval
9273 (let ((bindings '((org-heading-regexp
9274 (concat "^"
9275 orgstruct-heading-prefix-regexp
9276 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9277 (org-outline-regexp
9278 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9279 (org-outline-regexp-bol
9280 (concat "^" org-outline-regexp))
9281 (outline-regexp org-outline-regexp)
9282 (outline-heading-end-regexp "\n")
9283 (outline-level 'org-outline-level)
9284 (outline-heading-alist))))
9285 `(defun ,name (arg)
9286 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9287 "Outside of structure, run the binding of `"
9288 (key-description key) "'."
9289 (when disable-when-heading-prefix
9290 (concat
9291 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9292 "back to the default binding due to limitations of Org's implementation of\n"
9293 "`" (symbol-name fun) "'.")))
9294 (interactive "p")
9295 (let* ((disable
9296 ,(and disable-when-heading-prefix
9297 '(not (string= orgstruct-heading-prefix-regexp ""))))
9298 (fallback
9299 (or disable
9300 (not
9301 (let* ,bindings
9302 (org-context-p 'headline 'item
9303 ,(when (memq fun
9304 '(org-insert-heading
9305 org-insert-heading-respect-content
9306 org-meta-return))
9307 '(when orgstruct-is-++
9308 'item-body))))))))
9309 (if fallback
9310 (let* ((orgstruct-mode)
9311 (binding
9312 (let ((key ,key))
9313 (catch 'exit
9314 (dolist
9315 (rep
9316 '(nil
9317 ("<\\([^>]*\\)tab>" . "\\1TAB")
9318 ("<\\([^>]*\\)return>" . "\\1RET")
9319 ("<\\([^>]*\\)escape>" . "\\1ESC")
9320 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9321 nil)
9322 (when rep
9323 (setq key (read-kbd-macro
9324 (let ((case-fold-search))
9325 (replace-regexp-in-string
9326 (car rep)
9327 (cdr rep)
9328 (key-description key))))))
9329 (when (key-binding key)
9330 (throw 'exit (key-binding key))))))))
9331 (if (keymapp binding)
9332 (org-set-transient-map binding)
9333 (let ((func (or binding
9334 (unless disable
9335 'orgstruct-error))))
9336 (when func
9337 (call-interactively func)))))
9338 (org-run-like-in-org-mode
9339 (lambda ()
9340 (interactive)
9341 (let* ,bindings
9342 (call-interactively ',fun)))))))))
9343 name))
9345 (defun org-contextualize-keys (alist contexts)
9346 "Return valid elements in ALIST depending on CONTEXTS.
9348 `org-agenda-custom-commands' or `org-capture-templates' are the
9349 values used for ALIST, and `org-agenda-custom-commands-contexts'
9350 or `org-capture-templates-contexts' are the associated contexts
9351 definitions."
9352 (let ((contexts
9353 ;; normalize contexts
9354 (mapcar
9355 (lambda(c) (cond ((listp (cadr c))
9356 (list (car c) (car c) (cadr c)))
9357 ((string= "" (cadr c))
9358 (list (car c) (car c) (caddr c)))
9359 (t c))) contexts))
9360 (a alist) c r s)
9361 ;; loop over all commands or templates
9362 (while (setq c (pop a))
9363 (let (vrules repl)
9364 (cond
9365 ((not (assoc (car c) contexts))
9366 (push c r))
9367 ((and (assoc (car c) contexts)
9368 (setq vrules (org-contextualize-validate-key
9369 (car c) contexts)))
9370 (mapc (lambda (vr)
9371 (when (not (equal (car vr) (cadr vr)))
9372 (setq repl vr))) vrules)
9373 (if (not repl) (push c r)
9374 (push (cadr repl) s)
9375 (push
9376 (cons (car c)
9377 (cdr (or (assoc (cadr repl) alist)
9378 (error "Undefined key `%s' as contextual replacement for `%s'"
9379 (cadr repl) (car c)))))
9380 r))))))
9381 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9382 (delq
9384 (delete-dups
9385 (mapcar (lambda (x)
9386 (let ((tpl (car x)))
9387 (when (not (delq
9389 (mapcar (lambda(y)
9390 (equal y tpl)) s))) x)))
9391 (reverse r))))))
9393 (defun org-contextualize-validate-key (key contexts)
9394 "Check CONTEXTS for agenda or capture KEY."
9395 (let (r rr res)
9396 (while (setq r (pop contexts))
9397 (mapc
9398 (lambda (rr)
9399 (when
9400 (and (equal key (car r))
9401 (if (functionp rr) (funcall rr)
9402 (or (and (eq (car rr) 'in-file)
9403 (buffer-file-name)
9404 (string-match (cdr rr) (buffer-file-name)))
9405 (and (eq (car rr) 'in-mode)
9406 (string-match (cdr rr) (symbol-name major-mode)))
9407 (and (eq (car rr) 'in-buffer)
9408 (string-match (cdr rr) (buffer-name)))
9409 (when (and (eq (car rr) 'not-in-file)
9410 (buffer-file-name))
9411 (not (string-match (cdr rr) (buffer-file-name))))
9412 (when (eq (car rr) 'not-in-mode)
9413 (not (string-match (cdr rr) (symbol-name major-mode))))
9414 (when (eq (car rr) 'not-in-buffer)
9415 (not (string-match (cdr rr) (buffer-name)))))))
9416 (push r res)))
9417 (car (last r))))
9418 (delete-dups (delq nil res))))
9420 (defun org-context-p (&rest contexts)
9421 "Check if local context is any of CONTEXTS.
9422 Possible values in the list of contexts are `table', `headline', and `item'."
9423 (let ((pos (point)))
9424 (goto-char (point-at-bol))
9425 (prog1 (or (and (memq 'table contexts)
9426 (looking-at "[ \t]*|"))
9427 (and (memq 'headline contexts)
9428 (looking-at org-outline-regexp))
9429 (and (memq 'item contexts)
9430 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9431 (and (memq 'item-body contexts)
9432 (org-in-item-p)))
9433 (goto-char pos))))
9435 (defun org-get-local-variables ()
9436 "Return a list of all local variables in an Org mode buffer."
9437 (let (varlist)
9438 (with-current-buffer (get-buffer-create "*Org tmp*")
9439 (erase-buffer)
9440 (org-mode)
9441 (setq varlist (buffer-local-variables)))
9442 (kill-buffer "*Org tmp*")
9443 (delq nil
9444 (mapcar
9445 (lambda (x)
9446 (setq x
9447 (if (symbolp x)
9448 (list x)
9449 (list (car x) (cdr x))))
9450 (if (and (not (get (car x) 'org-state))
9451 (string-match
9452 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9453 (symbol-name (car x))))
9454 x nil))
9455 varlist))))
9457 (defun org-clone-local-variables (from-buffer &optional regexp)
9458 "Clone local variables from FROM-BUFFER.
9459 Optional argument REGEXP selects variables to clone."
9460 (mapc
9461 (lambda (pair)
9462 (and (symbolp (car pair))
9463 (or (null regexp)
9464 (string-match regexp (symbol-name (car pair))))
9465 (set (make-local-variable (car pair))
9466 (cdr pair))))
9467 (buffer-local-variables from-buffer)))
9469 ;;;###autoload
9470 (defun org-run-like-in-org-mode (cmd)
9471 "Run a command, pretending that the current buffer is in Org-mode.
9472 This will temporarily bind local variables that are typically bound in
9473 Org-mode to the values they have in Org-mode, and then interactively
9474 call CMD."
9475 (org-load-modules-maybe)
9476 (unless org-local-vars
9477 (setq org-local-vars (org-get-local-variables)))
9478 (let (binds)
9479 (dolist (var org-local-vars)
9480 (when (or (not (boundp (car var)))
9481 (eq (symbol-value (car var))
9482 (default-value (car var))))
9483 (push (list (car var) `(quote ,(cadr var))) binds)))
9484 (eval `(let ,binds
9485 (call-interactively (quote ,cmd))))))
9487 (defun org-get-category (&optional pos force-refresh)
9488 "Get the category applying to position POS."
9489 (save-match-data
9490 (if force-refresh (org-refresh-category-properties))
9491 (let ((pos (or pos (point))))
9492 (or (get-text-property pos 'org-category)
9493 (progn (org-refresh-category-properties)
9494 (get-text-property pos 'org-category))))))
9496 ;;; Refresh properties
9498 (defun org-refresh-properties (dprop tprop)
9499 "Refresh buffer text properties.
9500 DPROP is the drawer property and TPROP is either the
9501 corresponding text property to set, or an alist with each element
9502 being a text property (as a symbol) and a function to apply to
9503 the value of the drawer property."
9504 (let ((case-fold-search t)
9505 (inhibit-read-only t))
9506 (org-with-silent-modifications
9507 (save-excursion
9508 (save-restriction
9509 (widen)
9510 (goto-char (point-min))
9511 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9512 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9514 (defun org-refresh-property (tprop p)
9515 "Refresh the buffer text property TPROP from the drawer property P.
9516 The refresh happens only for the current tree (not subtree)."
9517 (unless (org-before-first-heading-p)
9518 (save-excursion
9519 (org-back-to-heading t)
9520 (if (symbolp tprop)
9521 ;; TPROP is a text property symbol
9522 (put-text-property
9523 (point) (or (outline-next-heading) (point-max)) tprop p)
9524 ;; TPROP is an alist with (properties . function) elements
9525 (dolist (al tprop)
9526 (save-excursion
9527 (put-text-property
9528 (line-beginning-position) (or (outline-next-heading) (point-max))
9529 (car al)
9530 (funcall (cdr al) p))))))))
9532 (defun org-refresh-category-properties ()
9533 "Refresh category text properties in the buffer."
9534 (let ((case-fold-search t)
9535 (inhibit-read-only t)
9536 (default-category
9537 (cond ((null org-category)
9538 (if buffer-file-name
9539 (file-name-sans-extension
9540 (file-name-nondirectory buffer-file-name))
9541 "???"))
9542 ((symbolp org-category) (symbol-name org-category))
9543 (t org-category))))
9544 (org-with-silent-modifications
9545 (org-with-wide-buffer
9546 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9547 ;; This is the default category for the buffer. If none is
9548 ;; found, fall-back to `org-category' or buffer file name.
9549 (put-text-property
9550 (point-min) (point-max)
9551 'org-category
9552 (catch 'buffer-category
9553 (goto-char (point-max))
9554 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9555 (let ((element (org-element-at-point)))
9556 (when (eq (org-element-type element) 'keyword)
9557 (throw 'buffer-category
9558 (org-element-property :value element)))))
9559 default-category))
9560 ;; Set sub-tree specific categories.
9561 (goto-char (point-min))
9562 (let ((regexp (org-re-property "CATEGORY")))
9563 (while (re-search-forward regexp nil t)
9564 (let ((value (org-match-string-no-properties 3)))
9565 (when (org-at-property-p)
9566 (put-text-property
9567 (save-excursion (org-back-to-heading t) (point))
9568 (org-end-of-subtree t t)
9569 'org-category
9570 value)))))))))
9572 (defun org-refresh-stats-properties ()
9573 "Refresh stats text properties in the buffer."
9574 (let (stats)
9575 (org-with-silent-modifications
9576 (save-excursion
9577 (save-restriction
9578 (widen)
9579 (goto-char (point-min))
9580 (while (re-search-forward
9581 (concat org-outline-regexp-bol ".*"
9582 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9583 nil t)
9584 (setq stats (cond ((equal (match-string 3) "0") 0)
9585 ((match-string 2)
9586 (/ (* (string-to-number (match-string 2)) 100)
9587 (string-to-number (match-string 3))))
9588 (t (string-to-number (match-string 1)))))
9589 (org-back-to-heading t)
9590 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9591 'org-stats stats)))))))
9593 (defun org-refresh-effort-properties ()
9594 "Refresh effort properties"
9595 (org-refresh-properties
9596 org-effort-property
9597 '((effort . identity)
9598 (effort-minutes . org-duration-string-to-minutes))))
9600 ;;;; Link Stuff
9602 ;;; Link abbreviations
9604 (defun org-link-expand-abbrev (link)
9605 "Apply replacements as defined in `org-link-abbrev-alist'."
9606 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9607 (let* ((key (match-string 1 link))
9608 (as (or (assoc key org-link-abbrev-alist-local)
9609 (assoc key org-link-abbrev-alist)))
9610 (tag (and (match-end 2) (match-string 3 link)))
9611 rpl)
9612 (if (not as)
9613 link
9614 (setq rpl (cdr as))
9615 (cond
9616 ((symbolp rpl) (funcall rpl tag))
9617 ((string-match "%(\\([^)]+\\))" rpl)
9618 (replace-match
9619 (save-match-data
9620 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9621 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9622 ((string-match "%h" rpl)
9623 (replace-match (url-hexify-string (or tag "")) t t rpl))
9624 (t (concat rpl tag)))))
9625 link))
9627 ;;; Storing and inserting links
9629 (defvar org-insert-link-history nil
9630 "Minibuffer history for links inserted with `org-insert-link'.")
9632 (defvar org-stored-links nil
9633 "Contains the links stored with `org-store-link'.")
9635 (defvar org-store-link-plist nil
9636 "Plist with info about the most recently link created with `org-store-link'.")
9638 (defvar org-link-protocols nil
9639 "Link protocols added to Org-mode using `org-add-link-type'.")
9641 (defvar org-store-link-functions nil
9642 "List of functions that are called to create and store a link.
9643 Each function will be called in turn until one returns a non-nil
9644 value. Each function should check if it is responsible for creating
9645 this link (for example by looking at the major mode).
9646 If not, it must exit and return nil.
9647 If yes, it should return a non-nil value after a calling
9648 `org-store-link-props' with a list of properties and values.
9649 Special properties are:
9651 :type The link prefix, like \"http\". This must be given.
9652 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9653 This is obligatory as well.
9654 :description Optional default description for the second pair
9655 of brackets in an Org-mode link. The user can still change
9656 this when inserting this link into an Org-mode buffer.
9658 In addition to these, any additional properties can be specified
9659 and then used in capture templates.")
9661 (defun org-add-link-type (type &optional follow export)
9662 "Add TYPE to the list of `org-link-types'.
9663 Re-compute all regular expressions depending on `org-link-types'
9665 FOLLOW and EXPORT are two functions.
9667 FOLLOW should take the link path as the single argument and do whatever
9668 is necessary to follow the link, for example find a file or display
9669 a mail message.
9671 EXPORT should format the link path for export to one of the export formats.
9672 It should be a function accepting three arguments:
9674 path the path of the link, the text after the prefix (like \"http:\")
9675 desc the description of the link, if any
9676 format the export format, a symbol like `html' or `latex' or `ascii'.
9678 The function may use the FORMAT information to return different values
9679 depending on the format. The return value will be put literally into
9680 the exported file. If the return value is nil, this means Org should
9681 do what it normally does with links which do not have EXPORT defined.
9683 Org mode has a built-in default for exporting links. If you are happy with
9684 this default, there is no need to define an export function for the link
9685 type. For a simple example of an export function, see `org-bbdb.el'."
9686 (add-to-list 'org-link-types type t)
9687 (org-make-link-regexps)
9688 (org-element-update-syntax)
9689 (if (assoc type org-link-protocols)
9690 (setcdr (assoc type org-link-protocols) (list follow export))
9691 (push (list type follow export) org-link-protocols)))
9693 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9694 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9696 ;;;###autoload
9697 (defun org-store-link (arg)
9698 "\\<org-mode-map>Store an org-link to the current location.
9699 This link is added to `org-stored-links' and can later be inserted
9700 into an org-buffer with \\[org-insert-link].
9702 For some link types, a prefix arg is interpreted.
9703 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9704 For file links, arg negates `org-context-in-file-links'.
9706 A double prefix arg force skipping storing functions that are not
9707 part of Org's core.
9709 A triple prefix arg force storing a link for each line in the
9710 active region."
9711 (interactive "P")
9712 (org-load-modules-maybe)
9713 (if (and (equal arg '(64)) (org-region-active-p))
9714 (save-excursion
9715 (let ((end (region-end)))
9716 (goto-char (region-beginning))
9717 (set-mark (point))
9718 (while (< (point-at-eol) end)
9719 (move-end-of-line 1) (activate-mark)
9720 (let (current-prefix-arg)
9721 (call-interactively 'org-store-link))
9722 (move-beginning-of-line 2)
9723 (set-mark (point)))))
9724 (org-with-limited-levels
9725 (setq org-store-link-plist nil)
9726 (let (link cpltxt desc description search
9727 txt custom-id agenda-link sfuns sfunsn)
9728 (cond
9730 ;; Store a link using an external link type
9731 ((and (not (equal arg '(16)))
9732 (setq sfuns
9733 (delq
9734 nil (mapcar (lambda (f)
9735 (let (fs) (if (funcall f) (push f fs))))
9736 org-store-link-functions))
9737 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9738 (or (and (cdr sfuns)
9739 (funcall (intern
9740 (completing-read
9741 "Which function for creating the link? "
9742 sfunsn nil t (car sfunsn)))))
9743 (funcall (caar sfuns)))
9744 (setq link (plist-get org-store-link-plist :link)
9745 desc (or (plist-get org-store-link-plist
9746 :description) link))))
9748 ;; Store a link from a source code buffer
9749 ((org-src-edit-buffer-p)
9750 (let (label gc)
9751 (while (or (not label)
9752 (save-excursion
9753 (save-restriction
9754 (widen)
9755 (goto-char (point-min))
9756 (re-search-forward
9757 (regexp-quote (format org-coderef-label-format label))
9758 nil t))))
9759 (when label (message "Label exists already") (sit-for 2))
9760 (setq label (read-string "Code line label: " label)))
9761 (end-of-line 1)
9762 (setq link (format org-coderef-label-format label))
9763 (setq gc (- 79 (length link)))
9764 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9765 (insert link)
9766 (setq link (concat "(" label ")") desc nil)))
9768 ;; We are in the agenda, link to referenced location
9769 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9770 (let ((m (or (get-text-property (point) 'org-hd-marker)
9771 (get-text-property (point) 'org-marker))))
9772 (when m
9773 (org-with-point-at m
9774 (setq agenda-link
9775 (if (org-called-interactively-p 'any)
9776 (call-interactively 'org-store-link)
9777 (org-store-link nil)))))))
9779 ((eq major-mode 'calendar-mode)
9780 (let ((cd (calendar-cursor-to-date)))
9781 (setq link
9782 (format-time-string
9783 (car org-time-stamp-formats)
9784 (apply 'encode-time
9785 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9786 nil nil nil))))
9787 (org-store-link-props :type "calendar" :date cd)))
9789 ((eq major-mode 'help-mode)
9790 (setq link (concat "help:" (save-excursion
9791 (goto-char (point-min))
9792 (looking-at "^[^ ]+")
9793 (match-string 0))))
9794 (org-store-link-props :type "help"))
9796 ((eq major-mode 'w3-mode)
9797 (setq cpltxt (if (and (buffer-name)
9798 (not (string-match "Untitled" (buffer-name))))
9799 (buffer-name)
9800 (url-view-url t))
9801 link (url-view-url t))
9802 (org-store-link-props :type "w3" :url (url-view-url t)))
9804 ((eq major-mode 'image-mode)
9805 (setq cpltxt (concat "file:"
9806 (abbreviate-file-name buffer-file-name))
9807 link cpltxt)
9808 (org-store-link-props :type "image" :file buffer-file-name))
9810 ;; In dired, store a link to the file of the current line
9811 ((derived-mode-p 'dired-mode)
9812 (let ((file (dired-get-filename nil t)))
9813 (setq file (if file
9814 (abbreviate-file-name
9815 (expand-file-name (dired-get-filename nil t)))
9816 ;; otherwise, no file so use current directory.
9817 default-directory))
9818 (setq cpltxt (concat "file:" file)
9819 link cpltxt)))
9821 ((setq search (run-hook-with-args-until-success
9822 'org-create-file-search-functions))
9823 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9824 "::" search))
9825 (setq cpltxt (or description link)))
9827 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9828 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9829 (cond
9830 ;; Store a link using the target at point
9831 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9832 (setq cpltxt
9833 (concat "file:"
9834 (abbreviate-file-name
9835 (buffer-file-name (buffer-base-buffer)))
9836 "::" (match-string 1))
9837 link cpltxt))
9838 ((and (featurep 'org-id)
9839 (or (eq org-id-link-to-org-use-id t)
9840 (and (org-called-interactively-p 'any)
9841 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9842 (and (eq org-id-link-to-org-use-id
9843 'create-if-interactive-and-no-custom-id)
9844 (not custom-id))))
9845 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9846 ;; Store a link using the ID at point
9847 (setq link (condition-case nil
9848 (prog1 (org-id-store-link)
9849 (setq desc (or (plist-get org-store-link-plist
9850 :description)
9851 "")))
9852 (error
9853 ;; Probably before first headline, link only to file
9854 (concat "file:"
9855 (abbreviate-file-name
9856 (buffer-file-name (buffer-base-buffer))))))))
9858 ;; Just link to current headline
9859 (setq cpltxt (concat "file:"
9860 (abbreviate-file-name
9861 (buffer-file-name (buffer-base-buffer)))))
9862 ;; Add a context search string
9863 (when (org-xor org-context-in-file-links arg)
9864 (let* ((ee (org-element-at-point))
9865 (et (org-element-type ee))
9866 (ev (plist-get (cadr ee) :value))
9867 (ek (plist-get (cadr ee) :key))
9868 (eok (and (stringp ek) (string-match "name" ek))))
9869 (setq txt (cond
9870 ((org-at-heading-p) nil)
9871 ((and (eq et 'keyword) eok) ev)
9872 ((org-region-active-p)
9873 (buffer-substring (region-beginning) (region-end)))))
9874 (when (or (null txt) (string-match "\\S-" txt))
9875 (setq cpltxt
9876 (concat cpltxt "::"
9877 (condition-case nil
9878 (org-make-org-heading-search-string txt)
9879 (error "")))
9880 desc (or (and (eq et 'keyword) eok ev)
9881 (nth 4 (ignore-errors (org-heading-components)))
9882 "NONE")))))
9883 (if (string-match "::\\'" cpltxt)
9884 (setq cpltxt (substring cpltxt 0 -2)))
9885 (setq link cpltxt))))
9887 ((buffer-file-name (buffer-base-buffer))
9888 ;; Just link to this file here.
9889 (setq cpltxt (concat "file:"
9890 (abbreviate-file-name
9891 (buffer-file-name (buffer-base-buffer)))))
9892 ;; Add a context string.
9893 (when (org-xor org-context-in-file-links arg)
9894 (setq txt (if (org-region-active-p)
9895 (buffer-substring (region-beginning) (region-end))
9896 (buffer-substring (point-at-bol) (point-at-eol))))
9897 ;; Only use search option if there is some text.
9898 (when (string-match "\\S-" txt)
9899 (setq cpltxt
9900 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9901 desc "NONE")))
9902 (setq link cpltxt))
9904 ((org-called-interactively-p 'interactive)
9905 (user-error "No method for storing a link from this buffer"))
9907 (t (setq link nil)))
9909 ;; We're done setting link and desc, clean up
9910 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9911 (setq link (or link cpltxt)
9912 desc (or desc cpltxt))
9913 (cond ((equal desc "NONE") (setq desc nil))
9914 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9915 (let ((d0 (match-string 3 desc))
9916 (p0 (match-string 5 desc)))
9917 (setq desc
9918 (replace-regexp-in-string
9919 org-bracket-link-regexp
9920 (concat (or p0 d0)
9921 (if (equal (length (match-string 0 desc))
9922 (length desc)) "*" "")) desc)))))
9924 ;; Return the link
9925 (if (not (and (or (org-called-interactively-p 'any)
9926 executing-kbd-macro) link))
9927 (or agenda-link (and link (org-make-link-string link desc)))
9928 (push (list link desc) org-stored-links)
9929 (message "Stored: %s" (or desc link))
9930 (when custom-id
9931 (setq link (concat "file:" (abbreviate-file-name
9932 (buffer-file-name)) "::#" custom-id))
9933 (push (list link desc) org-stored-links))
9934 (car org-stored-links))))))
9936 (defun org-store-link-props (&rest plist)
9937 "Store link properties, extract names and addresses."
9938 (let (x adr)
9939 (when (setq x (plist-get plist :from))
9940 (setq adr (mail-extract-address-components x))
9941 (setq plist (plist-put plist :fromname (car adr)))
9942 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9943 (when (setq x (plist-get plist :to))
9944 (setq adr (mail-extract-address-components x))
9945 (setq plist (plist-put plist :toname (car adr)))
9946 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9947 (let ((from (plist-get plist :from))
9948 (to (plist-get plist :to)))
9949 (when (and from to org-from-is-user-regexp)
9950 (setq plist
9951 (plist-put plist :fromto
9952 (if (string-match org-from-is-user-regexp from)
9953 (concat "to %t")
9954 (concat "from %f"))))))
9955 (setq org-store-link-plist plist))
9957 (defun org-add-link-props (&rest plist)
9958 "Add these properties to the link property list."
9959 (let (key value)
9960 (while plist
9961 (setq key (pop plist) value (pop plist))
9962 (setq org-store-link-plist
9963 (plist-put org-store-link-plist key value)))))
9965 (defun org-email-link-description (&optional fmt)
9966 "Return the description part of an email link.
9967 This takes information from `org-store-link-plist' and formats it
9968 according to FMT (default from `org-email-link-description-format')."
9969 (setq fmt (or fmt org-email-link-description-format))
9970 (let* ((p org-store-link-plist)
9971 (to (plist-get p :toaddress))
9972 (from (plist-get p :fromaddress))
9973 (table
9974 (list
9975 (cons "%c" (plist-get p :fromto))
9976 (cons "%F" (plist-get p :from))
9977 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9978 (cons "%T" (plist-get p :to))
9979 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9980 (cons "%s" (plist-get p :subject))
9981 (cons "%d" (plist-get p :date))
9982 (cons "%m" (plist-get p :message-id)))))
9983 (when (string-match "%c" fmt)
9984 ;; Check if the user wrote this message
9985 (if (and org-from-is-user-regexp from to
9986 (save-match-data (string-match org-from-is-user-regexp from)))
9987 (setq fmt (replace-match "to %t" t t fmt))
9988 (setq fmt (replace-match "from %f" t t fmt))))
9989 (org-replace-escapes fmt table)))
9991 (defun org-make-org-heading-search-string (&optional string)
9992 "Make search string for the current headline or STRING."
9993 (let ((s (or string
9994 (and (derived-mode-p 'org-mode)
9995 (save-excursion
9996 (org-back-to-heading t)
9997 (org-element-property :raw-value (org-element-at-point))))))
9998 (lines org-context-in-file-links))
9999 (or string (setq s (concat "*" s))) ; Add * for headlines
10000 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10001 (when (and string (integerp lines) (> lines 0))
10002 (let ((slines (org-split-string s "\n")))
10003 (when (< lines (length slines))
10004 (setq s (mapconcat
10005 'identity
10006 (reverse (nthcdr (- (length slines) lines)
10007 (reverse slines))) "\n")))))
10008 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10010 (defun org-make-link-string (link &optional description)
10011 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10012 (unless (string-match "\\S-" link)
10013 (error "Empty link"))
10014 (when (and description
10015 (stringp description)
10016 (not (string-match "\\S-" description)))
10017 (setq description nil))
10018 (when (stringp description)
10019 ;; Remove brackets from the description, they are fatal.
10020 (while (string-match "\\[" description)
10021 (setq description (replace-match "{" t t description)))
10022 (while (string-match "\\]" description)
10023 (setq description (replace-match "}" t t description))))
10024 (when (equal link description)
10025 ;; No description needed, it is identical
10026 (setq description nil))
10027 (when (and (not description)
10028 (not (string-match (org-image-file-name-regexp) link))
10029 (not (equal link (org-link-escape link))))
10030 (setq description (org-extract-attributes link)))
10031 (setq link
10032 (cond ((string-match (org-image-file-name-regexp) link) link)
10033 ((string-match org-link-types-re link)
10034 (concat (match-string 1 link)
10035 (org-link-escape (substring link (match-end 1)))))
10036 (t (org-link-escape link))))
10037 (concat "[[" link "]"
10038 (if description (concat "[" description "]") "")
10039 "]"))
10041 (defconst org-link-escape-chars
10042 ;;%20 %5B %5D
10043 '(?\ ?\[ ?\])
10044 "List of characters that should be escaped in a link when stored to Org.
10045 This is the list that is used for internal purposes.")
10047 (defconst org-link-escape-chars-browser
10048 ;;%20 %22
10049 '(?\ ?\")
10050 "List of characters to be escaped before handing over to the browser.
10051 If you consider using this constant then you probably want to use
10052 the function `org-link-escape-browser' instead. See there why
10053 this constant is a candidate to be removed once Org drops support
10054 for Emacs 24.1 and 24.2.")
10056 (defun org-link-escape (text &optional table merge)
10057 "Return percent escaped representation of TEXT.
10058 TEXT is a string with the text to escape.
10059 Optional argument TABLE is a list with characters that should be
10060 escaped. When nil, `org-link-escape-chars' is used.
10061 If optional argument MERGE is set, merge TABLE into
10062 `org-link-escape-chars'."
10063 ;; Don't escape chars in internal links
10064 (if (string-match "^\\*[[:alnum:]]+" text)
10065 text
10066 (cond
10067 ((and table merge)
10068 (mapc (lambda (defchr)
10069 (unless (member defchr table)
10070 (setq table (cons defchr table))))
10071 org-link-escape-chars))
10072 ((null table)
10073 (setq table org-link-escape-chars)))
10074 (mapconcat
10075 (lambda (char)
10076 (if (or (member char table)
10077 (and (or (< char 32) (= char ?\%) (> char 126))
10078 org-url-hexify-p))
10079 (mapconcat (lambda (sequence-element)
10080 (format "%%%.2X" sequence-element))
10081 (or (encode-coding-char char 'utf-8)
10082 (error "Unable to percent escape character: %s"
10083 (char-to-string char))) "")
10084 (char-to-string char))) text "")))
10086 (defun org-link-escape-browser (text)
10087 "Escape some characters before handing over to the browser.
10088 This function is a candidate to be removed together with the
10089 constant `org-link-escape-chars-browser' once Org drops support
10090 for Emacs 24.1 and 24.2. All calls to this function will have to
10091 be replaced with `url-encode-url' which is available since Emacs
10092 24.3.1."
10093 ;; Example with the Org link
10094 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10095 ;; to open the browser with +subject:"Release 8.2" filled into the
10096 ;; query field: In this case the variable TEXT contains the
10097 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10098 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10099 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10100 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10101 (if (fboundp 'url-encode-url)
10102 (url-encode-url text)
10103 (if (org-string-match-p
10104 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10105 text)
10106 (org-link-escape text org-link-escape-chars-browser)
10107 text)))
10109 (defun org-link-unescape (str)
10110 "Unhex hexified Unicode strings as returned from the JavaScript function
10111 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10112 (unless (and (null str) (string= "" str))
10113 (let ((pos 0) (case-fold-search t) unhexed)
10114 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10115 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10116 (setq str (replace-match unhexed t t str))
10117 (setq pos (+ pos (length unhexed))))))
10118 str)
10120 (defun org-link-unescape-compound (hex)
10121 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10122 Note: this function also decodes single byte encodings like
10123 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10124 (save-match-data
10125 (let* ((bytes (cdr (split-string hex "%")))
10126 (ret "")
10127 (eat 0)
10128 (sum 0))
10129 (while bytes
10130 (let* ((val (string-to-number (pop bytes) 16))
10131 (shift-xor
10132 (if (= 0 eat)
10133 (cond
10134 ((>= val 252) (cons 6 252))
10135 ((>= val 248) (cons 5 248))
10136 ((>= val 240) (cons 4 240))
10137 ((>= val 224) (cons 3 224))
10138 ((>= val 192) (cons 2 192))
10139 (t (cons 0 0)))
10140 (cons 6 128))))
10141 (if (>= val 192) (setq eat (car shift-xor)))
10142 (setq val (logxor val (cdr shift-xor)))
10143 (setq sum (+ (lsh sum (car shift-xor)) val))
10144 (if (> eat 0) (setq eat (- eat 1)))
10145 (cond
10146 ((= 0 eat) ;multi byte
10147 (setq ret (concat ret (org-char-to-string sum)))
10148 (setq sum 0))
10149 ((not bytes) ; single byte(s)
10150 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10151 ret)))
10153 (defun org-link-unescape-single-byte-sequence (hex)
10154 "Unhexify hex-encoded single byte character sequences."
10155 (mapconcat (lambda (byte)
10156 (char-to-string (string-to-number byte 16)))
10157 (cdr (split-string hex "%")) ""))
10159 (defun org-xor (a b)
10160 "Exclusive or."
10161 (if a (not b) b))
10163 (defun org-fixup-message-id-for-http (s)
10164 "Replace special characters in a message id, so it can be used in an http query."
10165 (when (string-match "%" s)
10166 (setq s (mapconcat (lambda (c)
10167 (if (eq c ?%)
10168 "%25"
10169 (char-to-string c)))
10170 s "")))
10171 (while (string-match "<" s)
10172 (setq s (replace-match "%3C" t t s)))
10173 (while (string-match ">" s)
10174 (setq s (replace-match "%3E" t t s)))
10175 (while (string-match "@" s)
10176 (setq s (replace-match "%40" t t s)))
10179 (defun org-link-prettify (link)
10180 "Return a human-readable representation of LINK.
10181 The car of LINK must be a raw link.
10182 The cdr of LINK must be either a link description or nil."
10183 (let ((desc (or (cadr link) "<no description>")))
10184 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10185 "<" (car link) ">")))
10187 ;;;###autoload
10188 (defun org-insert-link-global ()
10189 "Insert a link like Org-mode does.
10190 This command can be called in any mode to insert a link in Org-mode syntax."
10191 (interactive)
10192 (org-load-modules-maybe)
10193 (org-run-like-in-org-mode 'org-insert-link))
10195 (defun org-insert-all-links (arg &optional pre post)
10196 "Insert all links in `org-stored-links'.
10197 When a universal prefix, do not delete the links from `org-stored-links'.
10198 When `ARG' is a number, insert the last N link(s).
10199 `PRE' and `POST' are optional arguments to define a string to
10200 prepend or to append."
10201 (interactive "P")
10202 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10203 (links (copy-seq org-stored-links))
10204 (pr (or pre "- "))
10205 (po (or post "\n"))
10206 (cnt 1) l)
10207 (if (null org-stored-links)
10208 (message "No link to insert")
10209 (while (and (or (listp arg) (>= arg cnt))
10210 (setq l (if (listp arg)
10211 (pop links)
10212 (pop org-stored-links))))
10213 (setq cnt (1+ cnt))
10214 (insert pr)
10215 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10216 (insert po)))))
10218 (defun org-insert-last-stored-link (arg)
10219 "Insert the last link stored in `org-stored-links'."
10220 (interactive "p")
10221 (org-insert-all-links arg "" "\n"))
10223 (defun org-link-fontify-links-to-this-file ()
10224 "Fontify links to the current file in `org-stored-links'."
10225 (let ((f (buffer-file-name)) a b)
10226 (setq a (mapcar (lambda(l)
10227 (let ((ll (car l)))
10228 (when (and (string-match "^file:\\(.+\\)::" ll)
10229 (equal f (expand-file-name (match-string 1 ll))))
10230 ll)))
10231 org-stored-links))
10232 (when (featurep 'org-id)
10233 (setq b (mapcar (lambda(l)
10234 (let ((ll (car l)))
10235 (when (and (string-match "^id:\\(.+\\)$" ll)
10236 (equal f (expand-file-name
10237 (or (org-id-find-id-file
10238 (match-string 1 ll)) ""))))
10239 ll)))
10240 org-stored-links)))
10241 (mapcar (lambda(l)
10242 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10243 (delq nil (append a b)))))
10245 (defvar org-link-links-in-this-file nil)
10246 (defun org-insert-link (&optional complete-file link-location default-description)
10247 "Insert a link. At the prompt, enter the link.
10249 Completion can be used to insert any of the link protocol prefixes like
10250 http or ftp in use.
10252 The history can be used to select a link previously stored with
10253 `org-store-link'. When the empty string is entered (i.e. if you just
10254 press RET at the prompt), the link defaults to the most recently
10255 stored link. As SPC triggers completion in the minibuffer, you need to
10256 use M-SPC or C-q SPC to force the insertion of a space character.
10258 You will also be prompted for a description, and if one is given, it will
10259 be displayed in the buffer instead of the link.
10261 If there is already a link at point, this command will allow you to edit link
10262 and description parts.
10264 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10265 be selected using completion. The path to the file will be relative to the
10266 current directory if the file is in the current directory or a subdirectory.
10267 Otherwise, the link will be the absolute path as completed in the minibuffer
10268 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10269 option `org-link-file-path-type'.
10271 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10272 the current directory or below.
10274 With three \\[universal-argument] prefixes, negate the meaning of
10275 `org-keep-stored-link-after-insertion'.
10277 If `org-make-link-description-function' is non-nil, this function will be
10278 called with the link target, and the result will be the default
10279 link description.
10281 If the LINK-LOCATION parameter is non-nil, this value will be
10282 used as the link location instead of reading one interactively.
10284 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10285 be used as the default description."
10286 (interactive "P")
10287 (let* ((wcf (current-window-configuration))
10288 (origbuf (current-buffer))
10289 (region (if (org-region-active-p)
10290 (buffer-substring (region-beginning) (region-end))))
10291 (remove (and region (list (region-beginning) (region-end))))
10292 (desc region)
10293 tmphist ; byte-compile incorrectly complains about this
10294 (link link-location)
10295 (abbrevs org-link-abbrev-alist-local)
10296 entry file all-prefixes auto-desc)
10297 (cond
10298 (link-location) ; specified by arg, just use it.
10299 ((org-in-regexp org-bracket-link-regexp 1)
10300 ;; We do have a link at point, and we are going to edit it.
10301 (setq remove (list (match-beginning 0) (match-end 0)))
10302 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10303 (setq link (read-string "Link: "
10304 (org-link-unescape
10305 (org-match-string-no-properties 1)))))
10306 ((or (org-in-regexp org-angle-link-re)
10307 (org-in-regexp org-plain-link-re))
10308 ;; Convert to bracket link
10309 (setq remove (list (match-beginning 0) (match-end 0))
10310 link (read-string "Link: "
10311 (org-remove-angle-brackets (match-string 0)))))
10312 ((member complete-file '((4) (16)))
10313 ;; Completing read for file names.
10314 (setq link (org-file-complete-link complete-file)))
10316 ;; Read link, with completion for stored links.
10317 (org-link-fontify-links-to-this-file)
10318 (org-switch-to-buffer-other-window "*Org Links*")
10319 (with-current-buffer "*Org Links*"
10320 (erase-buffer)
10321 (insert "Insert a link.
10322 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10323 (when org-stored-links
10324 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10325 (insert (mapconcat 'org-link-prettify
10326 (reverse org-stored-links) "\n")))
10327 (goto-char (point-min)))
10328 (let ((cw (selected-window)))
10329 (select-window (get-buffer-window "*Org Links*" 'visible))
10330 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10331 (unless (pos-visible-in-window-p (point-max))
10332 (org-fit-window-to-buffer))
10333 (and (window-live-p cw) (select-window cw)))
10334 ;; Fake a link history, containing the stored links.
10335 (setq tmphist (append (mapcar 'car org-stored-links)
10336 org-insert-link-history))
10337 (setq all-prefixes (append (mapcar 'car abbrevs)
10338 (mapcar 'car org-link-abbrev-alist)
10339 org-link-types))
10340 (unwind-protect
10341 (progn
10342 (setq link
10343 (org-completing-read
10344 "Link: "
10345 (append
10346 (mapcar (lambda (x) (concat x ":"))
10347 all-prefixes)
10348 (mapcar 'car org-stored-links))
10349 nil nil nil
10350 'tmphist
10351 (caar org-stored-links)))
10352 (if (not (string-match "\\S-" link))
10353 (user-error "No link selected"))
10354 (mapc (lambda(l)
10355 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10356 org-stored-links)
10357 (if (or (member link all-prefixes)
10358 (and (equal ":" (substring link -1))
10359 (member (substring link 0 -1) all-prefixes)
10360 (setq link (substring link 0 -1))))
10361 (setq link (with-current-buffer origbuf
10362 (org-link-try-special-completion link)))))
10363 (set-window-configuration wcf)
10364 (kill-buffer "*Org Links*"))
10365 (setq entry (assoc link org-stored-links))
10366 (or entry (push link org-insert-link-history))
10367 (setq desc (or desc (nth 1 entry)))))
10369 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10370 (not org-keep-stored-link-after-insertion))
10371 (setq org-stored-links (delq (assoc link org-stored-links)
10372 org-stored-links)))
10374 (if (and (string-match org-plain-link-re link)
10375 (not (string-match org-ts-regexp link)))
10376 ;; URL-like link, normalize the use of angular brackets.
10377 (setq link (org-remove-angle-brackets link)))
10379 ;; Check if we are linking to the current file with a search
10380 ;; option If yes, simplify the link by using only the search
10381 ;; option.
10382 (when (and buffer-file-name
10383 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10384 (let* ((path (match-string 1 link))
10385 (case-fold-search nil)
10386 (search (match-string 2 link)))
10387 (save-match-data
10388 (if (equal (file-truename buffer-file-name) (file-truename path))
10389 ;; We are linking to this same file, with a search option
10390 (setq link search)))))
10392 ;; Check if we can/should use a relative path. If yes, simplify the link
10393 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10394 (let* ((type (match-string 1 link))
10395 (path (match-string 2 link))
10396 (origpath path)
10397 (case-fold-search nil))
10398 (cond
10399 ((or (eq org-link-file-path-type 'absolute)
10400 (equal complete-file '(16)))
10401 (setq path (abbreviate-file-name (expand-file-name path))))
10402 ((eq org-link-file-path-type 'noabbrev)
10403 (setq path (expand-file-name path)))
10404 ((eq org-link-file-path-type 'relative)
10405 (setq path (file-relative-name path)))
10407 (save-match-data
10408 (if (string-match (concat "^" (regexp-quote
10409 (expand-file-name
10410 (file-name-as-directory
10411 default-directory))))
10412 (expand-file-name path))
10413 ;; We are linking a file with relative path name.
10414 (setq path (substring (expand-file-name path)
10415 (match-end 0)))
10416 (setq path (abbreviate-file-name (expand-file-name path)))))))
10417 (setq link (concat type path))
10418 (if (equal desc origpath)
10419 (setq desc path))))
10421 (if org-make-link-description-function
10422 (setq desc
10423 (or (condition-case nil
10424 (funcall org-make-link-description-function link desc)
10425 (error (progn (message "Can't get link description from `%s'"
10426 (symbol-name org-make-link-description-function))
10427 (sit-for 2) nil)))
10428 (read-string "Description: " default-description)))
10429 (if default-description (setq desc default-description)
10430 (setq desc (or (and auto-desc desc)
10431 (read-string "Description: " desc)))))
10433 (unless (string-match "\\S-" desc) (setq desc nil))
10434 (if remove (apply 'delete-region remove))
10435 (insert (org-make-link-string link desc))))
10437 (defun org-link-try-special-completion (type)
10438 "If there is completion support for link type TYPE, offer it."
10439 (let ((fun (intern (concat "org-" type "-complete-link"))))
10440 (if (functionp fun)
10441 (funcall fun)
10442 (read-string "Link (no completion support): " (concat type ":")))))
10444 (defun org-file-complete-link (&optional arg)
10445 "Create a file link using completion."
10446 (let (file link)
10447 (setq file (org-iread-file-name "File: "))
10448 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10449 (pwd1 (file-name-as-directory (abbreviate-file-name
10450 (expand-file-name ".")))))
10451 (cond
10452 ((equal arg '(16))
10453 (setq link (concat
10454 "file:"
10455 (abbreviate-file-name (expand-file-name file)))))
10456 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10457 (setq link (concat "file:" (match-string 1 file))))
10458 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10459 (expand-file-name file))
10460 (setq link (concat
10461 "file:" (match-string 1 (expand-file-name file)))))
10462 (t (setq link (concat "file:" file)))))
10463 link))
10465 (defun org-iread-file-name (&rest args)
10466 "Read-file-name using `ido-mode' speedup if available.
10467 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10468 See `read-file-name' for a description of parameters."
10469 (org-without-partial-completion
10470 (if (and org-completion-use-ido
10471 (fboundp 'ido-read-file-name)
10472 (boundp 'ido-mode) ido-mode
10473 (listp (second args)))
10474 (let ((ido-enter-matching-directory nil))
10475 (apply 'ido-read-file-name args))
10476 (apply 'read-file-name args))))
10478 (defun org-completing-read (&rest args)
10479 "Completing-read with SPACE being a normal character."
10480 (let ((enable-recursive-minibuffers t)
10481 (minibuffer-local-completion-map
10482 (copy-keymap minibuffer-local-completion-map)))
10483 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10484 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10485 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10486 (apply 'org-icompleting-read args)))
10488 (defun org-completing-read-no-i (&rest args)
10489 (let (org-completion-use-ido org-completion-use-iswitchb)
10490 (apply 'org-completing-read args)))
10492 (defun org-iswitchb-completing-read (prompt choices &rest args)
10493 "Use iswitch as a completing-read replacement to choose from choices.
10494 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10495 from."
10496 (let* ((iswitchb-use-virtual-buffers nil)
10497 (iswitchb-make-buflist-hook
10498 (lambda ()
10499 (setq iswitchb-temp-buflist choices))))
10500 (iswitchb-read-buffer prompt)))
10502 (defun org-icompleting-read (&rest args)
10503 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10504 (org-without-partial-completion
10505 (if (and org-completion-use-ido
10506 (fboundp 'ido-completing-read)
10507 (boundp 'ido-mode) ido-mode
10508 (listp (second args)))
10509 (let ((ido-enter-matching-directory nil))
10510 (apply 'ido-completing-read (concat (car args))
10511 (if (consp (car (nth 1 args)))
10512 (mapcar 'car (nth 1 args))
10513 (nth 1 args))
10514 (cddr args)))
10515 (if (and org-completion-use-iswitchb
10516 (boundp 'iswitchb-mode) iswitchb-mode
10517 (listp (second args)))
10518 (apply 'org-iswitchb-completing-read (concat (car args))
10519 (if (consp (car (nth 1 args)))
10520 (mapcar 'car (nth 1 args))
10521 (nth 1 args))
10522 (cddr args))
10523 (apply 'completing-read args)))))
10525 (defun org-extract-attributes (s)
10526 "Extract the attributes cookie from a string and set as text property."
10527 (let (a attr (start 0) key value)
10528 (save-match-data
10529 (when (string-match "{{\\([^}]+\\)}}$" s)
10530 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10531 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10532 (setq key (match-string 1 a) value (match-string 2 a)
10533 start (match-end 0)
10534 attr (plist-put attr (intern key) value))))
10535 (org-add-props s nil 'org-attr attr))
10538 ;;; Opening/following a link
10540 (defvar org-link-search-failed nil)
10542 (defvar org-open-link-functions nil
10543 "Hook for functions finding a plain text link.
10544 These functions must take a single argument, the link content.
10545 They will be called for links that look like [[link text][description]]
10546 when LINK TEXT does not have a protocol like \"http:\" and does not look
10547 like a filename (e.g. \"./blue.png\").
10549 These functions will be called *before* Org attempts to resolve the
10550 link by doing text searches in the current buffer - so if you want a
10551 link \"[[target]]\" to still find \"<<target>>\", your function should
10552 handle this as a special case.
10554 When the function does handle the link, it must return a non-nil value.
10555 If it decides that it is not responsible for this link, it must return
10556 nil to indicate that that Org-mode can continue with other options
10557 like exact and fuzzy text search.")
10559 (defun org-next-link (&optional search-backward)
10560 "Move forward to the next link.
10561 If the link is in hidden text, expose it."
10562 (interactive "P")
10563 (when (and org-link-search-failed (eq this-command last-command))
10564 (goto-char (point-min))
10565 (message "Link search wrapped back to beginning of buffer"))
10566 (setq org-link-search-failed nil)
10567 (let* ((pos (point))
10568 (ct (org-context))
10569 (a (assoc :link ct))
10570 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10571 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10572 ((looking-at org-any-link-re)
10573 ;; Don't stay stuck at link without an org-link face
10574 (forward-char (if search-backward -1 1))))
10575 (if (funcall srch-fun org-any-link-re nil t)
10576 (progn
10577 (goto-char (match-beginning 0))
10578 (if (outline-invisible-p) (org-show-context)))
10579 (goto-char pos)
10580 (setq org-link-search-failed t)
10581 (message "No further link found"))))
10583 (defun org-previous-link ()
10584 "Move backward to the previous link.
10585 If the link is in hidden text, expose it."
10586 (interactive)
10587 (funcall 'org-next-link t))
10589 (defun org-translate-link (s)
10590 "Translate a link string if a translation function has been defined."
10591 (if (and org-link-translation-function
10592 (fboundp org-link-translation-function)
10593 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10594 (progn
10595 (setq s (funcall org-link-translation-function
10596 (match-string 1 s) (match-string 2 s)))
10597 (concat (car s) ":" (cdr s)))
10600 (defun org-translate-link-from-planner (type path)
10601 "Translate a link from Emacs Planner syntax so that Org can follow it.
10602 This is still an experimental function, your mileage may vary."
10603 (cond
10604 ((member type '("http" "https" "news" "ftp"))
10605 ;; standard Internet links are the same.
10606 nil)
10607 ((and (equal type "irc") (string-match "^//" path))
10608 ;; Planner has two / at the beginning of an irc link, we have 1.
10609 ;; We should have zero, actually....
10610 (setq path (substring path 1)))
10611 ((and (equal type "lisp") (string-match "^/" path))
10612 ;; Planner has a slash, we do not.
10613 (setq type "elisp" path (substring path 1)))
10614 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10615 ;; A typical message link. Planner has the id after the final slash,
10616 ;; we separate it with a hash mark
10617 (setq path (concat (match-string 1 path) "#"
10618 (org-remove-angle-brackets (match-string 2 path))))))
10619 (cons type path))
10621 (defun org-find-file-at-mouse (ev)
10622 "Open file link or URL at mouse."
10623 (interactive "e")
10624 (mouse-set-point ev)
10625 (org-open-at-point 'in-emacs))
10627 (defun org-open-at-mouse (ev)
10628 "Open file link or URL at mouse.
10629 See the docstring of `org-open-file' for details."
10630 (interactive "e")
10631 (mouse-set-point ev)
10632 (if (eq major-mode 'org-agenda-mode)
10633 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10634 (org-open-at-point))
10636 (defvar org-window-config-before-follow-link nil
10637 "The window configuration before following a link.
10638 This is saved in case the need arises to restore it.")
10640 (defvar org-open-link-marker (make-marker)
10641 "Marker pointing to the location where `org-open-at-point' was called.")
10643 ;;;###autoload
10644 (defun org-open-at-point-global ()
10645 "Follow a link like Org-mode does.
10646 This command can be called in any mode to follow a link that has
10647 Org-mode syntax."
10648 (interactive)
10649 (org-run-like-in-org-mode 'org-open-at-point))
10651 ;;;###autoload
10652 (defun org-open-link-from-string (s &optional arg reference-buffer)
10653 "Open a link in the string S, as if it was in Org-mode."
10654 (interactive "sLink: \nP")
10655 (let ((reference-buffer (or reference-buffer (current-buffer))))
10656 (with-temp-buffer
10657 (let ((org-inhibit-startup (not reference-buffer)))
10658 (org-mode)
10659 (insert s)
10660 (goto-char (point-min))
10661 (when reference-buffer
10662 (setq org-link-abbrev-alist-local
10663 (with-current-buffer reference-buffer
10664 org-link-abbrev-alist-local)))
10665 (org-open-at-point arg reference-buffer)))))
10667 (defvar org-open-at-point-functions nil
10668 "Hook that is run when following a link at point.
10670 Functions in this hook must return t if they identify and follow
10671 a link at point. If they don't find anything interesting at point,
10672 they must return nil.")
10674 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10675 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10676 (defun org-open-at-point (&optional arg reference-buffer)
10677 "Open link, timestamp, footnote or tags at point.
10679 When point is on a link, follow it. Normally, files will be
10680 opened by an appropriate application. If the optional prefix
10681 argument ARG is non-nil, Emacs will visit the file. With
10682 a double prefix argument, try to open outside of Emacs, in the
10683 application the system uses for this file type.
10685 When point is on a timestamp, open the agenda at the day
10686 specified.
10688 When point is a footnote definition, move to the first reference
10689 found. If it is on a reference, move to the associated
10690 definition.
10692 When point is on a headline, display a list of every link in the
10693 entry, so it is possible to pick one, or all, of them. If point
10694 is on a tag, call `org-tags-view' instead.
10696 When optional argument REFERENCE-BUFFER is non-nil, it should
10697 specify a buffer from where the link search should happen. This
10698 is used internally by `org-open-link-from-string'.
10700 On top of syntactically correct links, this function will open
10701 the link at point in comments or comment blocks and the first
10702 link in a property drawer line."
10703 (interactive "P")
10704 ;; On a code block, open block's results.
10705 (unless (call-interactively 'org-babel-open-src-block-result)
10706 (org-load-modules-maybe)
10707 (move-marker org-open-link-marker (point))
10708 (setq org-window-config-before-follow-link (current-window-configuration))
10709 (org-remove-occur-highlights nil nil t)
10710 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10711 (let* ((context
10712 ;; Only consider supported types, even if they are not
10713 ;; the closest one.
10714 (org-element-lineage
10715 (org-element-context)
10716 '(comment comment-block footnote-definition footnote-reference
10717 headline inlinetask keyword link node-property
10718 timestamp)
10720 (type (org-element-type context))
10721 (value (org-element-property :value context)))
10722 (cond
10723 ((not context) (user-error "No link found"))
10724 ;; Exception: open timestamps and links in properties
10725 ;; drawers, keywords and comments.
10726 ((memq type '(comment comment-block keyword node-property))
10727 (cond ((org-in-regexp org-any-link-re)
10728 (org-open-link-from-string (match-string-no-properties 0)))
10729 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10730 (org-follow-timestamp-link))
10731 (t (user-error "No link found"))))
10732 ;; On a headline or an inlinetask, but not on a timestamp,
10733 ;; a link, a footnote reference or on tags.
10734 ((and (memq type '(headline inlinetask))
10735 ;; Not on tags.
10736 (progn (save-excursion (beginning-of-line)
10737 (looking-at org-complex-heading-regexp))
10738 (or (not (match-beginning 5))
10739 (< (point) (match-beginning 5)))))
10740 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10741 (links (car data))
10742 (links-end (cdr data)))
10743 (if links
10744 (dolist (link (if (stringp links) (list links) links))
10745 (search-forward link nil links-end)
10746 (goto-char (match-beginning 0))
10747 (org-open-at-point))
10748 (require 'org-attach)
10749 (org-attach-reveal 'if-exists))))
10750 ;; Do nothing on white spaces after an object, unless point
10751 ;; is right after it.
10752 ((> (point)
10753 (save-excursion
10754 (goto-char (org-element-property :end context))
10755 (skip-chars-backward " \t")
10756 (point)))
10757 (user-error "No link found"))
10758 ((eq type 'timestamp) (org-follow-timestamp-link))
10759 ;; On tags within a headline or an inlinetask.
10760 ((and (memq type '(headline inlinetask))
10761 (progn (save-excursion (beginning-of-line)
10762 (looking-at org-complex-heading-regexp))
10763 (and (match-beginning 5)
10764 (>= (point) (match-beginning 5)))))
10765 (org-tags-view arg (substring (match-string 5) 0 -1)))
10766 ((eq type 'link)
10767 ;; When link is located within the description of another
10768 ;; link (e.g., an inline image), always open the parent
10769 ;; link.
10770 (let*((link (let ((up (org-element-property :parent context)))
10771 (if (eq (org-element-type up) 'link) up context)))
10772 (type (org-element-property :type link))
10773 (path (org-link-unescape (org-element-property :path link))))
10774 ;; Switch back to REFERENCE-BUFFER needed when called in
10775 ;; a temporary buffer through `org-open-link-from-string'.
10776 (with-current-buffer (or reference-buffer (current-buffer))
10777 (cond
10778 ((equal type "file")
10779 (if (string-match "[*?{]" (file-name-nondirectory path))
10780 (dired path)
10781 ;; Look into `org-link-protocols' in order to find
10782 ;; a DEDICATED-FUNCTION to open file. The function
10783 ;; will be applied on raw link instead of parsed
10784 ;; link due to the limitation in `org-add-link-type'
10785 ;; ("open" function called with a single argument).
10786 ;; If no such function is found, fallback to
10787 ;; `org-open-file'.
10789 ;; Note : "file+emacs" and "file+sys" types are
10790 ;; hard-coded in order to escape the previous
10791 ;; limitation.
10792 (let* ((option (org-element-property :search-option link))
10793 (app (org-element-property :application link))
10794 (dedicated-function
10795 (nth 1 (assoc app org-link-protocols))))
10796 (if dedicated-function
10797 (funcall dedicated-function
10798 (concat path
10799 (and option (concat "::" option))))
10800 (apply 'org-open-file
10801 path
10802 (cond (arg)
10803 ((equal app "emacs") 'emacs)
10804 ((equal app "sys") 'system))
10805 (cond ((not option) nil)
10806 ((org-string-match-p "\\`[0-9]+\\'" option)
10807 (list (string-to-number option)))
10808 (t (list nil
10809 (org-link-unescape option)))))))))
10810 ((assoc type org-link-protocols)
10811 (funcall (nth 1 (assoc type org-link-protocols)) path))
10812 ((equal type "help")
10813 (let ((f-or-v (intern path)))
10814 (cond ((fboundp f-or-v) (describe-function f-or-v))
10815 ((boundp f-or-v) (describe-variable f-or-v))
10816 (t (error "Not a known function or variable")))))
10817 ((member type '("http" "https" "ftp" "mailto" "news"))
10818 (browse-url (org-link-escape-browser (concat type ":" path))))
10819 ((equal type "doi")
10820 (browse-url
10821 (org-link-escape-browser (concat org-doi-server-url path))))
10822 ((equal type "message") (browse-url (concat type ":" path)))
10823 ((equal type "shell")
10824 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10825 (cmd path))
10826 (if (or (and (org-string-nw-p
10827 org-confirm-shell-link-not-regexp)
10828 (string-match
10829 org-confirm-shell-link-not-regexp cmd))
10830 (not org-confirm-shell-link-function)
10831 (funcall org-confirm-shell-link-function
10832 (format "Execute \"%s\" in shell? "
10833 (org-add-props cmd nil
10834 'face 'org-warning))))
10835 (progn
10836 (message "Executing %s" cmd)
10837 (shell-command cmd buf)
10838 (when (featurep 'midnight)
10839 (setq clean-buffer-list-kill-buffer-names
10840 (cons buf
10841 clean-buffer-list-kill-buffer-names))))
10842 (user-error "Abort"))))
10843 ((equal type "elisp")
10844 (let ((cmd path))
10845 (if (or (and (org-string-nw-p
10846 org-confirm-elisp-link-not-regexp)
10847 (org-string-match-p
10848 org-confirm-elisp-link-not-regexp cmd))
10849 (not org-confirm-elisp-link-function)
10850 (funcall org-confirm-elisp-link-function
10851 (format "Execute \"%s\" as elisp? "
10852 (org-add-props cmd nil
10853 'face 'org-warning))))
10854 (message "%s => %s" cmd
10855 (if (eq (string-to-char cmd) ?\()
10856 (eval (read cmd))
10857 (call-interactively (read cmd))))
10858 (user-error "Abort"))))
10859 ((equal type "id")
10860 (require 'ord-id)
10861 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10862 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10863 (unless (run-hook-with-args-until-success
10864 'org-open-link-functions path)
10865 (if (not arg) (org-mark-ring-push)
10866 (switch-to-buffer-other-window
10867 (org-get-buffer-for-internal-link (current-buffer))))
10868 (let ((cmd `(org-link-search
10869 ,(if (member type '("custom-id" "coderef"))
10870 (org-element-property :raw-link link)
10871 path)
10872 ,(cond ((equal arg '(4)) 'occur)
10873 ((equal arg '(16)) 'org-occur))
10874 ,(org-element-property :begin link))))
10875 (condition-case nil
10876 (let ((org-link-search-inhibit-query t))
10877 (eval cmd))
10878 (error (progn (widen) (eval cmd)))))))
10879 (t (browse-url-at-point))))))
10880 ;; On a footnote reference or at a footnote definition's label.
10881 ((or (eq type 'footnote-reference)
10882 (and (eq type 'footnote-definition)
10883 (save-excursion
10884 ;; Do not validate action when point is on the
10885 ;; spaces right after the footnote label, in
10886 ;; order to be on par with behaviour on links.
10887 (skip-chars-forward " \t")
10888 (let ((begin
10889 (org-element-property :contents-begin context)))
10890 (if begin (< (point) begin)
10891 (= (org-element-property :post-affiliated context)
10892 (line-beginning-position)))))))
10893 (org-footnote-action))
10894 (t (user-error "No link found")))))
10895 (move-marker org-open-link-marker nil)
10896 (run-hook-with-args 'org-follow-link-hook)))
10898 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10899 "Offer links in the current entry and return the selected link.
10900 If there is only one link, return it.
10901 If NTH is an integer, return the NTH link found.
10902 If ZERO is a string, check also this string for a link, and if
10903 there is one, return it."
10904 (with-current-buffer buffer
10905 (save-excursion
10906 (save-restriction
10907 (widen)
10908 (goto-char marker)
10909 (let ((cnt ?0)
10910 (in-emacs (if (integerp nth) nil nth))
10911 have-zero end links link c)
10912 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10913 (push (match-string 0 zero) links)
10914 (setq cnt (1- cnt) have-zero t))
10915 (save-excursion
10916 (org-back-to-heading t)
10917 (setq end (save-excursion (outline-next-heading) (point)))
10918 (while (re-search-forward org-any-link-re end t)
10919 (push (match-string 0) links))
10920 (setq links (org-uniquify (reverse links))))
10921 (cond
10922 ((null links)
10923 (message "No links"))
10924 ((equal (length links) 1)
10925 (setq link (car links)))
10926 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10927 (setq link (nth (if have-zero nth (1- nth)) links)))
10928 (t ; we have to select a link
10929 (save-excursion
10930 (save-window-excursion
10931 (delete-other-windows)
10932 (with-output-to-temp-buffer "*Select Link*"
10933 (mapc (lambda (l)
10934 (if (not (string-match org-bracket-link-regexp l))
10935 (princ (format "[%c] %s\n" (incf cnt)
10936 (org-remove-angle-brackets l)))
10937 (if (match-end 3)
10938 (princ (format "[%c] %s (%s)\n" (incf cnt)
10939 (match-string 3 l) (match-string 1 l)))
10940 (princ (format "[%c] %s\n" (incf cnt)
10941 (match-string 1 l))))))
10942 links))
10943 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10944 (message "Select link to open, RET to open all:")
10945 (setq c (read-char-exclusive))
10946 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10947 (when (equal c ?q) (user-error "Abort"))
10948 (if (equal c ?\C-m)
10949 (setq link links)
10950 (setq nth (- c ?0))
10951 (if have-zero (setq nth (1+ nth)))
10952 (unless (and (integerp nth) (>= (length links) nth))
10953 (user-error "Invalid link selection"))
10954 (setq link (nth (1- nth) links)))))
10955 (cons link end))))))
10957 ;; TODO: These functions are deprecated since `org-open-at-point'
10958 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10959 (defun org-open-file-with-system (path)
10960 "Open file at PATH using the system way of opening it."
10961 (org-open-file path 'system))
10962 (defun org-open-file-with-emacs (path)
10963 "Open file at PATH in Emacs."
10964 (org-open-file path 'emacs))
10967 ;;; File search
10969 (defvar org-create-file-search-functions nil
10970 "List of functions to construct the right search string for a file link.
10971 These functions are called in turn with point at the location to
10972 which the link should point.
10974 A function in the hook should first test if it would like to
10975 handle this file type, for example by checking the `major-mode'
10976 or the file extension. If it decides not to handle this file, it
10977 should just return nil to give other functions a chance. If it
10978 does handle the file, it must return the search string to be used
10979 when following the link. The search string will be part of the
10980 file link, given after a double colon, and `org-open-at-point'
10981 will automatically search for it. If special measures must be
10982 taken to make the search successful, another function should be
10983 added to the companion hook `org-execute-file-search-functions',
10984 which see.
10986 A function in this hook may also use `setq' to set the variable
10987 `description' to provide a suggestion for the descriptive text to
10988 be used for this link when it gets inserted into an Org-mode
10989 buffer with \\[org-insert-link].")
10991 (defvar org-execute-file-search-functions nil
10992 "List of functions to execute a file search triggered by a link.
10994 Functions added to this hook must accept a single argument, the
10995 search string that was part of the file link, the part after the
10996 double colon. The function must first check if it would like to
10997 handle this search, for example by checking the `major-mode' or
10998 the file extension. If it decides not to handle this search, it
10999 should just return nil to give other functions a chance. If it
11000 does handle the search, it must return a non-nil value to keep
11001 other functions from trying.
11003 Each function can access the current prefix argument through the
11004 variable `current-prefix-arg'. Note that a single prefix is used
11005 to force opening a link in Emacs, so it may be good to only use a
11006 numeric or double prefix to guide the search function.
11008 In case this is needed, a function in this hook can also restore
11009 the window configuration before `org-open-at-point' was called using:
11011 (set-window-configuration org-window-config-before-follow-link)")
11013 (defun org-link-search (s &optional type avoid-pos stealth)
11014 "Search for a link search option.
11015 If S is surrounded by forward slashes, it is interpreted as a
11016 regular expression. In org-mode files, this will create an `org-occur'
11017 sparse tree. In ordinary files, `occur' will be used to list matches.
11018 If the current buffer is in `dired-mode', grep will be used to search
11019 in all files. If AVOID-POS is given, ignore matches near that position.
11021 When optional argument STEALTH is non-nil, do not modify
11022 visibility around point, thus ignoring `org-show-context-detail'
11023 variable."
11024 (let ((case-fold-search t)
11025 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11026 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11027 (append '(("") (" ") ("\t") ("\n"))
11028 org-emphasis-alist)
11029 "\\|") "\\)"))
11030 (pos (point))
11031 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
11032 (cond
11033 ;; First check if there are any special search functions
11034 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11035 ;; Now try the builtin stuff
11036 ((and (eq (aref s0 0) ?#)
11037 (> (length s0) 1)
11038 (let ((match (org-find-property "CUSTOM_ID" (substring s0 1))))
11039 (and match (goto-char match) (setf type 'dedicated)))))
11040 ((save-excursion
11041 (goto-char (point-min))
11042 (and
11043 (re-search-forward
11044 (concat "<<" (regexp-quote s0) ">>") nil t)
11045 (setq type 'dedicated
11046 pos (match-beginning 0))))
11047 ;; There is an exact target for this
11048 (goto-char pos))
11049 ((save-excursion
11050 (goto-char (point-min))
11051 (and
11052 (re-search-forward
11053 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11054 (setq type 'dedicated pos (match-beginning 0))))
11055 ;; Found an element with a matching #+name affiliated keyword.
11056 (goto-char pos))
11057 ((and (string-match "^(\\(.*\\))$" s0)
11058 (save-excursion
11059 (goto-char (point-min))
11060 (and
11061 (re-search-forward
11062 (concat "[^[]" (regexp-quote
11063 (format org-coderef-label-format
11064 (match-string 1 s0))))
11065 nil t)
11066 (setq type 'dedicated
11067 pos (1+ (match-beginning 0))))))
11068 ;; There is a coderef target for this
11069 (goto-char pos))
11070 ((string-match "^/\\(.*\\)/$" s)
11071 ;; A regular expression
11072 (cond
11073 ((derived-mode-p 'org-mode)
11074 (org-occur (match-string 1 s)))
11075 (t (org-do-occur (match-string 1 s)))))
11076 ((and (derived-mode-p 'org-mode)
11077 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11078 org-link-search-must-match-exact-headline))
11079 ;; Headline search.
11080 (goto-char (point-min))
11081 (cond
11082 ((let (case-fold-search)
11083 (re-search-forward
11084 (let* ((wspace "[ \t]")
11085 (wspaceopt (concat wspace "*"))
11086 (cookie (concat "\\(?:"
11087 wspaceopt
11088 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11089 wspaceopt
11090 "\\)"))
11091 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11092 (concat
11093 org-outline-regexp-bol
11094 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11095 "\\(?:\\[#.\\][ \t]+\\)?"
11096 "\\(?:" org-comment-string "[ \t]+\\)?"
11097 sep "*"
11098 (mapconcat #'identity
11099 (org-split-string (regexp-quote s))
11100 (concat sep "+"))
11101 sep "*"
11102 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11103 "[ \t]*$"))
11104 nil t))
11105 ;; OK, found a match
11106 (setq type 'dedicated)
11107 (goto-char (match-beginning 0)))
11108 ((and (not org-link-search-inhibit-query)
11109 (eq org-link-search-must-match-exact-headline 'query-to-create)
11110 (y-or-n-p "No match - create this as a new heading? "))
11111 (goto-char (point-max))
11112 (unless (bolp) (newline))
11113 (org-insert-heading nil t t)
11114 (insert s "\n")
11115 (beginning-of-line 0))
11117 (goto-char pos)
11118 (error "No match"))))
11120 ;; A normal search string
11121 (remove-text-properties
11122 0 (length s)
11123 '(face nil mouse-face nil keymap nil fontified nil) s)
11124 ;; Make a series of regular expressions to find a match
11125 (setq words (org-split-string s "[ \n\r\t]+")
11127 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11128 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11129 "\\)" markers)
11130 re2a_ (concat "\\(" (mapconcat 'downcase words
11131 "[ \t\r\n]+") "\\)[ \t\r\n]")
11132 re2a (concat "[ \t\r\n]" re2a_)
11133 re4_ (concat "\\(" (mapconcat 'downcase words
11134 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11135 re4 (concat "[^a-zA-Z_]" re4_)
11137 re5 (concat ".*" re4)
11138 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11139 "\\)\\|\\(" re5 "\\)"))
11140 (cond
11141 ((eq type 'org-occur) (org-occur reall))
11142 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11143 (t (goto-char (point-min))
11144 (setq type 'fuzzy)
11145 (if (or (and (org-search-not-self 1 re0 nil t)
11146 (setq type 'dedicated))
11147 (org-search-not-self 1 re2 nil t)
11148 (org-search-not-self 1 re2a nil t)
11149 (org-search-not-self 1 re4 nil t)
11150 (org-search-not-self 1 re5 nil t))
11151 (goto-char (match-beginning 1))
11152 (goto-char pos)
11153 (error "No match"))))))
11154 (and (derived-mode-p 'org-mode)
11155 (not stealth)
11156 (org-show-context 'link-search))
11157 type))
11159 (defun org-search-not-self (group &rest args)
11160 "Execute `re-search-forward', but only accept matches that do not
11161 enclose the position of `org-open-link-marker'."
11162 (let ((m org-open-link-marker))
11163 (catch 'exit
11164 (while (apply 're-search-forward args)
11165 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11166 (goto-char (match-end group))
11167 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11168 (> (match-beginning 0) (marker-position m))
11169 (< (match-end 0) (marker-position m)))
11170 (save-match-data
11171 (or (not (org-in-regexp
11172 org-bracket-link-analytic-regexp 1))
11173 (not (match-end 4)) ; no description
11174 (and (<= (match-beginning 4) (point))
11175 (>= (match-end 4) (point))))))
11176 (throw 'exit (point))))))))
11178 (defun org-get-buffer-for-internal-link (buffer)
11179 "Return a buffer to be used for displaying the link target of internal links."
11180 (cond
11181 ((not org-display-internal-link-with-indirect-buffer)
11182 buffer)
11183 ((string-match "(Clone)$" (buffer-name buffer))
11184 (message "Buffer is already a clone, not making another one")
11185 ;; we also do not modify visibility in this case
11186 buffer)
11187 (t ; make a new indirect buffer for displaying the link
11188 (let* ((bn (buffer-name buffer))
11189 (ibn (concat bn "(Clone)"))
11190 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11191 (with-current-buffer ib (org-overview))
11192 ib))))
11194 (defun org-do-occur (regexp &optional cleanup)
11195 "Call the Emacs command `occur'.
11196 If CLEANUP is non-nil, remove the printout of the regular expression
11197 in the *Occur* buffer. This is useful if the regex is long and not useful
11198 to read."
11199 (occur regexp)
11200 (when cleanup
11201 (let ((cwin (selected-window)) win beg end)
11202 (when (setq win (get-buffer-window "*Occur*"))
11203 (select-window win))
11204 (goto-char (point-min))
11205 (when (re-search-forward "match[a-z]+" nil t)
11206 (setq beg (match-end 0))
11207 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11208 (setq end (1- (match-beginning 0)))))
11209 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11210 (goto-char (point-min))
11211 (select-window cwin))))
11213 ;;; The mark ring for links jumps
11215 (defvar org-mark-ring nil
11216 "Mark ring for positions before jumps in Org-mode.")
11217 (defvar org-mark-ring-last-goto nil
11218 "Last position in the mark ring used to go back.")
11219 ;; Fill and close the ring
11220 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11221 (loop for i from 1 to org-mark-ring-length do
11222 (push (make-marker) org-mark-ring))
11223 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11224 org-mark-ring)
11226 (defun org-mark-ring-push (&optional pos buffer)
11227 "Put the current position or POS into the mark ring and rotate it."
11228 (interactive)
11229 (setq pos (or pos (point)))
11230 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11231 (move-marker (car org-mark-ring)
11232 (or pos (point))
11233 (or buffer (current-buffer)))
11234 (message "%s"
11235 (substitute-command-keys
11236 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11238 (defun org-mark-ring-goto (&optional n)
11239 "Jump to the previous position in the mark ring.
11240 With prefix arg N, jump back that many stored positions. When
11241 called several times in succession, walk through the entire ring.
11242 Org-mode commands jumping to a different position in the current file,
11243 or to another Org-mode file, automatically push the old position
11244 onto the ring."
11245 (interactive "p")
11246 (let (p m)
11247 (if (eq last-command this-command)
11248 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11249 (setq p org-mark-ring))
11250 (setq org-mark-ring-last-goto p)
11251 (setq m (car p))
11252 (org-pop-to-buffer-same-window (marker-buffer m))
11253 (goto-char m)
11254 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11256 (defun org-remove-angle-brackets (s)
11257 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11258 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11260 (defun org-add-angle-brackets (s)
11261 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11262 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11264 (defun org-remove-double-quotes (s)
11265 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11266 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11269 ;;; Following specific links
11271 (defun org-follow-timestamp-link ()
11272 "Open an agenda view for the time-stamp date/range at point."
11273 (cond
11274 ((org-at-date-range-p t)
11275 (let ((org-agenda-start-on-weekday)
11276 (t1 (match-string 1))
11277 (t2 (match-string 2)) tt1 tt2)
11278 (setq tt1 (time-to-days (org-time-string-to-time t1))
11279 tt2 (time-to-days (org-time-string-to-time t2)))
11280 (let ((org-agenda-buffer-tmp-name
11281 (format "*Org Agenda(a:%s)"
11282 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11283 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11284 ((org-at-timestamp-p t)
11285 (let ((org-agenda-buffer-tmp-name
11286 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11287 (org-agenda-list nil (time-to-days (org-time-string-to-time
11288 (substring (match-string 1) 0 10)))
11289 1)))
11290 (t (error "This should not happen"))))
11293 ;;; Following file links
11294 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11295 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11296 (declare-function mailcap-mime-info
11297 "mailcap" (string &optional request no-decode))
11298 (defvar org-wait nil)
11299 (defun org-open-file (path &optional in-emacs line search)
11300 "Open the file at PATH.
11301 First, this expands any special file name abbreviations. Then the
11302 configuration variable `org-file-apps' is checked if it contains an
11303 entry for this file type, and if yes, the corresponding command is launched.
11305 If no application is found, Emacs simply visits the file.
11307 With optional prefix argument IN-EMACS, Emacs will visit the file.
11308 With a double \\[universal-argument] \\[universal-argument] \
11309 prefix arg, Org tries to avoid opening in Emacs
11310 and to use an external application to visit the file.
11312 Optional LINE specifies a line to go to, optional SEARCH a string
11313 to search for. If LINE or SEARCH is given, the file will be
11314 opened in Emacs, unless an entry from org-file-apps that makes
11315 use of groups in a regexp matches.
11317 If you want to change the way frames are used when following a
11318 link, please customize `org-link-frame-setup'.
11320 If the file does not exist, an error is thrown."
11321 (let* ((file (if (equal path "")
11322 buffer-file-name
11323 (substitute-in-file-name (expand-file-name path))))
11324 (file-apps (append org-file-apps (org-default-apps)))
11325 (apps (org-remove-if
11326 'org-file-apps-entry-match-against-dlink-p file-apps))
11327 (apps-dlink (org-remove-if-not
11328 'org-file-apps-entry-match-against-dlink-p file-apps))
11329 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11330 (dirp (if remp nil (file-directory-p file)))
11331 (file (if (and dirp org-open-directory-means-index-dot-org)
11332 (concat (file-name-as-directory file) "index.org")
11333 file))
11334 (a-m-a-p (assq 'auto-mode apps))
11335 (dfile (downcase file))
11336 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11337 (link (cond ((and (eq line nil)
11338 (eq search nil))
11339 file)
11340 (line
11341 (concat file "::" (number-to-string line)))
11342 (search
11343 (concat file "::" search))))
11344 (dlink (downcase link))
11345 (old-buffer (current-buffer))
11346 (old-pos (point))
11347 (old-mode major-mode)
11348 ext cmd link-match-data)
11349 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11350 (setq ext (match-string 1 dfile))
11351 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11352 (setq ext (match-string 1 dfile))))
11353 (cond
11354 ((member in-emacs '((16) system))
11355 (setq cmd (cdr (assoc 'system apps))))
11356 (in-emacs (setq cmd 'emacs))
11358 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11359 (and dirp (cdr (assoc 'directory apps)))
11360 ; first, try matching against apps-dlink
11361 ; if we get a match here, store the match data for later
11362 (let ((match (assoc-default dlink apps-dlink
11363 'string-match)))
11364 (if match
11365 (progn (setq link-match-data (match-data))
11366 match)
11367 (progn (setq in-emacs (or in-emacs line search))
11368 nil))) ; if we have no match in apps-dlink,
11369 ; always open the file in emacs if line or search
11370 ; is given (for backwards compatibility)
11371 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11372 'string-match)
11373 (cdr (assoc ext apps))
11374 (cdr (assoc t apps))))))
11375 (when (eq cmd 'system)
11376 (setq cmd (cdr (assoc 'system apps))))
11377 (when (eq cmd 'default)
11378 (setq cmd (cdr (assoc t apps))))
11379 (when (eq cmd 'mailcap)
11380 (require 'mailcap)
11381 (mailcap-parse-mailcaps)
11382 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11383 (command (mailcap-mime-info mime-type)))
11384 (if (stringp command)
11385 (setq cmd command)
11386 (setq cmd 'emacs))))
11387 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11388 (not (file-exists-p file))
11389 (not org-open-non-existing-files))
11390 (user-error "No such file: %s" file))
11391 (cond
11392 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11393 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11394 (while (string-match "['\"]%s['\"]" cmd)
11395 (setq cmd (replace-match "%s" t t cmd)))
11396 (while (string-match "%s" cmd)
11397 (setq cmd (replace-match
11398 (save-match-data
11399 (shell-quote-argument
11400 (convert-standard-filename file)))
11401 t t cmd)))
11403 ;; Replace "%1", "%2" etc. in command with group matches from regex
11404 (save-match-data
11405 (let ((match-index 1)
11406 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11407 (set-match-data link-match-data)
11408 (while (<= match-index number-of-groups)
11409 (let ((regex (concat "%" (number-to-string match-index)))
11410 (replace-with (match-string match-index dlink)))
11411 (while (string-match regex cmd)
11412 (setq cmd (replace-match replace-with t t cmd))))
11413 (setq match-index (+ match-index 1)))))
11415 (save-window-excursion
11416 (message "Running %s...done" cmd)
11417 (start-process-shell-command cmd nil cmd)
11418 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11419 ((or (stringp cmd)
11420 (eq cmd 'emacs))
11421 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11422 (widen)
11423 (if line (progn (org-goto-line line)
11424 (if (derived-mode-p 'org-mode)
11425 (org-reveal)))
11426 (if search (org-link-search search))))
11427 ((consp cmd)
11428 (let ((file (convert-standard-filename file)))
11429 (save-match-data
11430 (set-match-data link-match-data)
11431 (eval cmd))))
11432 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11433 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11434 (or (not (equal old-buffer (current-buffer)))
11435 (not (equal old-pos (point))))
11436 (org-mark-ring-push old-pos old-buffer))))
11438 (defun org-file-apps-entry-match-against-dlink-p (entry)
11439 "This function returns non-nil if `entry' uses a regular
11440 expression which should be matched against the whole link by
11441 org-open-file.
11443 It assumes that is the case when the entry uses a regular
11444 expression which has at least one grouping construct and the
11445 action is either a lisp form or a command string containing
11446 '%1', i.e. using at least one subexpression match as a
11447 parameter."
11448 (let ((selector (car entry))
11449 (action (cdr entry)))
11450 (if (stringp selector)
11451 (and (> (regexp-opt-depth selector) 0)
11452 (or (and (stringp action)
11453 (string-match "%[0-9]" action))
11454 (consp action)))
11455 nil)))
11457 (defun org-default-apps ()
11458 "Return the default applications for this operating system."
11459 (cond
11460 ((eq system-type 'darwin)
11461 org-file-apps-defaults-macosx)
11462 ((eq system-type 'windows-nt)
11463 org-file-apps-defaults-windowsnt)
11464 (t org-file-apps-defaults-gnu)))
11466 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11467 "Convert extensions to regular expressions in the cars of LIST.
11468 Also, weed out any non-string entries, because the return value is used
11469 only for regexp matching.
11470 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11471 point to the symbol `emacs', indicating that the file should
11472 be opened in Emacs."
11473 (append
11474 (delq nil
11475 (mapcar (lambda (x)
11476 (if (not (stringp (car x)))
11478 (if (string-match "\\W" (car x))
11480 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11481 list))
11482 (if add-auto-mode
11483 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11485 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11486 (defun org-file-remote-p (file)
11487 "Test whether FILE specifies a location on a remote system.
11488 Return non-nil if the location is indeed remote.
11490 For example, the filename \"/user@host:/foo\" specifies a location
11491 on the system \"/user@host:\"."
11492 (cond ((fboundp 'file-remote-p)
11493 (file-remote-p file))
11494 ((fboundp 'tramp-handle-file-remote-p)
11495 (tramp-handle-file-remote-p file))
11496 ((and (boundp 'ange-ftp-name-format)
11497 (string-match (car ange-ftp-name-format) file))
11498 t)))
11501 ;;;; Refiling
11503 (defun org-get-org-file ()
11504 "Read a filename, with default directory `org-directory'."
11505 (let ((default (or org-default-notes-file remember-data-file)))
11506 (read-file-name (format "File name [%s]: " default)
11507 (file-name-as-directory org-directory)
11508 default)))
11510 (defun org-notes-order-reversed-p ()
11511 "Check if the current file should receive notes in reversed order."
11512 (cond
11513 ((not org-reverse-note-order) nil)
11514 ((eq t org-reverse-note-order) t)
11515 ((not (listp org-reverse-note-order)) nil)
11516 (t (catch 'exit
11517 (let ((all org-reverse-note-order)
11518 entry)
11519 (while (setq entry (pop all))
11520 (if (string-match (car entry) buffer-file-name)
11521 (throw 'exit (cdr entry))))
11522 nil)))))
11524 (defvar org-refile-target-table nil
11525 "The list of refile targets, created by `org-refile'.")
11527 (defvar org-agenda-new-buffers nil
11528 "Buffers created to visit agenda files.")
11530 (defvar org-refile-cache nil
11531 "Cache for refile targets.")
11533 (defvar org-refile-markers nil
11534 "All the markers used for caching refile locations.")
11536 (defun org-refile-marker (pos)
11537 "Get a new refile marker, but only if caching is in use."
11538 (if (not org-refile-use-cache)
11540 (let ((m (make-marker)))
11541 (move-marker m pos)
11542 (push m org-refile-markers)
11543 m)))
11545 (defun org-refile-cache-clear ()
11546 "Clear the refile cache and disable all the markers."
11547 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11548 (setq org-refile-markers nil)
11549 (setq org-refile-cache nil)
11550 (message "Refile cache has been cleared"))
11552 (defun org-refile-cache-check-set (set)
11553 "Check if all the markers in the cache still have live buffers."
11554 (let (marker)
11555 (catch 'exit
11556 (while (and set (setq marker (nth 3 (pop set))))
11557 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11558 (when (and marker (null (marker-buffer marker)))
11559 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11560 (sit-for 3)
11561 (throw 'exit nil)))
11562 t)))
11564 (defun org-refile-cache-put (set &rest identifiers)
11565 "Push the refile targets SET into the cache, under IDENTIFIERS."
11566 (let* ((key (sha1 (prin1-to-string identifiers)))
11567 (entry (assoc key org-refile-cache)))
11568 (if entry
11569 (setcdr entry set)
11570 (push (cons key set) org-refile-cache))))
11572 (defun org-refile-cache-get (&rest identifiers)
11573 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11574 (cond
11575 ((not org-refile-cache) nil)
11576 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11578 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11579 org-refile-cache))))
11580 (and set (org-refile-cache-check-set set) set)))))
11582 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11583 "Produce a table with refile targets."
11584 (let ((case-fold-search nil)
11585 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11586 (entries (or org-refile-targets '((nil . (:level . 1)))))
11587 targets tgs txt re files f desc descre fast-path-p level pos0)
11588 (message "Getting targets...")
11589 (with-current-buffer (or default-buffer (current-buffer))
11590 (while (setq entry (pop entries))
11591 (setq files (car entry) desc (cdr entry))
11592 (setq fast-path-p nil)
11593 (cond
11594 ((null files) (setq files (list (current-buffer))))
11595 ((eq files 'org-agenda-files)
11596 (setq files (org-agenda-files 'unrestricted)))
11597 ((and (symbolp files) (fboundp files))
11598 (setq files (funcall files)))
11599 ((and (symbolp files) (boundp files))
11600 (setq files (symbol-value files))))
11601 (if (stringp files) (setq files (list files)))
11602 (cond
11603 ((eq (car desc) :tag)
11604 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11605 ((eq (car desc) :todo)
11606 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11607 ((eq (car desc) :regexp)
11608 (setq descre (cdr desc)))
11609 ((eq (car desc) :level)
11610 (setq descre (concat "^\\*\\{" (number-to-string
11611 (if org-odd-levels-only
11612 (1- (* 2 (cdr desc)))
11613 (cdr desc)))
11614 "\\}[ \t]")))
11615 ((eq (car desc) :maxlevel)
11616 (setq fast-path-p t)
11617 (setq descre (concat "^\\*\\{1," (number-to-string
11618 (if org-odd-levels-only
11619 (1- (* 2 (cdr desc)))
11620 (cdr desc)))
11621 "\\}[ \t]")))
11622 (t (error "Bad refiling target description %s" desc)))
11623 (while (setq f (pop files))
11624 (with-current-buffer
11625 (if (bufferp f) f (org-get-agenda-file-buffer f))
11627 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11628 (progn
11629 (if (bufferp f) (setq f (buffer-file-name
11630 (buffer-base-buffer f))))
11631 (setq f (and f (expand-file-name f)))
11632 (if (eq org-refile-use-outline-path 'file)
11633 (push (list (file-name-nondirectory f) f nil nil) tgs))
11634 (save-excursion
11635 (save-restriction
11636 (widen)
11637 (goto-char (point-min))
11638 (while (re-search-forward descre nil t)
11639 (goto-char (setq pos0 (point-at-bol)))
11640 (catch 'next
11641 (when org-refile-target-verify-function
11642 (save-match-data
11643 (or (funcall org-refile-target-verify-function)
11644 (throw 'next t))))
11645 (when (and (looking-at org-complex-heading-regexp)
11646 (not (member (match-string 4) excluded-entries))
11647 (match-string 4))
11648 (setq level (org-reduced-level
11649 (- (match-end 1) (match-beginning 1)))
11650 txt (org-link-display-format (match-string 4))
11651 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11652 re (format org-complex-heading-regexp-format
11653 (regexp-quote (match-string 4))))
11654 (when org-refile-use-outline-path
11655 (setq txt (mapconcat
11656 'org-protect-slash
11657 (append
11658 (if (eq org-refile-use-outline-path
11659 'file)
11660 (list (file-name-nondirectory
11661 (buffer-file-name
11662 (buffer-base-buffer))))
11663 (if (eq org-refile-use-outline-path
11664 'full-file-path)
11665 (list (buffer-file-name
11666 (buffer-base-buffer)))))
11667 (org-get-outline-path fast-path-p
11668 level txt)
11669 (list txt))
11670 "/")))
11671 (push (list txt f re (org-refile-marker (point)))
11672 tgs)))
11673 (when (= (point) pos0)
11674 ;; verification function has not moved point
11675 (goto-char (point-at-eol))))))))
11676 (when org-refile-use-cache
11677 (org-refile-cache-put tgs (buffer-file-name) descre))
11678 (setq targets (append tgs targets))))))
11679 (message "Getting targets...done")
11680 (nreverse targets)))
11682 (defun org-protect-slash (s)
11683 (while (string-match "/" s)
11684 (setq s (replace-match "\\" t t s)))
11687 (defvar org-olpa (make-vector 20 nil))
11689 (defun org-get-outline-path (&optional fastp level heading)
11690 "Return the outline path to the current entry, as a list.
11692 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11693 routine which makes outline path derivations for an entire file,
11694 avoiding backtracing. Refile target collection makes use of that."
11695 (if fastp
11696 (progn
11697 (if (> level 19)
11698 (error "Outline path failure, more than 19 levels"))
11699 (loop for i from level upto 19 do
11700 (aset org-olpa i nil))
11701 (prog1
11702 (delq nil (append org-olpa nil))
11703 (aset org-olpa level heading)))
11704 (let (rtn case-fold-search)
11705 (save-excursion
11706 (save-restriction
11707 (widen)
11708 (while (org-up-heading-safe)
11709 (when (looking-at org-complex-heading-regexp)
11710 (push (org-trim
11711 (replace-regexp-in-string
11712 ;; Remove statistical/checkboxes cookies
11713 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11714 (org-match-string-no-properties 4)))
11715 rtn)))
11716 rtn)))))
11718 (defun org-format-outline-path (path &optional width prefix separator)
11719 "Format the outline path PATH for display.
11720 WIDTH is the maximum number of characters that is available.
11721 PREFIX is a prefix to be included in the returned string,
11722 such as the file name.
11723 SEPARATOR is inserted between the different parts of the path,
11724 the default is \"/\"."
11725 (setq width (or width 79))
11726 (if prefix (setq width (- width (length prefix))))
11727 (if (not path)
11728 (or prefix "")
11729 (let* ((nsteps (length path))
11730 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11731 (maxwidth (if (<= total-width width)
11732 10000 ;; everything fits
11733 ;; we need to shorten the level headings
11734 (/ (- width nsteps) nsteps)))
11735 (org-odd-levels-only nil)
11736 (n 0)
11737 (total (1+ (length prefix))))
11738 (setq maxwidth (max maxwidth 10))
11739 (concat prefix
11740 (if prefix (or separator "/"))
11741 (mapconcat
11742 (lambda (h)
11743 (setq n (1+ n))
11744 (if (and (= n nsteps) (< maxwidth 10000))
11745 (setq maxwidth (- total-width total)))
11746 (if (< (length h) maxwidth)
11747 (progn (setq total (+ total (length h) 1)) h)
11748 (setq h (substring h 0 (- maxwidth 2))
11749 total (+ total maxwidth 1))
11750 (if (string-match "[ \t]+\\'" h)
11751 (setq h (substring h 0 (match-beginning 0))))
11752 (setq h (concat h "..")))
11753 (org-add-props h nil 'face
11754 (nth (% (1- n) org-n-level-faces)
11755 org-level-faces))
11757 path (or separator "/"))))))
11759 (defun org-display-outline-path (&optional file current separator just-return-string)
11760 "Display the current outline path in the echo area.
11762 If FILE is non-nil, prepend the output with the file name.
11763 If CURRENT is non-nil, append the current heading to the output.
11764 SEPARATOR is passed through to `org-format-outline-path'. It separates
11765 the different parts of the path and defaults to \"/\".
11766 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11767 (interactive "P")
11768 (let* (case-fold-search
11769 (bfn (buffer-file-name (buffer-base-buffer)))
11770 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11771 res)
11772 (if current (setq path (append path
11773 (save-excursion
11774 (org-back-to-heading t)
11775 (if (looking-at org-complex-heading-regexp)
11776 (list (match-string 4)))))))
11777 (setq res
11778 (org-format-outline-path
11779 path
11780 (1- (frame-width))
11781 (and file bfn (concat (file-name-nondirectory bfn) separator))
11782 separator))
11783 (if just-return-string
11784 (org-no-properties res)
11785 (org-unlogged-message "%s" res))))
11787 (defvar org-refile-history nil
11788 "History for refiling operations.")
11790 (defvar org-after-refile-insert-hook nil
11791 "Hook run after `org-refile' has inserted its stuff at the new location.
11792 Note that this is still *before* the stuff will be removed from
11793 the *old* location.")
11795 (defvar org-capture-last-stored-marker)
11796 (defvar org-refile-keep nil
11797 "Non-nil means `org-refile' will copy instead of refile.")
11799 (defun org-copy ()
11800 "Like `org-refile', but copy."
11801 (interactive)
11802 (let ((org-refile-keep t))
11803 (funcall 'org-refile nil nil nil "Copy")))
11805 (defun org-refile (&optional arg default-buffer rfloc msg)
11806 "Move the entry or entries at point to another heading.
11807 The list of target headings is compiled using the information in
11808 `org-refile-targets', which see.
11810 At the target location, the entry is filed as a subitem of the
11811 target heading. Depending on `org-reverse-note-order', the new
11812 subitem will either be the first or the last subitem.
11814 If there is an active region, all entries in that region will be
11815 refiled. However, the region must fulfill the requirement that
11816 the first heading sets the top-level of the moved text.
11818 With prefix arg ARG, the command will only visit the target
11819 location and not actually move anything.
11821 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11822 refiling operation has put the subtree.
11824 With a numeric prefix argument of `2', refile to the running clock.
11826 With a numeric prefix argument of `3', emulate `org-refile-keep'
11827 being set to `t' and copy to the target location, don't move it.
11828 Beware that keeping refiled entries may result in duplicated ID
11829 properties.
11831 RFLOC can be a refile location obtained in a different way.
11833 MSG is a string to replace \"Refile\" in the default prompt with
11834 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11836 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11838 If you are using target caching (see `org-refile-use-cache'), you
11839 have to clear the target cache in order to find new targets.
11840 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11841 prefix argument (`C-u C-u C-u C-c C-w')."
11842 (interactive "P")
11843 (if (member arg '(0 (64)))
11844 (org-refile-cache-clear)
11845 (let* ((actionmsg (cond (msg msg)
11846 ((equal arg 3) "Refile (and keep)")
11847 (t "Refile")))
11848 (cbuf (current-buffer))
11849 (regionp (org-region-active-p))
11850 (region-start (and regionp (region-beginning)))
11851 (region-end (and regionp (region-end)))
11852 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11853 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11854 pos it nbuf file re level reversed)
11855 (setq last-command nil)
11856 (when regionp
11857 (goto-char region-start)
11858 (or (bolp) (goto-char (point-at-bol)))
11859 (setq region-start (point))
11860 (unless (or (org-kill-is-subtree-p
11861 (buffer-substring region-start region-end))
11862 (prog1 org-refile-active-region-within-subtree
11863 (let ((s (point-at-eol)))
11864 (org-toggle-heading)
11865 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11866 (user-error "The region is not a (sequence of) subtree(s)")))
11867 (if (equal arg '(16))
11868 (org-refile-goto-last-stored)
11869 (when (or
11870 (and (equal arg 2)
11871 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11872 (prog1
11873 (setq it (list (or org-clock-heading "running clock")
11874 (buffer-file-name
11875 (marker-buffer org-clock-hd-marker))
11877 (marker-position org-clock-hd-marker)))
11878 (setq arg nil)))
11879 (setq it (or rfloc
11880 (let (heading-text)
11881 (save-excursion
11882 (unless (and arg (listp arg))
11883 (org-back-to-heading t)
11884 (setq heading-text
11885 (replace-regexp-in-string
11886 org-bracket-link-regexp
11887 "\\3"
11888 (nth 4 (org-heading-components)))))
11889 (org-refile-get-location
11890 (cond ((and arg (listp arg)) "Goto")
11891 (regionp (concat actionmsg " region to"))
11892 (t (concat actionmsg " subtree \""
11893 heading-text "\" to")))
11894 default-buffer
11895 (and (not (equal '(4) arg))
11896 org-refile-allow-creating-parent-nodes)
11897 arg))))))
11898 (setq file (nth 1 it)
11899 re (nth 2 it)
11900 pos (nth 3 it))
11901 (if (and (not arg)
11903 (equal (buffer-file-name) file)
11904 (if regionp
11905 (and (>= pos region-start)
11906 (<= pos region-end))
11907 (and (>= pos (point))
11908 (< pos (save-excursion
11909 (org-end-of-subtree t t))))))
11910 (error "Cannot refile to position inside the tree or region"))
11911 (setq nbuf (or (find-buffer-visiting file)
11912 (find-file-noselect file)))
11913 (if (and arg (not (equal arg 3)))
11914 (progn
11915 (org-pop-to-buffer-same-window nbuf)
11916 (goto-char pos)
11917 (org-show-context 'org-goto))
11918 (if regionp
11919 (progn
11920 (org-kill-new (buffer-substring region-start region-end))
11921 (org-save-markers-in-region region-start region-end))
11922 (org-copy-subtree 1 nil t))
11923 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11924 (find-file-noselect file)))
11925 (setq reversed (org-notes-order-reversed-p))
11926 (save-excursion
11927 (save-restriction
11928 (widen)
11929 (if pos
11930 (progn
11931 (goto-char pos)
11932 (looking-at org-outline-regexp)
11933 (setq level (org-get-valid-level (funcall outline-level) 1))
11934 (goto-char
11935 (if reversed
11936 (or (outline-next-heading) (point-max))
11937 (or (save-excursion (org-get-next-sibling))
11938 (org-end-of-subtree t t)
11939 (point-max)))))
11940 (setq level 1)
11941 (if (not reversed)
11942 (goto-char (point-max))
11943 (goto-char (point-min))
11944 (or (outline-next-heading) (goto-char (point-max)))))
11945 (if (not (bolp)) (newline))
11946 (org-paste-subtree level nil nil t)
11947 (when org-log-refile
11948 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11949 (unless (eq org-log-refile 'note)
11950 (save-excursion (org-add-log-note))))
11951 (and org-auto-align-tags
11952 (let ((org-loop-over-headlines-in-active-region nil))
11953 (org-set-tags nil t)))
11954 (let ((bookmark-name (plist-get org-bookmark-names-plist
11955 :last-refile)))
11956 (when bookmark-name
11957 (with-demoted-errors
11958 (bookmark-set bookmark-name))))
11959 ;; If we are refiling for capture, make sure that the
11960 ;; last-capture pointers point here
11961 (when (org-bound-and-true-p org-refile-for-capture)
11962 (let ((bookmark-name (plist-get org-bookmark-names-plist
11963 :last-capture-marker)))
11964 (when bookmark-name
11965 (with-demoted-errors
11966 (bookmark-set bookmark-name))))
11967 (move-marker org-capture-last-stored-marker (point)))
11968 (if (fboundp 'deactivate-mark) (deactivate-mark))
11969 (run-hooks 'org-after-refile-insert-hook))))
11970 (unless org-refile-keep
11971 (if regionp
11972 (delete-region (point) (+ (point) (- region-end region-start)))
11973 (delete-region
11974 (and (org-back-to-heading t) (point))
11975 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11976 (when (featurep 'org-inlinetask)
11977 (org-inlinetask-remove-END-maybe))
11978 (setq org-markers-to-move nil)
11979 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11981 (defun org-refile-goto-last-stored ()
11982 "Go to the location where the last refile was stored."
11983 (interactive)
11984 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11985 (message "This is the location of the last refile"))
11987 (defun org-refile--get-location (refloc tbl)
11988 "When user refile to REFLOC, find the associated target in TBL.
11989 Also check `org-refile-target-table'."
11990 (car (delq
11992 (mapcar
11993 (lambda (r) (or (assoc r tbl)
11994 (assoc r org-refile-target-table)))
11995 (list (replace-regexp-in-string "/$" "" refloc)
11996 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11998 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11999 no-exclude)
12000 "Prompt the user for a refile location, using PROMPT.
12001 PROMPT should not be suffixed with a colon and a space, because
12002 this function appends the default value from
12003 `org-refile-history' automatically, if that is not empty.
12004 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12005 this is used for the GOTO interface."
12006 (let ((org-refile-targets org-refile-targets)
12007 (org-refile-use-outline-path org-refile-use-outline-path)
12008 excluded-entries)
12009 (when (and (derived-mode-p 'org-mode)
12010 (not org-refile-use-cache)
12011 (not no-exclude))
12012 (org-map-tree
12013 (lambda()
12014 (setq excluded-entries
12015 (append excluded-entries (list (org-get-heading t t)))))))
12016 (setq org-refile-target-table
12017 (org-refile-get-targets default-buffer excluded-entries)))
12018 (unless org-refile-target-table
12019 (user-error "No refile targets"))
12020 (let* ((cbuf (current-buffer))
12021 (partial-completion-mode nil)
12022 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12023 (cfunc (if (and org-refile-use-outline-path
12024 org-outline-path-complete-in-steps)
12025 'org-olpath-completing-read
12026 'org-icompleting-read))
12027 (extra (if org-refile-use-outline-path "/" ""))
12028 (cbnex (concat (buffer-name) extra))
12029 (filename (and cfn (expand-file-name cfn)))
12030 (tbl (mapcar
12031 (lambda (x)
12032 (if (and (not (member org-refile-use-outline-path
12033 '(file full-file-path)))
12034 (not (equal filename (nth 1 x))))
12035 (cons (concat (car x) extra " ("
12036 (file-name-nondirectory (nth 1 x)) ")")
12037 (cdr x))
12038 (cons (concat (car x) extra) (cdr x))))
12039 org-refile-target-table))
12040 (completion-ignore-case t)
12041 cdef
12042 (prompt (concat prompt
12043 (or (and (car org-refile-history)
12044 (concat " (default " (car org-refile-history) ")"))
12045 (and (assoc cbnex tbl) (setq cdef cbnex)
12046 (concat " (default " cbnex ")"))) ": "))
12047 pa answ parent-target child parent old-hist)
12048 (setq old-hist org-refile-history)
12049 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12050 nil 'org-refile-history (or cdef (car org-refile-history))))
12051 (if (setq pa (org-refile--get-location answ tbl))
12052 (progn
12053 (org-refile-check-position pa)
12054 (when (or (not org-refile-history)
12055 (not (eq old-hist org-refile-history))
12056 (not (equal (car pa) (car org-refile-history))))
12057 (setq org-refile-history
12058 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12059 org-refile-history
12060 (cdr org-refile-history))))
12061 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12062 (pop org-refile-history)))
12064 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12065 (progn
12066 (setq parent (match-string 1 answ)
12067 child (match-string 2 answ))
12068 (setq parent-target (org-refile--get-location parent tbl))
12069 (when (and parent-target
12070 (or (eq new-nodes t)
12071 (and (eq new-nodes 'confirm)
12072 (y-or-n-p (format "Create new node \"%s\"? "
12073 child)))))
12074 (org-refile-new-child parent-target child)))
12075 (user-error "Invalid target location")))))
12077 (declare-function org-string-nw-p "org-macs" (s))
12078 (defun org-refile-check-position (refile-pointer)
12079 "Check if the refile pointer matches the headline to which it points."
12080 (let* ((file (nth 1 refile-pointer))
12081 (re (nth 2 refile-pointer))
12082 (pos (nth 3 refile-pointer))
12083 buffer)
12084 (if (and (not (markerp pos)) (not file))
12085 (user-error "Please indicate a target file in the refile path")
12086 (when (org-string-nw-p re)
12087 (setq buffer (if (markerp pos)
12088 (marker-buffer pos)
12089 (or (find-buffer-visiting file)
12090 (find-file-noselect file))))
12091 (with-current-buffer buffer
12092 (save-excursion
12093 (save-restriction
12094 (widen)
12095 (goto-char pos)
12096 (beginning-of-line 1)
12097 (unless (org-looking-at-p re)
12098 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12100 (defun org-refile-new-child (parent-target child)
12101 "Use refile target PARENT-TARGET to add new CHILD below it."
12102 (unless parent-target
12103 (error "Cannot find parent for new node"))
12104 (let ((file (nth 1 parent-target))
12105 (pos (nth 3 parent-target))
12106 level)
12107 (with-current-buffer (or (find-buffer-visiting file)
12108 (find-file-noselect file))
12109 (save-excursion
12110 (save-restriction
12111 (widen)
12112 (if pos
12113 (goto-char pos)
12114 (goto-char (point-max))
12115 (if (not (bolp)) (newline)))
12116 (when (looking-at org-outline-regexp)
12117 (setq level (funcall outline-level))
12118 (org-end-of-subtree t t))
12119 (org-back-over-empty-lines)
12120 (insert "\n" (make-string
12121 (if pos (org-get-valid-level level 1) 1) ?*)
12122 " " child "\n")
12123 (beginning-of-line 0)
12124 (list (concat (car parent-target) "/" child) file "" (point)))))))
12126 (defun org-olpath-completing-read (prompt collection &rest args)
12127 "Read an outline path like a file name."
12128 (let ((thetable collection)
12129 (org-completion-use-ido nil) ; does not work with ido.
12130 (org-completion-use-iswitchb nil)) ; or iswitchb
12131 (apply
12132 'org-icompleting-read prompt
12133 (lambda (string predicate &optional flag)
12134 (let (rtn r f (l (length string)))
12135 (cond
12136 ((eq flag nil)
12137 ;; try completion
12138 (try-completion string thetable))
12139 ((eq flag t)
12140 ;; all-completions
12141 (setq rtn (all-completions string thetable predicate))
12142 (mapcar
12143 (lambda (x)
12144 (setq r (substring x l))
12145 (if (string-match " ([^)]*)$" x)
12146 (setq f (match-string 0 x))
12147 (setq f ""))
12148 (if (string-match "/" r)
12149 (concat string (substring r 0 (match-end 0)) f)
12151 rtn))
12152 ((eq flag 'lambda)
12153 ;; exact match?
12154 (assoc string thetable)))))
12155 args)))
12157 ;;;; Dynamic blocks
12159 (defun org-find-dblock (name)
12160 "Find the first dynamic block with name NAME in the buffer.
12161 If not found, stay at current position and return nil."
12162 (let ((case-fold-search t) pos)
12163 (save-excursion
12164 (goto-char (point-min))
12165 (setq pos (and (re-search-forward
12166 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12167 (match-beginning 0))))
12168 (if pos (goto-char pos))
12169 pos))
12171 (defun org-create-dblock (plist)
12172 "Create a dynamic block section, with parameters taken from PLIST.
12173 PLIST must contain a :name entry which is used as the name of the block."
12174 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12175 (end-of-line 1)
12176 (newline))
12177 (let ((col (current-column))
12178 (name (plist-get plist :name)))
12179 (insert "#+BEGIN: " name)
12180 (while plist
12181 (if (eq (car plist) :name)
12182 (setq plist (cddr plist))
12183 (insert " " (prin1-to-string (pop plist)))))
12184 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12185 (beginning-of-line -2)))
12187 (defun org-prepare-dblock ()
12188 "Prepare dynamic block for refresh.
12189 This empties the block, puts the cursor at the insert position and returns
12190 the property list including an extra property :name with the block name."
12191 (unless (looking-at org-dblock-start-re)
12192 (user-error "Not at a dynamic block"))
12193 (let* ((begdel (1+ (match-end 0)))
12194 (name (org-no-properties (match-string 1)))
12195 (params (append (list :name name)
12196 (read (concat "(" (match-string 3) ")")))))
12197 (save-excursion
12198 (beginning-of-line 1)
12199 (skip-chars-forward " \t")
12200 (setq params (plist-put params :indentation-column (current-column))))
12201 (unless (re-search-forward org-dblock-end-re nil t)
12202 (error "Dynamic block not terminated"))
12203 (setq params
12204 (append params
12205 (list :content (buffer-substring
12206 begdel (match-beginning 0)))))
12207 (delete-region begdel (match-beginning 0))
12208 (goto-char begdel)
12209 (open-line 1)
12210 params))
12212 (defun org-map-dblocks (&optional command)
12213 "Apply COMMAND to all dynamic blocks in the current buffer.
12214 If COMMAND is not given, use `org-update-dblock'."
12215 (let ((cmd (or command 'org-update-dblock)))
12216 (save-excursion
12217 (goto-char (point-min))
12218 (while (re-search-forward org-dblock-start-re nil t)
12219 (goto-char (match-beginning 0))
12220 (save-excursion
12221 (condition-case nil
12222 (funcall cmd)
12223 (error (message "Error during update of dynamic block"))))
12224 (unless (re-search-forward org-dblock-end-re nil t)
12225 (error "Dynamic block not terminated"))))))
12227 (defun org-dblock-update (&optional arg)
12228 "User command for updating dynamic blocks.
12229 Update the dynamic block at point. With prefix ARG, update all dynamic
12230 blocks in the buffer."
12231 (interactive "P")
12232 (if arg
12233 (org-update-all-dblocks)
12234 (or (looking-at org-dblock-start-re)
12235 (org-beginning-of-dblock))
12236 (org-update-dblock)))
12238 (defun org-update-dblock ()
12239 "Update the dynamic block at point.
12240 This means to empty the block, parse for parameters and then call
12241 the correct writing function."
12242 (interactive)
12243 (save-excursion
12244 (let* ((win (selected-window))
12245 (pos (point))
12246 (line (org-current-line))
12247 (params (org-prepare-dblock))
12248 (name (plist-get params :name))
12249 (indent (plist-get params :indentation-column))
12250 (cmd (intern (concat "org-dblock-write:" name))))
12251 (message "Updating dynamic block `%s' at line %d..." name line)
12252 (funcall cmd params)
12253 (message "Updating dynamic block `%s' at line %d...done" name line)
12254 (goto-char pos)
12255 (when (and indent (> indent 0))
12256 (setq indent (make-string indent ?\ ))
12257 (save-excursion
12258 (select-window win)
12259 (org-beginning-of-dblock)
12260 (forward-line 1)
12261 (while (not (looking-at org-dblock-end-re))
12262 (insert indent)
12263 (beginning-of-line 2))
12264 (when (looking-at org-dblock-end-re)
12265 (and (looking-at "[ \t]+")
12266 (replace-match ""))
12267 (insert indent)))))))
12269 (defun org-beginning-of-dblock ()
12270 "Find the beginning of the dynamic block at point.
12271 Error if there is no such block at point."
12272 (let ((pos (point))
12273 beg)
12274 (end-of-line 1)
12275 (if (and (re-search-backward org-dblock-start-re nil t)
12276 (setq beg (match-beginning 0))
12277 (re-search-forward org-dblock-end-re nil t)
12278 (> (match-end 0) pos))
12279 (goto-char beg)
12280 (goto-char pos)
12281 (error "Not in a dynamic block"))))
12283 (defun org-update-all-dblocks ()
12284 "Update all dynamic blocks in the buffer.
12285 This function can be used in a hook."
12286 (interactive)
12287 (when (derived-mode-p 'org-mode)
12288 (org-map-dblocks 'org-update-dblock)))
12291 ;;;; Completion
12293 (declare-function org-export-backend-name "org-export" (cl-x))
12294 (declare-function org-export-backend-options "org-export" (cl-x))
12295 (defun org-get-export-keywords ()
12296 "Return a list of all currently understood export keywords.
12297 Export keywords include options, block names, attributes and
12298 keywords relative to each registered export back-end."
12299 (let (keywords)
12300 (dolist (backend
12301 (org-bound-and-true-p org-export--registered-backends)
12302 (delq nil keywords))
12303 ;; Back-end name (for keywords, like #+LATEX:)
12304 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12305 (dolist (option-entry (org-export-backend-options backend))
12306 ;; Back-end options.
12307 (push (nth 1 option-entry) keywords)))))
12309 (defconst org-options-keywords
12310 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12311 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12312 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12313 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12314 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12316 (defcustom org-structure-template-alist
12317 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12318 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12319 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12320 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12321 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12322 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12323 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12324 ("L" "#+LaTeX: ")
12325 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12326 ("H" "#+HTML: ")
12327 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12328 ("A" "#+ASCII: ")
12329 ("i" "#+INDEX: ?")
12330 ("I" "#+INCLUDE: %file ?"))
12331 "Structure completion elements.
12332 This is a list of abbreviation keys and values. The value gets inserted
12333 if you type `<' followed by the key and then press the completion key,
12334 usually `TAB'. %file will be replaced by a file name after prompting
12335 for the file using completion. The cursor will be placed at the position
12336 of the `?` in the template.
12337 There are two templates for each key, the first uses the original Org syntax,
12338 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12339 the default when the /org-mtags.el/ module has been loaded. See also the
12340 variable `org-mtags-prefer-muse-templates'."
12341 :group 'org-completion
12342 :type '(repeat
12343 (list
12344 (string :tag "Key")
12345 (string :tag "Template")))
12346 :version "25.1"
12347 :package-version '(Org . "8.3"))
12349 (defun org-try-structure-completion ()
12350 "Try to complete a structure template before point.
12351 This looks for strings like \"<e\" on an otherwise empty line and
12352 expands them."
12353 (let ((l (buffer-substring (point-at-bol) (point)))
12355 (when (and (looking-at "[ \t]*$")
12356 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12357 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12358 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12359 (match-beginning 1)) a)
12360 t)))
12362 (defun org-complete-expand-structure-template (start cell)
12363 "Expand a structure template."
12364 (let ((rpl (nth 1 cell))
12365 (ind ""))
12366 (delete-region start (point))
12367 (when (string-match "\\`[ \t]*#\\+" rpl)
12368 (cond
12369 ((bolp))
12370 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12371 (setq ind (buffer-substring (point-at-bol) (point))))
12372 (t (newline))))
12373 (setq start (point))
12374 (if (string-match "%file" rpl)
12375 (setq rpl (replace-match
12376 (concat
12377 "\""
12378 (save-match-data
12379 (abbreviate-file-name (read-file-name "Include file: ")))
12380 "\"")
12381 t t rpl)))
12382 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12383 (concat "\n" ind)))
12384 (insert rpl)
12385 (if (re-search-backward "\\?" start t) (delete-char 1))))
12387 ;;;; TODO, DEADLINE, Comments
12389 (defun org-toggle-comment ()
12390 "Change the COMMENT state of an entry."
12391 (interactive)
12392 (save-excursion
12393 (org-back-to-heading)
12394 (looking-at org-complex-heading-regexp)
12395 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12396 (skip-chars-forward " \t")
12397 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12398 (if (org-in-commented-heading-p t)
12399 (delete-region (point)
12400 (progn (search-forward " " (line-end-position) 'move)
12401 (skip-chars-forward " \t")
12402 (point)))
12403 (insert org-comment-string)
12404 (unless (eolp) (insert " ")))))
12406 (defvar org-last-todo-state-is-todo nil
12407 "This is non-nil when the last TODO state change led to a TODO state.
12408 If the last change removed the TODO tag or switched to DONE, then
12409 this is nil.")
12411 (defvar org-setting-tags nil) ; dynamically skipped
12413 (defvar org-todo-setup-filter-hook nil
12414 "Hook for functions that pre-filter todo specs.
12415 Each function takes a todo spec and returns either nil or the spec
12416 transformed into canonical form." )
12418 (defvar org-todo-get-default-hook nil
12419 "Hook for functions that get a default item for todo.
12420 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12421 nil or a string to be used for the todo mark." )
12423 (defvar org-agenda-headline-snapshot-before-repeat)
12425 (defun org-current-effective-time ()
12426 "Return current time adjusted for `org-extend-today-until' variable."
12427 (let* ((ct (org-current-time))
12428 (dct (decode-time ct))
12429 (ct1
12430 (cond
12431 (org-use-last-clock-out-time-as-effective-time
12432 (or (org-clock-get-last-clock-out-time) ct))
12433 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12434 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12435 (t ct))))
12436 ct1))
12438 (defun org-todo-yesterday (&optional arg)
12439 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12440 (interactive "P")
12441 (if (eq major-mode 'org-agenda-mode)
12442 (apply 'org-agenda-todo-yesterday arg)
12443 (let* ((org-use-effective-time t)
12444 (hour (third (decode-time
12445 (org-current-time))))
12446 (org-extend-today-until (1+ hour)))
12447 (org-todo arg))))
12449 (defvar org-block-entry-blocking ""
12450 "First entry preventing the TODO state change.")
12452 (defun org-cancel-repeater ()
12453 "Cancel a repeater by setting its numeric value to zero."
12454 (interactive)
12455 (save-excursion
12456 (org-back-to-heading t)
12457 (let ((bound1 (point))
12458 (bound0 (save-excursion (outline-next-heading) (point))))
12459 (when (re-search-forward
12460 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12461 org-deadline-time-regexp "\\)\\|\\("
12462 org-ts-regexp "\\)")
12463 bound0 t)
12464 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12465 (replace-match "0" t nil nil 1))))))
12467 (defun org-todo (&optional arg)
12468 "Change the TODO state of an item.
12469 The state of an item is given by a keyword at the start of the heading,
12470 like
12471 *** TODO Write paper
12472 *** DONE Call mom
12474 The different keywords are specified in the variable `org-todo-keywords'.
12475 By default the available states are \"TODO\" and \"DONE\".
12476 So for this example: when the item starts with TODO, it is changed to DONE.
12477 When it starts with DONE, the DONE is removed. And when neither TODO nor
12478 DONE are present, add TODO at the beginning of the heading.
12480 With \\[universal-argument] prefix arg, use completion to determine the new \
12481 state.
12482 With numeric prefix arg, switch to that state.
12483 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12484 keywords (nextset).
12485 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12486 With a numeric prefix arg of 0, inhibit note taking for the change.
12487 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12489 When called through ELisp, arg is also interpreted in the following way:
12490 'none -> empty state
12491 \"\"(empty string) -> switch to empty state
12492 'done -> switch to DONE
12493 'nextset -> switch to the next set of keywords
12494 'previousset -> switch to the previous set of keywords
12495 \"WAITING\" -> switch to the specified keyword, but only if it
12496 really is a member of `org-todo-keywords'."
12497 (interactive "P")
12498 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12499 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12500 'region-start-level 'region))
12501 org-loop-over-headlines-in-active-region)
12502 (org-map-entries
12503 `(org-todo ,arg)
12504 org-loop-over-headlines-in-active-region
12505 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12506 (if (equal arg '(16)) (setq arg 'nextset))
12507 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12508 (let ((org-blocker-hook org-blocker-hook)
12509 commentp
12510 case-fold-search)
12511 (when (equal arg '(64))
12512 (setq arg nil org-blocker-hook nil))
12513 (when (and org-blocker-hook
12514 (or org-inhibit-blocking
12515 (org-entry-get nil "NOBLOCKING")))
12516 (setq org-blocker-hook nil))
12517 (save-excursion
12518 (catch 'exit
12519 (org-back-to-heading t)
12520 (when (org-in-commented-heading-p t)
12521 (org-toggle-comment)
12522 (setq commentp t))
12523 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12524 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12525 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12526 (let* ((match-data (match-data))
12527 (startpos (point-at-bol))
12528 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12529 (org-log-done org-log-done)
12530 (org-log-repeat org-log-repeat)
12531 (org-todo-log-states org-todo-log-states)
12532 (org-inhibit-logging
12533 (if (equal arg 0)
12534 (progn (setq arg nil) 'note) org-inhibit-logging))
12535 (this (match-string 1))
12536 (hl-pos (match-beginning 0))
12537 (head (org-get-todo-sequence-head this))
12538 (ass (assoc head org-todo-kwd-alist))
12539 (interpret (nth 1 ass))
12540 (done-word (nth 3 ass))
12541 (final-done-word (nth 4 ass))
12542 (org-last-state (or this ""))
12543 (completion-ignore-case t)
12544 (member (member this org-todo-keywords-1))
12545 (tail (cdr member))
12546 (org-state (cond
12547 ((and org-todo-key-trigger
12548 (or (and (equal arg '(4))
12549 (eq org-use-fast-todo-selection 'prefix))
12550 (and (not arg) org-use-fast-todo-selection
12551 (not (eq org-use-fast-todo-selection
12552 'prefix)))))
12553 ;; Use fast selection
12554 (org-fast-todo-selection))
12555 ((and (equal arg '(4))
12556 (or (not org-use-fast-todo-selection)
12557 (not org-todo-key-trigger)))
12558 ;; Read a state with completion
12559 (org-icompleting-read
12560 "State: " (mapcar 'list org-todo-keywords-1)
12561 nil t))
12562 ((eq arg 'right)
12563 (if this
12564 (if tail (car tail) nil)
12565 (car org-todo-keywords-1)))
12566 ((eq arg 'left)
12567 (if (equal member org-todo-keywords-1)
12569 (if this
12570 (nth (- (length org-todo-keywords-1)
12571 (length tail) 2)
12572 org-todo-keywords-1)
12573 (org-last org-todo-keywords-1))))
12574 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12575 (setq arg nil))) ; hack to fall back to cycling
12576 (arg
12577 ;; user or caller requests a specific state
12578 (cond
12579 ((equal arg "") nil)
12580 ((eq arg 'none) nil)
12581 ((eq arg 'done) (or done-word (car org-done-keywords)))
12582 ((eq arg 'nextset)
12583 (or (car (cdr (member head org-todo-heads)))
12584 (car org-todo-heads)))
12585 ((eq arg 'previousset)
12586 (let ((org-todo-heads (reverse org-todo-heads)))
12587 (or (car (cdr (member head org-todo-heads)))
12588 (car org-todo-heads))))
12589 ((car (member arg org-todo-keywords-1)))
12590 ((stringp arg)
12591 (user-error "State `%s' not valid in this file" arg))
12592 ((nth (1- (prefix-numeric-value arg))
12593 org-todo-keywords-1))))
12594 ((null member) (or head (car org-todo-keywords-1)))
12595 ((equal this final-done-word) nil) ;; -> make empty
12596 ((null tail) nil) ;; -> first entry
12597 ((memq interpret '(type priority))
12598 (if (eq this-command last-command)
12599 (car tail)
12600 (if (> (length tail) 0)
12601 (or done-word (car org-done-keywords))
12602 nil)))
12604 (car tail))))
12605 (org-state (or
12606 (run-hook-with-args-until-success
12607 'org-todo-get-default-hook org-state org-last-state)
12608 org-state))
12609 (next (if org-state (concat " " org-state " ") " "))
12610 (change-plist (list :type 'todo-state-change :from this :to org-state
12611 :position startpos))
12612 dolog now-done-p)
12613 (when org-blocker-hook
12614 (setq org-last-todo-state-is-todo
12615 (not (member this org-done-keywords)))
12616 (unless (save-excursion
12617 (save-match-data
12618 (org-with-wide-buffer
12619 (run-hook-with-args-until-failure
12620 'org-blocker-hook change-plist))))
12621 (if (org-called-interactively-p 'interactive)
12622 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12623 this org-state org-block-entry-blocking)
12624 ;; fail silently
12625 (message "TODO state change from %s to %s blocked (by \"%s\")"
12626 this org-state org-block-entry-blocking)
12627 (throw 'exit nil))))
12628 (store-match-data match-data)
12629 (replace-match next t t)
12630 (cond ((equal this org-state)
12631 (message "TODO state was already %s" (org-trim next)))
12632 ((pos-visible-in-window-p hl-pos)
12633 (message "TODO state changed to %s" (org-trim next))))
12634 (unless head
12635 (setq head (org-get-todo-sequence-head org-state)
12636 ass (assoc head org-todo-kwd-alist)
12637 interpret (nth 1 ass)
12638 done-word (nth 3 ass)
12639 final-done-word (nth 4 ass)))
12640 (when (memq arg '(nextset previousset))
12641 (message "Keyword-Set %d/%d: %s"
12642 (- (length org-todo-sets) -1
12643 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12644 (length org-todo-sets)
12645 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12646 (setq org-last-todo-state-is-todo
12647 (not (member org-state org-done-keywords)))
12648 (setq now-done-p (and (member org-state org-done-keywords)
12649 (not (member this org-done-keywords))))
12650 (and logging (org-local-logging logging))
12651 (when (and (or org-todo-log-states org-log-done)
12652 (not (eq org-inhibit-logging t))
12653 (not (memq arg '(nextset previousset))))
12654 ;; we need to look at recording a time and note
12655 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12656 (nth 2 (assoc this org-todo-log-states))))
12657 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12658 (setq dolog 'time))
12659 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12660 (and org-state
12661 (member org-state org-not-done-keywords)
12662 (not (member this org-not-done-keywords))))
12663 ;; This is now a todo state and was not one before
12664 ;; If there was a CLOSED time stamp, get rid of it.
12665 (org-add-planning-info nil nil 'closed))
12666 (when (and now-done-p org-log-done)
12667 ;; It is now done, and it was not done before
12668 (org-add-planning-info 'closed (org-current-effective-time))
12669 (if (and (not dolog) (eq 'note org-log-done))
12670 (org-add-log-setup 'done org-state this 'findpos 'note)))
12671 (when (and org-state dolog)
12672 ;; This is a non-nil state, and we need to log it
12673 (org-add-log-setup 'state org-state this 'findpos dolog)))
12674 ;; Fixup tag positioning
12675 (org-todo-trigger-tag-changes org-state)
12676 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12677 (when org-provide-todo-statistics
12678 (org-update-parent-todo-statistics))
12679 (run-hooks 'org-after-todo-state-change-hook)
12680 (if (and arg (not (member org-state org-done-keywords)))
12681 (setq head (org-get-todo-sequence-head org-state)))
12682 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12683 ;; Do we need to trigger a repeat?
12684 (when now-done-p
12685 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12686 ;; This is for the agenda, take a snapshot of the headline.
12687 (save-match-data
12688 (setq org-agenda-headline-snapshot-before-repeat
12689 (org-get-heading))))
12690 (org-auto-repeat-maybe org-state))
12691 ;; Fixup cursor location if close to the keyword
12692 (if (and (outline-on-heading-p)
12693 (not (bolp))
12694 (save-excursion (beginning-of-line 1)
12695 (looking-at org-todo-line-regexp))
12696 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12697 (progn
12698 (goto-char (or (match-end 2) (match-end 1)))
12699 (and (looking-at " ") (just-one-space))))
12700 (when org-trigger-hook
12701 (save-excursion
12702 (run-hook-with-args 'org-trigger-hook change-plist)))
12703 (when commentp (org-toggle-comment))))))))
12705 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12706 "Block turning an entry into a TODO, using the hierarchy.
12707 This checks whether the current task should be blocked from state
12708 changes. Such blocking occurs when:
12710 1. The task has children which are not all in a completed state.
12712 2. A task has a parent with the property :ORDERED:, and there
12713 are siblings prior to the current task with incomplete
12714 status.
12716 3. The parent of the task is blocked because it has siblings that should
12717 be done first, or is child of a block grandparent TODO entry."
12719 (if (not org-enforce-todo-dependencies)
12720 t ; if locally turned off don't block
12721 (catch 'dont-block
12722 ;; If this is not a todo state change, or if this entry is already DONE,
12723 ;; do not block
12724 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12725 (member (plist-get change-plist :from)
12726 (cons 'done org-done-keywords))
12727 (member (plist-get change-plist :to)
12728 (cons 'todo org-not-done-keywords))
12729 (not (plist-get change-plist :to)))
12730 (throw 'dont-block t))
12731 ;; If this task has children, and any are undone, it's blocked
12732 (save-excursion
12733 (org-back-to-heading t)
12734 (let ((this-level (funcall outline-level)))
12735 (outline-next-heading)
12736 (let ((child-level (funcall outline-level)))
12737 (while (and (not (eobp))
12738 (> child-level this-level))
12739 ;; this todo has children, check whether they are all
12740 ;; completed
12741 (if (and (not (org-entry-is-done-p))
12742 (org-entry-is-todo-p))
12743 (progn (setq org-block-entry-blocking (org-get-heading))
12744 (throw 'dont-block nil)))
12745 (outline-next-heading)
12746 (setq child-level (funcall outline-level))))))
12747 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12748 ;; any previous siblings are undone, it's blocked
12749 (save-excursion
12750 (org-back-to-heading t)
12751 (let* ((pos (point))
12752 (parent-pos (and (org-up-heading-safe) (point))))
12753 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12754 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12755 (forward-line 1)
12756 (re-search-forward org-not-done-heading-regexp pos t))
12757 (setq org-block-entry-blocking (match-string 0))
12758 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12759 ;; Search further up the hierarchy, to see if an ancestor is blocked
12760 (while t
12761 (goto-char parent-pos)
12762 (if (not (looking-at org-not-done-heading-regexp))
12763 (throw 'dont-block t)) ; do not block, parent is not a TODO
12764 (setq pos (point))
12765 (setq parent-pos (and (org-up-heading-safe) (point)))
12766 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12767 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12768 (forward-line 1)
12769 (re-search-forward org-not-done-heading-regexp pos t)
12770 (setq org-block-entry-blocking (org-get-heading)))
12771 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12773 (defcustom org-track-ordered-property-with-tag nil
12774 "Should the ORDERED property also be shown as a tag?
12775 The ORDERED property decides if an entry should require subtasks to be
12776 completed in sequence. Since a property is not very visible, setting
12777 this option means that toggling the ORDERED property with the command
12778 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12779 not relevant for the behavior, but it makes things more visible.
12781 Note that toggling the tag with tags commands will not change the property
12782 and therefore not influence behavior!
12784 This can be t, meaning the tag ORDERED should be used, It can also be a
12785 string to select a different tag for this task."
12786 :group 'org-todo
12787 :type '(choice
12788 (const :tag "No tracking" nil)
12789 (const :tag "Track with ORDERED tag" t)
12790 (string :tag "Use other tag")))
12792 (defun org-toggle-ordered-property ()
12793 "Toggle the ORDERED property of the current entry.
12794 For better visibility, you can track the value of this property with a tag.
12795 See variable `org-track-ordered-property-with-tag'."
12796 (interactive)
12797 (let* ((t1 org-track-ordered-property-with-tag)
12798 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12799 (save-excursion
12800 (org-back-to-heading)
12801 (if (org-entry-get nil "ORDERED")
12802 (progn
12803 (org-delete-property "ORDERED")
12804 (and tag (org-toggle-tag tag 'off))
12805 (message "Subtasks can be completed in arbitrary order"))
12806 (org-entry-put nil "ORDERED" "t")
12807 (and tag (org-toggle-tag tag 'on))
12808 (message "Subtasks must be completed in sequence")))))
12810 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12811 (defun org-block-todo-from-checkboxes (change-plist)
12812 "Block turning an entry into a TODO, using checkboxes.
12813 This checks whether the current task should be blocked from state
12814 changes because there are unchecked boxes in this entry."
12815 (if (not org-enforce-todo-checkbox-dependencies)
12816 t ; if locally turned off don't block
12817 (catch 'dont-block
12818 ;; If this is not a todo state change, or if this entry is already DONE,
12819 ;; do not block
12820 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12821 (member (plist-get change-plist :from)
12822 (cons 'done org-done-keywords))
12823 (member (plist-get change-plist :to)
12824 (cons 'todo org-not-done-keywords))
12825 (not (plist-get change-plist :to)))
12826 (throw 'dont-block t))
12827 ;; If this task has checkboxes that are not checked, it's blocked
12828 (save-excursion
12829 (org-back-to-heading t)
12830 (let ((beg (point)) end)
12831 (outline-next-heading)
12832 (setq end (point))
12833 (goto-char beg)
12834 (if (org-list-search-forward
12835 (concat (org-item-beginning-re)
12836 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12837 "\\[[- ]\\]")
12838 end t)
12839 (progn
12840 (if (boundp 'org-blocked-by-checkboxes)
12841 (setq org-blocked-by-checkboxes t))
12842 (throw 'dont-block nil)))))
12843 t))) ; do not block
12845 (defun org-entry-blocked-p ()
12846 "Is the current entry blocked?"
12847 (org-with-silent-modifications
12848 (if (org-entry-get nil "NOBLOCKING")
12849 nil ;; Never block this entry
12850 (not (run-hook-with-args-until-failure
12851 'org-blocker-hook
12852 (list :type 'todo-state-change
12853 :position (point)
12854 :from 'todo
12855 :to 'done))))))
12857 (defun org-update-statistics-cookies (all)
12858 "Update the statistics cookie, either from TODO or from checkboxes.
12859 This should be called with the cursor in a line with a statistics cookie."
12860 (interactive "P")
12861 (if all
12862 (progn
12863 (org-update-checkbox-count 'all)
12864 (org-map-entries 'org-update-parent-todo-statistics))
12865 (if (not (org-at-heading-p))
12866 (org-update-checkbox-count)
12867 (let ((pos (point-marker))
12868 end l1 l2)
12869 (ignore-errors (org-back-to-heading t))
12870 (if (not (org-at-heading-p))
12871 (org-update-checkbox-count)
12872 (setq l1 (org-outline-level))
12873 (setq end (save-excursion
12874 (outline-next-heading)
12875 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12876 (point)))
12877 (if (and (save-excursion
12878 (re-search-forward
12879 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12880 (not (save-excursion (re-search-forward
12881 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12882 (org-update-checkbox-count)
12883 (if (and l2 (> l2 l1))
12884 (progn
12885 (goto-char end)
12886 (org-update-parent-todo-statistics))
12887 (goto-char pos)
12888 (beginning-of-line 1)
12889 (while (re-search-forward
12890 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12891 (point-at-eol) t)
12892 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12893 (goto-char pos)
12894 (move-marker pos nil)))))
12896 (defvar org-entry-property-inherited-from) ;; defined below
12897 (defun org-update-parent-todo-statistics ()
12898 "Update any statistics cookie in the parent of the current headline.
12899 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12900 the entire subtree and this will travel up the hierarchy and update
12901 statistics everywhere."
12902 (let* ((prop (save-excursion (org-up-heading-safe)
12903 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12904 (recursive (or (not org-hierarchical-todo-statistics)
12905 (and prop (string-match "\\<recursive\\>" prop))))
12906 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12908 (first t)
12909 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12910 level ltoggle l1 new ndel
12911 (cnt-all 0) (cnt-done 0) is-percent kwd
12912 checkbox-beg ov ovs ove cookie-present)
12913 (catch 'exit
12914 (save-excursion
12915 (beginning-of-line 1)
12916 (setq ltoggle (funcall outline-level))
12917 ;; Three situations are to consider:
12919 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12920 ;; to the top-level ancestor on the headline;
12922 ;; 2. If parent has "recursive" property, repeat up to the
12923 ;; headline setting that property, taking inheritance into
12924 ;; account;
12926 ;; 3. Else, move up to direct parent and proceed only once.
12927 (while (and (setq level (org-up-heading-safe))
12928 (or recursive first)
12929 (>= (point) lim))
12930 (setq first nil cookie-present nil)
12931 (unless (and level
12932 (not (string-match
12933 "\\<checkbox\\>"
12934 (downcase (or (org-entry-get nil "COOKIE_DATA")
12935 "")))))
12936 (throw 'exit nil))
12937 (while (re-search-forward box-re (point-at-eol) t)
12938 (setq cnt-all 0 cnt-done 0 cookie-present t)
12939 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12940 (save-match-data
12941 (unless (outline-next-heading) (throw 'exit nil))
12942 (while (and (looking-at org-complex-heading-regexp)
12943 (> (setq l1 (length (match-string 1))) level))
12944 (setq kwd (and (or recursive (= l1 ltoggle))
12945 (match-string 2)))
12946 (if (or (eq org-provide-todo-statistics 'all-headlines)
12947 (and (eq org-provide-todo-statistics t)
12948 (or (member kwd org-done-keywords)))
12949 (and (listp org-provide-todo-statistics)
12950 (stringp (car org-provide-todo-statistics))
12951 (or (member kwd org-provide-todo-statistics)
12952 (member kwd org-done-keywords)))
12953 (and (listp org-provide-todo-statistics)
12954 (listp (car org-provide-todo-statistics))
12955 (or (member kwd (car org-provide-todo-statistics))
12956 (and (member kwd org-done-keywords)
12957 (member kwd (cadr org-provide-todo-statistics))))))
12958 (setq cnt-all (1+ cnt-all))
12959 (if (eq org-provide-todo-statistics t)
12960 (and kwd (setq cnt-all (1+ cnt-all)))))
12961 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12962 (member kwd org-done-keywords))
12963 (and (listp org-provide-todo-statistics)
12964 (listp (car org-provide-todo-statistics))
12965 (member kwd org-done-keywords)
12966 (member kwd (cadr org-provide-todo-statistics)))
12967 (and (listp org-provide-todo-statistics)
12968 (stringp (car org-provide-todo-statistics))
12969 (member kwd org-done-keywords)))
12970 (setq cnt-done (1+ cnt-done)))
12971 (outline-next-heading)))
12972 (setq new
12973 (if is-percent
12974 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12975 (format "[%d/%d]" cnt-done cnt-all))
12976 ndel (- (match-end 0) checkbox-beg))
12977 ;; handle overlays when updating cookie from column view
12978 (when (setq ov (car (overlays-at checkbox-beg)))
12979 (setq ovs (overlay-start ov) ove (overlay-end ov))
12980 (delete-overlay ov))
12981 (goto-char checkbox-beg)
12982 (insert new)
12983 (delete-region (point) (+ (point) ndel))
12984 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12985 (when ov (move-overlay ov ovs ove)))
12986 (when cookie-present
12987 (run-hook-with-args 'org-after-todo-statistics-hook
12988 cnt-done (- cnt-all cnt-done))))))
12989 (run-hooks 'org-todo-statistics-hook)))
12991 (defvar org-after-todo-statistics-hook nil
12992 "Hook that is called after a TODO statistics cookie has been updated.
12993 Each function is called with two arguments: the number of not-done entries
12994 and the number of done entries.
12996 For example, the following function, when added to this hook, will switch
12997 an entry to DONE when all children are done, and back to TODO when new
12998 entries are set to a TODO status. Note that this hook is only called
12999 when there is a statistics cookie in the headline!
13001 (defun org-summary-todo (n-done n-not-done)
13002 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13003 (let (org-log-done org-log-states) ; turn off logging
13004 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13007 (defvar org-todo-statistics-hook nil
13008 "Hook that is run whenever Org thinks TODO statistics should be updated.
13009 This hook runs even if there is no statistics cookie present, in which case
13010 `org-after-todo-statistics-hook' would not run.")
13012 (defun org-todo-trigger-tag-changes (state)
13013 "Apply the changes defined in `org-todo-state-tags-triggers'."
13014 (let ((l org-todo-state-tags-triggers)
13015 changes)
13016 (when (or (not state) (equal state ""))
13017 (setq changes (append changes (cdr (assoc "" l)))))
13018 (when (and (stringp state) (> (length state) 0))
13019 (setq changes (append changes (cdr (assoc state l)))))
13020 (when (member state org-not-done-keywords)
13021 (setq changes (append changes (cdr (assoc 'todo l)))))
13022 (when (member state org-done-keywords)
13023 (setq changes (append changes (cdr (assoc 'done l)))))
13024 (dolist (c changes)
13025 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13027 (defun org-local-logging (value)
13028 "Get logging settings from a property VALUE."
13029 (let* (words w a)
13030 ;; directly set the variables, they are already local.
13031 (setq org-log-done nil
13032 org-log-repeat nil
13033 org-todo-log-states nil)
13034 (setq words (org-split-string value))
13035 (while (setq w (pop words))
13036 (cond
13037 ((setq a (assoc w org-startup-options))
13038 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13039 (set (nth 1 a) (nth 2 a))))
13040 ((setq a (org-extract-log-state-settings w))
13041 (and (member (car a) org-todo-keywords-1)
13042 (push a org-todo-log-states)))))))
13044 (defun org-get-todo-sequence-head (kwd)
13045 "Return the head of the TODO sequence to which KWD belongs.
13046 If KWD is not set, check if there is a text property remembering the
13047 right sequence."
13048 (let (p)
13049 (cond
13050 ((not kwd)
13051 (or (get-text-property (point-at-bol) 'org-todo-head)
13052 (progn
13053 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13054 nil (point-at-eol)))
13055 (get-text-property p 'org-todo-head))))
13056 ((not (member kwd org-todo-keywords-1))
13057 (car org-todo-keywords-1))
13058 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13060 (defun org-fast-todo-selection ()
13061 "Fast TODO keyword selection with single keys.
13062 Returns the new TODO keyword, or nil if no state change should occur."
13063 (let* ((fulltable org-todo-key-alist)
13064 (done-keywords org-done-keywords) ;; needed for the faces.
13065 (maxlen (apply 'max (mapcar
13066 (lambda (x)
13067 (if (stringp (car x)) (string-width (car x)) 0))
13068 fulltable)))
13069 (expert nil)
13070 (fwidth (+ maxlen 3 1 3))
13071 (ncol (/ (- (window-width) 4) fwidth))
13072 tg cnt e c tbl
13073 groups ingroup)
13074 (save-excursion
13075 (save-window-excursion
13076 (if expert
13077 (set-buffer (get-buffer-create " *Org todo*"))
13078 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13079 (erase-buffer)
13080 (org-set-local 'org-done-keywords done-keywords)
13081 (setq tbl fulltable cnt 0)
13082 (while (setq e (pop tbl))
13083 (cond
13084 ((equal e '(:startgroup))
13085 (push '() groups) (setq ingroup t)
13086 (when (not (= cnt 0))
13087 (setq cnt 0)
13088 (insert "\n"))
13089 (insert "{ "))
13090 ((equal e '(:endgroup))
13091 (setq ingroup nil cnt 0)
13092 (insert "}\n"))
13093 ((equal e '(:newline))
13094 (when (not (= cnt 0))
13095 (setq cnt 0)
13096 (insert "\n")
13097 (setq e (car tbl))
13098 (while (equal (car tbl) '(:newline))
13099 (insert "\n")
13100 (setq tbl (cdr tbl)))))
13102 (setq tg (car e) c (cdr e))
13103 (if ingroup (push tg (car groups)))
13104 (setq tg (org-add-props tg nil 'face
13105 (org-get-todo-face tg)))
13106 (if (and (= cnt 0) (not ingroup)) (insert " "))
13107 (insert "[" c "] " tg (make-string
13108 (- fwidth 4 (length tg)) ?\ ))
13109 (when (= (setq cnt (1+ cnt)) ncol)
13110 (insert "\n")
13111 (if ingroup (insert " "))
13112 (setq cnt 0)))))
13113 (insert "\n")
13114 (goto-char (point-min))
13115 (if (not expert) (org-fit-window-to-buffer))
13116 (message "[a-z..]:Set [SPC]:clear")
13117 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13118 (cond
13119 ((or (= c ?\C-g)
13120 (and (= c ?q) (not (rassoc c fulltable))))
13121 (setq quit-flag t))
13122 ((= c ?\ ) nil)
13123 ((setq e (rassoc c fulltable) tg (car e))
13125 (t (setq quit-flag t)))))))
13127 (defun org-entry-is-todo-p ()
13128 (member (org-get-todo-state) org-not-done-keywords))
13130 (defun org-entry-is-done-p ()
13131 (member (org-get-todo-state) org-done-keywords))
13133 (defun org-get-todo-state ()
13134 "Return the TODO keyword of the current subtree."
13135 (save-excursion
13136 (org-back-to-heading t)
13137 (and (looking-at org-todo-line-regexp)
13138 (match-end 2)
13139 (match-string 2))))
13141 (defun org-at-date-range-p (&optional inactive-ok)
13142 "Is the cursor inside a date range?"
13143 (interactive)
13144 (save-excursion
13145 (catch 'exit
13146 (let ((pos (point)))
13147 (skip-chars-backward "^[<\r\n")
13148 (skip-chars-backward "<[")
13149 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13150 (>= (match-end 0) pos)
13151 (throw 'exit t))
13152 (skip-chars-backward "^<[\r\n")
13153 (skip-chars-backward "<[")
13154 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13155 (>= (match-end 0) pos)
13156 (throw 'exit t)))
13157 nil)))
13159 (defun org-get-repeat (&optional tagline)
13160 "Check if there is a deadline/schedule with repeater in this entry."
13161 (save-match-data
13162 (save-excursion
13163 (org-back-to-heading t)
13164 (and (re-search-forward (if tagline
13165 (concat tagline "\\s-*" org-repeat-re)
13166 org-repeat-re)
13167 (org-entry-end-position) t)
13168 (match-string-no-properties 1)))))
13170 (defvar org-last-changed-timestamp)
13171 (defvar org-last-inserted-timestamp)
13172 (defvar org-log-post-message)
13173 (defvar org-log-note-purpose)
13174 (defvar org-log-note-how nil)
13175 (defvar org-log-note-extra)
13176 (defun org-auto-repeat-maybe (done-word)
13177 "Check if the current headline contains a repeated deadline/schedule.
13178 If yes, set TODO state back to what it was and change the base date
13179 of repeating deadline/scheduled time stamps to new date.
13180 This function is run automatically after each state change to a DONE state."
13181 ;; last-state is dynamically scoped into this function
13182 (let* ((repeat (org-get-repeat))
13183 (aa (assoc org-last-state org-todo-kwd-alist))
13184 (interpret (nth 1 aa))
13185 (head (nth 2 aa))
13186 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13187 (msg "Entry repeats: ")
13188 (org-log-done nil)
13189 (org-todo-log-states nil)
13190 re type n what ts time to-state)
13191 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13192 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13193 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13194 org-todo-repeat-to-state))
13195 (unless (and to-state (member to-state org-todo-keywords-1))
13196 (setq to-state (if (eq interpret 'type) org-last-state head)))
13197 (org-todo to-state)
13198 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13199 (org-entry-put nil "LAST_REPEAT" (format-time-string
13200 (org-time-stamp-format t t))))
13201 (when org-log-repeat
13202 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13203 (memq 'org-add-log-note post-command-hook))
13204 ;; OK, we are already setup for some record
13205 (if (eq org-log-repeat 'note)
13206 ;; make sure we take a note, not only a time stamp
13207 (setq org-log-note-how 'note))
13208 ;; Set up for taking a record
13209 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13210 org-last-state
13211 'findpos org-log-repeat)))
13212 (org-back-to-heading t)
13213 (org-add-planning-info nil nil 'closed)
13214 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13215 org-deadline-time-regexp "\\)\\|\\("
13216 org-ts-regexp "\\)"))
13217 (while (re-search-forward
13218 re (save-excursion (outline-next-heading) (point)) t)
13219 (setq type (if (match-end 1) org-scheduled-string
13220 (if (match-end 3) org-deadline-string "Plain:"))
13221 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13222 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13223 (setq n (string-to-number (match-string 2 ts))
13224 what (match-string 3 ts))
13225 (if (equal what "w") (setq n (* n 7) what "d"))
13226 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13227 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13228 ;; Preparation, see if we need to modify the start date for the change
13229 (when (match-end 1)
13230 (setq time (save-match-data (org-time-string-to-time ts)))
13231 (cond
13232 ((equal (match-string 1 ts) ".")
13233 ;; Shift starting date to today
13234 (org-timestamp-change
13235 (- (org-today) (time-to-days time))
13236 'day))
13237 ((equal (match-string 1 ts) "+")
13238 (let ((nshiftmax 10) (nshift 0))
13239 (while (or (= nshift 0)
13240 (<= (time-to-days time)
13241 (time-to-days (current-time))))
13242 (when (= (incf nshift) nshiftmax)
13243 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13244 (user-error "Abort")))
13245 (org-timestamp-change n (cdr (assoc what whata)))
13246 (org-at-timestamp-p t)
13247 (setq ts (match-string 1))
13248 (setq time (save-match-data (org-time-string-to-time ts)))))
13249 (org-timestamp-change (- n) (cdr (assoc what whata)))
13250 ;; rematch, so that we have everything in place for the real shift
13251 (org-at-timestamp-p t)
13252 (setq ts (match-string 1))
13253 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13254 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13255 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13256 (setq org-log-post-message msg)
13257 (message "%s" msg))))
13259 (defun org-show-todo-tree (arg)
13260 "Make a compact tree which shows all headlines marked with TODO.
13261 The tree will show the lines where the regexp matches, and all higher
13262 headlines above the match.
13263 With a \\[universal-argument] prefix, prompt for a regexp to match.
13264 With a numeric prefix N, construct a sparse tree for the Nth element
13265 of `org-todo-keywords-1'."
13266 (interactive "P")
13267 (let ((case-fold-search nil)
13268 (kwd-re
13269 (cond ((null arg) org-not-done-regexp)
13270 ((equal arg '(4))
13271 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13272 (mapcar 'list org-todo-keywords-1))))
13273 (concat "\\("
13274 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13275 "\\)\\>")))
13276 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13277 (regexp-quote (nth (1- (prefix-numeric-value arg))
13278 org-todo-keywords-1)))
13279 (t (user-error "Invalid prefix argument: %s" arg)))))
13280 (message "%d TODO entries found"
13281 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13283 (defun org-deadline (arg &optional time)
13284 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13285 With one universal prefix argument, remove any deadline from the item.
13286 With two universal prefix arguments, prompt for a warning delay.
13287 With argument TIME, set the deadline at the corresponding date. TIME
13288 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13289 (interactive "P")
13290 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13291 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13292 'region-start-level 'region))
13293 org-loop-over-headlines-in-active-region)
13294 (org-map-entries
13295 `(org-deadline ',arg ,time)
13296 org-loop-over-headlines-in-active-region
13297 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13298 (let* ((old-date (org-entry-get nil "DEADLINE"))
13299 (old-date-time (if old-date (org-time-string-to-time old-date)))
13300 (repeater (and old-date
13301 (string-match
13302 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13303 old-date)
13304 (match-string 1 old-date))))
13305 (cond
13306 ((equal arg '(4))
13307 (when (and old-date org-log-redeadline)
13308 (org-add-log-setup 'deldeadline nil old-date 'findpos
13309 org-log-redeadline))
13310 (org-remove-timestamp-with-keyword org-deadline-string)
13311 (message "Item no longer has a deadline."))
13312 ((equal arg '(16))
13313 (save-excursion
13314 (org-back-to-heading t)
13315 (if (re-search-forward
13316 org-deadline-time-regexp
13317 (save-excursion (outline-next-heading) (point)) t)
13318 (let* ((rpl0 (match-string 1))
13319 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13320 (replace-match
13321 (concat org-deadline-string
13322 " <" rpl
13323 (format " -%dd"
13324 (abs
13325 (- (time-to-days
13326 (save-match-data
13327 (org-read-date nil t nil "Warn starting from" old-date-time)))
13328 (time-to-days old-date-time))))
13329 ">") t t))
13330 (user-error "No deadline information to update"))))
13332 (org-add-planning-info 'deadline time 'closed)
13333 (when (and old-date org-log-redeadline
13334 (not (equal old-date
13335 (substring org-last-inserted-timestamp 1 -1))))
13336 (org-add-log-setup 'redeadline nil old-date 'findpos
13337 org-log-redeadline))
13338 (when repeater
13339 (save-excursion
13340 (org-back-to-heading t)
13341 (when (re-search-forward (concat org-deadline-string " "
13342 org-last-inserted-timestamp)
13343 (save-excursion
13344 (outline-next-heading) (point)) t)
13345 (goto-char (1- (match-end 0)))
13346 (insert " " repeater)
13347 (setq org-last-inserted-timestamp
13348 (concat (substring org-last-inserted-timestamp 0 -1)
13349 " " repeater
13350 (substring org-last-inserted-timestamp -1))))))
13351 (message "Deadline on %s" org-last-inserted-timestamp))))))
13353 (defun org-schedule (arg &optional time)
13354 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13355 With one universal prefix argument, remove any scheduling date from the item.
13356 With two universal prefix arguments, prompt for a delay cookie.
13357 With argument TIME, scheduled at the corresponding date. TIME can
13358 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13359 (interactive "P")
13360 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13361 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13362 'region-start-level 'region))
13363 org-loop-over-headlines-in-active-region)
13364 (org-map-entries
13365 `(org-schedule ',arg ,time)
13366 org-loop-over-headlines-in-active-region
13367 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13368 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13369 (old-date-time (if old-date (org-time-string-to-time old-date)))
13370 (repeater (and old-date
13371 (string-match
13372 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13373 old-date)
13374 (match-string 1 old-date))))
13375 (cond
13376 ((equal arg '(4))
13377 (progn
13378 (when (and old-date org-log-reschedule)
13379 (org-add-log-setup 'delschedule nil old-date 'findpos
13380 org-log-reschedule))
13381 (org-remove-timestamp-with-keyword org-scheduled-string)
13382 (message "Item is no longer scheduled.")))
13383 ((equal arg '(16))
13384 (save-excursion
13385 (org-back-to-heading t)
13386 (if (re-search-forward
13387 org-scheduled-time-regexp
13388 (save-excursion (outline-next-heading) (point)) t)
13389 (let* ((rpl0 (match-string 1))
13390 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13391 (replace-match
13392 (concat org-scheduled-string
13393 " <" rpl
13394 (format " -%dd"
13395 (abs
13396 (- (time-to-days
13397 (save-match-data
13398 (org-read-date nil t nil "Delay until" old-date-time)))
13399 (time-to-days old-date-time))))
13400 ">") t t))
13401 (user-error "No scheduled information to update"))))
13403 (org-add-planning-info 'scheduled time 'closed)
13404 (when (and old-date org-log-reschedule
13405 (not (equal old-date
13406 (substring org-last-inserted-timestamp 1 -1))))
13407 (org-add-log-setup 'reschedule nil old-date 'findpos
13408 org-log-reschedule))
13409 (when repeater
13410 (save-excursion
13411 (org-back-to-heading t)
13412 (when (re-search-forward (concat org-scheduled-string " "
13413 org-last-inserted-timestamp)
13414 (save-excursion
13415 (outline-next-heading) (point)) t)
13416 (goto-char (1- (match-end 0)))
13417 (insert " " repeater)
13418 (setq org-last-inserted-timestamp
13419 (concat (substring org-last-inserted-timestamp 0 -1)
13420 " " repeater
13421 (substring org-last-inserted-timestamp -1))))))
13422 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13424 (defun org-get-scheduled-time (pom &optional inherit)
13425 "Get the scheduled time as a time tuple, of a format suitable
13426 for calling org-schedule with, or if there is no scheduling,
13427 returns nil."
13428 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13429 (when time
13430 (apply 'encode-time (org-parse-time-string time)))))
13432 (defun org-get-deadline-time (pom &optional inherit)
13433 "Get the deadline as a time tuple, of a format suitable for
13434 calling org-deadline with, or if there is no scheduling, returns
13435 nil."
13436 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13437 (when time
13438 (apply 'encode-time (org-parse-time-string time)))))
13440 (defun org-remove-timestamp-with-keyword (keyword)
13441 "Remove all time stamps with KEYWORD in the current entry."
13442 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13443 beg)
13444 (save-excursion
13445 (org-back-to-heading t)
13446 (setq beg (point))
13447 (outline-next-heading)
13448 (while (re-search-backward re beg t)
13449 (replace-match "")
13450 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13451 (equal (char-before) ?\ ))
13452 (backward-delete-char 1)
13453 (if (string-match "^[ \t]*$" (buffer-substring
13454 (point-at-bol) (point-at-eol)))
13455 (delete-region (point-at-bol)
13456 (min (point-max) (1+ (point-at-eol))))))))))
13458 (defvar org-time-was-given) ; dynamically scoped parameter
13459 (defvar org-end-time-was-given) ; dynamically scoped parameter
13461 (defun org-at-planning-p ()
13462 "Non-nil when point is on a planning info line."
13463 ;; This is as accurate and faster than `org-element-at-point' since
13464 ;; planning info location is fixed in the section.
13465 (org-with-wide-buffer
13466 (beginning-of-line)
13467 (and (org-looking-at-p org-planning-line-re)
13468 (eq (point)
13469 (ignore-errors
13470 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13471 (org-back-to-heading t)
13472 (org-with-limited-levels (org-back-to-heading t)))
13473 (line-beginning-position 2))))))
13475 (defun org-add-planning-info (what &optional time &rest remove)
13476 "Insert new timestamp with keyword in the planning line.
13477 WHAT indicates what kind of time stamp to add. It is a symbol
13478 among `closed', `deadline', `scheduled' and nil. TIME indicates
13479 the time to use. If none is given, the user is prompted for
13480 a date. REMOVE indicates what kind of entries to remove. An old
13481 WHAT entry will also be removed."
13482 (let (org-time-was-given org-end-time-was-given default-time default-input)
13483 (catch 'exit
13484 (when (and (memq what '(scheduled deadline))
13485 (or (not time)
13486 (and (stringp time)
13487 (string-match "^[-+]+[0-9]" time))))
13488 ;; Try to get a default date/time from existing timestamp
13489 (save-excursion
13490 (org-back-to-heading t)
13491 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13492 (when (re-search-forward (if (eq what 'scheduled)
13493 org-scheduled-time-regexp
13494 org-deadline-time-regexp)
13495 end t)
13496 (setq ts (match-string 1)
13497 default-time (apply 'encode-time (org-parse-time-string ts))
13498 default-input (and ts (org-get-compact-tod ts)))))))
13499 (when what
13500 (setq time
13501 (if (stringp time)
13502 ;; This is a string (relative or absolute), set
13503 ;; proper date.
13504 (apply #'encode-time
13505 (org-read-date-analyze
13506 time default-time (decode-time default-time)))
13507 ;; If necessary, get the time from the user
13508 (or time (org-read-date nil 'to-time nil nil
13509 default-time default-input)))))
13511 (org-with-wide-buffer
13512 (org-back-to-heading t)
13513 (forward-line)
13514 (unless (bolp) (insert "\n"))
13515 (cond ((org-looking-at-p org-planning-line-re)
13516 ;; Move to current indentation.
13517 (skip-chars-forward " \t")
13518 ;; Check if we have to remove something.
13519 (dolist (type (if what (cons what remove) remove))
13520 (when (save-excursion
13521 (re-search-forward
13522 (case type
13523 (closed org-closed-time-regexp)
13524 (deadline org-deadline-time-regexp)
13525 (scheduled org-scheduled-time-regexp)
13526 (otherwise (error "Invalid planning type: %s" type)))
13527 (line-end-position) t))
13528 (replace-match "")
13529 (when (looking-at "--+<[^>]+>") (replace-match ""))
13530 (when (and (not what) (eq type 'closed))
13531 (save-excursion
13532 (beginning-of-line)
13533 (if (looking-at "[ \t]*$")
13534 (delete-region (point) (1+ (point-at-eol)))))))
13535 ;; Remove leading white spaces.
13536 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13537 ((not what) (throw 'exit nil)) ; Nothing to do.
13538 (t (insert-before-markers "\n")
13539 (backward-char 1)
13540 (when org-adapt-indentation
13541 (org-indent-to-column (1+ (org-outline-level))))))
13542 (when what
13543 ;; Insert planning keyword.
13544 (insert (case what
13545 (closed org-closed-string)
13546 (deadline org-deadline-string)
13547 (scheduled org-scheduled-string)
13548 (otherwise (error "Invalid planning type: %s" what)))
13549 " ")
13550 ;; Insert associated timestamp.
13551 (let ((ts (org-insert-time-stamp
13552 time
13553 (or org-time-was-given
13554 (and (eq what 'closed) org-log-done-with-time))
13555 (eq what 'closed)
13556 nil nil (list org-end-time-was-given))))
13557 (unless (eolp) (insert " "))
13558 ts))))))
13560 (defvar org-log-note-marker (make-marker))
13561 (defvar org-log-note-purpose nil)
13562 (defvar org-log-note-state nil)
13563 (defvar org-log-note-previous-state nil)
13564 (defvar org-log-note-extra nil)
13565 (defvar org-log-note-window-configuration nil)
13566 (defvar org-log-note-return-to (make-marker))
13567 (defvar org-log-note-effective-time nil
13568 "Remembered current time so that dynamically scoped
13569 `org-extend-today-until' affects tha timestamps in state change
13570 log")
13572 (defvar org-log-post-message nil
13573 "Message to be displayed after a log note has been stored.
13574 The auto-repeater uses this.")
13576 (defun org-add-note ()
13577 "Add a note to the current entry.
13578 This is done in the same way as adding a state change note."
13579 (interactive)
13580 (org-add-log-setup 'note nil nil 'findpos nil))
13582 (defun org-log-beginning (&optional create)
13583 "Return expected start of log notes in current entry.
13584 When optional argument CREATE is non-nil, the function creates
13585 a drawer to store notes, if necessary. Returned position ignores
13586 narrowing."
13587 (org-with-wide-buffer
13588 (org-end-of-meta-data)
13589 (let ((end (if (org-at-heading-p) (point)
13590 (save-excursion (outline-next-heading) (point))))
13591 (drawer (org-log-into-drawer)))
13592 (cond
13593 (drawer
13594 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13595 (case-fold-search t))
13596 (catch 'exit
13597 ;; Try to find existing drawer.
13598 (while (re-search-forward regexp end t)
13599 (let ((element (org-element-at-point)))
13600 (when (eq (org-element-type element) 'drawer)
13601 (let ((cend (org-element-property :contents-end element)))
13602 (when (and (not org-log-states-order-reversed) cend)
13603 (goto-char cend)))
13604 (throw 'exit nil))))
13605 ;; No drawer found. Create one, if permitted.
13606 (when create
13607 (unless (bolp) (insert "\n"))
13608 (let ((beg (point)))
13609 (insert ":" drawer ":\n:END:\n")
13610 (org-indent-region beg (point)))
13611 (end-of-line -1)))))
13612 (org-log-state-notes-insert-after-drawers
13613 (while (and (looking-at org-drawer-regexp)
13614 (progn (goto-char (match-end 0))
13615 (re-search-forward org-property-end-re end t)))
13616 (forward-line)))))
13617 (if (bolp) (point) (line-beginning-position 2))))
13619 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13620 "Set up the post command hook to take a note.
13621 If this is about to TODO state change, the new state is expected in STATE.
13622 When FINDPOS is non-nil, find the correct position for the note in
13623 the current entry. If not, assume that it can be inserted at point.
13624 HOW is an indicator what kind of note should be created.
13625 EXTRA is additional text that will be inserted into the notes buffer."
13626 (org-with-wide-buffer
13627 (when findpos
13628 (goto-char (org-log-beginning t))
13629 (unless org-log-states-order-reversed
13630 (org-skip-over-state-notes)
13631 (skip-chars-backward " \t\n\r")
13632 (forward-line)))
13633 (move-marker org-log-note-marker (point))
13634 ;; Preserve position even if a property drawer is inserted in the
13635 ;; process.
13636 (set-marker-insertion-type org-log-note-marker t)
13637 (setq org-log-note-purpose purpose
13638 org-log-note-state state
13639 org-log-note-previous-state prev-state
13640 org-log-note-how how
13641 org-log-note-extra extra
13642 org-log-note-effective-time (org-current-effective-time))
13643 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13645 (defun org-skip-over-state-notes ()
13646 "Skip past the list of State notes in an entry."
13647 (when (ignore-errors (goto-char (org-in-item-p)))
13648 (let* ((struct (org-list-struct))
13649 (prevs (org-list-prevs-alist struct))
13650 (regexp
13651 (concat "[ \t]*- +"
13652 (replace-regexp-in-string
13653 " +" " +"
13654 (org-replace-escapes
13655 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13656 `(("%d" . ,org-ts-regexp-inactive)
13657 ("%D" . ,org-ts-regexp)
13658 ("%s" . "\"\\S-+\"")
13659 ("%S" . "\"\\S-+\"")
13660 ("%t" . ,org-ts-regexp-inactive)
13661 ("%T" . ,org-ts-regexp)
13662 ("%u" . ".*?")
13663 ("%U" . ".*?")))))))
13664 (while (org-looking-at-p regexp)
13665 (goto-char (or (org-list-get-next-item (point) struct prevs)
13666 (org-list-get-item-end (point) struct)))))))
13668 (defun org-add-log-note (&optional purpose)
13669 "Pop up a window for taking a note, and add this note later at point."
13670 (remove-hook 'post-command-hook 'org-add-log-note)
13671 (setq org-log-note-window-configuration (current-window-configuration))
13672 (delete-other-windows)
13673 (move-marker org-log-note-return-to (point))
13674 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13675 (goto-char org-log-note-marker)
13676 (org-switch-to-buffer-other-window "*Org Note*")
13677 (erase-buffer)
13678 (if (memq org-log-note-how '(time state))
13679 (let (current-prefix-arg) (org-store-log-note))
13680 (let ((org-inhibit-startup t)) (org-mode))
13681 (insert (format "# Insert note for %s.
13682 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13683 (cond
13684 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13685 ((eq org-log-note-purpose 'done) "closed todo item")
13686 ((eq org-log-note-purpose 'state)
13687 (format "state change from \"%s\" to \"%s\""
13688 (or org-log-note-previous-state "")
13689 (or org-log-note-state "")))
13690 ((eq org-log-note-purpose 'reschedule)
13691 "rescheduling")
13692 ((eq org-log-note-purpose 'delschedule)
13693 "no longer scheduled")
13694 ((eq org-log-note-purpose 'redeadline)
13695 "changing deadline")
13696 ((eq org-log-note-purpose 'deldeadline)
13697 "removing deadline")
13698 ((eq org-log-note-purpose 'refile)
13699 "refiling")
13700 ((eq org-log-note-purpose 'note)
13701 "this entry")
13702 (t (error "This should not happen")))))
13703 (if org-log-note-extra (insert org-log-note-extra))
13704 (org-set-local 'org-finish-function 'org-store-log-note)
13705 (run-hooks 'org-log-buffer-setup-hook)))
13707 (defvar org-note-abort nil) ; dynamically scoped
13708 (defun org-store-log-note ()
13709 "Finish taking a log note, and insert it to where it belongs."
13710 (let ((txt (buffer-string)))
13711 (kill-buffer (current-buffer))
13712 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13713 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13714 (setq txt (replace-match "" t t txt)))
13715 (if (string-match "\\s-+\\'" txt)
13716 (setq txt (replace-match "" t t txt)))
13717 (setq lines (org-split-string txt "\n"))
13718 (when (and note (string-match "\\S-" note))
13719 (setq note
13720 (org-replace-escapes
13721 note
13722 (list (cons "%u" (user-login-name))
13723 (cons "%U" user-full-name)
13724 (cons "%t" (format-time-string
13725 (org-time-stamp-format 'long 'inactive)
13726 org-log-note-effective-time))
13727 (cons "%T" (format-time-string
13728 (org-time-stamp-format 'long nil)
13729 org-log-note-effective-time))
13730 (cons "%d" (format-time-string
13731 (org-time-stamp-format nil 'inactive)
13732 org-log-note-effective-time))
13733 (cons "%D" (format-time-string
13734 (org-time-stamp-format nil nil)
13735 org-log-note-effective-time))
13736 (cons "%s" (if org-log-note-state
13737 (concat "\"" org-log-note-state "\"")
13738 ""))
13739 (cons "%S" (if org-log-note-previous-state
13740 (concat "\"" org-log-note-previous-state "\"")
13741 "\"\"")))))
13742 (when lines (setq note (concat note " \\\\")))
13743 (push note lines))
13744 (when (or current-prefix-arg org-note-abort)
13745 (when (org-log-into-drawer)
13746 (org-remove-empty-drawer-at org-log-note-marker))
13747 (setq lines nil))
13748 (when lines
13749 (with-current-buffer (marker-buffer org-log-note-marker)
13750 (save-excursion
13751 (goto-char org-log-note-marker)
13752 (move-marker org-log-note-marker nil)
13753 ;; Make sure point is at the beginning of an empty line.
13754 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13755 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13756 ;; In an existing list, add a new item at the top level.
13757 ;; Otherwise, indent line like a regular one.
13758 (let ((itemp (org-in-item-p)))
13759 (if itemp
13760 (org-indent-line-to
13761 (let ((struct (save-excursion
13762 (goto-char itemp) (org-list-struct))))
13763 (org-list-get-ind (org-list-get-top-point struct) struct)))
13764 (org-indent-line)))
13765 (insert (org-list-bullet-string "-") (pop lines))
13766 (let ((ind (org-list-item-body-column (line-beginning-position))))
13767 (dolist (line lines)
13768 (insert "\n")
13769 (org-indent-line-to ind)
13770 (insert line)))
13771 (message "Note stored")
13772 (org-back-to-heading t)
13773 (org-cycle-hide-drawers 'children))
13774 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13775 ;; from within `org-add-log-note' because `buffer-undo-list'
13776 ;; is then modified outside of `org-with-remote-undo'.
13777 (when (eq this-command 'org-agenda-todo)
13778 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13779 ;; Don't add undo information when called from `org-agenda-todo'
13780 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13781 (set-window-configuration org-log-note-window-configuration)
13782 (with-current-buffer (marker-buffer org-log-note-return-to)
13783 (goto-char org-log-note-return-to))
13784 (move-marker org-log-note-return-to nil)
13785 (and org-log-post-message (message "%s" org-log-post-message))))
13787 (defun org-remove-empty-drawer-at (pos)
13788 "Remove an empty drawer at position POS.
13789 POS may also be a marker."
13790 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13791 (org-with-wide-buffer
13792 (goto-char pos)
13793 (let ((drawer (org-element-at-point)))
13794 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13795 (not (org-element-property :contents-begin drawer)))
13796 (delete-region (org-element-property :begin drawer)
13797 (progn (goto-char (org-element-property :end drawer))
13798 (skip-chars-backward " \r\t\n")
13799 (forward-line)
13800 (point))))))))
13802 (defvar org-ts-type nil)
13803 (defun org-sparse-tree (&optional arg type)
13804 "Create a sparse tree, prompt for the details.
13805 This command can create sparse trees. You first need to select the type
13806 of match used to create the tree:
13808 t Show all TODO entries.
13809 T Show entries with a specific TODO keyword.
13810 m Show entries selected by a tags/property match.
13811 p Enter a property name and its value (both with completion on existing
13812 names/values) and show entries with that property.
13813 r Show entries matching a regular expression (`/' can be used as well).
13814 b Show deadlines and scheduled items before a date.
13815 a Show deadlines and scheduled items after a date.
13816 d Show deadlines due within `org-deadline-warning-days'.
13817 D Show deadlines and scheduled items between a date range."
13818 (interactive "P")
13819 (setq type (or type org-sparse-tree-default-date-type))
13820 (setq org-ts-type type)
13821 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13822 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13823 [c]ycle through date types: %s"
13824 (case type
13825 (all "all timestamps")
13826 (scheduled "only scheduled")
13827 (deadline "only deadline")
13828 (active "only active timestamps")
13829 (inactive "only inactive timestamps")
13830 (closed "with a closed time-stamp")
13831 (otherwise "scheduled/deadline")))
13832 (let ((answer (read-char-exclusive)))
13833 (case answer
13835 (org-sparse-tree
13837 (cadr
13838 (memq type '(nil all scheduled deadline active inactive closed)))))
13839 (?d (call-interactively 'org-check-deadlines))
13840 (?b (call-interactively 'org-check-before-date))
13841 (?a (call-interactively 'org-check-after-date))
13842 (?D (call-interactively 'org-check-dates-range))
13843 (?t (call-interactively 'org-show-todo-tree))
13844 (?T (org-show-todo-tree '(4)))
13845 (?m (call-interactively 'org-match-sparse-tree))
13846 ((?p ?P)
13847 (let* ((kwd (org-icompleting-read
13848 "Property: " (mapcar 'list (org-buffer-property-keys))))
13849 (value (org-icompleting-read
13850 "Value: " (mapcar 'list (org-property-values kwd)))))
13851 (unless (string-match "\\`{.*}\\'" value)
13852 (setq value (concat "\"" value "\"")))
13853 (org-match-sparse-tree arg (concat kwd "=" value))))
13854 ((?r ?R ?/) (call-interactively 'org-occur))
13855 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13857 (defvar org-occur-highlights nil
13858 "List of overlays used for occur matches.")
13859 (make-variable-buffer-local 'org-occur-highlights)
13860 (defvar org-occur-parameters nil
13861 "Parameters of the active org-occur calls.
13862 This is a list, each call to org-occur pushes as cons cell,
13863 containing the regular expression and the callback, onto the list.
13864 The list can contain several entries if `org-occur' has been called
13865 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13866 will only contain one set of parameters. When the highlights are
13867 removed (for example with `C-c C-c', or with the next edit (depending
13868 on `org-remove-highlights-with-change'), this variable is emptied
13869 as well.")
13870 (make-variable-buffer-local 'org-occur-parameters)
13872 (defun org-occur (regexp &optional keep-previous callback)
13873 "Make a compact tree which shows all matches of REGEXP.
13874 The tree will show the lines where the regexp matches, and all higher
13875 headlines above the match. It will also show the heading after the match,
13876 to make sure editing the matching entry is easy.
13877 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13878 call to `org-occur' will be kept, to allow stacking of calls to this
13879 command.
13880 If CALLBACK is non-nil, it is a function which is called to confirm
13881 that the match should indeed be shown."
13882 (interactive "sRegexp: \nP")
13883 (when (equal regexp "")
13884 (user-error "Regexp cannot be empty"))
13885 (unless keep-previous
13886 (org-remove-occur-highlights nil nil t))
13887 (push (cons regexp callback) org-occur-parameters)
13888 (let ((cnt 0))
13889 (save-excursion
13890 (goto-char (point-min))
13891 (if (or (not keep-previous) ; do not want to keep
13892 (not org-occur-highlights)) ; no previous matches
13893 ;; hide everything
13894 (org-overview))
13895 (while (re-search-forward regexp nil t)
13896 (when (or (not callback)
13897 (save-match-data (funcall callback)))
13898 (setq cnt (1+ cnt))
13899 (when org-highlight-sparse-tree-matches
13900 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13901 (org-show-context 'occur-tree))))
13902 (when org-remove-highlights-with-change
13903 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13904 nil 'local))
13905 (unless org-sparse-tree-open-archived-trees
13906 (org-hide-archived-subtrees (point-min) (point-max)))
13907 (run-hooks 'org-occur-hook)
13908 (if (org-called-interactively-p 'interactive)
13909 (message "%d match(es) for regexp %s" cnt regexp))
13910 cnt))
13912 (defun org-occur-next-match (&optional n reset)
13913 "Function for `next-error-function' to find sparse tree matches.
13914 N is the number of matches to move, when negative move backwards.
13915 RESET is entirely ignored - this function always goes back to the
13916 starting point when no match is found."
13917 (let* ((limit (if (< n 0) (point-min) (point-max)))
13918 (search-func (if (< n 0)
13919 'previous-single-char-property-change
13920 'next-single-char-property-change))
13921 (n (abs n))
13922 (pos (point))
13924 (catch 'exit
13925 (while (setq p1 (funcall search-func (point) 'org-type))
13926 (when (equal p1 limit)
13927 (goto-char pos)
13928 (user-error "No more matches"))
13929 (when (equal (get-char-property p1 'org-type) 'org-occur)
13930 (setq n (1- n))
13931 (when (= n 0)
13932 (goto-char p1)
13933 (throw 'exit (point))))
13934 (goto-char p1))
13935 (goto-char p1)
13936 (user-error "No more matches"))))
13938 (defun org-show-context (&optional key)
13939 "Make sure point and context are visible.
13940 Optional argument KEY, when non-nil, is a symbol. See
13941 `org-show-context-detail' for allowed values and how much is to
13942 be shown."
13943 (org-show-set-visibility
13944 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13945 ((cdr (assq key org-show-context-detail)))
13946 (t (cdr (assq 'default org-show-context-detail))))))
13948 (defun org-show-set-visibility (detail)
13949 "Set visibility around point according to DETAIL.
13950 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13951 `tree', `canonical' or t. See `org-show-context-detail' for more
13952 information."
13953 (unless (org-before-first-heading-p)
13954 ;; Show current heading and possibly its entry, following headline
13955 ;; or all children.
13956 (if (and (org-at-heading-p) (not (eq detail 'local)))
13957 (org-flag-heading nil)
13958 (org-show-entry)
13959 (org-with-limited-levels
13960 (case detail
13961 ((tree canonical t) (show-children))
13962 ((nil minimal ancestors))
13963 (t (save-excursion
13964 (outline-next-heading)
13965 (org-flag-heading nil))))))
13966 ;; Show all siblings.
13967 (when (eq detail 'lineage) (org-show-siblings))
13968 ;; Show ancestors, possibly with their children.
13969 (when (memq detail '(ancestors lineage tree canonical t))
13970 (save-excursion
13971 (while (org-up-heading-safe)
13972 (org-flag-heading nil)
13973 (when (memq detail '(canonical t)) (org-show-entry))
13974 (when (memq detail '(tree canonical t)) (show-children)))))))
13976 (defvar org-reveal-start-hook nil
13977 "Hook run before revealing a location.")
13979 (defun org-reveal (&optional siblings)
13980 "Show current entry, hierarchy above it, and the following headline.
13982 This can be used to show a consistent set of context around
13983 locations exposed with `org-show-context'.
13985 With optional argument SIBLINGS, on each level of the hierarchy all
13986 siblings are shown. This repairs the tree structure to what it would
13987 look like when opened with hierarchical calls to `org-cycle'.
13989 With double optional argument \\[universal-argument] \\[universal-argument], \
13990 go to the parent and show the
13991 entire tree."
13992 (interactive "P")
13993 (run-hooks 'org-reveal-start-hook)
13994 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
13995 ((equal siblings '(16))
13996 (save-excursion
13997 (when (org-up-heading-safe)
13998 (org-show-subtree)
13999 (run-hook-with-args 'org-cycle-hook 'subtree))))
14000 (t (org-show-set-visibility 'lineage))))
14002 (defun org-highlight-new-match (beg end)
14003 "Highlight from BEG to END and mark the highlight is an occur headline."
14004 (let ((ov (make-overlay beg end)))
14005 (overlay-put ov 'face 'secondary-selection)
14006 (overlay-put ov 'org-type 'org-occur)
14007 (push ov org-occur-highlights)))
14009 (defun org-remove-occur-highlights (&optional beg end noremove)
14010 "Remove the occur highlights from the buffer.
14011 BEG and END are ignored. If NOREMOVE is nil, remove this function
14012 from the `before-change-functions' in the current buffer."
14013 (interactive)
14014 (unless org-inhibit-highlight-removal
14015 (mapc 'delete-overlay org-occur-highlights)
14016 (setq org-occur-highlights nil)
14017 (setq org-occur-parameters nil)
14018 (unless noremove
14019 (remove-hook 'before-change-functions
14020 'org-remove-occur-highlights 'local))))
14022 ;;;; Priorities
14024 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14025 "Regular expression matching the priority indicator.")
14027 (defvar org-remove-priority-next-time nil)
14029 (defun org-priority-up ()
14030 "Increase the priority of the current item."
14031 (interactive)
14032 (org-priority 'up))
14034 (defun org-priority-down ()
14035 "Decrease the priority of the current item."
14036 (interactive)
14037 (org-priority 'down))
14039 (defun org-priority (&optional action show)
14040 "Change the priority of an item.
14041 ACTION can be `set', `up', `down', or a character."
14042 (interactive "P")
14043 (if (equal action '(4))
14044 (org-show-priority)
14045 (unless org-enable-priority-commands
14046 (user-error "Priority commands are disabled"))
14047 (setq action (or action 'set))
14048 (let (current new news have remove)
14049 (save-excursion
14050 (org-back-to-heading t)
14051 (if (looking-at org-priority-regexp)
14052 (setq current (string-to-char (match-string 2))
14053 have t))
14054 (cond
14055 ((eq action 'remove)
14056 (setq remove t new ?\ ))
14057 ((or (eq action 'set)
14058 (if (featurep 'xemacs) (characterp action) (integerp action)))
14059 (if (not (eq action 'set))
14060 (setq new action)
14061 (message "Priority %c-%c, SPC to remove: "
14062 org-highest-priority org-lowest-priority)
14063 (save-match-data
14064 (setq new (read-char-exclusive))))
14065 (if (and (= (upcase org-highest-priority) org-highest-priority)
14066 (= (upcase org-lowest-priority) org-lowest-priority))
14067 (setq new (upcase new)))
14068 (cond ((equal new ?\ ) (setq remove t))
14069 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14070 (user-error "Priority must be between `%c' and `%c'"
14071 org-highest-priority org-lowest-priority))))
14072 ((eq action 'up)
14073 (setq new (if have
14074 (1- current) ; normal cycling
14075 ;; last priority was empty
14076 (if (eq last-command this-command)
14077 org-lowest-priority ; wrap around empty to lowest
14078 ;; default
14079 (if org-priority-start-cycle-with-default
14080 org-default-priority
14081 (1- org-default-priority))))))
14082 ((eq action 'down)
14083 (setq new (if have
14084 (1+ current) ; normal cycling
14085 ;; last priority was empty
14086 (if (eq last-command this-command)
14087 org-highest-priority ; wrap around empty to highest
14088 ;; default
14089 (if org-priority-start-cycle-with-default
14090 org-default-priority
14091 (1+ org-default-priority))))))
14092 (t (user-error "Invalid action")))
14093 (if (or (< (upcase new) org-highest-priority)
14094 (> (upcase new) org-lowest-priority))
14095 (if (and (memq action '(up down))
14096 (not have) (not (eq last-command this-command)))
14097 ;; `new' is from default priority
14098 (error
14099 "The default can not be set, see `org-default-priority' why")
14100 ;; normal cycling: `new' is beyond highest/lowest priority
14101 ;; and is wrapped around to the empty priority
14102 (setq remove t)))
14103 (setq news (format "%c" new))
14104 (if have
14105 (if remove
14106 (replace-match "" t t nil 1)
14107 (replace-match news t t nil 2))
14108 (if remove
14109 (user-error "No priority cookie found in line")
14110 (let ((case-fold-search nil))
14111 (looking-at org-todo-line-regexp))
14112 (if (match-end 2)
14113 (progn
14114 (goto-char (match-end 2))
14115 (insert " [#" news "]"))
14116 (goto-char (match-beginning 3))
14117 (insert "[#" news "] "))))
14118 (org-set-tags nil 'align))
14119 (if remove
14120 (message "Priority removed")
14121 (message "Priority of current item set to %s" news)))))
14123 (defun org-show-priority ()
14124 "Show the priority of the current item.
14125 This priority is composed of the main priority given with the [#A] cookies,
14126 and by additional input from the age of a schedules or deadline entry."
14127 (interactive)
14128 (let ((pri (if (eq major-mode 'org-agenda-mode)
14129 (org-get-at-bol 'priority)
14130 (save-excursion
14131 (save-match-data
14132 (beginning-of-line)
14133 (and (looking-at org-heading-regexp)
14134 (org-get-priority (match-string 0))))))))
14135 (message "Priority is %d" (if pri pri -1000))))
14137 (defun org-get-priority (s)
14138 "Find priority cookie and return priority."
14139 (save-match-data
14140 (if (functionp org-get-priority-function)
14141 (funcall org-get-priority-function)
14142 (if (not (string-match org-priority-regexp s))
14143 (* 1000 (- org-lowest-priority org-default-priority))
14144 (* 1000 (- org-lowest-priority
14145 (string-to-char (match-string 2 s))))))))
14147 ;;;; Tags
14149 (defvar org-agenda-archives-mode)
14150 (defvar org-map-continue-from nil
14151 "Position from where mapping should continue.
14152 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14154 (defvar org-scanner-tags nil
14155 "The current tag list while the tags scanner is running.")
14156 (defvar org-trust-scanner-tags nil
14157 "Should `org-get-tags-at' use the tags for the scanner.
14158 This is for internal dynamical scoping only.
14159 When this is non-nil, the function `org-get-tags-at' will return the value
14160 of `org-scanner-tags' instead of building the list by itself. This
14161 can lead to large speed-ups when the tags scanner is used in a file with
14162 many entries, and when the list of tags is retrieved, for example to
14163 obtain a list of properties. Building the tags list for each entry in such
14164 a file becomes an N^2 operation - but with this variable set, it scales
14165 as N.")
14167 (defun org-scan-tags (action matcher todo-only &optional start-level)
14168 "Scan headline tags with inheritance and produce output ACTION.
14170 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14171 or `agenda' to produce an entry list for an agenda view. It can also be
14172 a Lisp form or a function that should be called at each matched headline, in
14173 this case the return value is a list of all return values from these calls.
14175 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14176 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14177 only lines with a not-done TODO keyword are included in the output.
14178 This should be the same variable that was scoped into
14179 and set by `org-make-tags-matcher' when it constructed MATCHER.
14181 START-LEVEL can be a string with asterisks, reducing the scope to
14182 headlines matching this string."
14183 (require 'org-agenda)
14184 (let* ((re (concat "^"
14185 (if start-level
14186 ;; Get the correct level to match
14187 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14188 org-outline-regexp)
14189 " *\\(\\<\\("
14190 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14191 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14192 (props (list 'face 'default
14193 'done-face 'org-agenda-done
14194 'undone-face 'default
14195 'mouse-face 'highlight
14196 'org-not-done-regexp org-not-done-regexp
14197 'org-todo-regexp org-todo-regexp
14198 'org-complex-heading-regexp org-complex-heading-regexp
14199 'help-echo
14200 (format "mouse-2 or RET jump to org file %s"
14201 (abbreviate-file-name
14202 (or (buffer-file-name (buffer-base-buffer))
14203 (buffer-name (buffer-base-buffer)))))))
14204 (org-map-continue-from nil)
14205 lspos tags tags-list
14206 (tags-alist (list (cons 0 org-file-tags)))
14207 (llast 0) rtn rtn1 level category i txt
14208 todo marker entry priority
14209 ts-date ts-date-type ts-date-pair)
14210 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14211 (setq action (list 'lambda nil action)))
14212 (save-excursion
14213 (goto-char (point-min))
14214 (when (eq action 'sparse-tree)
14215 (org-overview)
14216 (org-remove-occur-highlights))
14217 (while (let (case-fold-search)
14218 (re-search-forward re nil t))
14219 (setq org-map-continue-from nil)
14220 (catch :skip
14221 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14222 tags (if (match-end 4) (org-match-string-no-properties 4)))
14223 (goto-char (setq lspos (match-beginning 0)))
14224 (setq level (org-reduced-level (org-outline-level))
14225 category (org-get-category))
14226 (when (eq action 'agenda)
14227 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14228 ts-date (car ts-date-pair)
14229 ts-date-type (cdr ts-date-pair)))
14230 (setq i llast llast level)
14231 ;; remove tag lists from same and sublevels
14232 (while (>= i level)
14233 (when (setq entry (assoc i tags-alist))
14234 (setq tags-alist (delete entry tags-alist)))
14235 (setq i (1- i)))
14236 ;; add the next tags
14237 (when tags
14238 (setq tags (org-split-string tags ":")
14239 tags-alist
14240 (cons (cons level tags) tags-alist)))
14241 ;; compile tags for current headline
14242 (setq tags-list
14243 (if org-use-tag-inheritance
14244 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14245 tags)
14246 org-scanner-tags tags-list)
14247 (when org-use-tag-inheritance
14248 (setcdr (car tags-alist)
14249 (mapcar (lambda (x)
14250 (setq x (copy-sequence x))
14251 (org-add-prop-inherited x))
14252 (cdar tags-alist))))
14253 (when (and tags org-use-tag-inheritance
14254 (or (not (eq t org-use-tag-inheritance))
14255 org-tags-exclude-from-inheritance))
14256 ;; selective inheritance, remove uninherited ones
14257 (setcdr (car tags-alist)
14258 (org-remove-uninherited-tags (cdar tags-alist))))
14259 (when (and
14261 ;; eval matcher only when the todo condition is OK
14262 (and (or (not todo-only) (member todo org-not-done-keywords))
14263 (let ((case-fold-search t) (org-trust-scanner-tags t))
14264 (eval matcher)))
14266 ;; Call the skipper, but return t if it does not skip,
14267 ;; so that the `and' form continues evaluating
14268 (progn
14269 (unless (eq action 'sparse-tree) (org-agenda-skip))
14272 ;; Check if timestamps are deselecting this entry
14273 (or (not todo-only)
14274 (and (member todo org-not-done-keywords)
14275 (or (not org-agenda-tags-todo-honor-ignore-options)
14276 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14278 ;; select this headline
14279 (cond
14280 ((eq action 'sparse-tree)
14281 (and org-highlight-sparse-tree-matches
14282 (org-get-heading) (match-end 0)
14283 (org-highlight-new-match
14284 (match-beginning 1) (match-end 1)))
14285 (org-show-context 'tags-tree))
14286 ((eq action 'agenda)
14287 (setq txt (org-agenda-format-item
14289 (concat
14290 (if (eq org-tags-match-list-sublevels 'indented)
14291 (make-string (1- level) ?.) "")
14292 (org-get-heading))
14293 (make-string level ?\s)
14294 category
14295 tags-list)
14296 priority (org-get-priority txt))
14297 (goto-char lspos)
14298 (setq marker (org-agenda-new-marker))
14299 (org-add-props txt props
14300 'org-marker marker 'org-hd-marker marker 'org-category category
14301 'todo-state todo
14302 'ts-date ts-date
14303 'priority priority
14304 'type (concat "tagsmatch" ts-date-type))
14305 (push txt rtn))
14306 ((functionp action)
14307 (setq org-map-continue-from nil)
14308 (save-excursion
14309 (setq rtn1 (funcall action))
14310 (push rtn1 rtn)))
14311 (t (user-error "Invalid action")))
14313 ;; if we are to skip sublevels, jump to end of subtree
14314 (unless org-tags-match-list-sublevels
14315 (org-end-of-subtree t)
14316 (backward-char 1))))
14317 ;; Get the correct position from where to continue
14318 (if org-map-continue-from
14319 (goto-char org-map-continue-from)
14320 (and (= (point) lspos) (end-of-line 1)))))
14321 (when (and (eq action 'sparse-tree)
14322 (not org-sparse-tree-open-archived-trees))
14323 (org-hide-archived-subtrees (point-min) (point-max)))
14324 (nreverse rtn)))
14326 (defun org-remove-uninherited-tags (tags)
14327 "Remove all tags that are not inherited from the list TAGS."
14328 (cond
14329 ((eq org-use-tag-inheritance t)
14330 (if org-tags-exclude-from-inheritance
14331 (org-delete-all org-tags-exclude-from-inheritance tags)
14332 tags))
14333 ((not org-use-tag-inheritance) nil)
14334 ((stringp org-use-tag-inheritance)
14335 (delq nil (mapcar
14336 (lambda (x)
14337 (if (and (string-match org-use-tag-inheritance x)
14338 (not (member x org-tags-exclude-from-inheritance)))
14339 x nil))
14340 tags)))
14341 ((listp org-use-tag-inheritance)
14342 (delq nil (mapcar
14343 (lambda (x)
14344 (if (member x org-use-tag-inheritance) x nil))
14345 tags)))))
14347 (defun org-match-sparse-tree (&optional todo-only match)
14348 "Create a sparse tree according to tags string MATCH.
14349 MATCH can contain positive and negative selection of tags, like
14350 \"+WORK+URGENT-WITHBOSS\".
14351 If optional argument TODO-ONLY is non-nil, only select lines that are
14352 also TODO lines."
14353 (interactive "P")
14354 (org-agenda-prepare-buffers (list (current-buffer)))
14355 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14357 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14359 (defvar org-cached-props nil)
14360 (defun org-cached-entry-get (pom property)
14361 (if (or (eq t org-use-property-inheritance)
14362 (and (stringp org-use-property-inheritance)
14363 (let ((case-fold-search t))
14364 (org-string-match-p org-use-property-inheritance property)))
14365 (and (listp org-use-property-inheritance)
14366 (member-ignore-case property org-use-property-inheritance)))
14367 ;; Caching is not possible, check it directly.
14368 (org-entry-get pom property 'inherit)
14369 ;; Get all properties, so we can do complicated checks easily.
14370 (cdr (assoc-string property
14371 (or org-cached-props
14372 (setq org-cached-props (org-entry-properties pom)))
14373 t))))
14375 (defun org-global-tags-completion-table (&optional files)
14376 "Return the list of all tags in all agenda buffer/files.
14377 Optional FILES argument is a list of files which can be used
14378 instead of the agenda files."
14379 (save-excursion
14380 (org-uniquify
14381 (delq nil
14382 (apply 'append
14383 (mapcar
14384 (lambda (file)
14385 (set-buffer (find-file-noselect file))
14386 (append (org-get-buffer-tags)
14387 (mapcar (lambda (x) (if (stringp (car-safe x))
14388 (list (car-safe x)) nil))
14389 org-tag-alist)))
14390 (if (and files (car files))
14391 files
14392 (org-agenda-files))))))))
14394 (defun org-make-tags-matcher (match)
14395 "Create the TAGS/TODO matcher form for the selection string MATCH.
14397 The variable `todo-only' is scoped dynamically into this function.
14398 It will be set to t if the matcher restricts matching to TODO entries,
14399 otherwise will not be touched.
14401 Returns a cons of the selection string MATCH and the constructed
14402 lisp form implementing the matcher. The matcher is to be evaluated
14403 at an Org entry, with point on the headline, and returns t if the
14404 entry matches the selection string MATCH. The returned lisp form
14405 references two variables with information about the entry, which
14406 must be bound around the form's evaluation: todo, the TODO keyword
14407 at the entry (or nil of none); and tags-list, the list of all tags
14408 at the entry including inherited ones. Additionally, the category
14409 of the entry (if any) must be specified as the text property
14410 'org-category on the headline.
14412 See also `org-scan-tags'.
14414 (declare (special todo-only))
14415 (unless (boundp 'todo-only)
14416 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14417 (unless match
14418 ;; Get a new match request, with completion against the global
14419 ;; tags table and the local tags in current buffer
14420 (let ((org-last-tags-completion-table
14421 (org-uniquify
14422 (delq nil (append (org-get-buffer-tags)
14423 (org-global-tags-completion-table))))))
14424 (setq match (org-completing-read-no-i
14425 "Match: " 'org-tags-completion-function nil nil nil
14426 'org-tags-history))))
14428 ;; Parse the string and create a lisp form
14429 (let ((match0 match)
14430 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14431 minus tag mm
14432 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14433 orterms term orlist re-p str-p level-p level-op time-p
14434 prop-p pn pv po gv rest (start 0) (ss 0))
14435 ;; Expand group tags
14436 (setq match (org-tags-expand match))
14438 ;; Check if there is a TODO part of this match, which would be the
14439 ;; part after a "/". TO make sure that this slash is not part of
14440 ;; a property value to be matched against, we also check that there
14441 ;; is no " after that slash.
14442 ;; First, find the last slash
14443 (while (string-match "/+" match ss)
14444 (setq start (match-beginning 0) ss (match-end 0)))
14445 (if (and (string-match "/+" match start)
14446 (not (save-match-data (string-match "\"" match start))))
14447 ;; match contains also a todo-matching request
14448 (progn
14449 (setq tagsmatch (substring match 0 (match-beginning 0))
14450 todomatch (substring match (match-end 0)))
14451 (if (string-match "^!" todomatch)
14452 (setq todo-only t todomatch (substring todomatch 1)))
14453 (if (string-match "^\\s-*$" todomatch)
14454 (setq todomatch nil)))
14455 ;; only matching tags
14456 (setq tagsmatch match todomatch nil))
14458 ;; Make the tags matcher
14459 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14460 (setq tagsmatcher t)
14461 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14462 (while (setq term (pop orterms))
14463 (while (and (equal (substring term -1) "\\") orterms)
14464 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14465 (while (string-match re term)
14466 (setq rest (substring term (match-end 0))
14467 minus (and (match-end 1)
14468 (equal (match-string 1 term) "-"))
14469 tag (save-match-data (replace-regexp-in-string
14470 "\\\\-" "-"
14471 (match-string 2 term)))
14472 re-p (equal (string-to-char tag) ?{)
14473 level-p (match-end 4)
14474 prop-p (match-end 5)
14475 mm (cond
14476 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14477 (level-p
14478 (setq level-op (org-op-to-function (match-string 3 term)))
14479 `(,level-op level ,(string-to-number
14480 (match-string 4 term))))
14481 (prop-p
14482 (setq pn (match-string 5 term)
14483 po (match-string 6 term)
14484 pv (match-string 7 term)
14485 re-p (equal (string-to-char pv) ?{)
14486 str-p (equal (string-to-char pv) ?\")
14487 time-p (save-match-data
14488 (string-match "^\"[[<].*[]>]\"$" pv))
14489 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14490 (if time-p (setq pv (org-matcher-time pv)))
14491 (setq po (org-op-to-function po (if time-p 'time str-p)))
14492 (cond
14493 ((equal pn "CATEGORY")
14494 (setq gv '(get-text-property (point) 'org-category)))
14495 ((equal pn "TODO")
14496 (setq gv 'todo))
14498 (setq gv `(org-cached-entry-get nil ,pn))))
14499 (if re-p
14500 (if (eq po 'org<>)
14501 `(not (string-match ,pv (or ,gv "")))
14502 `(string-match ,pv (or ,gv "")))
14503 (if str-p
14504 `(,po (or ,gv "") ,pv)
14505 `(,po (string-to-number (or ,gv ""))
14506 ,(string-to-number pv) ))))
14507 (t `(member ,tag tags-list)))
14508 mm (if minus (list 'not mm) mm)
14509 term rest)
14510 (push mm tagsmatcher))
14511 (push (if (> (length tagsmatcher) 1)
14512 (cons 'and tagsmatcher)
14513 (car tagsmatcher))
14514 orlist)
14515 (setq tagsmatcher nil))
14516 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14517 (setq tagsmatcher
14518 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14519 ;; Make the todo matcher
14520 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14521 (setq todomatcher t)
14522 (setq orterms (org-split-string todomatch "|") orlist nil)
14523 (while (setq term (pop orterms))
14524 (while (string-match re term)
14525 (setq minus (and (match-end 1)
14526 (equal (match-string 1 term) "-"))
14527 kwd (match-string 2 term)
14528 re-p (equal (string-to-char kwd) ?{)
14529 term (substring term (match-end 0))
14530 mm (if re-p
14531 `(string-match ,(substring kwd 1 -1) todo)
14532 (list 'equal 'todo kwd))
14533 mm (if minus (list 'not mm) mm))
14534 (push mm todomatcher))
14535 (push (if (> (length todomatcher) 1)
14536 (cons 'and todomatcher)
14537 (car todomatcher))
14538 orlist)
14539 (setq todomatcher nil))
14540 (setq todomatcher (if (> (length orlist) 1)
14541 (cons 'or orlist) (car orlist))))
14543 ;; Return the string and lisp forms of the matcher
14544 (setq matcher (if todomatcher
14545 (list 'and tagsmatcher todomatcher)
14546 tagsmatcher))
14547 (when todo-only
14548 (setq matcher (list 'and '(member todo org-not-done-keywords)
14549 matcher)))
14550 (cons match0 matcher)))
14552 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14553 "Expand group tags in MATCH.
14555 This replaces every group tag in MATCH with a regexp tag search.
14556 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14557 will be replaced like this:
14559 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14560 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14561 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14563 Replacing by a regexp preserves the structure of the match.
14564 E.g., this expansion
14566 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14568 will match anything tagged with \"Lab\" and \"Home\", or tagged
14569 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14571 A group tag in MATCH can contain regular expressions of its own.
14572 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14573 will be replaced like this:
14575 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14577 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14578 assumed to be a single group tag, and the function will return
14579 the list of tags in this group.
14581 When DOWNCASE is non-nil, expand downcased TAGS."
14582 (if org-group-tags
14583 (let* ((case-fold-search t)
14584 (stable org-mode-syntax-table)
14585 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14586 (taggroups (if downcased
14587 (mapcar (lambda (tg) (mapcar #'downcase tg))
14588 taggroups)
14589 taggroups))
14590 (taggroups-keys (mapcar #'car taggroups))
14591 (return-match (if downcased (downcase match) match))
14592 (count 0)
14593 (work-already-expanded tags-already-expanded)
14594 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14595 ;; @ and _ are allowed as word-components in tags.
14596 (modify-syntax-entry ?@ "w" stable)
14597 (modify-syntax-entry ?_ "w" stable)
14598 ;; Temporarily replace regexp-expressions in the match-expression.
14599 (while (string-match "{.+?}" return-match)
14600 (incf count)
14601 (push (match-string 0 return-match) regexps-in-match)
14602 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14603 (while (and taggroups-keys
14604 (with-syntax-table stable
14605 (string-match
14606 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14607 (regexp-opt taggroups-keys) "\\>\\)") return-match)))
14608 (let* ((dir (match-string 1 return-match))
14609 (tag (match-string 2 return-match))
14610 (tag (if downcased (downcase tag) tag)))
14611 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14612 (member tag work-already-expanded))
14613 (setq tags-in-group (assoc tag taggroups))
14614 (push tag work-already-expanded)
14615 ;; Recursively expand each tag in the group, if the tag hasn't
14616 ;; already been expanded. Restore the match-data after all recursive calls.
14617 (save-match-data
14618 (let (tags-expanded)
14619 (dolist (x (cdr tags-in-group))
14620 (if (and (member x taggroups-keys)
14621 (not (member x work-already-expanded)))
14622 (setq tags-expanded
14623 (delete-dups
14624 (append
14625 (org-tags-expand x t downcased
14626 work-already-expanded)
14627 tags-expanded)))
14628 (setq tags-expanded
14629 (append (list x) tags-expanded)))
14630 (setq work-already-expanded
14631 (delete-dups
14632 (append tags-expanded
14633 work-already-expanded))))
14634 (setq tags-in-group
14635 (delete-dups (cons (car tags-in-group)
14636 tags-expanded)))))
14637 ;; Filter tag-regexps from tags.
14638 (setq regexp-in-group-escaped
14639 (delq nil (mapcar (lambda (x)
14640 (if (stringp x)
14641 (and (equal "{" (substring x 0 1))
14642 (equal "}" (substring x -1))
14645 tags-in-group))
14646 regexp-in-group
14647 (mapcar (lambda (x)
14648 (substring x 1 -1))
14649 regexp-in-group-escaped)
14650 tags-in-group
14651 (delq nil (mapcar (lambda (x)
14652 (if (stringp x)
14653 (and (not (equal "{" (substring x 0 1)))
14654 (not (equal "}" (substring x -1)))
14657 tags-in-group)))
14658 ;; If single-as-list, do no more in the while-loop.
14659 (if (not single-as-list)
14660 (progn
14661 (when regexp-in-group
14662 (setq regexp-in-group
14663 (concat "\\|"
14664 (mapconcat 'identity regexp-in-group
14665 "\\|"))))
14666 (setq tags-in-group
14667 (concat dir
14668 "{\\<"
14669 (regexp-opt tags-in-group)
14670 "\\>"
14671 regexp-in-group
14672 "}"))
14673 (when (stringp tags-in-group)
14674 (org-add-props tags-in-group '(grouptag t)))
14675 (setq return-match
14676 (replace-match tags-in-group t t return-match)))
14677 (setq tags-in-group
14678 (append regexp-in-group-escaped tags-in-group))))
14679 (setq taggroups-keys (delete tag taggroups-keys))))
14680 ;; Add the regular expressions back into the match-expression again.
14681 (while regexps-in-match
14682 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14683 (pop regexps-in-match)
14684 return-match t t))
14685 (decf count))
14686 (if single-as-list
14687 (if tags-in-group tags-in-group (list return-match))
14688 return-match))
14689 (if single-as-list
14690 (list (if downcased (downcase match) match))
14691 match)))
14693 (defun org-op-to-function (op &optional stringp)
14694 "Turn an operator into the appropriate function."
14695 (setq op
14696 (cond
14697 ((equal op "<" ) '(< string< org-time<))
14698 ((equal op ">" ) '(> org-string> org-time>))
14699 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14700 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14701 ((member op '("=" "==")) '(= string= org-time=))
14702 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14703 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14705 (defun org<> (a b) (not (= a b)))
14706 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14707 (defun org-string>= (a b) (not (string< a b)))
14708 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14709 (defun org-string<> (a b) (not (string= 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) (<= a b)))
14713 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14714 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14715 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14716 (defun org-2ft (s)
14717 "Convert S to a floating point time.
14718 If S is already a number, just return it. If it is a string, parse
14719 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14720 (cond
14721 ((numberp s) s)
14722 ((stringp s)
14723 (condition-case nil
14724 (float-time (apply 'encode-time (org-parse-time-string s)))
14725 (error 0.)))
14726 (t 0.)))
14728 (defun org-time-today ()
14729 "Time in seconds today at 0:00.
14730 Returns the float number of seconds since the beginning of the
14731 epoch to the beginning of today (00:00)."
14732 (float-time (apply 'encode-time
14733 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14735 (defun org-matcher-time (s)
14736 "Interpret a time comparison value."
14737 (save-match-data
14738 (cond
14739 ((string= s "<now>") (float-time))
14740 ((string= s "<today>") (org-time-today))
14741 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14742 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14743 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14744 (+ (org-time-today)
14745 (* (string-to-number (match-string 1 s))
14746 (cdr (assoc (match-string 2 s)
14747 '(("d" . 86400.0) ("w" . 604800.0)
14748 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14749 (t (org-2ft s)))))
14751 (defun org-match-any-p (re list)
14752 "Does re match any element of list?"
14753 (setq list (mapcar (lambda (x) (string-match re x)) list))
14754 (delq nil list))
14756 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14757 (defvar org-tags-overlay (make-overlay 1 1))
14758 (org-detach-overlay org-tags-overlay)
14760 (defun org-get-local-tags-at (&optional pos)
14761 "Get a list of tags defined in the current headline."
14762 (org-get-tags-at pos 'local))
14764 (defun org-get-local-tags ()
14765 "Get a list of tags defined in the current headline."
14766 (org-get-tags-at nil 'local))
14768 (defun org-get-tags-at (&optional pos local)
14769 "Get a list of all headline tags applicable at POS.
14770 POS defaults to point. If tags are inherited, the list contains
14771 the targets in the same sequence as the headlines appear, i.e.
14772 the tags of the current headline come last.
14773 When LOCAL is non-nil, only return tags from the current headline,
14774 ignore inherited ones."
14775 (interactive)
14776 (if (and org-trust-scanner-tags
14777 (or (not pos) (equal pos (point)))
14778 (not local))
14779 org-scanner-tags
14780 (let (tags ltags lastpos parent)
14781 (save-excursion
14782 (save-restriction
14783 (widen)
14784 (goto-char (or pos (point)))
14785 (save-match-data
14786 (catch 'done
14787 (condition-case nil
14788 (progn
14789 (org-back-to-heading t)
14790 (while (not (equal lastpos (point)))
14791 (setq lastpos (point))
14792 (when (looking-at
14793 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14794 (setq ltags (org-split-string
14795 (org-match-string-no-properties 1) ":"))
14796 (when parent
14797 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14798 (setq tags (append
14799 (if parent
14800 (org-remove-uninherited-tags ltags)
14801 ltags)
14802 tags)))
14803 (or org-use-tag-inheritance (throw 'done t))
14804 (if local (throw 'done t))
14805 (or (org-up-heading-safe) (error nil))
14806 (setq parent t)))
14807 (error nil)))))
14808 (if local
14809 tags
14810 (reverse (delete-dups
14811 (reverse (append
14812 (org-remove-uninherited-tags
14813 org-file-tags) tags)))))))))
14815 (defun org-add-prop-inherited (s)
14816 (add-text-properties 0 (length s) '(inherited t) s)
14819 (defun org-toggle-tag (tag &optional onoff)
14820 "Toggle the tag TAG for the current line.
14821 If ONOFF is `on' or `off', don't toggle but set to this state."
14822 (let (res current)
14823 (save-excursion
14824 (org-back-to-heading t)
14825 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14826 (point-at-eol) t)
14827 (progn
14828 (setq current (match-string 1))
14829 (replace-match ""))
14830 (setq current ""))
14831 (setq current (nreverse (org-split-string current ":")))
14832 (cond
14833 ((eq onoff 'on)
14834 (setq res t)
14835 (or (member tag current) (push tag current)))
14836 ((eq onoff 'off)
14837 (or (not (member tag current)) (setq current (delete tag current))))
14838 (t (if (member tag current)
14839 (setq current (delete tag current))
14840 (setq res t)
14841 (push tag current))))
14842 (end-of-line 1)
14843 (if current
14844 (progn
14845 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14846 (org-set-tags nil t))
14847 (delete-horizontal-space))
14848 (run-hooks 'org-after-tags-change-hook))
14849 res))
14851 (defun org-align-tags-here (to-col)
14852 ;; Assumes that this is a headline
14853 "Align tags on the current headline to TO-COL."
14854 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14855 (beginning-of-line 1)
14856 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14857 (< pos (match-beginning 2)))
14858 (progn
14859 (setq tags-l (- (match-end 2) (match-beginning 2)))
14860 (goto-char (match-beginning 1))
14861 (insert " ")
14862 (delete-region (point) (1+ (match-beginning 2)))
14863 (setq ncol (max (current-column)
14864 (1+ col)
14865 (if (> to-col 0)
14866 to-col
14867 (- (abs to-col) tags-l))))
14868 (setq p (point))
14869 (insert (make-string (- ncol (current-column)) ?\ ))
14870 (setq ncol (current-column))
14871 (when indent-tabs-mode (tabify p (point-at-eol)))
14872 (org-move-to-column (min ncol col)))
14873 (goto-char pos))))
14875 (defun org-set-tags-command (&optional arg just-align)
14876 "Call the set-tags command for the current entry."
14877 (interactive "P")
14878 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14879 (org-set-tags arg just-align)
14880 (save-excursion
14881 (unless (and (org-region-active-p)
14882 org-loop-over-headlines-in-active-region)
14883 (org-back-to-heading t))
14884 (org-set-tags arg just-align))))
14886 (defun org-set-tags-to (data)
14887 "Set the tags of the current entry to DATA, replacing the current tags.
14888 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14889 If DATA is nil or the empty string, any tags will be removed."
14890 (interactive "sTags: ")
14891 (setq data
14892 (cond
14893 ((eq data nil) "")
14894 ((equal data "") "")
14895 ((stringp data)
14896 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14897 ":"))
14898 ((listp data)
14899 (concat ":" (mapconcat 'identity data ":") ":"))))
14900 (when data
14901 (save-excursion
14902 (org-back-to-heading t)
14903 (when (looking-at org-complex-heading-regexp)
14904 (if (match-end 5)
14905 (progn
14906 (goto-char (match-beginning 5))
14907 (insert data)
14908 (delete-region (point) (point-at-eol))
14909 (org-set-tags nil 'align))
14910 (goto-char (point-at-eol))
14911 (insert " " data)
14912 (org-set-tags nil 'align)))
14913 (beginning-of-line 1)
14914 (if (looking-at ".*?\\([ \t]+\\)$")
14915 (delete-region (match-beginning 1) (match-end 1))))))
14917 (defun org-align-all-tags ()
14918 "Align the tags i all headings."
14919 (interactive)
14920 (save-excursion
14921 (or (ignore-errors (org-back-to-heading t))
14922 (outline-next-heading))
14923 (if (org-at-heading-p)
14924 (org-set-tags t)
14925 (message "No headings"))))
14927 (defvar org-indent-indentation-per-level)
14928 (defun org-set-tags (&optional arg just-align)
14929 "Set the tags for the current headline.
14930 With prefix ARG, realign all tags in headings in the current buffer.
14931 When JUST-ALIGN is non-nil, only align tags."
14932 (interactive "P")
14933 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14934 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14935 'region-start-level 'region))
14936 org-loop-over-headlines-in-active-region)
14937 (org-map-entries
14938 ;; We don't use ARG and JUST-ALIGN here because these args
14939 ;; are not useful when looping over headlines.
14940 `(org-set-tags)
14941 org-loop-over-headlines-in-active-region
14942 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14943 (let* ((re org-outline-regexp-bol)
14944 (current (unless arg (org-get-tags-string)))
14945 (col (current-column))
14946 (org-setting-tags t)
14947 table current-tags inherited-tags ; computed below when needed
14948 tags p0 c0 c1 rpl di tc level)
14949 (if arg
14950 (save-excursion
14951 (goto-char (point-min))
14952 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14953 (while (re-search-forward re nil t)
14954 (org-set-tags nil t)
14955 (end-of-line 1)))
14956 (message "All tags realigned to column %d" org-tags-column))
14957 (if just-align
14958 (setq tags current)
14959 ;; Get a new set of tags from the user
14960 (save-excursion
14961 (setq table (append org-tag-persistent-alist
14962 (or org-tag-alist (org-get-buffer-tags))
14963 (and
14964 org-complete-tags-always-offer-all-agenda-tags
14965 (org-global-tags-completion-table
14966 (org-agenda-files))))
14967 org-last-tags-completion-table table
14968 current-tags (org-split-string current ":")
14969 inherited-tags (nreverse
14970 (nthcdr (length current-tags)
14971 (nreverse (org-get-tags-at))))
14972 tags
14973 (if (or (eq t org-use-fast-tag-selection)
14974 (and org-use-fast-tag-selection
14975 (delq nil (mapcar 'cdr table))))
14976 (org-fast-tag-selection
14977 current-tags inherited-tags table
14978 (if org-fast-tag-selection-include-todo
14979 org-todo-key-alist))
14980 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14981 (org-trim
14982 (org-icompleting-read "Tags: "
14983 'org-tags-completion-function
14984 nil nil current 'org-tags-history))))))
14985 (while (string-match "[-+&]+" tags)
14986 ;; No boolean logic, just a list
14987 (setq tags (replace-match ":" t t tags))))
14989 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14991 (if org-tags-sort-function
14992 (setq tags (mapconcat 'identity
14993 (sort (org-split-string
14994 tags (org-re "[^[:alnum:]_@#%]+"))
14995 org-tags-sort-function) ":")))
14997 (if (string-match "\\`[\t ]*\\'" tags)
14998 (setq tags "")
14999 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
15000 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
15002 ;; Insert new tags at the correct column
15003 (beginning-of-line 1)
15004 (setq level (or (and (looking-at org-outline-regexp)
15005 (- (match-end 0) (point) 1))
15007 (cond
15008 ((and (equal current "") (equal tags "")))
15009 ((re-search-forward
15010 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15011 (point-at-eol) t)
15012 (if (equal tags "")
15013 (setq rpl "")
15014 (goto-char (match-beginning 0))
15015 (setq c0 (current-column)
15016 ;; compute offset for the case of org-indent-mode active
15017 di (if (org-bound-and-true-p org-indent-mode)
15018 (* (1- org-indent-indentation-per-level) (1- level))
15020 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
15021 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
15022 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
15023 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
15024 (replace-match rpl t t)
15025 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
15026 tags)
15027 (t (error "Tags alignment failed")))
15028 (org-move-to-column col)
15029 (unless just-align
15030 (run-hooks 'org-after-tags-change-hook))))))
15032 (defun org-change-tag-in-region (beg end tag off)
15033 "Add or remove TAG for each entry in the region.
15034 This works in the agenda, and also in an org-mode buffer."
15035 (interactive
15036 (list (region-beginning) (region-end)
15037 (let ((org-last-tags-completion-table
15038 (if (derived-mode-p 'org-mode)
15039 (org-uniquify
15040 (delq nil (append (org-get-buffer-tags)
15041 (org-global-tags-completion-table))))
15042 (org-global-tags-completion-table))))
15043 (org-icompleting-read
15044 "Tag: " 'org-tags-completion-function nil nil nil
15045 'org-tags-history))
15046 (progn
15047 (message "[s]et or [r]emove? ")
15048 (equal (read-char-exclusive) ?r))))
15049 (if (fboundp 'deactivate-mark) (deactivate-mark))
15050 (let ((agendap (equal major-mode 'org-agenda-mode))
15051 l1 l2 m buf pos newhead (cnt 0))
15052 (goto-char end)
15053 (setq l2 (1- (org-current-line)))
15054 (goto-char beg)
15055 (setq l1 (org-current-line))
15056 (loop for l from l1 to l2 do
15057 (org-goto-line l)
15058 (setq m (get-text-property (point) 'org-hd-marker))
15059 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15060 (and agendap m))
15061 (setq buf (if agendap (marker-buffer m) (current-buffer))
15062 pos (if agendap m (point)))
15063 (with-current-buffer buf
15064 (save-excursion
15065 (save-restriction
15066 (goto-char pos)
15067 (setq cnt (1+ cnt))
15068 (org-toggle-tag tag (if off 'off 'on))
15069 (setq newhead (org-get-heading)))))
15070 (and agendap (org-agenda-change-all-lines newhead m))))
15071 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15073 (defun org-tags-completion-function (string predicate &optional flag)
15074 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15075 (confirm (lambda (x) (stringp (car x)))))
15076 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15077 (setq s1 (match-string 1 string)
15078 s2 (match-string 2 string))
15079 (setq s1 "" s2 string))
15080 (cond
15081 ((eq flag nil)
15082 ;; try completion
15083 (setq rtn (try-completion s2 ctable confirm))
15084 (if (stringp rtn)
15085 (setq rtn
15086 (concat s1 s2 (substring rtn (length s2))
15087 (if (and org-add-colon-after-tag-completion
15088 (assoc rtn ctable))
15089 ":" ""))))
15090 rtn)
15091 ((eq flag t)
15092 ;; all-completions
15093 (all-completions s2 ctable confirm))
15094 ((eq flag 'lambda)
15095 ;; exact match?
15096 (assoc s2 ctable)))))
15098 (defun org-fast-tag-insert (kwd tags face &optional end)
15099 "Insert KDW, and the TAGS, the latter with face FACE.
15100 Also insert END."
15101 (insert (format "%-12s" (concat kwd ":"))
15102 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15103 (or end "")))
15105 (defun org-fast-tag-show-exit (flag)
15106 (save-excursion
15107 (org-goto-line 3)
15108 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15109 (replace-match ""))
15110 (when flag
15111 (end-of-line 1)
15112 (org-move-to-column (- (window-width) 19) t)
15113 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15115 (defun org-set-current-tags-overlay (current prefix)
15116 "Add an overlay to CURRENT tag with PREFIX."
15117 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15118 (if (featurep 'xemacs)
15119 (org-overlay-display org-tags-overlay (concat prefix s)
15120 'secondary-selection)
15121 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15122 (org-overlay-display org-tags-overlay (concat prefix s)))))
15124 (defvar org-last-tag-selection-key nil)
15125 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15126 "Fast tag selection with single keys.
15127 CURRENT is the current list of tags in the headline, INHERITED is the
15128 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15129 possibly with grouping information. TODO-TABLE is a similar table with
15130 TODO keywords, should these have keys assigned to them.
15131 If the keys are nil, a-z are automatically assigned.
15132 Returns the new tags string, or nil to not change the current settings."
15133 (let* ((fulltable (append table todo-table))
15134 (maxlen (apply 'max (mapcar
15135 (lambda (x)
15136 (if (stringp (car x)) (string-width (car x)) 0))
15137 fulltable)))
15138 (buf (current-buffer))
15139 (expert (eq org-fast-tag-selection-single-key 'expert))
15140 (buffer-tags nil)
15141 (fwidth (+ maxlen 3 1 3))
15142 (ncol (/ (- (window-width) 4) fwidth))
15143 (i-face 'org-done)
15144 (c-face 'org-todo)
15145 tg cnt e c char c1 c2 ntable tbl rtn
15146 ov-start ov-end ov-prefix
15147 (exit-after-next org-fast-tag-selection-single-key)
15148 (done-keywords org-done-keywords)
15149 groups ingroup intaggroup)
15150 (save-excursion
15151 (beginning-of-line 1)
15152 (if (looking-at
15153 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15154 (setq ov-start (match-beginning 1)
15155 ov-end (match-end 1)
15156 ov-prefix "")
15157 (setq ov-start (1- (point-at-eol))
15158 ov-end (1+ ov-start))
15159 (skip-chars-forward "^\n\r")
15160 (setq ov-prefix
15161 (concat
15162 (buffer-substring (1- (point)) (point))
15163 (if (> (current-column) org-tags-column)
15165 (make-string (- org-tags-column (current-column)) ?\ ))))))
15166 (move-overlay org-tags-overlay ov-start ov-end)
15167 (save-window-excursion
15168 (if expert
15169 (set-buffer (get-buffer-create " *Org tags*"))
15170 (delete-other-windows)
15171 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15172 (org-switch-to-buffer-other-window " *Org tags*"))
15173 (erase-buffer)
15174 (org-set-local 'org-done-keywords done-keywords)
15175 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15176 (org-fast-tag-insert "Current" current c-face "\n\n")
15177 (org-fast-tag-show-exit exit-after-next)
15178 (org-set-current-tags-overlay current ov-prefix)
15179 (setq tbl fulltable char ?a cnt 0)
15180 (while (setq e (pop tbl))
15181 (cond
15182 ((eq (car e) :startgroup)
15183 (push '() groups) (setq ingroup t)
15184 (unless (zerop cnt)
15185 (setq cnt 0)
15186 (insert "\n"))
15187 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15188 ((eq (car e) :endgroup)
15189 (setq ingroup nil cnt 0)
15190 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15191 ((eq (car e) :startgrouptag)
15192 (setq intaggroup t)
15193 (unless (zerop cnt)
15194 (setq cnt 0)
15195 (insert "\n"))
15196 (insert "[ "))
15197 ((eq (car e) :endgrouptag)
15198 (setq intaggroup nil cnt 0)
15199 (insert "]\n"))
15200 ((equal e '(:newline))
15201 (unless (zerop cnt)
15202 (setq cnt 0)
15203 (insert "\n")
15204 (setq e (car tbl))
15205 (while (equal (car tbl) '(:newline))
15206 (insert "\n")
15207 (setq tbl (cdr tbl)))))
15208 ((equal e '(:grouptags)) (insert " : "))
15210 (setq tg (copy-sequence (car e)) c2 nil)
15211 (if (cdr e)
15212 (setq c (cdr e))
15213 ;; automatically assign a character.
15214 (setq c1 (string-to-char
15215 (downcase (substring
15216 tg (if (= (string-to-char tg) ?@) 1 0)))))
15217 (if (or (rassoc c1 ntable) (rassoc c1 table))
15218 (while (or (rassoc char ntable) (rassoc char table))
15219 (setq char (1+ char)))
15220 (setq c2 c1))
15221 (setq c (or c2 char)))
15222 (when ingroup (push tg (car groups)))
15223 (setq tg (org-add-props tg nil 'face
15224 (cond
15225 ((not (assoc tg table))
15226 (org-get-todo-face tg))
15227 ((member tg current) c-face)
15228 ((member tg inherited) i-face))))
15229 (when (equal (caar tbl) :grouptags)
15230 (org-add-props tg nil 'face 'org-tag-group))
15231 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15232 (insert "[" c "] " tg (make-string
15233 (- fwidth 4 (length tg)) ?\ ))
15234 (push (cons tg c) ntable)
15235 (when (= (incf cnt) ncol)
15236 (insert "\n")
15237 (when (or ingroup intaggroup) (insert " "))
15238 (setq cnt 0)))))
15239 (setq ntable (nreverse ntable))
15240 (insert "\n")
15241 (goto-char (point-min))
15242 (unless expert (org-fit-window-to-buffer))
15243 (setq rtn
15244 (catch 'exit
15245 (while t
15246 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15247 (if (not groups) "no " "")
15248 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15249 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15250 (setq org-last-tag-selection-key c)
15251 (cond
15252 ((= c ?\r) (throw 'exit t))
15253 ((= c ?!)
15254 (setq groups (not groups))
15255 (goto-char (point-min))
15256 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15257 ((= c ?\C-c)
15258 (if (not expert)
15259 (org-fast-tag-show-exit
15260 (setq exit-after-next (not exit-after-next)))
15261 (setq expert nil)
15262 (delete-other-windows)
15263 (set-window-buffer (split-window-vertically) " *Org tags*")
15264 (org-switch-to-buffer-other-window " *Org tags*")
15265 (org-fit-window-to-buffer)))
15266 ((or (= c ?\C-g)
15267 (and (= c ?q) (not (rassoc c ntable))))
15268 (org-detach-overlay org-tags-overlay)
15269 (setq quit-flag t))
15270 ((= c ?\ )
15271 (setq current nil)
15272 (when exit-after-next (setq exit-after-next 'now)))
15273 ((= c ?\t)
15274 (condition-case nil
15275 (setq tg (org-icompleting-read
15276 "Tag: "
15277 (or buffer-tags
15278 (with-current-buffer buf
15279 (org-get-buffer-tags)))))
15280 (quit (setq tg "")))
15281 (when (string-match "\\S-" tg)
15282 (add-to-list 'buffer-tags (list tg))
15283 (if (member tg current)
15284 (setq current (delete tg current))
15285 (push tg current)))
15286 (when exit-after-next (setq exit-after-next 'now)))
15287 ((setq e (rassoc c todo-table) tg (car e))
15288 (with-current-buffer buf
15289 (save-excursion (org-todo tg)))
15290 (when exit-after-next (setq exit-after-next 'now)))
15291 ((setq e (rassoc c ntable) tg (car e))
15292 (if (member tg current)
15293 (setq current (delete tg current))
15294 (loop for g in groups do
15295 (when (member tg g)
15296 (dolist (x g) (setq current (delete x current)))))
15297 (push tg current))
15298 (when exit-after-next (setq exit-after-next 'now))))
15300 ;; Create a sorted list
15301 (setq current
15302 (sort current
15303 (lambda (a b)
15304 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15305 (when (eq exit-after-next 'now) (throw 'exit t))
15306 (goto-char (point-min))
15307 (beginning-of-line 2)
15308 (delete-region (point) (point-at-eol))
15309 (org-fast-tag-insert "Current" current c-face)
15310 (org-set-current-tags-overlay current ov-prefix)
15311 (while (re-search-forward
15312 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15313 (setq tg (match-string 1))
15314 (add-text-properties
15315 (match-beginning 1) (match-end 1)
15316 (list 'face
15317 (cond
15318 ((member tg current) c-face)
15319 ((member tg inherited) i-face)
15320 (t (get-text-property (match-beginning 1) 'face))))))
15321 (goto-char (point-min)))))
15322 (org-detach-overlay org-tags-overlay)
15323 (if rtn
15324 (mapconcat 'identity current ":")
15325 nil))))
15327 (defun org-get-tags-string ()
15328 "Get the TAGS string in the current headline."
15329 (unless (org-at-heading-p t)
15330 (user-error "Not on a heading"))
15331 (save-excursion
15332 (beginning-of-line 1)
15333 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15334 (org-match-string-no-properties 1)
15335 "")))
15337 (defun org-get-tags ()
15338 "Get the list of tags specified in the current headline."
15339 (org-split-string (org-get-tags-string) ":"))
15341 (defun org-get-buffer-tags ()
15342 "Get a table of all tags used in the buffer, for completion."
15343 (org-with-wide-buffer
15344 (goto-char (point-min))
15345 (let ((tag-re (concat org-outline-regexp-bol
15346 "\\(?:.*?[ \t]\\)?"
15347 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15348 tags)
15349 (while (re-search-forward tag-re nil t)
15350 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15351 (push tag tags)))
15352 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15354 ;;;; The mapping API
15356 (defun org-map-entries (func &optional match scope &rest skip)
15357 "Call FUNC at each headline selected by MATCH in SCOPE.
15359 FUNC is a function or a lisp form. The function will be called without
15360 arguments, with the cursor positioned at the beginning of the headline.
15361 The return values of all calls to the function will be collected and
15362 returned as a list.
15364 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15365 does not need to preserve point. After evaluation, the cursor will be
15366 moved to the end of the line (presumably of the headline of the
15367 processed entry) and search continues from there. Under some
15368 circumstances, this may not produce the wanted results. For example,
15369 if you have removed (e.g. archived) the current (sub)tree it could
15370 mean that the next entry will be skipped entirely. In such cases, you
15371 can specify the position from where search should continue by making
15372 FUNC set the variable `org-map-continue-from' to the desired buffer
15373 position.
15375 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15376 Only headlines that are matched by this query will be considered during
15377 the iteration. When MATCH is nil or t, all headlines will be
15378 visited by the iteration.
15380 SCOPE determines the scope of this command. It can be any of:
15382 nil The current buffer, respecting the restriction if any
15383 tree The subtree started with the entry at point
15384 region The entries within the active region, if any
15385 region-start-level
15386 The entries within the active region, but only those at
15387 the same level than the first one.
15388 file The current buffer, without restriction
15389 file-with-archives
15390 The current buffer, and any archives associated with it
15391 agenda All agenda files
15392 agenda-with-archives
15393 All agenda files with any archive files associated with them
15394 \(file1 file2 ...)
15395 If this is a list, all files in the list will be scanned
15397 The remaining args are treated as settings for the skipping facilities of
15398 the scanner. The following items can be given here:
15400 archive skip trees with the archive tag
15401 comment skip trees with the COMMENT keyword
15402 function or Emacs Lisp form:
15403 will be used as value for `org-agenda-skip-function', so
15404 whenever the function returns a position, FUNC will not be
15405 called for that entry and search will continue from the
15406 position returned
15408 If your function needs to retrieve the tags including inherited tags
15409 at the *current* entry, you can use the value of the variable
15410 `org-scanner-tags' which will be much faster than getting the value
15411 with `org-get-tags-at'. If your function gets properties with
15412 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15413 to t around the call to `org-entry-properties' to get the same speedup.
15414 Note that if your function moves around to retrieve tags and properties at
15415 a *different* entry, you cannot use these techniques."
15416 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15417 (not (org-region-active-p)))
15418 (let* ((org-agenda-archives-mode nil) ; just to make sure
15419 (org-agenda-skip-archived-trees (memq 'archive skip))
15420 (org-agenda-skip-comment-trees (memq 'comment skip))
15421 (org-agenda-skip-function
15422 (car (org-delete-all '(comment archive) skip)))
15423 (org-tags-match-list-sublevels t)
15424 (start-level (eq scope 'region-start-level))
15425 matcher file res
15426 org-todo-keywords-for-agenda
15427 org-done-keywords-for-agenda
15428 org-todo-keyword-alist-for-agenda
15429 org-tag-alist-for-agenda
15430 todo-only)
15432 (cond
15433 ((eq match t) (setq matcher t))
15434 ((eq match nil) (setq matcher t))
15435 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15437 (save-excursion
15438 (save-restriction
15439 (cond ((eq scope 'tree)
15440 (org-back-to-heading t)
15441 (org-narrow-to-subtree)
15442 (setq scope nil))
15443 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15444 (org-region-active-p))
15445 ;; If needed, set start-level to a string like "2"
15446 (when start-level
15447 (save-excursion
15448 (goto-char (region-beginning))
15449 (unless (org-at-heading-p) (outline-next-heading))
15450 (setq start-level (org-current-level))))
15451 (narrow-to-region (region-beginning)
15452 (save-excursion
15453 (goto-char (region-end))
15454 (unless (and (bolp) (org-at-heading-p))
15455 (outline-next-heading))
15456 (point)))
15457 (setq scope nil)))
15459 (if (not scope)
15460 (progn
15461 (org-agenda-prepare-buffers
15462 (list (buffer-file-name (current-buffer))))
15463 (setq res (org-scan-tags func matcher todo-only start-level)))
15464 ;; Get the right scope
15465 (cond
15466 ((and scope (listp scope) (symbolp (car scope)))
15467 (setq scope (eval scope)))
15468 ((eq scope 'agenda)
15469 (setq scope (org-agenda-files t)))
15470 ((eq scope 'agenda-with-archives)
15471 (setq scope (org-agenda-files t))
15472 (setq scope (org-add-archive-files scope)))
15473 ((eq scope 'file)
15474 (setq scope (list (buffer-file-name))))
15475 ((eq scope 'file-with-archives)
15476 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15477 (org-agenda-prepare-buffers scope)
15478 (while (setq file (pop scope))
15479 (with-current-buffer (org-find-base-buffer-visiting file)
15480 (save-excursion
15481 (save-restriction
15482 (widen)
15483 (goto-char (point-min))
15484 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15485 res)))
15487 ;;; Properties API
15489 (defconst org-special-properties
15490 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15491 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15492 "The special properties valid in Org mode.
15493 These are properties that are not defined in the property drawer,
15494 but in some other way.")
15496 (defconst org-default-properties
15497 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15498 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15499 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15500 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15501 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15502 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15503 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15504 "Some properties that are used by Org mode for various purposes.
15505 Being in this list makes sure that they are offered for completion.")
15507 (defun org--update-property-plist (key val props)
15508 "Associate KEY to VAL in alist PROPS.
15509 Modifications are made by side-effect. Return new alist."
15510 (let* ((appending (string= (substring key -1) "+"))
15511 (key (if appending (substring key 0 -1) key))
15512 (old (assoc-string key props t)))
15513 (if (not old) (cons (cons key val) props)
15514 (setcdr old (if appending (concat (cdr old) " " val) val))
15515 props)))
15517 (defun org-get-property-block (&optional beg force)
15518 "Return the (beg . end) range of the body of the property drawer.
15519 BEG is the beginning of the current subtree, or of the part
15520 before the first headline. If it is not given, it will be found.
15521 If the drawer does not exist, create it if FORCE is non-nil, or
15522 return nil."
15523 (org-with-wide-buffer
15524 (when beg (goto-char beg))
15525 (unless (org-before-first-heading-p)
15526 (let ((beg (cond (beg)
15527 ((or (not (featurep 'org-inlinetask))
15528 (org-inlinetask-in-task-p))
15529 (org-back-to-heading t))
15530 (t (org-with-limited-levels (org-back-to-heading t))))))
15531 (forward-line)
15532 (when (org-looking-at-p org-planning-line-re) (forward-line))
15533 (cond ((looking-at org-property-drawer-re)
15534 (forward-line)
15535 (cons (point) (progn (goto-char (match-end 0))
15536 (line-beginning-position))))
15537 (force
15538 (goto-char beg)
15539 (org-insert-property-drawer)
15540 (let ((pos (save-excursion (search-forward ":END:")
15541 (line-beginning-position))))
15542 (cons pos pos))))))))
15544 (defun org-at-property-p ()
15545 "Non-nil when point is inside a property drawer.
15546 See `org-property-re' for match data, if applicable."
15547 (save-excursion
15548 (beginning-of-line)
15549 (and (looking-at org-property-re)
15550 (let ((property-drawer (save-match-data (org-get-property-block))))
15551 (and property-drawer
15552 (>= (point) (car property-drawer))
15553 (< (point) (cdr property-drawer)))))))
15555 (defun org-property-action ()
15556 "Do an action on properties."
15557 (interactive)
15558 (unless (org-at-property-p) (user-error "Not at a property"))
15559 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15560 (let ((c (read-char-exclusive)))
15561 (case c
15562 (?s (call-interactively #'org-set-property))
15563 (?d (call-interactively #'org-delete-property))
15564 (?D (call-interactively #'org-delete-property-globally))
15565 (?c (call-interactively #'org-compute-property-at-point))
15566 (otherwise (user-error "No such property action %c" c)))))
15568 (defun org-inc-effort ()
15569 "Increment the value of the effort property in the current entry."
15570 (interactive)
15571 (org-set-effort nil t))
15573 (defvar org-clock-effort) ; Defined in org-clock.el.
15574 (defvar org-clock-current-task) ; Defined in org-clock.el.
15575 (defun org-set-effort (&optional value increment)
15576 "Set the effort property of the current entry.
15577 With numerical prefix arg, use the nth allowed value, 0 stands for the
15578 10th allowed value.
15580 When INCREMENT is non-nil, set the property to the next allowed value."
15581 (interactive "P")
15582 (if (equal value 0) (setq value 10))
15583 (let* ((completion-ignore-case t)
15584 (prop org-effort-property)
15585 (cur (org-entry-get nil prop))
15586 (allowed (org-property-get-allowed-values nil prop 'table))
15587 (existing (mapcar 'list (org-property-values prop)))
15588 (heading (nth 4 (org-heading-components)))
15590 (val (cond
15591 ((stringp value) value)
15592 ((and allowed (integerp value))
15593 (or (car (nth (1- value) allowed))
15594 (car (org-last allowed))))
15595 ((and allowed increment)
15596 (or (caadr (member (list cur) allowed))
15597 (user-error "Allowed effort values are not set")))
15598 (allowed
15599 (message "Select 1-9,0, [RET%s]: %s"
15600 (if cur (concat "=" cur) "")
15601 (mapconcat 'car allowed " "))
15602 (setq rpl (read-char-exclusive))
15603 (if (equal rpl ?\r)
15605 (setq rpl (- rpl ?0))
15606 (if (equal rpl 0) (setq rpl 10))
15607 (if (and (> rpl 0) (<= rpl (length allowed)))
15608 (car (nth (1- rpl) allowed))
15609 (org-completing-read "Effort: " allowed nil))))
15611 (let (org-completion-use-ido org-completion-use-iswitchb)
15612 (org-completing-read
15613 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15614 (concat "[" cur "]") "")
15615 ": ")
15616 existing nil nil "" nil cur))))))
15617 (unless (equal (org-entry-get nil prop) val)
15618 (org-entry-put nil prop val))
15619 (org-refresh-property
15620 '((effort . identity)
15621 (effort-minutes . org-duration-string-to-minutes))
15622 val)
15623 (when (string= heading org-clock-current-task)
15624 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15625 (org-clock-update-mode-line))
15626 (message "%s is now %s" prop val)))
15628 (defun org-entry-properties (&optional pom which)
15629 "Get all properties of the current entry.
15631 When POM is a buffer position, get all properties from the entry
15632 there instead.
15634 This includes the TODO keyword, the tags, time strings for
15635 deadline, scheduled, and clocking, and any additional properties
15636 defined in the entry.
15638 If WHICH is nil or `all', get all properties. If WHICH is
15639 `special' or `standard', only get that subclass. If WHICH is
15640 a string, only get that property.
15642 Return value is an alist. Keys are properties, as upcased
15643 strings."
15644 (org-with-point-at pom
15645 (when (and (derived-mode-p 'org-mode)
15646 (ignore-errors (org-back-to-heading t)))
15647 (catch 'exit
15648 (let* ((beg (point))
15649 (specific (and (stringp which) (upcase which)))
15650 (which (cond ((not specific) which)
15651 ((member specific org-special-properties) 'special)
15652 (t 'standard)))
15653 props)
15654 ;; Get the special properties, like TODO and TAGS.
15655 (when (memq which '(nil all special))
15656 (when (or (not specific) (string= specific "CLOCKSUM"))
15657 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15658 (when clocksum
15659 (push (cons "CLOCKSUM"
15660 (org-columns-number-to-string
15661 (/ (float clocksum) 60.) 'add_times))
15662 props)))
15663 (when specific (throw 'exit props)))
15664 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15665 (let ((clocksumt (get-text-property (point)
15666 :org-clock-minutes-today)))
15667 (when clocksumt
15668 (push (cons "CLOCKSUM_T"
15669 (org-columns-number-to-string
15670 (/ (float clocksumt) 60.) 'add_times))
15671 props)))
15672 (when specific (throw 'exit props)))
15673 (when (or (not specific) (string= specific "ITEM"))
15674 (when (looking-at org-complex-heading-regexp)
15675 (push (cons "ITEM"
15676 (concat
15677 (org-match-string-no-properties 1)
15678 (let ((title (org-match-string-no-properties 4)))
15679 (when (org-string-nw-p title)
15680 (concat " " (org-remove-tabs title))))))
15681 props))
15682 (when specific (throw 'exit props)))
15683 (when (or (not specific) (string= specific "TODO"))
15684 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15685 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15686 (when specific (throw 'exit props)))
15687 (when (or (not specific) (string= specific "PRIORITY"))
15688 (when (looking-at org-priority-regexp)
15689 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15690 (when specific (throw 'exit props)))
15691 (when (or (not specific) (string= specific "FILE"))
15692 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15693 props)
15694 (when specific (throw 'exit props)))
15695 (when (or (not specific) (string= specific "TAGS"))
15696 (let ((value (org-string-nw-p (org-get-tags-string))))
15697 (when value (push (cons "TAGS" value) props)))
15698 (when specific (throw 'exit props)))
15699 (when (or (not specific) (string= specific "ALLTAGS"))
15700 (let ((value (org-get-tags-at)))
15701 (when value
15702 (push (cons "ALLTAGS"
15703 (format ":%s:" (mapconcat #'identity value ":")))
15704 props)))
15705 (when specific (throw 'exit props)))
15706 (when (or (not specific) (string= specific "BLOCKED"))
15707 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15708 (when specific (throw 'exit props)))
15709 (when (or (not specific)
15710 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15711 (forward-line)
15712 (when (org-looking-at-p org-planning-line-re)
15713 (end-of-line)
15714 (let ((bol (line-beginning-position))
15715 ;; Backward compatibility: time keywords used to
15716 ;; be configurable (before 8.3). Make sure we
15717 ;; get the correct keyword.
15718 (key-assoc `(("CLOSED" . ,org-closed-string)
15719 ("DEADLINE" . ,org-deadline-string)
15720 ("SCHEDULED" . ,org-scheduled-string))))
15721 (dolist (pair (if specific (list (assoc specific key-assoc))
15722 key-assoc))
15723 (save-excursion
15724 (when (search-backward (cdr pair) bol t)
15725 (goto-char (match-end 0))
15726 (skip-chars-forward " \t")
15727 (and (looking-at org-ts-regexp-both)
15728 (push (cons (car pair)
15729 (org-match-string-no-properties 0))
15730 props)))))))
15731 (when specific (throw 'exit props)))
15732 (when (or (not specific)
15733 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15734 (let ((find-ts
15735 (lambda (end ts)
15736 (let ((regexp (if (or (string= specific "TIMESTAMP")
15737 (assoc "TIMESTAMP_IA" ts))
15738 org-ts-regexp
15739 org-ts-regexp-both)))
15740 (catch 'next
15741 (while (re-search-forward regexp end t)
15742 (backward-char)
15743 (let ((object (org-element-context)))
15744 ;; Accept to match timestamps in node
15745 ;; properties, too.
15746 (when (memq (org-element-type object)
15747 '(node-property timestamp))
15748 (let ((type
15749 (org-element-property :type object)))
15750 (cond
15751 ((and (memq type '(active active-range))
15752 (not (equal specific "TIMESTAMP_IA")))
15753 (unless (assoc "TIMESTAMP" ts)
15754 (push (cons "TIMESTAMP"
15755 (org-element-property
15756 :raw-value object))
15758 (when specific (throw 'exit ts))))
15759 ((and (memq type '(inactive inactive-range))
15760 (not (string= specific "TIMESTAMP")))
15761 (unless (assoc "TIMESTAMP_IA" ts)
15762 (push (cons "TIMESTAMP_IA"
15763 (org-element-property
15764 :raw-value object))
15766 (when specific (throw 'exit ts))))))
15767 ;; Both timestamp types are found,
15768 ;; move to next part.
15769 (when (= (length ts) 2) (throw 'next ts)))))
15770 ts)))))
15771 (goto-char beg)
15772 ;; First look for timestamps within headline.
15773 (let ((ts (funcall find-ts (line-end-position) nil)))
15774 (if (= (length ts) 2) (setq props (nconc ts props))
15775 (forward-line)
15776 ;; Then find timestamps in the section, skipping
15777 ;; planning line.
15778 (when (org-looking-at-p org-planning-line-re)
15779 (forward-line))
15780 (let ((end (save-excursion (outline-next-heading))))
15781 (setq props (nconc (funcall find-ts end ts) props))))))))
15782 ;; Get the standard properties, like :PROP:.
15783 (when (memq which '(nil all standard))
15784 ;; If we are looking after a specific property, delegate
15785 ;; to `org-entry-get', which is faster. However, make an
15786 ;; exception for "CATEGORY", since it can be also set
15787 ;; through keywords (i.e. #+CATEGORY).
15788 (if (and specific (not (equal specific "CATEGORY")))
15789 (let ((value (org-entry-get beg specific nil t)))
15790 (throw 'exit (and value (list (cons specific value)))))
15791 (let ((range (org-get-property-block beg)))
15792 (when range
15793 (let ((end (cdr range)) seen-base)
15794 (goto-char (car range))
15795 ;; Unlike to `org--update-property-plist', we
15796 ;; handle the case where base values is found
15797 ;; after its extension. We also forbid standard
15798 ;; properties to be named as special properties.
15799 (while (re-search-forward org-property-re end t)
15800 (let* ((key (upcase (org-match-string-no-properties 2)))
15801 (extendp (org-string-match-p "\\+\\'" key))
15802 (key-base (if extendp (substring key 0 -1) key))
15803 (value (org-match-string-no-properties 3)))
15804 (cond
15805 ((member-ignore-case key-base org-special-properties))
15806 (extendp
15807 (setq props
15808 (org--update-property-plist key value props)))
15809 ((member key seen-base))
15810 (t (push key seen-base)
15811 (let ((p (assoc-string key props t)))
15812 (if p (setcdr p (concat value " " (cdr p)))
15813 (push (cons key value) props))))))))))))
15814 (unless (assoc "CATEGORY" props)
15815 (push (cons "CATEGORY" (org-get-category beg)) props)
15816 (when (string= specific "CATEGORY") (throw 'exit props)))
15817 ;; Return value.
15818 (append (get-text-property beg 'org-summaries) props))))))
15820 (defun org-entry-get (pom property &optional inherit literal-nil)
15821 "Get value of PROPERTY for entry or content at point-or-marker POM.
15823 If INHERIT is non-nil and the entry does not have the property,
15824 then also check higher levels of the hierarchy. If INHERIT is
15825 the symbol `selective', use inheritance only if the setting in
15826 `org-use-property-inheritance' selects PROPERTY for inheritance.
15828 If the property is present but empty, the return value is the
15829 empty string. If the property is not present at all, nil is
15830 returned. In any other case, return the value as a string.
15831 Search is case-insensitive.
15833 If LITERAL-NIL is set, return the string value \"nil\" as
15834 a string, do not interpret it as the list atom nil. This is used
15835 for inheritance when a \"nil\" value can supersede a non-nil
15836 value higher up the hierarchy."
15837 (org-with-point-at pom
15838 (cond
15839 ((and inherit
15840 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15841 (org-entry-get-with-inheritance property literal-nil))
15842 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15843 ;; We need a special property. Use `org-entry-properties' to
15844 ;; retrieve it, but specify the wanted property.
15845 (cdr (assoc-string property (org-entry-properties nil property))))
15847 (let ((range (org-get-property-block)))
15848 (when range
15849 (let* ((case-fold-search t)
15850 (end (cdr range))
15851 (props
15852 (let ((global
15853 (or (assoc-string property org-file-properties t)
15854 (assoc-string property org-global-properties t)
15855 (assoc-string
15856 property org-global-properties-fixed t))))
15857 ;; Make sure to not re-use GLOBAL as
15858 ;; `org--update-property-plist' would alter it by
15859 ;; side-effect.
15860 (and global (list (cons property (cdr global))))))
15861 (find-value
15862 (lambda (key)
15863 (when (re-search-forward (org-re-property key nil t) end t)
15864 (setq props
15865 (org--update-property-plist
15866 key (org-match-string-no-properties 3) props))))))
15867 (goto-char (car range))
15868 ;; Find base value.
15869 (save-excursion (funcall find-value property))
15870 ;; Find additional values.
15871 (let ((property+ (concat property "+")))
15872 (while (funcall find-value property+)))
15873 ;; Return final value.
15874 (let ((val (cdr (assoc-string property props t))))
15875 (if literal-nil val (org-not-nil val))))))))))
15877 (defun org-property-or-variable-value (var &optional inherit)
15878 "Check if there is a property fixing the value of VAR.
15879 If yes, return this value. If not, return the current value of the variable."
15880 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15881 (if (and prop (stringp prop) (string-match "\\S-" prop))
15882 (read prop)
15883 (symbol-value var))))
15885 (defun org-entry-delete (pom property)
15886 "Delete PROPERTY from entry at point-or-marker POM.
15887 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15888 non-nil when a property was removed."
15889 (unless (member property org-special-properties)
15890 (org-with-point-at pom
15891 (let ((range (org-get-property-block)))
15892 (when range
15893 (let* ((begin (car range))
15894 (origin (cdr range))
15895 (end (copy-marker origin))
15896 (re (org-re-property
15897 (concat (regexp-quote property) "\\+?") t t)))
15898 (goto-char begin)
15899 (while (re-search-forward re end t)
15900 (delete-region (match-beginning 0) (line-beginning-position 2)))
15901 ;; If drawer is empty, remove it altogether.
15902 (when (= begin end)
15903 (delete-region (line-beginning-position 0)
15904 (line-beginning-position 2)))
15905 ;; Return non-nil if some property was removed.
15906 (prog1 (/= end origin) (set-marker end nil))))))))
15908 ;; Multi-values properties are properties that contain multiple values
15909 ;; These values are assumed to be single words, separated by whitespace.
15910 (defun org-entry-add-to-multivalued-property (pom property value)
15911 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15912 (let* ((old (org-entry-get pom property))
15913 (values (and old (org-split-string old "[ \t]"))))
15914 (setq value (org-entry-protect-space value))
15915 (unless (member value values)
15916 (setq values (append values (list value)))
15917 (org-entry-put pom property
15918 (mapconcat 'identity values " ")))))
15920 (defun org-entry-remove-from-multivalued-property (pom property value)
15921 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15922 (let* ((old (org-entry-get pom property))
15923 (values (and old (org-split-string old "[ \t]"))))
15924 (setq value (org-entry-protect-space value))
15925 (when (member value values)
15926 (setq values (delete value values))
15927 (org-entry-put pom property
15928 (mapconcat 'identity values " ")))))
15930 (defun org-entry-member-in-multivalued-property (pom property value)
15931 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15932 (let* ((old (org-entry-get pom property))
15933 (values (and old (org-split-string old "[ \t]"))))
15934 (setq value (org-entry-protect-space value))
15935 (member value values)))
15937 (defun org-entry-get-multivalued-property (pom property)
15938 "Return a list of values in a multivalued property."
15939 (let* ((value (org-entry-get pom property))
15940 (values (and value (org-split-string value "[ \t]"))))
15941 (mapcar 'org-entry-restore-space values)))
15943 (defun org-entry-put-multivalued-property (pom property &rest values)
15944 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15945 VALUES should be a list of strings. Spaces will be protected."
15946 (org-entry-put pom property
15947 (mapconcat 'org-entry-protect-space values " "))
15948 (let* ((value (org-entry-get pom property))
15949 (values (and value (org-split-string value "[ \t]"))))
15950 (mapcar 'org-entry-restore-space values)))
15952 (defun org-entry-protect-space (s)
15953 "Protect spaces and newline in string S."
15954 (while (string-match " " s)
15955 (setq s (replace-match "%20" t t s)))
15956 (while (string-match "\n" s)
15957 (setq s (replace-match "%0A" t t s)))
15960 (defun org-entry-restore-space (s)
15961 "Restore spaces and newline in string S."
15962 (while (string-match "%20" s)
15963 (setq s (replace-match " " t t s)))
15964 (while (string-match "%0A" s)
15965 (setq s (replace-match "\n" t t s)))
15968 (defvar org-entry-property-inherited-from (make-marker)
15969 "Marker pointing to the entry from where a property was inherited.
15970 Each call to `org-entry-get-with-inheritance' will set this marker to the
15971 location of the entry where the inheritance search matched. If there was
15972 no match, the marker will point nowhere.
15973 Note that also `org-entry-get' calls this function, if the INHERIT flag
15974 is set.")
15976 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15977 "Get PROPERTY of entry or content at point, search higher levels if needed.
15978 The search will stop at the first ancestor which has the property defined.
15979 If the value found is \"nil\", return nil to show that the property
15980 should be considered as undefined (this is the meaning of nil here).
15981 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15982 (move-marker org-entry-property-inherited-from nil)
15983 (let (value)
15984 (org-with-wide-buffer
15985 (catch 'exit
15986 (while t
15987 (when (setq value (org-entry-get nil property nil literal-nil))
15988 (org-back-to-heading t)
15989 (move-marker org-entry-property-inherited-from (point))
15990 (throw 'exit nil))
15991 (or (org-up-heading-safe) (throw 'exit nil)))))
15992 (unless value
15993 (setq value
15994 (cdr (or (assoc-string property org-file-properties t)
15995 (assoc-string property org-global-properties t)
15996 (assoc-string property org-global-properties-fixed t)))))
15997 (if literal-nil value (org-not-nil value))))
15999 (defvar org-property-changed-functions nil
16000 "Hook called when the value of a property has changed.
16001 Each hook function should accept two arguments, the name of the property
16002 and the new value.")
16004 (defun org-entry-put (pom property value)
16005 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16007 If the value is `nil', it is converted to the empty string. If
16008 it is not a string, an error is raised.
16010 PROPERTY can be any regular property (see
16011 `org-special-properties'). It can also be \"TODO\",
16012 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16014 For the last two properties, VALUE may have any of the special
16015 values \"earlier\" and \"later\". The function then increases or
16016 decreases scheduled or deadline date by one day."
16017 (cond ((null value) (setq value ""))
16018 ((not (stringp value)) (error "Properties values should be strings")))
16019 (org-with-point-at pom
16020 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16021 (org-back-to-heading t)
16022 (org-with-limited-levels (org-back-to-heading t)))
16023 (let ((beg (point)))
16024 (cond
16025 ((equal property "TODO")
16026 (cond ((not (org-string-nw-p value)) (setq value 'none))
16027 ((not (member value org-todo-keywords-1))
16028 (user-error "\"%s\" is not a valid TODO state" value)))
16029 (org-todo value)
16030 (org-set-tags nil 'align))
16031 ((equal property "PRIORITY")
16032 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16033 (org-set-tags nil 'align))
16034 ((equal property "SCHEDULED")
16035 (forward-line)
16036 (if (and (org-looking-at-p org-planning-line-re)
16037 (re-search-forward
16038 org-scheduled-time-regexp (line-end-position) t))
16039 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16040 ((string= value "later") (org-timestamp-change 1 'day))
16041 ((string= value "") (org-schedule '(4)))
16042 (t (org-schedule nil value)))
16043 (if (member value '("earlier" "later" ""))
16044 (call-interactively #'org-schedule)
16045 (org-schedule nil value))))
16046 ((equal property "DEADLINE")
16047 (forward-line)
16048 (if (and (org-looking-at-p org-planning-line-re)
16049 (re-search-forward
16050 org-deadline-time-regexp (line-end-position) t))
16051 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16052 ((string= value "later") (org-timestamp-change 1 'day))
16053 ((string= value "") (org-deadline '(4)))
16054 (t (org-deadline nil value)))
16055 (if (member value '("earlier" "later" ""))
16056 (call-interactively #'org-deadline)
16057 (org-deadline nil value))))
16058 ((member property org-special-properties)
16059 (error "The %s property cannot be set with `org-entry-put'" property))
16061 (let* ((range (org-get-property-block beg 'force))
16062 (end (cdr range))
16063 (case-fold-search t))
16064 (goto-char (car range))
16065 (if (re-search-forward (org-re-property property nil t) end t)
16066 (progn (delete-region (match-beginning 0) (match-end 0))
16067 (goto-char (match-beginning 0)))
16068 (goto-char end)
16069 (insert "\n")
16070 (backward-char))
16071 (insert ":" property ":")
16072 (when value (insert " " value))
16073 (org-indent-line)))))
16074 (run-hook-with-args 'org-property-changed-functions property value)))
16076 (defun org-buffer-property-keys (&optional specials defaults columns)
16077 "Get all property keys in the current buffer.
16079 When SPECIALS is non-nil, also list the special properties that
16080 reflect things like tags and TODO state.
16082 When DEFAULTS is non-nil, also include properties that has
16083 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16084 DESCRIPTION, LOCATION, and LOGGING and others.
16086 When COLUMNS in non-nil, also include property names given in
16087 COLUMN formats in the current buffer."
16088 (let ((case-fold-search t)
16089 (props (append
16090 (and specials org-special-properties)
16091 (and defaults (cons org-effort-property org-default-properties))
16092 nil)))
16093 (org-with-wide-buffer
16094 (goto-char (point-min))
16095 (while (re-search-forward org-property-start-re nil t)
16096 (let ((range (org-get-property-block)))
16097 (catch 'skip
16098 (unless range
16099 (when (and (not (org-before-first-heading-p))
16100 (y-or-n-p (format "Malformed drawer at %d, repair?"
16101 (line-beginning-position))))
16102 (org-get-property-block nil t))
16103 (throw 'skip nil))
16104 (goto-char (car range))
16105 (let ((begin (car range))
16106 (end (cdr range)))
16107 ;; Make sure that found property block is not located
16108 ;; before current point, as it would generate an infloop.
16109 ;; It can happen, for example, in the following
16110 ;; situation:
16112 ;; * Headline
16113 ;; :PROPERTIES:
16114 ;; ...
16115 ;; :END:
16116 ;; *************** Inlinetask
16117 ;; #+BEGIN_EXAMPLE
16118 ;; :PROPERTIES:
16119 ;; #+END_EXAMPLE
16121 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16122 (while (< (point) end)
16123 (let ((p (progn (looking-at org-property-re)
16124 (org-match-string-no-properties 2))))
16125 ;; Only add true property name, not extension symbol.
16126 (add-to-list 'props
16127 (if (not (org-string-match-p "\\+\\'" p)) p
16128 (substring p 0 -1))))
16129 (forward-line))))
16130 (outline-next-heading)))
16131 (when columns
16132 (goto-char (point-min))
16133 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16134 (let ((element (org-element-at-point)))
16135 (when (memq (org-element-type element) '(keyword node-property))
16136 (let ((value (org-element-property :value element))
16137 (start 0))
16138 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16139 (setq start (match-end 0))
16140 (let ((p (org-match-string-no-properties 1 value)))
16141 (unless (member-ignore-case p org-special-properties)
16142 (add-to-list 'props p))))))))))
16143 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16145 (defun org-property-values (key)
16146 "List all non-nil values of property KEY in current buffer."
16147 (org-with-wide-buffer
16148 (goto-char (point-min))
16149 (let ((case-fold-search t)
16150 (re (org-re-property key))
16151 values)
16152 (while (re-search-forward re nil t)
16153 (add-to-list 'values (org-entry-get (point) key)))
16154 values)))
16156 (defun org-insert-property-drawer ()
16157 "Insert a property drawer into the current entry."
16158 (org-with-wide-buffer
16159 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16160 (org-back-to-heading t)
16161 (org-with-limited-levels (org-back-to-heading t)))
16162 (forward-line)
16163 (when (org-looking-at-p org-planning-line-re) (forward-line))
16164 (unless (org-looking-at-p org-property-drawer-re)
16165 (let ((inhibit-read-only t))
16166 (unless (bolp) (insert "\n"))
16167 (let ((begin (point)))
16168 (insert ":PROPERTIES:\n:END:\n")
16169 (org-indent-region begin (point)))))))
16171 (defun org-insert-drawer (&optional arg drawer)
16172 "Insert a drawer at point.
16174 When optional argument ARG is non-nil, insert a property drawer.
16176 Optional argument DRAWER, when non-nil, is a string representing
16177 drawer's name. Otherwise, the user is prompted for a name.
16179 If a region is active, insert the drawer around that region
16180 instead.
16182 Point is left between drawer's boundaries."
16183 (interactive "P")
16184 (let* ((drawer (if arg "PROPERTIES"
16185 (or drawer (read-from-minibuffer "Drawer: ")))))
16186 (cond
16187 ;; With C-u, fall back on `org-insert-property-drawer'
16188 (arg (org-insert-property-drawer))
16189 ;; Check validity of suggested drawer's name.
16190 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16191 (user-error "Invalid drawer name"))
16192 ;; With an active region, insert a drawer at point.
16193 ((not (org-region-active-p))
16194 (progn
16195 (unless (bolp) (insert "\n"))
16196 (insert (format ":%s:\n\n:END:\n" drawer))
16197 (forward-line -2)))
16198 ;; Otherwise, insert the drawer at point
16200 (let ((rbeg (region-beginning))
16201 (rend (copy-marker (region-end))))
16202 (unwind-protect
16203 (progn
16204 (goto-char rbeg)
16205 (beginning-of-line)
16206 (when (save-excursion
16207 (re-search-forward org-outline-regexp-bol rend t))
16208 (user-error "Drawers cannot contain headlines"))
16209 ;; Position point at the beginning of the first
16210 ;; non-blank line in region. Insert drawer's opening
16211 ;; there, then indent it.
16212 (org-skip-whitespace)
16213 (beginning-of-line)
16214 (insert ":" drawer ":\n")
16215 (forward-line -1)
16216 (indent-for-tab-command)
16217 ;; Move point to the beginning of the first blank line
16218 ;; after the last non-blank line in region. Insert
16219 ;; drawer's closing, then indent it.
16220 (goto-char rend)
16221 (skip-chars-backward " \r\t\n")
16222 (insert "\n:END:")
16223 (deactivate-mark t)
16224 (indent-for-tab-command)
16225 (unless (eolp) (insert "\n")))
16226 ;; Clear marker, whatever the outcome of insertion is.
16227 (set-marker rend nil)))))))
16229 (defvar org-property-set-functions-alist nil
16230 "Property set function alist.
16231 Each entry should have the following format:
16233 (PROPERTY . READ-FUNCTION)
16235 The read function will be called with the same argument as
16236 `org-completing-read'.")
16238 (defun org-set-property-function (property)
16239 "Get the function that should be used to set PROPERTY.
16240 This is computed according to `org-property-set-functions-alist'."
16241 (or (cdr (assoc property org-property-set-functions-alist))
16242 'org-completing-read))
16244 (defun org-read-property-value (property)
16245 "Read PROPERTY value from user."
16246 (let* ((completion-ignore-case t)
16247 (allowed (org-property-get-allowed-values nil property 'table))
16248 (cur (org-entry-get nil property))
16249 (prompt (concat property " value"
16250 (if (and cur (string-match "\\S-" cur))
16251 (concat " [" cur "]") "") ": "))
16252 (set-function (org-set-property-function property))
16253 (val (if allowed
16254 (funcall set-function prompt allowed nil
16255 (not (get-text-property 0 'org-unrestricted
16256 (caar allowed))))
16257 (let (org-completion-use-ido org-completion-use-iswitchb)
16258 (funcall set-function prompt
16259 (mapcar 'list (org-property-values property))
16260 nil nil "" nil cur)))))
16261 (org-trim val)))
16263 (defvar org-last-set-property nil)
16264 (defvar org-last-set-property-value nil)
16265 (defun org-read-property-name ()
16266 "Read a property name."
16267 (let ((completion-ignore-case t)
16268 (default-prop (or (and (org-at-property-p)
16269 (org-match-string-no-properties 2))
16270 org-last-set-property)))
16271 (org-completing-read
16272 (concat "Property"
16273 (if default-prop (concat " [" default-prop "]") "")
16274 ": ")
16275 (mapcar #'list (org-buffer-property-keys nil t t))
16276 nil nil nil nil default-prop)))
16278 (defun org-set-property-and-value (use-last)
16279 "Allow to set [PROPERTY]: [value] direction from prompt.
16280 When use-default, don't even ask, just use the last
16281 \"[PROPERTY]: [value]\" string from the history."
16282 (interactive "P")
16283 (let* ((completion-ignore-case t)
16284 (pv (or (and use-last org-last-set-property-value)
16285 (org-completing-read
16286 "Enter a \"[Property]: [value]\" pair: "
16287 nil nil nil nil nil
16288 org-last-set-property-value)))
16289 prop val)
16290 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16291 (setq prop (match-string 1 pv)
16292 val (match-string 2 pv))
16293 (org-set-property prop val))))
16295 (defun org-set-property (property value)
16296 "In the current entry, set PROPERTY to VALUE.
16297 When called interactively, this will prompt for a property name, offering
16298 completion on existing and default properties. And then it will prompt
16299 for a value, offering completion either on allowed values (via an inherited
16300 xxx_ALL property) or on existing values in other instances of this property
16301 in the current file."
16302 (interactive (list nil nil))
16303 (let* ((property (or property (org-read-property-name)))
16304 (value (or value (org-read-property-value property)))
16305 (fn (cdr (assoc property org-properties-postprocess-alist))))
16306 (setq org-last-set-property property)
16307 (setq org-last-set-property-value (concat property ": " value))
16308 ;; Possibly postprocess the inserted value:
16309 (when fn (setq value (funcall fn value)))
16310 (unless (equal (org-entry-get nil property) value)
16311 (org-entry-put nil property value))))
16313 (defun org-find-property (property &optional value)
16314 "Find first entry in buffer that sets PROPERTY.
16316 When optional argument VALUE is non-nil, only consider an entry
16317 if it contains PROPERTY set to this value. If PROPERTY should be
16318 explicitly set to nil, use string \"nil\" for VALUE.
16320 Return position where the entry begins, or nil if there is no
16321 such entry. If narrowing is in effect, only search the visible
16322 part of the buffer."
16323 (save-excursion
16324 (goto-char (point-min))
16325 (let ((case-fold-search t)
16326 (re (org-re-property property nil (not value) value)))
16327 (catch 'exit
16328 (while (re-search-forward re nil t)
16329 (when (if value (org-at-property-p)
16330 (org-entry-get (point) property nil t))
16331 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16333 (defun org-delete-property (property)
16334 "In the current entry, delete PROPERTY."
16335 (interactive
16336 (let* ((completion-ignore-case t)
16337 (cat (org-entry-get (point) "CATEGORY"))
16338 (props0 (org-entry-properties nil 'standard))
16339 (props (if cat props0
16340 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16341 (prop (if (< 1 (length props))
16342 (org-icompleting-read "Property: " props nil t)
16343 (caar props))))
16344 (list prop)))
16345 (if (not property)
16346 (message "No property to delete in this entry")
16347 (org-entry-delete nil property)
16348 (message "Property \"%s\" deleted" property)))
16350 (defun org-delete-property-globally (property)
16351 "Remove PROPERTY globally, from all entries.
16352 This function ignores narrowing, if any."
16353 (interactive
16354 (let* ((completion-ignore-case t)
16355 (prop (org-icompleting-read
16356 "Globally remove property: "
16357 (mapcar #'list (org-buffer-property-keys)))))
16358 (list prop)))
16359 (org-with-wide-buffer
16360 (goto-char (point-min))
16361 (let ((count 0)
16362 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16363 (while (re-search-forward re nil t)
16364 (when (org-entry-delete (point) property) (incf count)))
16365 (message "Property \"%s\" removed from %d entries" property count))))
16367 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16369 (defun org-compute-property-at-point ()
16370 "Compute the property at point.
16371 This looks for an enclosing column format, extracts the operator and
16372 then applies it to the property in the column format's scope."
16373 (interactive)
16374 (unless (org-at-property-p)
16375 (user-error "Not at a property"))
16376 (let ((prop (org-match-string-no-properties 2)))
16377 (org-columns-get-format-and-top-level)
16378 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16379 (user-error "No operator defined for property %s" prop))
16380 (org-columns-compute prop)))
16382 (defvar org-property-allowed-value-functions nil
16383 "Hook for functions supplying allowed values for a specific property.
16384 The functions must take a single argument, the name of the property, and
16385 return a flat list of allowed values. If \":ETC\" is one of
16386 the values, this means that these values are intended as defaults for
16387 completion, but that other values should be allowed too.
16388 The functions must return nil if they are not responsible for this
16389 property.")
16391 (defun org-property-get-allowed-values (pom property &optional table)
16392 "Get allowed values for the property PROPERTY.
16393 When TABLE is non-nil, return an alist that can directly be used for
16394 completion."
16395 (let (vals)
16396 (cond
16397 ((equal property "TODO")
16398 (setq vals (org-with-point-at pom
16399 (append org-todo-keywords-1 '("")))))
16400 ((equal property "PRIORITY")
16401 (let ((n org-lowest-priority))
16402 (while (>= n org-highest-priority)
16403 (push (char-to-string n) vals)
16404 (setq n (1- n)))))
16405 ((equal property "CATEGORY"))
16406 ((member property org-special-properties))
16407 ((setq vals (run-hook-with-args-until-success
16408 'org-property-allowed-value-functions property)))
16410 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16411 (when (and vals (string-match "\\S-" vals))
16412 (setq vals (car (read-from-string (concat "(" vals ")"))))
16413 (setq vals (mapcar (lambda (x)
16414 (cond ((stringp x) x)
16415 ((numberp x) (number-to-string x))
16416 ((symbolp x) (symbol-name x))
16417 (t "???")))
16418 vals)))))
16419 (when (member ":ETC" vals)
16420 (setq vals (remove ":ETC" vals))
16421 (org-add-props (car vals) '(org-unrestricted t)))
16422 (if table (mapcar 'list vals) vals)))
16424 (defun org-property-previous-allowed-value (&optional previous)
16425 "Switch to the next allowed value for this property."
16426 (interactive)
16427 (org-property-next-allowed-value t))
16429 (defun org-property-next-allowed-value (&optional previous)
16430 "Switch to the next allowed value for this property."
16431 (interactive)
16432 (unless (org-at-property-p)
16433 (user-error "Not at a property"))
16434 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16435 (key (match-string 2))
16436 (value (match-string 3))
16437 (allowed (or (org-property-get-allowed-values (point) key)
16438 (and (member value '("[ ]" "[-]" "[X]"))
16439 '("[ ]" "[X]"))))
16440 (heading (save-match-data (nth 4 (org-heading-components))))
16441 nval)
16442 (unless allowed
16443 (user-error "Allowed values for this property have not been defined"))
16444 (if previous (setq allowed (reverse allowed)))
16445 (if (member value allowed)
16446 (setq nval (car (cdr (member value allowed)))))
16447 (setq nval (or nval (car allowed)))
16448 (if (equal nval value)
16449 (user-error "Only one allowed value for this property"))
16450 (org-at-property-p)
16451 (replace-match (concat " :" key ": " nval) t t)
16452 (org-indent-line)
16453 (beginning-of-line 1)
16454 (skip-chars-forward " \t")
16455 (when (equal prop org-effort-property)
16456 (org-refresh-property
16457 '((effort . identity)
16458 (effort-minutes . org-duration-string-to-minutes))
16459 nval)
16460 (when (string= org-clock-current-task heading)
16461 (setq org-clock-effort nval)
16462 (org-clock-update-mode-line)))
16463 (run-hook-with-args 'org-property-changed-functions key nval)))
16465 (defun org-find-olp (path &optional this-buffer)
16466 "Return a marker pointing to the entry at outline path OLP.
16467 If anything goes wrong, throw an error.
16468 You can wrap this call to catch the error like this:
16470 (condition-case msg
16471 (org-mobile-locate-entry (match-string 4))
16472 (error (nth 1 msg)))
16474 The return value will then be either a string with the error message,
16475 or a marker if everything is OK.
16477 If THIS-BUFFER is set, the outline path does not contain a file,
16478 only headings."
16479 (let* ((file (if this-buffer buffer-file-name (pop path)))
16480 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16481 (level 1)
16482 (lmin 1)
16483 (lmax 1)
16484 limit re end found pos heading cnt flevel)
16485 (unless buffer (error "File not found :%s" file))
16486 (with-current-buffer buffer
16487 (save-excursion
16488 (save-restriction
16489 (widen)
16490 (setq limit (point-max))
16491 (goto-char (point-min))
16492 (while (setq heading (pop path))
16493 (setq re (format org-complex-heading-regexp-format
16494 (regexp-quote heading)))
16495 (setq cnt 0 pos (point))
16496 (while (re-search-forward re end t)
16497 (setq level (- (match-end 1) (match-beginning 1)))
16498 (if (and (>= level lmin) (<= level lmax))
16499 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16500 (when (= cnt 0) (error "Heading not found on level %d: %s"
16501 lmax heading))
16502 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16503 lmax heading))
16504 (goto-char found)
16505 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16506 (setq end (save-excursion (org-end-of-subtree t t))))
16507 (when (org-at-heading-p)
16508 (point-marker)))))))
16510 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16511 "Find node HEADING in BUFFER.
16512 Return a marker to the heading if it was found, or nil if not.
16513 If POS-ONLY is set, return just the position instead of a marker.
16515 The heading text must match exact, but it may have a TODO keyword,
16516 a priority cookie and tags in the standard locations."
16517 (with-current-buffer (or buffer (current-buffer))
16518 (save-excursion
16519 (save-restriction
16520 (widen)
16521 (goto-char (point-min))
16522 (let (case-fold-search)
16523 (if (re-search-forward
16524 (format org-complex-heading-regexp-format
16525 (regexp-quote heading)) nil t)
16526 (if pos-only
16527 (match-beginning 0)
16528 (move-marker (make-marker) (match-beginning 0)))))))))
16530 (defun org-find-exact-heading-in-directory (heading &optional dir)
16531 "Find Org node headline HEADING in all .org files in directory DIR.
16532 When the target headline is found, return a marker to this location."
16533 (let ((files (directory-files (or dir default-directory)
16534 t "\\`[^.#].*\\.org\\'"))
16535 file visiting m buffer)
16536 (catch 'found
16537 (while (setq file (pop files))
16538 (message "trying %s" file)
16539 (setq visiting (org-find-base-buffer-visiting file))
16540 (setq buffer (or visiting (find-file-noselect file)))
16541 (setq m (org-find-exact-headline-in-buffer
16542 heading buffer))
16543 (when (and (not m) (not visiting)) (kill-buffer buffer))
16544 (and m (throw 'found m))))))
16546 (defun org-find-entry-with-id (ident)
16547 "Locate the entry that contains the ID property with exact value IDENT.
16548 IDENT can be a string, a symbol or a number, this function will search for
16549 the string representation of it.
16550 Return the position where this entry starts, or nil if there is no such entry."
16551 (interactive "sID: ")
16552 (let ((id (cond
16553 ((stringp ident) ident)
16554 ((symbolp ident) (symbol-name ident))
16555 ((numberp ident) (number-to-string ident))
16556 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16557 (org-with-wide-buffer (org-find-property "ID" id))))
16559 ;;;; Timestamps
16561 (defvar org-last-changed-timestamp nil)
16562 (defvar org-last-inserted-timestamp nil
16563 "The last time stamp inserted with `org-insert-time-stamp'.")
16564 (defvar org-ts-what) ; dynamically scoped parameter
16566 (defun org-time-stamp (arg &optional inactive)
16567 "Prompt for a date/time and insert a time stamp.
16569 If the user specifies a time like HH:MM or if this command is
16570 called with at least one prefix argument, the time stamp contains
16571 the date and the time. Otherwise, only the date is included.
16573 All parts of a date not specified by the user are filled in from
16574 the timestamp at point, if any, or the current date/time
16575 otherwise.
16577 If there is already a timestamp at the cursor, it is replaced.
16579 With two universal prefix arguments, insert an active timestamp
16580 with the current time without prompting the user.
16582 When called from lisp, the timestamp is inactive if INACTIVE is
16583 non-nil."
16584 (interactive "P")
16585 (let* ((ts
16586 (cond ((org-at-date-range-p t)
16587 (save-excursion
16588 (goto-char (match-beginning 0))
16589 (looking-at (if inactive org-ts-regexp-both org-ts-regexp)))
16590 (match-string 0))
16591 ((org-at-timestamp-p t) (match-string 0))))
16592 ;; Default time is either the timestamp at point or today.
16593 ;; When entering a range, only the range start is considered.
16594 (default-time (if (not ts) (current-time)
16595 (apply #'encode-time (org-parse-time-string ts))))
16596 (default-input (and ts (org-get-compact-tod ts)))
16597 (repeater (and ts
16598 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16599 (match-string 0 ts)))
16600 org-time-was-given
16601 org-end-time-was-given
16602 (time
16603 (and (if (equal arg '(16)) (current-time)
16604 ;; Preserve `this-command' and `last-command'.
16605 (let ((this-command this-command)
16606 (last-command last-command))
16607 (org-read-date
16608 arg 'totime nil nil default-time default-input
16609 inactive))))))
16610 (cond
16611 ((and ts
16612 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16613 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16614 (insert "--")
16615 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16617 ;; Make sure we're on a timestamp. When in the middle of a date
16618 ;; range, move arbitrarily to range end.
16619 (unless (org-at-timestamp-p t)
16620 (skip-chars-forward "-")
16621 (org-at-timestamp-p t))
16622 (replace-match "")
16623 (setq org-last-changed-timestamp
16624 (org-insert-time-stamp
16625 time (or org-time-was-given arg)
16626 inactive nil nil (list org-end-time-was-given)))
16627 (when repeater
16628 (backward-char)
16629 (insert " " repeater)
16630 (setq org-last-changed-timestamp
16631 (concat (substring org-last-inserted-timestamp 0 -1)
16632 " " repeater ">")))
16633 (message "Timestamp updated"))
16634 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16635 (t (org-insert-time-stamp
16636 time (or org-time-was-given arg) inactive nil nil
16637 (list org-end-time-was-given))))))
16639 ;; FIXME: can we use this for something else, like computing time differences?
16640 (defun org-get-compact-tod (s)
16641 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16642 (let* ((t1 (match-string 1 s))
16643 (h1 (string-to-number (match-string 2 s)))
16644 (m1 (string-to-number (match-string 3 s)))
16645 (t2 (and (match-end 4) (match-string 5 s)))
16646 (h2 (and t2 (string-to-number (match-string 6 s))))
16647 (m2 (and t2 (string-to-number (match-string 7 s))))
16648 dh dm)
16649 (if (not t2)
16651 (setq dh (- h2 h1) dm (- m2 m1))
16652 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16653 (concat t1 "+" (number-to-string dh)
16654 (and (/= 0 dm) (format ":%02d" dm)))))))
16656 (defun org-time-stamp-inactive (&optional arg)
16657 "Insert an inactive time stamp.
16658 An inactive time stamp is enclosed in square brackets instead of angle
16659 brackets. It is inactive in the sense that it does not trigger agenda entries,
16660 does not link to the calendar and cannot be changed with the S-cursor keys.
16661 So these are more for recording a certain time/date."
16662 (interactive "P")
16663 (org-time-stamp arg 'inactive))
16665 (defvar org-date-ovl (make-overlay 1 1))
16666 (overlay-put org-date-ovl 'face 'org-date-selected)
16667 (org-detach-overlay org-date-ovl)
16669 (defvar org-ans1) ; dynamically scoped parameter
16670 (defvar org-ans2) ; dynamically scoped parameter
16672 (defvar org-plain-time-of-day-regexp) ; defined below
16674 (defvar org-overriding-default-time nil) ; dynamically scoped
16675 (defvar org-read-date-overlay nil)
16676 (defvar org-dcst nil) ; dynamically scoped
16677 (defvar org-read-date-history nil)
16678 (defvar org-read-date-final-answer nil)
16679 (defvar org-read-date-analyze-futurep nil)
16680 (defvar org-read-date-analyze-forced-year nil)
16681 (defvar org-read-date-inactive)
16683 (defvar org-read-date-minibuffer-local-map
16684 (let* ((map (make-sparse-keymap)))
16685 (set-keymap-parent map minibuffer-local-map)
16686 (org-defkey map (kbd ".")
16687 (lambda () (interactive)
16688 ;; Are we at the beginning of the prompt?
16689 (if (looking-back "^[^:]+: ")
16690 (org-eval-in-calendar '(calendar-goto-today))
16691 (insert "."))))
16692 (org-defkey map (kbd "C-.")
16693 (lambda () (interactive)
16694 (org-eval-in-calendar '(calendar-goto-today))))
16695 (org-defkey map [(meta shift left)]
16696 (lambda () (interactive)
16697 (org-eval-in-calendar '(calendar-backward-month 1))))
16698 (org-defkey map [(meta shift right)]
16699 (lambda () (interactive)
16700 (org-eval-in-calendar '(calendar-forward-month 1))))
16701 (org-defkey map [(meta shift up)]
16702 (lambda () (interactive)
16703 (org-eval-in-calendar '(calendar-backward-year 1))))
16704 (org-defkey map [(meta shift down)]
16705 (lambda () (interactive)
16706 (org-eval-in-calendar '(calendar-forward-year 1))))
16707 (org-defkey map [?\e (shift left)]
16708 (lambda () (interactive)
16709 (org-eval-in-calendar '(calendar-backward-month 1))))
16710 (org-defkey map [?\e (shift right)]
16711 (lambda () (interactive)
16712 (org-eval-in-calendar '(calendar-forward-month 1))))
16713 (org-defkey map [?\e (shift up)]
16714 (lambda () (interactive)
16715 (org-eval-in-calendar '(calendar-backward-year 1))))
16716 (org-defkey map [?\e (shift down)]
16717 (lambda () (interactive)
16718 (org-eval-in-calendar '(calendar-forward-year 1))))
16719 (org-defkey map [(shift up)]
16720 (lambda () (interactive)
16721 (org-eval-in-calendar '(calendar-backward-week 1))))
16722 (org-defkey map [(shift down)]
16723 (lambda () (interactive)
16724 (org-eval-in-calendar '(calendar-forward-week 1))))
16725 (org-defkey map [(shift left)]
16726 (lambda () (interactive)
16727 (org-eval-in-calendar '(calendar-backward-day 1))))
16728 (org-defkey map [(shift right)]
16729 (lambda () (interactive)
16730 (org-eval-in-calendar '(calendar-forward-day 1))))
16731 (org-defkey map "!"
16732 (lambda () (interactive)
16733 (org-eval-in-calendar '(diary-view-entries))
16734 (message "")))
16735 (org-defkey map ">"
16736 (lambda () (interactive)
16737 (org-eval-in-calendar '(calendar-scroll-left 1))))
16738 (org-defkey map "<"
16739 (lambda () (interactive)
16740 (org-eval-in-calendar '(calendar-scroll-right 1))))
16741 (org-defkey map "\C-v"
16742 (lambda () (interactive)
16743 (org-eval-in-calendar
16744 '(calendar-scroll-left-three-months 1))))
16745 (org-defkey map "\M-v"
16746 (lambda () (interactive)
16747 (org-eval-in-calendar
16748 '(calendar-scroll-right-three-months 1))))
16749 map)
16750 "Keymap for minibuffer commands when using `org-read-date'.")
16752 (defvar org-def)
16753 (defvar org-defdecode)
16754 (defvar org-with-time)
16756 (defun org-read-date (&optional org-with-time to-time from-string prompt
16757 default-time default-input inactive)
16758 "Read a date, possibly a time, and make things smooth for the user.
16759 The prompt will suggest to enter an ISO date, but you can also enter anything
16760 which will at least partially be understood by `parse-time-string'.
16761 Unrecognized parts of the date will default to the current day, month, year,
16762 hour and minute. If this command is called to replace a timestamp at point,
16763 or to enter the second timestamp of a range, the default time is taken
16764 from the existing stamp. Furthermore, the command prefers the future,
16765 so if you are giving a date where the year is not given, and the day-month
16766 combination is already past in the current year, it will assume you
16767 mean next year. For details, see the manual. A few examples:
16769 3-2-5 --> 2003-02-05
16770 feb 15 --> currentyear-02-15
16771 2/15 --> currentyear-02-15
16772 sep 12 9 --> 2009-09-12
16773 12:45 --> today 12:45
16774 22 sept 0:34 --> currentyear-09-22 0:34
16775 12 --> currentyear-currentmonth-12
16776 Fri --> nearest Friday after today
16777 -Tue --> last Tuesday
16778 etc.
16780 Furthermore you can specify a relative date by giving, as the *first* thing
16781 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16782 change in days weeks, months, years.
16783 With a single plus or minus, the date is relative to today. With a double
16784 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16785 +4d --> four days from today
16786 +4 --> same as above
16787 +2w --> two weeks from today
16788 ++5 --> five days from default date
16790 The function understands only English month and weekday abbreviations.
16792 While prompting, a calendar is popped up - you can also select the
16793 date with the mouse (button 1). The calendar shows a period of three
16794 months. To scroll it to other months, use the keys `>' and `<'.
16795 If you don't like the calendar, turn it off with
16796 \(setq org-read-date-popup-calendar nil)
16798 With optional argument TO-TIME, the date will immediately be converted
16799 to an internal time.
16800 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16801 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16802 still enter a time, and this function will inform the calling routine
16803 about this change. The calling routine may then choose to change the
16804 format used to insert the time stamp into the buffer to include the time.
16805 With optional argument FROM-STRING, read from this string instead from
16806 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16807 the time/date that is used for everything that is not specified by the
16808 user."
16809 (require 'parse-time)
16810 (let* ((org-time-stamp-rounding-minutes
16811 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16812 (org-dcst org-display-custom-times)
16813 (ct (org-current-time))
16814 (org-def (or org-overriding-default-time default-time ct))
16815 (org-defdecode (decode-time org-def))
16816 (dummy (progn
16817 (when (< (nth 2 org-defdecode) org-extend-today-until)
16818 (setcar (nthcdr 2 org-defdecode) -1)
16819 (setcar (nthcdr 1 org-defdecode) 59)
16820 (setq org-def (apply 'encode-time org-defdecode)
16821 org-defdecode (decode-time org-def)))))
16822 (cur-frame (selected-frame))
16823 (mouse-autoselect-window nil) ; Don't let the mouse jump
16824 (calendar-frame-setup nil)
16825 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16826 (calendar-move-hook nil)
16827 (calendar-view-diary-initially-flag nil)
16828 (calendar-view-holidays-initially-flag nil)
16829 (timestr (format-time-string
16830 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16831 (prompt (concat (if prompt (concat prompt " ") "")
16832 (format "Date+time [%s]: " timestr)))
16833 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16835 (cond
16836 (from-string (setq ans from-string))
16837 (org-read-date-popup-calendar
16838 (save-excursion
16839 (save-window-excursion
16840 (calendar)
16841 (when (eq calendar-setup 'calendar-only)
16842 (setq cal-frame
16843 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16844 (select-frame cal-frame))
16845 (org-eval-in-calendar '(setq cursor-type nil) t)
16846 (unwind-protect
16847 (progn
16848 (calendar-forward-day (- (time-to-days org-def)
16849 (calendar-absolute-from-gregorian
16850 (calendar-current-date))))
16851 (org-eval-in-calendar nil t)
16852 (let* ((old-map (current-local-map))
16853 (map (copy-keymap calendar-mode-map))
16854 (minibuffer-local-map
16855 (copy-keymap org-read-date-minibuffer-local-map)))
16856 (org-defkey map (kbd "RET") 'org-calendar-select)
16857 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16858 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16859 (unwind-protect
16860 (progn
16861 (use-local-map map)
16862 (setq org-read-date-inactive inactive)
16863 (add-hook 'post-command-hook 'org-read-date-display)
16864 (setq org-ans0 (read-string prompt default-input
16865 'org-read-date-history nil))
16866 ;; org-ans0: from prompt
16867 ;; org-ans1: from mouse click
16868 ;; org-ans2: from calendar motion
16869 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16870 (remove-hook 'post-command-hook 'org-read-date-display)
16871 (use-local-map old-map)
16872 (when org-read-date-overlay
16873 (delete-overlay org-read-date-overlay)
16874 (setq org-read-date-overlay nil)))))
16875 (bury-buffer "*Calendar*")
16876 (when cal-frame
16877 (delete-frame cal-frame)
16878 (select-frame-set-input-focus cur-frame))))))
16880 (t ; Naked prompt only
16881 (unwind-protect
16882 (setq ans (read-string prompt default-input
16883 'org-read-date-history timestr))
16884 (when org-read-date-overlay
16885 (delete-overlay org-read-date-overlay)
16886 (setq org-read-date-overlay nil)))))
16888 (setq final (org-read-date-analyze ans org-def org-defdecode))
16890 (when org-read-date-analyze-forced-year
16891 (message "Year was forced into %s"
16892 (if org-read-date-force-compatible-dates
16893 "compatible range (1970-2037)"
16894 "range representable on this machine"))
16895 (ding))
16897 ;; One round trip to get rid of 34th of August and stuff like that....
16898 (setq final (decode-time (apply 'encode-time final)))
16900 (setq org-read-date-final-answer ans)
16902 (if to-time
16903 (apply 'encode-time final)
16904 (if (and (boundp 'org-time-was-given) org-time-was-given)
16905 (format "%04d-%02d-%02d %02d:%02d"
16906 (nth 5 final) (nth 4 final) (nth 3 final)
16907 (nth 2 final) (nth 1 final))
16908 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16910 (defun org-read-date-display ()
16911 "Display the current date prompt interpretation in the minibuffer."
16912 (when org-read-date-display-live
16913 (when org-read-date-overlay
16914 (delete-overlay org-read-date-overlay))
16915 (when (minibufferp (current-buffer))
16916 (save-excursion
16917 (end-of-line 1)
16918 (while (not (equal (buffer-substring
16919 (max (point-min) (- (point) 4)) (point))
16920 " "))
16921 (insert " ")))
16922 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16923 " " (or org-ans1 org-ans2)))
16924 (org-end-time-was-given nil)
16925 (f (org-read-date-analyze ans org-def org-defdecode))
16926 (fmts (if org-dcst
16927 org-time-stamp-custom-formats
16928 org-time-stamp-formats))
16929 (fmt (if (or org-with-time
16930 (and (boundp 'org-time-was-given) org-time-was-given))
16931 (cdr fmts)
16932 (car fmts)))
16933 (txt (format-time-string fmt (apply 'encode-time f)))
16934 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16935 (txt (concat "=> " txt)))
16936 (when (and org-end-time-was-given
16937 (string-match org-plain-time-of-day-regexp txt))
16938 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16939 org-end-time-was-given
16940 (substring txt (match-end 0)))))
16941 (when org-read-date-analyze-futurep
16942 (setq txt (concat txt " (=>F)")))
16943 (setq org-read-date-overlay
16944 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16945 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16947 (defun org-read-date-analyze (ans org-def org-defdecode)
16948 "Analyze the combined answer of the date prompt."
16949 ;; FIXME: cleanup and comment
16950 (let ((nowdecode (decode-time (current-time)))
16951 delta deltan deltaw deltadef year month day
16952 hour minute second wday pm h2 m2 tl wday1
16953 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16954 (setq org-read-date-analyze-futurep nil
16955 org-read-date-analyze-forced-year nil)
16956 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16957 (setq ans "+0"))
16959 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16960 (setq ans (replace-match "" t t ans)
16961 deltan (car delta)
16962 deltaw (nth 1 delta)
16963 deltadef (nth 2 delta)))
16965 ;; Check if there is an iso week date in there. If yes, store the
16966 ;; info and postpone interpreting it until the rest of the parsing
16967 ;; is done.
16968 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16969 (setq iso-year (if (match-end 1)
16970 (org-small-year-to-year
16971 (string-to-number (match-string 1 ans))))
16972 iso-weekday (if (match-end 3)
16973 (string-to-number (match-string 3 ans)))
16974 iso-week (string-to-number (match-string 2 ans)))
16975 (setq ans (replace-match "" t t ans)))
16977 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16978 (when (string-match
16979 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16980 (setq year (if (match-end 2)
16981 (string-to-number (match-string 2 ans))
16982 (progn (setq kill-year t)
16983 (string-to-number (format-time-string "%Y"))))
16984 month (string-to-number (match-string 3 ans))
16985 day (string-to-number (match-string 4 ans)))
16986 (if (< year 100) (setq year (+ 2000 year)))
16987 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16988 t nil ans)))
16990 ;; Help matching dotted european dates
16991 (when (string-match
16992 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16993 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16994 (setq kill-year t)
16995 (string-to-number (format-time-string "%Y")))
16996 day (string-to-number (match-string 1 ans))
16997 month (string-to-number (match-string 2 ans))
16998 ans (replace-match (format "%04d-%02d-%02d" year month day)
16999 t nil ans)))
17001 ;; Help matching american dates, like 5/30 or 5/30/7
17002 (when (string-match
17003 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17004 (setq year (if (match-end 4)
17005 (string-to-number (match-string 4 ans))
17006 (progn (setq kill-year t)
17007 (string-to-number (format-time-string "%Y"))))
17008 month (string-to-number (match-string 1 ans))
17009 day (string-to-number (match-string 2 ans)))
17010 (if (< year 100) (setq year (+ 2000 year)))
17011 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17012 t nil ans)))
17013 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17014 ;; If there is a time with am/pm, and *no* time without it, we convert
17015 ;; so that matching will be successful.
17016 (loop for i from 1 to 2 do ; twice, for end time as well
17017 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17018 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17019 (setq hour (string-to-number (match-string 1 ans))
17020 minute (if (match-end 3)
17021 (string-to-number (match-string 3 ans))
17023 pm (equal ?p
17024 (string-to-char (downcase (match-string 4 ans)))))
17025 (if (and (= hour 12) (not pm))
17026 (setq hour 0)
17027 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17028 (setq ans (replace-match (format "%02d:%02d" hour minute)
17029 t t ans))))
17031 ;; Check if a time range is given as a duration
17032 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17033 (setq hour (string-to-number (match-string 1 ans))
17034 h2 (+ hour (string-to-number (match-string 3 ans)))
17035 minute (string-to-number (match-string 2 ans))
17036 m2 (+ minute (if (match-end 5) (string-to-number
17037 (match-string 5 ans))0)))
17038 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17039 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17040 t t ans)))
17042 ;; Check if there is a time range
17043 (when (boundp 'org-end-time-was-given)
17044 (setq org-time-was-given nil)
17045 (when (and (string-match org-plain-time-of-day-regexp ans)
17046 (match-end 8))
17047 (setq org-end-time-was-given (match-string 8 ans))
17048 (setq ans (concat (substring ans 0 (match-beginning 7))
17049 (substring ans (match-end 7))))))
17051 (setq tl (parse-time-string ans)
17052 day (or (nth 3 tl) (nth 3 org-defdecode))
17053 month
17054 (cond ((nth 4 tl))
17055 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17056 ;; Day was specified. Make sure DAY+MONTH
17057 ;; combination happens in the future.
17058 ((nth 3 tl)
17059 (setq futurep t)
17060 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17061 (nth 4 nowdecode)))
17062 (t (nth 4 org-defdecode)))
17063 year
17064 (cond ((and (not kill-year) (nth 5 tl)))
17065 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17066 ;; Month was guessed in the future and is at least
17067 ;; equal to NOWDECODE's. Fix year accordingly.
17068 (futurep
17069 (if (or (> month (nth 4 nowdecode))
17070 (>= day (nth 3 nowdecode)))
17071 (nth 5 nowdecode)
17072 (1+ (nth 5 nowdecode))))
17073 ;; Month was specified. Make sure MONTH+YEAR
17074 ;; combination happens in the future.
17075 ((nth 4 tl)
17076 (setq futurep t)
17077 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17078 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17079 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17080 (t (nth 5 nowdecode))))
17081 (t (nth 5 org-defdecode)))
17082 hour (or (nth 2 tl) (nth 2 org-defdecode))
17083 minute (or (nth 1 tl) (nth 1 org-defdecode))
17084 second (or (nth 0 tl) 0)
17085 wday (nth 6 tl))
17087 (when (and (eq org-read-date-prefer-future 'time)
17088 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17089 (equal day (nth 3 nowdecode))
17090 (equal month (nth 4 nowdecode))
17091 (equal year (nth 5 nowdecode))
17092 (nth 2 tl)
17093 (or (< (nth 2 tl) (nth 2 nowdecode))
17094 (and (= (nth 2 tl) (nth 2 nowdecode))
17095 (nth 1 tl)
17096 (< (nth 1 tl) (nth 1 nowdecode)))))
17097 (setq day (1+ day)
17098 futurep t))
17100 ;; Special date definitions below
17101 (cond
17102 (iso-week
17103 ;; There was an iso week
17104 (require 'cal-iso)
17105 (setq futurep nil)
17106 (setq year (or iso-year year)
17107 day (or iso-weekday wday 1)
17108 wday nil ; to make sure that the trigger below does not match
17109 iso-date (calendar-gregorian-from-absolute
17110 (calendar-iso-to-absolute
17111 (list iso-week day year))))
17112 ; FIXME: Should we also push ISO weeks into the future?
17113 ; (when (and org-read-date-prefer-future
17114 ; (not iso-year)
17115 ; (< (calendar-absolute-from-gregorian iso-date)
17116 ; (time-to-days (current-time))))
17117 ; (setq year (1+ year)
17118 ; iso-date (calendar-gregorian-from-absolute
17119 ; (calendar-iso-to-absolute
17120 ; (list iso-week day year)))))
17121 (setq month (car iso-date)
17122 year (nth 2 iso-date)
17123 day (nth 1 iso-date)))
17124 (deltan
17125 (setq futurep nil)
17126 (unless deltadef
17127 (let ((now (decode-time (current-time))))
17128 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17129 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17130 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17131 ((equal deltaw "m") (setq month (+ month deltan)))
17132 ((equal deltaw "y") (setq year (+ year deltan)))))
17133 ((and wday (not (nth 3 tl)))
17134 ;; Weekday was given, but no day, so pick that day in the week
17135 ;; on or after the derived date.
17136 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17137 (unless (equal wday wday1)
17138 (setq day (+ day (% (- wday wday1 -7) 7))))))
17139 (if (and (boundp 'org-time-was-given)
17140 (nth 2 tl))
17141 (setq org-time-was-given t))
17142 (if (< year 100) (setq year (+ 2000 year)))
17143 ;; Check of the date is representable
17144 (if org-read-date-force-compatible-dates
17145 (progn
17146 (if (< year 1970)
17147 (setq year 1970 org-read-date-analyze-forced-year t))
17148 (if (> year 2037)
17149 (setq year 2037 org-read-date-analyze-forced-year t)))
17150 (condition-case nil
17151 (ignore (encode-time second minute hour day month year))
17152 (error
17153 (setq year (nth 5 org-defdecode))
17154 (setq org-read-date-analyze-forced-year t))))
17155 (setq org-read-date-analyze-futurep futurep)
17156 (list second minute hour day month year)))
17158 (defvar parse-time-weekdays)
17159 (defun org-read-date-get-relative (s today default)
17160 "Check string S for special relative date string.
17161 TODAY and DEFAULT are internal times, for today and for a default.
17162 Return shift list (N what def-flag)
17163 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17164 N is the number of WHATs to shift.
17165 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17166 the DEFAULT date rather than TODAY."
17167 (require 'parse-time)
17168 (when (and
17169 (string-match
17170 (concat
17171 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17172 "\\([0-9]+\\)?"
17173 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17174 "\\([ \t]\\|$\\)") s)
17175 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17176 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17177 (string-to-char (substring (match-string 1 s) -1))
17178 ?+))
17179 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17180 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17181 (what (if (match-end 3) (match-string 3 s) "d"))
17182 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17183 (date (if rel default today))
17184 (wday (nth 6 (decode-time date)))
17185 delta)
17186 (if wday1
17187 (progn
17188 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17189 (if (= delta 0) (setq delta 7))
17190 (if (= dir ?-)
17191 (progn
17192 (setq delta (- delta 7))
17193 (if (= delta 0) (setq delta -7))))
17194 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17195 (list delta "d" rel))
17196 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17198 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17199 "Turn a user-specified date into the internal representation.
17200 The internal representation needed by the calendar is (month day year).
17201 This is a wrapper to handle the brain-dead convention in calendar that
17202 user function argument order change dependent on argument order."
17203 (if (boundp 'calendar-date-style)
17204 (cond
17205 ((eq calendar-date-style 'american)
17206 (list arg1 arg2 arg3))
17207 ((eq calendar-date-style 'european)
17208 (list arg2 arg1 arg3))
17209 ((eq calendar-date-style 'iso)
17210 (list arg2 arg3 arg1)))
17211 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17212 (if (org-bound-and-true-p european-calendar-style)
17213 (list arg2 arg1 arg3)
17214 (list arg1 arg2 arg3)))))
17216 (defun org-eval-in-calendar (form &optional keepdate)
17217 "Eval FORM in the calendar window and return to current window.
17218 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17219 otherwise stick to the current value of `org-ans2'."
17220 (let ((sf (selected-frame))
17221 (sw (selected-window)))
17222 (select-window (get-buffer-window "*Calendar*" t))
17223 (eval form)
17224 (when (and (not keepdate) (calendar-cursor-to-date))
17225 (let* ((date (calendar-cursor-to-date))
17226 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17227 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17228 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17229 (select-window sw)
17230 (org-select-frame-set-input-focus sf)))
17232 (defun org-calendar-select ()
17233 "Return to `org-read-date' with the date currently selected.
17234 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17235 (interactive)
17236 (when (calendar-cursor-to-date)
17237 (let* ((date (calendar-cursor-to-date))
17238 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17239 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17240 (if (active-minibuffer-window) (exit-minibuffer))))
17242 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17243 "Insert a date stamp for the date given by the internal TIME.
17244 See `format-time-string' for the format of TIME.
17245 WITH-HM means use the stamp format that includes the time of the day.
17246 INACTIVE means use square brackets instead of angular ones, so that the
17247 stamp will not contribute to the agenda.
17248 PRE and POST are optional strings to be inserted before and after the
17249 stamp.
17250 The command returns the inserted time stamp."
17251 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17252 stamp)
17253 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17254 (insert-before-markers (or pre ""))
17255 (when (listp extra)
17256 (setq extra (car extra))
17257 (if (and (stringp extra)
17258 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17259 (setq extra (format "-%02d:%02d"
17260 (string-to-number (match-string 1 extra))
17261 (string-to-number (match-string 2 extra))))
17262 (setq extra nil)))
17263 (when extra
17264 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17265 (insert-before-markers (setq stamp (format-time-string fmt time)))
17266 (insert-before-markers (or post ""))
17267 (setq org-last-inserted-timestamp stamp)))
17269 (defun org-toggle-time-stamp-overlays ()
17270 "Toggle the use of custom time stamp formats."
17271 (interactive)
17272 (setq org-display-custom-times (not org-display-custom-times))
17273 (unless org-display-custom-times
17274 (let ((p (point-min)) (bmp (buffer-modified-p)))
17275 (while (setq p (next-single-property-change p 'display))
17276 (if (and (get-text-property p 'display)
17277 (eq (get-text-property p 'face) 'org-date))
17278 (remove-text-properties
17279 p (setq p (next-single-property-change p 'display))
17280 '(display t))))
17281 (set-buffer-modified-p bmp)))
17282 (if (featurep 'xemacs)
17283 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17284 (org-restart-font-lock)
17285 (setq org-table-may-need-update t)
17286 (if org-display-custom-times
17287 (message "Time stamps are overlaid with custom format")
17288 (message "Time stamp overlays removed")))
17290 (defun org-display-custom-time (beg end)
17291 "Overlay modified time stamp format over timestamp between BEG and END."
17292 (let* ((ts (buffer-substring beg end))
17293 t1 w1 with-hm tf time str w2 (off 0))
17294 (save-match-data
17295 (setq t1 (org-parse-time-string ts t))
17296 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17297 (setq off (- (match-end 0) (match-beginning 0)))))
17298 (setq end (- end off))
17299 (setq w1 (- end beg)
17300 with-hm (and (nth 1 t1) (nth 2 t1))
17301 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17302 time (org-fix-decoded-time t1)
17303 str (org-add-props
17304 (format-time-string
17305 (substring tf 1 -1) (apply 'encode-time time))
17306 nil 'mouse-face 'highlight)
17307 w2 (length str))
17308 (if (not (= w2 w1))
17309 (add-text-properties (1+ beg) (+ 2 beg)
17310 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17311 (if (featurep 'xemacs)
17312 (progn
17313 (put-text-property beg end 'invisible t)
17314 (put-text-property beg end 'end-glyph (make-glyph str)))
17315 (put-text-property beg end 'display str))))
17317 (defun org-fix-decoded-time (time)
17318 "Set 0 instead of nil for the first 6 elements of time.
17319 Don't touch the rest."
17320 (let ((n 0))
17321 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17323 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17325 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17326 "Difference between TIMESTAMP-STRING and now in days.
17327 If SECONDS is non-nil, return the difference in seconds."
17328 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17329 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17330 (funcall fdiff (current-time)))))
17332 (defun org-deadline-close (timestamp-string &optional ndays)
17333 "Is the time in TIMESTAMP-STRING close to the current date?"
17334 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17335 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17336 (not (org-entry-is-done-p))))
17338 (defun org-get-wdays (ts &optional delay zero-delay)
17339 "Get the deadline lead time appropriate for timestring TS.
17340 When DELAY is non-nil, get the delay time for scheduled items
17341 instead of the deadline lead time. When ZERO-DELAY is non-nil
17342 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17343 don't try to find the delay cookie in the scheduled timestamp."
17344 (let ((tv (if delay org-scheduled-delay-days
17345 org-deadline-warning-days)))
17346 (cond
17347 ((or (and delay (< tv 0))
17348 (and delay zero-delay (<= tv 0))
17349 (and (not delay) (<= tv 0)))
17350 ;; Enforce this value no matter what
17351 (- tv))
17352 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17353 ;; lead time is specified.
17354 (floor (* (string-to-number (match-string 1 ts))
17355 (cdr (assoc (match-string 2 ts)
17356 '(("d" . 1) ("w" . 7)
17357 ("m" . 30.4) ("y" . 365.25)
17358 ("h" . 0.041667)))))))
17359 ;; go for the default.
17360 (t tv))))
17362 (defun org-calendar-select-mouse (ev)
17363 "Return to `org-read-date' with the date currently selected.
17364 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17365 (interactive "e")
17366 (mouse-set-point ev)
17367 (when (calendar-cursor-to-date)
17368 (let* ((date (calendar-cursor-to-date))
17369 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17370 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17371 (if (active-minibuffer-window) (exit-minibuffer))))
17373 (defun org-check-deadlines (ndays)
17374 "Check if there are any deadlines due or past due.
17375 A deadline is considered due if it happens within `org-deadline-warning-days'
17376 days from today's date. If the deadline appears in an entry marked DONE,
17377 it is not shown. The prefix arg NDAYS can be used to test that many
17378 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17379 (interactive "P")
17380 (let* ((org-warn-days
17381 (cond
17382 ((equal ndays '(4)) 100000)
17383 (ndays (prefix-numeric-value ndays))
17384 (t (abs org-deadline-warning-days))))
17385 (case-fold-search nil)
17386 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17387 (callback
17388 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17390 (message "%d deadlines past-due or due within %d days"
17391 (org-occur regexp nil callback)
17392 org-warn-days)))
17394 (defsubst org-re-timestamp (type)
17395 "Return a regexp for timestamp TYPE.
17396 Allowed values for TYPE are:
17398 all: all timestamps
17399 active: only active timestamps (<...>)
17400 inactive: only inactive timestamps ([...])
17401 scheduled: only scheduled timestamps
17402 deadline: only deadline timestamps
17403 closed: only closed time-stamps
17405 When TYPE is nil, fall back on returning a regexp that matches
17406 both scheduled and deadline timestamps."
17407 (case type
17408 (all org-ts-regexp-both)
17409 (active org-ts-regexp)
17410 (inactive org-ts-regexp-inactive)
17411 (scheduled org-scheduled-time-regexp)
17412 (deadline org-deadline-time-regexp)
17413 (closed org-closed-time-regexp)
17414 (otherwise
17415 (concat "\\<"
17416 (regexp-opt (list org-deadline-string org-scheduled-string))
17417 " *<\\([^>]+\\)>"))))
17419 (defun org-check-before-date (date)
17420 "Check if there are deadlines or scheduled entries before DATE."
17421 (interactive (list (org-read-date)))
17422 (let ((case-fold-search nil)
17423 (regexp (org-re-timestamp org-ts-type))
17424 (callback
17425 `(lambda ()
17426 (and ,(if (memq org-ts-type '(active inactive all))
17427 '(eq (org-element-type (org-element-context) 'timestamp))
17428 '(org-at-planning-p))
17429 (time-less-p
17430 (org-time-string-to-time (match-string 1))
17431 (org-time-string-to-time date))))))
17432 (message "%d entries before %s"
17433 (org-occur regexp nil callback) date)))
17435 (defun org-check-after-date (date)
17436 "Check if there are deadlines or scheduled entries after DATE."
17437 (interactive (list (org-read-date)))
17438 (let ((case-fold-search nil)
17439 (regexp (org-re-timestamp org-ts-type))
17440 (callback
17441 `(lambda ()
17442 (and ,(if (memq org-ts-type '(active inactive all))
17443 '(eq (org-element-type (org-element-context) 'timestamp))
17444 '(org-at-planning-p))
17445 (not (time-less-p
17446 (org-time-string-to-time (match-string 1))
17447 (org-time-string-to-time date)))))))
17448 (message "%d entries after %s"
17449 (org-occur regexp nil callback) date)))
17451 (defun org-check-dates-range (start-date end-date)
17452 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17453 (interactive (list (org-read-date nil nil nil "Range starts")
17454 (org-read-date nil nil nil "Range end")))
17455 (let ((case-fold-search nil)
17456 (regexp (org-re-timestamp org-ts-type))
17457 (callback
17458 `(lambda ()
17459 (let ((match (match-string 1)))
17460 (and
17461 ,(if (memq org-ts-type '(active inactive all))
17462 '(eq (org-element-type (org-element-context) 'timestamp))
17463 '(org-at-planning-p))
17464 (not (time-less-p
17465 (org-time-string-to-time match)
17466 (org-time-string-to-time start-date)))
17467 (time-less-p
17468 (org-time-string-to-time match)
17469 (org-time-string-to-time end-date)))))))
17470 (message "%d entries between %s and %s"
17471 (org-occur regexp nil callback) start-date end-date)))
17473 (defun org-evaluate-time-range (&optional to-buffer)
17474 "Evaluate a time range by computing the difference between start and end.
17475 Normally the result is just printed in the echo area, but with prefix arg
17476 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17477 If the time range is actually in a table, the result is inserted into the
17478 next column.
17479 For time difference computation, a year is assumed to be exactly 365
17480 days in order to avoid rounding problems."
17481 (interactive "P")
17483 (org-clock-update-time-maybe)
17484 (save-excursion
17485 (unless (org-at-date-range-p t)
17486 (goto-char (point-at-bol))
17487 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17488 (if (not (org-at-date-range-p t))
17489 (user-error "Not at a time-stamp range, and none found in current line")))
17490 (let* ((ts1 (match-string 1))
17491 (ts2 (match-string 2))
17492 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17493 (match-end (match-end 0))
17494 (time1 (org-time-string-to-time ts1))
17495 (time2 (org-time-string-to-time ts2))
17496 (t1 (org-float-time time1))
17497 (t2 (org-float-time time2))
17498 (diff (abs (- t2 t1)))
17499 (negative (< (- t2 t1) 0))
17500 ;; (ys (floor (* 365 24 60 60)))
17501 (ds (* 24 60 60))
17502 (hs (* 60 60))
17503 (fy "%dy %dd %02d:%02d")
17504 (fy1 "%dy %dd")
17505 (fd "%dd %02d:%02d")
17506 (fd1 "%dd")
17507 (fh "%02d:%02d")
17508 y d h m align)
17509 (if havetime
17510 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17512 d (floor (/ diff ds)) diff (mod diff ds)
17513 h (floor (/ diff hs)) diff (mod diff hs)
17514 m (floor (/ diff 60)))
17515 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17517 d (floor (+ (/ diff ds) 0.5))
17518 h 0 m 0))
17519 (if (not to-buffer)
17520 (message "%s" (org-make-tdiff-string y d h m))
17521 (if (org-at-table-p)
17522 (progn
17523 (goto-char match-end)
17524 (setq align t)
17525 (and (looking-at " *|") (goto-char (match-end 0))))
17526 (goto-char match-end))
17527 (if (looking-at
17528 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17529 (replace-match ""))
17530 (if negative (insert " -"))
17531 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17532 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17533 (insert " " (format fh h m))))
17534 (if align (org-table-align))
17535 (message "Time difference inserted")))))
17537 (defun org-make-tdiff-string (y d h m)
17538 (let ((fmt "")
17539 (l nil))
17540 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17541 l (push y l)))
17542 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17543 l (push d l)))
17544 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17545 l (push h l)))
17546 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17547 l (push m l)))
17548 (apply 'format fmt (nreverse l))))
17550 (defun org-time-string-to-time (s &optional buffer pos)
17551 "Convert a timestamp string into internal time."
17552 (condition-case errdata
17553 (apply 'encode-time (org-parse-time-string s))
17554 (error (error "Bad timestamp `%s'%s\nError was: %s"
17555 s (if (not (and buffer pos))
17557 (format " at %d in buffer `%s'" pos buffer))
17558 (cdr errdata)))))
17560 (defun org-time-string-to-seconds (s)
17561 "Convert a timestamp string to a number of seconds."
17562 (org-float-time (org-time-string-to-time s)))
17564 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17565 "Convert a time stamp to an absolute day number.
17566 If there is a specifier for a cyclic time stamp, get the closest
17567 date to DAYNR.
17568 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17569 The variable `date' is bound by the calendar when this is called."
17570 (cond
17571 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17572 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17573 daynr
17574 (+ daynr 1000)))
17575 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17576 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17577 (time-to-days (current-time))) (match-string 0 s)
17578 prefer show-all))
17579 (t (time-to-days
17580 (condition-case errdata
17581 (apply 'encode-time (org-parse-time-string s))
17582 (error (error "Bad timestamp `%s'%s\nError was: %s"
17583 s (if (not (and buffer pos))
17585 (format " at %d in buffer `%s'" pos buffer))
17586 (cdr errdata))))))))
17588 (defun org-days-to-iso-week (days)
17589 "Return the iso week number."
17590 (require 'cal-iso)
17591 (car (calendar-iso-from-absolute days)))
17593 (defun org-small-year-to-year (year)
17594 "Convert 2-digit years into 4-digit years.
17595 YEAR is expanded into one of the 30 next years, if possible, or
17596 into a past one. Any year larger than 99 is returned unchanged."
17597 (if (>= year 100) year
17598 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17599 (century (/ current 100))
17600 (offset (- year (% current 100))))
17601 (cond ((> offset 30) (+ (* (1- century) 100) year))
17602 ((> offset -70) (+ (* century 100) year))
17603 (t (+ (* (1+ century) 100) year))))))
17605 (defun org-time-from-absolute (d)
17606 "Return the time corresponding to date D.
17607 D may be an absolute day number, or a calendar-type list (month day year)."
17608 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17609 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17611 (defun org-calendar-holiday ()
17612 "List of holidays, for Diary display in Org-mode."
17613 (require 'holidays)
17614 (let ((hl (funcall
17615 (if (fboundp 'calendar-check-holidays)
17616 'calendar-check-holidays 'check-calendar-holidays) date)))
17617 (if hl (mapconcat 'identity hl "; "))))
17619 (defun org-diary-sexp-entry (sexp entry date)
17620 "Process a SEXP diary ENTRY for DATE."
17621 (require 'diary-lib)
17622 (let ((result (if calendar-debug-sexp
17623 (let ((stack-trace-on-error t))
17624 (eval (car (read-from-string sexp))))
17625 (condition-case nil
17626 (eval (car (read-from-string sexp)))
17627 (error
17628 (beep)
17629 (message "Bad sexp at line %d in %s: %s"
17630 (org-current-line)
17631 (buffer-file-name) sexp)
17632 (sleep-for 2))))))
17633 (cond ((stringp result) (split-string result "; "))
17634 ((and (consp result)
17635 (not (consp (cdr result)))
17636 (stringp (cdr result))) (cdr result))
17637 ((and (consp result)
17638 (stringp (car result))) result)
17639 (result entry))))
17641 (defun org-diary-to-ical-string (frombuf)
17642 "Get iCalendar entries from diary entries in buffer FROMBUF.
17643 This uses the icalendar.el library."
17644 (let* ((tmpdir (if (featurep 'xemacs)
17645 (temp-directory)
17646 temporary-file-directory))
17647 (tmpfile (make-temp-name
17648 (expand-file-name "orgics" tmpdir)))
17649 buf rtn b e)
17650 (with-current-buffer frombuf
17651 (icalendar-export-region (point-min) (point-max) tmpfile)
17652 (setq buf (find-buffer-visiting tmpfile))
17653 (set-buffer buf)
17654 (goto-char (point-min))
17655 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17656 (setq b (match-beginning 0)))
17657 (goto-char (point-max))
17658 (if (re-search-backward "^END:VEVENT" nil t)
17659 (setq e (match-end 0)))
17660 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17661 (kill-buffer buf)
17662 (delete-file tmpfile)
17663 rtn))
17665 (defun org-closest-date (start current change prefer show-all)
17666 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17667 When PREFER is `past', return a date that is either CURRENT or past.
17668 When PREFER is `future', return a date that is either CURRENT or future.
17669 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17670 ;; Make the proper lists from the dates
17671 (catch 'exit
17672 (let ((a1 '(("h" . hour)
17673 ("d" . day)
17674 ("w" . week)
17675 ("m" . month)
17676 ("y" . year)))
17677 (shour (nth 2 (org-parse-time-string start)))
17678 dn dw sday cday n1 n2 n0
17679 d m y y1 y2 date1 date2 nmonths nm ny m2)
17681 (setq start (org-date-to-gregorian start)
17682 current (org-date-to-gregorian
17683 (if show-all
17684 current
17685 (time-to-days (current-time))))
17686 sday (calendar-absolute-from-gregorian start)
17687 cday (calendar-absolute-from-gregorian current))
17689 (if (<= cday sday) (throw 'exit sday))
17691 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17692 (setq dn (string-to-number (match-string 1 change))
17693 dw (cdr (assoc (match-string 2 change) a1)))
17694 (user-error "Invalid change specifier: %s" change))
17695 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17696 (cond
17697 ((eq dw 'hour)
17698 (let ((missing-hours
17699 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17700 dn)))
17701 (setq n1 (if (zerop missing-hours) cday
17702 (- cday (1+ (floor (/ missing-hours 24)))))
17703 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17704 ((eq dw 'day)
17705 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17706 n2 (+ n1 dn)))
17707 ((eq dw 'year)
17708 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17709 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17710 (setq date1 (list m d y1)
17711 n1 (calendar-absolute-from-gregorian date1)
17712 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17713 n2 (calendar-absolute-from-gregorian date2)))
17714 ((eq dw 'month)
17715 ;; approx number of month between the two dates
17716 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17717 ;; How often does dn fit in there?
17718 (setq d (nth 1 start) m (car start) y (nth 2 start)
17719 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17720 m (+ m nm)
17721 ny (floor (/ m 12))
17722 y (+ y ny)
17723 m (- m (* ny 12)))
17724 (while (> m 12) (setq m (- m 12) y (1+ y)))
17725 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17726 (setq m2 (+ m dn) y2 y)
17727 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17728 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17729 (while (<= n2 cday)
17730 (setq n1 n2 m m2 y y2)
17731 (setq m2 (+ m dn) y2 y)
17732 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17733 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17734 ;; Make sure n1 is the earlier date
17735 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17736 (if show-all
17737 (cond
17738 ((eq prefer 'past) (if (= cday n2) n2 n1))
17739 ((eq prefer 'future) (if (= cday n1) n1 n2))
17740 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17741 (cond
17742 ((eq prefer 'past) (if (= cday n2) n2 n1))
17743 ((eq prefer 'future) (if (= cday n1) n1 n2))
17744 (t (if (= cday n1) n1 n2)))))))
17746 (defun org-date-to-gregorian (date)
17747 "Turn any specification of DATE into a Gregorian date for the calendar."
17748 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17749 ((and (listp date) (= (length date) 3)) date)
17750 ((stringp date)
17751 (setq date (org-parse-time-string date))
17752 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17753 ((listp date)
17754 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17756 (defun org-parse-time-string (s &optional nodefault)
17757 "Parse the standard Org-mode time string.
17758 This should be a lot faster than the normal `parse-time-string'.
17759 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17760 hour and minute fields will be nil if not given."
17761 (cond ((string-match org-ts-regexp0 s)
17762 (list 0
17763 (if (or (match-beginning 8) (not nodefault))
17764 (string-to-number (or (match-string 8 s) "0")))
17765 (if (or (match-beginning 7) (not nodefault))
17766 (string-to-number (or (match-string 7 s) "0")))
17767 (string-to-number (match-string 4 s))
17768 (string-to-number (match-string 3 s))
17769 (string-to-number (match-string 2 s))
17770 nil nil nil))
17771 ((string-match "^<[^>]+>$" s)
17772 (decode-time (seconds-to-time (org-matcher-time s))))
17773 (t (error "Not a standard Org-mode time string: %s" s))))
17775 (defun org-timestamp-up (&optional arg)
17776 "Increase the date item at the cursor by one.
17777 If the cursor is on the year, change the year. If it is on the month,
17778 the day or the time, change that.
17779 With prefix ARG, change by that many units."
17780 (interactive "p")
17781 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17783 (defun org-timestamp-down (&optional arg)
17784 "Decrease the date item at the cursor by one.
17785 If the cursor is on the year, change the year. If it is on the month,
17786 the day or the time, change that.
17787 With prefix ARG, change by that many units."
17788 (interactive "p")
17789 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17791 (defun org-timestamp-up-day (&optional arg)
17792 "Increase the date in the time stamp by one day.
17793 With prefix ARG, change that many days."
17794 (interactive "p")
17795 (if (and (not (org-at-timestamp-p t))
17796 (org-at-heading-p))
17797 (org-todo 'up)
17798 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17800 (defun org-timestamp-down-day (&optional arg)
17801 "Decrease the date in the time stamp by one day.
17802 With prefix ARG, change that many days."
17803 (interactive "p")
17804 (if (and (not (org-at-timestamp-p t))
17805 (org-at-heading-p))
17806 (org-todo 'down)
17807 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17809 (defun org-at-timestamp-p (&optional inactive-ok)
17810 "Determine if the cursor is in or at a timestamp."
17811 (interactive)
17812 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17813 (pos (point))
17814 (ans (or (looking-at tsr)
17815 (save-excursion
17816 (skip-chars-backward "^[<\n\r\t")
17817 (if (> (point) (point-min)) (backward-char 1))
17818 (and (looking-at tsr)
17819 (> (- (match-end 0) pos) -1))))))
17820 (and ans
17821 (boundp 'org-ts-what)
17822 (setq org-ts-what
17823 (cond
17824 ((= pos (match-beginning 0)) 'bracket)
17825 ;; Point is considered to be "on the bracket" whether
17826 ;; it's really on it or right after it.
17827 ((= pos (1- (match-end 0))) 'bracket)
17828 ((= pos (match-end 0)) 'after)
17829 ((org-pos-in-match-range pos 2) 'year)
17830 ((org-pos-in-match-range pos 3) 'month)
17831 ((org-pos-in-match-range pos 7) 'hour)
17832 ((org-pos-in-match-range pos 8) 'minute)
17833 ((or (org-pos-in-match-range pos 4)
17834 (org-pos-in-match-range pos 5)) 'day)
17835 ((and (> pos (or (match-end 8) (match-end 5)))
17836 (< pos (match-end 0)))
17837 (- pos (or (match-end 8) (match-end 5))))
17838 (t 'day))))
17839 ans))
17841 (defun org-toggle-timestamp-type ()
17842 "Toggle the type (<active> or [inactive]) of a time stamp."
17843 (interactive)
17844 (when (org-at-timestamp-p t)
17845 (let ((beg (match-beginning 0)) (end (match-end 0))
17846 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17847 (save-excursion
17848 (goto-char beg)
17849 (while (re-search-forward "[][<>]" end t)
17850 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17851 t t)))
17852 (message "Timestamp is now %sactive"
17853 (if (equal (char-after beg) ?<) "" "in")))))
17855 (defun org-at-clock-log-p nil
17856 "Is the cursor on the clock log line?"
17857 (save-excursion
17858 (move-beginning-of-line 1)
17859 (looking-at org-clock-line-re)))
17861 (defvar org-clock-history) ; defined in org-clock.el
17862 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17863 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17864 "Change the date in the time stamp at point.
17865 The date will be changed by N times WHAT. WHAT can be `day', `month',
17866 `year', `minute', `second'. If WHAT is not given, the cursor position
17867 in the timestamp determines what will be changed.
17868 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17869 (let ((origin (point)) origin-cat
17870 with-hm inactive
17871 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17872 org-ts-what
17873 extra rem
17874 ts time time0 fixnext clrgx)
17875 (if (not (org-at-timestamp-p t))
17876 (user-error "Not at a timestamp"))
17877 (if (and (not what) (eq org-ts-what 'bracket))
17878 (org-toggle-timestamp-type)
17879 ;; Point isn't on brackets. Remember the part of the time-stamp
17880 ;; the point was in. Indeed, size of time-stamps may change,
17881 ;; but point must be kept in the same category nonetheless.
17882 (setq origin-cat org-ts-what)
17883 (if (and (not what) (not (eq org-ts-what 'day))
17884 org-display-custom-times
17885 (get-text-property (point) 'display)
17886 (not (get-text-property (1- (point)) 'display)))
17887 (setq org-ts-what 'day))
17888 (setq org-ts-what (or what org-ts-what)
17889 inactive (= (char-after (match-beginning 0)) ?\[)
17890 ts (match-string 0))
17891 (replace-match "")
17892 (when (string-match
17893 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17895 (setq extra (match-string 1 ts))
17896 (if suppress-tmp-delay
17897 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17898 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17899 (setq with-hm t))
17900 (setq time0 (org-parse-time-string ts))
17901 (when (and updown
17902 (eq org-ts-what 'minute)
17903 (not current-prefix-arg))
17904 ;; This looks like s-up and s-down. Change by one rounding step.
17905 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17906 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17907 (setcar (cdr time0) (+ (nth 1 time0)
17908 (if (> n 0) (- rem) (- dm rem))))))
17909 (setq time
17910 (encode-time (or (car time0) 0)
17911 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17912 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17913 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17914 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17915 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17916 (nthcdr 6 time0)))
17917 (when (and (member org-ts-what '(hour minute))
17918 extra
17919 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17920 (setq extra (org-modify-ts-extra
17921 extra
17922 (if (eq org-ts-what 'hour) 2 5)
17923 n dm)))
17924 (when (integerp org-ts-what)
17925 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17926 (if (eq what 'calendar)
17927 (let ((cal-date (org-get-date-from-calendar)))
17928 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17929 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17930 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17931 (setcar time0 (or (car time0) 0))
17932 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17933 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17934 (setq time (apply 'encode-time time0))))
17935 ;; Insert the new time-stamp, and ensure point stays in the same
17936 ;; category as before (i.e. not after the last position in that
17937 ;; category).
17938 (let ((pos (point)))
17939 ;; Stay before inserted string. `save-excursion' is of no use.
17940 (setq org-last-changed-timestamp
17941 (org-insert-time-stamp time with-hm inactive nil nil extra))
17942 (goto-char pos))
17943 (save-match-data
17944 (looking-at org-ts-regexp3)
17945 (goto-char (cond
17946 ;; `day' category ends before `hour' if any, or at
17947 ;; the end of the day name.
17948 ((eq origin-cat 'day)
17949 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17950 ((eq origin-cat 'hour) (min (match-end 7) origin))
17951 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17952 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17953 ;; `year' and `month' have both fixed size: point
17954 ;; couldn't have moved into another part.
17955 (t origin))))
17956 ;; Update clock if on a CLOCK line.
17957 (org-clock-update-time-maybe)
17958 ;; Maybe adjust the closest clock in `org-clock-history'
17959 (when org-clock-adjust-closest
17960 (if (not (and (org-at-clock-log-p)
17961 (< 1 (length (delq nil (mapcar 'marker-position
17962 org-clock-history))))))
17963 (message "No clock to adjust")
17964 (cond ((save-excursion ; fix previous clock?
17965 (re-search-backward org-ts-regexp0 nil t)
17966 (org-looking-back (concat org-clock-string " \\[")))
17967 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17968 ((save-excursion ; fix next clock?
17969 (re-search-backward org-ts-regexp0 nil t)
17970 (looking-at (concat org-ts-regexp0 "\\] =>")))
17971 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17972 (save-window-excursion
17973 ;; Find closest clock to point, adjust the previous/next one in history
17974 (let* ((p (save-excursion (org-back-to-heading t)))
17975 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17976 (clfixnth
17977 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17978 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17979 (if (not clfixpos)
17980 (message "No clock to adjust")
17981 (save-excursion
17982 (org-goto-marker-or-bmk clfixpos)
17983 (org-show-subtree)
17984 (when (re-search-forward clrgx nil t)
17985 (goto-char (match-beginning 1))
17986 (let (org-clock-adjust-closest)
17987 (org-timestamp-change n org-ts-what updown))
17988 (message "Clock adjusted in %s for heading: %s"
17989 (file-name-nondirectory (buffer-file-name))
17990 (org-get-heading t t)))))))))
17991 ;; Try to recenter the calendar window, if any.
17992 (if (and org-calendar-follow-timestamp-change
17993 (get-buffer-window "*Calendar*" t)
17994 (memq org-ts-what '(day month year)))
17995 (org-recenter-calendar (time-to-days time))))))
17997 (defun org-modify-ts-extra (s pos n dm)
17998 "Change the different parts of the lead-time and repeat fields in timestamp."
17999 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18000 ng h m new rem)
18001 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18002 (cond
18003 ((or (org-pos-in-match-range pos 2)
18004 (org-pos-in-match-range pos 3))
18005 (setq m (string-to-number (match-string 3 s))
18006 h (string-to-number (match-string 2 s)))
18007 (if (org-pos-in-match-range pos 2)
18008 (setq h (+ h n))
18009 (setq n (* dm (org-no-warnings (signum n))))
18010 (when (not (= 0 (setq rem (% m dm))))
18011 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18012 (setq m (+ m n)))
18013 (if (< m 0) (setq m (+ m 60) h (1- h)))
18014 (if (> m 59) (setq m (- m 60) h (1+ h)))
18015 (setq h (min 24 (max 0 h)))
18016 (setq ng 1 new (format "-%02d:%02d" h m)))
18017 ((org-pos-in-match-range pos 6)
18018 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18019 ((org-pos-in-match-range pos 5)
18020 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18022 ((org-pos-in-match-range pos 9)
18023 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18024 ((org-pos-in-match-range pos 8)
18025 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18027 (when ng
18028 (setq s (concat
18029 (substring s 0 (match-beginning ng))
18031 (substring s (match-end ng))))))
18034 (defun org-recenter-calendar (date)
18035 "If the calendar is visible, recenter it to DATE."
18036 (let ((cwin (get-buffer-window "*Calendar*" t)))
18037 (when cwin
18038 (let ((calendar-move-hook nil))
18039 (with-selected-window cwin
18040 (calendar-goto-date (if (listp date) date
18041 (calendar-gregorian-from-absolute date))))))))
18043 (defun org-goto-calendar (&optional arg)
18044 "Go to the Emacs calendar at the current date.
18045 If there is a time stamp in the current line, go to that date.
18046 A prefix ARG can be used to force the current date."
18047 (interactive "P")
18048 (let ((tsr org-ts-regexp) diff
18049 (calendar-move-hook nil)
18050 (calendar-view-holidays-initially-flag nil)
18051 (calendar-view-diary-initially-flag nil))
18052 (if (or (org-at-timestamp-p)
18053 (save-excursion
18054 (beginning-of-line 1)
18055 (looking-at (concat ".*" tsr))))
18056 (let ((d1 (time-to-days (current-time)))
18057 (d2 (time-to-days
18058 (org-time-string-to-time (match-string 1)))))
18059 (setq diff (- d2 d1))))
18060 (calendar)
18061 (calendar-goto-today)
18062 (if (and diff (not arg)) (calendar-forward-day diff))))
18064 (defun org-get-date-from-calendar ()
18065 "Return a list (month day year) of date at point in calendar."
18066 (with-current-buffer "*Calendar*"
18067 (save-match-data
18068 (calendar-cursor-to-date))))
18070 (defun org-date-from-calendar ()
18071 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18072 If there is already a time stamp at the cursor position, update it."
18073 (interactive)
18074 (if (org-at-timestamp-p t)
18075 (org-timestamp-change 0 'calendar)
18076 (let ((cal-date (org-get-date-from-calendar)))
18077 (org-insert-time-stamp
18078 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18080 (defcustom org-effort-durations
18081 `(("min" . 1)
18082 ("h" . 60)
18083 ("d" . ,(* 60 8))
18084 ("w" . ,(* 60 8 5))
18085 ("m" . ,(* 60 8 5 4))
18086 ("y" . ,(* 60 8 5 40)))
18087 "Conversion factor to minutes for an effort modifier.
18089 Each entry has the form (MODIFIER . MINUTES).
18091 In an effort string, a number followed by MODIFIER is multiplied
18092 by the specified number of MINUTES to obtain an effort in
18093 minutes.
18095 For example, if the value of this variable is ((\"hours\" . 60)), then an
18096 effort string \"2hours\" is equivalent to 120 minutes."
18097 :group 'org-agenda
18098 :version "25.1"
18099 :package-version '(Org . "8.3")
18100 :type '(alist :key-type (string :tag "Modifier")
18101 :value-type (number :tag "Minutes")))
18103 (defun org-minutes-to-clocksum-string (m)
18104 "Format number of minutes as a clocksum string.
18105 The format is determined by `org-time-clocksum-format',
18106 `org-time-clocksum-use-fractional' and
18107 `org-time-clocksum-fractional-format' and
18108 `org-time-clocksum-use-effort-durations'."
18109 (let ((clocksum "")
18110 (m (round m)) ; Don't allow fractions of minutes
18111 h d w mo y fmt n)
18112 (setq h (if org-time-clocksum-use-effort-durations
18113 (cdr (assoc "h" org-effort-durations)) 60)
18114 d (if org-time-clocksum-use-effort-durations
18115 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18116 w (if org-time-clocksum-use-effort-durations
18117 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18118 mo (if org-time-clocksum-use-effort-durations
18119 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18120 y (if org-time-clocksum-use-effort-durations
18121 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18122 ;; fractional format
18123 (if org-time-clocksum-use-fractional
18124 (cond
18125 ;; single format string
18126 ((stringp org-time-clocksum-fractional-format)
18127 (format org-time-clocksum-fractional-format (/ m (float h))))
18128 ;; choice of fractional formats for different time units
18129 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18130 (> (/ (truncate m) (* y d h)) 0))
18131 (format fmt (/ m (* y d (float h)))))
18132 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18133 (> (/ (truncate m) (* mo d h)) 0))
18134 (format fmt (/ m (* mo d (float h)))))
18135 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18136 (> (/ (truncate m) (* w d h)) 0))
18137 (format fmt (/ m (* w d (float h)))))
18138 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18139 (> (/ (truncate m) (* d h)) 0))
18140 (format fmt (/ m (* d (float h)))))
18141 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18142 (> (/ (truncate m) h) 0))
18143 (format fmt (/ m (float h))))
18144 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18145 (format fmt m))
18146 ;; fall back to smallest time unit with a format
18147 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18148 (format fmt (/ m (float h))))
18149 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18150 (format fmt (/ m (* d (float h)))))
18151 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18152 (format fmt (/ m (* w d (float h)))))
18153 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18154 (format fmt (/ m (* mo d (float h)))))
18155 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18156 (format fmt (/ m (* y d (float h))))))
18157 ;; standard (non-fractional) format, with single format string
18158 (if (stringp org-time-clocksum-format)
18159 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18160 ;; separate formats components
18161 (and (setq fmt (plist-get org-time-clocksum-format :years))
18162 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18163 (plist-get org-time-clocksum-format :require-years))
18164 (setq clocksum (concat clocksum (format fmt n))
18165 m (- m (* n y d h))))
18166 (and (setq fmt (plist-get org-time-clocksum-format :months))
18167 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18168 (plist-get org-time-clocksum-format :require-months))
18169 (setq clocksum (concat clocksum (format fmt n))
18170 m (- m (* n mo d h))))
18171 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18172 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18173 (plist-get org-time-clocksum-format :require-weeks))
18174 (setq clocksum (concat clocksum (format fmt n))
18175 m (- m (* n w d h))))
18176 (and (setq fmt (plist-get org-time-clocksum-format :days))
18177 (or (> (setq n (/ (truncate m) (* d h))) 0)
18178 (plist-get org-time-clocksum-format :require-days))
18179 (setq clocksum (concat clocksum (format fmt n))
18180 m (- m (* n d h))))
18181 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18182 (or (> (setq n (/ (truncate m) h)) 0)
18183 (plist-get org-time-clocksum-format :require-hours))
18184 (setq clocksum (concat clocksum (format fmt n))
18185 m (- m (* n h))))
18186 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18187 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18188 (setq clocksum (concat clocksum (format fmt m))))
18189 ;; return formatted time duration
18190 clocksum))))
18192 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18193 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18194 "Org mode version 8.0")
18196 (defun org-hours-to-clocksum-string (n)
18197 (org-minutes-to-clocksum-string (* n 60)))
18199 (defun org-hh:mm-string-to-minutes (s)
18200 "Convert a string H:MM to a number of minutes.
18201 If the string is just a number, interpret it as minutes.
18202 In fact, the first hh:mm or number in the string will be taken,
18203 there can be extra stuff in the string.
18204 If no number is found, the return value is 0."
18205 (cond
18206 ((integerp s) s)
18207 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18208 (+ (* (string-to-number (match-string 1 s)) 60)
18209 (string-to-number (match-string 2 s))))
18210 ((string-match "\\([0-9]+\\)" s)
18211 (string-to-number (match-string 1 s)))
18212 (t 0)))
18214 (defcustom org-image-actual-width t
18215 "Should we use the actual width of images when inlining them?
18217 When set to `t', always use the image width.
18219 When set to a number, use imagemagick (when available) to set
18220 the image's width to this value.
18222 When set to a number in a list, try to get the width from any
18223 #+ATTR.* keyword if it matches a width specification like
18225 #+ATTR_HTML: :width 300px
18227 and fall back on that number if none is found.
18229 When set to nil, try to get the width from an #+ATTR.* keyword
18230 and fall back on the original width if none is found.
18232 This requires Emacs >= 24.1, build with imagemagick support."
18233 :group 'org-appearance
18234 :version "24.4"
18235 :package-version '(Org . "8.0")
18236 :type '(choice
18237 (const :tag "Use the image width" t)
18238 (integer :tag "Use a number of pixels")
18239 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18240 (const :tag "Use #+ATTR* or don't resize" nil)))
18242 (defcustom org-agenda-inhibit-startup nil
18243 "Inhibit startup when preparing agenda buffers.
18244 When this variable is `t', the initialization of the Org agenda
18245 buffers is inhibited: e.g. the visibility state is not set, the
18246 tables are not re-aligned, etc."
18247 :type 'boolean
18248 :version "24.3"
18249 :group 'org-agenda)
18251 (define-obsolete-variable-alias
18252 'org-agenda-ignore-drawer-properties
18253 'org-agenda-ignore-properties "25.1")
18255 (defcustom org-agenda-ignore-properties nil
18256 "Avoid updating text properties when building the agenda.
18257 Properties are used to prepare buffers for effort estimates,
18258 appointments, statistics and subtree-local categories.
18259 If you don't use these in the agenda, you can add them to this
18260 list and agenda building will be a bit faster.
18261 The value is a list, with zero or more of the symbols `effort', `appt',
18262 `stats' or `category'."
18263 :type '(set :greedy t
18264 (const effort)
18265 (const appt)
18266 (const stats)
18267 (const category))
18268 :version "25.1"
18269 :package-version '(Org . "8.3")
18270 :group 'org-agenda)
18272 (defun org-duration-string-to-minutes (s &optional output-to-string)
18273 "Convert a duration string S to minutes.
18275 A bare number is interpreted as minutes, modifiers can be set by
18276 customizing `org-effort-durations' (which see).
18278 Entries containing a colon are interpreted as H:MM by
18279 `org-hh:mm-string-to-minutes'."
18280 (let ((result 0)
18281 (re (concat "\\([0-9.]+\\) *\\("
18282 (regexp-opt (mapcar 'car org-effort-durations))
18283 "\\)")))
18284 (while (string-match re s)
18285 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18286 (string-to-number (match-string 1 s))))
18287 (setq s (replace-match "" nil t s)))
18288 (setq result (floor result))
18289 (incf result (org-hh:mm-string-to-minutes s))
18290 (if output-to-string (number-to-string result) result)))
18292 ;;;; Files
18294 (defun org-save-all-org-buffers ()
18295 "Save all Org-mode buffers without user confirmation."
18296 (interactive)
18297 (message "Saving all Org-mode buffers...")
18298 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18299 (when (featurep 'org-id) (org-id-locations-save))
18300 (message "Saving all Org-mode buffers... done"))
18302 (defun org-revert-all-org-buffers ()
18303 "Revert all Org-mode buffers.
18304 Prompt for confirmation when there are unsaved changes.
18305 Be sure you know what you are doing before letting this function
18306 overwrite your changes.
18308 This function is useful in a setup where one tracks org files
18309 with a version control system, to revert on one machine after pulling
18310 changes from another. I believe the procedure must be like this:
18312 1. M-x org-save-all-org-buffers
18313 2. Pull changes from the other machine, resolve conflicts
18314 3. M-x org-revert-all-org-buffers"
18315 (interactive)
18316 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18317 (user-error "Abort"))
18318 (save-excursion
18319 (save-window-excursion
18320 (mapc
18321 (lambda (b)
18322 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18323 (with-current-buffer b buffer-file-name))
18324 (org-pop-to-buffer-same-window b)
18325 (revert-buffer t 'no-confirm)))
18326 (buffer-list))
18327 (when (and (featurep 'org-id) org-id-track-globally)
18328 (org-id-locations-load)))))
18330 ;;;; Agenda files
18332 ;;;###autoload
18333 (defun org-switchb (&optional arg)
18334 "Switch between Org buffers.
18335 With one prefix argument, restrict available buffers to files.
18336 With two prefix arguments, restrict available buffers to agenda files.
18338 Defaults to `iswitchb' for buffer name completion.
18339 Set `org-completion-use-ido' to make it use ido instead."
18340 (interactive "P")
18341 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18342 ((equal arg '(16)) (org-buffer-list 'agenda))
18343 (t (org-buffer-list))))
18344 (org-completion-use-iswitchb org-completion-use-iswitchb)
18345 (org-completion-use-ido org-completion-use-ido))
18346 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18347 (setq org-completion-use-iswitchb t))
18348 (org-pop-to-buffer-same-window
18349 (org-icompleting-read "Org buffer: "
18350 (mapcar 'list (mapcar 'buffer-name blist))
18351 nil t))))
18353 ;;; Define some older names previously used for this functionality
18354 ;;;###autoload
18355 (defalias 'org-ido-switchb 'org-switchb)
18356 ;;;###autoload
18357 (defalias 'org-iswitchb 'org-switchb)
18359 (defun org-buffer-list (&optional predicate exclude-tmp)
18360 "Return a list of Org buffers.
18361 PREDICATE can be `export', `files' or `agenda'.
18363 export restrict the list to Export buffers.
18364 files restrict the list to buffers visiting Org files.
18365 agenda restrict the list to buffers visiting agenda files.
18367 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18368 (let* ((bfn nil)
18369 (agenda-files (and (eq predicate 'agenda)
18370 (mapcar 'file-truename (org-agenda-files t))))
18371 (filter
18372 (cond
18373 ((eq predicate 'files)
18374 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18375 ((eq predicate 'export)
18376 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18377 ((eq predicate 'agenda)
18378 (lambda (b)
18379 (with-current-buffer b
18380 (and (derived-mode-p 'org-mode)
18381 (setq bfn (buffer-file-name b))
18382 (member (file-truename bfn) agenda-files)))))
18383 (t (lambda (b) (with-current-buffer b
18384 (or (derived-mode-p 'org-mode)
18385 (string-match "\*Org .*Export"
18386 (buffer-name b)))))))))
18387 (delq nil
18388 (mapcar
18389 (lambda(b)
18390 (if (and (funcall filter b)
18391 (or (not exclude-tmp)
18392 (not (string-match "tmp" (buffer-name b)))))
18394 nil))
18395 (buffer-list)))))
18397 (defun org-agenda-files (&optional unrestricted archives)
18398 "Get the list of agenda files.
18399 Optional UNRESTRICTED means return the full list even if a restriction
18400 is currently in place.
18401 When ARCHIVES is t, include all archive files that are really being
18402 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18403 `org-agenda-archives-mode' is t."
18404 (let ((files
18405 (cond
18406 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18407 ((stringp org-agenda-files) (org-read-agenda-file-list))
18408 ((listp org-agenda-files) org-agenda-files)
18409 (t (error "Invalid value of `org-agenda-files'")))))
18410 (setq files (apply 'append
18411 (mapcar (lambda (f)
18412 (if (file-directory-p f)
18413 (directory-files
18414 f t org-agenda-file-regexp)
18415 (list f)))
18416 files)))
18417 (when org-agenda-skip-unavailable-files
18418 (setq files (delq nil
18419 (mapcar (function
18420 (lambda (file)
18421 (and (file-readable-p file) file)))
18422 files))))
18423 (when (or (eq archives t)
18424 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18425 (setq files (org-add-archive-files files)))
18426 files))
18428 (defun org-agenda-file-p (&optional file)
18429 "Return non-nil, if FILE is an agenda file.
18430 If FILE is omitted, use the file associated with the current
18431 buffer."
18432 (let ((fname (or file (buffer-file-name))))
18433 (and fname
18434 (member (file-truename fname)
18435 (mapcar #'file-truename (org-agenda-files t))))))
18437 (defun org-edit-agenda-file-list ()
18438 "Edit the list of agenda files.
18439 Depending on setup, this either uses customize to edit the variable
18440 `org-agenda-files', or it visits the file that is holding the list. In the
18441 latter case, the buffer is set up in a way that saving it automatically kills
18442 the buffer and restores the previous window configuration."
18443 (interactive)
18444 (if (stringp org-agenda-files)
18445 (let ((cw (current-window-configuration)))
18446 (find-file org-agenda-files)
18447 (org-set-local 'org-window-configuration cw)
18448 (org-add-hook 'after-save-hook
18449 (lambda ()
18450 (set-window-configuration
18451 (prog1 org-window-configuration
18452 (kill-buffer (current-buffer))))
18453 (org-install-agenda-files-menu)
18454 (message "New agenda file list installed"))
18455 nil 'local)
18456 (message "%s" (substitute-command-keys
18457 "Edit list and finish with \\[save-buffer]")))
18458 (customize-variable 'org-agenda-files)))
18460 (defun org-store-new-agenda-file-list (list)
18461 "Set new value for the agenda file list and save it correctly."
18462 (if (stringp org-agenda-files)
18463 (let ((fe (org-read-agenda-file-list t)) b u)
18464 (while (setq b (find-buffer-visiting org-agenda-files))
18465 (kill-buffer b))
18466 (with-temp-file org-agenda-files
18467 (insert
18468 (mapconcat
18469 (lambda (f) ;; Keep un-expanded entries.
18470 (if (setq u (assoc f fe))
18471 (cdr u)
18473 list "\n")
18474 "\n")))
18475 (let ((org-mode-hook nil) (org-inhibit-startup t)
18476 (org-insert-mode-line-in-empty-file nil))
18477 (setq org-agenda-files list)
18478 (customize-save-variable 'org-agenda-files org-agenda-files))))
18480 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18481 "Read the list of agenda files from a file.
18482 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18483 filenames, used by `org-store-new-agenda-file-list' to write back
18484 un-expanded file names."
18485 (when (file-directory-p org-agenda-files)
18486 (error "`org-agenda-files' cannot be a single directory"))
18487 (when (stringp org-agenda-files)
18488 (with-temp-buffer
18489 (insert-file-contents org-agenda-files)
18490 (mapcar
18491 (lambda (f)
18492 (let ((e (expand-file-name (substitute-in-file-name f)
18493 org-directory)))
18494 (if pair-with-expansion
18495 (cons e f)
18496 e)))
18497 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18499 ;;;###autoload
18500 (defun org-cycle-agenda-files ()
18501 "Cycle through the files in `org-agenda-files'.
18502 If the current buffer visits an agenda file, find the next one in the list.
18503 If the current buffer does not, find the first agenda file."
18504 (interactive)
18505 (let* ((fs (org-agenda-files t))
18506 (files (append fs (list (car fs))))
18507 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18508 file)
18509 (unless files (user-error "No agenda files"))
18510 (catch 'exit
18511 (while (setq file (pop files))
18512 (if (equal (file-truename file) tcf)
18513 (when (car files)
18514 (find-file (car files))
18515 (throw 'exit t))))
18516 (find-file (car fs)))
18517 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18519 (defun org-agenda-file-to-front (&optional to-end)
18520 "Move/add the current file to the top of the agenda file list.
18521 If the file is not present in the list, it is added to the front. If it is
18522 present, it is moved there. With optional argument TO-END, add/move to the
18523 end of the list."
18524 (interactive "P")
18525 (let ((org-agenda-skip-unavailable-files nil)
18526 (file-alist (mapcar (lambda (x)
18527 (cons (file-truename x) x))
18528 (org-agenda-files t)))
18529 (ctf (file-truename
18530 (or buffer-file-name
18531 (user-error "Please save the current buffer to a file"))))
18532 x had)
18533 (setq x (assoc ctf file-alist) had x)
18535 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18536 (if to-end
18537 (setq file-alist (append (delq x file-alist) (list x)))
18538 (setq file-alist (cons x (delq x file-alist))))
18539 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18540 (org-install-agenda-files-menu)
18541 (message "File %s to %s of agenda file list"
18542 (if had "moved" "added") (if to-end "end" "front"))))
18544 (defun org-remove-file (&optional file)
18545 "Remove current file from the list of files in variable `org-agenda-files'.
18546 These are the files which are being checked for agenda entries.
18547 Optional argument FILE means use this file instead of the current."
18548 (interactive)
18549 (let* ((org-agenda-skip-unavailable-files nil)
18550 (file (or file buffer-file-name
18551 (user-error "Current buffer does not visit a file")))
18552 (true-file (file-truename file))
18553 (afile (abbreviate-file-name file))
18554 (files (delq nil (mapcar
18555 (lambda (x)
18556 (if (equal true-file
18557 (file-truename x))
18558 nil x))
18559 (org-agenda-files t)))))
18560 (if (not (= (length files) (length (org-agenda-files t))))
18561 (progn
18562 (org-store-new-agenda-file-list files)
18563 (org-install-agenda-files-menu)
18564 (message "Removed from Org Agenda list: %s" afile))
18565 (message "File was not in list: %s (not removed)" afile))))
18567 (defun org-file-menu-entry (file)
18568 (vector file (list 'find-file file) t))
18570 (defun org-check-agenda-file (file)
18571 "Make sure FILE exists. If not, ask user what to do."
18572 (when (not (file-exists-p file))
18573 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18574 (abbreviate-file-name file))
18575 (let ((r (downcase (read-char-exclusive))))
18576 (cond
18577 ((equal r ?r)
18578 (org-remove-file file)
18579 (throw 'nextfile t))
18580 (t (user-error "Abort"))))))
18582 (defun org-get-agenda-file-buffer (file)
18583 "Get an agenda buffer visiting FILE.
18584 If the buffer needs to be created, add it to the list of buffers
18585 which might be released later."
18586 (let ((buf (org-find-base-buffer-visiting file)))
18587 (if buf
18588 buf ; just return it
18589 ;; Make a new buffer and remember it
18590 (setq buf (find-file-noselect file))
18591 (if buf (push buf org-agenda-new-buffers))
18592 buf)))
18594 (defun org-release-buffers (blist)
18595 "Release all buffers in list, asking the user for confirmation when needed.
18596 When a buffer is unmodified, it is just killed. When modified, it is saved
18597 \(if the user agrees) and then killed."
18598 (let (buf file)
18599 (while (setq buf (pop blist))
18600 (setq file (buffer-file-name buf))
18601 (when (and (buffer-modified-p buf)
18602 file
18603 (y-or-n-p (format "Save file %s? " file)))
18604 (with-current-buffer buf (save-buffer)))
18605 (kill-buffer buf))))
18607 (defun org-agenda-prepare-buffers (files)
18608 "Create buffers for all agenda files, protect archived trees and comments."
18609 (interactive)
18610 (let ((pa '(:org-archived t))
18611 (pc '(:org-comment t))
18612 (pall '(:org-archived t :org-comment t))
18613 (inhibit-read-only t)
18614 (org-inhibit-startup org-agenda-inhibit-startup)
18615 (rea (concat ":" org-archive-tag ":"))
18616 file re pos)
18617 (setq org-tag-alist-for-agenda nil
18618 org-tag-groups-alist-for-agenda nil)
18619 (save-excursion
18620 (save-restriction
18621 (while (setq file (pop files))
18622 (catch 'nextfile
18623 (if (bufferp file)
18624 (set-buffer file)
18625 (org-check-agenda-file file)
18626 (set-buffer (org-get-agenda-file-buffer file)))
18627 (widen)
18628 (org-set-regexps-and-options 'tags-only)
18629 (setq pos (point))
18630 (or (memq 'category org-agenda-ignore-properties)
18631 (org-refresh-category-properties))
18632 (or (memq 'stats org-agenda-ignore-properties)
18633 (org-refresh-stats-properties))
18634 (or (memq 'effort org-agenda-ignore-properties)
18635 (org-refresh-effort-properties))
18636 (or (memq 'appt org-agenda-ignore-properties)
18637 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18638 (setq org-todo-keywords-for-agenda
18639 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18640 (setq org-done-keywords-for-agenda
18641 (append org-done-keywords-for-agenda org-done-keywords))
18642 (setq org-todo-keyword-alist-for-agenda
18643 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18644 (setq org-tag-alist-for-agenda
18645 (org-uniquify
18646 (append org-tag-alist-for-agenda
18647 org-tag-alist
18648 org-tag-persistent-alist)))
18649 (if org-group-tags
18650 (setq org-tag-groups-alist-for-agenda
18651 (org-uniquify-alist
18652 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18653 (org-with-silent-modifications
18654 (save-excursion
18655 (remove-text-properties (point-min) (point-max) pall)
18656 (when org-agenda-skip-archived-trees
18657 (goto-char (point-min))
18658 (while (re-search-forward rea nil t)
18659 (if (org-at-heading-p t)
18660 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18661 (goto-char (point-min))
18662 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18663 (while (re-search-forward re nil t)
18664 (when (save-match-data (org-in-commented-heading-p t))
18665 (add-text-properties
18666 (match-beginning 0) (org-end-of-subtree t) pc)))))
18667 (goto-char pos)))))
18668 (setq org-todo-keywords-for-agenda
18669 (org-uniquify org-todo-keywords-for-agenda))
18670 (setq org-todo-keyword-alist-for-agenda
18671 (org-uniquify org-todo-keyword-alist-for-agenda))))
18674 ;;;; CDLaTeX minor mode
18676 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18677 "Keymap for the minor `org-cdlatex-mode'.")
18679 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18680 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18681 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18682 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18683 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18685 (defvar org-cdlatex-texmathp-advice-is-done nil
18686 "Flag remembering if we have applied the advice to texmathp already.")
18688 (define-minor-mode org-cdlatex-mode
18689 "Toggle the minor `org-cdlatex-mode'.
18690 This mode supports entering LaTeX environment and math in LaTeX fragments
18691 in Org-mode.
18692 \\{org-cdlatex-mode-map}"
18693 nil " OCDL" nil
18694 (when org-cdlatex-mode
18695 (require 'cdlatex)
18696 (run-hooks 'cdlatex-mode-hook)
18697 (cdlatex-compute-tables))
18698 (unless org-cdlatex-texmathp-advice-is-done
18699 (setq org-cdlatex-texmathp-advice-is-done t)
18700 (defadvice texmathp (around org-math-always-on activate)
18701 "Always return t in org-mode buffers.
18702 This is because we want to insert math symbols without dollars even outside
18703 the LaTeX math segments. If Orgmode thinks that point is actually inside
18704 an embedded LaTeX fragment, let texmathp do its job.
18705 \\[org-cdlatex-mode-map]"
18706 (interactive)
18707 (let (p)
18708 (cond
18709 ((not (derived-mode-p 'org-mode)) ad-do-it)
18710 ((eq this-command 'cdlatex-math-symbol)
18711 (setq ad-return-value t
18712 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18714 (let ((p (org-inside-LaTeX-fragment-p)))
18715 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18716 (setq ad-return-value t
18717 texmathp-why '("Org-mode embedded math" . 0))
18718 (if p ad-do-it)))))))))
18720 (defun turn-on-org-cdlatex ()
18721 "Unconditionally turn on `org-cdlatex-mode'."
18722 (org-cdlatex-mode 1))
18724 (defun org-try-cdlatex-tab ()
18725 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18726 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18727 - inside a LaTeX fragment, or
18728 - after the first word in a line, where an abbreviation expansion could
18729 insert a LaTeX environment."
18730 (when org-cdlatex-mode
18731 (cond
18732 ;; Before any word on the line: No expansion possible.
18733 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18734 ;; Just after first word on the line: Expand it. Make sure it
18735 ;; cannot happen on headlines, though.
18736 ((save-excursion
18737 (skip-chars-backward "a-zA-Z0-9*")
18738 (skip-chars-backward " \t")
18739 (and (bolp) (not (org-at-heading-p))))
18740 (cdlatex-tab) t)
18741 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18743 (defun org-cdlatex-underscore-caret (&optional arg)
18744 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18745 Revert to the normal definition outside of these fragments."
18746 (interactive "P")
18747 (if (org-inside-LaTeX-fragment-p)
18748 (call-interactively 'cdlatex-sub-superscript)
18749 (let (org-cdlatex-mode)
18750 (call-interactively (key-binding (vector last-input-event))))))
18752 (defun org-cdlatex-math-modify (&optional arg)
18753 "Execute `cdlatex-math-modify' in LaTeX fragments.
18754 Revert to the normal definition outside of these fragments."
18755 (interactive "P")
18756 (if (org-inside-LaTeX-fragment-p)
18757 (call-interactively 'cdlatex-math-modify)
18758 (let (org-cdlatex-mode)
18759 (call-interactively (key-binding (vector last-input-event))))))
18761 (defun org-cdlatex-environment-indent (&optional environment item)
18762 "Execute `cdlatex-environment' and indent the inserted environment.
18764 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18766 The inserted environment is indented to current indentation
18767 unless point is at the beginning of the line, in which the
18768 environment remains unintended."
18769 (interactive)
18770 ;; cdlatex-environment always return nil. Therefore, capture output
18771 ;; first and determine if an environment was selected.
18772 (let* ((beg (point-marker))
18773 (end (copy-marker (point) t))
18774 (inserted (progn
18775 (ignore-errors (cdlatex-environment environment item))
18776 (< beg end)))
18777 ;; Figure out how many lines to move forward after the
18778 ;; environment has been inserted.
18779 (lines (when inserted
18780 (save-excursion
18781 (- (loop while (< beg (point))
18782 with x = 0
18783 do (forward-line -1)
18784 (incf x)
18785 finally return x)
18786 (if (progn (goto-char beg)
18787 (and (progn (skip-chars-forward " \t") (eolp))
18788 (progn (skip-chars-backward " \t") (bolp))))
18789 1 0)))))
18790 (env (org-trim (delete-and-extract-region beg end))))
18791 (when inserted
18792 ;; Get indentation of next line unless at column 0.
18793 (let ((ind (if (bolp) 0
18794 (save-excursion
18795 (org-return-indent)
18796 (prog1 (org-get-indentation)
18797 (when (progn (skip-chars-forward " \t") (eolp))
18798 (delete-region beg (point)))))))
18799 (bol (progn (skip-chars-backward " \t") (bolp))))
18800 ;; Insert a newline before environment unless at column zero
18801 ;; to "escape" the current line. Insert a newline if
18802 ;; something is one the same line as \end{ENVIRONMENT}.
18803 (insert
18804 (concat (unless bol "\n") env
18805 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18806 (unless (zerop ind)
18807 (save-excursion
18808 (goto-char beg)
18809 (while (< (point) end)
18810 (unless (eolp) (org-indent-line-to ind))
18811 (forward-line))))
18812 (goto-char beg)
18813 (forward-line lines)
18814 (org-indent-line-to ind)))
18815 (set-marker beg nil)
18816 (set-marker end nil)))
18819 ;;;; LaTeX fragments
18821 (defun org-inside-LaTeX-fragment-p ()
18822 "Test if point is inside a LaTeX fragment.
18823 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18824 sequence appearing also before point.
18825 Even though the matchers for math are configurable, this function assumes
18826 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18827 delimiters are skipped when they have been removed by customization.
18828 The return value is nil, or a cons cell with the delimiter and the
18829 position of this delimiter.
18831 This function does a reasonably good job, but can locally be fooled by
18832 for example currency specifications. For example it will assume being in
18833 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18834 fragments that are properly closed, but during editing, we have to live
18835 with the uncertainty caused by missing closing delimiters. This function
18836 looks only before point, not after."
18837 (catch 'exit
18838 (let ((pos (point))
18839 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18840 (lim (progn
18841 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18842 (point)))
18843 dd-on str (start 0) m re)
18844 (goto-char pos)
18845 (when dodollar
18846 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18847 re (nth 1 (assoc "$" org-latex-regexps)))
18848 (while (string-match re str start)
18849 (cond
18850 ((= (match-end 0) (length str))
18851 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18852 ((= (match-end 0) (- (length str) 5))
18853 (throw 'exit nil))
18854 (t (setq start (match-end 0))))))
18855 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18856 (goto-char pos)
18857 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18858 (and (match-beginning 2) (throw 'exit nil))
18859 ;; count $$
18860 (while (re-search-backward "\\$\\$" lim t)
18861 (setq dd-on (not dd-on)))
18862 (goto-char pos)
18863 (if dd-on (cons "$$" m))))))
18865 (defun org-inside-latex-macro-p ()
18866 "Is point inside a LaTeX macro or its arguments?"
18867 (save-match-data
18868 (org-in-regexp
18869 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18871 (defvar org-latex-fragment-image-overlays nil
18872 "List of overlays carrying the images of latex fragments.")
18873 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18875 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18876 "Remove all overlays with LaTeX fragment images in current buffer.
18877 When optional arguments BEG and END are non-nil, remove all
18878 overlays between them instead. Return t when some overlays were
18879 removed, nil otherwise."
18880 (let (removedp)
18881 (setq org-latex-fragment-image-overlays
18882 (let ((beg (or beg (point-min)))
18883 (end (or end (point-max))))
18884 (org-remove-if
18885 (lambda (o)
18886 (and (>= (overlay-start o) beg)
18887 (<= (overlay-end o) end)
18888 (progn (delete-overlay o)
18889 (or removedp (setq removedp t)))))
18890 org-latex-fragment-image-overlays)))
18891 removedp))
18893 (define-obsolete-function-alias
18894 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18895 (defun org-toggle-latex-fragment (&optional arg)
18896 "Preview the LaTeX fragment at point, or all locally or globally.
18898 If the cursor is on a LaTeX fragment, create the image and overlay
18899 it over the source code, if there is none. Remove it otherwise.
18900 If there is no fragment at point, display all fragments in the
18901 current section.
18903 With prefix ARG, preview or clear image for all fragments in the
18904 current subtree or in the whole buffer when used before the first
18905 headline. With a double prefix ARG \\[universal-argument] \
18906 \\[universal-argument] preview or clear images
18907 for all fragments in the buffer."
18908 (interactive "P")
18909 (unless (buffer-file-name (buffer-base-buffer))
18910 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18911 (when (display-graphic-p)
18912 (catch 'exit
18913 (save-excursion
18914 (let ((window-start (window-start)) msg)
18915 (save-restriction
18916 (cond
18917 ((or (equal arg '(16))
18918 (and (equal arg '(4))
18919 (org-with-limited-levels (org-before-first-heading-p))))
18920 (if (org-remove-latex-fragment-image-overlays)
18921 (progn (message "LaTeX fragments images removed from buffer")
18922 (throw 'exit nil))
18923 (setq msg "Creating images for buffer...")))
18924 ((equal arg '(4))
18925 (org-with-limited-levels (org-back-to-heading t))
18926 (let ((beg (point))
18927 (end (progn (org-end-of-subtree t) (point))))
18928 (if (org-remove-latex-fragment-image-overlays beg end)
18929 (progn
18930 (message "LaTeX fragment images removed from subtree")
18931 (throw 'exit nil))
18932 (setq msg "Creating images for subtree...")
18933 (narrow-to-region beg end))))
18934 ((let ((datum (org-element-context)))
18935 (when (memq (org-element-type datum)
18936 '(latex-environment latex-fragment))
18937 (let* ((beg (org-element-property :begin datum))
18938 (end (org-element-property :end datum)))
18939 (if (org-remove-latex-fragment-image-overlays beg end)
18940 (progn (message "LaTeX fragment image removed")
18941 (throw 'exit nil))
18942 (narrow-to-region beg end)
18943 (setq msg "Creating image..."))))))
18945 (org-with-limited-levels
18946 (let ((beg (if (org-at-heading-p) (line-beginning-position)
18947 (outline-previous-heading)
18948 (point)))
18949 (end (progn (outline-next-heading) (point))))
18950 (if (org-remove-latex-fragment-image-overlays beg end)
18951 (progn
18952 (message "LaTeX fragment images removed from section")
18953 (throw 'exit nil))
18954 (setq msg "Creating images for section...")
18955 (narrow-to-region beg end))))))
18956 (let ((file (buffer-file-name (buffer-base-buffer))))
18957 (org-format-latex
18958 (concat org-latex-preview-ltxpng-directory
18959 (file-name-sans-extension (file-name-nondirectory file)))
18960 ;; Emacs cannot overlay images from remote hosts.
18961 ;; Create it in `temporary-file-directory' instead.
18962 (if (file-remote-p file) temporary-file-directory
18963 default-directory)
18964 'overlays msg 'forbuffer
18965 org-latex-create-formula-image-program)))
18966 ;; Work around a bug that doesn't restore window's start
18967 ;; when widening back the buffer.
18968 (set-window-start nil window-start)
18969 (message (concat msg "done")))))))
18971 (defun org-format-latex
18972 (prefix &optional dir overlays msg forbuffer processing-type)
18973 "Replace LaTeX fragments with links to an image, and produce images.
18975 When optional argument OVERLAYS is non-nil, display the image on
18976 top of the fragment instead of replacing it.
18978 PROCESSING-TYPE is the conversion method to use, as a symbol.
18980 Some of the options can be changed using the variable
18981 `org-format-latex-options', which see."
18982 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18983 (unless (eq processing-type 'verbatim)
18984 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18985 (cnt 0)
18986 checkdir-flag)
18987 (goto-char (point-min))
18988 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
18989 (when (and overlays (memq processing-type '(dvipng imagemagick)))
18990 (overlay-recenter (point-max)))
18991 (while (re-search-forward math-regexp nil t)
18992 (unless (and overlays
18993 (eq (get-char-property (point) 'org-overlay-type)
18994 'org-latex-overlay))
18995 (let* ((context (org-element-context))
18996 (type (org-element-type context)))
18997 (when (memq type '(latex-environment latex-fragment))
18998 (let ((block-type (eq type 'latex-environment))
18999 (value (org-element-property :value context))
19000 (beg (org-element-property :begin context))
19001 (end (save-excursion
19002 (goto-char (org-element-property :end context))
19003 (skip-chars-backward " \r\t\n")
19004 (point))))
19005 (case processing-type
19006 (mathjax
19007 ;; Prepare for MathJax processing.
19008 (if (eq (char-after beg) ?$)
19009 (save-excursion
19010 (delete-region beg end)
19011 (insert "\\(" (substring value 1 -1) "\\)"))
19012 (goto-char end)))
19013 ((dvipng imagemagick)
19014 ;; Process to an image.
19015 (incf cnt)
19016 (goto-char beg)
19017 (let* ((face (face-at-point))
19018 ;; Get the colors from the face at point.
19020 (let ((color (plist-get org-format-latex-options
19021 :foreground)))
19022 (if (and forbuffer (eq color 'auto))
19023 (face-attribute face :foreground nil 'default)
19024 color)))
19026 (let ((color (plist-get org-format-latex-options
19027 :background)))
19028 (if (and forbuffer (eq color 'auto))
19029 (face-attribute face :background nil 'default)
19030 color)))
19031 (hash (sha1 (prin1-to-string
19032 (list org-format-latex-header
19033 org-latex-default-packages-alist
19034 org-latex-packages-alist
19035 org-format-latex-options
19036 forbuffer value fg bg))))
19037 (absprefix (expand-file-name prefix dir))
19038 (linkfile (format "%s_%s.png" prefix hash))
19039 (movefile (format "%s_%s.png" absprefix hash))
19040 (sep (and block-type "\n\n"))
19041 (link (concat sep "[[file:" linkfile "]]" sep))
19042 (options
19043 (org-combine-plists
19044 org-format-latex-options
19045 `(:foreground ,fg :background ,bg))))
19046 (when msg (message msg cnt))
19047 (unless checkdir-flag ; Ensure the directory exists.
19048 (setq checkdir-flag t)
19049 (let ((todir (file-name-directory absprefix)))
19050 (unless (file-directory-p todir)
19051 (make-directory todir t))))
19052 (unless (file-exists-p movefile)
19053 (org-create-formula-image
19054 value movefile options forbuffer processing-type))
19055 (if overlays
19056 (progn
19057 (dolist (o (overlays-in beg end))
19058 (when (eq (overlay-get o 'org-overlay-type)
19059 'org-latex-overlay)
19060 (delete-overlay o)))
19061 (let ((ov (make-overlay beg end)))
19062 (overlay-put ov
19063 'org-overlay-type
19064 'org-latex-overlay)
19065 (overlay-put ov 'evaporate t)
19066 (if (featurep 'xemacs)
19067 (progn
19068 (overlay-put ov 'invisible t)
19069 (overlay-put
19070 ov 'end-glyph
19071 (make-glyph
19072 (vector 'png :file movefile))))
19073 (overlay-put
19074 ov 'display
19075 (list 'image
19076 :type 'png
19077 :file movefile
19078 :ascent 'center)))
19079 (push ov org-latex-fragment-image-overlays))
19080 (goto-char end))
19081 (delete-region beg end)
19082 (insert
19083 (org-add-props link
19084 (list 'org-latex-src
19085 (replace-regexp-in-string "\"" "" value)
19086 'org-latex-src-embed-type
19087 (if block-type 'paragraph 'character)))))))
19088 (mathml
19089 ;; Process to MathML.
19090 (unless (org-format-latex-mathml-available-p)
19091 (user-error "LaTeX to MathML converter not configured"))
19092 (incf cnt)
19093 (when msg (message msg cnt))
19094 (goto-char beg)
19095 (delete-region beg end)
19096 (insert (org-format-latex-as-mathml
19097 value block-type prefix dir)))
19098 (otherwise
19099 (error "Unknown conversion type %s for LaTeX fragments"
19100 processing-type)))))))))))
19102 (defun org-create-math-formula (latex-frag &optional mathml-file)
19103 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19104 Use `org-latex-to-mathml-convert-command'. If the conversion is
19105 sucessful, return the portion between \"<math...> </math>\"
19106 elements otherwise return nil. When MATHML-FILE is specified,
19107 write the results in to that file. When invoked as an
19108 interactive command, prompt for LATEX-FRAG, with initial value
19109 set to the current active region and echo the results for user
19110 inspection."
19111 (interactive (list (let ((frag (when (org-region-active-p)
19112 (buffer-substring-no-properties
19113 (region-beginning) (region-end)))))
19114 (read-string "LaTeX Fragment: " frag nil frag))))
19115 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19116 (let* ((tmp-in-file (file-relative-name
19117 (make-temp-name (expand-file-name "ltxmathml-in"))))
19118 (ignore (write-region latex-frag nil tmp-in-file))
19119 (tmp-out-file (file-relative-name
19120 (make-temp-name (expand-file-name "ltxmathml-out"))))
19121 (cmd (format-spec
19122 org-latex-to-mathml-convert-command
19123 `((?j . ,(shell-quote-argument
19124 (expand-file-name org-latex-to-mathml-jar-file)))
19125 (?I . ,(shell-quote-argument tmp-in-file))
19126 (?i . ,latex-frag)
19127 (?o . ,(shell-quote-argument tmp-out-file)))))
19128 mathml shell-command-output)
19129 (when (org-called-interactively-p 'any)
19130 (unless (org-format-latex-mathml-available-p)
19131 (user-error "LaTeX to MathML converter not configured")))
19132 (message "Running %s" cmd)
19133 (setq shell-command-output (shell-command-to-string cmd))
19134 (setq mathml
19135 (when (file-readable-p tmp-out-file)
19136 (with-current-buffer (find-file-noselect tmp-out-file t)
19137 (goto-char (point-min))
19138 (when (re-search-forward
19139 (concat
19140 (regexp-quote
19141 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19142 "[^>]*?>"
19143 "\\(.\\|\n\\)*"
19144 "</math>")
19145 nil t)
19146 (prog1 (match-string 0) (kill-buffer))))))
19147 (cond
19148 (mathml
19149 (setq mathml
19150 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19151 (when mathml-file
19152 (write-region mathml nil mathml-file))
19153 (when (org-called-interactively-p 'any)
19154 (message mathml)))
19155 ((message "LaTeX to MathML conversion failed")
19156 (message shell-command-output)))
19157 (delete-file tmp-in-file)
19158 (when (file-exists-p tmp-out-file)
19159 (delete-file tmp-out-file))
19160 mathml))
19162 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19163 prefix &optional dir)
19164 "Use `org-create-math-formula' but check local cache first."
19165 (let* ((absprefix (expand-file-name prefix dir))
19166 (print-length nil) (print-level nil)
19167 (formula-id (concat
19168 "formula-"
19169 (sha1
19170 (prin1-to-string
19171 (list latex-frag
19172 org-latex-to-mathml-convert-command)))))
19173 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19174 (formula-cache-dir (file-name-directory formula-cache)))
19176 (unless (file-directory-p formula-cache-dir)
19177 (make-directory formula-cache-dir t))
19179 (unless (file-exists-p formula-cache)
19180 (org-create-math-formula latex-frag formula-cache))
19182 (if (file-exists-p formula-cache)
19183 ;; Successful conversion. Return the link to MathML file.
19184 (org-add-props
19185 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19186 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19187 'org-latex-src-embed-type (if latex-frag-type
19188 'paragraph 'character)))
19189 ;; Failed conversion. Return the LaTeX fragment verbatim
19190 latex-frag)))
19192 (defun org-create-formula-image (string tofile options buffer &optional type)
19193 "Create an image from LaTeX source using dvipng or convert.
19194 This function calls either `org-create-formula-image-with-dvipng'
19195 or `org-create-formula-image-with-imagemagick' depending on the
19196 value of `org-latex-create-formula-image-program' or on the value
19197 of the optional TYPE variable.
19199 Note: ultimately these two function should be combined as they
19200 share a good deal of logic."
19201 (org-check-external-command
19202 "latex" "needed to convert LaTeX fragments to images")
19203 (funcall
19204 (case (or type org-latex-create-formula-image-program)
19205 ('dvipng
19206 (org-check-external-command
19207 "dvipng" "needed to convert LaTeX fragments to images")
19208 'org-create-formula-image-with-dvipng)
19209 ('imagemagick
19210 (org-check-external-command
19211 "convert" "you need to install imagemagick")
19212 'org-create-formula-image-with-imagemagick)
19213 (t (error
19214 "Invalid value of `org-latex-create-formula-image-program'")))
19215 string tofile options buffer))
19217 (declare-function org-export-get-backend "ox" (name))
19218 (declare-function org-export--get-global-options "ox" (&optional backend))
19219 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19220 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19221 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19222 (defun org-create-formula--latex-header ()
19223 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19224 (let ((info (org-combine-plists (org-export--get-global-options
19225 (org-export-get-backend 'latex))
19226 (org-export--get-inbuffer-options
19227 (org-export-get-backend 'latex)))))
19228 (org-latex-guess-babel-language
19229 (org-latex-guess-inputenc
19230 (org-splice-latex-header
19231 org-format-latex-header
19232 org-latex-default-packages-alist
19233 org-latex-packages-alist t
19234 (plist-get info :latex-header)))
19235 info)))
19237 (defun org--get-display-dpi ()
19238 "Get the DPI of the display.
19240 Assumes that the display has the same pixel width in the
19241 horizontal and vertical directions."
19242 (if (display-graphic-p)
19243 (round (/ (display-pixel-height)
19244 (/ (display-mm-height) 25.4)))
19245 (error "Attempt to calculate the dpi of a non-graphic display")))
19247 ;; This function borrows from Ganesh Swami's latex2png.el
19248 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19249 "This calls dvipng."
19250 (require 'ox-latex)
19251 (let* ((tmpdir (if (featurep 'xemacs)
19252 (temp-directory)
19253 temporary-file-directory))
19254 (texfilebase (make-temp-name
19255 (expand-file-name "orgtex" tmpdir)))
19256 (texfile (concat texfilebase ".tex"))
19257 (dvifile (concat texfilebase ".dvi"))
19258 (pngfile (concat texfilebase ".png"))
19259 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19260 ;; This assumes that the display has the same pixel width in
19261 ;; the horizontal and vertical directions
19262 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19263 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19264 "Black"))
19265 (bg (or (plist-get options (if buffer :background :html-background))
19266 "Transparent")))
19267 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19268 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19269 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19270 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19271 (let ((latex-header (org-create-formula--latex-header)))
19272 (with-temp-file texfile
19273 (insert latex-header)
19274 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19275 (let ((dir default-directory))
19276 (ignore-errors
19277 (cd tmpdir)
19278 (call-process "latex" nil nil nil texfile))
19279 (cd dir))
19280 (if (not (file-exists-p dvifile))
19281 (progn (message "Failed to create dvi file from %s" texfile) nil)
19282 (ignore-errors
19283 (if (featurep 'xemacs)
19284 (call-process "dvipng" nil nil nil
19285 "-fg" fg "-bg" bg
19286 "-T" "tight"
19287 "-o" pngfile
19288 dvifile)
19289 (call-process "dvipng" nil nil nil
19290 "-fg" fg "-bg" bg
19291 "-D" dpi
19292 ;;"-x" scale "-y" scale
19293 "-T" "tight"
19294 "-o" pngfile
19295 dvifile)))
19296 (if (not (file-exists-p pngfile))
19297 (if org-format-latex-signal-error
19298 (error "Failed to create png file from %s" texfile)
19299 (message "Failed to create png file from %s" texfile)
19300 nil)
19301 ;; Use the requested file name and clean up
19302 (copy-file pngfile tofile 'replace)
19303 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19304 (if (file-exists-p (concat texfilebase e))
19305 (delete-file (concat texfilebase e))))
19306 pngfile))))
19308 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19309 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19310 "This calls convert, which is included into imagemagick."
19311 (require 'ox-latex)
19312 (let* ((tmpdir (if (featurep 'xemacs)
19313 (temp-directory)
19314 temporary-file-directory))
19315 (texfilebase (make-temp-name
19316 (expand-file-name "orgtex" tmpdir)))
19317 (texfile (concat texfilebase ".tex"))
19318 (pdffile (concat texfilebase ".pdf"))
19319 (pngfile (concat texfilebase ".png"))
19320 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19321 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19322 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19323 "black"))
19324 (bg (or (plist-get options (if buffer :background :html-background))
19325 "white")))
19326 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19327 (setq fg (org-latex-color-format fg)))
19328 (if (eq bg 'default) (setq bg (org-latex-color :background))
19329 (setq bg (org-latex-color-format
19330 (if (string= bg "Transparent") "white" bg))))
19331 (let ((latex-header (org-create-formula--latex-header)))
19332 (with-temp-file texfile
19333 (insert latex-header)
19334 (insert "\n\\begin{document}\n"
19335 "\\definecolor{fg}{rgb}{" fg "}\n"
19336 "\\definecolor{bg}{rgb}{" bg "}\n"
19337 "\n\\pagecolor{bg}\n"
19338 "\n{\\color{fg}\n"
19339 string
19340 "\n}\n"
19341 "\n\\end{document}\n")))
19342 (org-latex-compile texfile t)
19343 (if (not (file-exists-p pdffile))
19344 (progn (message "Failed to create pdf file from %s" texfile) nil)
19345 (ignore-errors
19346 (if (featurep 'xemacs)
19347 (call-process "convert" nil nil nil
19348 "-density" "96"
19349 "-trim"
19350 "-antialias"
19351 pdffile
19352 "-quality" "100"
19353 ;; "-sharpen" "0x1.0"
19354 pngfile)
19355 (call-process "convert" nil nil nil
19356 "-density" dpi
19357 "-trim"
19358 "-antialias"
19359 pdffile
19360 "-quality" "100"
19361 ;; "-sharpen" "0x1.0"
19362 pngfile)))
19363 (if (not (file-exists-p pngfile))
19364 (if org-format-latex-signal-error
19365 (error "Failed to create png file from %s" texfile)
19366 (message "Failed to create png file from %s" texfile)
19367 nil)
19368 ;; Use the requested file name and clean up
19369 (copy-file pngfile tofile 'replace)
19370 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19371 (if (file-exists-p (concat texfilebase e))
19372 (delete-file (concat texfilebase e))))
19373 pngfile))))
19375 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19376 "Fill a LaTeX header template TPL.
19377 In the template, the following place holders will be recognized:
19379 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19380 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19381 [PACKAGES] \\usepackage statements for PKG
19382 [NO-PACKAGES] do not include PKG
19383 [EXTRA] the string EXTRA
19384 [NO-EXTRA] do not include EXTRA
19386 For backward compatibility, if both the positive and the negative place
19387 holder is missing, the positive one (without the \"NO-\") will be
19388 assumed to be present at the end of the template.
19389 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19390 EXTRA is a string.
19391 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19392 (let (rpl (end ""))
19393 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19394 (setq rpl (if (or (match-end 1) (not def-pkg))
19395 "" (org-latex-packages-to-string def-pkg snippets-p t))
19396 tpl (replace-match rpl t t tpl))
19397 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19399 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19400 (setq rpl (if (or (match-end 1) (not pkg))
19401 "" (org-latex-packages-to-string pkg snippets-p t))
19402 tpl (replace-match rpl t t tpl))
19403 (if pkg (setq end
19404 (concat end "\n"
19405 (org-latex-packages-to-string pkg snippets-p)))))
19407 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19408 (setq rpl (if (or (match-end 1) (not extra))
19409 "" (concat extra "\n"))
19410 tpl (replace-match rpl t t tpl))
19411 (if (and extra (string-match "\\S-" extra))
19412 (setq end (concat end "\n" extra))))
19414 (if (string-match "\\S-" end)
19415 (concat tpl "\n" end)
19416 tpl)))
19418 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19419 "Turn an alist of packages into a string with the \\usepackage macros."
19420 (setq pkg (mapconcat (lambda(p)
19421 (cond
19422 ((stringp p) p)
19423 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19424 (format "%% Package %s omitted" (cadr p)))
19425 ((equal "" (car p))
19426 (format "\\usepackage{%s}" (cadr p)))
19428 (format "\\usepackage[%s]{%s}"
19429 (car p) (cadr p)))))
19431 "\n"))
19432 (if newline (concat pkg "\n") pkg))
19434 (defun org-dvipng-color (attr)
19435 "Return a RGB color specification for dvipng."
19436 (apply 'format "rgb %s %s %s"
19437 (mapcar 'org-normalize-color
19438 (if (featurep 'xemacs)
19439 (color-rgb-components
19440 (face-property 'default
19441 (cond ((eq attr :foreground) 'foreground)
19442 ((eq attr :background) 'background))))
19443 (color-values (face-attribute 'default attr nil))))))
19445 (defun org-dvipng-color-format (color-name)
19446 "Convert COLOR-NAME to a RGB color value for dvipng."
19447 (apply 'format "rgb %s %s %s"
19448 (mapcar 'org-normalize-color
19449 (color-values color-name))))
19451 (defun org-latex-color (attr)
19452 "Return a RGB color for the LaTeX color package."
19453 (apply 'format "%s,%s,%s"
19454 (mapcar 'org-normalize-color
19455 (if (featurep 'xemacs)
19456 (color-rgb-components
19457 (face-property 'default
19458 (cond ((eq attr :foreground) 'foreground)
19459 ((eq attr :background) 'background))))
19460 (color-values (face-attribute 'default attr nil))))))
19462 (defun org-latex-color-format (color-name)
19463 "Convert COLOR-NAME to a RGB color value."
19464 (apply 'format "%s,%s,%s"
19465 (mapcar 'org-normalize-color
19466 (color-values color-name))))
19468 (defun org-normalize-color (value)
19469 "Return string to be used as color value for an RGB component."
19470 (format "%g" (/ value 65535.0)))
19474 ;; Image display
19476 (defvar org-inline-image-overlays nil)
19477 (make-variable-buffer-local 'org-inline-image-overlays)
19479 (defun org-toggle-inline-images (&optional include-linked)
19480 "Toggle the display of inline images.
19481 INCLUDE-LINKED is passed to `org-display-inline-images'."
19482 (interactive "P")
19483 (if org-inline-image-overlays
19484 (progn
19485 (org-remove-inline-images)
19486 (when (org-called-interactively-p 'interactive)
19487 (message "Inline image display turned off")))
19488 (org-display-inline-images include-linked)
19489 (when (org-called-interactively-p 'interactive)
19490 (message (if org-inline-image-overlays
19491 (format "%d images displayed inline"
19492 (length org-inline-image-overlays))
19493 "No images to display inline")))))
19495 (defun org-redisplay-inline-images ()
19496 "Refresh the display of inline images."
19497 (interactive)
19498 (if (not org-inline-image-overlays)
19499 (org-toggle-inline-images)
19500 (org-toggle-inline-images)
19501 (org-toggle-inline-images)))
19503 (defun org-display-inline-images (&optional include-linked refresh beg end)
19504 "Display inline images.
19506 An inline image is a link which follows either of these
19507 conventions:
19509 1. Its path is a file with an extension matching return value
19510 from `image-file-name-regexp' and it has no contents.
19512 2. Its description consists in a single link of the previous
19513 type.
19515 When optional argument INCLUDE-LINKED is non-nil, also links with
19516 a text description part will be inlined. This can be nice for
19517 a quick look at those images, but it does not reflect what
19518 exported files will look like.
19520 When optional argument REFRESH is non-nil, refresh existing
19521 images between BEG and END. This will create new image displays
19522 only if necessary. BEG and END default to the buffer
19523 boundaries."
19524 (interactive "P")
19525 (when (display-graphic-p)
19526 (unless refresh
19527 (org-remove-inline-images)
19528 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19529 (org-with-wide-buffer
19530 (goto-char (or beg (point-min)))
19531 (let ((case-fold-search t)
19532 (file-extension-re (org-image-file-name-regexp)))
19533 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19534 (let ((link (save-match-data (org-element-context))))
19535 ;; Check if we're at an inline image.
19536 (when (and (equal (org-element-property :type link) "file")
19537 (or include-linked
19538 (not (org-element-property :contents-begin link)))
19539 (let ((parent (org-element-property :parent link)))
19540 (or (not (eq (org-element-type parent) 'link))
19541 (not (cdr (org-element-contents parent)))))
19542 (org-string-match-p file-extension-re
19543 (org-element-property :path link)))
19544 (let ((file (expand-file-name (org-element-property :path link))))
19545 (when (file-exists-p file)
19546 (let ((width
19547 ;; Apply `org-image-actual-width' specifications.
19548 (cond
19549 ((not (image-type-available-p 'imagemagick)) nil)
19550 ((eq org-image-actual-width t) nil)
19551 ((listp org-image-actual-width)
19553 ;; First try to find a width among
19554 ;; attributes associated to the paragraph
19555 ;; containing link.
19556 (let ((paragraph
19557 (let ((e link))
19558 (while (and (setq e (org-element-property
19559 :parent e))
19560 (not (eq (org-element-type e)
19561 'paragraph))))
19562 e)))
19563 (when paragraph
19564 (save-excursion
19565 (goto-char (org-element-property :begin paragraph))
19566 (when
19567 (re-search-forward
19568 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19569 (org-element-property
19570 :post-affiliated paragraph)
19572 (string-to-number (match-string 1))))))
19573 ;; Otherwise, fall-back to provided number.
19574 (car org-image-actual-width)))
19575 ((numberp org-image-actual-width)
19576 org-image-actual-width)))
19577 (old (get-char-property-and-overlay
19578 (org-element-property :begin link)
19579 'org-image-overlay)))
19580 (if (and (car-safe old) refresh)
19581 (image-refresh (overlay-get (cdr old) 'display))
19582 (let ((image (create-image file
19583 (and width 'imagemagick)
19585 :width width)))
19586 (when image
19587 (let* ((link
19588 ;; If inline image is the description
19589 ;; of another link, be sure to
19590 ;; consider the latter as the one to
19591 ;; apply the overlay on.
19592 (let ((parent
19593 (org-element-property :parent link)))
19594 (if (eq (org-element-type parent) 'link)
19595 parent
19596 link)))
19597 (ov (make-overlay
19598 (org-element-property :begin link)
19599 (progn
19600 (goto-char
19601 (org-element-property :end link))
19602 (skip-chars-backward " \t")
19603 (point)))))
19604 (overlay-put ov 'display image)
19605 (overlay-put ov 'face 'default)
19606 (overlay-put ov 'org-image-overlay t)
19607 (overlay-put
19608 ov 'modification-hooks
19609 (list 'org-display-inline-remove-overlay))
19610 (push ov org-inline-image-overlays)))))))))))))))
19612 (define-obsolete-function-alias
19613 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19615 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19616 "Remove inline-display overlay if a corresponding region is modified."
19617 (let ((inhibit-modification-hooks t))
19618 (when (and ov after)
19619 (delete ov org-inline-image-overlays)
19620 (delete-overlay ov))))
19622 (defun org-remove-inline-images ()
19623 "Remove inline display of images."
19624 (interactive)
19625 (mapc 'delete-overlay org-inline-image-overlays)
19626 (setq org-inline-image-overlays nil))
19628 ;;;; Key bindings
19630 ;; Outline functions from `outline-mode-prefix-map'
19631 ;; that can be remapped in Org:
19632 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19633 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19634 (define-key org-mode-map [remap outline-forward-same-level]
19635 'org-forward-heading-same-level)
19636 (define-key org-mode-map [remap outline-backward-same-level]
19637 'org-backward-heading-same-level)
19638 (define-key org-mode-map [remap show-branches]
19639 'org-kill-note-or-show-branches)
19640 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19641 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19642 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19643 (define-key org-mode-map [remap outline-next-visible-heading]
19644 'org-next-visible-heading)
19645 (define-key org-mode-map [remap outline-previous-visible-heading]
19646 'org-previous-visible-heading)
19648 ;; Outline functions from `outline-mode-prefix-map' that can not
19649 ;; be remapped in Org:
19651 ;; - the column "key binding" shows whether the Outline function is still
19652 ;; available in Org mode on the same key that it has been bound to in
19653 ;; Outline mode:
19654 ;; - "overridden": key used for a different functionality in Org mode
19655 ;; - else: key still bound to the same Outline function in Org mode
19657 ;; | Outline function | key binding | Org replacement |
19658 ;; |------------------------------------+-------------+--------------------------|
19659 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19660 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19661 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19662 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19663 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19664 ;; | `show-entry' | overridden | no replacement |
19665 ;; | `show-children' | `C-c C-i' | visibility cycling |
19666 ;; | `show-branches' | `C-c C-k' | still same function |
19667 ;; | `show-subtree' | overridden | visibility cycling |
19668 ;; | `show-all' | overridden | no replacement |
19669 ;; | `hide-subtree' | overridden | visibility cycling |
19670 ;; | `hide-body' | overridden | no replacement |
19671 ;; | `hide-entry' | overridden | visibility cycling |
19672 ;; | `hide-leaves' | overridden | no replacement |
19673 ;; | `hide-sublevels' | overridden | no replacement |
19674 ;; | `hide-other' | overridden | no replacement |
19676 ;; Make `C-c C-x' a prefix key
19677 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19679 ;; TAB key with modifiers
19680 (org-defkey org-mode-map "\C-i" 'org-cycle)
19681 (org-defkey org-mode-map [(tab)] 'org-cycle)
19682 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19683 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19684 ;; The following line is necessary under Suse GNU/Linux
19685 (unless (featurep 'xemacs)
19686 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19687 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19688 (define-key org-mode-map [backtab] 'org-shifttab)
19690 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19691 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19692 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19694 ;; Cursor keys with modifiers
19695 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19696 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19697 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19698 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19700 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19701 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19702 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19703 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19704 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19705 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19707 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19708 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19709 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19710 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19712 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19713 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19714 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19715 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19717 ;; Babel keys
19718 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19719 (mapc (lambda (pair)
19720 (define-key org-babel-map (car pair) (cdr pair)))
19721 org-babel-key-bindings)
19723 ;;; Extra keys for tty access.
19724 ;; We only set them when really needed because otherwise the
19725 ;; menus don't show the simple keys
19727 (when (or org-use-extra-keys
19728 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19729 (not window-system))
19730 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19731 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19732 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19733 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19734 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19735 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19736 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19737 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19738 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19739 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19740 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19741 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19742 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19743 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19744 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19745 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19746 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19747 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19748 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19749 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19750 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19751 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19752 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19753 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19754 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19755 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19756 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19757 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19759 ;; All the other keys
19761 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19762 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19763 (if (boundp 'narrow-map)
19764 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19765 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19766 (if (boundp 'narrow-map)
19767 (org-defkey narrow-map "b" 'org-narrow-to-block)
19768 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19769 (if (boundp 'narrow-map)
19770 (org-defkey narrow-map "e" 'org-narrow-to-element)
19771 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19772 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19773 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19774 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19775 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19776 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19777 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19778 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19779 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19780 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19781 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19782 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19783 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19784 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19785 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19786 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19787 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19788 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19789 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19790 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19791 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19792 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19793 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19794 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19795 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19796 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19797 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19798 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19799 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19800 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19801 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19802 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19803 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19804 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19805 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19806 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19807 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19808 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19809 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19810 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19811 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19812 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19813 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19814 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19815 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19816 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19817 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19818 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19819 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19820 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19821 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19822 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19823 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19824 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19825 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19826 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19827 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19828 (org-defkey org-mode-map "\C-c^" 'org-sort)
19829 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19830 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19831 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19832 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19833 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19834 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19835 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19836 (org-defkey org-mode-map "\C-m" 'org-return)
19837 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19838 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19839 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19840 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19841 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19842 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19843 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19844 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19845 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19846 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19847 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19848 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19849 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19850 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19851 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19852 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19853 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19854 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19855 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19856 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19857 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19858 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19859 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19860 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19861 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19863 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19864 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19865 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19867 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19868 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19869 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19870 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19871 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19872 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19873 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19874 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19875 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19876 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19877 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19878 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19879 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19880 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19881 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19882 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19883 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19884 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19885 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19886 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19887 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19888 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19889 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19891 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19892 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19893 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19894 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19895 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19897 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19899 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19901 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19902 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19904 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19907 (when (featurep 'xemacs)
19908 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19911 (defconst org-speed-commands-default
19913 ("Outline Navigation")
19914 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19915 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19916 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19917 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19918 ("F" . org-next-block)
19919 ("B" . org-previous-block)
19920 ("u" . (org-speed-move-safe 'outline-up-heading))
19921 ("j" . org-goto)
19922 ("g" . (org-refile t))
19923 ("Outline Visibility")
19924 ("c" . org-cycle)
19925 ("C" . org-shifttab)
19926 (" " . org-display-outline-path)
19927 ("s" . org-narrow-to-subtree)
19928 ("=" . org-columns)
19929 ("Outline Structure Editing")
19930 ("U" . org-metaup)
19931 ("D" . org-metadown)
19932 ("r" . org-metaright)
19933 ("l" . org-metaleft)
19934 ("R" . org-shiftmetaright)
19935 ("L" . org-shiftmetaleft)
19936 ("i" . (progn (forward-char 1) (call-interactively
19937 'org-insert-heading-respect-content)))
19938 ("^" . org-sort)
19939 ("w" . org-refile)
19940 ("a" . org-archive-subtree-default-with-confirmation)
19941 ("@" . org-mark-subtree)
19942 ("#" . org-toggle-comment)
19943 ("Clock Commands")
19944 ("I" . org-clock-in)
19945 ("O" . org-clock-out)
19946 ("Meta Data Editing")
19947 ("t" . org-todo)
19948 ("," . (org-priority))
19949 ("0" . (org-priority ?\ ))
19950 ("1" . (org-priority ?A))
19951 ("2" . (org-priority ?B))
19952 ("3" . (org-priority ?C))
19953 (":" . org-set-tags-command)
19954 ("e" . org-set-effort)
19955 ("E" . org-inc-effort)
19956 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19957 (org-entry-put (point) "APPT_WARNTIME" m)))
19958 ("Agenda Views etc")
19959 ("v" . org-agenda)
19960 ("/" . org-sparse-tree)
19961 ("Misc")
19962 ("o" . org-open-at-point)
19963 ("?" . org-speed-command-help)
19964 ("<" . (org-agenda-set-restriction-lock 'subtree))
19965 (">" . (org-agenda-remove-restriction-lock))
19967 "The default speed commands.")
19969 (defun org-print-speed-command (e)
19970 (if (> (length (car e)) 1)
19971 (progn
19972 (princ "\n")
19973 (princ (car e))
19974 (princ "\n")
19975 (princ (make-string (length (car e)) ?-))
19976 (princ "\n"))
19977 (princ (car e))
19978 (princ " ")
19979 (if (symbolp (cdr e))
19980 (princ (symbol-name (cdr e)))
19981 (prin1 (cdr e)))
19982 (princ "\n")))
19984 (defun org-speed-command-help ()
19985 "Show the available speed commands."
19986 (interactive)
19987 (if (not org-use-speed-commands)
19988 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19989 (with-output-to-temp-buffer "*Help*"
19990 (princ "User-defined Speed commands\n===========================\n")
19991 (mapc 'org-print-speed-command org-speed-commands-user)
19992 (princ "\n")
19993 (princ "Built-in Speed commands\n=======================\n")
19994 (mapc 'org-print-speed-command org-speed-commands-default))
19995 (with-current-buffer "*Help*"
19996 (setq truncate-lines t))))
19998 (defun org-speed-move-safe (cmd)
19999 "Execute CMD, but make sure that the cursor always ends up in a headline.
20000 If not, return to the original position and throw an error."
20001 (interactive)
20002 (let ((pos (point)))
20003 (call-interactively cmd)
20004 (unless (and (bolp) (org-at-heading-p))
20005 (goto-char pos)
20006 (error "Boundary reached while executing %s" cmd))))
20008 (defvar org-self-insert-command-undo-counter 0)
20010 (defvar org-table-auto-blank-field) ; defined in org-table.el
20011 (defvar org-speed-command nil)
20013 (define-obsolete-function-alias
20014 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20016 (defun org-speed-command-activate (keys)
20017 "Hook for activating single-letter speed commands.
20018 `org-speed-commands-default' specifies a minimal command set.
20019 Use `org-speed-commands-user' for further customization."
20020 (when (or (and (bolp) (looking-at org-outline-regexp))
20021 (and (functionp org-use-speed-commands)
20022 (funcall org-use-speed-commands)))
20023 (cdr (assoc keys (append org-speed-commands-user
20024 org-speed-commands-default)))))
20026 (define-obsolete-function-alias
20027 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20029 (defun org-babel-speed-command-activate (keys)
20030 "Hook for activating single-letter code block commands."
20031 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20032 (cdr (assoc keys org-babel-key-bindings))))
20034 (defcustom org-speed-command-hook
20035 '(org-speed-command-default-hook org-babel-speed-command-hook)
20036 "Hook for activating speed commands at strategic locations.
20037 Hook functions are called in sequence until a valid handler is
20038 found.
20040 Each hook takes a single argument, a user-pressed command key
20041 which is also a `self-insert-command' from the global map.
20043 Within the hook, examine the cursor position and the command key
20044 and return nil or a valid handler as appropriate. Handler could
20045 be one of an interactive command, a function, or a form.
20047 Set `org-use-speed-commands' to non-nil value to enable this
20048 hook. The default setting is `org-speed-command-activate'."
20049 :group 'org-structure
20050 :version "24.1"
20051 :type 'hook)
20053 (defun org-self-insert-command (N)
20054 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20055 If the cursor is in a table looking at whitespace, the whitespace is
20056 overwritten, and the table is not marked as requiring realignment."
20057 (interactive "p")
20058 (org-check-before-invisible-edit 'insert)
20059 (cond
20060 ((and org-use-speed-commands
20061 (let ((kv (this-command-keys-vector)))
20062 (setq org-speed-command
20063 (run-hook-with-args-until-success
20064 'org-speed-command-hook
20065 (make-string 1 (aref kv (1- (length kv))))))))
20066 (cond
20067 ((commandp org-speed-command)
20068 (setq this-command org-speed-command)
20069 (call-interactively org-speed-command))
20070 ((functionp org-speed-command)
20071 (funcall org-speed-command))
20072 ((and org-speed-command (listp org-speed-command))
20073 (eval org-speed-command))
20074 (t (let (org-use-speed-commands)
20075 (call-interactively 'org-self-insert-command)))))
20076 ((and
20077 (org-table-p)
20078 (progn
20079 ;; check if we blank the field, and if that triggers align
20080 (and (featurep 'org-table) org-table-auto-blank-field
20081 (memq last-command
20082 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20083 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
20084 ;; got extra space, this field does not determine column width
20085 (let (org-table-may-need-update) (org-table-blank-field))
20086 ;; no extra space, this field may determine column width
20087 (org-table-blank-field)))
20089 (eq N 1)
20090 (looking-at "[^|\n]* |"))
20091 (let (org-table-may-need-update)
20092 (goto-char (1- (match-end 0)))
20093 (backward-delete-char 1)
20094 (goto-char (match-beginning 0))
20095 (self-insert-command N)))
20097 (setq org-table-may-need-update t)
20098 (self-insert-command N)
20099 (org-fix-tags-on-the-fly)
20100 (if org-self-insert-cluster-for-undo
20101 (if (not (eq last-command 'org-self-insert-command))
20102 (setq org-self-insert-command-undo-counter 1)
20103 (if (>= org-self-insert-command-undo-counter 20)
20104 (setq org-self-insert-command-undo-counter 1)
20105 (and (> org-self-insert-command-undo-counter 0)
20106 buffer-undo-list (listp buffer-undo-list)
20107 (not (cadr buffer-undo-list)) ; remove nil entry
20108 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20109 (setq org-self-insert-command-undo-counter
20110 (1+ org-self-insert-command-undo-counter))))))))
20112 (defun org-check-before-invisible-edit (kind)
20113 "Check is editing if kind KIND would be dangerous with invisible text around.
20114 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20115 ;; First, try to get out of here as quickly as possible, to reduce overhead
20116 (if (and org-catch-invisible-edits
20117 (or (not (boundp 'visible-mode)) (not visible-mode))
20118 (or (get-char-property (point) 'invisible)
20119 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20120 ;; OK, we need to take a closer look
20121 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20122 (invisible-before-point (if (bobp) nil (get-char-property
20123 (1- (point)) 'invisible)))
20124 (border-and-ok-direction
20126 ;; Check if we are acting predictably before invisible text
20127 (and invisible-at-point (not invisible-before-point)
20128 (memq kind '(insert delete-backward)))
20129 ;; Check if we are acting predictably after invisible text
20130 ;; This works not well, and I have turned it off. It seems
20131 ;; better to always show and stop after invisible text.
20132 ;; (and (not invisible-at-point) invisible-before-point
20133 ;; (memq kind '(insert delete)))
20135 (when (or (memq invisible-at-point '(outline org-hide-block t))
20136 (memq invisible-before-point '(outline org-hide-block t)))
20137 (if (eq org-catch-invisible-edits 'error)
20138 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20139 (if (and org-custom-properties-overlays
20140 (y-or-n-p "Display invisible properties in this buffer? "))
20141 (org-toggle-custom-properties-visibility)
20142 ;; Make the area visible
20143 (save-excursion
20144 (if invisible-before-point
20145 (goto-char (previous-single-char-property-change
20146 (point) 'invisible)))
20147 (show-subtree))
20148 (cond
20149 ((eq org-catch-invisible-edits 'show)
20150 ;; That's it, we do the edit after showing
20151 (message
20152 "Unfolding invisible region around point before editing")
20153 (sit-for 1))
20154 ((and (eq org-catch-invisible-edits 'smart)
20155 border-and-ok-direction)
20156 (message "Unfolding invisible region around point before editing"))
20158 ;; Don't do the edit, make the user repeat it in full visibility
20159 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20161 (defun org-fix-tags-on-the-fly ()
20162 (when (and (equal (char-after (point-at-bol)) ?*)
20163 (org-at-heading-p))
20164 (org-align-tags-here org-tags-column)))
20166 (defun org-delete-backward-char (N)
20167 "Like `delete-backward-char', insert whitespace at field end in tables.
20168 When deleting backwards, in tables this function will insert whitespace in
20169 front of the next \"|\" separator, to keep the table aligned. The table will
20170 still be marked for re-alignment if the field did fill the entire column,
20171 because, in this case the deletion might narrow the column."
20172 (interactive "p")
20173 (save-match-data
20174 (org-check-before-invisible-edit 'delete-backward)
20175 (if (and (org-table-p)
20176 (eq N 1)
20177 (string-match "|" (buffer-substring (point-at-bol) (point)))
20178 (looking-at ".*?|"))
20179 (let ((pos (point))
20180 (noalign (looking-at "[^|\n\r]* |"))
20181 (c org-table-may-need-update))
20182 (backward-delete-char N)
20183 (if (not overwrite-mode)
20184 (progn
20185 (skip-chars-forward "^|")
20186 (insert " ")
20187 (goto-char (1- pos))))
20188 ;; noalign: if there were two spaces at the end, this field
20189 ;; does not determine the width of the column.
20190 (if noalign (setq org-table-may-need-update c)))
20191 (backward-delete-char N)
20192 (org-fix-tags-on-the-fly))))
20194 (defun org-delete-char (N)
20195 "Like `delete-char', but insert whitespace at field end in tables.
20196 When deleting characters, in tables this function will insert whitespace in
20197 front of the next \"|\" separator, to keep the table aligned. The table will
20198 still be marked for re-alignment if the field did fill the entire column,
20199 because, in this case the deletion might narrow the column."
20200 (interactive "p")
20201 (save-match-data
20202 (org-check-before-invisible-edit 'delete)
20203 (if (and (org-table-p)
20204 (not (bolp))
20205 (not (= (char-after) ?|))
20206 (eq N 1))
20207 (if (looking-at ".*?|")
20208 (let ((pos (point))
20209 (noalign (looking-at "[^|\n\r]* |"))
20210 (c org-table-may-need-update))
20211 (replace-match
20212 (concat (substring (match-string 0) 1 -1) " |") nil t)
20213 (goto-char pos)
20214 ;; noalign: if there were two spaces at the end, this field
20215 ;; does not determine the width of the column.
20216 (if noalign (setq org-table-may-need-update c)))
20217 (delete-char N))
20218 (delete-char N)
20219 (org-fix-tags-on-the-fly))))
20221 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20222 (put 'org-self-insert-command 'delete-selection
20223 (lambda ()
20224 (not (run-hook-with-args-until-success
20225 'self-insert-uses-region-functions))))
20226 (put 'orgtbl-self-insert-command 'delete-selection
20227 (lambda ()
20228 (not (run-hook-with-args-until-success
20229 'self-insert-uses-region-functions))))
20230 (put 'org-delete-char 'delete-selection 'supersede)
20231 (put 'org-delete-backward-char 'delete-selection 'supersede)
20232 (put 'org-yank 'delete-selection 'yank)
20234 ;; Make `flyspell-mode' delay after some commands
20235 (put 'org-self-insert-command 'flyspell-delayed t)
20236 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20237 (put 'org-delete-char 'flyspell-delayed t)
20238 (put 'org-delete-backward-char 'flyspell-delayed t)
20240 ;; Make pabbrev-mode expand after org-mode commands
20241 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20242 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20244 (defun org-remap (map &rest commands)
20245 "In MAP, remap the functions given in COMMANDS.
20246 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20247 (let (new old)
20248 (while commands
20249 (setq old (pop commands) new (pop commands))
20250 (if (fboundp 'command-remapping)
20251 (org-defkey map (vector 'remap old) new)
20252 (substitute-key-definition old new map global-map)))))
20254 (defun org-transpose-words ()
20255 "Transpose words for Org.
20256 This uses the `org-mode-transpose-word-syntax-table' syntax
20257 table, which interprets characters in `org-emphasis-alist' as
20258 word constituents."
20259 (interactive)
20260 (with-syntax-table org-mode-transpose-word-syntax-table
20261 (call-interactively 'transpose-words)))
20262 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20264 (when (eq org-enable-table-editor 'optimized)
20265 ;; If the user wants maximum table support, we need to hijack
20266 ;; some standard editing functions
20267 (org-remap org-mode-map
20268 'self-insert-command 'org-self-insert-command
20269 'delete-char 'org-delete-char
20270 'delete-backward-char 'org-delete-backward-char)
20271 (org-defkey org-mode-map "|" 'org-force-self-insert))
20273 (defvar org-ctrl-c-ctrl-c-hook nil
20274 "Hook for functions attaching themselves to `C-c C-c'.
20276 This can be used to add additional functionality to the C-c C-c
20277 key which executes context-dependent commands. This hook is run
20278 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20279 run after the last test.
20281 Each function will be called with no arguments. The function
20282 must check if the context is appropriate for it to act. If yes,
20283 it should do its thing and then return a non-nil value. If the
20284 context is wrong, just do nothing and return nil.")
20286 (defvar org-ctrl-c-ctrl-c-final-hook nil
20287 "Hook for functions attaching themselves to `C-c C-c'.
20289 This can be used to add additional functionality to the C-c C-c
20290 key which executes context-dependent commands. This hook is run
20291 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20292 before the first test.
20294 Each function will be called with no arguments. The function
20295 must check if the context is appropriate for it to act. If yes,
20296 it should do its thing and then return a non-nil value. If the
20297 context is wrong, just do nothing and return nil.")
20299 (defvar org-tab-first-hook nil
20300 "Hook for functions to attach themselves to TAB.
20301 See `org-ctrl-c-ctrl-c-hook' for more information.
20302 This hook runs as the first action when TAB is pressed, even before
20303 `org-cycle' messes around with the `outline-regexp' to cater for
20304 inline tasks and plain list item folding.
20305 If any function in this hook returns t, any other actions that
20306 would have been caused by TAB (such as table field motion or visibility
20307 cycling) will not occur.")
20309 (defvar org-tab-after-check-for-table-hook nil
20310 "Hook for functions to attach themselves to TAB.
20311 See `org-ctrl-c-ctrl-c-hook' for more information.
20312 This hook runs after it has been established that the cursor is not in a
20313 table, but before checking if the cursor is in a headline or if global cycling
20314 should be done.
20315 If any function in this hook returns t, not other actions like visibility
20316 cycling will be done.")
20318 (defvar org-tab-after-check-for-cycling-hook nil
20319 "Hook for functions to attach themselves to TAB.
20320 See `org-ctrl-c-ctrl-c-hook' for more information.
20321 This hook runs after it has been established that not table field motion and
20322 not visibility should be done because of current context. This is probably
20323 the place where a package like yasnippets can hook in.")
20325 (defvar org-tab-before-tab-emulation-hook nil
20326 "Hook for functions to attach themselves to TAB.
20327 See `org-ctrl-c-ctrl-c-hook' for more information.
20328 This hook runs after every other options for TAB have been exhausted, but
20329 before indentation and \t insertion takes place.")
20331 (defvar org-metaleft-hook nil
20332 "Hook for functions attaching themselves to `M-left'.
20333 See `org-ctrl-c-ctrl-c-hook' for more information.")
20334 (defvar org-metaright-hook nil
20335 "Hook for functions attaching themselves to `M-right'.
20336 See `org-ctrl-c-ctrl-c-hook' for more information.")
20337 (defvar org-metaup-hook nil
20338 "Hook for functions attaching themselves to `M-up'.
20339 See `org-ctrl-c-ctrl-c-hook' for more information.")
20340 (defvar org-metadown-hook nil
20341 "Hook for functions attaching themselves to `M-down'.
20342 See `org-ctrl-c-ctrl-c-hook' for more information.")
20343 (defvar org-shiftmetaleft-hook nil
20344 "Hook for functions attaching themselves to `M-S-left'.
20345 See `org-ctrl-c-ctrl-c-hook' for more information.")
20346 (defvar org-shiftmetaright-hook nil
20347 "Hook for functions attaching themselves to `M-S-right'.
20348 See `org-ctrl-c-ctrl-c-hook' for more information.")
20349 (defvar org-shiftmetaup-hook nil
20350 "Hook for functions attaching themselves to `M-S-up'.
20351 See `org-ctrl-c-ctrl-c-hook' for more information.")
20352 (defvar org-shiftmetadown-hook nil
20353 "Hook for functions attaching themselves to `M-S-down'.
20354 See `org-ctrl-c-ctrl-c-hook' for more information.")
20355 (defvar org-metareturn-hook nil
20356 "Hook for functions attaching themselves to `M-RET'.
20357 See `org-ctrl-c-ctrl-c-hook' for more information.")
20358 (defvar org-shiftup-hook nil
20359 "Hook for functions attaching themselves to `S-up'.
20360 See `org-ctrl-c-ctrl-c-hook' for more information.")
20361 (defvar org-shiftup-final-hook nil
20362 "Hook for functions attaching themselves to `S-up'.
20363 This one runs after all other options except shift-select have been excluded.
20364 See `org-ctrl-c-ctrl-c-hook' for more information.")
20365 (defvar org-shiftdown-hook nil
20366 "Hook for functions attaching themselves to `S-down'.
20367 See `org-ctrl-c-ctrl-c-hook' for more information.")
20368 (defvar org-shiftdown-final-hook nil
20369 "Hook for functions attaching themselves to `S-down'.
20370 This one runs after all other options except shift-select have been excluded.
20371 See `org-ctrl-c-ctrl-c-hook' for more information.")
20372 (defvar org-shiftleft-hook nil
20373 "Hook for functions attaching themselves to `S-left'.
20374 See `org-ctrl-c-ctrl-c-hook' for more information.")
20375 (defvar org-shiftleft-final-hook nil
20376 "Hook for functions attaching themselves to `S-left'.
20377 This one runs after all other options except shift-select have been excluded.
20378 See `org-ctrl-c-ctrl-c-hook' for more information.")
20379 (defvar org-shiftright-hook nil
20380 "Hook for functions attaching themselves to `S-right'.
20381 See `org-ctrl-c-ctrl-c-hook' for more information.")
20382 (defvar org-shiftright-final-hook nil
20383 "Hook for functions attaching themselves to `S-right'.
20384 This one runs after all other options except shift-select have been excluded.
20385 See `org-ctrl-c-ctrl-c-hook' for more information.")
20387 (defun org-modifier-cursor-error ()
20388 "Throw an error, a modified cursor command was applied in wrong context."
20389 (user-error "This command is active in special context like tables, headlines or items"))
20391 (defun org-shiftselect-error ()
20392 "Throw an error because Shift-Cursor command was applied in wrong context."
20393 (if (and (boundp 'shift-select-mode) shift-select-mode)
20394 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20395 (user-error "This command works only in special context like headlines or timestamps")))
20397 (defun org-call-for-shift-select (cmd)
20398 (let ((this-command-keys-shift-translated t))
20399 (call-interactively cmd)))
20401 (defun org-shifttab (&optional arg)
20402 "Global visibility cycling or move to previous table field.
20403 Call `org-table-previous-field' within a table.
20404 When ARG is nil, cycle globally through visibility states.
20405 When ARG is a numeric prefix, show contents of this level."
20406 (interactive "P")
20407 (cond
20408 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20409 ((integerp arg)
20410 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20411 (message "Content view to level: %d" arg)
20412 (org-content (prefix-numeric-value arg2))
20413 (org-cycle-show-empty-lines t)
20414 (setq org-cycle-global-status 'overview)))
20415 (t (call-interactively 'org-global-cycle))))
20417 (defun org-shiftmetaleft ()
20418 "Promote subtree or delete table column.
20419 Calls `org-promote-subtree', `org-outdent-item-tree', or
20420 `org-table-delete-column', depending on context. See the
20421 individual commands for more information."
20422 (interactive)
20423 (cond
20424 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20425 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20426 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20427 ((if (not (org-region-active-p)) (org-at-item-p)
20428 (save-excursion (goto-char (region-beginning))
20429 (org-at-item-p)))
20430 (call-interactively 'org-outdent-item-tree))
20431 (t (org-modifier-cursor-error))))
20433 (defun org-shiftmetaright ()
20434 "Demote subtree or insert table column.
20435 Calls `org-demote-subtree', `org-indent-item-tree', or
20436 `org-table-insert-column', depending on context. See the
20437 individual commands for more information."
20438 (interactive)
20439 (cond
20440 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20441 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20442 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20443 ((if (not (org-region-active-p)) (org-at-item-p)
20444 (save-excursion (goto-char (region-beginning))
20445 (org-at-item-p)))
20446 (call-interactively 'org-indent-item-tree))
20447 (t (org-modifier-cursor-error))))
20449 (defun org-shiftmetaup (&optional arg)
20450 "Drag the line at point up.
20451 In a table, kill the current row.
20452 On a clock timestamp, update the value of the timestamp like `S-<up>'
20453 but also adjust the previous clocked item in the clock history.
20454 Everywhere else, drag the line at point up."
20455 (interactive "P")
20456 (cond
20457 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20458 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20459 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20460 (call-interactively 'org-timestamp-up)))
20461 (t (call-interactively 'org-drag-line-backward))))
20463 (defun org-shiftmetadown (&optional arg)
20464 "Drag the line at point down.
20465 In a table, insert an empty row at the current line.
20466 On a clock timestamp, update the value of the timestamp like `S-<down>'
20467 but also adjust the previous clocked item in the clock history.
20468 Everywhere else, drag the line at point down."
20469 (interactive "P")
20470 (cond
20471 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20472 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20473 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20474 (call-interactively 'org-timestamp-down)))
20475 (t (call-interactively 'org-drag-line-forward))))
20477 (defsubst org-hidden-tree-error ()
20478 (user-error
20479 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20481 (defun org-metaleft (&optional arg)
20482 "Promote heading or move table column to left.
20483 Calls `org-do-promote' or `org-table-move-column', depending on context.
20484 With no specific context, calls the Emacs default `backward-word'.
20485 See the individual commands for more information."
20486 (interactive "P")
20487 (cond
20488 ((run-hook-with-args-until-success 'org-metaleft-hook))
20489 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20490 ((org-with-limited-levels
20491 (or (org-at-heading-p)
20492 (and (org-region-active-p)
20493 (save-excursion
20494 (goto-char (region-beginning))
20495 (org-at-heading-p)))))
20496 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20497 (call-interactively 'org-do-promote))
20498 ;; At an inline task.
20499 ((org-at-heading-p)
20500 (call-interactively 'org-inlinetask-promote))
20501 ((or (org-at-item-p)
20502 (and (org-region-active-p)
20503 (save-excursion
20504 (goto-char (region-beginning))
20505 (org-at-item-p))))
20506 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20507 (call-interactively 'org-outdent-item))
20508 (t (call-interactively 'backward-word))))
20510 (defun org-metaright (&optional arg)
20511 "Demote a subtree, a list item or move table column to right.
20512 In front of a drawer or a block keyword, indent it correctly.
20513 With no specific context, calls the Emacs default `forward-word'.
20514 See the individual commands for more information."
20515 (interactive "P")
20516 (cond
20517 ((run-hook-with-args-until-success 'org-metaright-hook))
20518 ((org-at-table-p) (call-interactively 'org-table-move-column))
20519 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20520 ((org-at-block-p) (call-interactively 'org-indent-block))
20521 ((org-with-limited-levels
20522 (or (org-at-heading-p)
20523 (and (org-region-active-p)
20524 (save-excursion
20525 (goto-char (region-beginning))
20526 (org-at-heading-p)))))
20527 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20528 (call-interactively 'org-do-demote))
20529 ;; At an inline task.
20530 ((org-at-heading-p)
20531 (call-interactively 'org-inlinetask-demote))
20532 ((or (org-at-item-p)
20533 (and (org-region-active-p)
20534 (save-excursion
20535 (goto-char (region-beginning))
20536 (org-at-item-p))))
20537 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20538 (call-interactively 'org-indent-item))
20539 (t (call-interactively 'forward-word))))
20541 (defun org-check-for-hidden (what)
20542 "Check if there are hidden headlines/items in the current visual line.
20543 WHAT can be either `headlines' or `items'. If the current line is
20544 an outline or item heading and it has a folded subtree below it,
20545 this function returns t, nil otherwise."
20546 (let ((re (cond
20547 ((eq what 'headlines) org-outline-regexp-bol)
20548 ((eq what 'items) (org-item-beginning-re))
20549 (t (error "This should not happen"))))
20550 beg end)
20551 (save-excursion
20552 (catch 'exit
20553 (unless (org-region-active-p)
20554 (setq beg (point-at-bol))
20555 (beginning-of-line 2)
20556 (while (and (not (eobp)) ;; this is like `next-line'
20557 (get-char-property (1- (point)) 'invisible))
20558 (beginning-of-line 2))
20559 (setq end (point))
20560 (goto-char beg)
20561 (goto-char (point-at-eol))
20562 (setq end (max end (point)))
20563 (while (re-search-forward re end t)
20564 (if (get-char-property (match-beginning 0) 'invisible)
20565 (throw 'exit t))))
20566 nil))))
20568 (defun org-metaup (&optional arg)
20569 "Move subtree up or move table row up.
20570 Calls `org-move-subtree-up' or `org-table-move-row' or
20571 `org-move-item-up', depending on context. See the individual commands
20572 for more information."
20573 (interactive "P")
20574 (cond
20575 ((run-hook-with-args-until-success 'org-metaup-hook))
20576 ((org-region-active-p)
20577 (let* ((a (min (region-beginning) (region-end)))
20578 (b (1- (max (region-beginning) (region-end))))
20579 (c (save-excursion (goto-char a)
20580 (move-beginning-of-line 0)))
20581 (d (save-excursion (goto-char a)
20582 (move-end-of-line 0) (point))))
20583 (transpose-regions a b c d)
20584 (goto-char c)))
20585 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20586 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20587 ((org-at-item-p) (call-interactively 'org-move-item-up))
20588 (t (org-drag-element-backward))))
20590 (defun org-metadown (&optional arg)
20591 "Move subtree down or move table row down.
20592 Calls `org-move-subtree-down' or `org-table-move-row' or
20593 `org-move-item-down', depending on context. See the individual
20594 commands for more information."
20595 (interactive "P")
20596 (cond
20597 ((run-hook-with-args-until-success 'org-metadown-hook))
20598 ((org-region-active-p)
20599 (let* ((a (min (region-beginning) (region-end)))
20600 (b (max (region-beginning) (region-end)))
20601 (c (save-excursion (goto-char b)
20602 (move-beginning-of-line 1)))
20603 (d (save-excursion (goto-char b)
20604 (move-end-of-line 1) (1+ (point)))))
20605 (transpose-regions a b c d)
20606 (goto-char d)))
20607 ((org-at-table-p) (call-interactively 'org-table-move-row))
20608 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20609 ((org-at-item-p) (call-interactively 'org-move-item-down))
20610 (t (org-drag-element-forward))))
20612 (defun org-shiftup (&optional arg)
20613 "Increase item in timestamp or increase priority of current headline.
20614 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20615 depending on context. See the individual commands for more information."
20616 (interactive "P")
20617 (cond
20618 ((run-hook-with-args-until-success 'org-shiftup-hook))
20619 ((and org-support-shift-select (org-region-active-p))
20620 (org-call-for-shift-select 'previous-line))
20621 ((org-at-timestamp-p t)
20622 (call-interactively (if org-edit-timestamp-down-means-later
20623 'org-timestamp-down 'org-timestamp-up)))
20624 ((and (not (eq org-support-shift-select 'always))
20625 org-enable-priority-commands
20626 (org-at-heading-p))
20627 (call-interactively 'org-priority-up))
20628 ((and (not org-support-shift-select) (org-at-item-p))
20629 (call-interactively 'org-previous-item))
20630 ((org-clocktable-try-shift 'up arg))
20631 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20632 (org-support-shift-select
20633 (org-call-for-shift-select 'previous-line))
20634 (t (org-shiftselect-error))))
20636 (defun org-shiftdown (&optional arg)
20637 "Decrease item in timestamp or decrease priority of current headline.
20638 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20639 depending on context. See the individual commands for more information."
20640 (interactive "P")
20641 (cond
20642 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20643 ((and org-support-shift-select (org-region-active-p))
20644 (org-call-for-shift-select 'next-line))
20645 ((org-at-timestamp-p t)
20646 (call-interactively (if org-edit-timestamp-down-means-later
20647 'org-timestamp-up 'org-timestamp-down)))
20648 ((and (not (eq org-support-shift-select 'always))
20649 org-enable-priority-commands
20650 (org-at-heading-p))
20651 (call-interactively 'org-priority-down))
20652 ((and (not org-support-shift-select) (org-at-item-p))
20653 (call-interactively 'org-next-item))
20654 ((org-clocktable-try-shift 'down arg))
20655 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20656 (org-support-shift-select
20657 (org-call-for-shift-select 'next-line))
20658 (t (org-shiftselect-error))))
20660 (defun org-shiftright (&optional arg)
20661 "Cycle the thing at point or in the current line, depending on context.
20662 Depending on context, this does one of the following:
20664 - switch a timestamp at point one day into the future
20665 - on a headline, switch to the next TODO keyword.
20666 - on an item, switch entire list to the next bullet type
20667 - on a property line, switch to the next allowed value
20668 - on a clocktable definition line, move time block into the future"
20669 (interactive "P")
20670 (cond
20671 ((run-hook-with-args-until-success 'org-shiftright-hook))
20672 ((and org-support-shift-select (org-region-active-p))
20673 (org-call-for-shift-select 'forward-char))
20674 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20675 ((and (not (eq org-support-shift-select 'always))
20676 (org-at-heading-p))
20677 (let ((org-inhibit-logging
20678 (not org-treat-S-cursor-todo-selection-as-state-change))
20679 (org-inhibit-blocking
20680 (not org-treat-S-cursor-todo-selection-as-state-change)))
20681 (org-call-with-arg 'org-todo 'right)))
20682 ((or (and org-support-shift-select
20683 (not (eq org-support-shift-select 'always))
20684 (org-at-item-bullet-p))
20685 (and (not org-support-shift-select) (org-at-item-p)))
20686 (org-call-with-arg 'org-cycle-list-bullet nil))
20687 ((and (not (eq org-support-shift-select 'always))
20688 (org-at-property-p))
20689 (call-interactively 'org-property-next-allowed-value))
20690 ((org-clocktable-try-shift 'right arg))
20691 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20692 (org-support-shift-select
20693 (org-call-for-shift-select 'forward-char))
20694 (t (org-shiftselect-error))))
20696 (defun org-shiftleft (&optional arg)
20697 "Cycle the thing at point or in the current line, depending on context.
20698 Depending on context, this does one of the following:
20700 - switch a timestamp at point one day into the past
20701 - on a headline, switch to the previous TODO keyword.
20702 - on an item, switch entire list to the previous bullet type
20703 - on a property line, switch to the previous allowed value
20704 - on a clocktable definition line, move time block into the past"
20705 (interactive "P")
20706 (cond
20707 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20708 ((and org-support-shift-select (org-region-active-p))
20709 (org-call-for-shift-select 'backward-char))
20710 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20711 ((and (not (eq org-support-shift-select 'always))
20712 (org-at-heading-p))
20713 (let ((org-inhibit-logging
20714 (not org-treat-S-cursor-todo-selection-as-state-change))
20715 (org-inhibit-blocking
20716 (not org-treat-S-cursor-todo-selection-as-state-change)))
20717 (org-call-with-arg 'org-todo 'left)))
20718 ((or (and org-support-shift-select
20719 (not (eq org-support-shift-select 'always))
20720 (org-at-item-bullet-p))
20721 (and (not org-support-shift-select) (org-at-item-p)))
20722 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20723 ((and (not (eq org-support-shift-select 'always))
20724 (org-at-property-p))
20725 (call-interactively 'org-property-previous-allowed-value))
20726 ((org-clocktable-try-shift 'left arg))
20727 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20728 (org-support-shift-select
20729 (org-call-for-shift-select 'backward-char))
20730 (t (org-shiftselect-error))))
20732 (defun org-shiftcontrolright ()
20733 "Switch to next TODO set."
20734 (interactive)
20735 (cond
20736 ((and org-support-shift-select (org-region-active-p))
20737 (org-call-for-shift-select 'forward-word))
20738 ((and (not (eq org-support-shift-select 'always))
20739 (org-at-heading-p))
20740 (org-call-with-arg 'org-todo 'nextset))
20741 (org-support-shift-select
20742 (org-call-for-shift-select 'forward-word))
20743 (t (org-shiftselect-error))))
20745 (defun org-shiftcontrolleft ()
20746 "Switch to previous TODO set."
20747 (interactive)
20748 (cond
20749 ((and org-support-shift-select (org-region-active-p))
20750 (org-call-for-shift-select 'backward-word))
20751 ((and (not (eq org-support-shift-select 'always))
20752 (org-at-heading-p))
20753 (org-call-with-arg 'org-todo 'previousset))
20754 (org-support-shift-select
20755 (org-call-for-shift-select 'backward-word))
20756 (t (org-shiftselect-error))))
20758 (defun org-shiftcontrolup (&optional n)
20759 "Change timestamps synchronously up in CLOCK log lines.
20760 Optional argument N tells to change by that many units."
20761 (interactive "P")
20762 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20763 (let (org-support-shift-select)
20764 (org-clock-timestamps-up n))
20765 (user-error "Not at a clock log")))
20767 (defun org-shiftcontroldown (&optional n)
20768 "Change timestamps synchronously down in CLOCK log lines.
20769 Optional argument N tells to change by that many units."
20770 (interactive "P")
20771 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20772 (let (org-support-shift-select)
20773 (org-clock-timestamps-down n))
20774 (user-error "Not at a clock log")))
20776 (defun org-increase-number-at-point (&optional inc)
20777 "Increment the number at point.
20778 With an optional prefix numeric argument INC, increment using
20779 this numeric value."
20780 (interactive "p")
20781 (if (not (number-at-point))
20782 (user-error "Not on a number")
20783 (unless inc (setq inc 1))
20784 (let ((pos (point))
20785 (beg (skip-chars-backward "-+^/*0-9eE."))
20786 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20787 (setq nap (buffer-substring-no-properties
20788 (+ pos beg) (+ pos beg end)))
20789 (delete-region (+ pos beg) (+ pos beg end))
20790 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20791 (when (org-at-table-p)
20792 (org-table-align)
20793 (org-table-end-of-field 1))))
20795 (defun org-decrease-number-at-point (&optional inc)
20796 "Decrement the number at point.
20797 With an optional prefix numeric argument INC, decrement using
20798 this numeric value."
20799 (interactive "p")
20800 (org-increase-number-at-point (- inc)))
20802 (defun org-ctrl-c-ret ()
20803 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20804 (interactive)
20805 (cond
20806 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20807 (t (call-interactively 'org-insert-heading))))
20809 (defun org-find-visible ()
20810 (let ((s (point)))
20811 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20812 (get-char-property s 'invisible)))
20814 (defun org-find-invisible ()
20815 (let ((s (point)))
20816 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20817 (not (get-char-property s 'invisible))))
20820 (defun org-copy-visible (beg end)
20821 "Copy the visible parts of the region."
20822 (interactive "r")
20823 (let (snippets s)
20824 (save-excursion
20825 (save-restriction
20826 (narrow-to-region beg end)
20827 (setq s (goto-char (point-min)))
20828 (while (not (= (point) (point-max)))
20829 (goto-char (org-find-invisible))
20830 (push (buffer-substring s (point)) snippets)
20831 (setq s (goto-char (org-find-visible))))))
20832 (kill-new (apply 'concat (nreverse snippets)))))
20834 (defun org-copy-special ()
20835 "Copy region in table or copy current subtree.
20836 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20837 See the individual commands for more information."
20838 (interactive)
20839 (call-interactively
20840 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20842 (defun org-cut-special ()
20843 "Cut region in table or cut current subtree.
20844 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20845 See the individual commands for more information."
20846 (interactive)
20847 (call-interactively
20848 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20850 (defun org-paste-special (arg)
20851 "Paste rectangular region into table, or past subtree relative to level.
20852 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20853 See the individual commands for more information."
20854 (interactive "P")
20855 (if (org-at-table-p)
20856 (org-table-paste-rectangle)
20857 (org-paste-subtree arg)))
20859 (defsubst org-in-fixed-width-region-p ()
20860 "Is point in a fixed-width region?"
20861 (save-match-data
20862 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20864 (defun org-edit-special (&optional arg)
20865 "Call a special editor for the element at point.
20866 When at a table, call the formula editor with `org-table-edit-formulas'.
20867 When in a source code block, call `org-edit-src-code'.
20868 When in a fixed-width region, call `org-edit-fixed-width-region'.
20869 When in an export block, call `org-edit-export-block'.
20870 When at an #+INCLUDE keyword, visit the included file.
20871 On a link, call `ffap' to visit the link at point.
20872 Otherwise, return a user error."
20873 (interactive "P")
20874 (let ((element (org-element-at-point)))
20875 (assert (not buffer-read-only) nil
20876 "Buffer is read-only: %s" (buffer-name))
20877 (case (org-element-type element)
20878 (src-block
20879 (if (not arg) (org-edit-src-code)
20880 (let* ((info (org-babel-get-src-block-info))
20881 (lang (nth 0 info))
20882 (params (nth 2 info))
20883 (session (cdr (assq :session params))))
20884 (if (not session) (org-edit-src-code)
20885 ;; At a src-block with a session and function called with
20886 ;; an ARG: switch to the buffer related to the inferior
20887 ;; process.
20888 (switch-to-buffer
20889 (funcall (intern (concat "org-babel-prep-session:" lang))
20890 session params))))))
20891 (keyword
20892 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20893 (org-open-link-from-string
20894 (format "[[%s]]"
20895 (expand-file-name
20896 (let ((value (org-element-property :value element)))
20897 (cond ((not (org-string-nw-p value))
20898 (user-error "No file to edit"))
20899 ((string-match "\\`\"\\(.*?\\)\"" value)
20900 (match-string 1 value))
20901 ((string-match "\\`[^ \t\"]\\S-*" value)
20902 (match-string 0 value))
20903 (t (user-error "No valid file specified")))))))
20904 (user-error "No special environment to edit here")))
20905 (table
20906 (if (eq (org-element-property :type element) 'table.el)
20907 (org-edit-table.el)
20908 (call-interactively 'org-table-edit-formulas)))
20909 ;; Only Org tables contain `table-row' type elements.
20910 (table-row (call-interactively 'org-table-edit-formulas))
20911 ((example-block src-block) (org-edit-src-code))
20912 (export-block (org-edit-export-block))
20913 (fixed-width (org-edit-fixed-width-region))
20914 (otherwise
20915 ;; No notable element at point. Though, we may be at a link,
20916 ;; which is an object. Thus, scan deeper.
20917 (if (eq (org-element-type (org-element-context element)) 'link)
20918 (call-interactively 'ffap)
20919 (user-error "No special environment to edit here"))))))
20921 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20922 (defun org-ctrl-c-ctrl-c (&optional arg)
20923 "Set tags in headline, or update according to changed information at point.
20925 This command does many different things, depending on context:
20927 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20928 this is what we do.
20930 - If the cursor is on a statistics cookie, update it.
20932 - If the cursor is in a headline, prompt for tags and insert them
20933 into the current line, aligned to `org-tags-column'. When called
20934 with prefix arg, realign all tags in the current buffer.
20936 - If the cursor is in one of the special #+KEYWORD lines, this
20937 triggers scanning the buffer for these lines and updating the
20938 information.
20940 - If the cursor is inside a table, realign the table. This command
20941 works even if the automatic table editor has been turned off.
20943 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20944 the entire table.
20946 - If the cursor is at a footnote reference or definition, jump to
20947 the corresponding definition or references, respectively.
20949 - If the cursor is a the beginning of a dynamic block, update it.
20951 - If the current buffer is a capture buffer, close note and file it.
20953 - If the cursor is on a <<<target>>>, update radio targets and
20954 corresponding links in this buffer.
20956 - If the cursor is on a numbered item in a plain list, renumber the
20957 ordered list.
20959 - If the cursor is on a checkbox, toggle it.
20961 - If the cursor is on a code block, evaluate it. The variable
20962 `org-confirm-babel-evaluate' can be used to control prompting
20963 before code block evaluation, by default every code block
20964 evaluation requires confirmation. Code block evaluation can be
20965 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20966 (interactive "P")
20967 (cond
20968 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20969 org-occur-highlights)
20970 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20971 (org-remove-occur-highlights)
20972 (message "Temporary highlights/overlays removed from current buffer"))
20973 ((and (local-variable-p 'org-finish-function (current-buffer))
20974 (fboundp org-finish-function))
20975 (funcall org-finish-function))
20976 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20978 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20979 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20980 (user-error "C-c C-c can do nothing useful at this location"))
20981 (let* ((context (org-element-context))
20982 (type (org-element-type context)))
20983 (case type
20984 ;; When at a link, act according to the parent instead.
20985 (link (setq context (org-element-property :parent context))
20986 (setq type (org-element-type context)))
20987 ;; Unsupported object types: refer to the first supported
20988 ;; element or object containing it.
20989 ((bold code entity export-snippet inline-babel-call inline-src-block
20990 italic latex-fragment line-break macro strike-through subscript
20991 superscript underline verbatim)
20992 (setq context
20993 (org-element-lineage
20994 context '(radio-target paragraph verse-block table-cell)))))
20995 ;; For convenience: at the first line of a paragraph on the
20996 ;; same line as an item, apply function on that item instead.
20997 (when (eq type 'paragraph)
20998 (let ((parent (org-element-property :parent context)))
20999 (when (and (eq (org-element-type parent) 'item)
21000 (= (line-beginning-position)
21001 (org-element-property :begin parent)))
21002 (setq context parent type 'item))))
21003 ;; Act according to type of element or object at point.
21004 (case type
21005 (clock (org-clock-update-time-maybe))
21006 (dynamic-block
21007 (save-excursion
21008 (goto-char (org-element-property :post-affiliated context))
21009 (org-update-dblock)))
21010 (footnote-definition
21011 (goto-char (org-element-property :post-affiliated context))
21012 (call-interactively 'org-footnote-action))
21013 (footnote-reference (call-interactively 'org-footnote-action))
21014 ((headline inlinetask)
21015 (save-excursion (goto-char (org-element-property :begin context))
21016 (call-interactively 'org-set-tags)))
21017 (item
21018 ;; At an item: a double C-u set checkbox to "[-]"
21019 ;; unconditionally, whereas a single one will toggle its
21020 ;; presence. Without an universal argument, if the item
21021 ;; has a checkbox, toggle it. Otherwise repair the list.
21022 (let* ((box (org-element-property :checkbox context))
21023 (struct (org-element-property :structure context))
21024 (old-struct (copy-tree struct))
21025 (parents (org-list-parents-alist struct))
21026 (prevs (org-list-prevs-alist struct))
21027 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21028 (org-list-set-checkbox
21029 (org-element-property :begin context) struct
21030 (cond ((equal arg '(16)) "[-]")
21031 ((and (not box) (equal arg '(4))) "[ ]")
21032 ((or (not box) (equal arg '(4))) nil)
21033 ((eq box 'on) "[ ]")
21034 (t "[X]")))
21035 ;; Mimic `org-list-write-struct' but with grabbing
21036 ;; a return value from `org-list-struct-fix-box'.
21037 (org-list-struct-fix-ind struct parents 2)
21038 (org-list-struct-fix-item-end struct)
21039 (org-list-struct-fix-bul struct prevs)
21040 (org-list-struct-fix-ind struct parents)
21041 (let ((block-item
21042 (org-list-struct-fix-box struct parents prevs orderedp)))
21043 (if (and box (equal struct old-struct))
21044 (if (equal arg '(16))
21045 (message "Checkboxes already reset")
21046 (user-error "Cannot toggle this checkbox: %s"
21047 (if (eq box 'on)
21048 "all subitems checked"
21049 "unchecked subitems")))
21050 (org-list-struct-apply-struct struct old-struct)
21051 (org-update-checkbox-count-maybe))
21052 (when block-item
21053 (message "Checkboxes were removed due to empty box at line %d"
21054 (org-current-line block-item))))))
21055 (keyword
21056 (let ((org-inhibit-startup-visibility-stuff t)
21057 (org-startup-align-all-tables nil))
21058 (when (boundp 'org-table-coordinate-overlays)
21059 (mapc 'delete-overlay org-table-coordinate-overlays)
21060 (setq org-table-coordinate-overlays nil))
21061 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21062 (message "Local setup has been refreshed"))
21063 (plain-list
21064 ;; At a plain list, with a double C-u argument, set
21065 ;; checkboxes of each item to "[-]", whereas a single one
21066 ;; will toggle their presence according to the state of the
21067 ;; first item in the list. Without an argument, repair the
21068 ;; list.
21069 (let* ((begin (org-element-property :contents-begin context))
21070 (beginm (move-marker (make-marker) begin))
21071 (struct (org-element-property :structure context))
21072 (old-struct (copy-tree struct))
21073 (first-box (save-excursion
21074 (goto-char begin)
21075 (looking-at org-list-full-item-re)
21076 (match-string-no-properties 3)))
21077 (new-box (cond ((equal arg '(16)) "[-]")
21078 ((equal arg '(4)) (unless first-box "[ ]"))
21079 ((equal first-box "[X]") "[ ]")
21080 (t "[X]"))))
21081 (cond
21082 (arg
21083 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21084 (org-list-get-all-items
21085 begin struct (org-list-prevs-alist struct))))
21086 ((and first-box (eq (point) begin))
21087 ;; For convenience, when point is at bol on the first
21088 ;; item of the list and no argument is provided, simply
21089 ;; toggle checkbox of that item, if any.
21090 (org-list-set-checkbox begin struct new-box)))
21091 (org-list-write-struct
21092 struct (org-list-parents-alist struct) old-struct)
21093 (org-update-checkbox-count-maybe)
21094 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21095 ((property-drawer node-property)
21096 (call-interactively 'org-property-action))
21097 ((radio-target target)
21098 (call-interactively 'org-update-radio-target-regexp))
21099 (statistics-cookie
21100 (call-interactively 'org-update-statistics-cookies))
21101 ((table table-cell table-row)
21102 ;; At a table, recalculate every field and align it. Also
21103 ;; send the table if necessary. If the table has
21104 ;; a `table.el' type, just give up. At a table row or
21105 ;; cell, maybe recalculate line but always align table.
21106 (if (eq (org-element-property :type context) 'table.el)
21107 (message "Use C-c ' to edit table.el tables")
21108 (let ((org-enable-table-editor t))
21109 (if (or (eq type 'table)
21110 ;; Check if point is at a TBLFM line.
21111 (and (eq type 'table-row)
21112 (= (point) (org-element-property :end context))))
21113 (save-excursion
21114 (if (org-at-TBLFM-p)
21115 (progn (require 'org-table)
21116 (org-table-calc-current-TBLFM))
21117 (goto-char (org-element-property :contents-begin context))
21118 (org-call-with-arg 'org-table-recalculate (or arg t))
21119 (orgtbl-send-table 'maybe)))
21120 (org-table-maybe-eval-formula)
21121 (cond (arg (call-interactively 'org-table-recalculate))
21122 ((org-table-maybe-recalculate-line))
21123 (t (org-table-align)))))))
21124 (timestamp (org-timestamp-change 0 'day))
21125 (otherwise
21126 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21127 (user-error
21128 "C-c C-c can do nothing useful at this location")))))))))
21130 (defun org-mode-restart ()
21131 (interactive)
21132 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21133 (funcall major-mode)
21134 (hack-local-variables)
21135 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21136 (org-indent-mode -1)))
21137 (message "%s restarted" major-mode))
21139 (defun org-kill-note-or-show-branches ()
21140 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21141 (interactive)
21142 (if (not org-finish-function)
21143 (progn
21144 (hide-subtree)
21145 (call-interactively 'show-branches))
21146 (let ((org-note-abort t))
21147 (funcall org-finish-function))))
21149 (defun org-open-line (n)
21150 "Insert a new row in tables, call `open-line' elsewhere.
21151 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21152 (interactive "*p")
21153 (cond
21154 ((not org-special-ctrl-o)
21155 (open-line n))
21156 ((org-at-table-p)
21157 (org-table-insert-row))
21159 (open-line n))))
21161 (defun org-return (&optional indent)
21162 "Goto next table row or insert a newline.
21164 Calls `org-table-next-row' or `newline', depending on context.
21166 When optional INDENT argument is non-nil, call
21167 `newline-and-indent' instead of `newline'.
21169 When `org-return-follows-link' is non-nil and point is on
21170 a timestamp or a link, call `org-open-at-point'. However, it
21171 will not happen if point is in a table or on a \"dead\"
21172 object (e.g., within a comment). In these case, you need to use
21173 `org-open-at-point' directly."
21174 (interactive)
21175 (if (and (save-excursion
21176 (beginning-of-line)
21177 (looking-at org-todo-line-regexp))
21178 (match-beginning 3)
21179 (>= (point) (match-beginning 3)))
21180 ;; Point is on headline tags. Do not break them: add a newline
21181 ;; after the headline instead.
21182 (progn (org-show-entry)
21183 (end-of-line)
21184 (if indent (newline-and-indent) (newline)))
21185 (let* ((context (if org-return-follows-link (org-element-context)
21186 (org-element-at-point)))
21187 (type (org-element-type context)))
21188 (cond
21189 ;; In a table, call `org-table-next-row'.
21190 ((or (and (eq type 'table)
21191 (>= (point) (org-element-property :contents-begin context))
21192 (< (point) (org-element-property :contents-end context)))
21193 (org-element-lineage context '(table-row table-cell) t))
21194 (org-table-justify-field-maybe)
21195 (call-interactively #'org-table-next-row))
21196 ;; On a link or a timestamp but not on white spaces after it,
21197 ;; call `org-open-line' if `org-return-follows-link' allows it.
21198 ((and org-return-follows-link
21199 (memq type '(link timestamp))
21200 (< (point)
21201 (save-excursion (goto-char (org-element-property :end context))
21202 (skip-chars-backward " \t")
21203 (point))))
21204 (call-interactively #'org-open-at-point))
21205 ;; In a list, make sure indenting keeps trailing text within.
21206 ((and indent
21207 (not (eolp))
21208 (org-element-lineage context '(item)))
21209 (let ((trailing-data
21210 (delete-and-extract-region (point) (line-end-position))))
21211 (newline-and-indent)
21212 (save-excursion (insert trailing-data))))
21213 (t (if indent (newline-and-indent) (newline)))))))
21215 (defun org-return-indent ()
21216 "Goto next table row or insert a newline and indent.
21217 Calls `org-table-next-row' or `newline-and-indent', depending on
21218 context. See the individual commands for more information."
21219 (interactive)
21220 (org-return t))
21222 (defun org-ctrl-c-star ()
21223 "Compute table, or change heading status of lines.
21224 Calls `org-table-recalculate' or `org-toggle-heading',
21225 depending on context."
21226 (interactive)
21227 (cond
21228 ((org-at-table-p)
21229 (call-interactively 'org-table-recalculate))
21231 ;; Convert all lines in region to list items
21232 (call-interactively 'org-toggle-heading))))
21234 (defun org-ctrl-c-minus ()
21235 "Insert separator line in table or modify bullet status of line.
21236 Also turns a plain line or a region of lines into list items.
21237 Calls `org-table-insert-hline', `org-toggle-item', or
21238 `org-cycle-list-bullet', depending on context."
21239 (interactive)
21240 (cond
21241 ((org-at-table-p)
21242 (call-interactively 'org-table-insert-hline))
21243 ((org-region-active-p)
21244 (call-interactively 'org-toggle-item))
21245 ((org-in-item-p)
21246 (call-interactively 'org-cycle-list-bullet))
21248 (call-interactively 'org-toggle-item))))
21250 (defun org-toggle-item (arg)
21251 "Convert headings or normal lines to items, items to normal lines.
21252 If there is no active region, only the current line is considered.
21254 If the first non blank line in the region is a headline, convert
21255 all headlines to items, shifting text accordingly.
21257 If it is an item, convert all items to normal lines.
21259 If it is normal text, change region into a list of items.
21260 With a prefix argument ARG, change the region in a single item."
21261 (interactive "P")
21262 (let ((shift-text
21263 (function
21264 ;; Shift text in current section to IND, from point to END.
21265 ;; The function leaves point to END line.
21266 (lambda (ind end)
21267 (let ((min-i 1000) (end (copy-marker end)))
21268 ;; First determine the minimum indentation (MIN-I) of
21269 ;; the text.
21270 (save-excursion
21271 (catch 'exit
21272 (while (< (point) end)
21273 (let ((i (org-get-indentation)))
21274 (cond
21275 ;; Skip blank lines and inline tasks.
21276 ((looking-at "^[ \t]*$"))
21277 ((looking-at org-outline-regexp-bol))
21278 ;; We can't find less than 0 indentation.
21279 ((zerop i) (throw 'exit (setq min-i 0)))
21280 ((< i min-i) (setq min-i i))))
21281 (forward-line))))
21282 ;; Then indent each line so that a line indented to
21283 ;; MIN-I becomes indented to IND. Ignore blank lines
21284 ;; and inline tasks in the process.
21285 (let ((delta (- ind min-i)))
21286 (while (< (point) end)
21287 (unless (or (looking-at "^[ \t]*$")
21288 (looking-at org-outline-regexp-bol))
21289 (org-indent-line-to (+ (org-get-indentation) delta)))
21290 (forward-line)))))))
21291 (skip-blanks
21292 (function
21293 ;; Return beginning of first non-blank line, starting from
21294 ;; line at POS.
21295 (lambda (pos)
21296 (save-excursion
21297 (goto-char pos)
21298 (skip-chars-forward " \r\t\n")
21299 (point-at-bol)))))
21300 beg end)
21301 ;; Determine boundaries of changes.
21302 (if (org-region-active-p)
21303 (setq beg (funcall skip-blanks (region-beginning))
21304 end (copy-marker (region-end)))
21305 (setq beg (funcall skip-blanks (point-at-bol))
21306 end (copy-marker (point-at-eol))))
21307 ;; Depending on the starting line, choose an action on the text
21308 ;; between BEG and END.
21309 (org-with-limited-levels
21310 (save-excursion
21311 (goto-char beg)
21312 (cond
21313 ;; Case 1. Start at an item: de-itemize. Note that it only
21314 ;; happens when a region is active: `org-ctrl-c-minus'
21315 ;; would call `org-cycle-list-bullet' otherwise.
21316 ((org-at-item-p)
21317 (while (< (point) end)
21318 (when (org-at-item-p)
21319 (skip-chars-forward " \t")
21320 (delete-region (point) (match-end 0)))
21321 (forward-line)))
21322 ;; Case 2. Start at an heading: convert to items.
21323 ((org-at-heading-p)
21324 (let* ((bul (org-list-bullet-string "-"))
21325 (bul-len (length bul))
21326 (done (org-entry-is-done-p))
21327 (todo (org-entry-is-todo-p))
21328 ;; Indentation of the first heading. It should be
21329 ;; relative to the indentation of its parent, if any.
21330 (start-ind (save-excursion
21331 (cond
21332 ((not org-adapt-indentation) 0)
21333 ((not (outline-previous-heading)) 0)
21334 (t (length (match-string 0))))))
21335 ;; Level of first heading. Further headings will be
21336 ;; compared to it to determine hierarchy in the list.
21337 (ref-level (org-reduced-level (org-outline-level))))
21338 (when (or done todo) (org-todo ""))
21339 (while (< (point) end)
21340 (let* ((level (org-reduced-level (org-outline-level)))
21341 (delta (max 0 (- level ref-level))))
21342 ;; If current headline is less indented than the first
21343 ;; one, set it as reference, in order to preserve
21344 ;; subtrees.
21345 (when (< level ref-level) (setq ref-level level))
21346 (replace-match bul t t)
21347 (org-indent-line-to (+ start-ind (* delta bul-len)))
21348 (when (or done todo)
21349 (let* ((struct (org-list-struct))
21350 (old (copy-tree struct)))
21351 (org-list-set-checkbox (line-beginning-position)
21352 struct
21353 (if done "[X]" "[ ]"))
21354 (org-list-write-struct struct
21355 (org-list-parents-alist struct)
21356 old)))
21357 ;; Ensure all text down to END (or SECTION-END) belongs
21358 ;; to the newly created item.
21359 (let ((section-end (save-excursion
21360 (or (outline-next-heading) (point)))))
21361 (forward-line)
21362 (funcall shift-text
21363 (+ start-ind (* (1+ delta) bul-len))
21364 (min end section-end)))))))
21365 ;; Case 3. Normal line with ARG: make the first line of region
21366 ;; an item, and shift indentation of others lines to
21367 ;; set them as item's body.
21368 (arg (let* ((bul (org-list-bullet-string "-"))
21369 (bul-len (length bul))
21370 (ref-ind (org-get-indentation)))
21371 (skip-chars-forward " \t")
21372 (insert bul)
21373 (forward-line)
21374 (while (< (point) end)
21375 ;; Ensure that lines less indented than first one
21376 ;; still get included in item body.
21377 (funcall shift-text
21378 (+ ref-ind bul-len)
21379 (min end (save-excursion (or (outline-next-heading)
21380 (point)))))
21381 (forward-line))))
21382 ;; Case 4. Normal line without ARG: turn each non-item line
21383 ;; into an item.
21385 (while (< (point) end)
21386 (unless (or (org-at-heading-p) (org-at-item-p))
21387 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21388 (replace-match
21389 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21390 (forward-line))))))))
21392 (defun org-toggle-heading (&optional nstars)
21393 "Convert headings to normal text, or items or text to headings.
21394 If there is no active region, only convert the current line.
21396 With a \\[universal-argument] prefix, convert the whole list at
21397 point into heading.
21399 In a region:
21401 - If the first non blank line is a headline, remove the stars
21402 from all headlines in the region.
21404 - If it is a normal line, turn each and every normal line (i.e.,
21405 not an heading or an item) in the region into headings. If you
21406 want to convert only the first line of this region, use one
21407 universal prefix argument.
21409 - If it is a plain list item, turn all plain list items into headings.
21411 When converting a line into a heading, the number of stars is chosen
21412 such that the lines become children of the current entry. However,
21413 when a numeric prefix argument is given, its value determines the
21414 number of stars to add."
21415 (interactive "P")
21416 (let ((skip-blanks
21417 (function
21418 ;; Return beginning of first non-blank line, starting from
21419 ;; line at POS.
21420 (lambda (pos)
21421 (save-excursion
21422 (goto-char pos)
21423 (while (org-at-comment-p) (forward-line))
21424 (skip-chars-forward " \r\t\n")
21425 (point-at-bol)))))
21426 beg end toggled)
21427 ;; Determine boundaries of changes. If a universal prefix has
21428 ;; been given, put the list in a region. If region ends at a bol,
21429 ;; do not consider the last line to be in the region.
21431 (when (and current-prefix-arg (org-at-item-p))
21432 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21433 (org-mark-element))
21435 (if (org-region-active-p)
21436 (setq beg (funcall skip-blanks (region-beginning))
21437 end (copy-marker (save-excursion
21438 (goto-char (region-end))
21439 (if (bolp) (point) (point-at-eol)))))
21440 (setq beg (funcall skip-blanks (point-at-bol))
21441 end (copy-marker (point-at-eol))))
21442 ;; Ensure inline tasks don't count as headings.
21443 (org-with-limited-levels
21444 (save-excursion
21445 (goto-char beg)
21446 (cond
21447 ;; Case 1. Started at an heading: de-star headings.
21448 ((org-at-heading-p)
21449 (while (< (point) end)
21450 (when (org-at-heading-p t)
21451 (looking-at org-outline-regexp) (replace-match "")
21452 (setq toggled t))
21453 (forward-line)))
21454 ;; Case 2. Started at an item: change items into headlines.
21455 ;; One star will be added by `org-list-to-subtree'.
21456 ((org-at-item-p)
21457 (while (< (point) end)
21458 (when (org-at-item-p)
21459 ;; Pay attention to cases when region ends before list.
21460 (let* ((struct (org-list-struct))
21461 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21462 (save-restriction
21463 (narrow-to-region (point) list-end)
21464 (insert (org-list-to-subtree (org-list-parse-list t)))))
21465 (setq toggled t))
21466 (forward-line)))
21467 ;; Case 3. Started at normal text: make every line an heading,
21468 ;; skipping headlines and items.
21469 (t (let* ((stars
21470 (make-string
21471 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21472 (add-stars
21473 (cond (nstars "") ; stars from prefix only
21474 ((equal stars "") "*") ; before first heading
21475 (org-odd-levels-only "**") ; inside heading, odd
21476 (t "*"))) ; inside heading, oddeven
21477 (rpl (concat stars add-stars " "))
21478 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21479 (while (< (point) (if (equal nstars '(4)) lend end))
21480 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21481 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21482 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21483 (forward-line)))))))
21484 (unless toggled (message "Cannot toggle heading from here"))))
21486 (defun org-meta-return (&optional arg)
21487 "Insert a new heading or wrap a region in a table.
21488 Calls `org-insert-heading' or `org-table-wrap-region', depending
21489 on context. See the individual commands for more information."
21490 (interactive "P")
21491 (org-check-before-invisible-edit 'insert)
21492 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21493 (let* ((element (org-element-at-point))
21494 (type (org-element-type element)))
21495 (when (eq type 'table-row)
21496 (setq element (org-element-property :parent element))
21497 (setq type 'table))
21498 (if (and (eq type 'table)
21499 (eq (org-element-property :type element) 'org)
21500 (>= (point) (org-element-property :contents-begin element))
21501 (< (point) (org-element-property :contents-end element)))
21502 (call-interactively 'org-table-wrap-region)
21503 (call-interactively 'org-insert-heading)))))
21505 ;;; Menu entries
21507 (defsubst org-in-subtree-not-table-p ()
21508 "Are we in a subtree and not in a table?"
21509 (and (not (org-before-first-heading-p))
21510 (not (org-at-table-p))))
21512 ;; Define the Org-mode menus
21513 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21514 '("Tbl"
21515 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21516 ["Next Field" org-cycle (org-at-table-p)]
21517 ["Previous Field" org-shifttab (org-at-table-p)]
21518 ["Next Row" org-return (org-at-table-p)]
21519 "--"
21520 ["Blank Field" org-table-blank-field (org-at-table-p)]
21521 ["Edit Field" org-table-edit-field (org-at-table-p)]
21522 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21523 "--"
21524 ("Column"
21525 ["Move Column Left" org-metaleft (org-at-table-p)]
21526 ["Move Column Right" org-metaright (org-at-table-p)]
21527 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21528 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21529 ("Row"
21530 ["Move Row Up" org-metaup (org-at-table-p)]
21531 ["Move Row Down" org-metadown (org-at-table-p)]
21532 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21533 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21534 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21535 "--"
21536 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21537 ("Rectangle"
21538 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21539 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21540 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21541 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21542 "--"
21543 ("Calculate"
21544 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21545 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21546 ["Edit Formulas" org-edit-special (org-at-table-p)]
21547 "--"
21548 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21549 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21550 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21551 "--"
21552 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21553 "--"
21554 ["Sum Column/Rectangle" org-table-sum
21555 (or (org-at-table-p) (org-region-active-p))]
21556 ["Which Column?" org-table-current-column (org-at-table-p)])
21557 ["Debug Formulas"
21558 org-table-toggle-formula-debugger
21559 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21560 ["Show Col/Row Numbers"
21561 org-table-toggle-coordinate-overlays
21562 :style toggle
21563 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21564 "--"
21565 ["Create" org-table-create (and (not (org-at-table-p))
21566 org-enable-table-editor)]
21567 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21568 ["Import from File" org-table-import (not (org-at-table-p))]
21569 ["Export to File" org-table-export (org-at-table-p)]
21570 "--"
21571 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21572 "--"
21573 ("Plot"
21574 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21575 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21577 (easy-menu-define org-org-menu org-mode-map "Org menu"
21578 '("Org"
21579 ("Show/Hide"
21580 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21581 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21582 ["Sparse Tree..." org-sparse-tree t]
21583 ["Reveal Context" org-reveal t]
21584 ["Show All" show-all t]
21585 "--"
21586 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21587 "--"
21588 ["New Heading" org-insert-heading t]
21589 ("Navigate Headings"
21590 ["Up" outline-up-heading t]
21591 ["Next" outline-next-visible-heading t]
21592 ["Previous" outline-previous-visible-heading t]
21593 ["Next Same Level" outline-forward-same-level t]
21594 ["Previous Same Level" outline-backward-same-level t]
21595 "--"
21596 ["Jump" org-goto t])
21597 ("Edit Structure"
21598 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21599 "--"
21600 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21601 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21602 "--"
21603 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21604 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21605 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21606 "--"
21607 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21608 "--"
21609 ["Copy visible text" org-copy-visible t]
21610 "--"
21611 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21612 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21613 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21614 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21615 "--"
21616 ["Sort Region/Children" org-sort t]
21617 "--"
21618 ["Convert to odd levels" org-convert-to-odd-levels t]
21619 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21620 ("Editing"
21621 ["Emphasis..." org-emphasize t]
21622 ["Edit Source Example" org-edit-special t]
21623 "--"
21624 ["Footnote new/jump" org-footnote-action t]
21625 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21626 ("Archive"
21627 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21628 "--"
21629 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21630 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21631 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21633 "--"
21634 ("Hyperlinks"
21635 ["Store Link (Global)" org-store-link t]
21636 ["Find existing link to here" org-occur-link-in-agenda-files t]
21637 ["Insert Link" org-insert-link t]
21638 ["Follow Link" org-open-at-point t]
21639 "--"
21640 ["Next link" org-next-link t]
21641 ["Previous link" org-previous-link t]
21642 "--"
21643 ["Descriptive Links"
21644 org-toggle-link-display
21645 :style radio
21646 :selected org-descriptive-links
21648 ["Literal Links"
21649 org-toggle-link-display
21650 :style radio
21651 :selected (not org-descriptive-links)])
21652 "--"
21653 ("TODO Lists"
21654 ["TODO/DONE/-" org-todo t]
21655 ("Select keyword"
21656 ["Next keyword" org-shiftright (org-at-heading-p)]
21657 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21658 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21659 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21660 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21661 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21662 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21663 "--"
21664 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21665 :selected org-enforce-todo-dependencies :style toggle :active t]
21666 "Settings for tree at point"
21667 ["Do Children sequentially" org-toggle-ordered-property :style radio
21668 :selected (org-entry-get nil "ORDERED")
21669 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21670 ["Do Children parallel" org-toggle-ordered-property :style radio
21671 :selected (not (org-entry-get nil "ORDERED"))
21672 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21673 "--"
21674 ["Set Priority" org-priority t]
21675 ["Priority Up" org-shiftup t]
21676 ["Priority Down" org-shiftdown t]
21677 "--"
21678 ["Get news from all feeds" org-feed-update-all t]
21679 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21680 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21681 ("TAGS and Properties"
21682 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21683 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21684 "--"
21685 ["Set property" org-set-property (not (org-before-first-heading-p))]
21686 ["Column view of properties" org-columns t]
21687 ["Insert Column View DBlock" org-insert-columns-dblock t])
21688 ("Dates and Scheduling"
21689 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21690 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21691 ("Change Date"
21692 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21693 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21694 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21695 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21696 ["Compute Time Range" org-evaluate-time-range t]
21697 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21698 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21699 "--"
21700 ["Custom time format" org-toggle-time-stamp-overlays
21701 :style radio :selected org-display-custom-times]
21702 "--"
21703 ["Goto Calendar" org-goto-calendar t]
21704 ["Date from Calendar" org-date-from-calendar t]
21705 "--"
21706 ["Start/Restart Timer" org-timer-start t]
21707 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21708 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21709 ["Insert Timer String" org-timer t]
21710 ["Insert Timer Item" org-timer-item t])
21711 ("Logging work"
21712 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21713 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21714 ["Clock out" org-clock-out t]
21715 ["Clock cancel" org-clock-cancel t]
21716 "--"
21717 ["Mark as default task" org-clock-mark-default-task t]
21718 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21719 ["Goto running clock" org-clock-goto t]
21720 "--"
21721 ["Display times" org-clock-display t]
21722 ["Create clock table" org-clock-report t]
21723 "--"
21724 ["Record DONE time"
21725 (progn (setq org-log-done (not org-log-done))
21726 (message "Switching to %s will %s record a timestamp"
21727 (car org-done-keywords)
21728 (if org-log-done "automatically" "not")))
21729 :style toggle :selected org-log-done])
21730 "--"
21731 ["Agenda Command..." org-agenda t]
21732 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21733 ("File List for Agenda")
21734 ("Special views current file"
21735 ["TODO Tree" org-show-todo-tree t]
21736 ["Check Deadlines" org-check-deadlines t]
21737 ["Timeline" org-timeline t]
21738 ["Tags/Property tree" org-match-sparse-tree t])
21739 "--"
21740 ["Export/Publish..." org-export-dispatch t]
21741 ("LaTeX"
21742 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21743 :selected org-cdlatex-mode]
21744 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21745 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21746 ["Modify math symbol" org-cdlatex-math-modify
21747 (org-inside-LaTeX-fragment-p)]
21748 ["Insert citation" org-reftex-citation t]
21749 "--"
21750 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21751 "--"
21752 ("MobileOrg"
21753 ["Push Files and Views" org-mobile-push t]
21754 ["Get Captured and Flagged" org-mobile-pull t]
21755 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21756 "--"
21757 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21758 "--"
21759 ("Documentation"
21760 ["Show Version" org-version t]
21761 ["Info Documentation" org-info t])
21762 ("Customize"
21763 ["Browse Org Group" org-customize t]
21764 "--"
21765 ["Expand This Menu" org-create-customize-menu
21766 (fboundp 'customize-menu-create)])
21767 ["Send bug report" org-submit-bug-report t]
21768 "--"
21769 ("Refresh/Reload"
21770 ["Refresh setup current buffer" org-mode-restart t]
21771 ["Reload Org (after update)" org-reload t]
21772 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21775 (defun org-info (&optional node)
21776 "Read documentation for Org-mode in the info system.
21777 With optional NODE, go directly to that node."
21778 (interactive)
21779 (info (format "(org)%s" (or node ""))))
21781 ;;;###autoload
21782 (defun org-submit-bug-report ()
21783 "Submit a bug report on Org-mode via mail.
21785 Don't hesitate to report any problems or inaccurate documentation.
21787 If you don't have setup sending mail from (X)Emacs, please copy the
21788 output buffer into your mail program, as it gives us important
21789 information about your Org-mode version and configuration."
21790 (interactive)
21791 (require 'reporter)
21792 (org-load-modules-maybe)
21793 (org-require-autoloaded-modules)
21794 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21795 (reporter-submit-bug-report
21796 "emacs-orgmode@gnu.org"
21797 (org-version nil 'full)
21798 (let (list)
21799 (save-window-excursion
21800 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21801 (delete-other-windows)
21802 (erase-buffer)
21803 (insert "You are about to submit a bug report to the Org-mode mailing list.
21805 We would like to add your full Org-mode and Outline configuration to the
21806 bug report. This greatly simplifies the work of the maintainer and
21807 other experts on the mailing list.
21809 HOWEVER, some variables you have customized may contain private
21810 information. The names of customers, colleagues, or friends, might
21811 appear in the form of file names, tags, todo states, or search strings.
21812 If you answer yes to the prompt, you might want to check and remove
21813 such private information before sending the email.")
21814 (add-text-properties (point-min) (point-max) '(face org-warning))
21815 (when (yes-or-no-p "Include your Org-mode configuration ")
21816 (mapatoms
21817 (lambda (v)
21818 (and (boundp v)
21819 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21820 (or (and (symbol-value v)
21821 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21822 (and
21823 (get v 'custom-type) (get v 'standard-value)
21824 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21825 (push v list)))))
21826 (kill-buffer (get-buffer "*Warn about privacy*"))
21827 list))
21828 nil nil
21829 "Remember to cover the basics, that is, what you expected to happen and
21830 what in fact did happen. You don't know how to make a good report? See
21832 http://orgmode.org/manual/Feedback.html#Feedback
21834 Your bug report will be posted to the Org-mode mailing list.
21835 ------------------------------------------------------------------------")
21836 (save-excursion
21837 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21838 (replace-match "\\1Bug: \\3 [\\2]")))))
21841 (defun org-install-agenda-files-menu ()
21842 (let ((bl (buffer-list)))
21843 (save-excursion
21844 (while bl
21845 (set-buffer (pop bl))
21846 (if (derived-mode-p 'org-mode) (setq bl nil)))
21847 (when (derived-mode-p 'org-mode)
21848 (easy-menu-change
21849 '("Org") "File List for Agenda"
21850 (append
21851 (list
21852 ["Edit File List" (org-edit-agenda-file-list) t]
21853 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21854 ["Remove Current File from List" org-remove-file t]
21855 ["Cycle through agenda files" org-cycle-agenda-files t]
21856 ["Occur in all agenda files" org-occur-in-agenda-files t]
21857 "--")
21858 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21860 ;;;; Documentation
21862 (defun org-require-autoloaded-modules ()
21863 (interactive)
21864 (mapc 'require
21865 '(org-agenda org-archive org-attach org-clock org-colview org-id
21866 org-table org-timer)))
21868 ;;;###autoload
21869 (defun org-reload (&optional uncompiled)
21870 "Reload all org lisp files.
21871 With prefix arg UNCOMPILED, load the uncompiled versions."
21872 (interactive "P")
21873 (require 'loadhist)
21874 (let* ((org-dir (org-find-library-dir "org"))
21875 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21876 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21877 (remove-re (mapconcat 'identity
21878 (mapcar (lambda (f) (concat "^" f "$"))
21879 (list (if (featurep 'xemacs)
21880 "org-colview"
21881 "org-colview-xemacs")
21882 "org" "org-loaddefs" "org-version"))
21883 "\\|"))
21884 (feats (delete-dups
21885 (mapcar 'file-name-sans-extension
21886 (mapcar 'file-name-nondirectory
21887 (delq nil
21888 (mapcar 'feature-file
21889 features))))))
21890 (lfeat (append
21891 (sort
21892 (setq feats
21893 (delq nil (mapcar
21894 (lambda (f)
21895 (if (and (string-match feature-re f)
21896 (not (string-match remove-re f)))
21897 f nil))
21898 feats)))
21899 'string-lessp)
21900 (list "org-version" "org")))
21901 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21902 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21903 load-uncore load-misses)
21904 (setq load-misses
21905 (delq 't
21906 (mapcar (lambda (f)
21907 (or (org-load-noerror-mustsuffix (concat org-dir f))
21908 (and (string= org-dir contrib-dir)
21909 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21910 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21911 (add-to-list 'load-uncore f 'append)
21914 lfeat)))
21915 (if load-uncore
21916 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21917 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21918 (if load-misses
21919 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21920 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21921 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21923 ;;;###autoload
21924 (defun org-customize ()
21925 "Call the customize function with org as argument."
21926 (interactive)
21927 (org-load-modules-maybe)
21928 (org-require-autoloaded-modules)
21929 (customize-browse 'org))
21931 (defun org-create-customize-menu ()
21932 "Create a full customization menu for Org-mode, insert it into the menu."
21933 (interactive)
21934 (org-load-modules-maybe)
21935 (org-require-autoloaded-modules)
21936 (if (fboundp 'customize-menu-create)
21937 (progn
21938 (easy-menu-change
21939 '("Org") "Customize"
21940 `(["Browse Org group" org-customize t]
21941 "--"
21942 ,(customize-menu-create 'org)
21943 ["Set" Custom-set t]
21944 ["Save" Custom-save t]
21945 ["Reset to Current" Custom-reset-current t]
21946 ["Reset to Saved" Custom-reset-saved t]
21947 ["Reset to Standard Settings" Custom-reset-standard t]))
21948 (message "\"Org\"-menu now contains full customization menu"))
21949 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21951 ;;;; Miscellaneous stuff
21953 ;;; Generally useful functions
21955 (defsubst org-get-at-eol (property n)
21956 "Get text property PROPERTY at the end of line less N characters."
21957 (get-text-property (- (point-at-eol) n) property))
21959 (defun org-find-text-property-in-string (prop s)
21960 "Return the first non-nil value of property PROP in string S."
21961 (or (get-text-property 0 prop s)
21962 (get-text-property (or (next-single-property-change 0 prop s) 0)
21963 prop s)))
21965 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21966 "Display the given MESSAGE as a warning."
21967 (if (fboundp 'display-warning)
21968 (display-warning 'org message
21969 (if (featurep 'xemacs) 'warning :warning))
21970 (let ((buf (get-buffer-create "*Org warnings*")))
21971 (with-current-buffer buf
21972 (goto-char (point-max))
21973 (insert "Warning (Org): " message)
21974 (unless (bolp)
21975 (newline)))
21976 (display-buffer buf)
21977 (sit-for 0))))
21979 (defun org-eval (form)
21980 "Eval FORM and return result."
21981 (condition-case error
21982 (eval form)
21983 (error (format "%%![Error: %s]" error))))
21985 (defun org-in-clocktable-p ()
21986 "Check if the cursor is in a clocktable."
21987 (let ((pos (point)) start)
21988 (save-excursion
21989 (end-of-line 1)
21990 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21991 (setq start (match-beginning 0))
21992 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21993 (>= (match-end 0) pos)
21994 start))))
21996 (defun org-in-verbatim-emphasis ()
21997 (save-match-data
21998 (and (org-in-regexp org-emph-re 2)
21999 (>= (point) (match-beginning 3))
22000 (<= (point) (match-end 4))
22001 (member (match-string 3) '("=" "~")))))
22003 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22004 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22005 (if (and marker (marker-buffer marker)
22006 (buffer-live-p (marker-buffer marker)))
22007 (progn
22008 (org-pop-to-buffer-same-window (marker-buffer marker))
22009 (if (or (> marker (point-max)) (< marker (point-min)))
22010 (widen))
22011 (goto-char marker)
22012 (org-show-context 'org-goto))
22013 (if bookmark
22014 (bookmark-jump bookmark)
22015 (error "Cannot find location"))))
22017 (defun org-quote-csv-field (s)
22018 "Quote field for inclusion in CSV material."
22019 (if (string-match "[\",]" s)
22020 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22023 (defun org-force-self-insert (N)
22024 "Needed to enforce self-insert under remapping."
22025 (interactive "p")
22026 (self-insert-command N))
22028 (defun org-string-width (s)
22029 "Compute width of string, ignoring invisible characters.
22030 This ignores character with invisibility property `org-link', and also
22031 characters with property `org-cwidth', because these will become invisible
22032 upon the next fontification round."
22033 (let (b l)
22034 (when (or (eq t buffer-invisibility-spec)
22035 (assq 'org-link buffer-invisibility-spec))
22036 (while (setq b (text-property-any 0 (length s)
22037 'invisible 'org-link s))
22038 (setq s (concat (substring s 0 b)
22039 (substring s (or (next-single-property-change
22040 b 'invisible s) (length s)))))))
22041 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22042 (setq s (concat (substring s 0 b)
22043 (substring s (or (next-single-property-change
22044 b 'org-cwidth s) (length s))))))
22045 (setq l (string-width s) b -1)
22046 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22047 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22050 (defun org-shorten-string (s maxlength)
22051 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22052 If the string is shorter or has length MAXLENGTH, just return the
22053 original string. If it is longer, the functions finds a space in the
22054 string, breaks this string off at that locations and adds three dots
22055 as ellipsis. Including the ellipsis, the string will not be longer
22056 than MAXLENGTH. If finding a good breaking point in the string does
22057 not work, the string is just chopped off in the middle of a word
22058 if necessary."
22059 (if (<= (length s) maxlength)
22061 (let* ((n (max (- maxlength 4) 1))
22062 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22063 (if (string-match re s)
22064 (concat (match-string 1 s) "...")
22065 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22067 (defun org-get-indentation (&optional line)
22068 "Get the indentation of the current line, interpreting tabs.
22069 When LINE is given, assume it represents a line and compute its indentation."
22070 (if line
22071 (if (string-match "^ *" (org-remove-tabs line))
22072 (match-end 0))
22073 (save-excursion
22074 (beginning-of-line 1)
22075 (skip-chars-forward " \t")
22076 (current-column))))
22078 (defun org-get-string-indentation (s)
22079 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22080 (let ((n -1) (i 0) (w tab-width) c)
22081 (catch 'exit
22082 (while (< (setq n (1+ n)) (length s))
22083 (setq c (aref s n))
22084 (cond ((= c ?\ ) (setq i (1+ i)))
22085 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22086 (t (throw 'exit t)))))
22089 (defun org-remove-tabs (s &optional width)
22090 "Replace tabulators in S with spaces.
22091 Assumes that s is a single line, starting in column 0."
22092 (setq width (or width tab-width))
22093 (while (string-match "\t" s)
22094 (setq s (replace-match
22095 (make-string
22096 (- (* width (/ (+ (match-beginning 0) width) width))
22097 (match-beginning 0)) ?\ )
22098 t t s)))
22101 (defun org-fix-indentation (line ind)
22102 "Fix indentation in LINE.
22103 IND is a cons cell with target and minimum indentation.
22104 If the current indentation in LINE is smaller than the minimum,
22105 leave it alone. If it is larger than ind, set it to the target."
22106 (let* ((l (org-remove-tabs line))
22107 (i (org-get-indentation l))
22108 (i1 (car ind)) (i2 (cdr ind)))
22109 (if (>= i i2) (setq l (substring line i2)))
22110 (if (> i1 0)
22111 (concat (make-string i1 ?\ ) l)
22112 l)))
22114 (defun org-remove-indentation (code &optional n)
22115 "Remove the maximum common indentation from the lines in CODE.
22116 N may optionally be the number of spaces to remove."
22117 (with-temp-buffer
22118 (insert code)
22119 (org-do-remove-indentation n)
22120 (buffer-string)))
22122 (defun org-do-remove-indentation (&optional n)
22123 "Remove the maximum common indentation from the buffer."
22124 (untabify (point-min) (point-max))
22125 (let ((min 10000) re)
22126 (if n
22127 (setq min n)
22128 (goto-char (point-min))
22129 (while (re-search-forward "^ *[^ \n]" nil t)
22130 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22131 (unless (or (= min 0) (= min 10000))
22132 (setq re (format "^ \\{%d\\}" min))
22133 (goto-char (point-min))
22134 (while (re-search-forward re nil t)
22135 (replace-match "")
22136 (end-of-line 1))
22137 min)))
22139 (defun org-fill-template (template alist)
22140 "Find each %key of ALIST in TEMPLATE and replace it."
22141 (let ((case-fold-search nil)
22142 entry key value)
22143 (setq alist (sort (copy-sequence alist)
22144 (lambda (a b) (< (length (car a)) (length (car b))))))
22145 (while (setq entry (pop alist))
22146 (setq template
22147 (replace-regexp-in-string
22148 (concat "%" (regexp-quote (car entry)))
22149 (or (cdr entry) "") template t t)))
22150 template))
22152 (defun org-base-buffer (buffer)
22153 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22154 (if (not buffer)
22155 buffer
22156 (or (buffer-base-buffer buffer)
22157 buffer)))
22159 (defun org-wrap (string &optional width lines)
22160 "Wrap string to either a number of lines, or a width in characters.
22161 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22162 that costs. If there is a word longer than WIDTH, the text is actually
22163 wrapped to the length of that word.
22164 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22165 many lines, whatever width that takes.
22166 The return value is a list of lines, without newlines at the end."
22167 (let* ((words (org-split-string string "[ \t\n]+"))
22168 (maxword (apply 'max (mapcar 'org-string-width words)))
22169 w ll)
22170 (cond (width
22171 (org-do-wrap words (max maxword width)))
22172 (lines
22173 (setq w maxword)
22174 (setq ll (org-do-wrap words maxword))
22175 (if (<= (length ll) lines)
22177 (setq ll words)
22178 (while (> (length ll) lines)
22179 (setq w (1+ w))
22180 (setq ll (org-do-wrap words w)))
22181 ll))
22182 (t (error "Cannot wrap this")))))
22184 (defun org-do-wrap (words width)
22185 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22186 (let (lines line)
22187 (while words
22188 (setq line (pop words))
22189 (while (and words (< (+ (length line) (length (car words))) width))
22190 (setq line (concat line " " (pop words))))
22191 (setq lines (push line lines)))
22192 (nreverse lines)))
22194 (defun org-split-string (string &optional separators)
22195 "Splits STRING into substrings at SEPARATORS.
22196 No empty strings are returned if there are matches at the beginning
22197 and end of string."
22198 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22199 (start 0)
22200 notfirst
22201 (list nil))
22202 (while (and (string-match rexp string
22203 (if (and notfirst
22204 (= start (match-beginning 0))
22205 (< start (length string)))
22206 (1+ start) start))
22207 (< (match-beginning 0) (length string)))
22208 (setq notfirst t)
22209 (or (eq (match-beginning 0) 0)
22210 (and (eq (match-beginning 0) (match-end 0))
22211 (eq (match-beginning 0) start))
22212 (setq list
22213 (cons (substring string start (match-beginning 0))
22214 list)))
22215 (setq start (match-end 0)))
22216 (or (eq start (length string))
22217 (setq list
22218 (cons (substring string start)
22219 list)))
22220 (nreverse list)))
22222 (defun org-quote-vert (s)
22223 "Replace \"|\" with \"\\vert\"."
22224 (while (string-match "|" s)
22225 (setq s (replace-match "\\vert" t t s)))
22228 (defun org-uuidgen-p (s)
22229 "Is S an ID created by UUIDGEN?"
22230 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22232 (defun org-in-src-block-p (&optional inside)
22233 "Whether point is in a code source block.
22234 When INSIDE is non-nil, don't consider we are within a src block
22235 when point is at #+BEGIN_SRC or #+END_SRC."
22236 (let ((case-fold-search t) ov)
22237 (or (and (eq (get-char-property (point) 'src-block) t))
22238 (and (not inside)
22239 (save-match-data
22240 (save-excursion
22241 (beginning-of-line)
22242 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22244 (defun org-context ()
22245 "Return a list of contexts of the current cursor position.
22246 If several contexts apply, all are returned.
22247 Each context entry is a list with a symbol naming the context, and
22248 two positions indicating start and end of the context. Possible
22249 contexts are:
22251 :headline anywhere in a headline
22252 :headline-stars on the leading stars in a headline
22253 :todo-keyword on a TODO keyword (including DONE) in a headline
22254 :tags on the TAGS in a headline
22255 :priority on the priority cookie in a headline
22256 :item on the first line of a plain list item
22257 :item-bullet on the bullet/number of a plain list item
22258 :checkbox on the checkbox in a plain list item
22259 :table in an org-mode table
22260 :table-special on a special filed in a table
22261 :table-table in a table.el table
22262 :clocktable in a clocktable
22263 :src-block in a source block
22264 :link on a hyperlink
22265 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22266 :target on a <<target>>
22267 :radio-target on a <<<radio-target>>>
22268 :latex-fragment on a LaTeX fragment
22269 :latex-preview on a LaTeX fragment with overlaid preview image
22271 This function expects the position to be visible because it uses font-lock
22272 faces as a help to recognize the following contexts: :table-special, :link,
22273 and :keyword."
22274 (let* ((f (get-text-property (point) 'face))
22275 (faces (if (listp f) f (list f)))
22276 (case-fold-search t)
22277 (p (point)) clist o)
22278 ;; First the large context
22279 (cond
22280 ((org-at-heading-p t)
22281 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22282 (when (progn
22283 (beginning-of-line 1)
22284 (looking-at org-todo-line-tags-regexp))
22285 (push (org-point-in-group p 1 :headline-stars) clist)
22286 (push (org-point-in-group p 2 :todo-keyword) clist)
22287 (push (org-point-in-group p 4 :tags) clist))
22288 (goto-char p)
22289 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22290 (if (looking-at "\\[#[A-Z0-9]\\]")
22291 (push (org-point-in-group p 0 :priority) clist)))
22293 ((org-at-item-p)
22294 (push (org-point-in-group p 2 :item-bullet) clist)
22295 (push (list :item (point-at-bol)
22296 (save-excursion (org-end-of-item) (point)))
22297 clist)
22298 (and (org-at-item-checkbox-p)
22299 (push (org-point-in-group p 0 :checkbox) clist)))
22301 ((org-at-table-p)
22302 (push (list :table (org-table-begin) (org-table-end)) clist)
22303 (if (memq 'org-formula faces)
22304 (push (list :table-special
22305 (previous-single-property-change p 'face)
22306 (next-single-property-change p 'face)) clist)))
22307 ((org-at-table-p 'any)
22308 (push (list :table-table) clist)))
22309 (goto-char p)
22311 (let ((case-fold-search t))
22312 ;; New the "medium" contexts: clocktables, source blocks
22313 (cond ((org-in-clocktable-p)
22314 (push (list :clocktable
22315 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22316 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22317 (match-beginning 1))
22318 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22319 (match-end 0))) clist))
22320 ((org-in-src-block-p)
22321 (push (list :src-block
22322 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22323 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22324 (match-beginning 1))
22325 (and (search-forward "#+END_SRC" nil t)
22326 (match-beginning 0))) clist))))
22327 (goto-char p)
22329 ;; Now the small context
22330 (cond
22331 ((org-at-timestamp-p)
22332 (push (org-point-in-group p 0 :timestamp) clist))
22333 ((memq 'org-link faces)
22334 (push (list :link
22335 (previous-single-property-change p 'face)
22336 (next-single-property-change p 'face)) clist))
22337 ((memq 'org-special-keyword faces)
22338 (push (list :keyword
22339 (previous-single-property-change p 'face)
22340 (next-single-property-change p 'face)) clist))
22341 ((org-at-target-p)
22342 (push (org-point-in-group p 0 :target) clist)
22343 (goto-char (1- (match-beginning 0)))
22344 (if (looking-at org-radio-target-regexp)
22345 (push (org-point-in-group p 0 :radio-target) clist))
22346 (goto-char p))
22347 ((setq o (car (delq nil
22348 (mapcar
22349 (lambda (x)
22350 (if (memq x org-latex-fragment-image-overlays) x))
22351 (overlays-at (point))))))
22352 (push (list :latex-fragment
22353 (overlay-start o) (overlay-end o)) clist)
22354 (push (list :latex-preview
22355 (overlay-start o) (overlay-end o)) clist))
22356 ((org-inside-LaTeX-fragment-p)
22357 ;; FIXME: positions wrong.
22358 (push (list :latex-fragment (point) (point)) clist)))
22360 (setq clist (nreverse (delq nil clist)))
22361 clist))
22363 (defun org-in-regexp (re &optional nlines visually)
22364 "Check if point is inside a match of RE.
22366 Normally only the current line is checked, but you can include
22367 NLINES extra lines after point into the search. If VISUALLY is
22368 set, require that the cursor is not after the match but really
22369 on, so that the block visually is on the match."
22370 (catch 'exit
22371 (let ((pos (point))
22372 (eol (point-at-eol (+ 1 (or nlines 0))))
22373 (inc (if visually 1 0)))
22374 (save-excursion
22375 (beginning-of-line (- 1 (or nlines 0)))
22376 (while (re-search-forward re eol t)
22377 (if (and (<= (match-beginning 0) pos)
22378 (>= (+ inc (match-end 0)) pos))
22379 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22380 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22381 "Org mode 8.3")
22383 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22384 "Non-nil when point is between matches of START-RE and END-RE.
22386 Also return a non-nil value when point is on one of the matches.
22388 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22389 buffer positions. Default values are the positions of headlines
22390 surrounding the point.
22392 The functions returns a cons cell whose car (resp. cdr) is the
22393 position before START-RE (resp. after END-RE)."
22394 (save-match-data
22395 (let ((pos (point))
22396 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22397 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22398 beg end)
22399 (save-excursion
22400 ;; Point is on a block when on START-RE or if START-RE can be
22401 ;; found before it...
22402 (and (or (org-in-regexp start-re)
22403 (re-search-backward start-re limit-up t))
22404 (setq beg (match-beginning 0))
22405 ;; ... and END-RE after it...
22406 (goto-char (match-end 0))
22407 (re-search-forward end-re limit-down t)
22408 (> (setq end (match-end 0)) pos)
22409 ;; ... without another START-RE in-between.
22410 (goto-char (match-beginning 0))
22411 (not (re-search-backward start-re (1+ beg) t))
22412 ;; Return value.
22413 (cons beg end))))))
22415 (defun org-in-block-p (names)
22416 "Non-nil when point belongs to a block whose name belongs to NAMES.
22418 NAMES is a list of strings containing names of blocks.
22420 Return first block name matched, or nil. Beware that in case of
22421 nested blocks, the returned name may not belong to the closest
22422 block from point."
22423 (save-match-data
22424 (catch 'exit
22425 (let ((case-fold-search t)
22426 (lim-up (save-excursion (outline-previous-heading)))
22427 (lim-down (save-excursion (outline-next-heading))))
22428 (mapc (lambda (name)
22429 (let ((n (regexp-quote name)))
22430 (when (org-between-regexps-p
22431 (concat "^[ \t]*#\\+begin_" n)
22432 (concat "^[ \t]*#\\+end_" n)
22433 lim-up lim-down)
22434 (throw 'exit n))))
22435 names))
22436 nil)))
22438 (defun org-occur-in-agenda-files (regexp &optional nlines)
22439 "Call `multi-occur' with buffers for all agenda files."
22440 (interactive "sOrg-files matching: \np")
22441 (let* ((files (org-agenda-files))
22442 (tnames (mapcar 'file-truename files))
22443 (extra org-agenda-text-search-extra-files)
22445 (when (eq (car extra) 'agenda-archives)
22446 (setq extra (cdr extra))
22447 (setq files (org-add-archive-files files)))
22448 (while (setq f (pop extra))
22449 (unless (member (file-truename f) tnames)
22450 (add-to-list 'files f 'append)
22451 (add-to-list 'tnames (file-truename f) 'append)))
22452 (multi-occur
22453 (mapcar (lambda (x)
22454 (with-current-buffer
22455 (or (get-file-buffer x) (find-file-noselect x))
22456 (widen)
22457 (current-buffer)))
22458 files)
22459 regexp)))
22461 (if (boundp 'occur-mode-find-occurrence-hook)
22462 ;; Emacs 23
22463 (add-hook 'occur-mode-find-occurrence-hook
22464 (lambda ()
22465 (when (derived-mode-p 'org-mode)
22466 (org-reveal))))
22467 ;; Emacs 22
22468 (defadvice occur-mode-goto-occurrence
22469 (after org-occur-reveal activate)
22470 (and (derived-mode-p 'org-mode) (org-reveal)))
22471 (defadvice occur-mode-goto-occurrence-other-window
22472 (after org-occur-reveal activate)
22473 (and (derived-mode-p 'org-mode) (org-reveal)))
22474 (defadvice occur-mode-display-occurrence
22475 (after org-occur-reveal activate)
22476 (when (derived-mode-p 'org-mode)
22477 (let ((pos (occur-mode-find-occurrence)))
22478 (with-current-buffer (marker-buffer pos)
22479 (save-excursion
22480 (goto-char pos)
22481 (org-reveal)))))))
22483 (defun org-occur-link-in-agenda-files ()
22484 "Create a link and search for it in the agendas.
22485 The link is not stored in `org-stored-links', it is just created
22486 for the search purpose."
22487 (interactive)
22488 (let ((link (condition-case nil
22489 (org-store-link nil)
22490 (error "Unable to create a link to here"))))
22491 (org-occur-in-agenda-files (regexp-quote link))))
22493 (defun org-reverse-string (string)
22494 "Return the reverse of STRING."
22495 (apply 'string (reverse (string-to-list string))))
22497 ;; defsubst org-uniquify must be defined before first use
22499 (defun org-uniquify-alist (alist)
22500 "Merge elements of ALIST with the same key.
22502 For example, in this alist:
22504 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22505 => '((a 1 3) (b 2))
22507 merge (a 1) and (a 3) into (a 1 3).
22509 The function returns the new ALIST."
22510 (let (rtn)
22511 (mapc
22512 (lambda (e)
22513 (let (n)
22514 (if (not (assoc (car e) rtn))
22515 (push e rtn)
22516 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22517 (setq rtn (assq-delete-all (car e) rtn))
22518 (push n rtn))))
22519 alist)
22520 rtn))
22522 (defun org-delete-all (elts list)
22523 "Remove all elements in ELTS from LIST."
22524 (while elts
22525 (setq list (delete (pop elts) list)))
22526 list)
22528 (defun org-count (cl-item cl-seq)
22529 "Count the number of occurrences of ITEM in SEQ.
22530 Taken from `count' in cl-seq.el with all keyword arguments removed."
22531 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22532 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22533 (while (< cl-start cl-end)
22534 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22535 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22536 (setq cl-start (1+ cl-start)))
22537 cl-count))
22539 (defun org-remove-if (predicate seq)
22540 "Remove everything from SEQ that fulfills PREDICATE."
22541 (let (res e)
22542 (while seq
22543 (setq e (pop seq))
22544 (if (not (funcall predicate e)) (push e res)))
22545 (nreverse res)))
22547 (defun org-remove-if-not (predicate seq)
22548 "Remove everything from SEQ that does not fulfill PREDICATE."
22549 (let (res e)
22550 (while seq
22551 (setq e (pop seq))
22552 (if (funcall predicate e) (push e res)))
22553 (nreverse res)))
22555 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22556 "Reduce two-argument FUNCTION across SEQ.
22557 Taken from `reduce' in cl-seq.el with all keyword arguments but
22558 \":initial-value\" removed."
22559 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22560 (cadr (memq :initial-value cl-keys)))
22561 (cl-seq (pop cl-seq))
22562 (t (funcall cl-func)))))
22563 (while cl-seq
22564 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22565 cl-accum))
22567 (defun org-every (pred seq)
22568 "Return true if PREDICATE is true of every element of SEQ.
22569 Adapted from `every' in cl.el."
22570 (catch 'org-every
22571 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22574 (defun org-some (pred seq)
22575 "Return true if PREDICATE is true of any element of SEQ.
22576 Adapted from `some' in cl.el."
22577 (catch 'org-some
22578 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22579 nil))
22581 (defun org-back-over-empty-lines ()
22582 "Move backwards over whitespace, to the beginning of the first empty line.
22583 Returns the number of empty lines passed."
22584 (let ((pos (point)))
22585 (if (cdr (assoc 'heading org-blank-before-new-entry))
22586 (skip-chars-backward " \t\n\r")
22587 (unless (eobp)
22588 (forward-line -1)))
22589 (beginning-of-line 2)
22590 (goto-char (min (point) pos))
22591 (count-lines (point) pos)))
22593 (defun org-skip-whitespace ()
22594 (skip-chars-forward " \t\n\r"))
22596 (defun org-point-in-group (point group &optional context)
22597 "Check if POINT is in match-group GROUP.
22598 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22599 match. If the match group does not exist or point is not inside it,
22600 return nil."
22601 (and (match-beginning group)
22602 (>= point (match-beginning group))
22603 (<= point (match-end group))
22604 (if context
22605 (list context (match-beginning group) (match-end group))
22606 t)))
22608 (defun org-switch-to-buffer-other-window (&rest args)
22609 "Switch to buffer in a second window on the current frame.
22610 In particular, do not allow pop-up frames.
22611 Returns the newly created buffer."
22612 (org-no-popups
22613 (apply 'switch-to-buffer-other-window args)))
22615 (defun org-combine-plists (&rest plists)
22616 "Create a single property list from all plists in PLISTS.
22617 The process starts by copying the first list, and then setting properties
22618 from the other lists. Settings in the last list are the most significant
22619 ones and overrule settings in the other lists."
22620 (let ((rtn (copy-sequence (pop plists)))
22621 p v ls)
22622 (while plists
22623 (setq ls (pop plists))
22624 (while ls
22625 (setq p (pop ls) v (pop ls))
22626 (setq rtn (plist-put rtn p v))))
22627 rtn))
22629 (defun org-replace-escapes (string table)
22630 "Replace %-escapes in STRING with values in TABLE.
22631 TABLE is an association list with keys like \"%a\" and string values.
22632 The sequences in STRING may contain normal field width and padding information,
22633 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22634 so values can contain further %-escapes if they are define later in TABLE."
22635 (let ((tbl (copy-alist table))
22636 (case-fold-search nil)
22637 (pchg 0)
22638 e re rpl)
22639 (while (setq e (pop tbl))
22640 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22641 (when (and (cdr e) (string-match re (cdr e)))
22642 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22643 (safe "SREF"))
22644 (add-text-properties 0 3 (list 'sref sref) safe)
22645 (setcdr e (replace-match safe t t (cdr e)))))
22646 (while (string-match re string)
22647 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22648 (cdr e)))
22649 (setq string (replace-match rpl t t string))))
22650 (while (setq pchg (next-property-change pchg string))
22651 (let ((sref (get-text-property pchg 'sref string)))
22652 (when (and sref (string-match "SREF" string pchg))
22653 (setq string (replace-match sref t t string)))))
22654 string))
22656 (defun org-sublist (list start end)
22657 "Return a section of LIST, from START to END.
22658 Counting starts at 1."
22659 (let (rtn (c start))
22660 (setq list (nthcdr (1- start) list))
22661 (while (and list (<= c end))
22662 (push (pop list) rtn)
22663 (setq c (1+ c)))
22664 (nreverse rtn)))
22666 (defun org-find-base-buffer-visiting (file)
22667 "Like `find-buffer-visiting' but always return the base buffer and
22668 not an indirect buffer."
22669 (let ((buf (or (get-file-buffer file)
22670 (find-buffer-visiting file))))
22671 (if buf
22672 (or (buffer-base-buffer buf) buf)
22673 nil)))
22675 (defun org-image-file-name-regexp (&optional extensions)
22676 "Return regexp matching the file names of images.
22677 If EXTENSIONS is given, only match these."
22678 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22679 (image-file-name-regexp)
22680 (let ((image-file-name-extensions
22681 (or extensions
22682 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22683 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22684 (concat "\\."
22685 (regexp-opt (nconc (mapcar 'upcase
22686 image-file-name-extensions)
22687 image-file-name-extensions)
22689 "\\'"))))
22691 (defun org-file-image-p (file &optional extensions)
22692 "Return non-nil if FILE is an image."
22693 (save-match-data
22694 (string-match (org-image-file-name-regexp extensions) file)))
22696 (defun org-get-cursor-date (&optional with-time)
22697 "Return the date at cursor in as a time.
22698 This works in the calendar and in the agenda, anywhere else it just
22699 returns the current time.
22700 If WITH-TIME is non-nil, returns the time of the event at point (in
22701 the agenda) or the current time of the day."
22702 (let (date day defd tp tm hod mod)
22703 (when with-time
22704 (setq tp (get-text-property (point) 'time))
22705 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22706 (setq hod (string-to-number (match-string 1 tp))
22707 mod (string-to-number (match-string 2 tp))))
22708 (or tp (setq hod (nth 2 (decode-time (current-time)))
22709 mod (nth 1 (decode-time (current-time))))))
22710 (cond
22711 ((eq major-mode 'calendar-mode)
22712 (setq date (calendar-cursor-to-date)
22713 defd (encode-time 0 (or mod 0) (or hod 0)
22714 (nth 1 date) (nth 0 date) (nth 2 date))))
22715 ((eq major-mode 'org-agenda-mode)
22716 (setq day (get-text-property (point) 'day))
22717 (if day
22718 (setq date (calendar-gregorian-from-absolute day)
22719 defd (encode-time 0 (or mod 0) (or hod 0)
22720 (nth 1 date) (nth 0 date) (nth 2 date))))))
22721 (or defd (current-time))))
22723 (defun org-mark-subtree (&optional up)
22724 "Mark the current subtree.
22725 This puts point at the start of the current subtree, and mark at
22726 the end. If a numeric prefix UP is given, move up into the
22727 hierarchy of headlines by UP levels before marking the subtree."
22728 (interactive "P")
22729 (org-with-limited-levels
22730 (cond ((org-at-heading-p) (beginning-of-line))
22731 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22732 (t (outline-previous-visible-heading 1))))
22733 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22734 (if (org-called-interactively-p 'any)
22735 (call-interactively 'org-mark-element)
22736 (org-mark-element)))
22739 ;;; Indentation
22741 (defun org--get-expected-indentation (element contentsp)
22742 "Expected indentation column for current line, according to ELEMENT.
22743 ELEMENT is an element containing point. CONTENTSP is non-nil
22744 when indentation is to be computed according to contents of
22745 ELEMENT."
22746 (let ((type (org-element-type element))
22747 (start (org-element-property :begin element)))
22748 (org-with-wide-buffer
22749 (cond
22750 (contentsp
22751 (case type
22752 ((diary-sexp footnote-definition) 0)
22753 ((headline inlinetask nil)
22754 (if (not org-adapt-indentation) 0
22755 (let ((level (org-current-level)))
22756 (if level (1+ level) 0))))
22757 (item
22758 (org-list-item-body-column
22759 (org-element-property :post-affiliated element)))
22760 (plain-list
22761 (save-excursion
22762 (goto-char (org-element-property :post-affiliated element))
22763 (org-get-indentation)))
22764 (otherwise
22765 (goto-char start)
22766 (org-get-indentation))))
22767 ((memq type '(headline inlinetask nil))
22768 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22769 (org--get-expected-indentation element t)
22771 ((memq type '(diary-sexp footnote-definition)) 0)
22772 ;; First paragraph of a footnote definition or an item.
22773 ;; Indent like parent.
22774 ((< (line-beginning-position) start)
22775 (org--get-expected-indentation
22776 (org-element-property :parent element) t))
22777 ;; At first line: indent according to previous sibling, if any,
22778 ;; ignoring footnote definitions and inline tasks, or parent's
22779 ;; contents.
22780 ((= (line-beginning-position) start)
22781 (catch 'exit
22782 (while t
22783 (if (= (point-min) start) (throw 'exit 0)
22784 (goto-char (1- start))
22785 (let* ((previous (org-element-at-point))
22786 (parent previous))
22787 (while (and parent (<= (org-element-property :end parent) start))
22788 (setq previous parent
22789 parent (org-element-property :parent parent)))
22790 (cond
22791 ((not previous) (throw 'exit 0))
22792 ((> (org-element-property :end previous) start)
22793 (throw 'exit (org--get-expected-indentation previous t)))
22794 ((memq (org-element-type previous)
22795 '(footnote-definition inlinetask))
22796 (setq start (org-element-property :begin previous)))
22797 (t (goto-char (org-element-property :begin previous))
22798 (throw 'exit
22799 (if (bolp) (org-get-indentation)
22800 ;; At first paragraph in an item or
22801 ;; a footnote definition.
22802 (org--get-expected-indentation
22803 (org-element-property :parent previous) t))))))))))
22804 ;; Otherwise, move to the first non-blank line above.
22806 (beginning-of-line)
22807 (let ((pos (point)))
22808 (skip-chars-backward " \r\t\n")
22809 (cond
22810 ;; Two blank lines end a footnote definition or a plain
22811 ;; list. When we indent an empty line after them, the
22812 ;; containing list or footnote definition is over, so it
22813 ;; qualifies as a previous sibling. Therefore, we indent
22814 ;; like its first line.
22815 ((and (memq type '(footnote-definition plain-list))
22816 (> (count-lines (point) pos) 2))
22817 (goto-char start)
22818 (org-get-indentation))
22819 ;; Line above is the first one of a paragraph at the
22820 ;; beginning of an item or a footnote definition. Indent
22821 ;; like parent.
22822 ((< (line-beginning-position) start)
22823 (org--get-expected-indentation
22824 (org-element-property :parent element) t))
22825 ;; POS is after contents in a greater element. Indent like
22826 ;; the beginning of the element.
22828 ;; As a special case, if point is at the end of a footnote
22829 ;; definition or an item, indent like the very last element
22830 ;; within.
22831 ((and (not (eq type 'paragraph))
22832 (let ((cend (org-element-property :contents-end element)))
22833 (and cend (<= cend pos))))
22834 (if (memq type '(footnote-definition item plain-list))
22835 (org--get-expected-indentation (org-element-at-point) nil)
22836 (goto-char start)
22837 (org-get-indentation)))
22838 ;; In any other case, indent like the current line.
22839 (t (org-get-indentation)))))))))
22841 (defun org--align-node-property ()
22842 "Align node property at point.
22843 Alignment is done according to `org-property-format', which see."
22844 (when (save-excursion
22845 (beginning-of-line)
22846 (looking-at org-property-re))
22847 (replace-match
22848 (concat (match-string 4)
22849 (org-trim
22850 (format org-property-format (match-string 1) (match-string 3))))
22851 t t)))
22853 (defun org-indent-line ()
22854 "Indent line depending on context.
22856 Indentation is done according to the following rules:
22858 - Footnote definitions, diary sexps, headlines and inline tasks
22859 have to start at column 0.
22861 - On the very first line of an element, consider, in order, the
22862 next rules until one matches:
22864 1. If there's a sibling element before, ignoring footnote
22865 definitions and inline tasks, indent like its first line.
22867 2. If element has a parent, indent like its contents. More
22868 precisely, if parent is an item, indent after the
22869 description part, if any, or the bullet (see
22870 `org-list-description-max-indent'). Else, indent like
22871 parent's first line.
22873 3. Otherwise, indent relatively to current level, if
22874 `org-adapt-indentation' is non-nil, or to left margin.
22876 - On a blank line at the end of an element, indent according to
22877 the type of the element. More precisely
22879 1. If element is a plain list, an item, or a footnote
22880 definition, indent like the very last element within.
22882 2. If element is a paragraph, indent like its last non blank
22883 line.
22885 3. Otherwise, indent like its very first line.
22887 - In the code part of a source block, use language major mode
22888 to indent current line if `org-src-tab-acts-natively' is
22889 non-nil. If it is nil, do nothing.
22891 - Otherwise, indent like the first non-blank line above.
22893 The function doesn't indent an item as it could break the whole
22894 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22895 \\[org-shiftmetaright].
22897 Also align node properties according to `org-property-format'."
22898 (interactive)
22899 (cond
22900 (orgstruct-is-++
22901 (let ((indent-line-function
22902 (cadadr (assq 'indent-line-function org-fb-vars))))
22903 (indent-according-to-mode)))
22904 ((org-at-heading-p) 'noindent)
22906 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22907 (type (org-element-type element)))
22908 (cond ((and (memq type '(plain-list item))
22909 (= (line-beginning-position)
22910 (org-element-property :post-affiliated element)))
22911 'noindent)
22912 ((and (eq type 'src-block)
22913 org-src-tab-acts-natively
22914 (> (line-beginning-position)
22915 (org-element-property :post-affiliated element))
22916 (< (line-beginning-position)
22917 (org-with-wide-buffer
22918 (goto-char (org-element-property :end element))
22919 (skip-chars-backward " \r\t\n")
22920 (line-beginning-position))))
22921 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22923 (let ((column (org--get-expected-indentation element nil)))
22924 ;; Preserve current column.
22925 (if (<= (current-column) (current-indentation))
22926 (org-indent-line-to column)
22927 (save-excursion (org-indent-line-to column))))
22928 ;; Align node property. Also preserve current column.
22929 (when (eq type 'node-property)
22930 (let ((column (current-column)))
22931 (org--align-node-property)
22932 (org-move-to-column column)))))))))
22934 (defun org-indent-region (start end)
22935 "Indent each non-blank line in the region.
22936 Called from a program, START and END specify the region to
22937 indent. The function will not indent contents of example blocks,
22938 verse blocks and export blocks as leading white spaces are
22939 assumed to be significant there."
22940 (interactive "r")
22941 (save-excursion
22942 (goto-char start)
22943 (skip-chars-forward " \r\t\n")
22944 (unless (eobp) (beginning-of-line))
22945 (let ((indent-to
22946 (lambda (ind pos)
22947 ;; Set IND as indentation for all lines between point and
22948 ;; POS or END, whichever comes first. Blank lines are
22949 ;; ignored. Leave point after POS once done.
22950 (let ((limit (copy-marker (min end pos))))
22951 (while (< (point) limit)
22952 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22953 (forward-line))
22954 (set-marker limit nil))))
22955 (end (copy-marker end)))
22956 (while (< (point) end)
22957 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22958 (let* ((element (org-element-at-point))
22959 (type (org-element-type element))
22960 (element-end (copy-marker (org-element-property :end element)))
22961 (ind (org--get-expected-indentation element nil)))
22962 (cond
22963 ((or (memq type '(paragraph table table-row))
22964 (not (or (org-element-property :contents-begin element)
22965 (memq type
22966 '(example-block export-block src-block)))))
22967 ;; Elements here are indented as a single block. Also
22968 ;; align node properties.
22969 (when (eq type 'node-property)
22970 (org--align-node-property)
22971 (beginning-of-line))
22972 (funcall indent-to ind element-end))
22974 ;; Elements in this category consist of three parts:
22975 ;; before the contents, the contents, and after the
22976 ;; contents. The contents are treated specially,
22977 ;; according to the element type, or not indented at
22978 ;; all. Other parts are indented as a single block.
22979 (let* ((post (copy-marker
22980 (org-element-property :post-affiliated element)))
22981 (cbeg
22982 (copy-marker
22983 (cond
22984 ((not (org-element-property :contents-begin element))
22985 ;; Fake contents for source blocks.
22986 (org-with-wide-buffer
22987 (goto-char post)
22988 (forward-line)
22989 (point)))
22990 ((memq type '(footnote-definition item plain-list))
22991 ;; Contents in these elements could start on
22992 ;; the same line as the beginning of the
22993 ;; element. Make sure we start indenting
22994 ;; from the second line.
22995 (org-with-wide-buffer
22996 (goto-char post)
22997 (end-of-line)
22998 (skip-chars-forward " \r\t\n")
22999 (if (eobp) (point) (line-beginning-position))))
23000 (t (org-element-property :contents-begin element)))))
23001 (cend (copy-marker
23002 (or (org-element-property :contents-end element)
23003 ;; Fake contents for source blocks.
23004 (org-with-wide-buffer
23005 (goto-char element-end)
23006 (skip-chars-backward " \r\t\n")
23007 (line-beginning-position)))
23008 t)))
23009 ;; Do not change items indentation individually as it
23010 ;; might break the list as a whole. On the other
23011 ;; hand, when at a plain list, indent it as a whole.
23012 (cond ((eq type 'plain-list)
23013 (let ((offset (- ind (org-get-indentation))))
23014 (unless (zerop offset)
23015 (indent-rigidly (org-element-property :begin element)
23016 (org-element-property :end element)
23017 offset))
23018 (goto-char cbeg)))
23019 ((eq type 'item) (goto-char cbeg))
23020 (t (funcall indent-to ind cbeg)))
23021 (when (< (point) end)
23022 (case type
23023 ((example-block export-block verse-block))
23024 (src-block
23025 ;; In a source block, indent source code
23026 ;; according to language major mode, but only if
23027 ;; `org-src-tab-acts-natively' is non-nil.
23028 (when (and (< (point) end) org-src-tab-acts-natively)
23029 (ignore-errors
23030 (org-babel-do-in-edit-buffer
23031 (indent-region (point-min) (point-max))))))
23032 (t (org-indent-region (point) (min cend end))))
23033 (goto-char (min cend end))
23034 (when (< (point) end) (funcall indent-to ind element-end)))
23035 (set-marker post nil)
23036 (set-marker cbeg nil)
23037 (set-marker cend nil))))
23038 (set-marker element-end nil))))
23039 (set-marker end nil))))
23041 (defun org-indent-drawer ()
23042 "Indent the drawer at point."
23043 (interactive)
23044 (unless (save-excursion
23045 (beginning-of-line)
23046 (org-looking-at-p org-drawer-regexp))
23047 (user-error "Not at a drawer"))
23048 (let ((element (org-element-at-point)))
23049 (unless (memq (org-element-type element) '(drawer property-drawer))
23050 (user-error "Not at a drawer"))
23051 (org-with-wide-buffer
23052 (org-indent-region (org-element-property :begin element)
23053 (org-element-property :end element))))
23054 (message "Drawer at point indented"))
23056 (defun org-indent-block ()
23057 "Indent the block at point."
23058 (interactive)
23059 (unless (save-excursion
23060 (beginning-of-line)
23061 (let ((case-fold-search t))
23062 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23063 (user-error "Not at a block"))
23064 (let ((element (org-element-at-point)))
23065 (unless (memq (org-element-type element)
23066 '(comment-block center-block dynamic-block example-block
23067 export-block quote-block special-block
23068 src-block verse-block))
23069 (user-error "Not at a block"))
23070 (org-with-wide-buffer
23071 (org-indent-region (org-element-property :begin element)
23072 (org-element-property :end element))))
23073 (message "Block at point indented"))
23076 ;;; Filling
23078 ;; We use our own fill-paragraph and auto-fill functions.
23080 ;; `org-fill-paragraph' relies on adaptive filling and context
23081 ;; checking. Appropriate `fill-prefix' is computed with
23082 ;; `org-adaptive-fill-function'.
23084 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23085 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23086 ;; `org-adaptive-fill-function' value. Internally,
23087 ;; `org-comment-line-break-function' breaks the line.
23089 ;; `org-setup-filling' installs filling and auto-filling related
23090 ;; variables during `org-mode' initialization.
23092 (defvar org-element-paragraph-separate) ; org-element.el
23093 (defun org-setup-filling ()
23094 (require 'org-element)
23095 ;; Prevent auto-fill from inserting unwanted new items.
23096 (when (boundp 'fill-nobreak-predicate)
23097 (org-set-local
23098 'fill-nobreak-predicate
23099 (org-uniquify
23100 (append fill-nobreak-predicate
23101 '(org-fill-line-break-nobreak-p
23102 org-fill-paragraph-with-timestamp-nobreak-p)))))
23103 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23104 (org-set-local 'paragraph-start paragraph-ending)
23105 (org-set-local 'paragraph-separate paragraph-ending))
23106 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23107 (org-set-local 'auto-fill-inhibit-regexp nil)
23108 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23109 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23110 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23112 (defun org-fill-line-break-nobreak-p ()
23113 "Non-nil when a new line at point would create an Org line break."
23114 (save-excursion
23115 (skip-chars-backward "[ \t]")
23116 (skip-chars-backward "\\\\")
23117 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23119 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23120 "Non-nil when a new line at point would split a timestamp."
23121 (and (org-at-timestamp-p t)
23122 (not (looking-at org-ts-regexp-both))))
23124 (declare-function message-in-body-p "message" ())
23125 (defvar orgtbl-line-start-regexp) ; From org-table.el
23126 (defun org-adaptive-fill-function ()
23127 "Compute a fill prefix for the current line.
23128 Return fill prefix, as a string, or nil if current line isn't
23129 meant to be filled. For convenience, if `adaptive-fill-regexp'
23130 matches in paragraphs or comments, use it."
23131 (catch 'exit
23132 (when (derived-mode-p 'message-mode)
23133 (save-excursion
23134 (beginning-of-line)
23135 (cond ((not (message-in-body-p)) (throw 'exit nil))
23136 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23137 ((looking-at message-cite-prefix-regexp)
23138 (throw 'exit (match-string-no-properties 0)))
23139 ((looking-at org-outline-regexp)
23140 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23141 (org-with-wide-buffer
23142 (unless (org-at-heading-p)
23143 (let* ((p (line-beginning-position))
23144 (element (save-excursion
23145 (beginning-of-line)
23146 (org-element-at-point)))
23147 (type (org-element-type element))
23148 (post-affiliated (org-element-property :post-affiliated element)))
23149 (unless (< p post-affiliated)
23150 (case type
23151 (comment
23152 (save-excursion
23153 (beginning-of-line)
23154 (looking-at "[ \t]*")
23155 (concat (match-string 0) "# ")))
23156 (footnote-definition "")
23157 ((item plain-list)
23158 (make-string (org-list-item-body-column post-affiliated) ?\s))
23159 (paragraph
23160 ;; Fill prefix is usually the same as the current line,
23161 ;; unless the paragraph is at the beginning of an item.
23162 (let ((parent (org-element-property :parent element)))
23163 (save-excursion
23164 (beginning-of-line)
23165 (cond ((eq (org-element-type parent) 'item)
23166 (make-string (org-list-item-body-column
23167 (org-element-property :begin parent))
23168 ?\s))
23169 ((and adaptive-fill-regexp
23170 ;; Locally disable
23171 ;; `adaptive-fill-function' to let
23172 ;; `fill-context-prefix' handle
23173 ;; `adaptive-fill-regexp' variable.
23174 (let (adaptive-fill-function)
23175 (fill-context-prefix
23176 post-affiliated
23177 (org-element-property :end element)))))
23178 ((looking-at "[ \t]+") (match-string 0))
23179 (t "")))))
23180 (comment-block
23181 ;; Only fill contents if P is within block boundaries.
23182 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23183 (forward-line)
23184 (point)))
23185 (cend (save-excursion
23186 (goto-char (org-element-property :end element))
23187 (skip-chars-backward " \r\t\n")
23188 (line-beginning-position))))
23189 (when (and (>= p cbeg) (< p cend))
23190 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23191 (match-string 0)
23192 "")))))))))))
23194 (declare-function message-goto-body "message" ())
23195 (defvar message-cite-prefix-regexp) ; From message.el
23196 (defun org-fill-paragraph (&optional justify)
23197 "Fill element at point, when applicable.
23199 This function only applies to comment blocks, comments, example
23200 blocks and paragraphs. Also, as a special case, re-align table
23201 when point is at one.
23203 If JUSTIFY is non-nil (interactively, with prefix argument),
23204 justify as well. If `sentence-end-double-space' is non-nil, then
23205 period followed by one space does not end a sentence, so don't
23206 break a line there. The variable `fill-column' controls the
23207 width for filling.
23209 For convenience, when point is at a plain list, an item or
23210 a footnote definition, try to fill the first paragraph within."
23211 (interactive)
23212 (if (and (derived-mode-p 'message-mode)
23213 (or (not (message-in-body-p))
23214 (save-excursion (move-beginning-of-line 1)
23215 (looking-at message-cite-prefix-regexp))))
23216 ;; First ensure filling is correct in message-mode.
23217 (let ((fill-paragraph-function
23218 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23219 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23220 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23221 (paragraph-separate
23222 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23223 (fill-paragraph nil))
23224 (with-syntax-table org-mode-transpose-word-syntax-table
23225 ;; Move to end of line in order to get the first paragraph
23226 ;; within a plain list or a footnote definition.
23227 (let ((element (save-excursion
23228 (end-of-line)
23229 (or (ignore-errors (org-element-at-point))
23230 (user-error "An element cannot be parsed line %d"
23231 (line-number-at-pos (point)))))))
23232 ;; First check if point is in a blank line at the beginning of
23233 ;; the buffer. In that case, ignore filling.
23234 (case (org-element-type element)
23235 ;; Use major mode filling function is src blocks.
23236 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23237 ;; Align Org tables, leave table.el tables as-is.
23238 (table-row (org-table-align) t)
23239 (table
23240 (when (eq (org-element-property :type element) 'org)
23241 (save-excursion
23242 (goto-char (org-element-property :post-affiliated element))
23243 (org-table-align)))
23245 (paragraph
23246 ;; Paragraphs may contain `line-break' type objects.
23247 (let ((beg (max (point-min)
23248 (org-element-property :contents-begin element)))
23249 (end (min (point-max)
23250 (org-element-property :contents-end element))))
23251 ;; Do nothing if point is at an affiliated keyword.
23252 (if (< (line-end-position) beg) t
23253 (when (derived-mode-p 'message-mode)
23254 ;; In `message-mode', do not fill following citation
23255 ;; in current paragraph nor text before message body.
23256 (let ((body-start (save-excursion (message-goto-body))))
23257 (when body-start (setq beg (max body-start beg))))
23258 (when (save-excursion
23259 (re-search-forward
23260 (concat "^" message-cite-prefix-regexp) end t))
23261 (setq end (match-beginning 0))))
23262 ;; Fill paragraph, taking line breaks into account.
23263 (save-excursion
23264 (goto-char beg)
23265 (let ((cuts (list beg)))
23266 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23267 (when (eq 'line-break
23268 (org-element-type
23269 (save-excursion (backward-char)
23270 (org-element-context))))
23271 (push (point) cuts)))
23272 (dolist (c (delq end cuts))
23273 (fill-region-as-paragraph c end justify)
23274 (setq end c))))
23275 t)))
23276 ;; Contents of `comment-block' type elements should be
23277 ;; filled as plain text, but only if point is within block
23278 ;; markers.
23279 (comment-block
23280 (let* ((case-fold-search t)
23281 (beg (save-excursion
23282 (goto-char (org-element-property :begin element))
23283 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23284 (forward-line)
23285 (point)))
23286 (end (save-excursion
23287 (goto-char (org-element-property :end element))
23288 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23289 (line-beginning-position))))
23290 (if (or (< (point) beg) (> (point) end)) t
23291 (fill-region-as-paragraph
23292 (save-excursion (end-of-line)
23293 (re-search-backward "^[ \t]*$" beg 'move)
23294 (line-beginning-position))
23295 (save-excursion (beginning-of-line)
23296 (re-search-forward "^[ \t]*$" end 'move)
23297 (line-beginning-position))
23298 justify))))
23299 ;; Fill comments.
23300 (comment
23301 (let ((begin (org-element-property :post-affiliated element))
23302 (end (org-element-property :end element)))
23303 (when (and (>= (point) begin) (<= (point) end))
23304 (let ((begin (save-excursion
23305 (end-of-line)
23306 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23307 (progn (forward-line) (point))
23308 begin)))
23309 (end (save-excursion
23310 (end-of-line)
23311 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23312 (1- (line-beginning-position))
23313 (skip-chars-backward " \r\t\n")
23314 (line-end-position)))))
23315 ;; Do not fill comments when at a blank line.
23316 (when (> end begin)
23317 (let ((fill-prefix
23318 (save-excursion
23319 (beginning-of-line)
23320 (looking-at "[ \t]*#")
23321 (let ((comment-prefix (match-string 0)))
23322 (goto-char (match-end 0))
23323 (if (looking-at adaptive-fill-regexp)
23324 (concat comment-prefix (match-string 0))
23325 (concat comment-prefix " "))))))
23326 (save-excursion
23327 (fill-region-as-paragraph begin end justify))))))
23329 ;; Ignore every other element.
23330 (otherwise t))))))
23332 (defun org-auto-fill-function ()
23333 "Auto-fill function."
23334 ;; Check if auto-filling is meaningful.
23335 (let ((fc (current-fill-column)))
23336 (when (and fc (> (current-column) fc))
23337 (let* ((fill-prefix (org-adaptive-fill-function))
23338 ;; Enforce empty fill prefix, if required. Otherwise, it
23339 ;; will be computed again.
23340 (adaptive-fill-mode (not (equal fill-prefix ""))))
23341 (when fill-prefix (do-auto-fill))))))
23343 (defun org-comment-line-break-function (&optional soft)
23344 "Break line at point and indent, continuing comment if within one.
23345 The inserted newline is marked hard if variable
23346 `use-hard-newlines' is true, unless optional argument SOFT is
23347 non-nil."
23348 (if soft (insert-and-inherit ?\n) (newline 1))
23349 (save-excursion (forward-char -1) (delete-horizontal-space))
23350 (delete-horizontal-space)
23351 (indent-to-left-margin)
23352 (insert-before-markers-and-inherit fill-prefix))
23355 ;;; Fixed Width Areas
23357 (defun org-toggle-fixed-width ()
23358 "Toggle fixed-width markup.
23360 Add or remove fixed-width markup on current line, whenever it
23361 makes sense. Return an error otherwise.
23363 If a region is active and if it contains only fixed-width areas
23364 or blank lines, remove all fixed-width markup in it. If the
23365 region contains anything else, convert all non-fixed-width lines
23366 to fixed-width ones.
23368 Blank lines at the end of the region are ignored unless the
23369 region only contains such lines."
23370 (interactive)
23371 (if (not (org-region-active-p))
23372 ;; No region:
23374 ;; Remove fixed width marker only in a fixed-with element.
23376 ;; Add fixed width maker in paragraphs, in blank lines after
23377 ;; elements or at the beginning of a headline or an inlinetask,
23378 ;; and before any one-line elements (e.g., a clock).
23379 (progn
23380 (beginning-of-line)
23381 (let* ((element (org-element-at-point))
23382 (type (org-element-type element)))
23383 (cond
23384 ((and (eq type 'fixed-width)
23385 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23386 (replace-match
23387 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23388 ((and (memq type '(babel-call clock comment diary-sexp headline
23389 horizontal-rule keyword paragraph
23390 planning))
23391 (<= (org-element-property :post-affiliated element) (point)))
23392 (skip-chars-forward " \t")
23393 (insert ": "))
23394 ((and (org-looking-at-p "[ \t]*$")
23395 (or (eq type 'inlinetask)
23396 (save-excursion
23397 (skip-chars-forward " \r\t\n")
23398 (<= (org-element-property :end element) (point)))))
23399 (delete-region (point) (line-end-position))
23400 (org-indent-line)
23401 (insert ": "))
23402 (t (user-error "Cannot insert a fixed-width line here")))))
23403 ;; Region active.
23404 (let* ((begin (save-excursion
23405 (goto-char (region-beginning))
23406 (line-beginning-position)))
23407 (end (copy-marker
23408 (save-excursion
23409 (goto-char (region-end))
23410 (unless (eolp) (beginning-of-line))
23411 (if (save-excursion (re-search-backward "\\S-" begin t))
23412 (progn (skip-chars-backward " \r\t\n") (point))
23413 (point)))))
23414 (all-fixed-width-p
23415 (catch 'not-all-p
23416 (save-excursion
23417 (goto-char begin)
23418 (skip-chars-forward " \r\t\n")
23419 (when (eobp) (throw 'not-all-p nil))
23420 (while (< (point) end)
23421 (let ((element (org-element-at-point)))
23422 (if (eq (org-element-type element) 'fixed-width)
23423 (goto-char (org-element-property :end element))
23424 (throw 'not-all-p nil))))
23425 t))))
23426 (if all-fixed-width-p
23427 (save-excursion
23428 (goto-char begin)
23429 (while (< (point) end)
23430 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23431 (replace-match
23432 "" nil nil nil
23433 (if (= (line-end-position) (match-end 0)) 0 1)))
23434 (forward-line)))
23435 (let ((min-ind (point-max)))
23436 ;; Find minimum indentation across all lines.
23437 (save-excursion
23438 (goto-char begin)
23439 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23440 (setq min-ind 0)
23441 (catch 'zerop
23442 (while (< (point) end)
23443 (unless (org-looking-at-p "[ \t]*$")
23444 (let ((ind (org-get-indentation)))
23445 (setq min-ind (min min-ind ind))
23446 (when (zerop ind) (throw 'zerop t))))
23447 (forward-line)))))
23448 ;; Loop over all lines and add fixed-width markup everywhere
23449 ;; but in fixed-width lines.
23450 (save-excursion
23451 (goto-char begin)
23452 (while (< (point) end)
23453 (cond
23454 ((org-at-heading-p)
23455 (insert ": ")
23456 (forward-line)
23457 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23458 (insert ":")
23459 (forward-line)))
23460 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23461 (let* ((element (org-element-at-point))
23462 (element-end (org-element-property :end element)))
23463 (if (eq (org-element-type element) 'fixed-width)
23464 (progn (goto-char element-end)
23465 (skip-chars-backward " \r\t\n")
23466 (forward-line))
23467 (let ((limit (min end element-end)))
23468 (while (< (point) limit)
23469 (org-move-to-column min-ind t)
23470 (insert ": ")
23471 (forward-line))))))
23473 (org-move-to-column min-ind t)
23474 (insert ": ")
23475 (forward-line)))))))
23476 (set-marker end nil))))
23479 ;;; Comments
23481 ;; Org comments syntax is quite complex. It requires the entire line
23482 ;; to be just a comment. Also, even with the right syntax at the
23483 ;; beginning of line, some some elements (i.e. verse-block or
23484 ;; example-block) don't accept comments. Usual Emacs comment commands
23485 ;; cannot cope with those requirements. Therefore, Org replaces them.
23487 ;; Org still relies on `comment-dwim', but cannot trust
23488 ;; `comment-only-p'. So, `comment-region-function' and
23489 ;; `uncomment-region-function' both point
23490 ;; to`org-comment-or-uncomment-region'. Eventually,
23491 ;; `org-insert-comment' takes care of insertion of comments at the
23492 ;; beginning of line.
23494 ;; `org-setup-comments-handling' install comments related variables
23495 ;; during `org-mode' initialization.
23497 (defun org-setup-comments-handling ()
23498 (interactive)
23499 (org-set-local 'comment-use-syntax nil)
23500 (org-set-local 'comment-start "# ")
23501 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23502 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23503 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23504 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23506 (defun org-insert-comment ()
23507 "Insert an empty comment above current line.
23508 If the line is empty, insert comment at its beginning. When
23509 point is within a source block, comment according to the related
23510 major mode."
23511 (if (let ((element (org-element-at-point)))
23512 (and (eq (org-element-type element) 'src-block)
23513 (< (save-excursion
23514 (goto-char (org-element-property :post-affiliated element))
23515 (line-end-position))
23516 (point))
23517 (> (save-excursion
23518 (goto-char (org-element-property :end element))
23519 (skip-chars-backward " \r\t\n")
23520 (line-beginning-position))
23521 (point))))
23522 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23523 (beginning-of-line)
23524 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23525 (open-line 1))
23526 (org-indent-line)
23527 (insert "# ")))
23529 (defvar comment-empty-lines) ; From newcomment.el.
23530 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23531 "Comment or uncomment each non-blank line in the region.
23532 Uncomment each non-blank line between BEG and END if it only
23533 contains commented lines. Otherwise, comment them. If region is
23534 strictly within a source block, use appropriate comment syntax."
23535 (if (let ((element (org-element-at-point)))
23536 (and (eq (org-element-type element) 'src-block)
23537 (< (save-excursion
23538 (goto-char (org-element-property :post-affiliated element))
23539 (line-end-position))
23540 beg)
23541 (>= (save-excursion
23542 (goto-char (org-element-property :end element))
23543 (skip-chars-backward " \r\t\n")
23544 (line-beginning-position))
23545 end)))
23546 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23547 (save-restriction
23548 ;; Restrict region
23549 (narrow-to-region (save-excursion (goto-char beg)
23550 (skip-chars-forward " \r\t\n" end)
23551 (line-beginning-position))
23552 (save-excursion (goto-char end)
23553 (skip-chars-backward " \r\t\n" beg)
23554 (line-end-position)))
23555 (let ((uncommentp
23556 ;; UNCOMMENTP is non-nil when every non blank line between
23557 ;; BEG and END is a comment.
23558 (save-excursion
23559 (goto-char (point-min))
23560 (while (and (not (eobp))
23561 (let ((element (org-element-at-point)))
23562 (and (eq (org-element-type element) 'comment)
23563 (goto-char (min (point-max)
23564 (org-element-property
23565 :end element)))))))
23566 (eobp))))
23567 (if uncommentp
23568 ;; Only blank lines and comments in region: uncomment it.
23569 (save-excursion
23570 (goto-char (point-min))
23571 (while (not (eobp))
23572 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23573 (replace-match "" nil nil nil 1))
23574 (forward-line)))
23575 ;; Comment each line in region.
23576 (let ((min-indent (point-max)))
23577 ;; First find the minimum indentation across all lines.
23578 (save-excursion
23579 (goto-char (point-min))
23580 (while (and (not (eobp)) (not (zerop min-indent)))
23581 (unless (looking-at "[ \t]*$")
23582 (setq min-indent (min min-indent (current-indentation))))
23583 (forward-line)))
23584 ;; Then loop over all lines.
23585 (save-excursion
23586 (goto-char (point-min))
23587 (while (not (eobp))
23588 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23589 ;; Don't get fooled by invisible text (e.g. link path)
23590 ;; when moving to column MIN-INDENT.
23591 (let ((buffer-invisibility-spec nil))
23592 (org-move-to-column min-indent t))
23593 (insert comment-start))
23594 (forward-line)))))))))
23596 (defun org-comment-dwim (arg)
23597 "Call `comment-dwim' within a source edit buffer if needed."
23598 (interactive "*P")
23599 (if (org-in-src-block-p)
23600 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23601 (call-interactively 'comment-dwim)))
23604 ;;; Timestamps API
23606 ;; This section contains tools to operate on timestamp objects, as
23607 ;; returned by, e.g. `org-element-context'.
23609 (defun org-timestamp--to-internal-time (timestamp &optional end)
23610 "Encode TIMESTAMP object into Emacs internal time.
23611 Use end of date range or time range when END is non-nil."
23612 (apply #'encode-time
23613 (cons 0
23614 (mapcar
23615 (lambda (prop) (or (org-element-property prop timestamp) 0))
23616 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23617 '(:minute-start :hour-start :day-start :month-start
23618 :year-start))))))
23620 (defun org-timestamp-has-time-p (timestamp)
23621 "Non-nil when TIMESTAMP has a time specified."
23622 (org-element-property :hour-start timestamp))
23624 (defun org-timestamp-format (timestamp format &optional end utc)
23625 "Format a TIMESTAMP object into a string.
23627 FORMAT is a format specifier to be passed to
23628 `format-time-string'.
23630 When optional argument END is non-nil, use end of date-range or
23631 time-range, if possible.
23633 When optional argument UTC is non-nil, time will be expressed as
23634 Universal Time."
23635 (format-time-string
23636 format (org-timestamp--to-internal-time timestamp end) utc))
23638 (defun org-timestamp-split-range (timestamp &optional end)
23639 "Extract a TIMESTAMP object from a date or time range.
23641 END, when non-nil, means extract the end of the range.
23642 Otherwise, extract its start.
23644 Return a new timestamp object."
23645 (let ((type (org-element-property :type timestamp)))
23646 (if (memq type '(active inactive diary)) timestamp
23647 (let ((split-ts (org-element-copy timestamp)))
23648 ;; Set new type.
23649 (org-element-put-property
23650 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23651 ;; Copy start properties over end properties if END is
23652 ;; non-nil. Otherwise, copy end properties over `start' ones.
23653 (let ((p-alist '((:minute-start . :minute-end)
23654 (:hour-start . :hour-end)
23655 (:day-start . :day-end)
23656 (:month-start . :month-end)
23657 (:year-start . :year-end))))
23658 (dolist (p-cell p-alist)
23659 (org-element-put-property
23660 split-ts
23661 (funcall (if end #'car #'cdr) p-cell)
23662 (org-element-property
23663 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23664 ;; Eventually refresh `:raw-value'.
23665 (org-element-put-property split-ts :raw-value nil)
23666 (org-element-put-property
23667 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23669 (defun org-timestamp-translate (timestamp &optional boundary)
23670 "Translate TIMESTAMP object to custom format.
23672 Format string is defined in `org-time-stamp-custom-formats',
23673 which see.
23675 When optional argument BOUNDARY is non-nil, it is either the
23676 symbol `start' or `end'. In this case, only translate the
23677 starting or ending part of TIMESTAMP if it is a date or time
23678 range. Otherwise, translate both parts.
23680 Return timestamp as-is if `org-display-custom-times' is nil or if
23681 it has a `diary' type."
23682 (let ((type (org-element-property :type timestamp)))
23683 (if (or (not org-display-custom-times) (eq type 'diary))
23684 (org-element-interpret-data timestamp)
23685 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23686 org-time-stamp-custom-formats)))
23687 (if (and (not boundary) (memq type '(active-range inactive-range)))
23688 (concat (org-timestamp-format timestamp fmt)
23689 "--"
23690 (org-timestamp-format timestamp fmt t))
23691 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23695 ;;; Other stuff.
23697 (defun org-reftex-citation ()
23698 "Use reftex-citation to insert a citation into the buffer.
23699 This looks for a line like
23701 #+BIBLIOGRAPHY: foo plain option:-d
23703 and derives from it that foo.bib is the bibliography file relevant
23704 for this document. It then installs the necessary environment for RefTeX
23705 to work in this buffer and calls `reftex-citation' to insert a citation
23706 into the buffer.
23708 Export of such citations to both LaTeX and HTML is handled by the contributed
23709 package ox-bibtex by Taru Karttunen."
23710 (interactive)
23711 (let ((reftex-docstruct-symbol 'rds)
23712 (reftex-cite-format "\\cite{%l}")
23713 rds bib)
23714 (save-excursion
23715 (save-restriction
23716 (widen)
23717 (let ((case-fold-search t)
23718 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23719 (if (not (save-excursion
23720 (or (re-search-forward re nil t)
23721 (re-search-backward re nil t))))
23722 (user-error "No bibliography defined in file")
23723 (setq bib (concat (match-string 1) ".bib")
23724 rds (list (list 'bib bib)))))))
23725 (call-interactively 'reftex-citation)))
23727 ;;;; Functions extending outline functionality
23729 (defun org-beginning-of-line (&optional arg)
23730 "Go to the beginning of the current line. If that is invisible, continue
23731 to a visible line beginning. This makes the function of C-a more intuitive.
23732 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23733 first attempt, and only move to after the tags when the cursor is already
23734 beyond the end of the headline."
23735 (interactive "P")
23736 (let ((pos (point))
23737 (special (if (consp org-special-ctrl-a/e)
23738 (car org-special-ctrl-a/e)
23739 org-special-ctrl-a/e))
23740 deactivate-mark refpos)
23741 (if (org-bound-and-true-p visual-line-mode)
23742 (beginning-of-visual-line 1)
23743 (beginning-of-line 1))
23744 (if (and arg (fboundp 'move-beginning-of-line))
23745 (call-interactively 'move-beginning-of-line)
23746 (if (bobp)
23748 (backward-char 1)
23749 (if (org-truely-invisible-p)
23750 (while (and (not (bobp)) (org-truely-invisible-p))
23751 (backward-char 1)
23752 (beginning-of-line 1))
23753 (forward-char 1))))
23754 (when special
23755 (cond
23756 ((and (looking-at org-complex-heading-regexp)
23757 (= (char-after (match-end 1)) ?\ ))
23758 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23759 (point-at-eol)))
23760 (goto-char
23761 (if (eq special t)
23762 (cond ((> pos refpos) refpos)
23763 ((= pos (point)) refpos)
23764 (t (point)))
23765 (cond ((> pos (point)) (point))
23766 ((not (eq last-command this-command)) (point))
23767 (t refpos)))))
23768 ((org-at-item-p)
23769 ;; Being at an item and not looking at an the item means point
23770 ;; was previously moved to beginning of a visual line, which
23771 ;; doesn't contain the item. Therefore, do nothing special,
23772 ;; just stay here.
23773 (when (looking-at org-list-full-item-re)
23774 ;; Set special position at first white space character after
23775 ;; bullet, and check-box, if any.
23776 (let ((after-bullet
23777 (let ((box (match-end 3)))
23778 (if (not box) (match-end 1)
23779 (let ((after (char-after box)))
23780 (if (and after (= after ? )) (1+ box) box))))))
23781 ;; Special case: Move point to special position when
23782 ;; currently after it or at beginning of line.
23783 (if (eq special t)
23784 (when (or (> pos after-bullet) (= (point) pos))
23785 (goto-char after-bullet))
23786 ;; Reversed case: Move point to special position when
23787 ;; point was already at beginning of line and command is
23788 ;; repeated.
23789 (when (and (= (point) pos) (eq last-command this-command))
23790 (goto-char after-bullet))))))))
23791 (org-no-warnings
23792 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23793 (setq disable-point-adjustment
23794 (or (not (invisible-p (point)))
23795 (not (invisible-p (max (point-min) (1- (point))))))))
23797 (defun org-end-of-line (&optional arg)
23798 "Go to the end of the line.
23799 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23800 tags on the first attempt, and only move to after the tags when
23801 the cursor is already beyond the end of the headline."
23802 (interactive "P")
23803 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23804 org-special-ctrl-a/e))
23805 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23806 'end-of-visual-line)
23807 ((fboundp 'move-end-of-line) 'move-end-of-line)
23808 (t 'end-of-line)))
23809 deactivate-mark)
23810 (if (or (not special) arg) (call-interactively move-fun)
23811 (let* ((element (save-excursion (beginning-of-line)
23812 (org-element-at-point)))
23813 (type (org-element-type element)))
23814 (cond
23815 ((memq type '(headline inlinetask))
23816 (let ((pos (point)))
23817 (beginning-of-line 1)
23818 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23819 (if (eq special t)
23820 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23821 (goto-char (match-beginning 1))
23822 (goto-char (match-end 0)))
23823 (if (or (< pos (match-end 0))
23824 (not (eq this-command last-command)))
23825 (goto-char (match-end 0))
23826 (goto-char (match-beginning 1))))
23827 (call-interactively move-fun))))
23828 ((outline-invisible-p (line-end-position))
23829 ;; If element is hidden, `move-end-of-line' would put point
23830 ;; after it. Use `end-of-line' to stay on current line.
23831 (call-interactively 'end-of-line))
23832 (t (call-interactively move-fun)))))
23833 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23834 (setq disable-point-adjustment
23835 (or (not (invisible-p (point)))
23836 (not (invisible-p (max (point-min) (1- (point))))))))
23838 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23839 (define-key org-mode-map "\C-e" 'org-end-of-line)
23841 (defun org-backward-sentence (&optional arg)
23842 "Go to beginning of sentence, or beginning of table field.
23843 This will call `backward-sentence' or `org-table-beginning-of-field',
23844 depending on context."
23845 (interactive "P")
23846 (let* ((element (org-element-at-point))
23847 (contents-begin (org-element-property :contents-begin element))
23848 (table (org-element-lineage element '(table) t)))
23849 (if (and table
23850 (> (point) contents-begin)
23851 (<= (point) (org-element-property :contents-end table)))
23852 (call-interactively #'org-table-beginning-of-field)
23853 (save-restriction
23854 (when (and contents-begin
23855 (< (point-min) contents-begin)
23856 (> (point) contents-begin))
23857 (narrow-to-region contents-begin
23858 (org-element-property :contents-end element)))
23859 (call-interactively #'backward-sentence)))))
23861 (defun org-forward-sentence (&optional arg)
23862 "Go to end of sentence, or end of table field.
23863 This will call `forward-sentence' or `org-table-end-of-field',
23864 depending on context."
23865 (interactive "P")
23866 (let* ((element (org-element-at-point))
23867 (contents-end (org-element-property :contents-end element))
23868 (table (org-element-lineage element '(table) t)))
23869 (if (and table
23870 (>= (point) (org-element-property :contents-begin table))
23871 (< (point) contents-end))
23872 (call-interactively #'org-table-end-of-field)
23873 (save-restriction
23874 (when (and contents-end
23875 (> (point-max) contents-end)
23876 ;; Skip blank lines between elements.
23877 (< (org-element-property :end element)
23878 (save-excursion (goto-char contents-end)
23879 (skip-chars-forward " \r\t\n"))))
23880 (narrow-to-region (org-element-property :contents-begin element)
23881 contents-end))
23882 (call-interactively #'forward-sentence)))))
23884 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23885 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23887 (defun org-kill-line (&optional arg)
23888 "Kill line, to tags or end of line."
23889 (interactive "P")
23890 (cond
23891 ((or (not org-special-ctrl-k)
23892 (bolp)
23893 (not (org-at-heading-p)))
23894 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23895 org-ctrl-k-protect-subtree)
23896 (if (or (eq org-ctrl-k-protect-subtree 'error)
23897 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23898 (user-error "C-k aborted as it would kill a hidden subtree")))
23899 (call-interactively
23900 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23901 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23902 (kill-region (point) (match-beginning 1))
23903 (org-set-tags nil t))
23904 (t (kill-region (point) (point-at-eol)))))
23906 (define-key org-mode-map "\C-k" 'org-kill-line)
23908 (defun org-yank (&optional arg)
23909 "Yank. If the kill is a subtree, treat it specially.
23910 This command will look at the current kill and check if is a single
23911 subtree, or a series of subtrees[1]. If it passes the test, and if the
23912 cursor is at the beginning of a line or after the stars of a currently
23913 empty headline, then the yank is handled specially. How exactly depends
23914 on the value of the following variables, both set by default.
23916 `org-yank-folded-subtrees'
23917 When set, the subtree(s) will be folded after insertion, but only
23918 if doing so would now swallow text after the yanked text.
23920 `org-yank-adjusted-subtrees'
23921 When set, the subtree will be promoted or demoted in order to
23922 fit into the local outline tree structure, which means that the
23923 level will be adjusted so that it becomes the smaller one of the
23924 two *visible* surrounding headings.
23926 Any prefix to this command will cause `yank' to be called directly with
23927 no special treatment. In particular, a simple \\[universal-argument] prefix \
23928 will just
23929 plainly yank the text as it is.
23931 \[1] The test checks if the first non-white line is a heading
23932 and if there are no other headings with fewer stars."
23933 (interactive "P")
23934 (org-yank-generic 'yank arg))
23936 (defun org-yank-generic (command arg)
23937 "Perform some yank-like command.
23939 This function implements the behavior described in the `org-yank'
23940 documentation. However, it has been generalized to work for any
23941 interactive command with similar behavior."
23943 ;; pretend to be command COMMAND
23944 (setq this-command command)
23946 (if arg
23947 (call-interactively command)
23949 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23950 (and (org-kill-is-subtree-p)
23951 (or (bolp)
23952 (and (looking-at "[ \t]*$")
23953 (string-match
23954 "\\`\\*+\\'"
23955 (buffer-substring (point-at-bol) (point)))))))
23956 swallowp)
23957 (cond
23958 ((and subtreep org-yank-folded-subtrees)
23959 (let ((beg (point))
23960 end)
23961 (if (and subtreep org-yank-adjusted-subtrees)
23962 (org-paste-subtree nil nil 'for-yank)
23963 (call-interactively command))
23965 (setq end (point))
23966 (goto-char beg)
23967 (when (and (bolp) subtreep
23968 (not (setq swallowp
23969 (org-yank-folding-would-swallow-text beg end))))
23970 (org-with-limited-levels
23971 (or (looking-at org-outline-regexp)
23972 (re-search-forward org-outline-regexp-bol end t))
23973 (while (and (< (point) end) (looking-at org-outline-regexp))
23974 (hide-subtree)
23975 (org-cycle-show-empty-lines 'folded)
23976 (condition-case nil
23977 (outline-forward-same-level 1)
23978 (error (goto-char end))))))
23979 (when swallowp
23980 (message
23981 "Inserted text not folded because that would swallow text"))
23983 (goto-char end)
23984 (skip-chars-forward " \t\n\r")
23985 (beginning-of-line 1)
23986 (push-mark beg 'nomsg)))
23987 ((and subtreep org-yank-adjusted-subtrees)
23988 (let ((beg (point-at-bol)))
23989 (org-paste-subtree nil nil 'for-yank)
23990 (push-mark beg 'nomsg)))
23992 (call-interactively command))))))
23994 (defun org-yank-folding-would-swallow-text (beg end)
23995 "Would hide-subtree at BEG swallow any text after END?"
23996 (let (level)
23997 (org-with-limited-levels
23998 (save-excursion
23999 (goto-char beg)
24000 (when (or (looking-at org-outline-regexp)
24001 (re-search-forward org-outline-regexp-bol end t))
24002 (setq level (org-outline-level)))
24003 (goto-char end)
24004 (skip-chars-forward " \t\r\n\v\f")
24005 (if (or (eobp)
24006 (and (bolp) (looking-at org-outline-regexp)
24007 (<= (org-outline-level) level)))
24008 nil ; Nothing would be swallowed
24009 t))))) ; something would swallow
24011 (define-key org-mode-map "\C-y" 'org-yank)
24013 (defun org-truely-invisible-p ()
24014 "Check if point is at a character currently not visible.
24015 This version does not only check the character property, but also
24016 `visible-mode'."
24017 ;; Early versions of noutline don't have `outline-invisible-p'.
24018 (if (org-bound-and-true-p visible-mode)
24020 (outline-invisible-p)))
24022 (defun org-invisible-p2 ()
24023 "Check if point is at a character currently not visible."
24024 (save-excursion
24025 (if (and (eolp) (not (bobp))) (backward-char 1))
24026 ;; Early versions of noutline don't have `outline-invisible-p'.
24027 (outline-invisible-p)))
24029 (defun org-back-to-heading (&optional invisible-ok)
24030 "Call `outline-back-to-heading', but provide a better error message."
24031 (condition-case nil
24032 (outline-back-to-heading invisible-ok)
24033 (error (error "Before first headline at position %d in buffer %s"
24034 (point) (current-buffer)))))
24036 (defun org-before-first-heading-p ()
24037 "Before first heading?"
24038 (save-excursion
24039 (end-of-line)
24040 (null (re-search-backward org-outline-regexp-bol nil t))))
24042 (defun org-at-heading-p (&optional ignored)
24043 (outline-on-heading-p t))
24044 ;; Compatibility alias with Org versions < 7.8.03
24045 (defalias 'org-on-heading-p 'org-at-heading-p)
24047 (defun org-in-commented-heading-p (&optional no-inheritance)
24048 "Non-nil if point is under a commented heading.
24049 This function also checks ancestors of the current headline,
24050 unless optional argument NO-INHERITANCE is non-nil."
24051 (cond
24052 ((org-before-first-heading-p) nil)
24053 ((let ((headline (nth 4 (org-heading-components))))
24054 (and headline
24055 (let ((case-fold-search nil))
24056 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24057 headline)))))
24058 (no-inheritance nil)
24060 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24062 (defun org-at-comment-p nil
24063 "Is cursor in a commented line?"
24064 (save-excursion
24065 (save-match-data
24066 (beginning-of-line)
24067 (looking-at "^[ \t]*# "))))
24069 (defun org-at-drawer-p nil
24070 "Is cursor at a drawer keyword?"
24071 (save-excursion
24072 (move-beginning-of-line 1)
24073 (looking-at org-drawer-regexp)))
24075 (defun org-at-block-p nil
24076 "Is cursor at a block keyword?"
24077 (save-excursion
24078 (move-beginning-of-line 1)
24079 (looking-at org-block-regexp)))
24081 (defun org-point-at-end-of-empty-headline ()
24082 "If point is at the end of an empty headline, return t, else nil.
24083 If the heading only contains a TODO keyword, it is still still considered
24084 empty."
24085 (and (looking-at "[ \t]*$")
24086 (when org-todo-line-regexp
24087 (save-excursion
24088 (beginning-of-line 1)
24089 (let ((case-fold-search nil))
24090 (looking-at org-todo-line-regexp)
24091 (string= (match-string 3) ""))))))
24093 (defun org-at-heading-or-item-p ()
24094 (or (org-at-heading-p) (org-at-item-p)))
24096 (defun org-at-target-p ()
24097 (or (org-in-regexp org-radio-target-regexp)
24098 (org-in-regexp org-target-regexp)))
24099 ;; Compatibility alias with Org versions < 7.8.03
24100 (defalias 'org-on-target-p 'org-at-target-p)
24102 (defun org-up-heading-all (arg)
24103 "Move to the heading line of which the present line is a subheading.
24104 This function considers both visible and invisible heading lines.
24105 With argument, move up ARG levels."
24106 (if (fboundp 'outline-up-heading-all)
24107 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24108 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24110 (defun org-up-heading-safe ()
24111 "Move to the heading line of which the present line is a subheading.
24112 This version will not throw an error. It will return the level of the
24113 headline found, or nil if no higher level is found.
24115 Also, this function will be a lot faster than `outline-up-heading',
24116 because it relies on stars being the outline starters. This can really
24117 make a significant difference in outlines with very many siblings."
24118 (when (ignore-errors (org-back-to-heading t))
24119 (let ((level-up (1- (funcall outline-level))))
24120 (and (> level-up 0)
24121 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24122 (funcall outline-level)))))
24124 (defun org-first-sibling-p ()
24125 "Is this heading the first child of its parents?"
24126 (interactive)
24127 (let ((re org-outline-regexp-bol)
24128 level l)
24129 (unless (org-at-heading-p t)
24130 (user-error "Not at a heading"))
24131 (setq level (funcall outline-level))
24132 (save-excursion
24133 (if (not (re-search-backward re nil t))
24135 (setq l (funcall outline-level))
24136 (< l level)))))
24138 (defun org-goto-sibling (&optional previous)
24139 "Goto the next sibling, even if it is invisible.
24140 When PREVIOUS is set, go to the previous sibling instead. Returns t
24141 when a sibling was found. When none is found, return nil and don't
24142 move point."
24143 (let ((fun (if previous 're-search-backward 're-search-forward))
24144 (pos (point))
24145 (re org-outline-regexp-bol)
24146 level l)
24147 (when (ignore-errors (org-back-to-heading t))
24148 (setq level (funcall outline-level))
24149 (catch 'exit
24150 (or previous (forward-char 1))
24151 (while (funcall fun re nil t)
24152 (setq l (funcall outline-level))
24153 (when (< l level) (goto-char pos) (throw 'exit nil))
24154 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24155 (goto-char pos)
24156 nil))))
24158 (defun org-show-siblings ()
24159 "Show all siblings of the current headline."
24160 (save-excursion
24161 (while (org-goto-sibling) (org-flag-heading nil)))
24162 (save-excursion
24163 (while (org-goto-sibling 'previous)
24164 (org-flag-heading nil))))
24166 (defun org-goto-first-child ()
24167 "Goto the first child, even if it is invisible.
24168 Return t when a child was found. Otherwise don't move point and
24169 return nil."
24170 (let (level (pos (point)) (re org-outline-regexp-bol))
24171 (when (ignore-errors (org-back-to-heading t))
24172 (setq level (outline-level))
24173 (forward-char 1)
24174 (if (and (re-search-forward re nil t) (> (outline-level) level))
24175 (progn (goto-char (match-beginning 0)) t)
24176 (goto-char pos) nil))))
24178 (defun org-show-hidden-entry ()
24179 "Show an entry where even the heading is hidden."
24180 (save-excursion
24181 (org-show-entry)))
24183 (defun org-flag-heading (flag &optional entry)
24184 "Flag the current heading. FLAG non-nil means make invisible.
24185 When ENTRY is non-nil, show the entire entry."
24186 (save-excursion
24187 (org-back-to-heading t)
24188 ;; Check if we should show the entire entry
24189 (if entry
24190 (progn
24191 (org-show-entry)
24192 (save-excursion
24193 (and (outline-next-heading)
24194 (org-flag-heading nil))))
24195 (outline-flag-region (max (point-min) (1- (point)))
24196 (save-excursion (outline-end-of-heading) (point))
24197 flag))))
24199 (defun org-get-next-sibling ()
24200 "Move to next heading of the same level, and return point.
24201 If there is no such heading, return nil.
24202 This is like outline-next-sibling, but invisible headings are ok."
24203 (let ((level (funcall outline-level)))
24204 (outline-next-heading)
24205 (while (and (not (eobp)) (> (funcall outline-level) level))
24206 (outline-next-heading))
24207 (if (or (eobp) (< (funcall outline-level) level))
24209 (point))))
24211 (defun org-get-last-sibling ()
24212 "Move to previous heading of the same level, and return point.
24213 If there is no such heading, return nil."
24214 (let ((opoint (point))
24215 (level (funcall outline-level)))
24216 (outline-previous-heading)
24217 (when (and (/= (point) opoint) (outline-on-heading-p t))
24218 (while (and (> (funcall outline-level) level)
24219 (not (bobp)))
24220 (outline-previous-heading))
24221 (if (< (funcall outline-level) level)
24223 (point)))))
24225 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24226 "Goto to the end of a subtree."
24227 ;; This contains an exact copy of the original function, but it uses
24228 ;; `org-back-to-heading', to make it work also in invisible
24229 ;; trees. And is uses an invisible-ok argument.
24230 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24231 ;; Furthermore, when used inside Org, finding the end of a large subtree
24232 ;; with many children and grandchildren etc, this can be much faster
24233 ;; than the outline version.
24234 (org-back-to-heading invisible-ok)
24235 (let ((first t)
24236 (level (funcall outline-level)))
24237 (if (and (derived-mode-p 'org-mode) (< level 1000))
24238 ;; A true heading (not a plain list item), in Org-mode
24239 ;; This means we can easily find the end by looking
24240 ;; only for the right number of stars. Using a regexp to do
24241 ;; this is so much faster than using a Lisp loop.
24242 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24243 (forward-char 1)
24244 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24245 ;; something else, do it the slow way
24246 (while (and (not (eobp))
24247 (or first (> (funcall outline-level) level)))
24248 (setq first nil)
24249 (outline-next-heading)))
24250 (unless to-heading
24251 (if (memq (preceding-char) '(?\n ?\^M))
24252 (progn
24253 ;; Go to end of line before heading
24254 (forward-char -1)
24255 (if (memq (preceding-char) '(?\n ?\^M))
24256 ;; leave blank line before heading
24257 (forward-char -1))))))
24258 (point))
24260 (defun org-end-of-meta-data (&optional full)
24261 "Skip planning line and properties drawer in current entry.
24262 When optional argument FULL is non-nil, also skip empty lines,
24263 clocking lines and regular drawers at the beginning of the
24264 entry."
24265 (org-back-to-heading t)
24266 (forward-line)
24267 (when (org-looking-at-p org-planning-line-re) (forward-line))
24268 (when (looking-at org-property-drawer-re)
24269 (goto-char (match-end 0))
24270 (forward-line))
24271 (when (and full (not (org-at-heading-p)))
24272 (catch 'exit
24273 (let ((end (save-excursion (outline-next-heading) (point)))
24274 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24275 (while (not (eobp))
24276 (cond ((org-looking-at-p org-drawer-regexp)
24277 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24278 (forward-line)
24279 (throw 'exit t)))
24280 ((org-looking-at-p re) (forward-line))
24281 (t (throw 'exit t))))))))
24283 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24284 "Move forward to the ARG'th subheading at same level as this one.
24285 Stop at the first and last subheadings of a superior heading.
24286 Normally this only looks at visible headings, but when INVISIBLE-OK is
24287 non-nil it will also look at invisible ones."
24288 (interactive "p")
24289 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24290 (if (and arg (< arg 0))
24291 (goto-char (point-min))
24292 (outline-next-heading))
24293 (org-at-heading-p)
24294 (let ((level (- (match-end 0) (match-beginning 0) 1))
24295 (f (if (and arg (< arg 0))
24296 're-search-backward
24297 're-search-forward))
24298 (count (if arg (abs arg) 1))
24299 (result (point)))
24300 (while (and (prog1 (> count 0)
24301 (forward-char (if (and arg (< arg 0)) -1 1)))
24302 (funcall f org-outline-regexp-bol nil 'move))
24303 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24304 (cond ((< l level) (setq count 0))
24305 ((and (= l level)
24306 (or invisible-ok
24307 (progn
24308 (goto-char (line-beginning-position))
24309 (not (outline-invisible-p)))))
24310 (setq count (1- count))
24311 (when (eq l level)
24312 (setq result (point)))))))
24313 (goto-char result))
24314 (beginning-of-line 1)))
24316 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24317 "Move backward to the ARG'th subheading at same level as this one.
24318 Stop at the first and last subheadings of a superior heading."
24319 (interactive "p")
24320 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24322 (defun org-next-visible-heading (arg)
24323 "Move to the next visible heading.
24325 This function wraps `outline-next-visible-heading' with
24326 `org-with-limited-levels' in order to skip over inline tasks and
24327 respect customization of `org-odd-levels-only'."
24328 (interactive "p")
24329 (org-with-limited-levels
24330 (outline-next-visible-heading arg)))
24332 (defun org-previous-visible-heading (arg)
24333 "Move to the next visible heading.
24335 This function wraps `outline-previous-visible-heading' with
24336 `org-with-limited-levels' in order to skip over inline tasks and
24337 respect customization of `org-odd-levels-only'."
24338 (interactive "p")
24339 (org-with-limited-levels
24340 (outline-previous-visible-heading arg)))
24342 (defun org-next-block (arg &optional backward block-regexp)
24343 "Jump to the next block.
24344 With a prefix argument ARG, jump forward ARG many source blocks.
24345 When BACKWARD is non-nil, jump to the previous block.
24346 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24347 (interactive "p")
24348 (let ((re (or block-regexp org-block-regexp))
24349 (re-search-fn (or (and backward 're-search-backward)
24350 're-search-forward)))
24351 (if (looking-at re) (forward-char 1))
24352 (condition-case nil
24353 (funcall re-search-fn re nil nil arg)
24354 (error (user-error "No %s code blocks"
24355 (if backward "previous" "further" ))))
24356 (goto-char (match-beginning 0)) (org-show-context)))
24358 (defun org-previous-block (arg &optional block-regexp)
24359 "Jump to the previous block.
24360 With a prefix argument ARG, jump backward ARG many source blocks.
24361 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24362 (interactive "p")
24363 (org-next-block arg t block-regexp))
24365 (defun org-forward-paragraph ()
24366 "Move forward to beginning of next paragraph or equivalent.
24368 The function moves point to the beginning of the next visible
24369 structural element, which can be a paragraph, a table, a list
24370 item, etc. It also provides some special moves for convenience:
24372 - On an affiliated keyword, jump to the beginning of the
24373 relative element.
24374 - On an item or a footnote definition, move to the second
24375 element inside, if any.
24376 - On a table or a property drawer, jump after it.
24377 - On a verse or source block, stop after blank lines."
24378 (interactive)
24379 (when (eobp) (user-error "Cannot move further down"))
24380 (let* ((deactivate-mark nil)
24381 (element (org-element-at-point))
24382 (type (org-element-type element))
24383 (post-affiliated (org-element-property :post-affiliated element))
24384 (contents-begin (org-element-property :contents-begin element))
24385 (contents-end (org-element-property :contents-end element))
24386 (end (let ((end (org-element-property :end element)) (parent element))
24387 (while (and (setq parent (org-element-property :parent parent))
24388 (= (org-element-property :contents-end parent) end))
24389 (setq end (org-element-property :end parent)))
24390 end)))
24391 (cond ((not element)
24392 (skip-chars-forward " \r\t\n")
24393 (or (eobp) (beginning-of-line)))
24394 ;; On affiliated keywords, move to element's beginning.
24395 ((< (point) post-affiliated)
24396 (goto-char post-affiliated))
24397 ;; At a table row, move to the end of the table. Similarly,
24398 ;; at a node property, move to the end of the property
24399 ;; drawer.
24400 ((memq type '(node-property table-row))
24401 (goto-char (org-element-property
24402 :end (org-element-property :parent element))))
24403 ((memq type '(property-drawer table)) (goto-char end))
24404 ;; Consider blank lines as separators in verse and source
24405 ;; blocks to ease editing.
24406 ((memq type '(src-block verse-block))
24407 (when (eq type 'src-block)
24408 (setq contents-end
24409 (save-excursion (goto-char end)
24410 (skip-chars-backward " \r\t\n")
24411 (line-beginning-position))))
24412 (beginning-of-line)
24413 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24414 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24415 (goto-char end)
24416 (skip-chars-forward " \r\t\n")
24417 (if (= (point) contents-end) (goto-char end)
24418 (beginning-of-line))))
24419 ;; With no contents, just skip element.
24420 ((not contents-begin) (goto-char end))
24421 ;; If contents are invisible, skip the element altogether.
24422 ((outline-invisible-p (line-end-position))
24423 (case type
24424 (headline
24425 (org-with-limited-levels (outline-next-visible-heading 1)))
24426 ;; At a plain list, make sure we move to the next item
24427 ;; instead of skipping the whole list.
24428 (plain-list (forward-char)
24429 (org-forward-paragraph))
24430 (otherwise (goto-char end))))
24431 ((>= (point) contents-end) (goto-char end))
24432 ((>= (point) contents-begin)
24433 ;; This can only happen on paragraphs and plain lists.
24434 (case type
24435 (paragraph (goto-char end))
24436 ;; At a plain list, try to move to second element in
24437 ;; first item, if possible.
24438 (plain-list (end-of-line)
24439 (org-forward-paragraph))))
24440 ;; When contents start on the middle of a line (e.g. in
24441 ;; items and footnote definitions), try to reach first
24442 ;; element starting after current line.
24443 ((> (line-end-position) contents-begin)
24444 (end-of-line)
24445 (org-forward-paragraph))
24446 (t (goto-char contents-begin)))))
24448 (defun org-backward-paragraph ()
24449 "Move backward to start of previous paragraph or equivalent.
24451 The function moves point to the beginning of the current
24452 structural element, which can be a paragraph, a table, a list
24453 item, etc., or to the beginning of the previous visible one if
24454 point is already there. It also provides some special moves for
24455 convenience:
24457 - On an affiliated keyword, jump to the first one.
24458 - On a table or a property drawer, move to its beginning.
24459 - On a verse or source block, stop before blank lines."
24460 (interactive)
24461 (when (bobp) (user-error "Cannot move further up"))
24462 (let* ((deactivate-mark nil)
24463 (element (org-element-at-point))
24464 (type (org-element-type element))
24465 (contents-begin (org-element-property :contents-begin element))
24466 (contents-end (org-element-property :contents-end element))
24467 (post-affiliated (org-element-property :post-affiliated element))
24468 (begin (org-element-property :begin element)))
24469 (cond
24470 ((not element) (goto-char (point-min)))
24471 ((= (point) begin)
24472 (backward-char)
24473 (org-backward-paragraph))
24474 ((<= (point) post-affiliated) (goto-char begin))
24475 ((memq type '(node-property table-row))
24476 (goto-char (org-element-property
24477 :post-affiliated (org-element-property :parent element))))
24478 ((memq type '(property-drawer table)) (goto-char begin))
24479 ((memq type '(src-block verse-block))
24480 (when (eq type 'src-block)
24481 (setq contents-begin
24482 (save-excursion (goto-char begin) (forward-line) (point))))
24483 (if (= (point) contents-begin) (goto-char post-affiliated)
24484 ;; Inside a verse block, see blank lines as paragraph
24485 ;; separators.
24486 (let ((origin (point)))
24487 (skip-chars-backward " \r\t\n" contents-begin)
24488 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24489 (skip-chars-forward " \r\t\n" origin)
24490 (if (= (point) origin) (goto-char contents-begin)
24491 (beginning-of-line))))))
24492 ((not contents-begin) (goto-char (or post-affiliated begin)))
24493 ((eq type 'paragraph)
24494 (goto-char contents-begin)
24495 ;; When at first paragraph in an item or a footnote definition,
24496 ;; move directly to beginning of line.
24497 (let ((parent-contents
24498 (org-element-property
24499 :contents-begin (org-element-property :parent element))))
24500 (when (and parent-contents (= parent-contents contents-begin))
24501 (beginning-of-line))))
24502 ;; At the end of a greater element, move to the beginning of the
24503 ;; last element within.
24504 ((>= (point) contents-end)
24505 (goto-char (1- contents-end))
24506 (org-backward-paragraph))
24507 (t (goto-char (or post-affiliated begin))))
24508 ;; Ensure we never leave point invisible.
24509 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24511 (defun org-forward-element ()
24512 "Move forward by one element.
24513 Move to the next element at the same level, when possible."
24514 (interactive)
24515 (cond ((eobp) (user-error "Cannot move further down"))
24516 ((org-with-limited-levels (org-at-heading-p))
24517 (let ((origin (point)))
24518 (goto-char (org-end-of-subtree nil t))
24519 (unless (org-with-limited-levels (org-at-heading-p))
24520 (goto-char origin)
24521 (user-error "Cannot move further down"))))
24523 (let* ((elem (org-element-at-point))
24524 (end (org-element-property :end elem))
24525 (parent (org-element-property :parent elem)))
24526 (cond ((and parent (= (org-element-property :contents-end parent) end))
24527 (goto-char (org-element-property :end parent)))
24528 ((integer-or-marker-p end) (goto-char end))
24529 (t (message "No element at point")))))))
24531 (defun org-backward-element ()
24532 "Move backward by one element.
24533 Move to the previous element at the same level, when possible."
24534 (interactive)
24535 (cond ((bobp) (user-error "Cannot move further up"))
24536 ((org-with-limited-levels (org-at-heading-p))
24537 ;; At a headline, move to the previous one, if any, or stay
24538 ;; here.
24539 (let ((origin (point)))
24540 (org-with-limited-levels (org-backward-heading-same-level 1))
24541 ;; When current headline has no sibling above, move to its
24542 ;; parent.
24543 (when (= (point) origin)
24544 (or (org-with-limited-levels (org-up-heading-safe))
24545 (progn (goto-char origin)
24546 (user-error "Cannot move further up"))))))
24548 (let* ((elem (org-element-at-point))
24549 (beg (org-element-property :begin elem)))
24550 (cond
24551 ;; Move to beginning of current element if point isn't
24552 ;; there already.
24553 ((null beg) (message "No element at point"))
24554 ((/= (point) beg) (goto-char beg))
24555 (t (goto-char beg)
24556 (skip-chars-backward " \r\t\n")
24557 (unless (bobp)
24558 (let ((prev (org-element-at-point)))
24559 (goto-char (org-element-property :begin prev))
24560 (while (and (setq prev (org-element-property :parent prev))
24561 (<= (org-element-property :end prev) beg))
24562 (goto-char (org-element-property :begin prev)))))))))))
24564 (defun org-up-element ()
24565 "Move to upper element."
24566 (interactive)
24567 (if (org-with-limited-levels (org-at-heading-p))
24568 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24569 (let* ((elem (org-element-at-point))
24570 (parent (org-element-property :parent elem)))
24571 (if parent (goto-char (org-element-property :begin parent))
24572 (if (org-with-limited-levels (org-before-first-heading-p))
24573 (user-error "No surrounding element")
24574 (org-with-limited-levels (org-back-to-heading)))))))
24576 (defvar org-element-greater-elements)
24577 (defun org-down-element ()
24578 "Move to inner element."
24579 (interactive)
24580 (let ((element (org-element-at-point)))
24581 (cond
24582 ((memq (org-element-type element) '(plain-list table))
24583 (goto-char (org-element-property :contents-begin element))
24584 (forward-char))
24585 ((memq (org-element-type element) org-element-greater-elements)
24586 ;; If contents are hidden, first disclose them.
24587 (when (outline-invisible-p (line-end-position)) (org-cycle))
24588 (goto-char (or (org-element-property :contents-begin element)
24589 (user-error "No content for this element"))))
24590 (t (user-error "No inner element")))))
24592 (defun org-drag-element-backward ()
24593 "Move backward element at point."
24594 (interactive)
24595 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24596 (let* ((elem (org-element-at-point))
24597 (prev-elem
24598 (save-excursion
24599 (goto-char (org-element-property :begin elem))
24600 (skip-chars-backward " \r\t\n")
24601 (unless (bobp)
24602 (let* ((beg (org-element-property :begin elem))
24603 (prev (org-element-at-point))
24604 (up prev))
24605 (while (and (setq up (org-element-property :parent up))
24606 (<= (org-element-property :end up) beg))
24607 (setq prev up))
24608 prev)))))
24609 ;; Error out if no previous element or previous element is
24610 ;; a parent of the current one.
24611 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24612 (user-error "Cannot drag element backward")
24613 (let ((pos (point)))
24614 (org-element-swap-A-B prev-elem elem)
24615 (goto-char (+ (org-element-property :begin prev-elem)
24616 (- pos (org-element-property :begin elem)))))))))
24618 (defun org-drag-element-forward ()
24619 "Move forward element at point."
24620 (interactive)
24621 (let* ((pos (point))
24622 (elem (org-element-at-point)))
24623 (when (= (point-max) (org-element-property :end elem))
24624 (user-error "Cannot drag element forward"))
24625 (goto-char (org-element-property :end elem))
24626 (let ((next-elem (org-element-at-point)))
24627 (when (or (org-element-nested-p elem next-elem)
24628 (and (eq (org-element-type next-elem) 'headline)
24629 (not (eq (org-element-type elem) 'headline))))
24630 (goto-char pos)
24631 (user-error "Cannot drag element forward"))
24632 ;; Compute new position of point: it's shifted by NEXT-ELEM
24633 ;; body's length (without final blanks) and by the length of
24634 ;; blanks between ELEM and NEXT-ELEM.
24635 (let ((size-next (- (save-excursion
24636 (goto-char (org-element-property :end next-elem))
24637 (skip-chars-backward " \r\t\n")
24638 (forward-line)
24639 ;; Small correction if buffer doesn't end
24640 ;; with a newline character.
24641 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24642 (org-element-property :begin next-elem)))
24643 (size-blank (- (org-element-property :end elem)
24644 (save-excursion
24645 (goto-char (org-element-property :end elem))
24646 (skip-chars-backward " \r\t\n")
24647 (forward-line)
24648 (point)))))
24649 (org-element-swap-A-B elem next-elem)
24650 (goto-char (+ pos size-next size-blank))))))
24652 (defun org-drag-line-forward (arg)
24653 "Drag the line at point ARG lines forward."
24654 (interactive "p")
24655 (dotimes (n (abs arg))
24656 (let ((c (current-column)))
24657 (if (< 0 arg)
24658 (progn
24659 (beginning-of-line 2)
24660 (transpose-lines 1)
24661 (beginning-of-line 0))
24662 (transpose-lines 1)
24663 (beginning-of-line -1))
24664 (org-move-to-column c))))
24666 (defun org-drag-line-backward (arg)
24667 "Drag the line at point ARG lines backward."
24668 (interactive "p")
24669 (org-drag-line-forward (- arg)))
24671 (defun org-mark-element ()
24672 "Put point at beginning of this element, mark at end.
24674 Interactively, if this command is repeated or (in Transient Mark
24675 mode) if the mark is active, it marks the next element after the
24676 ones already marked."
24677 (interactive)
24678 (let (deactivate-mark)
24679 (if (and (org-called-interactively-p 'any)
24680 (or (and (eq last-command this-command) (mark t))
24681 (and transient-mark-mode mark-active)))
24682 (set-mark
24683 (save-excursion
24684 (goto-char (mark))
24685 (goto-char (org-element-property :end (org-element-at-point)))))
24686 (let ((element (org-element-at-point)))
24687 (end-of-line)
24688 (push-mark (org-element-property :end element) t t)
24689 (goto-char (org-element-property :begin element))))))
24691 (defun org-narrow-to-element ()
24692 "Narrow buffer to current element."
24693 (interactive)
24694 (let ((elem (org-element-at-point)))
24695 (cond
24696 ((eq (car elem) 'headline)
24697 (narrow-to-region
24698 (org-element-property :begin elem)
24699 (org-element-property :end elem)))
24700 ((memq (car elem) org-element-greater-elements)
24701 (narrow-to-region
24702 (org-element-property :contents-begin elem)
24703 (org-element-property :contents-end elem)))
24705 (narrow-to-region
24706 (org-element-property :begin elem)
24707 (org-element-property :end elem))))))
24709 (defun org-transpose-element ()
24710 "Transpose current and previous elements, keeping blank lines between.
24711 Point is moved after both elements."
24712 (interactive)
24713 (org-skip-whitespace)
24714 (let ((end (org-element-property :end (org-element-at-point))))
24715 (org-drag-element-backward)
24716 (goto-char end)))
24718 (defun org-unindent-buffer ()
24719 "Un-indent the visible part of the buffer.
24720 Relative indentation (between items, inside blocks, etc.) isn't
24721 modified."
24722 (interactive)
24723 (unless (eq major-mode 'org-mode)
24724 (user-error "Cannot un-indent a buffer not in Org mode"))
24725 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24726 unindent-tree ; For byte-compiler.
24727 (unindent-tree
24728 (function
24729 (lambda (contents)
24730 (mapc
24731 (lambda (element)
24732 (if (memq (org-element-type element) '(headline section))
24733 (funcall unindent-tree (org-element-contents element))
24734 (save-excursion
24735 (save-restriction
24736 (narrow-to-region
24737 (org-element-property :begin element)
24738 (org-element-property :end element))
24739 (org-do-remove-indentation)))))
24740 (reverse contents))))))
24741 (funcall unindent-tree (org-element-contents parse-tree))))
24743 (defun org-show-subtree ()
24744 "Show everything after this heading at deeper levels."
24745 (interactive)
24746 (outline-flag-region
24747 (point)
24748 (save-excursion
24749 (org-end-of-subtree t t))
24750 nil))
24752 (defun org-show-entry ()
24753 "Show the body directly following this heading.
24754 Show the heading too, if it is currently invisible."
24755 (interactive)
24756 (save-excursion
24757 (ignore-errors
24758 (org-back-to-heading t)
24759 (outline-flag-region
24760 (max (point-min) (1- (point)))
24761 (save-excursion
24762 (if (re-search-forward
24763 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24764 (match-beginning 1)
24765 (point-max)))
24766 nil)
24767 (org-cycle-hide-drawers 'children))))
24769 (defun org-make-options-regexp (kwds &optional extra)
24770 "Make a regular expression for keyword lines.
24771 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24772 when non-nil, is a regexp matching keywords names."
24773 (concat "^[ \t]*#\\+\\("
24774 (regexp-opt kwds)
24775 (and extra (concat (and kwds "\\|") extra))
24776 "\\):[ \t]*\\(.*\\)"))
24778 ;; Make isearch reveal the necessary context
24779 (defun org-isearch-end ()
24780 "Reveal context after isearch exits."
24781 (when isearch-success ; only if search was successful
24782 (if (featurep 'xemacs)
24783 ;; Under XEmacs, the hook is run in the correct place,
24784 ;; we directly show the context.
24785 (org-show-context 'isearch)
24786 ;; In Emacs the hook runs *before* restoring the overlays.
24787 ;; So we have to use a one-time post-command-hook to do this.
24788 ;; (Emacs 22 has a special variable, see function `org-mode')
24789 (unless (and (boundp 'isearch-mode-end-hook-quit)
24790 isearch-mode-end-hook-quit)
24791 ;; Only when the isearch was not quitted.
24792 (org-add-hook 'post-command-hook 'org-isearch-post-command
24793 'append 'local)))))
24795 (defun org-isearch-post-command ()
24796 "Remove self from hook, and show context."
24797 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24798 (org-show-context 'isearch))
24801 ;;;; Integration with and fixes for other packages
24803 ;;; Imenu support
24805 (defvar org-imenu-markers nil
24806 "All markers currently used by Imenu.")
24807 (make-variable-buffer-local 'org-imenu-markers)
24809 (defun org-imenu-new-marker (&optional pos)
24810 "Return a new marker for use by Imenu, and remember the marker."
24811 (let ((m (make-marker)))
24812 (move-marker m (or pos (point)))
24813 (push m org-imenu-markers)
24816 (defun org-imenu-get-tree ()
24817 "Produce the index for Imenu."
24818 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24819 (setq org-imenu-markers nil)
24820 (let* ((n org-imenu-depth)
24821 (re (concat "^" (org-get-limited-outline-regexp)))
24822 (subs (make-vector (1+ n) nil))
24823 (last-level 0)
24824 m level head0 head)
24825 (save-excursion
24826 (save-restriction
24827 (widen)
24828 (goto-char (point-max))
24829 (while (re-search-backward re nil t)
24830 (setq level (org-reduced-level (funcall outline-level)))
24831 (when (and (<= level n)
24832 (looking-at org-complex-heading-regexp)
24833 (setq head0 (org-match-string-no-properties 4)))
24834 (setq head (org-link-display-format head0)
24835 m (org-imenu-new-marker))
24836 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24837 (if (>= level last-level)
24838 (push (cons head m) (aref subs level))
24839 (push (cons head (aref subs (1+ level))) (aref subs level))
24840 (loop for i from (1+ level) to n do (aset subs i nil)))
24841 (setq last-level level)))))
24842 (aref subs 1)))
24844 (eval-after-load "imenu"
24845 '(progn
24846 (add-hook 'imenu-after-jump-hook
24847 (lambda ()
24848 (if (derived-mode-p 'org-mode)
24849 (org-show-context 'org-goto))))))
24851 (defun org-link-display-format (link)
24852 "Replace a link with its the description.
24853 If there is no description, use the link target."
24854 (save-match-data
24855 (if (string-match org-bracket-link-analytic-regexp link)
24856 (replace-match (if (match-end 5)
24857 (match-string 5 link)
24858 (concat (match-string 1 link)
24859 (match-string 3 link)))
24860 nil t link)
24861 link)))
24863 (defun org-toggle-link-display ()
24864 "Toggle the literal or descriptive display of links."
24865 (interactive)
24866 (if org-descriptive-links
24867 (progn (org-remove-from-invisibility-spec '(org-link))
24868 (org-restart-font-lock)
24869 (setq org-descriptive-links nil))
24870 (progn (add-to-invisibility-spec '(org-link))
24871 (org-restart-font-lock)
24872 (setq org-descriptive-links t))))
24874 ;; Speedbar support
24876 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24877 "Overlay marking the agenda restriction line in speedbar.")
24878 (overlay-put org-speedbar-restriction-lock-overlay
24879 'face 'org-agenda-restriction-lock)
24880 (overlay-put org-speedbar-restriction-lock-overlay
24881 'help-echo "Agendas are currently limited to this item.")
24882 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24884 (defun org-speedbar-set-agenda-restriction ()
24885 "Restrict future agenda commands to the location at point in speedbar.
24886 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24887 (interactive)
24888 (require 'org-agenda)
24889 (let (p m tp np dir txt)
24890 (cond
24891 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24892 'org-imenu t))
24893 (setq m (get-text-property p 'org-imenu-marker))
24894 (with-current-buffer (marker-buffer m)
24895 (goto-char m)
24896 (org-agenda-set-restriction-lock 'subtree)))
24897 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24898 'speedbar-function 'speedbar-find-file))
24899 (setq tp (previous-single-property-change
24900 (1+ p) 'speedbar-function)
24901 np (next-single-property-change
24902 tp 'speedbar-function)
24903 dir (speedbar-line-directory)
24904 txt (buffer-substring-no-properties (or tp (point-min))
24905 (or np (point-max))))
24906 (with-current-buffer (find-file-noselect
24907 (let ((default-directory dir))
24908 (expand-file-name txt)))
24909 (unless (derived-mode-p 'org-mode)
24910 (user-error "Cannot restrict to non-Org-mode file"))
24911 (org-agenda-set-restriction-lock 'file)))
24912 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24913 (move-overlay org-speedbar-restriction-lock-overlay
24914 (point-at-bol) (point-at-eol))
24915 (setq current-prefix-arg nil)
24916 (org-agenda-maybe-redo)))
24918 (defvar speedbar-file-key-map)
24919 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24920 (eval-after-load "speedbar"
24921 '(progn
24922 (speedbar-add-supported-extension ".org")
24923 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24924 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24925 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24926 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24927 (add-hook 'speedbar-visiting-tag-hook
24928 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24930 ;;; Fixes and Hacks for problems with other packages
24932 (defun org--flyspell-object-check-p (element)
24933 "Non-nil when Flyspell can check object at point.
24934 ELEMENT is the element at point."
24935 (let ((object (save-excursion
24936 (when (org-looking-at-p "\\>") (backward-char))
24937 (org-element-context element))))
24938 (case (org-element-type object)
24939 ;; Prevent checks in links due to keybinding conflict with
24940 ;; Flyspell.
24941 ((code entity export-snippet inline-babel-call
24942 inline-src-block line-break latex-fragment link macro
24943 statistics-cookie target timestamp verbatim)
24944 nil)
24945 (footnote-reference
24946 ;; Only in inline footnotes, within the definition.
24947 (and (eq (org-element-property :type object) 'inline)
24948 (< (save-excursion
24949 (goto-char (org-element-property :begin object))
24950 (search-forward ":" nil t 2))
24951 (point))))
24952 (otherwise t))))
24954 (defun org-mode-flyspell-verify ()
24955 "Function used for `flyspell-generic-check-word-predicate'."
24956 (if (org-at-heading-p)
24957 ;; At a headline or an inlinetask, check title only. This is
24958 ;; faster than relying on `org-element-at-point'.
24959 (and (save-excursion (beginning-of-line)
24960 (and (let ((case-fold-search t))
24961 (not (looking-at "\\*+ END[ \t]*$")))
24962 (looking-at org-complex-heading-regexp)))
24963 (match-beginning 4)
24964 (>= (point) (match-beginning 4))
24965 (or (not (match-beginning 5))
24966 (< (point) (match-beginning 5))))
24967 (let* ((element (org-element-at-point))
24968 (post-affiliated (org-element-property :post-affiliated element)))
24969 (cond
24970 ;; Ignore checks in all affiliated keywords but captions.
24971 ((< (point) post-affiliated)
24972 (and (save-excursion
24973 (beginning-of-line)
24974 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24975 (> (point) (match-end 0))
24976 (org--flyspell-object-check-p element)))
24977 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24978 ((let ((log (org-log-into-drawer)))
24979 (and log
24980 (let ((drawer (org-element-lineage element '(drawer))))
24981 (and drawer
24982 (eq (compare-strings
24983 log nil nil
24984 (org-element-property :drawer-name drawer) nil nil t)
24985 t)))))
24986 nil)
24988 (case (org-element-type element)
24989 ((comment quote-section) t)
24990 (comment-block
24991 ;; Allow checks between block markers, not on them.
24992 (and (> (line-beginning-position) post-affiliated)
24993 (save-excursion
24994 (end-of-line)
24995 (skip-chars-forward " \r\t\n")
24996 (< (point) (org-element-property :end element)))))
24997 ;; Arbitrary list of keywords where checks are meaningful.
24998 ;; Make sure point is on the value part of the element.
24999 (keyword
25000 (and (member (org-element-property :key element)
25001 '("DESCRIPTION" "TITLE"))
25002 (save-excursion
25003 (search-backward ":" (line-beginning-position) t))))
25004 ;; Check is globally allowed in paragraphs verse blocks and
25005 ;; table rows (after affiliated keywords) but some objects
25006 ;; must not be affected.
25007 ((paragraph table-row verse-block)
25008 (let ((cbeg (org-element-property :contents-begin element))
25009 (cend (org-element-property :contents-end element)))
25010 (and cbeg (>= (point) cbeg) (< (point) cend)
25011 (org--flyspell-object-check-p element))))))))))
25012 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25014 (defun org-remove-flyspell-overlays-in (beg end)
25015 "Remove flyspell overlays in region."
25016 (and (org-bound-and-true-p flyspell-mode)
25017 (fboundp 'flyspell-delete-region-overlays)
25018 (flyspell-delete-region-overlays beg end)))
25020 (defvar flyspell-delayed-commands)
25021 (eval-after-load "flyspell"
25022 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25024 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25025 (eval-after-load "bookmark"
25026 '(if (boundp 'bookmark-after-jump-hook)
25027 ;; We can use the hook
25028 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25029 ;; Hook not available, use advice
25030 (defadvice bookmark-jump (after org-make-visible activate)
25031 "Make the position visible."
25032 (org-bookmark-jump-unhide))))
25034 ;; Make sure saveplace shows the location if it was hidden
25035 (eval-after-load "saveplace"
25036 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25037 "Make the position visible."
25038 (org-bookmark-jump-unhide)))
25040 ;; Make sure ecb shows the location if it was hidden
25041 (eval-after-load "ecb"
25042 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25043 "Make hierarchy visible when jumping into location from ECB tree buffer."
25044 (if (derived-mode-p 'org-mode)
25045 (org-show-context))))
25047 (defun org-bookmark-jump-unhide ()
25048 "Unhide the current position, to show the bookmark location."
25049 (and (derived-mode-p 'org-mode)
25050 (or (outline-invisible-p)
25051 (save-excursion (goto-char (max (point-min) (1- (point))))
25052 (outline-invisible-p)))
25053 (org-show-context 'bookmark-jump)))
25055 (defun org-mark-jump-unhide ()
25056 "Make the point visible with `org-show-context' after jumping to the mark."
25057 (when (and (derived-mode-p 'org-mode)
25058 (outline-invisible-p))
25059 (org-show-context 'mark-goto)))
25061 (eval-after-load "simple"
25062 '(defadvice pop-to-mark-command (after org-make-visible activate)
25063 "Make the point visible with `org-show-context'."
25064 (org-mark-jump-unhide)))
25066 (eval-after-load "simple"
25067 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25068 "Make the point visible with `org-show-context'."
25069 (org-mark-jump-unhide)))
25071 (eval-after-load "simple"
25072 '(defadvice pop-global-mark (after org-make-visible activate)
25073 "Make the point visible with `org-show-context'."
25074 (org-mark-jump-unhide)))
25076 ;; Make session.el ignore our circular variable
25077 (defvar session-globals-exclude)
25078 (eval-after-load "session"
25079 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25081 ;;;; Finish up
25083 (provide 'org)
25085 (run-hooks 'org-load-hook)
25087 ;;; org.el ends here