org.el: Add grffile to default latex packages
[org-mode/org-tableheadings.git] / lisp / org.el
blob25b269366687dd8eb9ed15fcdea1518d46c6506b
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
185 (declare-function org-element-update-syntax "org-element" ())
187 (defsubst org-uniquify (list)
188 "Non-destructively remove duplicate elements from LIST."
189 (let ((res (copy-sequence list))) (delete-dups res)))
191 (defsubst org-get-at-bol (property)
192 "Get text property PROPERTY at the beginning of line."
193 (get-text-property (point-at-bol) property))
195 (defsubst org-trim (s)
196 "Remove whitespace at the beginning and the end of string S."
197 (replace-regexp-in-string
198 "\\`[ \t\n\r]+" ""
199 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
201 ;; load languages based on value of `org-babel-load-languages'
202 (defvar org-babel-load-languages)
204 ;;;###autoload
205 (defun org-babel-do-load-languages (sym value)
206 "Load the languages defined in `org-babel-load-languages'."
207 (set-default sym value)
208 (mapc (lambda (pair)
209 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
210 (if active
211 (progn
212 (require (intern (concat "ob-" lang))))
213 (progn
214 (funcall 'fmakunbound
215 (intern (concat "org-babel-execute:" lang)))
216 (funcall 'fmakunbound
217 (intern (concat "org-babel-expand-body:" lang)))))))
218 org-babel-load-languages))
220 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
221 ;;;###autoload
222 (defun org-babel-load-file (file &optional compile)
223 "Load Emacs Lisp source code blocks in the Org-mode FILE.
224 This function exports the source code using `org-babel-tangle'
225 and then loads the resulting file using `load-file'. With prefix
226 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
227 file to byte-code before it is loaded."
228 (interactive "fFile to load: \nP")
229 (let* ((age (lambda (file)
230 (float-time
231 (time-subtract (current-time)
232 (nth 5 (or (file-attributes (file-truename file))
233 (file-attributes file)))))))
234 (base-name (file-name-sans-extension file))
235 (exported-file (concat base-name ".el")))
236 ;; tangle if the org-mode file is newer than the elisp file
237 (unless (and (file-exists-p exported-file)
238 (> (funcall age file) (funcall age exported-file)))
239 ;; Tangle-file traversal returns reversed list of tangled files
240 ;; and we want to evaluate the first target.
241 (setq exported-file
242 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
243 (message "%s %s"
244 (if compile
245 (progn (byte-compile-file exported-file 'load)
246 "Compiled and loaded")
247 (progn (load-file exported-file) "Loaded"))
248 exported-file)))
250 (defcustom org-babel-load-languages '((emacs-lisp . t))
251 "Languages which can be evaluated in Org-mode buffers.
252 This list can be used to load support for any of the languages
253 below, note that each language will depend on a different set of
254 system executables and/or Emacs modes. When a language is
255 \"loaded\", then code blocks in that language can be evaluated
256 with `org-babel-execute-src-block' bound by default to C-c
257 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
258 be set to remove code block evaluation from the C-c C-c
259 keybinding. By default only Emacs Lisp (which has no
260 requirements) is loaded."
261 :group 'org-babel
262 :set 'org-babel-do-load-languages
263 :version "24.1"
264 :type '(alist :tag "Babel Languages"
265 :key-type
266 (choice
267 (const :tag "Awk" awk)
268 (const :tag "C" C)
269 (const :tag "R" R)
270 (const :tag "Asymptote" asymptote)
271 (const :tag "Calc" calc)
272 (const :tag "Clojure" clojure)
273 (const :tag "CSS" css)
274 (const :tag "Ditaa" ditaa)
275 (const :tag "Dot" dot)
276 (const :tag "Emacs Lisp" emacs-lisp)
277 (const :tag "Forth" forth)
278 (const :tag "Fortran" fortran)
279 (const :tag "Gnuplot" gnuplot)
280 (const :tag "Haskell" haskell)
281 (const :tag "IO" io)
282 (const :tag "J" J)
283 (const :tag "Java" java)
284 (const :tag "Javascript" js)
285 (const :tag "LaTeX" latex)
286 (const :tag "Ledger" ledger)
287 (const :tag "Lilypond" lilypond)
288 (const :tag "Lisp" lisp)
289 (const :tag "Makefile" makefile)
290 (const :tag "Maxima" maxima)
291 (const :tag "Matlab" matlab)
292 (const :tag "Mscgen" mscgen)
293 (const :tag "Ocaml" ocaml)
294 (const :tag "Octave" octave)
295 (const :tag "Org" org)
296 (const :tag "Perl" perl)
297 (const :tag "Pico Lisp" picolisp)
298 (const :tag "PlantUML" plantuml)
299 (const :tag "Python" python)
300 (const :tag "Ruby" ruby)
301 (const :tag "Sass" sass)
302 (const :tag "Scala" scala)
303 (const :tag "Scheme" scheme)
304 (const :tag "Screen" screen)
305 (const :tag "Shell Script" shell)
306 (const :tag "Shen" shen)
307 (const :tag "Sql" sql)
308 (const :tag "Sqlite" sqlite)
309 (const :tag "ebnf2ps" ebnf2ps))
310 :value-type (boolean :tag "Activate" :value t)))
312 ;;;; Customization variables
313 (defcustom org-clone-delete-id nil
314 "Remove ID property of clones of a subtree.
315 When non-nil, clones of a subtree don't inherit the ID property.
316 Otherwise they inherit the ID property with a new unique
317 identifier."
318 :type 'boolean
319 :version "24.1"
320 :group 'org-id)
322 ;;; Version
323 (org-check-version)
325 ;;;###autoload
326 (defun org-version (&optional here full message)
327 "Show the org-mode version.
328 Interactively, or when MESSAGE is non-nil, show it in echo area.
329 With prefix argument, or when HERE is non-nil, insert it at point.
330 In non-interactive uses, a reduced version string is output unless
331 FULL is given."
332 (interactive (list current-prefix-arg t (not current-prefix-arg)))
333 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
334 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
335 (load-suffixes (list ".el"))
336 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
337 (org-trash (or
338 (and (fboundp 'org-release) (fboundp 'org-git-version))
339 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
340 (load-suffixes save-load-suffixes)
341 (org-version (org-release))
342 (git-version (org-git-version))
343 (version (format "Org-mode version %s (%s @ %s)"
344 org-version
345 git-version
346 (if org-install-dir
347 (if (string= org-dir org-install-dir)
348 org-install-dir
349 (concat "mixed installation! " org-install-dir " and " org-dir))
350 "org-loaddefs.el can not be found!")))
351 (version1 (if full version org-version)))
352 (when here (insert version1))
353 (when message (message "%s" version1))
354 version1))
356 (defconst org-version (org-version))
359 ;;; Syntax Constants
361 ;;;; Block
363 (defconst org-block-regexp
364 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
365 "Regular expression for hiding blocks.")
367 (defconst org-dblock-start-re
368 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
369 "Matches the start line of a dynamic block, with parameters.")
371 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
372 "Matches the end of a dynamic block.")
374 ;;;; Clock and Planning
376 (defconst org-clock-string "CLOCK:"
377 "String used as prefix for timestamps clocking work hours on an item.")
379 (defvar org-closed-string "CLOSED:"
380 "String used as the prefix for timestamps logging closing a TODO entry.")
382 (defvar org-deadline-string "DEADLINE:"
383 "String to mark deadline entries.
384 A deadline is this string, followed by a time stamp. Should be a word,
385 terminated by a colon. You can insert a schedule keyword and
386 a timestamp with \\[org-deadline].")
388 (defvar org-scheduled-string "SCHEDULED:"
389 "String to mark scheduled TODO entries.
390 A schedule is this string, followed by a time stamp. Should be a word,
391 terminated by a colon. You can insert a schedule keyword and
392 a timestamp with \\[org-schedule].")
394 (defconst org-ds-keyword-length
395 (+ 2
396 (apply #'max
397 (mapcar #'length
398 (list org-deadline-string org-scheduled-string
399 org-clock-string org-closed-string))))
400 "Maximum length of the DEADLINE and SCHEDULED keywords.")
402 (defconst org-planning-line-re
403 (concat "^[ \t]*"
404 (regexp-opt
405 (list org-closed-string org-deadline-string org-scheduled-string)
407 "Matches a line with planning info.
408 Matched keyword is in group 1.")
410 (defconst org-clock-line-re
411 (concat "^[ \t]*" org-clock-string)
412 "Matches a line with clock info.")
414 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
415 "Matches the DEADLINE keyword.")
417 (defconst org-deadline-time-regexp
418 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
419 "Matches the DEADLINE keyword together with a time stamp.")
421 (defconst org-deadline-time-hour-regexp
422 (concat "\\<" org-deadline-string
423 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
424 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
426 (defconst org-deadline-line-regexp
427 (concat "\\<\\(" org-deadline-string "\\).*")
428 "Matches the DEADLINE keyword and the rest of the line.")
430 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
431 "Matches the SCHEDULED keyword.")
433 (defconst org-scheduled-time-regexp
434 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
435 "Matches the SCHEDULED keyword together with a time stamp.")
437 (defconst org-scheduled-time-hour-regexp
438 (concat "\\<" org-scheduled-string
439 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
440 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
442 (defconst org-closed-time-regexp
443 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
444 "Matches the CLOSED keyword together with a time stamp.")
446 (defconst org-keyword-time-regexp
447 (concat "\\<"
448 (regexp-opt
449 (list org-scheduled-string org-deadline-string org-closed-string
450 org-clock-string)
452 " *[[<]\\([^]>]+\\)[]>]")
453 "Matches any of the 4 keywords, together with the time stamp.")
455 (defconst org-keyword-time-not-clock-regexp
456 (concat
457 "\\<"
458 (regexp-opt
459 (list org-scheduled-string org-deadline-string org-closed-string) t)
460 " *[[<]\\([^]>]+\\)[]>]")
461 "Matches any of the 3 keywords, together with the time stamp.")
463 (defconst org-maybe-keyword-time-regexp
464 (concat "\\(\\<"
465 (regexp-opt
466 (list org-scheduled-string org-deadline-string org-closed-string
467 org-clock-string)
469 "\\)?"
470 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
471 "\\|"
472 "<%%([^\r\n>]*>\\)")
473 "Matches a timestamp, possibly preceded by a keyword.")
475 (defconst org-all-time-keywords
476 (mapcar (lambda (w) (substring w 0 -1))
477 (list org-scheduled-string org-deadline-string
478 org-clock-string org-closed-string))
479 "List of time keywords.")
481 ;;;; Drawer
483 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
484 "Matches first or last line of a hidden block.
485 Group 1 contains drawer's name or \"END\".")
487 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
488 "Regular expression matching the first line of a property drawer.")
490 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
491 "Regular expression matching the last line of a property drawer.")
493 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
494 "Regular expression matching the first line of a clock drawer.")
496 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
497 "Regular expression matching the last line of a clock drawer.")
499 (defconst org-property-drawer-re
500 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
501 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
502 "[ \t]*:END:[ \t]*$")
503 "Matches an entire property drawer.")
505 (defconst org-clock-drawer-re
506 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
507 org-clock-drawer-end-re "\\)\n?")
508 "Matches an entire clock drawer.")
510 ;;;; Headline
512 (defconst org-heading-keyword-regexp-format
513 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
514 "Printf format for a regexp matching a headline with some keyword.
515 This regexp will match the headline of any node which has the
516 exact keyword that is put into the format. The keyword isn't in
517 any group by default, but the stars and the body are.")
519 (defconst org-heading-keyword-maybe-regexp-format
520 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
521 "Printf format for a regexp matching a headline, possibly with some keyword.
522 This regexp can match any headline with the specified keyword, or
523 without a keyword. The keyword isn't in any group by default,
524 but the stars and the body are.")
526 (defconst org-archive-tag "ARCHIVE"
527 "The tag that marks a subtree as archived.
528 An archived subtree does not open during visibility cycling, and does
529 not contribute to the agenda listings.")
531 (defconst org-comment-string "COMMENT"
532 "Entries starting with this keyword will never be exported.
533 An entry can be toggled between COMMENT and normal with
534 \\[org-toggle-comment].")
537 ;;;; LaTeX Environments and Fragments
539 (defconst org-latex-regexps
540 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
541 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
542 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
543 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
544 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
545 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
546 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
547 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
548 "Regular expressions for matching embedded LaTeX.")
550 ;;;; Node Property
552 (defconst org-effort-property "Effort"
553 "The property that is being used to keep track of effort estimates.
554 Effort estimates given in this property need to have the format H:MM.")
556 ;;;; Table
558 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
559 "Detect an org-type or table-type table.")
561 (defconst org-table-line-regexp "^[ \t]*|"
562 "Detect an org-type table line.")
564 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
565 "Detect an org-type table line.")
567 (defconst org-table-hline-regexp "^[ \t]*|-"
568 "Detect an org-type table hline.")
570 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
571 "Detect a table-type table hline.")
573 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
574 "Detect the first line outside a table when searching from within it.
575 This works for both table types.")
577 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
578 "Detect a #+TBLFM line.")
580 ;;;; Timestamp
582 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
583 "Regular expression for fast time stamp matching.")
585 (defconst org-ts-regexp-inactive
586 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
587 "Regular expression for fast inactive time stamp matching.")
589 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
590 "Regular expression for fast time stamp matching.")
592 (defconst org-ts-regexp0
593 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
594 "Regular expression matching time strings for analysis.
595 This one does not require the space after the date, so it can be used
596 on a string that terminates immediately after the date.")
598 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
599 "Regular expression matching time strings for analysis.")
601 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
602 "Regular expression matching time stamps, with groups.")
604 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
605 "Regular expression matching time stamps (also [..]), with groups.")
607 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
608 "Regular expression matching a time stamp range.")
610 (defconst org-tr-regexp-both
611 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
612 "Regular expression matching a time stamp range.")
614 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
615 org-ts-regexp "\\)?")
616 "Regular expression matching a time stamp or time stamp range.")
618 (defconst org-tsr-regexp-both
619 (concat org-ts-regexp-both "\\(--?-?"
620 org-ts-regexp-both "\\)?")
621 "Regular expression matching a time stamp or time stamp range.
622 The time stamps may be either active or inactive.")
624 (defconst org-repeat-re
625 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
626 "Regular expression for specifying repeated events.
627 After a match, group 1 contains the repeat expression.")
629 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
630 "Formats for `format-time-string' which are used for time stamps.")
633 ;;; The custom variables
635 (defgroup org nil
636 "Outline-based notes management and organizer."
637 :tag "Org"
638 :group 'outlines
639 :group 'calendar)
641 (defcustom org-mode-hook nil
642 "Mode hook for Org-mode, run after the mode was turned on."
643 :group 'org
644 :type 'hook)
646 (defcustom org-load-hook nil
647 "Hook that is run after org.el has been loaded."
648 :group 'org
649 :type 'hook)
651 (defcustom org-log-buffer-setup-hook nil
652 "Hook that is run after an Org log buffer is created."
653 :group 'org
654 :version "24.1"
655 :type 'hook)
657 (defvar org-modules) ; defined below
658 (defvar org-modules-loaded nil
659 "Have the modules been loaded already?")
661 (defun org-load-modules-maybe (&optional force)
662 "Load all extensions listed in `org-modules'."
663 (when (or force (not org-modules-loaded))
664 (mapc (lambda (ext)
665 (condition-case nil (require ext)
666 (error (message "Problems while trying to load feature `%s'" ext))))
667 org-modules)
668 (setq org-modules-loaded t)))
670 (defun org-set-modules (var value)
671 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
672 (set var value)
673 (when (featurep 'org)
674 (org-load-modules-maybe 'force)
675 (org-element-cache-reset 'all)))
677 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
678 "Modules that should always be loaded together with org.el.
680 If a description starts with <C>, the file is not part of Emacs
681 and loading it will require that you have downloaded and properly
682 installed the Org mode distribution.
684 You can also use this system to load external packages (i.e. neither Org
685 core modules, nor modules from the CONTRIB directory). Just add symbols
686 to the end of the list. If the package is called org-xyz.el, then you need
687 to add the symbol `xyz', and the package must have a call to:
689 \(provide 'org-xyz)
691 For export specific modules, see also `org-export-backends'."
692 :group 'org
693 :set 'org-set-modules
694 :version "24.4"
695 :package-version '(Org . "8.0")
696 :type
697 '(set :greedy t
698 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
699 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
700 (const :tag " crypt: Encryption of subtrees" org-crypt)
701 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
702 (const :tag " docview: Links to doc-view buffers" org-docview)
703 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
704 (const :tag " habit: Track your consistency with habits" org-habit)
705 (const :tag " id: Global IDs for identifying entries" org-id)
706 (const :tag " info: Links to Info nodes" org-info)
707 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
708 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
709 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
710 (const :tag " mouse: Additional mouse support" org-mouse)
711 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
712 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
713 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
715 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
716 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
717 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
718 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
719 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
720 (const :tag "C collector: Collect properties into tables" org-collector)
721 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
722 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
723 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
724 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
725 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
726 (const :tag "C eval: Include command output as text" org-eval)
727 (const :tag "C eww: Store link to url of eww" org-eww)
728 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
729 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
730 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
731 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
732 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
733 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
734 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
735 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
736 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
737 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
738 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
739 (const :tag "C mew: Links to Mew folders/messages" org-mew)
740 (const :tag "C mtags: Support for muse-like tags" org-mtags)
741 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
742 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
743 (const :tag "C registry: A registry for Org-mode links" org-registry)
744 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
745 (const :tag "C secretary: Team management with org-mode" org-secretary)
746 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
747 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
748 (const :tag "C track: Keep up with Org-mode development" org-track)
749 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
750 (const :tag "C vm: Links to VM folders/messages" org-vm)
751 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
752 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
753 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
755 (defvar org-export-registered-backends) ; From ox.el.
756 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
757 (declare-function org-export-backend-name "ox" (backend))
758 (defcustom org-export-backends '(ascii html icalendar latex)
759 "List of export back-ends that should be always available.
761 If a description starts with <C>, the file is not part of Emacs
762 and loading it will require that you have downloaded and properly
763 installed the Org mode distribution.
765 Unlike to `org-modules', libraries in this list will not be
766 loaded along with Org, but only once the export framework is
767 needed.
769 This variable needs to be set before org.el is loaded. If you
770 need to make a change while Emacs is running, use the customize
771 interface or run the following code, where VAL stands for the new
772 value of the variable, after updating it:
774 \(progn
775 \(setq org-export-registered-backends
776 \(org-remove-if-not
777 \(lambda (backend)
778 \(let ((name (org-export-backend-name backend)))
779 \(or (memq name val)
780 \(catch 'parentp
781 \(dolist (b val)
782 \(and (org-export-derived-backend-p b name)
783 \(throw 'parentp t)))))))
784 org-export-registered-backends))
785 \(let ((new-list (mapcar #'org-export-backend-name
786 org-export-registered-backends)))
787 \(dolist (backend val)
788 \(cond
789 \((not (load (format \"ox-%s\" backend) t t))
790 \(message \"Problems while trying to load export back-end `%s'\"
791 backend))
792 \((not (memq backend new-list)) (push backend new-list))))
793 \(set-default 'org-export-backends new-list)))
795 Adding a back-end to this list will also pull the back-end it
796 depends on, if any."
797 :group 'org
798 :group 'org-export
799 :version "24.4"
800 :package-version '(Org . "8.0")
801 :initialize 'custom-initialize-set
802 :set (lambda (var val)
803 (if (not (featurep 'ox)) (set-default var val)
804 ;; Any back-end not required anymore (not present in VAL and not
805 ;; a parent of any back-end in the new value) is removed from the
806 ;; list of registered back-ends.
807 (setq org-export-registered-backends
808 (org-remove-if-not
809 (lambda (backend)
810 (let ((name (org-export-backend-name backend)))
811 (or (memq name val)
812 (catch 'parentp
813 (dolist (b val)
814 (and (org-export-derived-backend-p b name)
815 (throw 'parentp t)))))))
816 org-export-registered-backends))
817 ;; Now build NEW-LIST of both new back-ends and required
818 ;; parents.
819 (let ((new-list (mapcar #'org-export-backend-name
820 org-export-registered-backends)))
821 (dolist (backend val)
822 (cond
823 ((not (load (format "ox-%s" backend) t t))
824 (message "Problems while trying to load export back-end `%s'"
825 backend))
826 ((not (memq backend new-list)) (push backend new-list))))
827 ;; Set VAR to that list with fixed dependencies.
828 (set-default var new-list))))
829 :type '(set :greedy t
830 (const :tag " ascii Export buffer to ASCII format" ascii)
831 (const :tag " beamer Export buffer to Beamer presentation" beamer)
832 (const :tag " html Export buffer to HTML format" html)
833 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
834 (const :tag " latex Export buffer to LaTeX format" latex)
835 (const :tag " man Export buffer to MAN format" man)
836 (const :tag " md Export buffer to Markdown format" md)
837 (const :tag " odt Export buffer to ODT format" odt)
838 (const :tag " org Export buffer to Org format" org)
839 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
840 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
841 (const :tag "C deck Export buffer to deck.js presentations" deck)
842 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
843 (const :tag "C groff Export buffer to Groff format" groff)
844 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
845 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
846 (const :tag "C s5 Export buffer to s5 presentations" s5)
847 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
849 (eval-after-load 'ox
850 '(mapc
851 (lambda (backend)
852 (condition-case nil (require (intern (format "ox-%s" backend)))
853 (error (message "Problems while trying to load export back-end `%s'"
854 backend))))
855 org-export-backends))
857 (defcustom org-support-shift-select nil
858 "Non-nil means make shift-cursor commands select text when possible.
860 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
861 start selecting a region, or enlarge regions started in this way.
862 In Org-mode, in special contexts, these same keys are used for
863 other purposes, important enough to compete with shift selection.
864 Org tries to balance these needs by supporting `shift-select-mode'
865 outside these special contexts, under control of this variable.
867 The default of this variable is nil, to avoid confusing behavior. Shifted
868 cursor keys will then execute Org commands in the following contexts:
869 - on a headline, changing TODO state (left/right) and priority (up/down)
870 - on a time stamp, changing the time
871 - in a plain list item, changing the bullet type
872 - in a property definition line, switching between allowed values
873 - in the BEGIN line of a clock table (changing the time block).
874 Outside these contexts, the commands will throw an error.
876 When this variable is t and the cursor is not in a special
877 context, Org-mode will support shift-selection for making and
878 enlarging regions. To make this more effective, the bullet
879 cycling will no longer happen anywhere in an item line, but only
880 if the cursor is exactly on the bullet.
882 If you set this variable to the symbol `always', then the keys
883 will not be special in headlines, property lines, and item lines,
884 to make shift selection work there as well. If this is what you
885 want, you can use the following alternative commands: `C-c C-t'
886 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
887 can be used to switch TODO sets, `C-c -' to cycle item bullet
888 types, and properties can be edited by hand or in column view.
890 However, when the cursor is on a timestamp, shift-cursor commands
891 will still edit the time stamp - this is just too good to give up.
893 XEmacs user should have this variable set to nil, because
894 `shift-select-mode' is in Emacs 23 or later only."
895 :group 'org
896 :type '(choice
897 (const :tag "Never" nil)
898 (const :tag "When outside special context" t)
899 (const :tag "Everywhere except timestamps" always)))
901 (defcustom org-loop-over-headlines-in-active-region nil
902 "Shall some commands act upon headlines in the active region?
904 When set to `t', some commands will be performed in all headlines
905 within the active region.
907 When set to `start-level', some commands will be performed in all
908 headlines within the active region, provided that these headlines
909 are of the same level than the first one.
911 When set to a string, those commands will be performed on the
912 matching headlines within the active region. Such string must be
913 a tags/property/todo match as it is used in the agenda tags view.
915 The list of commands is: `org-schedule', `org-deadline',
916 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
917 `org-archive-to-archive-sibling'. The archiving commands skip
918 already archived entries."
919 :type '(choice (const :tag "Don't loop" nil)
920 (const :tag "All headlines in active region" t)
921 (const :tag "In active region, headlines at the same level than the first one" start-level)
922 (string :tag "Tags/Property/Todo matcher"))
923 :version "24.1"
924 :group 'org-todo
925 :group 'org-archive)
927 (defgroup org-startup nil
928 "Options concerning startup of Org-mode."
929 :tag "Org Startup"
930 :group 'org)
932 (defcustom org-startup-folded t
933 "Non-nil means entering Org-mode will switch to OVERVIEW.
934 This can also be configured on a per-file basis by adding one of
935 the following lines anywhere in the buffer:
937 #+STARTUP: fold (or `overview', this is equivalent)
938 #+STARTUP: nofold (or `showall', this is equivalent)
939 #+STARTUP: content
940 #+STARTUP: showeverything
942 By default, this option is ignored when Org opens agenda files
943 for the first time. If you want the agenda to honor the startup
944 option, set `org-agenda-inhibit-startup' to nil."
945 :group 'org-startup
946 :type '(choice
947 (const :tag "nofold: show all" nil)
948 (const :tag "fold: overview" t)
949 (const :tag "content: all headlines" content)
950 (const :tag "show everything, even drawers" showeverything)))
952 (defcustom org-startup-truncated t
953 "Non-nil means entering Org-mode will set `truncate-lines'.
954 This is useful since some lines containing links can be very long and
955 uninteresting. Also tables look terrible when wrapped."
956 :group 'org-startup
957 :type 'boolean)
959 (defcustom org-startup-indented nil
960 "Non-nil means turn on `org-indent-mode' on startup.
961 This can also be configured on a per-file basis by adding one of
962 the following lines anywhere in the buffer:
964 #+STARTUP: indent
965 #+STARTUP: noindent"
966 :group 'org-structure
967 :type '(choice
968 (const :tag "Not" nil)
969 (const :tag "Globally (slow on startup in large files)" t)))
971 (defcustom org-use-sub-superscripts t
972 "Non-nil means interpret \"_\" and \"^\" for display.
974 If you want to control how Org exports those characters, see
975 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
976 used to be an alias for `org-export-with-sub-superscripts' in
977 Org <8.0, it is not anymore.
979 When this option is turned on, you can use TeX-like syntax for
980 sub- and superscripts within the buffer. Several characters after
981 \"_\" or \"^\" will be considered as a single item - so grouping
982 with {} is normally not needed. For example, the following things
983 will be parsed as single sub- or superscripts:
985 10^24 or 10^tau several digits will be considered 1 item.
986 10^-12 or 10^-tau a leading sign with digits or a word
987 x^2-y^3 will be read as x^2 - y^3, because items are
988 terminated by almost any nonword/nondigit char.
989 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
991 Still, ambiguity is possible. So when in doubt, use {} to enclose
992 the sub/superscript. If you set this variable to the symbol `{}',
993 the braces are *required* in order to trigger interpretations as
994 sub/superscript. This can be helpful in documents that need \"_\"
995 frequently in plain text."
996 :group 'org-startup
997 :version "24.4"
998 :package-version '(Org . "8.0")
999 :type '(choice
1000 (const :tag "Always interpret" t)
1001 (const :tag "Only with braces" {})
1002 (const :tag "Never interpret" nil)))
1004 (defcustom org-startup-with-beamer-mode nil
1005 "Non-nil means turn on `org-beamer-mode' on startup.
1006 This can also be configured on a per-file basis by adding one of
1007 the following lines anywhere in the buffer:
1009 #+STARTUP: beamer"
1010 :group 'org-startup
1011 :version "24.1"
1012 :type 'boolean)
1014 (defcustom org-startup-align-all-tables nil
1015 "Non-nil means align all tables when visiting a file.
1016 This is useful when the column width in tables is forced with <N> cookies
1017 in table fields. Such tables will look correct only after the first re-align.
1018 This can also be configured on a per-file basis by adding one of
1019 the following lines anywhere in the buffer:
1020 #+STARTUP: align
1021 #+STARTUP: noalign"
1022 :group 'org-startup
1023 :type 'boolean)
1025 (defcustom org-startup-with-inline-images nil
1026 "Non-nil means show inline images when loading a new Org file.
1027 This can also be configured on a per-file basis by adding one of
1028 the following lines anywhere in the buffer:
1029 #+STARTUP: inlineimages
1030 #+STARTUP: noinlineimages"
1031 :group 'org-startup
1032 :version "24.1"
1033 :type 'boolean)
1035 (defcustom org-startup-with-latex-preview nil
1036 "Non-nil means preview LaTeX fragments when loading a new Org file.
1038 This can also be configured on a per-file basis by adding one of
1039 the following lines anywhere in the buffer:
1040 #+STARTUP: latexpreview
1041 #+STARTUP: nolatexpreview"
1042 :group 'org-startup
1043 :version "24.4"
1044 :package-version '(Org . "8.0")
1045 :type 'boolean)
1047 (defcustom org-insert-mode-line-in-empty-file nil
1048 "Non-nil means insert the first line setting Org-mode in empty files.
1049 When the function `org-mode' is called interactively in an empty file, this
1050 normally means that the file name does not automatically trigger Org-mode.
1051 To ensure that the file will always be in Org-mode in the future, a
1052 line enforcing Org-mode will be inserted into the buffer, if this option
1053 has been set."
1054 :group 'org-startup
1055 :type 'boolean)
1057 (defcustom org-replace-disputed-keys nil
1058 "Non-nil means use alternative key bindings for some keys.
1059 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1060 These keys are also used by other packages like shift-selection-mode'
1061 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1062 If you want to use Org-mode together with one of these other modes,
1063 or more generally if you would like to move some Org-mode commands to
1064 other keys, set this variable and configure the keys with the variable
1065 `org-disputed-keys'.
1067 This option is only relevant at load-time of Org-mode, and must be set
1068 *before* org.el is loaded. Changing it requires a restart of Emacs to
1069 become effective."
1070 :group 'org-startup
1071 :type 'boolean)
1073 (defcustom org-use-extra-keys nil
1074 "Non-nil means use extra key sequence definitions for certain commands.
1075 This happens automatically if you run XEmacs or if `window-system'
1076 is nil. This variable lets you do the same manually. You must
1077 set it before loading org.
1079 Example: on Carbon Emacs 22 running graphically, with an external
1080 keyboard on a Powerbook, the default way of setting M-left might
1081 not work for either Alt or ESC. Setting this variable will make
1082 it work for ESC."
1083 :group 'org-startup
1084 :type 'boolean)
1086 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1088 (defcustom org-disputed-keys
1089 '(([(shift up)] . [(meta p)])
1090 ([(shift down)] . [(meta n)])
1091 ([(shift left)] . [(meta -)])
1092 ([(shift right)] . [(meta +)])
1093 ([(control shift right)] . [(meta shift +)])
1094 ([(control shift left)] . [(meta shift -)]))
1095 "Keys for which Org-mode and other modes compete.
1096 This is an alist, cars are the default keys, second element specifies
1097 the alternative to use when `org-replace-disputed-keys' is t.
1099 Keys can be specified in any syntax supported by `define-key'.
1100 The value of this option takes effect only at Org-mode's startup,
1101 therefore you'll have to restart Emacs to apply it after changing."
1102 :group 'org-startup
1103 :type 'alist)
1105 (defun org-key (key)
1106 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1107 Or return the original if not disputed.
1108 Also apply the translations defined in `org-xemacs-key-equivalents'."
1109 (when org-replace-disputed-keys
1110 (let* ((nkey (key-description key))
1111 (x (org-find-if (lambda (x)
1112 (equal (key-description (car x)) nkey))
1113 org-disputed-keys)))
1114 (setq key (if x (cdr x) key))))
1115 (when (featurep 'xemacs)
1116 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1117 key)
1119 (defun org-find-if (predicate seq)
1120 (catch 'exit
1121 (while seq
1122 (if (funcall predicate (car seq))
1123 (throw 'exit (car seq))
1124 (pop seq)))))
1126 (defun org-defkey (keymap key def)
1127 "Define a key, possibly translated, as returned by `org-key'."
1128 (define-key keymap (org-key key) def))
1130 (defcustom org-ellipsis nil
1131 "The ellipsis to use in the Org-mode outline.
1132 When nil, just use the standard three dots.
1133 When a string, use that string instead.
1134 When a face, use the standard 3 dots, but with the specified face.
1135 The change affects only Org-mode (which will then use its own display table).
1136 Changing this requires executing \\[org-mode] in a buffer to become
1137 effective."
1138 :group 'org-startup
1139 :type '(choice (const :tag "Default" nil)
1140 (face :tag "Face" :value org-warning)
1141 (string :tag "String" :value "...#")))
1143 (defvar org-display-table nil
1144 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1146 (defgroup org-keywords nil
1147 "Keywords in Org-mode."
1148 :tag "Org Keywords"
1149 :group 'org)
1151 (defcustom org-closed-keep-when-no-todo nil
1152 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1153 :group 'org-todo
1154 :group 'org-keywords
1155 :version "24.4"
1156 :package-version '(Org . "8.0")
1157 :type 'boolean)
1159 (defgroup org-structure nil
1160 "Options concerning the general structure of Org-mode files."
1161 :tag "Org Structure"
1162 :group 'org)
1164 (defgroup org-reveal-location nil
1165 "Options about how to make context of a location visible."
1166 :tag "Org Reveal Location"
1167 :group 'org-structure)
1169 (defcustom org-show-context-detail '((isearch . lineage)
1170 (bookmark-jump . lineage)
1171 (default . ancestors))
1172 "Alist between context and visibility span when revealing a location.
1174 \\<org-mode-map>Some actions may move point into invisible
1175 locations. As a consequence, Org always expose a neighborhood
1176 around point. How much is shown depends on the initial action,
1177 or context. Valid contexts are
1179 agenda when exposing an entry from the agenda
1180 org-goto when using the command `org-goto' (\\[org-goto])
1181 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1182 tags-tree when constructing a sparse tree based on tags matches
1183 link-search when exposing search matches associated with a link
1184 mark-goto when exposing the jump goal of a mark
1185 bookmark-jump when exposing a bookmark location
1186 isearch when exiting from an incremental search
1187 default default for all contexts not set explicitly
1189 Allowed visibility spans are
1191 minimal show current headline; if point is not on headline,
1192 also show entry
1194 local show current headline, entry and next headline
1196 ancestors show current headline and its direct ancestors; if
1197 point is not on headline, also show entry
1199 lineage show current headline, its direct ancestors and all
1200 their children; if point is not on headline, also show
1201 entry and first child
1203 tree show current headline, its direct ancestors and all
1204 their children; if point is not on headline, also show
1205 entry and all children
1207 canonical show current headline, its direct ancestors along with
1208 their entries and children; if point is not located on
1209 the headline, also show current entry and all children
1211 As special cases, a nil or t value means show all contexts in
1212 `minimal' or `canonical' view, respectively.
1214 Some views can make displayed information very compact, but also
1215 make it harder to edit the location of the match. In such
1216 a case, use the command `org-reveal' (\\[org-reveal]) to show
1217 more context."
1218 :group 'org-reveal-location
1219 :version "25.1"
1220 :package-version '(Org . "8.3")
1221 :type '(choice
1222 (const :tag "Canonical" t)
1223 (const :tag "Minimal" nil)
1224 (repeat :greedy t :tag "Individual contexts"
1225 (cons
1226 (choice :tag "Context"
1227 (const agenda)
1228 (const org-goto)
1229 (const occur-tree)
1230 (const tags-tree)
1231 (const link-search)
1232 (const mark-goto)
1233 (const bookmark-jump)
1234 (const isearch)
1235 (const default))
1236 (choice :tag "Detail level"
1237 (const minimal)
1238 (const local)
1239 (const ancestors)
1240 (const lineage)
1241 (const tree)
1242 (const canonical))))))
1244 (defcustom org-indirect-buffer-display 'other-window
1245 "How should indirect tree buffers be displayed?
1246 This applies to indirect buffers created with the commands
1247 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1248 Valid values are:
1249 current-window Display in the current window
1250 other-window Just display in another window.
1251 dedicated-frame Create one new frame, and re-use it each time.
1252 new-frame Make a new frame each time. Note that in this case
1253 previously-made indirect buffers are kept, and you need to
1254 kill these buffers yourself."
1255 :group 'org-structure
1256 :group 'org-agenda-windows
1257 :type '(choice
1258 (const :tag "In current window" current-window)
1259 (const :tag "In current frame, other window" other-window)
1260 (const :tag "Each time a new frame" new-frame)
1261 (const :tag "One dedicated frame" dedicated-frame)))
1263 (defcustom org-use-speed-commands nil
1264 "Non-nil means activate single letter commands at beginning of a headline.
1265 This may also be a function to test for appropriate locations where speed
1266 commands should be active.
1268 For example, to activate speed commands when the point is on any
1269 star at the beginning of the headline, you can do this:
1271 (setq org-use-speed-commands
1272 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1273 :group 'org-structure
1274 :type '(choice
1275 (const :tag "Never" nil)
1276 (const :tag "At beginning of headline stars" t)
1277 (function)))
1279 (defcustom org-speed-commands-user nil
1280 "Alist of additional speed commands.
1281 This list will be checked before `org-speed-commands-default'
1282 when the variable `org-use-speed-commands' is non-nil
1283 and when the cursor is at the beginning of a headline.
1284 The car if each entry is a string with a single letter, which must
1285 be assigned to `self-insert-command' in the global map.
1286 The cdr is either a command to be called interactively, a function
1287 to be called, or a form to be evaluated.
1288 An entry that is just a list with a single string will be interpreted
1289 as a descriptive headline that will be added when listing the speed
1290 commands in the Help buffer using the `?' speed command."
1291 :group 'org-structure
1292 :type '(repeat :value ("k" . ignore)
1293 (choice :value ("k" . ignore)
1294 (list :tag "Descriptive Headline" (string :tag "Headline"))
1295 (cons :tag "Letter and Command"
1296 (string :tag "Command letter")
1297 (choice
1298 (function)
1299 (sexp))))))
1301 (defcustom org-bookmark-names-plist
1302 '(:last-capture "org-capture-last-stored"
1303 :last-refile "org-refile-last-stored"
1304 :last-capture-marker "org-capture-last-stored-marker")
1305 "Names for bookmarks automatically set by some Org commands.
1306 This can provide strings as names for a number of bookmarks Org sets
1307 automatically. The following keys are currently implemented:
1308 :last-capture
1309 :last-capture-marker
1310 :last-refile
1311 When a key does not show up in the property list, the corresponding bookmark
1312 is not set."
1313 :group 'org-structure
1314 :type 'plist)
1316 (defgroup org-cycle nil
1317 "Options concerning visibility cycling in Org-mode."
1318 :tag "Org Cycle"
1319 :group 'org-structure)
1321 (defcustom org-cycle-skip-children-state-if-no-children t
1322 "Non-nil means skip CHILDREN state in entries that don't have any."
1323 :group 'org-cycle
1324 :type 'boolean)
1326 (defcustom org-cycle-max-level nil
1327 "Maximum level which should still be subject to visibility cycling.
1328 Levels higher than this will, for cycling, be treated as text, not a headline.
1329 When `org-odd-levels-only' is set, a value of N in this variable actually
1330 means 2N-1 stars as the limiting headline.
1331 When nil, cycle all levels.
1332 Note that the limiting level of cycling is also influenced by
1333 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1334 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1335 than its value."
1336 :group 'org-cycle
1337 :type '(choice
1338 (const :tag "No limit" nil)
1339 (integer :tag "Maximum level")))
1341 (defcustom org-hide-block-startup nil
1342 "Non-nil means entering Org-mode will fold all blocks.
1343 This can also be set in on a per-file basis with
1345 #+STARTUP: hideblocks
1346 #+STARTUP: showblocks"
1347 :group 'org-startup
1348 :group 'org-cycle
1349 :type 'boolean)
1351 (defcustom org-cycle-global-at-bob nil
1352 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1353 This makes it possible to do global cycling without having to use S-TAB or
1354 \\[universal-argument] TAB. For this special case to work, the first line
1355 of the buffer must not be a headline -- it may be empty or some other text.
1356 When used in this way, `org-cycle-hook' is disabled temporarily to make
1357 sure the cursor stays at the beginning of the buffer. When this option is
1358 nil, don't do anything special at the beginning of the buffer."
1359 :group 'org-cycle
1360 :type 'boolean)
1362 (defcustom org-cycle-level-after-item/entry-creation t
1363 "Non-nil means cycle entry level or item indentation in new empty entries.
1365 When the cursor is at the end of an empty headline, i.e., with only stars
1366 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1367 and then all possible ancestor states, before returning to the original state.
1368 This makes data entry extremely fast: M-RET to create a new headline,
1369 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1371 When the cursor is at the end of an empty plain list item, one TAB will
1372 make it a subitem, two or more tabs will back up to make this an item
1373 higher up in the item hierarchy."
1374 :group 'org-cycle
1375 :type 'boolean)
1377 (defcustom org-cycle-emulate-tab t
1378 "Where should `org-cycle' emulate TAB.
1379 nil Never
1380 white Only in completely white lines
1381 whitestart Only at the beginning of lines, before the first non-white char
1382 t Everywhere except in headlines
1383 exc-hl-bol Everywhere except at the start of a headline
1384 If TAB is used in a place where it does not emulate TAB, the current subtree
1385 visibility is cycled."
1386 :group 'org-cycle
1387 :type '(choice (const :tag "Never" nil)
1388 (const :tag "Only in completely white lines" white)
1389 (const :tag "Before first char in a line" whitestart)
1390 (const :tag "Everywhere except in headlines" t)
1391 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1393 (defcustom org-cycle-separator-lines 2
1394 "Number of empty lines needed to keep an empty line between collapsed trees.
1395 If you leave an empty line between the end of a subtree and the following
1396 headline, this empty line is hidden when the subtree is folded.
1397 Org-mode will leave (exactly) one empty line visible if the number of
1398 empty lines is equal or larger to the number given in this variable.
1399 So the default 2 means at least 2 empty lines after the end of a subtree
1400 are needed to produce free space between a collapsed subtree and the
1401 following headline.
1403 If the number is negative, and the number of empty lines is at least -N,
1404 all empty lines are shown.
1406 Special case: when 0, never leave empty lines in collapsed view."
1407 :group 'org-cycle
1408 :type 'integer)
1409 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1411 (defcustom org-pre-cycle-hook nil
1412 "Hook that is run before visibility cycling is happening.
1413 The function(s) in this hook must accept a single argument which indicates
1414 the new state that will be set right after running this hook. The
1415 argument is a symbol. Before a global state change, it can have the values
1416 `overview', `content', or `all'. Before a local state change, it can have
1417 the values `folded', `children', or `subtree'."
1418 :group 'org-cycle
1419 :type 'hook)
1421 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1422 org-cycle-hide-drawers
1423 org-cycle-show-empty-lines
1424 org-optimize-window-after-visibility-change)
1425 "Hook that is run after `org-cycle' has changed the buffer visibility.
1426 The function(s) in this hook must accept a single argument which indicates
1427 the new state that was set by the most recent `org-cycle' command. The
1428 argument is a symbol. After a global state change, it can have the values
1429 `overview', `contents', or `all'. After a local state change, it can have
1430 the values `folded', `children', or `subtree'."
1431 :group 'org-cycle
1432 :type 'hook
1433 :version "25.1"
1434 :package-version '(Org . "8.3"))
1436 (defgroup org-edit-structure nil
1437 "Options concerning structure editing in Org-mode."
1438 :tag "Org Edit Structure"
1439 :group 'org-structure)
1441 (defcustom org-odd-levels-only nil
1442 "Non-nil means skip even levels and only use odd levels for the outline.
1443 This has the effect that two stars are being added/taken away in
1444 promotion/demotion commands. It also influences how levels are
1445 handled by the exporters.
1446 Changing it requires restart of `font-lock-mode' to become effective
1447 for fontification also in regions already fontified.
1448 You may also set this on a per-file basis by adding one of the following
1449 lines to the buffer:
1451 #+STARTUP: odd
1452 #+STARTUP: oddeven"
1453 :group 'org-edit-structure
1454 :group 'org-appearance
1455 :type 'boolean)
1457 (defcustom org-adapt-indentation t
1458 "Non-nil means adapt indentation to outline node level.
1460 When this variable is set, Org assumes that you write outlines by
1461 indenting text in each node to align with the headline (after the
1462 stars). The following issues are influenced by this variable:
1464 - The indentation is increased by one space in a demotion
1465 command, and decreased by one in a promotion command. However,
1466 in the latter case, if shifting some line in the entry body
1467 would alter document structure (e.g., insert a new headline),
1468 indentation is not changed at all.
1470 - Property drawers and planning information is inserted indented
1471 when this variable is set. When nil, they will not be indented.
1473 - TAB indents a line relative to current level. The lines below
1474 a headline will be indented when this variable is set.
1476 Note that this is all about true indentation, by adding and
1477 removing space characters. See also `org-indent.el' which does
1478 level-dependent indentation in a virtual way, i.e. at display
1479 time in Emacs."
1480 :group 'org-edit-structure
1481 :type 'boolean)
1483 (defcustom org-special-ctrl-a/e nil
1484 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1486 When t, `C-a' will bring back the cursor to the beginning of the
1487 headline text, i.e. after the stars and after a possible TODO
1488 keyword. In an item, this will be the position after bullet and
1489 check-box, if any. When the cursor is already at that position,
1490 another `C-a' will bring it to the beginning of the line.
1492 `C-e' will jump to the end of the headline, ignoring the presence
1493 of tags in the headline. A second `C-e' will then jump to the
1494 true end of the line, after any tags. This also means that, when
1495 this variable is non-nil, `C-e' also will never jump beyond the
1496 end of the heading of a folded section, i.e. not after the
1497 ellipses.
1499 When set to the symbol `reversed', the first `C-a' or `C-e' works
1500 normally, going to the true line boundary first. Only a directly
1501 following, identical keypress will bring the cursor to the
1502 special positions.
1504 This may also be a cons cell where the behavior for `C-a' and
1505 `C-e' is set separately."
1506 :group 'org-edit-structure
1507 :type '(choice
1508 (const :tag "off" nil)
1509 (const :tag "on: after stars/bullet and before tags first" t)
1510 (const :tag "reversed: true line boundary first" reversed)
1511 (cons :tag "Set C-a and C-e separately"
1512 (choice :tag "Special C-a"
1513 (const :tag "off" nil)
1514 (const :tag "on: after stars/bullet first" t)
1515 (const :tag "reversed: before stars/bullet first" reversed))
1516 (choice :tag "Special C-e"
1517 (const :tag "off" nil)
1518 (const :tag "on: before tags first" t)
1519 (const :tag "reversed: after tags first" reversed)))))
1520 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1522 (defcustom org-special-ctrl-k nil
1523 "Non-nil means `C-k' will behave specially in headlines.
1524 When nil, `C-k' will call the default `kill-line' command.
1525 When t, the following will happen while the cursor is in the headline:
1527 - When the cursor is at the beginning of a headline, kill the entire
1528 line and possible the folded subtree below the line.
1529 - When in the middle of the headline text, kill the headline up to the tags.
1530 - When after the headline text, kill the tags."
1531 :group 'org-edit-structure
1532 :type 'boolean)
1534 (defcustom org-ctrl-k-protect-subtree nil
1535 "Non-nil means, do not delete a hidden subtree with C-k.
1536 When set to the symbol `error', simply throw an error when C-k is
1537 used to kill (part-of) a headline that has hidden text behind it.
1538 Any other non-nil value will result in a query to the user, if it is
1539 OK to kill that hidden subtree. When nil, kill without remorse."
1540 :group 'org-edit-structure
1541 :version "24.1"
1542 :type '(choice
1543 (const :tag "Do not protect hidden subtrees" nil)
1544 (const :tag "Protect hidden subtrees with a security query" t)
1545 (const :tag "Never kill a hidden subtree with C-k" error)))
1547 (defcustom org-special-ctrl-o t
1548 "Non-nil means, make `C-o' insert a row in tables."
1549 :group 'org-edit-structure
1550 :type 'boolean)
1552 (defcustom org-catch-invisible-edits nil
1553 "Check if in invisible region before inserting or deleting a character.
1554 Valid values are:
1556 nil Do not check, so just do invisible edits.
1557 error Throw an error and do nothing.
1558 show Make point visible, and do the requested edit.
1559 show-and-error Make point visible, then throw an error and abort the edit.
1560 smart Make point visible, and do insertion/deletion if it is
1561 adjacent to visible text and the change feels predictable.
1562 Never delete a previously invisible character or add in the
1563 middle or right after an invisible region. Basically, this
1564 allows insertion and backward-delete right before ellipses.
1565 FIXME: maybe in this case we should not even show?"
1566 :group 'org-edit-structure
1567 :version "24.1"
1568 :type '(choice
1569 (const :tag "Do not check" nil)
1570 (const :tag "Throw error when trying to edit" error)
1571 (const :tag "Unhide, but do not do the edit" show-and-error)
1572 (const :tag "Show invisible part and do the edit" show)
1573 (const :tag "Be smart and do the right thing" smart)))
1575 (defcustom org-yank-folded-subtrees t
1576 "Non-nil means when yanking subtrees, fold them.
1577 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1578 it starts with a heading and all other headings in it are either children
1579 or siblings, then fold all the subtrees. However, do this only if no
1580 text after the yank would be swallowed into a folded tree by this action."
1581 :group 'org-edit-structure
1582 :type 'boolean)
1584 (defcustom org-yank-adjusted-subtrees nil
1585 "Non-nil means when yanking subtrees, adjust the level.
1586 With this setting, `org-paste-subtree' is used to insert the subtree, see
1587 this function for details."
1588 :group 'org-edit-structure
1589 :type 'boolean)
1591 (defcustom org-M-RET-may-split-line '((default . t))
1592 "Non-nil means M-RET will split the line at the cursor position.
1593 When nil, it will go to the end of the line before making a
1594 new line.
1595 You may also set this option in a different way for different
1596 contexts. Valid contexts are:
1598 headline when creating a new headline
1599 item when creating a new item
1600 table in a table field
1601 default the value to be used for all contexts not explicitly
1602 customized"
1603 :group 'org-structure
1604 :group 'org-table
1605 :type '(choice
1606 (const :tag "Always" t)
1607 (const :tag "Never" nil)
1608 (repeat :greedy t :tag "Individual contexts"
1609 (cons
1610 (choice :tag "Context"
1611 (const headline)
1612 (const item)
1613 (const table)
1614 (const default))
1615 (boolean)))))
1618 (defcustom org-insert-heading-respect-content nil
1619 "Non-nil means insert new headings after the current subtree.
1620 When nil, the new heading is created directly after the current line.
1621 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1622 this variable on for the duration of the command."
1623 :group 'org-structure
1624 :type 'boolean)
1626 (defcustom org-blank-before-new-entry '((heading . auto)
1627 (plain-list-item . auto))
1628 "Should `org-insert-heading' leave a blank line before new heading/item?
1629 The value is an alist, with `heading' and `plain-list-item' as CAR,
1630 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1631 which case Org will look at the surrounding headings/items and try to
1632 make an intelligent decision whether to insert a blank line or not.
1634 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1635 the setting here is ignored and no empty line is inserted to avoid breaking
1636 the list structure."
1637 :group 'org-edit-structure
1638 :type '(list
1639 (cons (const heading)
1640 (choice (const :tag "Never" nil)
1641 (const :tag "Always" t)
1642 (const :tag "Auto" auto)))
1643 (cons (const plain-list-item)
1644 (choice (const :tag "Never" nil)
1645 (const :tag "Always" t)
1646 (const :tag "Auto" auto)))))
1648 (defcustom org-insert-heading-hook nil
1649 "Hook being run after inserting a new heading."
1650 :group 'org-edit-structure
1651 :type 'hook)
1653 (defcustom org-enable-fixed-width-editor t
1654 "Non-nil means lines starting with \":\" are treated as fixed-width.
1655 This currently only means they are never auto-wrapped.
1656 When nil, such lines will be treated like ordinary lines."
1657 :group 'org-edit-structure
1658 :type 'boolean)
1660 (defcustom org-goto-auto-isearch t
1661 "Non-nil means typing characters in `org-goto' starts incremental search.
1662 When nil, you can use these keybindings to navigate the buffer:
1664 q Quit the org-goto interface
1665 n Go to the next visible heading
1666 p Go to the previous visible heading
1667 f Go one heading forward on same level
1668 b Go one heading backward on same level
1669 u Go one heading up"
1670 :group 'org-edit-structure
1671 :type 'boolean)
1673 (defgroup org-sparse-trees nil
1674 "Options concerning sparse trees in Org-mode."
1675 :tag "Org Sparse Trees"
1676 :group 'org-structure)
1678 (defcustom org-highlight-sparse-tree-matches t
1679 "Non-nil means highlight all matches that define a sparse tree.
1680 The highlights will automatically disappear the next time the buffer is
1681 changed by an edit command."
1682 :group 'org-sparse-trees
1683 :type 'boolean)
1685 (defcustom org-remove-highlights-with-change t
1686 "Non-nil means any change to the buffer will remove temporary highlights.
1687 Such highlights are created by `org-occur' and `org-clock-display'.
1688 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1689 The highlights created by `org-toggle-latex-fragment' always need
1690 `C-c C-x C-l' to be removed."
1691 :group 'org-sparse-trees
1692 :group 'org-time
1693 :type 'boolean)
1696 (defcustom org-occur-hook '(org-first-headline-recenter)
1697 "Hook that is run after `org-occur' has constructed a sparse tree.
1698 This can be used to recenter the window to show as much of the structure
1699 as possible."
1700 :group 'org-sparse-trees
1701 :type 'hook)
1703 (defgroup org-imenu-and-speedbar nil
1704 "Options concerning imenu and speedbar in Org-mode."
1705 :tag "Org Imenu and Speedbar"
1706 :group 'org-structure)
1708 (defcustom org-imenu-depth 2
1709 "The maximum level for Imenu access to Org-mode headlines.
1710 This also applied for speedbar access."
1711 :group 'org-imenu-and-speedbar
1712 :type 'integer)
1714 (defgroup org-table nil
1715 "Options concerning tables in Org-mode."
1716 :tag "Org Table"
1717 :group 'org)
1719 (defcustom org-enable-table-editor 'optimized
1720 "Non-nil means lines starting with \"|\" are handled by the table editor.
1721 When nil, such lines will be treated like ordinary lines.
1723 When equal to the symbol `optimized', the table editor will be optimized to
1724 do the following:
1725 - Automatic overwrite mode in front of whitespace in table fields.
1726 This makes the structure of the table stay in tact as long as the edited
1727 field does not exceed the column width.
1728 - Minimize the number of realigns. Normally, the table is aligned each time
1729 TAB or RET are pressed to move to another field. With optimization this
1730 happens only if changes to a field might have changed the column width.
1731 Optimization requires replacing the functions `self-insert-command',
1732 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1733 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1734 very good at guessing when a re-align will be necessary, but you can always
1735 force one with \\[org-ctrl-c-ctrl-c].
1737 If you would like to use the optimized version in Org-mode, but the
1738 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1740 This variable can be used to turn on and off the table editor during a session,
1741 but in order to toggle optimization, a restart is required.
1743 See also the variable `org-table-auto-blank-field'."
1744 :group 'org-table
1745 :type '(choice
1746 (const :tag "off" nil)
1747 (const :tag "on" t)
1748 (const :tag "on, optimized" optimized)))
1750 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1751 (version<= emacs-version "24.1"))
1752 "Non-nil means cluster self-insert commands for undo when possible.
1753 If this is set, then, like in the Emacs command loop, 20 consecutive
1754 characters will be undone together.
1755 This is configurable, because there is some impact on typing performance."
1756 :group 'org-table
1757 :type 'boolean)
1759 (defcustom org-table-tab-recognizes-table.el t
1760 "Non-nil means TAB will automatically notice a table.el table.
1761 When it sees such a table, it moves point into it and - if necessary -
1762 calls `table-recognize-table'."
1763 :group 'org-table-editing
1764 :type 'boolean)
1766 (defgroup org-link nil
1767 "Options concerning links in Org-mode."
1768 :tag "Org Link"
1769 :group 'org)
1771 (defvar org-link-abbrev-alist-local nil
1772 "Buffer-local version of `org-link-abbrev-alist', which see.
1773 The value of this is taken from the #+LINK lines.")
1774 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1776 (defcustom org-link-abbrev-alist nil
1777 "Alist of link abbreviations.
1778 The car of each element is a string, to be replaced at the start of a link.
1779 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1780 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1782 [[linkkey:tag][description]]
1784 The 'linkkey' must be a word word, starting with a letter, followed
1785 by letters, numbers, '-' or '_'.
1787 If REPLACE is a string, the tag will simply be appended to create the link.
1788 If the string contains \"%s\", the tag will be inserted there. If the string
1789 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1790 at that point (see the function `url-hexify-string'). If the string contains
1791 the specifier \"%(my-function)\", then the custom function `my-function' will
1792 be invoked: this function takes the tag as its only argument and must return
1793 a string.
1795 REPLACE may also be a function that will be called with the tag as the
1796 only argument to create the link, which should be returned as a string.
1798 See the manual for examples."
1799 :group 'org-link
1800 :type '(repeat
1801 (cons
1802 (string :tag "Protocol")
1803 (choice
1804 (string :tag "Format")
1805 (function)))))
1807 (defcustom org-descriptive-links t
1808 "Non-nil means Org will display descriptive links.
1809 E.g. [[http://orgmode.org][Org website]] will be displayed as
1810 \"Org Website\", hiding the link itself and just displaying its
1811 description. When set to `nil', Org will display the full links
1812 literally.
1814 You can interactively set the value of this variable by calling
1815 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1816 :group 'org-link
1817 :type 'boolean)
1819 (defcustom org-link-file-path-type 'adaptive
1820 "How the path name in file links should be stored.
1821 Valid values are:
1823 relative Relative to the current directory, i.e. the directory of the file
1824 into which the link is being inserted.
1825 absolute Absolute path, if possible with ~ for home directory.
1826 noabbrev Absolute path, no abbreviation of home directory.
1827 adaptive Use relative path for files in the current directory and sub-
1828 directories of it. For other files, use an absolute path."
1829 :group 'org-link
1830 :type '(choice
1831 (const relative)
1832 (const absolute)
1833 (const noabbrev)
1834 (const adaptive)))
1836 (defvaralias 'org-activate-links 'org-highlight-links)
1837 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1838 "Types of links that should be highlighted in Org-mode files.
1840 This is a list of symbols, each one of them leading to the
1841 highlighting of a certain link type.
1843 You can still open links that are not highlighted.
1845 In principle, it does not hurt to turn on highlighting for all
1846 link types. There may be a small gain when turning off unused
1847 link types. The types are:
1849 bracket The recommended [[link][description]] or [[link]] links with hiding.
1850 angle Links in angular brackets that may contain whitespace like
1851 <bbdb:Carsten Dominik>.
1852 plain Plain links in normal text, no whitespace, like http://google.com.
1853 radio Text that is matched by a radio target, see manual for details.
1854 tag Tag settings in a headline (link to tag search).
1855 date Time stamps (link to calendar).
1856 footnote Footnote labels.
1858 If you set this variable during an Emacs session, use `org-mode-restart'
1859 in the Org buffer so that the change takes effect."
1860 :group 'org-link
1861 :group 'org-appearance
1862 :type '(set :greedy t
1863 (const :tag "Double bracket links" bracket)
1864 (const :tag "Angular bracket links" angle)
1865 (const :tag "Plain text links" plain)
1866 (const :tag "Radio target matches" radio)
1867 (const :tag "Tags" tag)
1868 (const :tag "Timestamps" date)
1869 (const :tag "Footnotes" footnote)))
1871 (defcustom org-make-link-description-function nil
1872 "Function to use for generating link descriptions from links.
1873 When nil, the link location will be used. This function must take
1874 two parameters: the first one is the link, the second one is the
1875 description generated by `org-insert-link'. The function should
1876 return the description to use."
1877 :group 'org-link
1878 :type '(choice (const nil) (function)))
1880 (defgroup org-link-store nil
1881 "Options concerning storing links in Org-mode."
1882 :tag "Org Store Link"
1883 :group 'org-link)
1885 (defcustom org-url-hexify-p t
1886 "When non-nil, hexify URL when creating a link."
1887 :type 'boolean
1888 :version "24.3"
1889 :group 'org-link-store)
1891 (defcustom org-email-link-description-format "Email %c: %.30s"
1892 "Format of the description part of a link to an email or usenet message.
1893 The following %-escapes will be replaced by corresponding information:
1895 %F full \"From\" field
1896 %f name, taken from \"From\" field, address if no name
1897 %T full \"To\" field
1898 %t first name in \"To\" field, address if no name
1899 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1900 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1901 %s subject
1902 %d date
1903 %m message-id.
1905 You may use normal field width specification between the % and the letter.
1906 This is for example useful to limit the length of the subject.
1908 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1909 :group 'org-link-store
1910 :type 'string)
1912 (defcustom org-from-is-user-regexp
1913 (let (r1 r2)
1914 (when (and user-mail-address (not (string= user-mail-address "")))
1915 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1916 (when (and user-full-name (not (string= user-full-name "")))
1917 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1918 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1919 "Regexp matched against the \"From:\" header of an email or usenet message.
1920 It should match if the message is from the user him/herself."
1921 :group 'org-link-store
1922 :type 'regexp)
1924 (defcustom org-context-in-file-links t
1925 "Non-nil means file links from `org-store-link' contain context.
1926 A search string will be added to the file name with :: as separator and
1927 used to find the context when the link is activated by the command
1928 `org-open-at-point'. When this option is t, the entire active region
1929 will be placed in the search string of the file link. If set to a
1930 positive integer, only the first n lines of context will be stored.
1932 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1933 negates this setting for the duration of the command."
1934 :group 'org-link-store
1935 :type '(choice boolean integer))
1937 (defcustom org-keep-stored-link-after-insertion nil
1938 "Non-nil means keep link in list for entire session.
1940 The command `org-store-link' adds a link pointing to the current
1941 location to an internal list. These links accumulate during a session.
1942 The command `org-insert-link' can be used to insert links into any
1943 Org-mode file (offering completion for all stored links). When this
1944 option is nil, every link which has been inserted once using \\[org-insert-link]
1945 will be removed from the list, to make completing the unused links
1946 more efficient."
1947 :group 'org-link-store
1948 :type 'boolean)
1950 (defgroup org-link-follow nil
1951 "Options concerning following links in Org-mode."
1952 :tag "Org Follow Link"
1953 :group 'org-link)
1955 (defcustom org-link-translation-function nil
1956 "Function to translate links with different syntax to Org syntax.
1957 This can be used to translate links created for example by the Planner
1958 or emacs-wiki packages to Org syntax.
1959 The function must accept two parameters, a TYPE containing the link
1960 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1961 which is everything after the link protocol. It should return a cons
1962 with possibly modified values of type and path.
1963 Org contains a function for this, so if you set this variable to
1964 `org-translate-link-from-planner', you should be able follow many
1965 links created by planner."
1966 :group 'org-link-follow
1967 :type '(choice (const nil) (function)))
1969 (defcustom org-follow-link-hook nil
1970 "Hook that is run after a link has been followed."
1971 :group 'org-link-follow
1972 :type 'hook)
1974 (defcustom org-tab-follows-link nil
1975 "Non-nil means on links TAB will follow the link.
1976 Needs to be set before org.el is loaded.
1977 This really should not be used, it does not make sense, and the
1978 implementation is bad."
1979 :group 'org-link-follow
1980 :type 'boolean)
1982 (defcustom org-return-follows-link nil
1983 "Non-nil means on links RET will follow the link.
1984 In tables, the special behavior of RET has precedence."
1985 :group 'org-link-follow
1986 :type 'boolean)
1988 (defcustom org-mouse-1-follows-link
1989 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1990 "Non-nil means mouse-1 on a link will follow the link.
1991 A longer mouse click will still set point. Does not work on XEmacs.
1992 Needs to be set before org.el is loaded."
1993 :group 'org-link-follow
1994 :version "24.4"
1995 :package-version '(Org . "8.3")
1996 :type '(choice
1997 (const :tag "A double click follows the link" double)
1998 (const :tag "Unconditionally follow the link with mouse-1" t)
1999 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2001 (defcustom org-mark-ring-length 4
2002 "Number of different positions to be recorded in the ring.
2003 Changing this requires a restart of Emacs to work correctly."
2004 :group 'org-link-follow
2005 :type 'integer)
2007 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2008 "Non-nil means internal links in Org files must exactly match a headline.
2009 When nil, the link search tries to match a phrase with all words
2010 in the search text."
2011 :group 'org-link-follow
2012 :version "24.1"
2013 :type '(choice
2014 (const :tag "Use fuzzy text search" nil)
2015 (const :tag "Match only exact headline" t)
2016 (const :tag "Match exact headline or query to create it"
2017 query-to-create)))
2019 (defcustom org-link-frame-setup
2020 '((vm . vm-visit-folder-other-frame)
2021 (vm-imap . vm-visit-imap-folder-other-frame)
2022 (gnus . org-gnus-no-new-news)
2023 (file . find-file-other-window)
2024 (wl . wl-other-frame))
2025 "Setup the frame configuration for following links.
2026 When following a link with Emacs, it may often be useful to display
2027 this link in another window or frame. This variable can be used to
2028 set this up for the different types of links.
2029 For VM, use any of
2030 `vm-visit-folder'
2031 `vm-visit-folder-other-window'
2032 `vm-visit-folder-other-frame'
2033 For Gnus, use any of
2034 `gnus'
2035 `gnus-other-frame'
2036 `org-gnus-no-new-news'
2037 For FILE, use any of
2038 `find-file'
2039 `find-file-other-window'
2040 `find-file-other-frame'
2041 For Wanderlust use any of
2042 `wl'
2043 `wl-other-frame'
2044 For the calendar, use the variable `calendar-setup'.
2045 For BBDB, it is currently only possible to display the matches in
2046 another window."
2047 :group 'org-link-follow
2048 :type '(list
2049 (cons (const vm)
2050 (choice
2051 (const vm-visit-folder)
2052 (const vm-visit-folder-other-window)
2053 (const vm-visit-folder-other-frame)))
2054 (cons (const vm-imap)
2055 (choice
2056 (const vm-visit-imap-folder)
2057 (const vm-visit-imap-folder-other-window)
2058 (const vm-visit-imap-folder-other-frame)))
2059 (cons (const gnus)
2060 (choice
2061 (const gnus)
2062 (const gnus-other-frame)
2063 (const org-gnus-no-new-news)))
2064 (cons (const file)
2065 (choice
2066 (const find-file)
2067 (const find-file-other-window)
2068 (const find-file-other-frame)))
2069 (cons (const wl)
2070 (choice
2071 (const wl)
2072 (const wl-other-frame)))))
2074 (defcustom org-display-internal-link-with-indirect-buffer nil
2075 "Non-nil means use indirect buffer to display infile links.
2076 Activating internal links (from one location in a file to another location
2077 in the same file) normally just jumps to the location. When the link is
2078 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2079 is displayed in
2080 another window. When this option is set, the other window actually displays
2081 an indirect buffer clone of the current buffer, to avoid any visibility
2082 changes to the current buffer."
2083 :group 'org-link-follow
2084 :type 'boolean)
2086 (defcustom org-open-non-existing-files nil
2087 "Non-nil means `org-open-file' will open non-existing files.
2088 When nil, an error will be generated.
2089 This variable applies only to external applications because they
2090 might choke on non-existing files. If the link is to a file that
2091 will be opened in Emacs, the variable is ignored."
2092 :group 'org-link-follow
2093 :type 'boolean)
2095 (defcustom org-open-directory-means-index-dot-org nil
2096 "Non-nil means a link to a directory really means to index.org.
2097 When nil, following a directory link will run dired or open a finder/explorer
2098 window on that directory."
2099 :group 'org-link-follow
2100 :type 'boolean)
2102 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2103 "Non-nil means ask for confirmation before executing shell links.
2104 Shell links can be dangerous: just think about a link
2106 [[shell:rm -rf ~/*][Google Search]]
2108 This link would show up in your Org-mode document as \"Google Search\",
2109 but really it would remove your entire home directory.
2110 Therefore we advise against setting this variable to nil.
2111 Just change it to `y-or-n-p' if you want to confirm with a
2112 single keystroke rather than having to type \"yes\"."
2113 :group 'org-link-follow
2114 :type '(choice
2115 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2116 (const :tag "with y-or-n (faster)" y-or-n-p)
2117 (const :tag "no confirmation (dangerous)" nil)))
2118 (put 'org-confirm-shell-link-function
2119 'safe-local-variable
2120 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2122 (defcustom org-confirm-shell-link-not-regexp ""
2123 "A regexp to skip confirmation for shell links."
2124 :group 'org-link-follow
2125 :version "24.1"
2126 :type 'regexp)
2128 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2129 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2130 Elisp links can be dangerous: just think about a link
2132 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2134 This link would show up in your Org-mode document as \"Google Search\",
2135 but really it would remove your entire home directory.
2136 Therefore we advise against setting this variable to nil.
2137 Just change it to `y-or-n-p' if you want to confirm with a
2138 single keystroke rather than having to type \"yes\"."
2139 :group 'org-link-follow
2140 :type '(choice
2141 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2142 (const :tag "with y-or-n (faster)" y-or-n-p)
2143 (const :tag "no confirmation (dangerous)" nil)))
2144 (put 'org-confirm-shell-link-function
2145 'safe-local-variable
2146 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2148 (defcustom org-confirm-elisp-link-not-regexp ""
2149 "A regexp to skip confirmation for Elisp links."
2150 :group 'org-link-follow
2151 :version "24.1"
2152 :type 'regexp)
2154 (defconst org-file-apps-defaults-gnu
2155 '((remote . emacs)
2156 (system . mailcap)
2157 (t . mailcap))
2158 "Default file applications on a UNIX or GNU/Linux system.
2159 See `org-file-apps'.")
2161 (defconst org-file-apps-defaults-macosx
2162 '((remote . emacs)
2163 (t . "open %s")
2164 (system . "open %s")
2165 ("ps.gz" . "gv %s")
2166 ("eps.gz" . "gv %s")
2167 ("dvi" . "xdvi %s")
2168 ("fig" . "xfig %s"))
2169 "Default file applications on a MacOS X system.
2170 The system \"open\" is known as a default, but we use X11 applications
2171 for some files for which the OS does not have a good default.
2172 See `org-file-apps'.")
2174 (defconst org-file-apps-defaults-windowsnt
2175 (list
2176 '(remote . emacs)
2177 (cons t
2178 (list (if (featurep 'xemacs)
2179 'mswindows-shell-execute
2180 'w32-shell-execute)
2181 "open" 'file))
2182 (cons 'system
2183 (list (if (featurep 'xemacs)
2184 'mswindows-shell-execute
2185 'w32-shell-execute)
2186 "open" 'file)))
2187 "Default file applications on a Windows NT system.
2188 The system \"open\" is used for most files.
2189 See `org-file-apps'.")
2191 (defcustom org-file-apps
2192 '((auto-mode . emacs)
2193 ("\\.mm\\'" . default)
2194 ("\\.x?html?\\'" . default)
2195 ("\\.pdf\\'" . default))
2196 "External applications for opening `file:path' items in a document.
2197 Org-mode uses system defaults for different file types, but
2198 you can use this variable to set the application for a given file
2199 extension. The entries in this list are cons cells where the car identifies
2200 files and the cdr the corresponding command. Possible values for the
2201 file identifier are
2202 \"string\" A string as a file identifier can be interpreted in different
2203 ways, depending on its contents:
2205 - Alphanumeric characters only:
2206 Match links with this file extension.
2207 Example: (\"pdf\" . \"evince %s\")
2208 to open PDFs with evince.
2210 - Regular expression: Match links where the
2211 filename matches the regexp. If you want to
2212 use groups here, use shy groups.
2214 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2215 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2216 to open *.html and *.xhtml with firefox.
2218 - Regular expression which contains (non-shy) groups:
2219 Match links where the whole link, including \"::\", and
2220 anything after that, matches the regexp.
2221 In a custom command string, %1, %2, etc. are replaced with
2222 the parts of the link that were matched by the groups.
2223 For backwards compatibility, if a command string is given
2224 that does not use any of the group matches, this case is
2225 handled identically to the second one (i.e. match against
2226 file name only).
2227 In a custom lisp form, you can access the group matches with
2228 (match-string n link).
2230 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2231 to open [[file:document.pdf::5]] with evince at page 5.
2233 `directory' Matches a directory
2234 `remote' Matches a remote file, accessible through tramp or efs.
2235 Remote files most likely should be visited through Emacs
2236 because external applications cannot handle such paths.
2237 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2238 so all files Emacs knows how to handle. Using this with
2239 command `emacs' will open most files in Emacs. Beware that this
2240 will also open html files inside Emacs, unless you add
2241 (\"html\" . default) to the list as well.
2242 t Default for files not matched by any of the other options.
2243 `system' The system command to open files, like `open' on Windows
2244 and Mac OS X, and mailcap under GNU/Linux. This is the command
2245 that will be selected if you call `C-c C-o' with a double
2246 \\[universal-argument] \\[universal-argument] prefix.
2248 Possible values for the command are:
2249 `emacs' The file will be visited by the current Emacs process.
2250 `default' Use the default application for this file type, which is the
2251 association for t in the list, most likely in the system-specific
2252 part.
2253 This can be used to overrule an unwanted setting in the
2254 system-specific variable.
2255 `system' Use the system command for opening files, like \"open\".
2256 This command is specified by the entry whose car is `system'.
2257 Most likely, the system-specific version of this variable
2258 does define this command, but you can overrule/replace it
2259 here.
2260 string A command to be executed by a shell; %s will be replaced
2261 by the path to the file.
2262 sexp A Lisp form which will be evaluated. The file path will
2263 be available in the Lisp variable `file'.
2264 For more examples, see the system specific constants
2265 `org-file-apps-defaults-macosx'
2266 `org-file-apps-defaults-windowsnt'
2267 `org-file-apps-defaults-gnu'."
2268 :group 'org-link-follow
2269 :type '(repeat
2270 (cons (choice :value ""
2271 (string :tag "Extension")
2272 (const :tag "System command to open files" system)
2273 (const :tag "Default for unrecognized files" t)
2274 (const :tag "Remote file" remote)
2275 (const :tag "Links to a directory" directory)
2276 (const :tag "Any files that have Emacs modes"
2277 auto-mode))
2278 (choice :value ""
2279 (const :tag "Visit with Emacs" emacs)
2280 (const :tag "Use default" default)
2281 (const :tag "Use the system command" system)
2282 (string :tag "Command")
2283 (sexp :tag "Lisp form")))))
2285 (defcustom org-doi-server-url "http://dx.doi.org/"
2286 "The URL of the DOI server."
2287 :type 'string
2288 :version "24.3"
2289 :group 'org-link-follow)
2291 (defgroup org-refile nil
2292 "Options concerning refiling entries in Org-mode."
2293 :tag "Org Refile"
2294 :group 'org)
2296 (defcustom org-directory "~/org"
2297 "Directory with org files.
2298 This is just a default location to look for Org files. There is no need
2299 at all to put your files into this directory. It is only used in the
2300 following situations:
2302 1. When a capture template specifies a target file that is not an
2303 absolute path. The path will then be interpreted relative to
2304 `org-directory'
2305 2. When a capture note is filed away in an interactive way (when exiting the
2306 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2307 with `org-directory' as the default path."
2308 :group 'org-refile
2309 :group 'org-capture
2310 :type 'directory)
2312 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2313 "Default target for storing notes.
2314 Used as a fall back file for org-capture.el, for templates that
2315 do not specify a target file."
2316 :group 'org-refile
2317 :group 'org-capture
2318 :type 'file)
2320 (defcustom org-goto-interface 'outline
2321 "The default interface to be used for `org-goto'.
2322 Allowed values are:
2323 outline The interface shows an outline of the relevant file
2324 and the correct heading is found by moving through
2325 the outline or by searching with incremental search.
2326 outline-path-completion Headlines in the current buffer are offered via
2327 completion. This is the interface also used by
2328 the refile command."
2329 :group 'org-refile
2330 :type '(choice
2331 (const :tag "Outline" outline)
2332 (const :tag "Outline-path-completion" outline-path-completion)))
2334 (defcustom org-goto-max-level 5
2335 "Maximum target level when running `org-goto' with refile interface."
2336 :group 'org-refile
2337 :type 'integer)
2339 (defcustom org-reverse-note-order nil
2340 "Non-nil means store new notes at the beginning of a file or entry.
2341 When nil, new notes will be filed to the end of a file or entry.
2342 This can also be a list with cons cells of regular expressions that
2343 are matched against file names, and values."
2344 :group 'org-capture
2345 :group 'org-refile
2346 :type '(choice
2347 (const :tag "Reverse always" t)
2348 (const :tag "Reverse never" nil)
2349 (repeat :tag "By file name regexp"
2350 (cons regexp boolean))))
2352 (defcustom org-log-refile nil
2353 "Information to record when a task is refiled.
2355 Possible values are:
2357 nil Don't add anything
2358 time Add a time stamp to the task
2359 note Prompt for a note and add it with template `org-log-note-headings'
2361 This option can also be set with on a per-file-basis with
2363 #+STARTUP: nologrefile
2364 #+STARTUP: logrefile
2365 #+STARTUP: lognoterefile
2367 You can have local logging settings for a subtree by setting the LOGGING
2368 property to one or more of these keywords.
2370 When bulk-refiling from the agenda, the value `note' is forbidden and
2371 will temporarily be changed to `time'."
2372 :group 'org-refile
2373 :group 'org-progress
2374 :version "24.1"
2375 :type '(choice
2376 (const :tag "No logging" nil)
2377 (const :tag "Record timestamp" time)
2378 (const :tag "Record timestamp with note." note)))
2380 (defcustom org-refile-targets nil
2381 "Targets for refiling entries with \\[org-refile].
2382 This is a list of cons cells. Each cell contains:
2383 - a specification of the files to be considered, either a list of files,
2384 or a symbol whose function or variable value will be used to retrieve
2385 a file name or a list of file names. If you use `org-agenda-files' for
2386 that, all agenda files will be scanned for targets. Nil means consider
2387 headings in the current buffer.
2388 - A specification of how to find candidate refile targets. This may be
2389 any of:
2390 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2391 This tag has to be present in all target headlines, inheritance will
2392 not be considered.
2393 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2394 todo keyword.
2395 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2396 headlines that are refiling targets.
2397 - a cons cell (:level . N). Any headline of level N is considered a target.
2398 Note that, when `org-odd-levels-only' is set, level corresponds to
2399 order in hierarchy, not to the number of stars.
2400 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2404 Each element of this list generates a set of possible targets.
2405 The union of these sets is presented (with completion) to
2406 the user by `org-refile'.
2408 You can set the variable `org-refile-target-verify-function' to a function
2409 to verify each headline found by the simple criteria above.
2411 When this variable is nil, all top-level headlines in the current buffer
2412 are used, equivalent to the value `((nil . (:level . 1))'."
2413 :group 'org-refile
2414 :type '(repeat
2415 (cons
2416 (choice :value org-agenda-files
2417 (const :tag "All agenda files" org-agenda-files)
2418 (const :tag "Current buffer" nil)
2419 (function) (variable) (file))
2420 (choice :tag "Identify target headline by"
2421 (cons :tag "Specific tag" (const :value :tag) (string))
2422 (cons :tag "TODO keyword" (const :value :todo) (string))
2423 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2424 (cons :tag "Level number" (const :value :level) (integer))
2425 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2427 (defcustom org-refile-target-verify-function nil
2428 "Function to verify if the headline at point should be a refile target.
2429 The function will be called without arguments, with point at the
2430 beginning of the headline. It should return t and leave point
2431 where it is if the headline is a valid target for refiling.
2433 If the target should not be selected, the function must return nil.
2434 In addition to this, it may move point to a place from where the search
2435 should be continued. For example, the function may decide that the entire
2436 subtree of the current entry should be excluded and move point to the end
2437 of the subtree."
2438 :group 'org-refile
2439 :type '(choice
2440 (const nil)
2441 (function)))
2443 (defcustom org-refile-use-cache nil
2444 "Non-nil means cache refile targets to speed up the process.
2445 The cache for a particular file will be updated automatically when
2446 the buffer has been killed, or when any of the marker used for flagging
2447 refile targets no longer points at a live buffer.
2448 If you have added new entries to a buffer that might themselves be targets,
2449 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2450 find that easier, `C-u C-u C-u C-c C-w'."
2451 :group 'org-refile
2452 :version "24.1"
2453 :type 'boolean)
2455 (defcustom org-refile-use-outline-path nil
2456 "Non-nil means provide refile targets as paths.
2457 So a level 3 headline will be available as level1/level2/level3.
2459 When the value is `file', also include the file name (without directory)
2460 into the path. In this case, you can also stop the completion after
2461 the file name, to get entries inserted as top level in the file.
2463 When `full-file-path', include the full file path."
2464 :group 'org-refile
2465 :type '(choice
2466 (const :tag "Not" nil)
2467 (const :tag "Yes" t)
2468 (const :tag "Start with file name" file)
2469 (const :tag "Start with full file path" full-file-path)))
2471 (defcustom org-outline-path-complete-in-steps t
2472 "Non-nil means complete the outline path in hierarchical steps.
2473 When Org-mode uses the refile interface to select an outline path
2474 \(see variable `org-refile-use-outline-path'), the completion of
2475 the path can be done in a single go, or it can be done in steps down
2476 the headline hierarchy. Going in steps is probably the best if you
2477 do not use a special completion package like `ido' or `icicles'.
2478 However, when using these packages, going in one step can be very
2479 fast, while still showing the whole path to the entry."
2480 :group 'org-refile
2481 :type 'boolean)
2483 (defcustom org-refile-allow-creating-parent-nodes nil
2484 "Non-nil means allow to create new nodes as refile targets.
2485 New nodes are then created by adding \"/new node name\" to the completion
2486 of an existing node. When the value of this variable is `confirm',
2487 new node creation must be confirmed by the user (recommended).
2488 When nil, the completion must match an existing entry.
2490 Note that, if the new heading is not seen by the criteria
2491 listed in `org-refile-targets', multiple instances of the same
2492 heading would be created by trying again to file under the new
2493 heading."
2494 :group 'org-refile
2495 :type '(choice
2496 (const :tag "Never" nil)
2497 (const :tag "Always" t)
2498 (const :tag "Prompt for confirmation" confirm)))
2500 (defcustom org-refile-active-region-within-subtree nil
2501 "Non-nil means also refile active region within a subtree.
2503 By default `org-refile' doesn't allow refiling regions if they
2504 don't contain a set of subtrees, but it might be convenient to
2505 do so sometimes: in that case, the first line of the region is
2506 converted to a headline before refiling."
2507 :group 'org-refile
2508 :version "24.1"
2509 :type 'boolean)
2511 (defgroup org-todo nil
2512 "Options concerning TODO items in Org-mode."
2513 :tag "Org TODO"
2514 :group 'org)
2516 (defgroup org-progress nil
2517 "Options concerning Progress logging in Org-mode."
2518 :tag "Org Progress"
2519 :group 'org-time)
2521 (defvar org-todo-interpretation-widgets
2522 '((:tag "Sequence (cycling hits every state)" sequence)
2523 (:tag "Type (cycling directly to DONE)" type))
2524 "The available interpretation symbols for customizing `org-todo-keywords'.
2525 Interested libraries should add to this list.")
2527 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2528 "List of TODO entry keyword sequences and their interpretation.
2529 \\<org-mode-map>This is a list of sequences.
2531 Each sequence starts with a symbol, either `sequence' or `type',
2532 indicating if the keywords should be interpreted as a sequence of
2533 action steps, or as different types of TODO items. The first
2534 keywords are states requiring action - these states will select a headline
2535 for inclusion into the global TODO list Org-mode produces. If one of
2536 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2537 signify that no further action is necessary. If \"|\" is not found,
2538 the last keyword is treated as the only DONE state of the sequence.
2540 The command \\[org-todo] cycles an entry through these states, and one
2541 additional state where no keyword is present. For details about this
2542 cycling, see the manual.
2544 TODO keywords and interpretation can also be set on a per-file basis with
2545 the special #+SEQ_TODO and #+TYP_TODO lines.
2547 Each keyword can optionally specify a character for fast state selection
2548 \(in combination with the variable `org-use-fast-todo-selection')
2549 and specifiers for state change logging, using the same syntax that
2550 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2551 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2552 indicates to record a time stamp each time this state is selected.
2554 Each keyword may also specify if a timestamp or a note should be
2555 recorded when entering or leaving the state, by adding additional
2556 characters in the parenthesis after the keyword. This looks like this:
2557 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2558 record only the time of the state change. With X and Y being either
2559 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2560 Y when leaving the state if and only if the *target* state does not
2561 define X. You may omit any of the fast-selection key or X or /Y,
2562 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2564 For backward compatibility, this variable may also be just a list
2565 of keywords. In this case the interpretation (sequence or type) will be
2566 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2567 :group 'org-todo
2568 :group 'org-keywords
2569 :type '(choice
2570 (repeat :tag "Old syntax, just keywords"
2571 (string :tag "Keyword"))
2572 (repeat :tag "New syntax"
2573 (cons
2574 (choice
2575 :tag "Interpretation"
2576 ;;Quick and dirty way to see
2577 ;;`org-todo-interpretations'. This takes the
2578 ;;place of item arguments
2579 :convert-widget
2580 (lambda (widget)
2581 (widget-put widget
2582 :args (mapcar
2583 (lambda (x)
2584 (widget-convert
2585 (cons 'const x)))
2586 org-todo-interpretation-widgets))
2587 widget))
2588 (repeat
2589 (string :tag "Keyword"))))))
2591 (defvar org-todo-keywords-1 nil
2592 "All TODO and DONE keywords active in a buffer.")
2593 (make-variable-buffer-local 'org-todo-keywords-1)
2594 (defvar org-todo-keywords-for-agenda nil)
2595 (defvar org-done-keywords-for-agenda nil)
2596 (defvar org-todo-keyword-alist-for-agenda nil)
2597 (defvar org-tag-alist-for-agenda nil
2598 "Alist of all tags from all agenda files.")
2599 (defvar org-tag-groups-alist-for-agenda nil
2600 "Alist of all groups tags from all current agenda files.")
2601 (defvar org-tag-groups-alist nil)
2602 (make-variable-buffer-local 'org-tag-groups-alist)
2603 (defvar org-agenda-contributing-files nil)
2604 (defvar org-not-done-keywords nil)
2605 (make-variable-buffer-local 'org-not-done-keywords)
2606 (defvar org-done-keywords nil)
2607 (make-variable-buffer-local 'org-done-keywords)
2608 (defvar org-todo-heads nil)
2609 (make-variable-buffer-local 'org-todo-heads)
2610 (defvar org-todo-sets nil)
2611 (make-variable-buffer-local 'org-todo-sets)
2612 (defvar org-todo-log-states nil)
2613 (make-variable-buffer-local 'org-todo-log-states)
2614 (defvar org-todo-kwd-alist nil)
2615 (make-variable-buffer-local 'org-todo-kwd-alist)
2616 (defvar org-todo-key-alist nil)
2617 (make-variable-buffer-local 'org-todo-key-alist)
2618 (defvar org-todo-key-trigger nil)
2619 (make-variable-buffer-local 'org-todo-key-trigger)
2621 (defcustom org-todo-interpretation 'sequence
2622 "Controls how TODO keywords are interpreted.
2623 This variable is in principle obsolete and is only used for
2624 backward compatibility, if the interpretation of todo keywords is
2625 not given already in `org-todo-keywords'. See that variable for
2626 more information."
2627 :group 'org-todo
2628 :group 'org-keywords
2629 :type '(choice (const sequence)
2630 (const type)))
2632 (defcustom org-use-fast-todo-selection t
2633 "Non-nil means use the fast todo selection scheme with C-c C-t.
2634 This variable describes if and under what circumstances the cycling
2635 mechanism for TODO keywords will be replaced by a single-key, direct
2636 selection scheme.
2638 When nil, fast selection is never used.
2640 When the symbol `prefix', it will be used when `org-todo' is called
2641 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2642 `C-u t' in an agenda buffer.
2644 When t, fast selection is used by default. In this case, the prefix
2645 argument forces cycling instead.
2647 In all cases, the special interface is only used if access keys have
2648 actually been assigned by the user, i.e. if keywords in the configuration
2649 are followed by a letter in parenthesis, like TODO(t)."
2650 :group 'org-todo
2651 :type '(choice
2652 (const :tag "Never" nil)
2653 (const :tag "By default" t)
2654 (const :tag "Only with C-u C-c C-t" prefix)))
2656 (defcustom org-provide-todo-statistics t
2657 "Non-nil means update todo statistics after insert and toggle.
2658 ALL-HEADLINES means update todo statistics by including headlines
2659 with no TODO keyword as well, counting them as not done.
2660 A list of TODO keywords means the same, but skip keywords that are
2661 not in this list.
2662 When set to a list of two lists, the first list contains keywords
2663 to consider as TODO keywords, the second list contains keywords
2664 to consider as DONE keywords.
2666 When this is set, todo statistics is updated in the parent of the
2667 current entry each time a todo state is changed."
2668 :group 'org-todo
2669 :type '(choice
2670 (const :tag "Yes, only for TODO entries" t)
2671 (const :tag "Yes, including all entries" all-headlines)
2672 (repeat :tag "Yes, for TODOs in this list"
2673 (string :tag "TODO keyword"))
2674 (list :tag "Yes, for TODOs and DONEs in these lists"
2675 (repeat (string :tag "TODO keyword"))
2676 (repeat (string :tag "DONE keyword")))
2677 (other :tag "No TODO statistics" nil)))
2679 (defcustom org-hierarchical-todo-statistics t
2680 "Non-nil means TODO statistics covers just direct children.
2681 When nil, all entries in the subtree are considered.
2682 This has only an effect if `org-provide-todo-statistics' is set.
2683 To set this to nil for only a single subtree, use a COOKIE_DATA
2684 property and include the word \"recursive\" into the value."
2685 :group 'org-todo
2686 :type 'boolean)
2688 (defcustom org-after-todo-state-change-hook nil
2689 "Hook which is run after the state of a TODO item was changed.
2690 The new state (a string with a TODO keyword, or nil) is available in the
2691 Lisp variable `org-state'."
2692 :group 'org-todo
2693 :type 'hook)
2695 (defvar org-blocker-hook nil
2696 "Hook for functions that are allowed to block a state change.
2698 Functions in this hook should not modify the buffer.
2699 Each function gets as its single argument a property list,
2700 see `org-trigger-hook' for more information about this list.
2702 If any of the functions in this hook returns nil, the state change
2703 is blocked.")
2705 (defvar org-trigger-hook nil
2706 "Hook for functions that are triggered by a state change.
2708 Each function gets as its single argument a property list with at
2709 least the following elements:
2711 (:type type-of-change :position pos-at-entry-start
2712 :from old-state :to new-state)
2714 Depending on the type, more properties may be present.
2716 This mechanism is currently implemented for:
2718 TODO state changes
2719 ------------------
2720 :type todo-state-change
2721 :from previous state (keyword as a string), or nil, or a symbol
2722 'todo' or 'done', to indicate the general type of state.
2723 :to new state, like in :from")
2725 (defcustom org-enforce-todo-dependencies nil
2726 "Non-nil means undone TODO entries will block switching the parent to DONE.
2727 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2728 be blocked if any prior sibling is not yet done.
2729 Finally, if the parent is blocked because of ordered siblings of its own,
2730 the child will also be blocked."
2731 :set (lambda (var val)
2732 (set var val)
2733 (if val
2734 (add-hook 'org-blocker-hook
2735 'org-block-todo-from-children-or-siblings-or-parent)
2736 (remove-hook 'org-blocker-hook
2737 'org-block-todo-from-children-or-siblings-or-parent)))
2738 :group 'org-todo
2739 :type 'boolean)
2741 (defcustom org-enforce-todo-checkbox-dependencies nil
2742 "Non-nil means unchecked boxes will block switching the parent to DONE.
2743 When this is nil, checkboxes have no influence on switching TODO states.
2744 When non-nil, you first need to check off all check boxes before the TODO
2745 entry can be switched to DONE.
2746 This variable needs to be set before org.el is loaded, and you need to
2747 restart Emacs after a change to make the change effective. The only way
2748 to change is while Emacs is running is through the customize interface."
2749 :set (lambda (var val)
2750 (set var val)
2751 (if val
2752 (add-hook 'org-blocker-hook
2753 'org-block-todo-from-checkboxes)
2754 (remove-hook 'org-blocker-hook
2755 'org-block-todo-from-checkboxes)))
2756 :group 'org-todo
2757 :type 'boolean)
2759 (defcustom org-treat-insert-todo-heading-as-state-change nil
2760 "Non-nil means inserting a TODO heading is treated as state change.
2761 So when the command \\[org-insert-todo-heading] is used, state change
2762 logging will apply if appropriate. When nil, the new TODO item will
2763 be inserted directly, and no logging will take place."
2764 :group 'org-todo
2765 :type 'boolean)
2767 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2768 "Non-nil means switching TODO states with S-cursor counts as state change.
2769 This is the default behavior. However, setting this to nil allows a
2770 convenient way to select a TODO state and bypass any logging associated
2771 with that."
2772 :group 'org-todo
2773 :type 'boolean)
2775 (defcustom org-todo-state-tags-triggers nil
2776 "Tag changes that should be triggered by TODO state changes.
2777 This is a list. Each entry is
2779 (state-change (tag . flag) .......)
2781 State-change can be a string with a state, and empty string to indicate the
2782 state that has no TODO keyword, or it can be one of the symbols `todo'
2783 or `done', meaning any not-done or done state, respectively."
2784 :group 'org-todo
2785 :group 'org-tags
2786 :type '(repeat
2787 (cons (choice :tag "When changing to"
2788 (const :tag "Not-done state" todo)
2789 (const :tag "Done state" done)
2790 (string :tag "State"))
2791 (repeat
2792 (cons :tag "Tag action"
2793 (string :tag "Tag")
2794 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2796 (defcustom org-log-done nil
2797 "Information to record when a task moves to the DONE state.
2799 Possible values are:
2801 nil Don't add anything, just change the keyword
2802 time Add a time stamp to the task
2803 note Prompt for a note and add it with template `org-log-note-headings'
2805 This option can also be set with on a per-file-basis with
2807 #+STARTUP: nologdone
2808 #+STARTUP: logdone
2809 #+STARTUP: lognotedone
2811 You can have local logging settings for a subtree by setting the LOGGING
2812 property to one or more of these keywords."
2813 :group 'org-todo
2814 :group 'org-progress
2815 :type '(choice
2816 (const :tag "No logging" nil)
2817 (const :tag "Record CLOSED timestamp" time)
2818 (const :tag "Record CLOSED timestamp with note." note)))
2820 ;; Normalize old uses of org-log-done.
2821 (cond
2822 ((eq org-log-done t) (setq org-log-done 'time))
2823 ((and (listp org-log-done) (memq 'done org-log-done))
2824 (setq org-log-done 'note)))
2826 (defcustom org-log-reschedule nil
2827 "Information to record when the scheduling date of a tasks is modified.
2829 Possible values are:
2831 nil Don't add anything, just change the date
2832 time Add a time stamp to the task
2833 note Prompt for a note and add it with template `org-log-note-headings'
2835 This option can also be set with on a per-file-basis with
2837 #+STARTUP: nologreschedule
2838 #+STARTUP: logreschedule
2839 #+STARTUP: lognotereschedule"
2840 :group 'org-todo
2841 :group 'org-progress
2842 :type '(choice
2843 (const :tag "No logging" nil)
2844 (const :tag "Record timestamp" time)
2845 (const :tag "Record timestamp with note." note)))
2847 (defcustom org-log-redeadline nil
2848 "Information to record when the deadline date of a tasks is modified.
2850 Possible values are:
2852 nil Don't add anything, just change the date
2853 time Add a time stamp to the task
2854 note Prompt for a note and add it with template `org-log-note-headings'
2856 This option can also be set with on a per-file-basis with
2858 #+STARTUP: nologredeadline
2859 #+STARTUP: logredeadline
2860 #+STARTUP: lognoteredeadline
2862 You can have local logging settings for a subtree by setting the LOGGING
2863 property to one or more of these keywords."
2864 :group 'org-todo
2865 :group 'org-progress
2866 :type '(choice
2867 (const :tag "No logging" nil)
2868 (const :tag "Record timestamp" time)
2869 (const :tag "Record timestamp with note." note)))
2871 (defcustom org-log-note-clock-out nil
2872 "Non-nil means record a note when clocking out of an item.
2873 This can also be configured on a per-file basis by adding one of
2874 the following lines anywhere in the buffer:
2876 #+STARTUP: lognoteclock-out
2877 #+STARTUP: nolognoteclock-out"
2878 :group 'org-todo
2879 :group 'org-progress
2880 :type 'boolean)
2882 (defcustom org-log-done-with-time t
2883 "Non-nil means the CLOSED time stamp will contain date and time.
2884 When nil, only the date will be recorded."
2885 :group 'org-progress
2886 :type 'boolean)
2888 (defcustom org-log-note-headings
2889 '((done . "CLOSING NOTE %t")
2890 (state . "State %-12s from %-12S %t")
2891 (note . "Note taken on %t")
2892 (reschedule . "Rescheduled from %S on %t")
2893 (delschedule . "Not scheduled, was %S on %t")
2894 (redeadline . "New deadline from %S on %t")
2895 (deldeadline . "Removed deadline, was %S on %t")
2896 (refile . "Refiled on %t")
2897 (clock-out . ""))
2898 "Headings for notes added to entries.
2899 The value is an alist, with the car being a symbol indicating the note
2900 context, and the cdr is the heading to be used. The heading may also be the
2901 empty string.
2902 %t in the heading will be replaced by a time stamp.
2903 %T will be an active time stamp instead the default inactive one
2904 %d will be replaced by a short-format time stamp.
2905 %D will be replaced by an active short-format time stamp.
2906 %s will be replaced by the new TODO state, in double quotes.
2907 %S will be replaced by the old TODO state, in double quotes.
2908 %u will be replaced by the user name.
2909 %U will be replaced by the full user name.
2911 In fact, it is not a good idea to change the `state' entry, because
2912 agenda log mode depends on the format of these entries."
2913 :group 'org-todo
2914 :group 'org-progress
2915 :type '(list :greedy t
2916 (cons (const :tag "Heading when closing an item" done) string)
2917 (cons (const :tag
2918 "Heading when changing todo state (todo sequence only)"
2919 state) string)
2920 (cons (const :tag "Heading when just taking a note" note) string)
2921 (cons (const :tag "Heading when rescheduling" reschedule) string)
2922 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2923 (cons (const :tag "Heading when changing deadline" redeadline) string)
2924 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2925 (cons (const :tag "Heading when refiling" refile) string)
2926 (cons (const :tag "Heading when clocking out" clock-out) string)))
2928 (unless (assq 'note org-log-note-headings)
2929 (push '(note . "%t") org-log-note-headings))
2931 (defcustom org-log-into-drawer nil
2932 "Non-nil means insert state change notes and time stamps into a drawer.
2933 When nil, state changes notes will be inserted after the headline and
2934 any scheduling and clock lines, but not inside a drawer.
2936 The value of this variable should be the name of the drawer to use.
2937 LOGBOOK is proposed as the default drawer for this purpose, you can
2938 also set this to a string to define the drawer of your choice.
2940 A value of t is also allowed, representing \"LOGBOOK\".
2942 A value of t or nil can also be set with on a per-file-basis with
2944 #+STARTUP: logdrawer
2945 #+STARTUP: nologdrawer
2947 If this variable is set, `org-log-state-notes-insert-after-drawers'
2948 will be ignored.
2950 You can set the property LOG_INTO_DRAWER to overrule this setting for
2951 a subtree.
2953 Do not check directly this variable in a Lisp program. Call
2954 function `org-log-into-drawer' instead."
2955 :group 'org-todo
2956 :group 'org-progress
2957 :type '(choice
2958 (const :tag "Not into a drawer" nil)
2959 (const :tag "LOGBOOK" t)
2960 (string :tag "Other")))
2962 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2964 (defun org-log-into-drawer ()
2965 "Name of the log drawer, as a string, or nil.
2966 This is the value of `org-log-into-drawer'. However, if the
2967 current entry has or inherits a LOG_INTO_DRAWER property, it will
2968 be used instead of the default value."
2969 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2970 (cond ((equal p "nil") nil)
2971 ((equal p "t") "LOGBOOK")
2972 ((stringp p) p)
2973 (p "LOGBOOK")
2974 ((stringp org-log-into-drawer) org-log-into-drawer)
2975 (org-log-into-drawer "LOGBOOK"))))
2977 (defcustom org-log-state-notes-insert-after-drawers nil
2978 "Non-nil means insert state change notes after any drawers in entry.
2979 Only the drawers that *immediately* follow the headline and the
2980 deadline/scheduled line are skipped.
2981 When nil, insert notes right after the heading and perhaps the line
2982 with deadline/scheduling if present.
2984 This variable will have no effect if `org-log-into-drawer' is
2985 set."
2986 :group 'org-todo
2987 :group 'org-progress
2988 :type 'boolean)
2990 (defcustom org-log-states-order-reversed t
2991 "Non-nil means the latest state note will be directly after heading.
2992 When nil, the state change notes will be ordered according to time.
2994 This option can also be set with on a per-file-basis with
2996 #+STARTUP: logstatesreversed
2997 #+STARTUP: nologstatesreversed"
2998 :group 'org-todo
2999 :group 'org-progress
3000 :type 'boolean)
3002 (defcustom org-todo-repeat-to-state nil
3003 "The TODO state to which a repeater should return the repeating task.
3004 By default this is the first task in a TODO sequence, or the previous state
3005 in a TODO_TYP set. But you can specify another task here.
3006 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3007 :group 'org-todo
3008 :version "24.1"
3009 :type '(choice (const :tag "Head of sequence" nil)
3010 (string :tag "Specific state")))
3012 (defcustom org-log-repeat 'time
3013 "Non-nil means record moving through the DONE state when triggering repeat.
3014 An auto-repeating task is immediately switched back to TODO when
3015 marked DONE. If you are not logging state changes (by adding \"@\"
3016 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3017 record a closing note, there will be no record of the task moving
3018 through DONE. This variable forces taking a note anyway.
3020 nil Don't force a record
3021 time Record a time stamp
3022 note Prompt for a note and add it with template `org-log-note-headings'
3024 This option can also be set with on a per-file-basis with
3026 #+STARTUP: nologrepeat
3027 #+STARTUP: logrepeat
3028 #+STARTUP: lognoterepeat
3030 You can have local logging settings for a subtree by setting the LOGGING
3031 property to one or more of these keywords."
3032 :group 'org-todo
3033 :group 'org-progress
3034 :type '(choice
3035 (const :tag "Don't force a record" nil)
3036 (const :tag "Force recording the DONE state" time)
3037 (const :tag "Force recording a note with the DONE state" note)))
3040 (defgroup org-priorities nil
3041 "Priorities in Org-mode."
3042 :tag "Org Priorities"
3043 :group 'org-todo)
3045 (defcustom org-enable-priority-commands t
3046 "Non-nil means priority commands are active.
3047 When nil, these commands will be disabled, so that you never accidentally
3048 set a priority."
3049 :group 'org-priorities
3050 :type 'boolean)
3052 (defcustom org-highest-priority ?A
3053 "The highest priority of TODO items. A character like ?A, ?B etc.
3054 Must have a smaller ASCII number than `org-lowest-priority'."
3055 :group 'org-priorities
3056 :type 'character)
3058 (defcustom org-lowest-priority ?C
3059 "The lowest priority of TODO items. A character like ?A, ?B etc.
3060 Must have a larger ASCII number than `org-highest-priority'."
3061 :group 'org-priorities
3062 :type 'character)
3064 (defcustom org-default-priority ?B
3065 "The default priority of TODO items.
3066 This is the priority an item gets if no explicit priority is given.
3067 When starting to cycle on an empty priority the first step in the cycle
3068 depends on `org-priority-start-cycle-with-default'. The resulting first
3069 step priority must not exceed the range from `org-highest-priority' to
3070 `org-lowest-priority' which means that `org-default-priority' has to be
3071 in this range exclusive or inclusive the range boundaries. Else the
3072 first step refuses to set the default and the second will fall back
3073 to (depending on the command used) the highest or lowest priority."
3074 :group 'org-priorities
3075 :type 'character)
3077 (defcustom org-priority-start-cycle-with-default t
3078 "Non-nil means start with default priority when starting to cycle.
3079 When this is nil, the first step in the cycle will be (depending on the
3080 command used) one higher or lower than the default priority.
3081 See also `org-default-priority'."
3082 :group 'org-priorities
3083 :type 'boolean)
3085 (defcustom org-get-priority-function nil
3086 "Function to extract the priority from a string.
3087 The string is normally the headline. If this is nil Org computes the
3088 priority from the priority cookie like [#A] in the headline. It returns
3089 an integer, increasing by 1000 for each priority level.
3090 The user can set a different function here, which should take a string
3091 as an argument and return the numeric priority."
3092 :group 'org-priorities
3093 :version "24.1"
3094 :type '(choice
3095 (const nil)
3096 (function)))
3098 (defgroup org-time nil
3099 "Options concerning time stamps and deadlines in Org-mode."
3100 :tag "Org Time"
3101 :group 'org)
3103 (defcustom org-time-stamp-rounding-minutes '(0 5)
3104 "Number of minutes to round time stamps to.
3105 These are two values, the first applies when first creating a time stamp.
3106 The second applies when changing it with the commands `S-up' and `S-down'.
3107 When changing the time stamp, this means that it will change in steps
3108 of N minutes, as given by the second value.
3110 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3111 numbers should be factors of 60, so for example 5, 10, 15.
3113 When this is larger than 1, you can still force an exact time stamp by using
3114 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3115 and by using a prefix arg to `S-up/down' to specify the exact number
3116 of minutes to shift."
3117 :group 'org-time
3118 :get (lambda (var) ; Make sure both elements are there
3119 (if (integerp (default-value var))
3120 (list (default-value var) 5)
3121 (default-value var)))
3122 :type '(list
3123 (integer :tag "when inserting times")
3124 (integer :tag "when modifying times")))
3126 ;; Normalize old customizations of this variable.
3127 (when (integerp org-time-stamp-rounding-minutes)
3128 (setq org-time-stamp-rounding-minutes
3129 (list org-time-stamp-rounding-minutes
3130 org-time-stamp-rounding-minutes)))
3132 (defcustom org-display-custom-times nil
3133 "Non-nil means overlay custom formats over all time stamps.
3134 The formats are defined through the variable `org-time-stamp-custom-formats'.
3135 To turn this on on a per-file basis, insert anywhere in the file:
3136 #+STARTUP: customtime"
3137 :group 'org-time
3138 :set 'set-default
3139 :type 'sexp)
3140 (make-variable-buffer-local 'org-display-custom-times)
3142 (defcustom org-time-stamp-custom-formats
3143 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3144 "Custom formats for time stamps. See `format-time-string' for the syntax.
3145 These are overlaid over the default ISO format if the variable
3146 `org-display-custom-times' is set. Time like %H:%M should be at the
3147 end of the second format. The custom formats are also honored by export
3148 commands, if custom time display is turned on at the time of export."
3149 :group 'org-time
3150 :type 'sexp)
3152 (defun org-time-stamp-format (&optional long inactive)
3153 "Get the right format for a time string."
3154 (let ((f (if long (cdr org-time-stamp-formats)
3155 (car org-time-stamp-formats))))
3156 (if inactive
3157 (concat "[" (substring f 1 -1) "]")
3158 f)))
3160 (defcustom org-time-clocksum-format
3161 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3162 "The format string used when creating CLOCKSUM lines.
3163 This is also used when Org mode generates a time duration.
3165 The value can be a single format string containing two
3166 %-sequences, which will be filled with the number of hours and
3167 minutes in that order.
3169 Alternatively, the value can be a plist associating any of the
3170 keys :years, :months, :weeks, :days, :hours or :minutes with
3171 format strings. The time duration is formatted using only the
3172 time components that are needed and concatenating the results.
3173 If a time unit in absent, it falls back to the next smallest
3174 unit.
3176 The keys :require-years, :require-months, :require-days,
3177 :require-weeks, :require-hours, :require-minutes are also
3178 meaningful. A non-nil value for these keys indicates that the
3179 corresponding time component should always be included, even if
3180 its value is 0.
3183 For example,
3185 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3186 :require-minutes t)
3188 means durations longer than a day will be expressed in days,
3189 hours and minutes, and durations less than a day will always be
3190 expressed in hours and minutes (even for durations less than an
3191 hour).
3193 The value
3195 \(:days \"%dd\" :minutes \"%dm\")
3197 means durations longer than a day will be expressed in days and
3198 minutes, and durations less than a day will be expressed entirely
3199 in minutes (even for durations longer than an hour)."
3200 :group 'org-time
3201 :group 'org-clock
3202 :version "24.4"
3203 :package-version '(Org . "8.0")
3204 :type '(choice (string :tag "Format string")
3205 (set :tag "Plist"
3206 (group :inline t (const :tag "Years" :years)
3207 (string :tag "Format string"))
3208 (group :inline t
3209 (const :tag "Always show years" :require-years)
3210 (const t))
3211 (group :inline t (const :tag "Months" :months)
3212 (string :tag "Format string"))
3213 (group :inline t
3214 (const :tag "Always show months" :require-months)
3215 (const t))
3216 (group :inline t (const :tag "Weeks" :weeks)
3217 (string :tag "Format string"))
3218 (group :inline t
3219 (const :tag "Always show weeks" :require-weeks)
3220 (const t))
3221 (group :inline t (const :tag "Days" :days)
3222 (string :tag "Format string"))
3223 (group :inline t
3224 (const :tag "Always show days" :require-days)
3225 (const t))
3226 (group :inline t (const :tag "Hours" :hours)
3227 (string :tag "Format string"))
3228 (group :inline t
3229 (const :tag "Always show hours" :require-hours)
3230 (const t))
3231 (group :inline t (const :tag "Minutes" :minutes)
3232 (string :tag "Format string"))
3233 (group :inline t
3234 (const :tag "Always show minutes" :require-minutes)
3235 (const t)))))
3237 (defcustom org-time-clocksum-use-fractional nil
3238 "When non-nil, \\[org-clock-display] uses fractional times.
3239 See `org-time-clocksum-format' for more on time clock formats."
3240 :group 'org-time
3241 :group 'org-clock
3242 :version "24.3"
3243 :type 'boolean)
3245 (defcustom org-time-clocksum-use-effort-durations nil
3246 "When non-nil, \\[org-clock-display] uses effort durations.
3247 E.g. by default, one day is considered to be a 8 hours effort,
3248 so a task that has been clocked for 16 hours will be displayed
3249 as during 2 days in the clock display or in the clocktable.
3251 See `org-effort-durations' on how to set effort durations
3252 and `org-time-clocksum-format' for more on time clock formats."
3253 :group 'org-time
3254 :group 'org-clock
3255 :version "24.4"
3256 :package-version '(Org . "8.0")
3257 :type 'boolean)
3259 (defcustom org-time-clocksum-fractional-format "%.2f"
3260 "The format string used when creating CLOCKSUM lines,
3261 or when Org mode generates a time duration, if
3262 `org-time-clocksum-use-fractional' is enabled.
3264 The value can be a single format string containing one
3265 %-sequence, which will be filled with the number of hours as
3266 a float.
3268 Alternatively, the value can be a plist associating any of the
3269 keys :years, :months, :weeks, :days, :hours or :minutes with
3270 a format string. The time duration is formatted using the
3271 largest time unit which gives a non-zero integer part. If all
3272 specified formats have zero integer part, the smallest time unit
3273 is used."
3274 :group 'org-time
3275 :type '(choice (string :tag "Format string")
3276 (set (group :inline t (const :tag "Years" :years)
3277 (string :tag "Format string"))
3278 (group :inline t (const :tag "Months" :months)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Weeks" :weeks)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Days" :days)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Hours" :hours)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Minutes" :minutes)
3287 (string :tag "Format string")))))
3289 (defcustom org-deadline-warning-days 14
3290 "Number of days before expiration during which a deadline becomes active.
3291 This variable governs the display in sparse trees and in the agenda.
3292 When 0 or negative, it means use this number (the absolute value of it)
3293 even if a deadline has a different individual lead time specified.
3295 Custom commands can set this variable in the options section."
3296 :group 'org-time
3297 :group 'org-agenda-daily/weekly
3298 :type 'integer)
3300 (defcustom org-scheduled-delay-days 0
3301 "Number of days before a scheduled item becomes active.
3302 This variable governs the display in sparse trees and in the agenda.
3303 The default value (i.e. 0) means: don't delay scheduled item.
3304 When negative, it means use this number (the absolute value of it)
3305 even if a scheduled item has a different individual delay time
3306 specified.
3308 Custom commands can set this variable in the options section."
3309 :group 'org-time
3310 :group 'org-agenda-daily/weekly
3311 :version "24.4"
3312 :package-version '(Org . "8.0")
3313 :type 'integer)
3315 (defcustom org-read-date-prefer-future t
3316 "Non-nil means assume future for incomplete date input from user.
3317 This affects the following situations:
3318 1. The user gives a month but not a year.
3319 For example, if it is April and you enter \"feb 2\", this will be read
3320 as Feb 2, *next* year. \"May 5\", however, will be this year.
3321 2. The user gives a day, but no month.
3322 For example, if today is the 15th, and you enter \"3\", Org-mode will
3323 read this as the third of *next* month. However, if you enter \"17\",
3324 it will be considered as *this* month.
3326 If you set this variable to the symbol `time', then also the following
3327 will work:
3329 3. If the user gives a time.
3330 If the time is before now, it will be interpreted as tomorrow.
3332 Currently none of this works for ISO week specifications.
3334 When this option is nil, the current day, month and year will always be
3335 used as defaults.
3337 See also `org-agenda-jump-prefer-future'."
3338 :group 'org-time
3339 :type '(choice
3340 (const :tag "Never" nil)
3341 (const :tag "Check month and day" t)
3342 (const :tag "Check month, day, and time" time)))
3344 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3345 "Should the agenda jump command prefer the future for incomplete dates?
3346 The default is to do the same as configured in `org-read-date-prefer-future'.
3347 But you can also set a deviating value here.
3348 This may t or nil, or the symbol `org-read-date-prefer-future'."
3349 :group 'org-agenda
3350 :group 'org-time
3351 :version "24.1"
3352 :type '(choice
3353 (const :tag "Use org-read-date-prefer-future"
3354 org-read-date-prefer-future)
3355 (const :tag "Never" nil)
3356 (const :tag "Always" t)))
3358 (defcustom org-read-date-force-compatible-dates t
3359 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3361 Depending on the system Emacs is running on, certain dates cannot
3362 be represented with the type used internally to represent time.
3363 Dates between 1970-1-1 and 2038-1-1 can always be represented
3364 correctly. Some systems allow for earlier dates, some for later,
3365 some for both. One way to find out it to insert any date into an
3366 Org buffer, putting the cursor on the year and hitting S-up and
3367 S-down to test the range.
3369 When this variable is set to t, the date/time prompt will not let
3370 you specify dates outside the 1970-2037 range, so it is certain that
3371 these dates will work in whatever version of Emacs you are
3372 running, and also that you can move a file from one Emacs implementation
3373 to another. WHenever Org is forcing the year for you, it will display
3374 a message and beep.
3376 When this variable is nil, Org will check if the date is
3377 representable in the specific Emacs implementation you are using.
3378 If not, it will force a year, usually the current year, and beep
3379 to remind you. Currently this setting is not recommended because
3380 the likelihood that you will open your Org files in an Emacs that
3381 has limited date range is not negligible.
3383 A workaround for this problem is to use diary sexp dates for time
3384 stamps outside of this range."
3385 :group 'org-time
3386 :version "24.1"
3387 :type 'boolean)
3389 (defcustom org-read-date-display-live t
3390 "Non-nil means display current interpretation of date prompt live.
3391 This display will be in an overlay, in the minibuffer."
3392 :group 'org-time
3393 :type 'boolean)
3395 (defcustom org-read-date-popup-calendar t
3396 "Non-nil means pop up a calendar when prompting for a date.
3397 In the calendar, the date can be selected with mouse-1. However, the
3398 minibuffer will also be active, and you can simply enter the date as well.
3399 When nil, only the minibuffer will be available."
3400 :group 'org-time
3401 :type 'boolean)
3402 (org-defvaralias 'org-popup-calendar-for-date-prompt
3403 'org-read-date-popup-calendar)
3405 (make-obsolete-variable
3406 'org-read-date-minibuffer-setup-hook
3407 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3408 (defcustom org-read-date-minibuffer-setup-hook nil
3409 "Hook to be used to set up keys for the date/time interface.
3410 Add key definitions to `minibuffer-local-map', which will be a
3411 temporary copy.
3413 WARNING: This option is obsolete, you should use
3414 `org-read-date-minibuffer-local-map' to set up keys."
3415 :group 'org-time
3416 :type 'hook)
3418 (defcustom org-extend-today-until 0
3419 "The hour when your day really ends. Must be an integer.
3420 This has influence for the following applications:
3421 - When switching the agenda to \"today\". It it is still earlier than
3422 the time given here, the day recognized as TODAY is actually yesterday.
3423 - When a date is read from the user and it is still before the time given
3424 here, the current date and time will be assumed to be yesterday, 23:59.
3425 Also, timestamps inserted in capture templates follow this rule.
3427 IMPORTANT: This is a feature whose implementation is and likely will
3428 remain incomplete. Really, it is only here because past midnight seems to
3429 be the favorite working time of John Wiegley :-)"
3430 :group 'org-time
3431 :type 'integer)
3433 (defcustom org-use-effective-time nil
3434 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3435 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3436 \"effective time\" of any timestamps between midnight and 8am will be
3437 23:59 of the previous day."
3438 :group 'org-time
3439 :version "24.1"
3440 :type 'boolean)
3442 (defcustom org-use-last-clock-out-time-as-effective-time nil
3443 "When non-nil, use the last clock out time for `org-todo'.
3444 Note that this option has precedence over the combined use of
3445 `org-use-effective-time' and `org-extend-today-until'."
3446 :group 'org-time
3447 :version "24.4"
3448 :package-version '(Org . "8.0")
3449 :type 'boolean)
3451 (defcustom org-edit-timestamp-down-means-later nil
3452 "Non-nil means S-down will increase the time in a time stamp.
3453 When nil, S-up will increase."
3454 :group 'org-time
3455 :type 'boolean)
3457 (defcustom org-calendar-follow-timestamp-change t
3458 "Non-nil means make the calendar window follow timestamp changes.
3459 When a timestamp is modified and the calendar window is visible, it will be
3460 moved to the new date."
3461 :group 'org-time
3462 :type 'boolean)
3464 (defgroup org-tags nil
3465 "Options concerning tags in Org-mode."
3466 :tag "Org Tags"
3467 :group 'org)
3469 (defcustom org-tag-alist nil
3470 "List of tags allowed in Org-mode files.
3471 When this list is nil, Org-mode will base TAG input on what is already in the
3472 buffer.
3473 The value of this variable is an alist, the car of each entry must be a
3474 keyword as a string, the cdr may be a character that is used to select
3475 that tag through the fast-tag-selection interface.
3476 See the manual for details."
3477 :group 'org-tags
3478 :type '(repeat
3479 (choice
3480 (cons (string :tag "Tag name")
3481 (character :tag "Access char"))
3482 (list :tag "Start radio group"
3483 (const :startgroup)
3484 (option (string :tag "Group description")))
3485 (list :tag "Start tag group, non distinct"
3486 (const :startgrouptag)
3487 (option (string :tag "Group description")))
3488 (list :tag "Group tags delimiter"
3489 (const :grouptags))
3490 (list :tag "End radio group"
3491 (const :endgroup)
3492 (option (string :tag "Group description")))
3493 (list :tag "End tag group, non distinct"
3494 (const :endgrouptag)
3495 (option (string :tag "Group description")))
3496 (const :tag "New line" (:newline)))))
3498 (defcustom org-tag-persistent-alist nil
3499 "List of tags that will always appear in all Org-mode files.
3500 This is in addition to any in buffer settings or customizations
3501 of `org-tag-alist'.
3502 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3503 The value of this variable is an alist, the car of each entry must be a
3504 keyword as a string, the cdr may be a character that is used to select
3505 that tag through the fast-tag-selection interface.
3506 See the manual for details.
3507 To disable these tags on a per-file basis, insert anywhere in the file:
3508 #+STARTUP: noptag"
3509 :group 'org-tags
3510 :type '(repeat
3511 (choice
3512 (cons (string :tag "Tag name")
3513 (character :tag "Access char"))
3514 (const :tag "Start radio group" (:startgroup))
3515 (const :tag "Group tags delimiter" (:grouptags))
3516 (const :tag "End radio group" (:endgroup))
3517 (const :tag "New line" (:newline)))))
3519 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3520 "If non-nil, always offer completion for all tags of all agenda files.
3521 Instead of customizing this variable directly, you might want to
3522 set it locally for capture buffers, because there no list of
3523 tags in that file can be created dynamically (there are none).
3525 (add-hook 'org-capture-mode-hook
3526 (lambda ()
3527 (set (make-local-variable
3528 'org-complete-tags-always-offer-all-agenda-tags)
3529 t)))"
3530 :group 'org-tags
3531 :version "24.1"
3532 :type 'boolean)
3534 (defvar org-file-tags nil
3535 "List of tags that can be inherited by all entries in the file.
3536 The tags will be inherited if the variable `org-use-tag-inheritance'
3537 says they should be.
3538 This variable is populated from #+FILETAGS lines.")
3540 (defcustom org-use-fast-tag-selection 'auto
3541 "Non-nil means use fast tag selection scheme.
3542 This is a special interface to select and deselect tags with single keys.
3543 When nil, fast selection is never used.
3544 When the symbol `auto', fast selection is used if and only if selection
3545 characters for tags have been configured, either through the variable
3546 `org-tag-alist' or through a #+TAGS line in the buffer.
3547 When t, fast selection is always used and selection keys are assigned
3548 automatically if necessary."
3549 :group 'org-tags
3550 :type '(choice
3551 (const :tag "Always" t)
3552 (const :tag "Never" nil)
3553 (const :tag "When selection characters are configured" auto)))
3555 (defcustom org-fast-tag-selection-single-key nil
3556 "Non-nil means fast tag selection exits after first change.
3557 When nil, you have to press RET to exit it.
3558 During fast tag selection, you can toggle this flag with `C-c'.
3559 This variable can also have the value `expert'. In this case, the window
3560 displaying the tags menu is not even shown, until you press C-c again."
3561 :group 'org-tags
3562 :type '(choice
3563 (const :tag "No" nil)
3564 (const :tag "Yes" t)
3565 (const :tag "Expert" expert)))
3567 (defvar org-fast-tag-selection-include-todo nil
3568 "Non-nil means fast tags selection interface will also offer TODO states.
3569 This is an undocumented feature, you should not rely on it.")
3571 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3572 "The column to which tags should be indented in a headline.
3573 If this number is positive, it specifies the column. If it is negative,
3574 it means that the tags should be flushright to that column. For example,
3575 -80 works well for a normal 80 character screen.
3576 When 0, place tags directly after headline text, with only one space in
3577 between."
3578 :group 'org-tags
3579 :type 'integer)
3581 (defcustom org-auto-align-tags t
3582 "Non-nil keeps tags aligned when modifying headlines.
3583 Some operations (i.e. demoting) change the length of a headline and
3584 therefore shift the tags around. With this option turned on, after
3585 each such operation the tags are again aligned to `org-tags-column'."
3586 :group 'org-tags
3587 :type 'boolean)
3589 (defcustom org-use-tag-inheritance t
3590 "Non-nil means tags in levels apply also for sublevels.
3591 When nil, only the tags directly given in a specific line apply there.
3592 This may also be a list of tags that should be inherited, or a regexp that
3593 matches tags that should be inherited. Additional control is possible
3594 with the variable `org-tags-exclude-from-inheritance' which gives an
3595 explicit list of tags to be excluded from inheritance, even if the value of
3596 `org-use-tag-inheritance' would select it for inheritance.
3598 If this option is t, a match early-on in a tree can lead to a large
3599 number of matches in the subtree when constructing the agenda or creating
3600 a sparse tree. If you only want to see the first match in a tree during
3601 a search, check out the variable `org-tags-match-list-sublevels'."
3602 :group 'org-tags
3603 :type '(choice
3604 (const :tag "Not" nil)
3605 (const :tag "Always" t)
3606 (repeat :tag "Specific tags" (string :tag "Tag"))
3607 (regexp :tag "Tags matched by regexp")))
3609 (defcustom org-tags-exclude-from-inheritance nil
3610 "List of tags that should never be inherited.
3611 This is a way to exclude a few tags from inheritance. For way to do
3612 the opposite, to actively allow inheritance for selected tags,
3613 see the variable `org-use-tag-inheritance'."
3614 :group 'org-tags
3615 :type '(repeat (string :tag "Tag")))
3617 (defun org-tag-inherit-p (tag)
3618 "Check if TAG is one that should be inherited."
3619 (cond
3620 ((member tag org-tags-exclude-from-inheritance) nil)
3621 ((eq org-use-tag-inheritance t) t)
3622 ((not org-use-tag-inheritance) nil)
3623 ((stringp org-use-tag-inheritance)
3624 (string-match org-use-tag-inheritance tag))
3625 ((listp org-use-tag-inheritance)
3626 (member tag org-use-tag-inheritance))
3627 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3629 (defcustom org-tags-match-list-sublevels t
3630 "Non-nil means list also sublevels of headlines matching a search.
3631 This variable applies to tags/property searches, and also to stuck
3632 projects because this search is based on a tags match as well.
3634 When set to the symbol `indented', sublevels are indented with
3635 leading dots.
3637 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3638 the sublevels of a headline matching a tag search often also match
3639 the same search. Listing all of them can create very long lists.
3640 Setting this variable to nil causes subtrees of a match to be skipped.
3642 This variable is semi-obsolete and probably should always be true. It
3643 is better to limit inheritance to certain tags using the variables
3644 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3645 :group 'org-tags
3646 :type '(choice
3647 (const :tag "No, don't list them" nil)
3648 (const :tag "Yes, do list them" t)
3649 (const :tag "List them, indented with leading dots" indented)))
3651 (defcustom org-tags-sort-function nil
3652 "When set, tags are sorted using this function as a comparator."
3653 :group 'org-tags
3654 :type '(choice
3655 (const :tag "No sorting" nil)
3656 (const :tag "Alphabetical" string<)
3657 (const :tag "Reverse alphabetical" string>)
3658 (function :tag "Custom function" nil)))
3660 (defvar org-tags-history nil
3661 "History of minibuffer reads for tags.")
3662 (defvar org-last-tags-completion-table nil
3663 "The last used completion table for tags.")
3664 (defvar org-after-tags-change-hook nil
3665 "Hook that is run after the tags in a line have changed.")
3667 (defgroup org-properties nil
3668 "Options concerning properties in Org-mode."
3669 :tag "Org Properties"
3670 :group 'org)
3672 (defcustom org-property-format "%-10s %s"
3673 "How property key/value pairs should be formatted by `indent-line'.
3674 When `indent-line' hits a property definition, it will format the line
3675 according to this format, mainly to make sure that the values are
3676 lined-up with respect to each other."
3677 :group 'org-properties
3678 :type 'string)
3680 (defcustom org-properties-postprocess-alist nil
3681 "Alist of properties and functions to adjust inserted values.
3682 Elements of this alist must be of the form
3684 ([string] [function])
3686 where [string] must be a property name and [function] must be a
3687 lambda expression: this lambda expression must take one argument,
3688 the value to adjust, and return the new value as a string.
3690 For example, this element will allow the property \"Remaining\"
3691 to be updated wrt the relation between the \"Effort\" property
3692 and the clock summary:
3694 ((\"Remaining\" (lambda(value)
3695 (let ((clocksum (org-clock-sum-current-item))
3696 (effort (org-duration-string-to-minutes
3697 (org-entry-get (point) \"Effort\"))))
3698 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3699 :group 'org-properties
3700 :version "24.1"
3701 :type '(alist :key-type (string :tag "Property")
3702 :value-type (function :tag "Function")))
3704 (defcustom org-use-property-inheritance nil
3705 "Non-nil means properties apply also for sublevels.
3707 This setting is chiefly used during property searches. Turning it on can
3708 cause significant overhead when doing a search, which is why it is not
3709 on by default.
3711 When nil, only the properties directly given in the current entry count.
3712 When t, every property is inherited. The value may also be a list of
3713 properties that should have inheritance, or a regular expression matching
3714 properties that should be inherited.
3716 However, note that some special properties use inheritance under special
3717 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3718 and the properties ending in \"_ALL\" when they are used as descriptor
3719 for valid values of a property.
3721 Note for programmers:
3722 When querying an entry with `org-entry-get', you can control if inheritance
3723 should be used. By default, `org-entry-get' looks only at the local
3724 properties. You can request inheritance by setting the inherit argument
3725 to t (to force inheritance) or to `selective' (to respect the setting
3726 in this variable)."
3727 :group 'org-properties
3728 :type '(choice
3729 (const :tag "Not" nil)
3730 (const :tag "Always" t)
3731 (repeat :tag "Specific properties" (string :tag "Property"))
3732 (regexp :tag "Properties matched by regexp")))
3734 (defun org-property-inherit-p (property)
3735 "Check if PROPERTY is one that should be inherited."
3736 (cond
3737 ((eq org-use-property-inheritance t) t)
3738 ((not org-use-property-inheritance) nil)
3739 ((stringp org-use-property-inheritance)
3740 (string-match org-use-property-inheritance property))
3741 ((listp org-use-property-inheritance)
3742 (member property org-use-property-inheritance))
3743 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3745 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3746 "The default column format, if no other format has been defined.
3747 This variable can be set on the per-file basis by inserting a line
3749 #+COLUMNS: %25ITEM ....."
3750 :group 'org-properties
3751 :type 'string)
3753 (defcustom org-columns-ellipses ".."
3754 "The ellipses to be used when a field in column view is truncated.
3755 When this is the empty string, as many characters as possible are shown,
3756 but then there will be no visual indication that the field has been truncated.
3757 When this is a string of length N, the last N characters of a truncated
3758 field are replaced by this string. If the column is narrower than the
3759 ellipses string, only part of the ellipses string will be shown."
3760 :group 'org-properties
3761 :type 'string)
3763 (defcustom org-columns-modify-value-for-display-function nil
3764 "Function that modifies values for display in column view.
3765 For example, it can be used to cut out a certain part from a time stamp.
3766 The function must take 2 arguments:
3768 column-title The title of the column (*not* the property name)
3769 value The value that should be modified.
3771 The function should return the value that should be displayed,
3772 or nil if the normal value should be used."
3773 :group 'org-properties
3774 :type '(choice (const nil) (function)))
3776 (defconst org-global-properties-fixed
3777 '(("VISIBILITY_ALL" . "folded children content all")
3778 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3779 "List of property/value pairs that can be inherited by any entry.
3781 These are fixed values, for the preset properties. The user variable
3782 that can be used to add to this list is `org-global-properties'.
3784 The entries in this list are cons cells where the car is a property
3785 name and cdr is a string with the value. If the value represents
3786 multiple items like an \"_ALL\" property, separate the items by
3787 spaces.")
3789 (defcustom org-global-properties nil
3790 "List of property/value pairs that can be inherited by any entry.
3792 This list will be combined with the constant `org-global-properties-fixed'.
3794 The entries in this list are cons cells where the car is a property
3795 name and cdr is a string with the value.
3797 You can set buffer-local values for the same purpose in the variable
3798 `org-file-properties' this by adding lines like
3800 #+PROPERTY: NAME VALUE"
3801 :group 'org-properties
3802 :type '(repeat
3803 (cons (string :tag "Property")
3804 (string :tag "Value"))))
3806 (defvar org-file-properties nil
3807 "List of property/value pairs that can be inherited by any entry.
3808 Valid for the current buffer.
3809 This variable is populated from #+PROPERTY lines.")
3810 (make-variable-buffer-local 'org-file-properties)
3812 (defgroup org-agenda nil
3813 "Options concerning agenda views in Org-mode."
3814 :tag "Org Agenda"
3815 :group 'org)
3817 (defvar org-category nil
3818 "Variable used by org files to set a category for agenda display.
3819 Such files should use a file variable to set it, for example
3821 # -*- mode: org; org-category: \"ELisp\"
3823 or contain a special line
3825 #+CATEGORY: ELisp
3827 If the file does not specify a category, then file's base name
3828 is used instead.")
3829 (make-variable-buffer-local 'org-category)
3830 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3832 (defcustom org-agenda-files nil
3833 "The files to be used for agenda display.
3834 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3835 \\[org-remove-file]. You can also use customize to edit the list.
3837 If an entry is a directory, all files in that directory that are matched by
3838 `org-agenda-file-regexp' will be part of the file list.
3840 If the value of the variable is not a list but a single file name, then
3841 the list of agenda files is actually stored and maintained in that file, one
3842 agenda file per line. In this file paths can be given relative to
3843 `org-directory'. Tilde expansion and environment variable substitution
3844 are also made."
3845 :group 'org-agenda
3846 :type '(choice
3847 (repeat :tag "List of files and directories" file)
3848 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3850 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3851 "Regular expression to match files for `org-agenda-files'.
3852 If any element in the list in that variable contains a directory instead
3853 of a normal file, all files in that directory that are matched by this
3854 regular expression will be included."
3855 :group 'org-agenda
3856 :type 'regexp)
3858 (defcustom org-agenda-text-search-extra-files nil
3859 "List of extra files to be searched by text search commands.
3860 These files will be searched in addition to the agenda files by the
3861 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3862 Note that these files will only be searched for text search commands,
3863 not for the other agenda views like todo lists, tag searches or the weekly
3864 agenda. This variable is intended to list notes and possibly archive files
3865 that should also be searched by these two commands.
3866 In fact, if the first element in the list is the symbol `agenda-archives',
3867 then all archive files of all agenda files will be added to the search
3868 scope."
3869 :group 'org-agenda
3870 :type '(set :greedy t
3871 (const :tag "Agenda Archives" agenda-archives)
3872 (repeat :inline t (file))))
3874 (org-defvaralias 'org-agenda-multi-occur-extra-files
3875 'org-agenda-text-search-extra-files)
3877 (defcustom org-agenda-skip-unavailable-files nil
3878 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3879 A nil value means to remove them, after a query, from the list."
3880 :group 'org-agenda
3881 :type 'boolean)
3883 (defcustom org-calendar-to-agenda-key [?c]
3884 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3885 The command `org-calendar-goto-agenda' will be bound to this key. The
3886 default is the character `c' because then `c' can be used to switch back and
3887 forth between agenda and calendar."
3888 :group 'org-agenda
3889 :type 'sexp)
3891 (defcustom org-calendar-insert-diary-entry-key [?i]
3892 "The key to be installed in `calendar-mode-map' for adding diary entries.
3893 This option is irrelevant until `org-agenda-diary-file' has been configured
3894 to point to an Org-mode file. When that is the case, the command
3895 `org-agenda-diary-entry' will be bound to the key given here, by default
3896 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3897 if you want to continue doing this, you need to change this to a different
3898 key."
3899 :group 'org-agenda
3900 :type 'sexp)
3902 (defcustom org-agenda-diary-file 'diary-file
3903 "File to which to add new entries with the `i' key in agenda and calendar.
3904 When this is the symbol `diary-file', the functionality in the Emacs
3905 calendar will be used to add entries to the `diary-file'. But when this
3906 points to a file, `org-agenda-diary-entry' will be used instead."
3907 :group 'org-agenda
3908 :type '(choice
3909 (const :tag "The standard Emacs diary file" diary-file)
3910 (file :tag "Special Org file diary entries")))
3912 (eval-after-load "calendar"
3913 '(progn
3914 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3915 'org-calendar-goto-agenda)
3916 (add-hook 'calendar-mode-hook
3917 (lambda ()
3918 (unless (eq org-agenda-diary-file 'diary-file)
3919 (define-key calendar-mode-map
3920 org-calendar-insert-diary-entry-key
3921 'org-agenda-diary-entry))))))
3923 (defgroup org-latex nil
3924 "Options for embedding LaTeX code into Org-mode."
3925 :tag "Org LaTeX"
3926 :group 'org)
3928 (defcustom org-format-latex-options
3929 '(:foreground default :background default :scale 1.0
3930 :html-foreground "Black" :html-background "Transparent"
3931 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3932 "Options for creating images from LaTeX fragments.
3933 This is a property list with the following properties:
3934 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3935 `default' means use the foreground of the default face.
3936 `auto' means use the foreground from the text face.
3937 :background the background color, or \"Transparent\".
3938 `default' means use the background of the default face.
3939 `auto' means use the background from the text face.
3940 :scale a scaling factor for the size of the images, to get more pixels
3941 :html-foreground, :html-background, :html-scale
3942 the same numbers for HTML export.
3943 :matchers a list indicating which matchers should be used to
3944 find LaTeX fragments. Valid members of this list are:
3945 \"begin\" find environments
3946 \"$1\" find single characters surrounded by $.$
3947 \"$\" find math expressions surrounded by $...$
3948 \"$$\" find math expressions surrounded by $$....$$
3949 \"\\(\" find math expressions surrounded by \\(...\\)
3950 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3951 :group 'org-latex
3952 :type 'plist)
3954 (defcustom org-format-latex-signal-error t
3955 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3956 When nil, just push out a message."
3957 :group 'org-latex
3958 :version "24.1"
3959 :type 'boolean)
3961 (defcustom org-latex-to-mathml-jar-file nil
3962 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3963 Use this to specify additional executable file say a jar file.
3965 When using MathToWeb as the converter, specify the full-path to
3966 your mathtoweb.jar file."
3967 :group 'org-latex
3968 :version "24.1"
3969 :type '(choice
3970 (const :tag "None" nil)
3971 (file :tag "JAR file" :must-match t)))
3973 (defcustom org-latex-to-mathml-convert-command nil
3974 "Command to convert LaTeX fragments to MathML.
3975 Replace format-specifiers in the command as noted below and use
3976 `shell-command' to convert LaTeX to MathML.
3977 %j: Executable file in fully expanded form as specified by
3978 `org-latex-to-mathml-jar-file'.
3979 %I: Input LaTeX file in fully expanded form.
3980 %i: The latex fragment to be converted.
3981 %o: Output MathML file.
3982 This command is used by `org-create-math-formula'.
3984 When using MathToWeb as the converter, set this to
3985 \"java -jar %j -unicode -force -df %o %I\".
3987 When using LaTeXML set this to
3988 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3989 :group 'org-latex
3990 :version "24.1"
3991 :type '(choice
3992 (const :tag "None" nil)
3993 (string :tag "\nShell command")))
3995 (defcustom org-latex-create-formula-image-program 'dvipng
3996 "Program to convert LaTeX fragments with.
3998 dvipng Process the LaTeX fragments to dvi file, then convert
3999 dvi files to png files using dvipng.
4000 This will also include processing of non-math environments.
4001 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4002 to convert pdf files to png files"
4003 :group 'org-latex
4004 :version "24.1"
4005 :type '(choice
4006 (const :tag "dvipng" dvipng)
4007 (const :tag "imagemagick" imagemagick)))
4009 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4010 "Path to store latex preview images.
4011 A relative path here creates many directories relative to the
4012 processed org files paths. An absolute path puts all preview
4013 images at the same place."
4014 :group 'org-latex
4015 :version "24.3"
4016 :type 'string)
4018 (defun org-format-latex-mathml-available-p ()
4019 "Return t if `org-latex-to-mathml-convert-command' is usable."
4020 (save-match-data
4021 (when (and (boundp 'org-latex-to-mathml-convert-command)
4022 org-latex-to-mathml-convert-command)
4023 (let ((executable (car (split-string
4024 org-latex-to-mathml-convert-command))))
4025 (when (executable-find executable)
4026 (if (string-match
4027 "%j" org-latex-to-mathml-convert-command)
4028 (file-readable-p org-latex-to-mathml-jar-file)
4029 t))))))
4031 (defcustom org-format-latex-header "\\documentclass{article}
4032 \\usepackage[usenames]{color}
4033 \[PACKAGES]
4034 \[DEFAULT-PACKAGES]
4035 \\pagestyle{empty} % do not remove
4036 % The settings below are copied from fullpage.sty
4037 \\setlength{\\textwidth}{\\paperwidth}
4038 \\addtolength{\\textwidth}{-3cm}
4039 \\setlength{\\oddsidemargin}{1.5cm}
4040 \\addtolength{\\oddsidemargin}{-2.54cm}
4041 \\setlength{\\evensidemargin}{\\oddsidemargin}
4042 \\setlength{\\textheight}{\\paperheight}
4043 \\addtolength{\\textheight}{-\\headheight}
4044 \\addtolength{\\textheight}{-\\headsep}
4045 \\addtolength{\\textheight}{-\\footskip}
4046 \\addtolength{\\textheight}{-3cm}
4047 \\setlength{\\topmargin}{1.5cm}
4048 \\addtolength{\\topmargin}{-2.54cm}"
4049 "The document header used for processing LaTeX fragments.
4050 It is imperative that this header make sure that no page number
4051 appears on the page. The package defined in the variables
4052 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4053 will either replace the placeholder \"[PACKAGES]\" in this
4054 header, or they will be appended."
4055 :group 'org-latex
4056 :type 'string)
4058 (defun org-set-packages-alist (var val)
4059 "Set the packages alist and make sure it has 3 elements per entry."
4060 (set var (mapcar (lambda (x)
4061 (if (and (consp x) (= (length x) 2))
4062 (list (car x) (nth 1 x) t)
4064 val)))
4066 (defun org-get-packages-alist (var)
4067 "Get the packages alist and make sure it has 3 elements per entry."
4068 (mapcar (lambda (x)
4069 (if (and (consp x) (= (length x) 2))
4070 (list (car x) (nth 1 x) t)
4072 (default-value var)))
4074 (defcustom org-latex-default-packages-alist
4075 '(("AUTO" "inputenc" t)
4076 ("T1" "fontenc" t)
4077 ("" "fixltx2e" nil)
4078 ("" "graphicx" t)
4079 ("" "grffile" t)
4080 ("" "longtable" nil)
4081 ("" "float" nil)
4082 ("" "wrapfig" nil)
4083 ("" "rotating" nil)
4084 ("normalem" "ulem" t)
4085 ("" "amsmath" t)
4086 ("" "textcomp" t)
4087 ("" "marvosym" t)
4088 ("" "wasysym" t)
4089 ("" "amssymb" t)
4090 ("" "capt-of" nil)
4091 ("" "hyperref" nil)
4092 "\\tolerance=1000")
4093 "Alist of default packages to be inserted in the header.
4095 Change this only if one of the packages here causes an
4096 incompatibility with another package you are using.
4098 The packages in this list are needed by one part or another of
4099 Org mode to function properly:
4101 - inputenc, fontenc: for basic font and character selection
4102 - fixltx2e: Important patches of LaTeX itself
4103 - graphicx: for including images
4104 - longtable: For multipage tables
4105 - float, wrapfig: for figure placement
4106 - rotating: for sideways figures and tables
4107 - ulem: for underline and strike-through
4108 - amsmath: for subscript and superscript and math environments
4109 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4110 for interpreting the entities in `org-entities'. You can skip
4111 some of these packages if you don't use any of their symbols.
4112 - capt-of: for captions outside of floats
4113 - hyperref: for cross references
4115 Therefore you should not modify this variable unless you know
4116 what you are doing. The one reason to change it anyway is that
4117 you might be loading some other package that conflicts with one
4118 of the default packages. Each element is either a cell or
4119 a string.
4121 A cell is of the format:
4123 \( \"options\" \"package\" SNIPPET-FLAG).
4125 If SNIPPET-FLAG is non-nil, the package also needs to be included
4126 when compiling LaTeX snippets into images for inclusion into
4127 non-LaTeX output.
4129 A string will be inserted as-is in the header of the document."
4130 :group 'org-latex
4131 :group 'org-export-latex
4132 :set 'org-set-packages-alist
4133 :get 'org-get-packages-alist
4134 :version "24.1"
4135 :type '(repeat
4136 (choice
4137 (list :tag "options/package pair"
4138 (string :tag "options")
4139 (string :tag "package")
4140 (boolean :tag "Snippet"))
4141 (string :tag "A line of LaTeX"))))
4143 (defcustom org-latex-packages-alist nil
4144 "Alist of packages to be inserted in every LaTeX header.
4146 These will be inserted after `org-latex-default-packages-alist'.
4147 Each element is either a cell or a string.
4149 A cell is of the format:
4151 \(\"options\" \"package\" SNIPPET-FLAG)
4153 SNIPPET-FLAG, when non-nil, indicates that this package is also
4154 needed when turning LaTeX snippets into images for inclusion into
4155 non-LaTeX output.
4157 A string will be inserted as-is in the header of the document.
4159 Make sure that you only list packages here which:
4161 - you want in every file;
4162 - do not conflict with the setup in `org-format-latex-header';
4163 - do not conflict with the default packages in
4164 `org-latex-default-packages-alist'."
4165 :group 'org-latex
4166 :group 'org-export-latex
4167 :set 'org-set-packages-alist
4168 :get 'org-get-packages-alist
4169 :type '(repeat
4170 (choice
4171 (list :tag "options/package pair"
4172 (string :tag "options")
4173 (string :tag "package")
4174 (boolean :tag "Snippet"))
4175 (string :tag "A line of LaTeX"))))
4177 (defgroup org-appearance nil
4178 "Settings for Org-mode appearance."
4179 :tag "Org Appearance"
4180 :group 'org)
4182 (defcustom org-level-color-stars-only nil
4183 "Non-nil means fontify only the stars in each headline.
4184 When nil, the entire headline is fontified.
4185 Changing it requires restart of `font-lock-mode' to become effective
4186 also in regions already fontified."
4187 :group 'org-appearance
4188 :type 'boolean)
4190 (defcustom org-hide-leading-stars nil
4191 "Non-nil means hide the first N-1 stars in a headline.
4192 This works by using the face `org-hide' for these stars. This
4193 face is white for a light background, and black for a dark
4194 background. You may have to customize the face `org-hide' to
4195 make this work.
4196 Changing it requires restart of `font-lock-mode' to become effective
4197 also in regions already fontified.
4198 You may also set this on a per-file basis by adding one of the following
4199 lines to the buffer:
4201 #+STARTUP: hidestars
4202 #+STARTUP: showstars"
4203 :group 'org-appearance
4204 :type 'boolean)
4206 (defcustom org-hidden-keywords nil
4207 "List of symbols corresponding to keywords to be hidden the org buffer.
4208 For example, a value '(title) for this list will make the document's title
4209 appear in the buffer without the initial #+TITLE: keyword."
4210 :group 'org-appearance
4211 :version "24.1"
4212 :type '(set (const :tag "#+AUTHOR" author)
4213 (const :tag "#+DATE" date)
4214 (const :tag "#+EMAIL" email)
4215 (const :tag "#+TITLE" title)))
4217 (defcustom org-custom-properties nil
4218 "List of properties (as strings) with a special meaning.
4219 The default use of these custom properties is to let the user
4220 hide them with `org-toggle-custom-properties-visibility'."
4221 :group 'org-properties
4222 :group 'org-appearance
4223 :version "24.3"
4224 :type '(repeat (string :tag "Property Name")))
4226 (defcustom org-fontify-done-headline nil
4227 "Non-nil means change the face of a headline if it is marked DONE.
4228 Normally, only the TODO/DONE keyword indicates the state of a headline.
4229 When this is non-nil, the headline after the keyword is set to the
4230 `org-headline-done' as an additional indication."
4231 :group 'org-appearance
4232 :type 'boolean)
4234 (defcustom org-fontify-emphasized-text t
4235 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4236 Changing this variable requires a restart of Emacs to take effect."
4237 :group 'org-appearance
4238 :type 'boolean)
4240 (defcustom org-fontify-whole-heading-line nil
4241 "Non-nil means fontify the whole line for headings.
4242 This is useful when setting a background color for the
4243 org-level-* faces."
4244 :group 'org-appearance
4245 :type 'boolean)
4247 (defcustom org-highlight-latex-and-related nil
4248 "Non-nil means highlight LaTeX related syntax in the buffer.
4249 When non nil, the value should be a list containing any of the
4250 following symbols:
4251 `latex' Highlight LaTeX snippets and environments.
4252 `script' Highlight subscript and superscript.
4253 `entities' Highlight entities."
4254 :group 'org-appearance
4255 :version "24.4"
4256 :package-version '(Org . "8.0")
4257 :type '(choice
4258 (const :tag "No highlighting" nil)
4259 (set :greedy t :tag "Highlight"
4260 (const :tag "LaTeX snippets and environments" latex)
4261 (const :tag "Subscript and superscript" script)
4262 (const :tag "Entities" entities))))
4264 (defcustom org-hide-emphasis-markers nil
4265 "Non-nil mean font-lock should hide the emphasis marker characters."
4266 :group 'org-appearance
4267 :type 'boolean)
4269 (defcustom org-hide-macro-markers nil
4270 "Non-nil mean font-lock should hide the brackets marking macro calls."
4271 :group 'org-appearance
4272 :type 'boolean)
4274 (defcustom org-pretty-entities nil
4275 "Non-nil means show entities as UTF8 characters.
4276 When nil, the \\name form remains in the buffer."
4277 :group 'org-appearance
4278 :version "24.1"
4279 :type 'boolean)
4281 (defcustom org-pretty-entities-include-sub-superscripts t
4282 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4283 :group 'org-appearance
4284 :version "24.1"
4285 :type 'boolean)
4287 (defvar org-emph-re nil
4288 "Regular expression for matching emphasis.
4289 After a match, the match groups contain these elements:
4290 0 The match of the full regular expression, including the characters
4291 before and after the proper match
4292 1 The character before the proper match, or empty at beginning of line
4293 2 The proper match, including the leading and trailing markers
4294 3 The leading marker like * or /, indicating the type of highlighting
4295 4 The text between the emphasis markers, not including the markers
4296 5 The character after the match, empty at the end of a line")
4297 (defvar org-verbatim-re nil
4298 "Regular expression for matching verbatim text.")
4299 (defvar org-emphasis-regexp-components) ; defined just below
4300 (defvar org-emphasis-alist) ; defined just below
4301 (defun org-set-emph-re (var val)
4302 "Set variable and compute the emphasis regular expression."
4303 (set var val)
4304 (when (and (boundp 'org-emphasis-alist)
4305 (boundp 'org-emphasis-regexp-components)
4306 org-emphasis-alist org-emphasis-regexp-components)
4307 (let* ((e org-emphasis-regexp-components)
4308 (pre (car e))
4309 (post (nth 1 e))
4310 (border (nth 2 e))
4311 (body (nth 3 e))
4312 (nl (nth 4 e))
4313 (body1 (concat body "*?"))
4314 (markers (mapconcat 'car org-emphasis-alist ""))
4315 (vmarkers (mapconcat
4316 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4317 org-emphasis-alist "")))
4318 ;; make sure special characters appear at the right position in the class
4319 (if (string-match "\\^" markers)
4320 (setq markers (concat (replace-match "" t t markers) "^")))
4321 (if (string-match "-" markers)
4322 (setq markers (concat (replace-match "" t t markers) "-")))
4323 (if (string-match "\\^" vmarkers)
4324 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4325 (if (string-match "-" vmarkers)
4326 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4327 (if (> nl 0)
4328 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4329 (int-to-string nl) "\\}")))
4330 ;; Make the regexp
4331 (setq org-emph-re
4332 (concat "\\([" pre "]\\|^\\)"
4333 "\\("
4334 "\\([" markers "]\\)"
4335 "\\("
4336 "[^" border "]\\|"
4337 "[^" border "]"
4338 body1
4339 "[^" border "]"
4340 "\\)"
4341 "\\3\\)"
4342 "\\([" post "]\\|$\\)"))
4343 (setq org-verbatim-re
4344 (concat "\\([" pre "]\\|^\\)"
4345 "\\("
4346 "\\([" vmarkers "]\\)"
4347 "\\("
4348 "[^" border "]\\|"
4349 "[^" border "]"
4350 body1
4351 "[^" border "]"
4352 "\\)"
4353 "\\3\\)"
4354 "\\([" post "]\\|$\\)")))))
4356 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4357 ;; set this option proved cumbersome. See this message/thread:
4358 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4359 (defvar org-emphasis-regexp-components
4360 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4361 "Components used to build the regular expression for emphasis.
4362 This is a list with five entries. Terminology: In an emphasis string
4363 like \" *strong word* \", we call the initial space PREMATCH, the final
4364 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4365 and \"trong wor\" is the body. The different components in this variable
4366 specify what is allowed/forbidden in each part:
4368 pre Chars allowed as prematch. Beginning of line will be allowed too.
4369 post Chars allowed as postmatch. End of line will be allowed too.
4370 border The chars *forbidden* as border characters.
4371 body-regexp A regexp like \".\" to match a body character. Don't use
4372 non-shy groups here, and don't allow newline here.
4373 newline The maximum number of newlines allowed in an emphasis exp.
4375 You need to reload Org or to restart Emacs after customizing this.")
4377 (defcustom org-emphasis-alist
4378 `(("*" bold)
4379 ("/" italic)
4380 ("_" underline)
4381 ("=" org-verbatim verbatim)
4382 ("~" org-code verbatim)
4383 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4384 "Alist of characters and faces to emphasize text.
4385 Text starting and ending with a special character will be emphasized,
4386 for example *bold*, _underlined_ and /italic/. This variable sets the
4387 marker characters and the face to be used by font-lock for highlighting
4388 in Org-mode Emacs buffers.
4390 You need to reload Org or to restart Emacs after customizing this."
4391 :group 'org-appearance
4392 :set 'org-set-emph-re
4393 :version "24.4"
4394 :package-version '(Org . "8.0")
4395 :type '(repeat
4396 (list
4397 (string :tag "Marker character")
4398 (choice
4399 (face :tag "Font-lock-face")
4400 (plist :tag "Face property list"))
4401 (option (const verbatim)))))
4403 (defvar org-protecting-blocks
4404 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4405 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4406 This is needed for font-lock setup.")
4408 ;;; Miscellaneous options
4410 (defgroup org-completion nil
4411 "Completion in Org-mode."
4412 :tag "Org Completion"
4413 :group 'org)
4415 (defcustom org-completion-use-ido nil
4416 "Non-nil means use ido completion wherever possible.
4417 Note that `ido-mode' must be active for this variable to be relevant.
4418 If you decide to turn this variable on, you might well want to turn off
4419 `org-outline-path-complete-in-steps'.
4420 See also `org-completion-use-iswitchb'."
4421 :group 'org-completion
4422 :type 'boolean)
4424 (defcustom org-completion-use-iswitchb nil
4425 "Non-nil means use iswitchb completion wherever possible.
4426 Note that `iswitchb-mode' must be active for this variable to be relevant.
4427 If you decide to turn this variable on, you might well want to turn off
4428 `org-outline-path-complete-in-steps'.
4429 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4430 :group 'org-completion
4431 :type 'boolean)
4433 (defcustom org-completion-fallback-command 'hippie-expand
4434 "The expansion command called by \\[pcomplete] in normal context.
4435 Normal means, no org-mode-specific context."
4436 :group 'org-completion
4437 :type 'function)
4439 ;;; Functions and variables from their packages
4440 ;; Declared here to avoid compiler warnings
4442 ;; XEmacs only
4443 (defvar outline-mode-menu-heading)
4444 (defvar outline-mode-menu-show)
4445 (defvar outline-mode-menu-hide)
4446 (defvar zmacs-regions) ; XEmacs regions
4448 ;; Emacs only
4449 (defvar mark-active)
4451 ;; Various packages
4452 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4453 (declare-function calendar-forward-day "cal-move" (arg))
4454 (declare-function calendar-goto-date "cal-move" (date))
4455 (declare-function calendar-goto-today "cal-move" ())
4456 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4457 (defvar calc-embedded-close-formula)
4458 (defvar calc-embedded-open-formula)
4459 (declare-function cdlatex-tab "ext:cdlatex" ())
4460 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4461 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4462 (defvar font-lock-unfontify-region-function)
4463 (declare-function iswitchb-read-buffer "iswitchb"
4464 (prompt &optional default require-match start matches-set))
4465 (defvar iswitchb-temp-buflist)
4466 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4467 (defvar org-agenda-tags-todo-honor-ignore-options)
4468 (declare-function org-agenda-skip "org-agenda" ())
4469 (declare-function
4470 org-agenda-format-item "org-agenda"
4471 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4472 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4473 (declare-function org-agenda-change-all-lines "org-agenda"
4474 (newhead hdmarker &optional fixface just-this))
4475 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4476 (declare-function org-agenda-maybe-redo "org-agenda" ())
4477 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4478 (beg end))
4479 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4480 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4481 "org-agenda" (&optional end))
4482 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4483 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4484 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4485 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4486 (declare-function org-indent-mode "org-indent" (&optional arg))
4487 (declare-function parse-time-string "parse-time" (string))
4488 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4489 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4490 (defvar remember-data-file)
4491 (defvar texmathp-why)
4492 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4493 (declare-function table--at-cell-p "table" (position &optional object at-column))
4494 (declare-function calc-eval "calc" (str &optional separator &rest args))
4496 ;;;###autoload
4497 (defun turn-on-orgtbl ()
4498 "Unconditionally turn on `orgtbl-mode'."
4499 (require 'org-table)
4500 (orgtbl-mode 1))
4502 (defun org-at-table-p (&optional table-type)
4503 "Return t if the cursor is inside an org-type table.
4504 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4505 (if org-enable-table-editor
4506 (save-excursion
4507 (beginning-of-line 1)
4508 (looking-at (if table-type org-table-any-line-regexp
4509 org-table-line-regexp)))
4510 nil))
4511 (defsubst org-table-p () (org-at-table-p))
4513 (defun org-at-table.el-p ()
4514 "Return t if and only if we are at a table.el table."
4515 (and (org-at-table-p 'any)
4516 (save-excursion
4517 (goto-char (org-table-begin 'any))
4518 (looking-at org-table1-hline-regexp))))
4520 (defun org-table-recognize-table.el ()
4521 "If there is a table.el table nearby, recognize it and move into it."
4522 (if org-table-tab-recognizes-table.el
4523 (if (org-at-table.el-p)
4524 (progn
4525 (beginning-of-line 1)
4526 (if (looking-at org-table-dataline-regexp)
4528 (if (looking-at org-table1-hline-regexp)
4529 (progn
4530 (beginning-of-line 2)
4531 (if (looking-at org-table-any-border-regexp)
4532 (beginning-of-line -1)))))
4533 (if (re-search-forward "|" (org-table-end t) t)
4534 (progn
4535 (require 'table)
4536 (if (table--at-cell-p (point))
4538 (message "recognizing table.el table...")
4539 (table-recognize-table)
4540 (message "recognizing table.el table...done")))
4541 (error "This should not happen"))
4543 nil)
4544 nil))
4546 (defun org-at-table-hline-p ()
4547 "Return t if the cursor is inside a hline in a table."
4548 (if org-enable-table-editor
4549 (save-excursion
4550 (beginning-of-line 1)
4551 (looking-at org-table-hline-regexp))
4552 nil))
4554 (defun org-table-map-tables (function &optional quietly)
4555 "Apply FUNCTION to the start of all tables in the buffer."
4556 (save-excursion
4557 (save-restriction
4558 (widen)
4559 (goto-char (point-min))
4560 (while (re-search-forward org-table-any-line-regexp nil t)
4561 (unless quietly
4562 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4563 (beginning-of-line 1)
4564 (when (and (looking-at org-table-line-regexp)
4565 ;; Exclude tables in src/example/verbatim/clocktable blocks
4566 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4567 (save-excursion (funcall function))
4568 (or (looking-at org-table-line-regexp)
4569 (forward-char 1)))
4570 (re-search-forward org-table-any-border-regexp nil 1))))
4571 (unless quietly (message "Mapping tables: done")))
4573 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4574 (declare-function org-clock-update-mode-line "org-clock" ())
4575 (declare-function org-resolve-clocks "org-clock"
4576 (&optional also-non-dangling-p prompt last-valid))
4578 (defun org-at-TBLFM-p (&optional pos)
4579 "Non-nil when point (or POS) is in #+TBLFM line."
4580 (save-excursion
4581 (goto-char (or pos (point)))
4582 (beginning-of-line)
4583 (and (eq (org-element-type (org-element-at-point)) 'table)
4584 (looking-at org-TBLFM-regexp))))
4586 (defvar org-clock-start-time)
4587 (defvar org-clock-marker (make-marker)
4588 "Marker recording the last clock-in.")
4589 (defvar org-clock-hd-marker (make-marker)
4590 "Marker recording the last clock-in, but the headline position.")
4591 (defvar org-clock-heading ""
4592 "The heading of the current clock entry.")
4593 (defun org-clock-is-active ()
4594 "Return the buffer where the clock is currently running.
4595 Return nil if no clock is running."
4596 (marker-buffer org-clock-marker))
4598 (defun org-check-running-clock ()
4599 "Check if the current buffer contains the running clock.
4600 If yes, offer to stop it and to save the buffer with the changes."
4601 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4602 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4603 (buffer-name))))
4604 (org-clock-out)
4605 (when (y-or-n-p "Save changed buffer?")
4606 (save-buffer))))
4608 (defun org-clocktable-try-shift (dir n)
4609 "Check if this line starts a clock table, if yes, shift the time block."
4610 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4611 (org-clocktable-shift dir n)))
4613 ;;;###autoload
4614 (defun org-clock-persistence-insinuate ()
4615 "Set up hooks for clock persistence."
4616 (require 'org-clock)
4617 (add-hook 'org-mode-hook 'org-clock-load)
4618 (add-hook 'kill-emacs-hook 'org-clock-save))
4620 (defgroup org-archive nil
4621 "Options concerning archiving in Org-mode."
4622 :tag "Org Archive"
4623 :group 'org-structure)
4625 (defcustom org-archive-location "%s_archive::"
4626 "The location where subtrees should be archived.
4628 The value of this variable is a string, consisting of two parts,
4629 separated by a double-colon. The first part is a filename and
4630 the second part is a headline.
4632 When the filename is omitted, archiving happens in the same file.
4633 %s in the filename will be replaced by the current file
4634 name (without the directory part). Archiving to a different file
4635 is useful to keep archived entries from contributing to the
4636 Org-mode Agenda.
4638 The archived entries will be filed as subtrees of the specified
4639 headline. When the headline is omitted, the subtrees are simply
4640 filed away at the end of the file, as top-level entries. Also in
4641 the heading you can use %s to represent the file name, this can be
4642 useful when using the same archive for a number of different files.
4644 Here are a few examples:
4645 \"%s_archive::\"
4646 If the current file is Projects.org, archive in file
4647 Projects.org_archive, as top-level trees. This is the default.
4649 \"::* Archived Tasks\"
4650 Archive in the current file, under the top-level headline
4651 \"* Archived Tasks\".
4653 \"~/org/archive.org::\"
4654 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4656 \"~/org/archive.org::* From %s\"
4657 Archive in file ~/org/archive.org (absolute path), under headlines
4658 \"From FILENAME\" where file name is the current file name.
4660 \"~/org/datetree.org::datetree/* Finished Tasks\"
4661 The \"datetree/\" string is special, signifying to archive
4662 items to the datetree. Items are placed in either the CLOSED
4663 date of the item, or the current date if there is no CLOSED date.
4664 The heading will be a subentry to the current date. There doesn't
4665 need to be a heading, but there always needs to be a slash after
4666 datetree. For example, to store archived items directly in the
4667 datetree, use \"~/org/datetree.org::datetree/\".
4669 \"basement::** Finished Tasks\"
4670 Archive in file ./basement (relative path), as level 3 trees
4671 below the level 2 heading \"** Finished Tasks\".
4673 You may set this option on a per-file basis by adding to the buffer a
4674 line like
4676 #+ARCHIVE: basement::** Finished Tasks
4678 You may also define it locally for a subtree by setting an ARCHIVE property
4679 in the entry. If such a property is found in an entry, or anywhere up
4680 the hierarchy, it will be used."
4681 :group 'org-archive
4682 :type 'string)
4684 (defcustom org-agenda-skip-archived-trees t
4685 "Non-nil means the agenda will skip any items located in archived trees.
4686 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4687 variable is no longer recommended, you should leave it at the value t.
4688 Instead, use the key `v' to cycle the archives-mode in the agenda."
4689 :group 'org-archive
4690 :group 'org-agenda-skip
4691 :type 'boolean)
4693 (defcustom org-columns-skip-archived-trees t
4694 "Non-nil means ignore archived trees when creating column view."
4695 :group 'org-archive
4696 :group 'org-properties
4697 :type 'boolean)
4699 (defcustom org-cycle-open-archived-trees nil
4700 "Non-nil means `org-cycle' will open archived trees.
4701 An archived tree is a tree marked with the tag ARCHIVE.
4702 When nil, archived trees will stay folded. You can still open them with
4703 normal outline commands like `show-all', but not with the cycling commands."
4704 :group 'org-archive
4705 :group 'org-cycle
4706 :type 'boolean)
4708 (defcustom org-sparse-tree-open-archived-trees nil
4709 "Non-nil means sparse tree construction shows matches in archived trees.
4710 When nil, matches in these trees are highlighted, but the trees are kept in
4711 collapsed state."
4712 :group 'org-archive
4713 :group 'org-sparse-trees
4714 :type 'boolean)
4716 (defcustom org-sparse-tree-default-date-type nil
4717 "The default date type when building a sparse tree.
4718 When this is nil, a date is a scheduled or a deadline timestamp.
4719 Otherwise, these types are allowed:
4721 all: all timestamps
4722 active: only active timestamps (<...>)
4723 inactive: only inactive timestamps ([...])
4724 scheduled: only scheduled timestamps
4725 deadline: only deadline timestamps"
4726 :type '(choice (const :tag "Scheduled or deadline" nil)
4727 (const :tag "All timestamps" all)
4728 (const :tag "Only active timestamps" active)
4729 (const :tag "Only inactive timestamps" inactive)
4730 (const :tag "Only scheduled timestamps" scheduled)
4731 (const :tag "Only deadline timestamps" deadline)
4732 (const :tag "Only closed timestamps" closed))
4733 :version "25.1"
4734 :package-version '(Org . "8.3")
4735 :group 'org-sparse-trees)
4737 (defun org-cycle-hide-archived-subtrees (state)
4738 "Re-hide all archived subtrees after a visibility state change."
4739 (when (and (not org-cycle-open-archived-trees)
4740 (not (memq state '(overview folded))))
4741 (save-excursion
4742 (let* ((globalp (memq state '(contents all)))
4743 (beg (if globalp (point-min) (point)))
4744 (end (if globalp (point-max) (org-end-of-subtree t))))
4745 (org-hide-archived-subtrees beg end)
4746 (goto-char beg)
4747 (if (looking-at (concat ".*:" org-archive-tag ":"))
4748 (message "%s" (substitute-command-keys
4749 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4751 (defun org-force-cycle-archived ()
4752 "Cycle subtree even if it is archived."
4753 (interactive)
4754 (setq this-command 'org-cycle)
4755 (let ((org-cycle-open-archived-trees t))
4756 (call-interactively 'org-cycle)))
4758 (defun org-hide-archived-subtrees (beg end)
4759 "Re-hide all archived subtrees after a visibility state change."
4760 (org-with-wide-buffer
4761 (let ((case-fold-search nil)
4762 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4763 (goto-char beg)
4764 (while (and (< (point) end) (re-search-forward re end t))
4765 (when (member org-archive-tag (org-get-tags))
4766 (org-flag-subtree t)
4767 (org-end-of-subtree t))))))
4769 (declare-function outline-end-of-heading "outline" ())
4770 (declare-function outline-flag-region "outline" (from to flag))
4771 (defun org-flag-subtree (flag)
4772 (save-excursion
4773 (org-back-to-heading t)
4774 (outline-end-of-heading)
4775 (outline-flag-region (point)
4776 (progn (org-end-of-subtree t) (point))
4777 flag)))
4779 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4781 ;; Declare Column View Code
4783 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4784 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4785 (declare-function org-columns-compute "org-colview" (property))
4787 ;; Declare ID code
4789 (declare-function org-id-store-link "org-id")
4790 (declare-function org-id-locations-load "org-id")
4791 (declare-function org-id-locations-save "org-id")
4792 (defvar org-id-track-globally)
4794 ;;; Variables for pre-computed regular expressions, all buffer local
4796 (defvar org-todo-regexp nil
4797 "Matches any of the TODO state keywords.")
4798 (make-variable-buffer-local 'org-todo-regexp)
4799 (defvar org-not-done-regexp nil
4800 "Matches any of the TODO state keywords except the last one.")
4801 (make-variable-buffer-local 'org-not-done-regexp)
4802 (defvar org-not-done-heading-regexp nil
4803 "Matches a TODO headline that is not done.")
4804 (make-variable-buffer-local 'org-not-done-regexp)
4805 (defvar org-todo-line-regexp nil
4806 "Matches a headline and puts TODO state into group 2 if present.")
4807 (make-variable-buffer-local 'org-todo-line-regexp)
4808 (defvar org-complex-heading-regexp nil
4809 "Matches a headline and puts everything into groups:
4810 group 1: the stars
4811 group 2: The todo keyword, maybe
4812 group 3: Priority cookie
4813 group 4: True headline
4814 group 5: Tags")
4815 (make-variable-buffer-local 'org-complex-heading-regexp)
4816 (defvar org-complex-heading-regexp-format nil
4817 "Printf format to make regexp to match an exact headline.
4818 This regexp will match the headline of any node which has the
4819 exact headline text that is put into the format, but may have any
4820 TODO state, priority and tags.")
4821 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4822 (defvar org-todo-line-tags-regexp nil
4823 "Matches a headline and puts TODO state into group 2 if present.
4824 Also put tags into group 4 if tags are present.")
4825 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4827 (defconst org-plain-time-of-day-regexp
4828 (concat
4829 "\\(\\<[012]?[0-9]"
4830 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4831 "\\(--?"
4832 "\\(\\<[012]?[0-9]"
4833 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4834 "\\)?")
4835 "Regular expression to match a plain time or time range.
4836 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4837 groups carry important information:
4838 0 the full match
4839 1 the first time, range or not
4840 8 the second time, if it is a range.")
4842 (defconst org-plain-time-extension-regexp
4843 (concat
4844 "\\(\\<[012]?[0-9]"
4845 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4846 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4847 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4848 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4849 groups carry important information:
4850 0 the full match
4851 7 hours of duration
4852 9 minutes of duration")
4854 (defconst org-stamp-time-of-day-regexp
4855 (concat
4856 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4857 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4858 "\\(--?"
4859 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4860 "Regular expression to match a timestamp time or time range.
4861 After a match, the following groups carry important information:
4862 0 the full match
4863 1 date plus weekday, for back referencing to make sure both times are on the same day
4864 2 the first time, range or not
4865 4 the second time, if it is a range.")
4867 (defconst org-startup-options
4868 '(("fold" org-startup-folded t)
4869 ("overview" org-startup-folded t)
4870 ("nofold" org-startup-folded nil)
4871 ("showall" org-startup-folded nil)
4872 ("showeverything" org-startup-folded showeverything)
4873 ("content" org-startup-folded content)
4874 ("indent" org-startup-indented t)
4875 ("noindent" org-startup-indented nil)
4876 ("hidestars" org-hide-leading-stars t)
4877 ("showstars" org-hide-leading-stars nil)
4878 ("odd" org-odd-levels-only t)
4879 ("oddeven" org-odd-levels-only nil)
4880 ("align" org-startup-align-all-tables t)
4881 ("noalign" org-startup-align-all-tables nil)
4882 ("inlineimages" org-startup-with-inline-images t)
4883 ("noinlineimages" org-startup-with-inline-images nil)
4884 ("latexpreview" org-startup-with-latex-preview t)
4885 ("nolatexpreview" org-startup-with-latex-preview nil)
4886 ("customtime" org-display-custom-times t)
4887 ("logdone" org-log-done time)
4888 ("lognotedone" org-log-done note)
4889 ("nologdone" org-log-done nil)
4890 ("lognoteclock-out" org-log-note-clock-out t)
4891 ("nolognoteclock-out" org-log-note-clock-out nil)
4892 ("logrepeat" org-log-repeat state)
4893 ("lognoterepeat" org-log-repeat note)
4894 ("logdrawer" org-log-into-drawer t)
4895 ("nologdrawer" org-log-into-drawer nil)
4896 ("logstatesreversed" org-log-states-order-reversed t)
4897 ("nologstatesreversed" org-log-states-order-reversed nil)
4898 ("nologrepeat" org-log-repeat nil)
4899 ("logreschedule" org-log-reschedule time)
4900 ("lognotereschedule" org-log-reschedule note)
4901 ("nologreschedule" org-log-reschedule nil)
4902 ("logredeadline" org-log-redeadline time)
4903 ("lognoteredeadline" org-log-redeadline note)
4904 ("nologredeadline" org-log-redeadline nil)
4905 ("logrefile" org-log-refile time)
4906 ("lognoterefile" org-log-refile note)
4907 ("nologrefile" org-log-refile nil)
4908 ("fninline" org-footnote-define-inline t)
4909 ("nofninline" org-footnote-define-inline nil)
4910 ("fnlocal" org-footnote-section nil)
4911 ("fnauto" org-footnote-auto-label t)
4912 ("fnprompt" org-footnote-auto-label nil)
4913 ("fnconfirm" org-footnote-auto-label confirm)
4914 ("fnplain" org-footnote-auto-label plain)
4915 ("fnadjust" org-footnote-auto-adjust t)
4916 ("nofnadjust" org-footnote-auto-adjust nil)
4917 ("constcgs" constants-unit-system cgs)
4918 ("constSI" constants-unit-system SI)
4919 ("noptag" org-tag-persistent-alist nil)
4920 ("hideblocks" org-hide-block-startup t)
4921 ("nohideblocks" org-hide-block-startup nil)
4922 ("beamer" org-startup-with-beamer-mode t)
4923 ("entitiespretty" org-pretty-entities t)
4924 ("entitiesplain" org-pretty-entities nil))
4925 "Variable associated with STARTUP options for org-mode.
4926 Each element is a list of three items: the startup options (as written
4927 in the #+STARTUP line), the corresponding variable, and the value to set
4928 this variable to if the option is found. An optional forth element PUSH
4929 means to push this value onto the list in the variable.")
4931 (defcustom org-group-tags t
4932 "When non-nil (the default), use group tags.
4933 This can be turned on/off through `org-toggle-tags-groups'."
4934 :group 'org-tags
4935 :group 'org-startup
4936 :type 'boolean)
4938 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4940 (defun org-toggle-tags-groups ()
4941 "Toggle support for group tags.
4942 Support for group tags is controlled by the option
4943 `org-group-tags', which is non-nil by default."
4944 (interactive)
4945 (setq org-group-tags (not org-group-tags))
4946 (cond ((and (derived-mode-p 'org-agenda-mode)
4947 org-group-tags)
4948 (org-agenda-redo))
4949 ((derived-mode-p 'org-mode)
4950 (let ((org-inhibit-startup t)) (org-mode))))
4951 (message "Groups tags support has been turned %s"
4952 (if org-group-tags "on" "off")))
4954 (defun org-set-regexps-and-options (&optional tags-only)
4955 "Precompute regular expressions used in the current buffer.
4956 When optional argument TAGS-ONLY is non-nil, only compute tags
4957 related expressions."
4958 (when (derived-mode-p 'org-mode)
4959 (let ((alist (org--setup-collect-keywords
4960 (org-make-options-regexp
4961 (append '("FILETAGS" "TAGS" "SETUPFILE")
4962 (and (not tags-only)
4963 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4964 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4965 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4966 (org--setup-process-tags
4967 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4968 (unless tags-only
4969 ;; File properties.
4970 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4971 ;; Archive location.
4972 (let ((archive (cdr (assq 'archive alist))))
4973 (when archive (org-set-local 'org-archive-location archive)))
4974 ;; Category.
4975 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4976 (when cat
4977 (org-set-local 'org-category (intern cat))
4978 (org-set-local 'org-file-properties
4979 (org--update-property-plist
4980 "CATEGORY" cat org-file-properties))))
4981 ;; Columns.
4982 (let ((column (cdr (assq 'columns alist))))
4983 (when column (org-set-local 'org-columns-default-format column)))
4984 ;; Constants.
4985 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4986 ;; Link abbreviations.
4987 (let ((links (cdr (assq 'link alist))))
4988 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4989 ;; Priorities.
4990 (let ((priorities (cdr (assq 'priorities alist))))
4991 (when priorities
4992 (org-set-local 'org-highest-priority (nth 0 priorities))
4993 (org-set-local 'org-lowest-priority (nth 1 priorities))
4994 (org-set-local 'org-default-priority (nth 2 priorities))))
4995 ;; Scripts.
4996 (let ((scripts (assq 'scripts alist)))
4997 (when scripts
4998 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4999 ;; Startup options.
5000 (let ((startup (cdr (assq 'startup alist))))
5001 (dolist (option startup)
5002 (let ((entry (assoc-string option org-startup-options t)))
5003 (when entry
5004 (let ((var (nth 1 entry))
5005 (val (nth 2 entry)))
5006 (if (not (nth 3 entry)) (org-set-local var val)
5007 (unless (listp (symbol-value var))
5008 (org-set-local var nil))
5009 (add-to-list var val)))))))
5010 ;; TODO keywords.
5011 (org-set-local 'org-todo-kwd-alist nil)
5012 (org-set-local 'org-todo-key-alist nil)
5013 (org-set-local 'org-todo-key-trigger nil)
5014 (org-set-local 'org-todo-keywords-1 nil)
5015 (org-set-local 'org-done-keywords nil)
5016 (org-set-local 'org-todo-heads nil)
5017 (org-set-local 'org-todo-sets nil)
5018 (org-set-local 'org-todo-log-states nil)
5019 (let ((todo-sequences
5020 (or (nreverse (cdr (assq 'todo alist)))
5021 (let ((d (default-value 'org-todo-keywords)))
5022 (if (not (stringp (car d))) d
5023 ;; XXX: Backward compatibility code.
5024 (list (cons org-todo-interpretation d)))))))
5025 (dolist (sequence todo-sequences)
5026 (let* ((sequence (or (run-hook-with-args-until-success
5027 'org-todo-setup-filter-hook sequence)
5028 sequence))
5029 (sequence-type (car sequence))
5030 (keywords (cdr sequence))
5031 (sep (member "|" keywords))
5032 names alist)
5033 (dolist (k (remove "|" keywords))
5034 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5036 (error "Invalid TODO keyword %s" k))
5037 (let ((name (match-string 1 k))
5038 (key (match-string 2 k))
5039 (log (org-extract-log-state-settings k)))
5040 (push name names)
5041 (push (cons name (and key (string-to-char key))) alist)
5042 (when log (push log org-todo-log-states))))
5043 (let* ((names (nreverse names))
5044 (done (if sep (org-remove-keyword-keys (cdr sep))
5045 (last names)))
5046 (head (car names))
5047 (tail (list sequence-type head (car done) (org-last done))))
5048 (add-to-list 'org-todo-heads head 'append)
5049 (push names org-todo-sets)
5050 (setq org-done-keywords (append org-done-keywords done nil))
5051 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5052 (setq org-todo-key-alist
5053 (append org-todo-key-alist
5054 (and alist
5055 (append '((:startgroup))
5056 (nreverse alist)
5057 '((:endgroup))))))
5058 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5059 (setq org-todo-sets (nreverse org-todo-sets)
5060 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5061 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5062 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5063 ;; Compute the regular expressions and other local variables.
5064 ;; Using `org-outline-regexp-bol' would complicate them much,
5065 ;; because of the fixed white space at the end of that string.
5066 (if (not org-done-keywords)
5067 (setq org-done-keywords
5068 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5069 (setq org-not-done-keywords
5070 (org-delete-all org-done-keywords
5071 (copy-sequence org-todo-keywords-1))
5072 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5073 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5074 org-not-done-heading-regexp
5075 (format org-heading-keyword-regexp-format org-not-done-regexp)
5076 org-todo-line-regexp
5077 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5078 org-complex-heading-regexp
5079 (concat "^\\(\\*+\\)"
5080 "\\(?: +" org-todo-regexp "\\)?"
5081 "\\(?: +\\(\\[#.\\]\\)\\)?"
5082 "\\(?: +\\(.*?\\)\\)??"
5083 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5084 "[ \t]*$")
5085 org-complex-heading-regexp-format
5086 (concat "^\\(\\*+\\)"
5087 "\\(?: +" org-todo-regexp "\\)?"
5088 "\\(?: +\\(\\[#.\\]\\)\\)?"
5089 "\\(?: +"
5090 ;; Stats cookies can be stuck to body.
5091 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5092 "\\(%s\\)"
5093 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5094 "\\)"
5095 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5096 "[ \t]*$")
5097 org-todo-line-tags-regexp
5098 (concat "^\\(\\*+\\)"
5099 "\\(?: +" org-todo-regexp "\\)?"
5100 "\\(?: +\\(.*?\\)\\)??"
5101 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5102 "[ \t]*$"))
5103 (org-compute-latex-and-related-regexp)))))
5105 (defun org--setup-collect-keywords (regexp &optional files alist)
5106 "Return setup keywords values as an alist.
5108 REGEXP matches a subset of setup keywords. FILES is a list of
5109 file names already visited. It is used to avoid circular setup
5110 files. ALIST, when non-nil, is the alist computed so far.
5112 Return value contains the following keys: `archive', `category',
5113 `columns', `constants', `filetags', `link', `priorities',
5114 `property', `scripts', `startup', `tags' and `todo'."
5115 (org-with-wide-buffer
5116 (goto-char (point-min))
5117 (let ((case-fold-search t))
5118 (while (re-search-forward regexp nil t)
5119 (let ((element (org-element-at-point)))
5120 (when (eq (org-element-type element) 'keyword)
5121 (let ((key (org-element-property :key element))
5122 (value (org-element-property :value element)))
5123 (cond
5124 ((equal key "ARCHIVE")
5125 (when (org-string-nw-p value)
5126 (push (cons 'archive value) alist)))
5127 ((equal key "CATEGORY") (push (cons 'category value) alist))
5128 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5129 ((equal key "CONSTANTS")
5130 (let* ((constants (assq 'constants alist))
5131 (store (cdr constants)))
5132 (dolist (pair (org-split-string value))
5133 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5134 pair)
5135 (let* ((name (match-string 1 pair))
5136 (value (match-string 2 pair))
5137 (old (assoc name store)))
5138 (if old (setcdr old value)
5139 (push (cons name value) store)))))
5140 (if constants (setcdr constants store)
5141 (push (cons 'constants store) alist))))
5142 ((equal key "FILETAGS")
5143 (when (org-string-nw-p value)
5144 (let ((old (assq 'filetags alist))
5145 (new (apply #'nconc
5146 (mapcar (lambda (x) (org-split-string x ":"))
5147 (org-split-string value)))))
5148 (if old (setcdr old (append new (cdr old)))
5149 (push (cons 'filetags new) alist)))))
5150 ((equal key "LINK")
5151 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5152 (let ((links (assq 'link alist))
5153 (pair (cons (org-match-string-no-properties 1 value)
5154 (org-match-string-no-properties 2 value))))
5155 (if links (push pair (cdr links))
5156 (push (list 'link pair) alist)))))
5157 ((equal key "OPTIONS")
5158 (when (and (org-string-nw-p value)
5159 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5160 (push (cons 'scripts (read (match-string 1 value))) alist)))
5161 ((equal key "PRIORITIES")
5162 (push (cons 'priorities
5163 (let ((prio (org-split-string value)))
5164 (if (< (length prio) 3) '(?A ?C ?B)
5165 (mapcar #'string-to-char prio))))
5166 alist))
5167 ((equal key "PROPERTY")
5168 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5169 (let* ((property (assq 'property alist))
5170 (value (org--update-property-plist
5171 (org-match-string-no-properties 1 value)
5172 (org-match-string-no-properties 2 value)
5173 (cdr property))))
5174 (if property (setcdr property value)
5175 (push (cons 'property value) alist)))))
5176 ((equal key "STARTUP")
5177 (let ((startup (assq 'startup alist)))
5178 (if startup
5179 (setcdr startup
5180 (append (cdr startup) (org-split-string value)))
5181 (push (cons 'startup (org-split-string value)) alist))))
5182 ((equal key "TAGS")
5183 (let ((tag-cell (assq 'tags alist)))
5184 (if tag-cell
5185 (setcdr tag-cell
5186 (append (cdr tag-cell)
5187 '("\\n")
5188 (org-split-string value)))
5189 (push (cons 'tags (org-split-string value)) alist))))
5190 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5191 (let ((todo (assq 'todo alist))
5192 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5193 (org-split-string value))))
5194 (if todo (push value (cdr todo))
5195 (push (list 'todo value) alist))))
5196 ((equal key "SETUPFILE")
5197 (unless buffer-read-only ; Do not check in Gnus messages.
5198 (let ((f (and (org-string-nw-p value)
5199 (expand-file-name
5200 (org-remove-double-quotes value)))))
5201 (when (and f (file-readable-p f) (not (member f files)))
5202 (with-temp-buffer
5203 (insert-file-contents f)
5204 (setq alist
5205 ;; Fake Org mode to benefit from cache
5206 ;; without recurring needlessly.
5207 (let ((major-mode 'org-mode))
5208 (org--setup-collect-keywords
5209 regexp (cons f files) alist)))))))))))))))
5210 alist)
5212 (defun org--setup-process-tags (tags filetags)
5213 "Precompute variables used for tags.
5214 TAGS is a list of tags and tag group symbols, as strings.
5215 FILETAGS is a list of tags, as strings."
5216 ;; Process the file tags.
5217 (org-set-local 'org-file-tags
5218 (mapcar #'org-add-prop-inherited filetags))
5219 ;; Provide default tags if no local tags are found.
5220 (when (and (not tags) org-tag-alist)
5221 (setq tags
5222 (mapcar (lambda (tag)
5223 (case (car tag)
5224 (:startgroup "{")
5225 (:endgroup "}")
5226 (:startgrouptag "[")
5227 (:endgrouptag "]")
5228 (:grouptags ":")
5229 (:newline "\\n")
5230 (otherwise (concat (car tag)
5231 (and (characterp (cdr tag))
5232 (format "(%c)" (cdr tag)))))))
5233 org-tag-alist)))
5234 ;; Process the tags.
5235 (org-set-local 'org-tag-groups-alist nil)
5236 (org-set-local 'org-tag-alist nil)
5237 (let (group-flag)
5238 (while tags
5239 (let ((e (car tags)))
5240 (setq tags (cdr tags))
5241 (cond
5242 ((equal e "{")
5243 (push '(:startgroup) org-tag-alist)
5244 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5245 ((equal e "}")
5246 (push '(:endgroup) org-tag-alist)
5247 (setq group-flag nil))
5248 ((equal e "[")
5249 (push '(:startgrouptag) org-tag-alist)
5250 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5251 ((equal e "]")
5252 (push '(:endgrouptag) org-tag-alist)
5253 (setq group-flag nil))
5254 ((equal e ":")
5255 (push '(:grouptags) org-tag-alist)
5256 (setq group-flag 'append))
5257 ((equal e "\\n") (push '(:newline) org-tag-alist))
5258 ((string-match
5259 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5260 "\\|{.+?}\\)" ; regular expression
5261 "\\(?:(\\(.\\))\\)?\\'")) e)
5262 (let ((tag (match-string 1 e))
5263 (key (and (match-beginning 2)
5264 (string-to-char (match-string 2 e)))))
5265 (cond ((eq group-flag 'append)
5266 (setcar org-tag-groups-alist
5267 (append (car org-tag-groups-alist) (list tag))))
5268 (group-flag (push (list tag) org-tag-groups-alist)))
5269 ;; Push all tags in groups, no matter if they already exist.
5270 (unless (and (not group-flag) (assoc tag org-tag-alist))
5271 (push (cons tag key) org-tag-alist))))))))
5272 (setq org-tag-alist (nreverse org-tag-alist)))
5274 (defun org-file-contents (file &optional noerror)
5275 "Return the contents of FILE, as a string."
5276 (if (and file (file-readable-p file))
5277 (with-temp-buffer
5278 (insert-file-contents file)
5279 (buffer-string))
5280 (funcall (if noerror 'message 'error)
5281 "Cannot read file \"%s\"%s"
5282 file
5283 (let ((from (buffer-file-name (buffer-base-buffer))))
5284 (if from (concat " (referenced in file \"" from "\")") "")))))
5286 (defun org-extract-log-state-settings (x)
5287 "Extract the log state setting from a TODO keyword string.
5288 This will extract info from a string like \"WAIT(w@/!)\"."
5289 (let (kw key log1 log2)
5290 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5291 (setq kw (match-string 1 x)
5292 key (and (match-end 2) (match-string 2 x))
5293 log1 (and (match-end 3) (match-string 3 x))
5294 log2 (and (match-end 4) (match-string 4 x)))
5295 (and (or log1 log2)
5296 (list kw
5297 (and log1 (if (equal log1 "!") 'time 'note))
5298 (and log2 (if (equal log2 "!") 'time 'note)))))))
5300 (defun org-remove-keyword-keys (list)
5301 "Remove a pair of parenthesis at the end of each string in LIST."
5302 (mapcar (lambda (x)
5303 (if (string-match "(.*)$" x)
5304 (substring x 0 (match-beginning 0))
5306 list))
5308 (defun org-assign-fast-keys (alist)
5309 "Assign fast keys to a keyword-key alist.
5310 Respect keys that are already there."
5311 (let (new e (alt ?0))
5312 (while (setq e (pop alist))
5313 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5314 (cdr e)) ;; Key already assigned.
5315 (push e new)
5316 (let ((clist (string-to-list (downcase (car e))))
5317 (used (append new alist)))
5318 (when (= (car clist) ?@)
5319 (pop clist))
5320 (while (and clist (rassoc (car clist) used))
5321 (pop clist))
5322 (unless clist
5323 (while (rassoc alt used)
5324 (incf alt)))
5325 (push (cons (car e) (or (car clist) alt)) new))))
5326 (nreverse new)))
5328 ;;; Some variables used in various places
5330 (defvar org-window-configuration nil
5331 "Used in various places to store a window configuration.")
5332 (defvar org-selected-window nil
5333 "Used in various places to store a window configuration.")
5334 (defvar org-finish-function nil
5335 "Function to be called when `C-c C-c' is used.
5336 This is for getting out of special buffers like capture.")
5339 ;; FIXME: Occasionally check by commenting these, to make sure
5340 ;; no other functions uses these, forgetting to let-bind them.
5341 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5342 (defvar org-last-state)
5343 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5345 ;; Defined somewhere in this file, but used before definition.
5346 (defvar org-entities) ;; defined in org-entities.el
5347 (defvar org-struct-menu)
5348 (defvar org-org-menu)
5349 (defvar org-tbl-menu)
5351 ;;;; Define the Org-mode
5353 ;; We use a before-change function to check if a table might need
5354 ;; an update.
5355 (defvar org-table-may-need-update t
5356 "Indicates that a table might need an update.
5357 This variable is set by `org-before-change-function'.
5358 `org-table-align' sets it back to nil.")
5359 (defun org-before-change-function (beg end)
5360 "Every change indicates that a table might need an update."
5361 (setq org-table-may-need-update t))
5362 (defvar org-mode-map)
5363 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5364 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5365 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5366 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5367 (defvar org-table-buffer-is-an nil)
5369 (defvar bidi-paragraph-direction)
5370 (defvar buffer-face-mode-face)
5372 (require 'outline)
5373 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5374 (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"))
5375 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5377 ;; Other stuff we need.
5378 (require 'time-date)
5379 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5380 (require 'easymenu)
5381 (require 'overlay)
5383 ;; (require 'org-macs) moved higher up in the file before it is first used
5384 (require 'org-entities)
5385 ;; (require 'org-compat) moved higher up in the file before it is first used
5386 (require 'org-faces)
5387 (require 'org-list)
5388 (require 'org-pcomplete)
5389 (require 'org-src)
5390 (require 'org-footnote)
5391 (require 'org-macro)
5393 ;; babel
5394 (require 'ob)
5396 ;;;###autoload
5397 (define-derived-mode org-mode outline-mode "Org"
5398 "Outline-based notes management and organizer, alias
5399 \"Carsten's outline-mode for keeping track of everything.\"
5401 Org-mode develops organizational tasks around a NOTES file which
5402 contains information about projects as plain text. Org-mode is
5403 implemented on top of outline-mode, which is ideal to keep the content
5404 of large files well structured. It supports ToDo items, deadlines and
5405 time stamps, which magically appear in the diary listing of the Emacs
5406 calendar. Tables are easily created with a built-in table editor.
5407 Plain text URL-like links connect to websites, emails (VM), Usenet
5408 messages (Gnus), BBDB entries, and any files related to the project.
5409 For printing and sharing of notes, an Org-mode file (or a part of it)
5410 can be exported as a structured ASCII or HTML file.
5412 The following commands are available:
5414 \\{org-mode-map}"
5416 ;; Get rid of Outline menus, they are not needed
5417 ;; Need to do this here because define-derived-mode sets up
5418 ;; the keymap so late. Still, it is a waste to call this each time
5419 ;; we switch another buffer into org-mode.
5420 (if (featurep 'xemacs)
5421 (when (boundp 'outline-mode-menu-heading)
5422 ;; Assume this is Greg's port, it uses easymenu
5423 (easy-menu-remove outline-mode-menu-heading)
5424 (easy-menu-remove outline-mode-menu-show)
5425 (easy-menu-remove outline-mode-menu-hide))
5426 (define-key org-mode-map [menu-bar headings] 'undefined)
5427 (define-key org-mode-map [menu-bar hide] 'undefined)
5428 (define-key org-mode-map [menu-bar show] 'undefined))
5430 (org-load-modules-maybe)
5431 (easy-menu-add org-org-menu)
5432 (easy-menu-add org-tbl-menu)
5433 (org-install-agenda-files-menu)
5434 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5435 (add-to-invisibility-spec '(org-cwidth))
5436 (add-to-invisibility-spec '(org-hide-block . t))
5437 (when (featurep 'xemacs)
5438 (org-set-local 'line-move-ignore-invisible t))
5439 (org-set-local 'outline-regexp org-outline-regexp)
5440 (org-set-local 'outline-level 'org-outline-level)
5441 (setq bidi-paragraph-direction 'left-to-right)
5442 (when (and org-ellipsis
5443 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5444 (fboundp 'make-glyph-code))
5445 (unless org-display-table
5446 (setq org-display-table (make-display-table)))
5447 (set-display-table-slot
5448 org-display-table 4
5449 (vconcat (mapcar
5450 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5451 org-ellipsis)))
5452 (if (stringp org-ellipsis) org-ellipsis "..."))))
5453 (setq buffer-display-table org-display-table))
5454 (org-set-regexps-and-options)
5455 (org-set-font-lock-defaults)
5456 (when (and org-tag-faces (not org-tags-special-faces-re))
5457 ;; tag faces set outside customize.... force initialization.
5458 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5459 ;; Calc embedded
5460 (org-set-local 'calc-embedded-open-mode "# ")
5461 ;; Modify a few syntax entries
5462 (modify-syntax-entry ?@ "w")
5463 (modify-syntax-entry ?\" "\"")
5464 (modify-syntax-entry ?\\ "_")
5465 (modify-syntax-entry ?~ "_")
5466 (if org-startup-truncated (setq truncate-lines t))
5467 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5468 (org-set-local 'font-lock-unfontify-region-function
5469 'org-unfontify-region)
5470 ;; Activate before-change-function
5471 (org-set-local 'org-table-may-need-update t)
5472 (org-add-hook 'before-change-functions 'org-before-change-function nil
5473 'local)
5474 ;; Check for running clock before killing a buffer
5475 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5476 ;; Initialize macros templates.
5477 (org-macro-initialize-templates)
5478 ;; Initialize radio targets.
5479 (org-update-radio-target-regexp)
5480 ;; Indentation.
5481 (org-set-local 'indent-line-function 'org-indent-line)
5482 (org-set-local 'indent-region-function 'org-indent-region)
5483 ;; Filling and auto-filling.
5484 (org-setup-filling)
5485 ;; Comments.
5486 (org-setup-comments-handling)
5487 ;; Initialize cache.
5488 (org-element-cache-reset)
5489 ;; Beginning/end of defun
5490 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5491 (org-set-local 'end-of-defun-function
5492 (lambda ()
5493 (if (not (org-at-heading-p))
5494 (org-forward-element)
5495 (org-forward-element)
5496 (forward-char -1))))
5497 ;; Next error for sparse trees
5498 (org-set-local 'next-error-function 'org-occur-next-match)
5499 ;; Make sure dependence stuff works reliably, even for users who set it
5500 ;; too late :-(
5501 (if org-enforce-todo-dependencies
5502 (add-hook 'org-blocker-hook
5503 'org-block-todo-from-children-or-siblings-or-parent)
5504 (remove-hook 'org-blocker-hook
5505 'org-block-todo-from-children-or-siblings-or-parent))
5506 (if org-enforce-todo-checkbox-dependencies
5507 (add-hook 'org-blocker-hook
5508 'org-block-todo-from-checkboxes)
5509 (remove-hook 'org-blocker-hook
5510 'org-block-todo-from-checkboxes))
5512 ;; Align options lines
5513 (org-set-local
5514 'align-mode-rules-list
5515 '((org-in-buffer-settings
5516 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5517 (modes . '(org-mode)))))
5519 ;; Imenu
5520 (org-set-local 'imenu-create-index-function
5521 'org-imenu-get-tree)
5523 ;; Make isearch reveal context
5524 (if (or (featurep 'xemacs)
5525 (not (boundp 'outline-isearch-open-invisible-function)))
5526 ;; Emacs 21 and XEmacs make use of the hook
5527 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5528 ;; Emacs 22 deals with this through a special variable
5529 (org-set-local 'outline-isearch-open-invisible-function
5530 (lambda (&rest ignore) (org-show-context 'isearch))))
5532 ;; Setup the pcomplete hooks
5533 (set (make-local-variable 'pcomplete-command-completion-function)
5534 'org-pcomplete-initial)
5535 (set (make-local-variable 'pcomplete-command-name-function)
5536 'org-command-at-point)
5537 (set (make-local-variable 'pcomplete-default-completion-function)
5538 'ignore)
5539 (set (make-local-variable 'pcomplete-parse-arguments-function)
5540 'org-parse-arguments)
5541 (set (make-local-variable 'pcomplete-termination-string) "")
5542 (when (>= emacs-major-version 23)
5543 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5545 ;; If empty file that did not turn on org-mode automatically, make it to.
5546 (if (and org-insert-mode-line-in-empty-file
5547 (org-called-interactively-p 'any)
5548 (= (point-min) (point-max)))
5549 (insert "# -*- mode: org -*-\n\n"))
5550 (unless org-inhibit-startup
5551 (org-unmodified
5552 (and org-startup-with-beamer-mode (org-beamer-mode))
5553 (when org-startup-align-all-tables
5554 (org-table-map-tables 'org-table-align 'quietly))
5555 (when org-startup-with-inline-images
5556 (org-display-inline-images))
5557 (when org-startup-with-latex-preview
5558 (org-toggle-latex-fragment))
5559 (unless org-inhibit-startup-visibility-stuff
5560 (org-set-startup-visibility))
5561 (org-refresh-effort-properties)))
5562 ;; Try to set org-hide correctly
5563 (let ((foreground (org-find-invisible-foreground)))
5564 (if foreground
5565 (set-face-foreground 'org-hide foreground))))
5567 ;; Update `customize-package-emacs-version-alist'
5568 (add-to-list 'customize-package-emacs-version-alist
5569 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5570 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5571 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5573 (defvar org-mode-transpose-word-syntax-table
5574 (let ((st (make-syntax-table text-mode-syntax-table)))
5575 (mapc (lambda(c) (modify-syntax-entry
5576 (string-to-char (car c)) "w p" st))
5577 org-emphasis-alist)
5578 st))
5580 (when (fboundp 'abbrev-table-put)
5581 (abbrev-table-put org-mode-abbrev-table
5582 :parents (list text-mode-abbrev-table)))
5584 (defun org-find-invisible-foreground ()
5585 (let ((candidates (remove
5586 "unspecified-bg"
5587 (nconc
5588 (list (face-background 'default)
5589 (face-background 'org-default))
5590 (mapcar
5591 (lambda (alist)
5592 (when (boundp alist)
5593 (cdr (assoc 'background-color (symbol-value alist)))))
5594 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5595 (list (face-foreground 'org-hide))))))
5596 (car (remove nil candidates))))
5598 (defun org-current-time (&optional rounding-minutes past)
5599 "Current time, possibly rounded to ROUNDING-MINUTES.
5600 When ROUNDING-MINUTES is not an integer, fall back on the car of
5601 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5602 the rounding returns a past time."
5603 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5604 (car org-time-stamp-rounding-minutes)))
5605 (time (decode-time)) res)
5606 (if (< r 1)
5607 (current-time)
5608 (setq res
5609 (apply 'encode-time
5610 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5611 (nthcdr 2 time))))
5612 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5613 (seconds-to-time (- (org-float-time res) (* r 60)))
5614 res))))
5616 (defun org-today ()
5617 "Return today date, considering `org-extend-today-until'."
5618 (time-to-days
5619 (time-subtract (current-time)
5620 (list 0 (* 3600 org-extend-today-until) 0))))
5622 ;;;; Font-Lock stuff, including the activators
5624 (defvar org-mouse-map (make-sparse-keymap))
5625 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5626 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5627 (when org-mouse-1-follows-link
5628 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5629 (when org-tab-follows-link
5630 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5631 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5633 (require 'font-lock)
5635 (defconst org-non-link-chars "]\t\n\r<>")
5636 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5637 "file+sys" "news" "shell" "elisp" "doi" "message"
5638 "help"))
5639 (defvar org-link-types-re nil
5640 "Matches a link that has a url-like prefix like \"http:\"")
5641 (defvar org-link-re-with-space nil
5642 "Matches a link with spaces, optional angular brackets around it.")
5643 (defvar org-link-re-with-space2 nil
5644 "Matches a link with spaces, optional angular brackets around it.")
5645 (defvar org-link-re-with-space3 nil
5646 "Matches a link with spaces, only for internal part in bracket links.")
5647 (defvar org-angle-link-re nil
5648 "Matches link with angular brackets, spaces are allowed.")
5649 (defvar org-plain-link-re nil
5650 "Matches plain link, without spaces.")
5651 (defvar org-bracket-link-regexp nil
5652 "Matches a link in double brackets.")
5653 (defvar org-bracket-link-analytic-regexp nil
5654 "Regular expression used to analyze links.
5655 Here is what the match groups contain after a match:
5656 1: http:
5657 2: http
5658 3: path
5659 4: [desc]
5660 5: desc")
5661 (defvar org-bracket-link-analytic-regexp++ nil
5662 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5663 (defvar org-any-link-re nil
5664 "Regular expression matching any link.")
5666 (defconst org-match-sexp-depth 3
5667 "Number of stacked braces for sub/superscript matching.")
5669 (defun org-create-multibrace-regexp (left right n)
5670 "Create a regular expression which will match a balanced sexp.
5671 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5672 as single character strings.
5673 The regexp returned will match the entire expression including the
5674 delimiters. It will also define a single group which contains the
5675 match except for the outermost delimiters. The maximum depth of
5676 stacked delimiters is N. Escaping delimiters is not possible."
5677 (let* ((nothing (concat "[^" left right "]*?"))
5678 (or "\\|")
5679 (re nothing)
5680 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5681 (while (> n 1)
5682 (setq n (1- n)
5683 re (concat re or next)
5684 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5685 (concat left "\\(" re "\\)" right)))
5687 (defconst org-match-substring-regexp
5688 (concat
5689 "\\(\\S-\\)\\([_^]\\)\\("
5690 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5691 "\\|"
5692 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5693 "\\|"
5694 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5695 "The regular expression matching a sub- or superscript.")
5697 (defconst org-match-substring-with-braces-regexp
5698 (concat
5699 "\\(\\S-\\)\\([_^]\\)"
5700 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5701 "The regular expression matching a sub- or superscript, forcing braces.")
5703 (defun org-make-link-regexps ()
5704 "Update the link regular expressions.
5705 This should be called after the variable `org-link-types' has changed."
5706 (let ((types-re (regexp-opt org-link-types t)))
5707 (setq org-link-types-re
5708 (concat "\\`" types-re ":")
5709 org-link-re-with-space
5710 (concat "<?" types-re ":"
5711 "\\([^" org-non-link-chars " ]"
5712 "[^" org-non-link-chars "]*"
5713 "[^" org-non-link-chars " ]\\)>?")
5714 org-link-re-with-space2
5715 (concat "<?" types-re ":"
5716 "\\([^" org-non-link-chars " ]"
5717 "[^\t\n\r]*"
5718 "[^" org-non-link-chars " ]\\)>?")
5719 org-link-re-with-space3
5720 (concat "<?" types-re ":"
5721 "\\([^" org-non-link-chars " ]"
5722 "[^\t\n\r]*\\)")
5723 org-angle-link-re
5724 (concat "<" types-re ":"
5725 "\\([^" org-non-link-chars " ]"
5726 "[^" org-non-link-chars "]*"
5727 "\\)>")
5728 org-plain-link-re
5729 (concat
5730 "\\<" types-re ":"
5731 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5732 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5733 org-bracket-link-regexp
5734 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5735 org-bracket-link-analytic-regexp
5736 (concat
5737 "\\[\\["
5738 "\\(" types-re ":\\)?"
5739 "\\([^]]+\\)"
5740 "\\]"
5741 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5742 "\\]")
5743 org-bracket-link-analytic-regexp++
5744 (concat
5745 "\\[\\["
5746 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5747 "\\([^]]+\\)"
5748 "\\]"
5749 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5750 "\\]")
5751 org-any-link-re
5752 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5753 org-angle-link-re "\\)\\|\\("
5754 org-plain-link-re "\\)"))))
5756 (org-make-link-regexps)
5758 (defvar org-emph-face nil)
5760 (defun org-do-emphasis-faces (limit)
5761 "Run through the buffer and emphasize strings."
5762 (let (rtn a)
5763 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5764 (let* ((border (char-after (match-beginning 3)))
5765 (bre (regexp-quote (char-to-string border))))
5766 (if (and (not (= border (char-after (match-beginning 4))))
5767 (not (save-match-data
5768 (string-match (concat bre ".*" bre)
5769 (replace-regexp-in-string
5770 "\n" " "
5771 (substring (match-string 2) 1 -1))))))
5772 (progn
5773 (setq rtn t)
5774 (setq a (assoc (match-string 3) org-emphasis-alist))
5775 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5776 'face
5777 (nth 1 a))
5778 (and (nth 2 a)
5779 (org-remove-flyspell-overlays-in
5780 (match-beginning 0) (match-end 0)))
5781 (add-text-properties (match-beginning 2) (match-end 2)
5782 '(font-lock-multiline t org-emphasis t))
5783 (when org-hide-emphasis-markers
5784 (add-text-properties (match-end 4) (match-beginning 5)
5785 '(invisible org-link))
5786 (add-text-properties (match-beginning 3) (match-end 3)
5787 '(invisible org-link))))))
5788 (goto-char (1+ (match-beginning 0))))
5789 rtn))
5791 (defun org-emphasize (&optional char)
5792 "Insert or change an emphasis, i.e. a font like bold or italic.
5793 If there is an active region, change that region to a new emphasis.
5794 If there is no region, just insert the marker characters and position
5795 the cursor between them.
5796 CHAR should be the marker character. If it is a space, it means to
5797 remove the emphasis of the selected region.
5798 If CHAR is not given (for example in an interactive call) it will be
5799 prompted for."
5800 (interactive)
5801 (let ((erc org-emphasis-regexp-components)
5802 (prompt "")
5803 (string "") beg end move c s)
5804 (if (org-region-active-p)
5805 (setq beg (region-beginning) end (region-end)
5806 string (buffer-substring beg end))
5807 (setq move t))
5809 (unless char
5810 (message "Emphasis marker or tag: [%s]"
5811 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5812 (setq char (read-char-exclusive)))
5813 (if (equal char ?\ )
5814 (setq s "" move nil)
5815 (unless (assoc (char-to-string char) org-emphasis-alist)
5816 (user-error "No such emphasis marker: \"%c\"" char))
5817 (setq s (char-to-string char)))
5818 (while (and (> (length string) 1)
5819 (equal (substring string 0 1) (substring string -1))
5820 (assoc (substring string 0 1) org-emphasis-alist))
5821 (setq string (substring string 1 -1)))
5822 (setq string (concat s string s))
5823 (if beg (delete-region beg end))
5824 (unless (or (bolp)
5825 (string-match (concat "[" (nth 0 erc) "\n]")
5826 (char-to-string (char-before (point)))))
5827 (insert " "))
5828 (unless (or (eobp)
5829 (string-match (concat "[" (nth 1 erc) "\n]")
5830 (char-to-string (char-after (point)))))
5831 (insert " ") (backward-char 1))
5832 (insert string)
5833 (and move (backward-char 1))))
5835 (defconst org-nonsticky-props
5836 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5838 (defsubst org-rear-nonsticky-at (pos)
5839 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5841 (defun org-activate-plain-links (limit)
5842 "Add link properties for plain links."
5843 (let (f hl)
5844 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5845 (not (member 'org-tag
5846 (get-text-property (1- (match-beginning 0)) 'face)))
5847 (not (org-in-src-block-p)))
5848 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5849 (setq f (get-text-property (match-beginning 0) 'face))
5850 (setq hl (org-match-string-no-properties 0))
5851 (if (or (eq f 'org-tag)
5852 (and (listp f) (memq 'org-tag f)))
5854 (add-text-properties (match-beginning 0) (match-end 0)
5855 (list 'mouse-face 'highlight
5856 'face 'org-link
5857 'htmlize-link `(:uri ,hl)
5858 'keymap org-mouse-map))
5859 (org-rear-nonsticky-at (match-end 0)))
5860 t)))
5862 (defun org-activate-code (limit)
5863 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5864 (progn
5865 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5866 (remove-text-properties (match-beginning 0) (match-end 0)
5867 '(display t invisible t intangible t))
5868 t)))
5870 (defcustom org-src-fontify-natively t
5871 "When non-nil, fontify code in code blocks."
5872 :type 'boolean
5873 :version "24.4"
5874 :package-version '(Org . "8.3")
5875 :group 'org-appearance
5876 :group 'org-babel)
5878 (defcustom org-allow-promoting-top-level-subtree nil
5879 "When non-nil, allow promoting a top level subtree.
5880 The leading star of the top level headline will be replaced
5881 by a #."
5882 :type 'boolean
5883 :version "24.1"
5884 :group 'org-appearance)
5886 (defun org-fontify-meta-lines-and-blocks (limit)
5887 (condition-case nil
5888 (org-fontify-meta-lines-and-blocks-1 limit)
5889 (error (message "org-mode fontification error"))))
5891 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5892 "Fontify #+ lines and blocks."
5893 (let ((case-fold-search t))
5894 (if (re-search-forward
5895 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5896 limit t)
5897 (let ((beg (match-beginning 0))
5898 (block-start (match-end 0))
5899 (block-end nil)
5900 (lang (match-string 7))
5901 (beg1 (line-beginning-position 2))
5902 (dc1 (downcase (match-string 2)))
5903 (dc3 (downcase (match-string 3)))
5904 end end1 quoting block-type ovl)
5905 (cond
5906 ((and (match-end 4) (equal dc3 "+begin"))
5907 ;; Truly a block
5908 (setq block-type (downcase (match-string 5))
5909 quoting (member block-type org-protecting-blocks))
5910 (when (re-search-forward
5911 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5912 nil t) ;; on purpose, we look further than LIMIT
5913 (setq end (min (point-max) (match-end 0))
5914 end1 (min (point-max) (1- (match-beginning 0))))
5915 (setq block-end (match-beginning 0))
5916 (when quoting
5917 (org-remove-flyspell-overlays-in beg1 end1)
5918 (remove-text-properties beg end
5919 '(display t invisible t intangible t)))
5920 (add-text-properties
5921 beg end '(font-lock-fontified t font-lock-multiline t))
5922 (add-text-properties beg beg1 '(face org-meta-line))
5923 (org-remove-flyspell-overlays-in beg beg1)
5924 (add-text-properties ; For end_src
5925 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5926 (org-remove-flyspell-overlays-in end1 end)
5927 (cond
5928 ((and lang (not (string= lang "")) org-src-fontify-natively)
5929 (org-src-font-lock-fontify-block lang block-start block-end)
5930 (add-text-properties beg1 block-end '(src-block t)))
5931 (quoting
5932 (add-text-properties beg1 (min (point-max) (1+ end1))
5933 '(face org-block))) ; end of source block
5934 ((not org-fontify-quote-and-verse-blocks))
5935 ((string= block-type "quote")
5936 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5937 ((string= block-type "verse")
5938 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5939 (add-text-properties beg beg1 '(face org-block-begin-line))
5940 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5941 '(face org-block-end-line))
5943 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5944 (org-remove-flyspell-overlays-in
5945 (match-beginning 0)
5946 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5947 (add-text-properties
5948 beg (match-end 3)
5949 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5950 '(font-lock-fontified t invisible t)
5951 '(font-lock-fontified t face org-document-info-keyword)))
5952 (add-text-properties
5953 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5954 (if (string-equal dc1 "+title:")
5955 '(font-lock-fontified t face org-document-title)
5956 '(font-lock-fontified t face org-document-info))))
5957 ((equal dc1 "+caption:")
5958 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5959 (remove-text-properties (match-beginning 0) (match-end 0)
5960 '(display t invisible t intangible t))
5961 (add-text-properties (match-beginning 1) (match-end 3)
5962 '(font-lock-fontified t face org-meta-line))
5963 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5964 '(font-lock-fontified t face org-block))
5966 ((member dc3 '(" " ""))
5967 (org-remove-flyspell-overlays-in beg (match-end 0))
5968 (add-text-properties
5969 beg (match-end 0)
5970 '(font-lock-fontified t face font-lock-comment-face)))
5971 (t ;; just any other in-buffer setting, but not indented
5972 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5973 (remove-text-properties (match-beginning 0) (match-end 0)
5974 '(display t invisible t intangible t))
5975 (add-text-properties beg (match-end 0)
5976 '(font-lock-fontified t face org-meta-line))
5977 t))))))
5979 (defun org-fontify-drawers (limit)
5980 "Fontify drawers."
5981 (when (re-search-forward org-drawer-regexp limit t)
5982 (add-text-properties
5983 (match-beginning 0) (match-end 0)
5984 '(font-lock-fontified t face org-special-keyword))
5985 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5988 (defun org-fontify-macros (limit)
5989 "Fontify macros."
5990 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5991 (add-text-properties
5992 (match-beginning 0) (match-end 0)
5993 '(font-lock-fontified t face org-macro))
5994 (when org-hide-macro-markers
5995 (add-text-properties (match-end 2) (match-beginning 2)
5996 '(invisible t))
5997 (add-text-properties (match-beginning 1) (match-end 1)
5998 '(invisible t)))
5999 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6002 (defun org-activate-angle-links (limit)
6003 "Add text properties for angle links."
6004 (if (and (re-search-forward org-angle-link-re limit t)
6005 (not (org-in-src-block-p)))
6006 (progn
6007 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6008 (add-text-properties (match-beginning 0) (match-end 0)
6009 (list 'mouse-face 'highlight
6010 'keymap org-mouse-map))
6011 (org-rear-nonsticky-at (match-end 0))
6012 t)))
6014 (defun org-activate-footnote-links (limit)
6015 "Add text properties for footnotes."
6016 (let ((fn (org-footnote-next-reference-or-definition limit)))
6017 (when fn
6018 (let* ((beg (nth 1 fn))
6019 (end (nth 2 fn))
6020 (label (car fn))
6021 (referencep (/= (line-beginning-position) beg)))
6022 (when (and referencep (nth 3 fn))
6023 (save-excursion
6024 (goto-char beg)
6025 (search-forward (or label "fn:"))
6026 (org-remove-flyspell-overlays-in beg (match-end 0))))
6027 (add-text-properties beg end
6028 (list 'mouse-face 'highlight
6029 'keymap org-mouse-map
6030 'help-echo
6031 (if referencep "Footnote reference"
6032 "Footnote definition")
6033 'font-lock-fontified t
6034 'font-lock-multiline t
6035 'face 'org-footnote))))))
6037 (defun org-activate-bracket-links (limit)
6038 "Add text properties for bracketed links."
6039 (if (and (re-search-forward org-bracket-link-regexp limit t)
6040 (not (org-in-src-block-p)))
6041 (let* ((hl (org-match-string-no-properties 1))
6042 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6043 (ip (org-maybe-intangible
6044 (list 'invisible 'org-link
6045 'keymap org-mouse-map 'mouse-face 'highlight
6046 'font-lock-multiline t 'help-echo help
6047 'htmlize-link `(:uri ,hl))))
6048 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6049 'font-lock-multiline t 'help-echo help
6050 'htmlize-link `(:uri ,hl))))
6051 ;; We need to remove the invisible property here. Table narrowing
6052 ;; may have made some of this invisible.
6053 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6054 (remove-text-properties (match-beginning 0) (match-end 0)
6055 '(invisible nil))
6056 (if (match-end 3)
6057 (progn
6058 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6059 (org-rear-nonsticky-at (match-beginning 3))
6060 (add-text-properties (match-beginning 3) (match-end 3) vp)
6061 (org-rear-nonsticky-at (match-end 3))
6062 (add-text-properties (match-end 3) (match-end 0) ip)
6063 (org-rear-nonsticky-at (match-end 0)))
6064 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6065 (org-rear-nonsticky-at (match-beginning 1))
6066 (add-text-properties (match-beginning 1) (match-end 1) vp)
6067 (org-rear-nonsticky-at (match-end 1))
6068 (add-text-properties (match-end 1) (match-end 0) ip)
6069 (org-rear-nonsticky-at (match-end 0)))
6070 t)))
6072 (defun org-activate-dates (limit)
6073 "Add text properties for dates."
6074 (if (and (re-search-forward org-tsr-regexp-both limit t)
6075 (not (equal (char-before (match-beginning 0)) 91)))
6076 (progn
6077 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6078 (add-text-properties (match-beginning 0) (match-end 0)
6079 (list 'mouse-face 'highlight
6080 'keymap org-mouse-map))
6081 (org-rear-nonsticky-at (match-end 0))
6082 (when org-display-custom-times
6083 (if (match-end 3)
6084 (org-display-custom-time (match-beginning 3) (match-end 3)))
6085 (org-display-custom-time (match-beginning 1) (match-end 1)))
6086 t)))
6088 (defvar org-target-link-regexp nil
6089 "Regular expression matching radio targets in plain text.")
6090 (make-variable-buffer-local 'org-target-link-regexp)
6092 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6093 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6094 border border border))
6095 "Regular expression matching a link target.")
6097 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6098 "Regular expression matching a radio target.")
6100 (defconst org-any-target-regexp
6101 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6102 "Regular expression matching any target.")
6104 (defun org-activate-target-links (limit)
6105 "Add text properties for target matches."
6106 (when org-target-link-regexp
6107 (let ((case-fold-search t))
6108 (if (re-search-forward org-target-link-regexp limit t)
6109 (progn
6110 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6111 (add-text-properties (match-beginning 1) (match-end 1)
6112 (list 'mouse-face 'highlight
6113 'keymap org-mouse-map
6114 'help-echo "Radio target link"
6115 'org-linked-text t))
6116 (org-rear-nonsticky-at (match-end 1))
6117 t)))))
6119 (defun org-update-radio-target-regexp ()
6120 "Find all radio targets in this file and update the regular expression.
6121 Also refresh fontification if needed."
6122 (interactive)
6123 (let ((old-regexp org-target-link-regexp)
6124 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6125 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6126 (targets
6127 (org-with-wide-buffer
6128 (goto-char (point-min))
6129 (let (rtn)
6130 (while (re-search-forward org-radio-target-regexp nil t)
6131 ;; Make sure point is really within the object.
6132 (backward-char)
6133 (let ((obj (org-element-context)))
6134 (when (eq (org-element-type obj) 'radio-target)
6135 (add-to-list 'rtn (org-element-property :value obj)))))
6136 rtn))))
6137 (setq org-target-link-regexp
6138 (and targets
6139 (concat before-re
6140 (mapconcat
6141 (lambda (x)
6142 (replace-regexp-in-string
6143 " +" "\\s-+" (regexp-quote x) t t))
6144 targets
6145 "\\|")
6146 after-re)))
6147 (unless (equal old-regexp org-target-link-regexp)
6148 ;; Clean-up cache.
6149 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6150 ((not org-target-link-regexp) old-regexp)
6152 (concat before-re
6153 (mapconcat
6154 (lambda (re)
6155 (substring re (length before-re)
6156 (- (length after-re))))
6157 (list old-regexp org-target-link-regexp)
6158 "\\|")
6159 after-re)))))
6160 (org-with-wide-buffer
6161 (goto-char (point-min))
6162 (while (re-search-forward regexp nil t)
6163 (org-element-cache-refresh (match-beginning 1)))))
6164 ;; Re fontify buffer.
6165 (when (memq 'radio org-highlight-links)
6166 (org-restart-font-lock)))))
6168 (defun org-hide-wide-columns (limit)
6169 (let (s e)
6170 (setq s (text-property-any (point) (or limit (point-max))
6171 'org-cwidth t))
6172 (when s
6173 (setq e (next-single-property-change s 'org-cwidth))
6174 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6175 (goto-char e)
6176 t)))
6178 (defvar org-latex-and-related-regexp nil
6179 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6181 (defun org-compute-latex-and-related-regexp ()
6182 "Compute regular expression for LaTeX, entities and sub/superscript.
6183 Result depends on variable `org-highlight-latex-and-related'."
6184 (org-set-local
6185 'org-latex-and-related-regexp
6186 (let* ((re-sub
6187 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6188 ((eq org-use-sub-superscripts '{})
6189 (list org-match-substring-with-braces-regexp))
6190 (org-use-sub-superscripts (list org-match-substring-regexp))))
6191 (re-latex
6192 (when (memq 'latex org-highlight-latex-and-related)
6193 (let ((matchers (plist-get org-format-latex-options :matchers)))
6194 (delq nil
6195 (mapcar (lambda (x)
6196 (and (member (car x) matchers) (nth 1 x)))
6197 org-latex-regexps)))))
6198 (re-entities
6199 (when (memq 'entities org-highlight-latex-and-related)
6200 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6201 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6203 (defun org-do-latex-and-related (limit)
6204 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6205 LIMIT bounds the search for syntax to highlight. Stop at first
6206 highlighted object, if any. Return t if some highlighting was
6207 done, nil otherwise."
6208 (when (org-string-nw-p org-latex-and-related-regexp)
6209 (catch 'found
6210 (while (re-search-forward org-latex-and-related-regexp limit t)
6211 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6212 'face))
6213 '(org-code org-verbatim underline))
6214 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6215 '(?_ ?^))
6217 0)))
6218 (font-lock-prepend-text-property
6219 (+ offset (match-beginning 0)) (match-end 0)
6220 'face 'org-latex-and-related)
6221 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6222 '(font-lock-multiline t)))
6223 (throw 'found t)))
6224 nil)))
6226 (defun org-restart-font-lock ()
6227 "Restart `font-lock-mode', to force refontification."
6228 (when (and (boundp 'font-lock-mode) font-lock-mode)
6229 (font-lock-mode -1)
6230 (font-lock-mode 1)))
6232 (defun org-activate-tags (limit)
6233 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6234 (progn
6235 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6236 (add-text-properties (match-beginning 1) (match-end 1)
6237 (list 'mouse-face 'highlight
6238 'keymap org-mouse-map))
6239 (org-rear-nonsticky-at (match-end 1))
6240 t)))
6242 (defun org-outline-level ()
6243 "Compute the outline level of the heading at point.
6245 If this is called at a normal headline, the level is the number
6246 of stars. Use `org-reduced-level' to remove the effect of
6247 `org-odd-levels'. Unlike to `org-current-level', this function
6248 takes into consideration inlinetasks."
6249 (org-with-wide-buffer
6250 (end-of-line)
6251 (if (re-search-backward org-outline-regexp-bol nil t)
6252 (1- (- (match-end 0) (match-beginning 0)))
6253 0)))
6255 (defvar org-font-lock-keywords nil)
6257 (defsubst org-re-property (property &optional literal allow-null value)
6258 "Return a regexp matching a PROPERTY line.
6260 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6261 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6262 non-nil, match properties even without a value.
6264 Match group 3 is set to the value when it exists. If there is no
6265 value and ALLOW-NULL is non-nil, it is set to the empty string.
6267 With optional argument VALUE, match only property lines with
6268 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6269 unless LITERAL is non-nil."
6270 (concat
6271 "^\\(?4:[ \t]*\\)"
6272 (format "\\(?1::\\(?2:%s\\):\\)"
6273 (if literal property (regexp-quote property)))
6274 (cond (value
6275 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6276 (if literal value (regexp-quote value))))
6277 (allow-null
6278 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6280 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6282 (defconst org-property-re
6283 (org-re-property "\\S-+" 'literal t)
6284 "Regular expression matching a property line.
6285 There are four matching groups:
6286 1: :PROPKEY: including the leading and trailing colon,
6287 2: PROPKEY without the leading and trailing colon,
6288 3: PROPVAL without leading or trailing spaces,
6289 4: the indentation of the current line,
6290 5: trailing whitespace.")
6292 (defvar org-font-lock-hook nil
6293 "Functions to be called for special font lock stuff.")
6295 (defvar org-font-lock-set-keywords-hook nil
6296 "Functions that can manipulate `org-font-lock-extra-keywords'.
6297 This is called after `org-font-lock-extra-keywords' is defined, but before
6298 it is installed to be used by font lock. This can be useful if something
6299 needs to be inserted at a specific position in the font-lock sequence.")
6301 (defun org-font-lock-hook (limit)
6302 "Run `org-font-lock-hook' within LIMIT."
6303 (run-hook-with-args 'org-font-lock-hook limit))
6305 (defun org-set-font-lock-defaults ()
6306 "Set font lock defaults for the current buffer."
6307 (let* ((em org-fontify-emphasized-text)
6308 (lk org-highlight-links)
6309 (org-font-lock-extra-keywords
6310 (list
6311 ;; Call the hook
6312 '(org-font-lock-hook)
6313 ;; Headlines
6314 `(,(if org-fontify-whole-heading-line
6315 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6316 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6317 (1 (org-get-level-face 1))
6318 (2 (org-get-level-face 2))
6319 (3 (org-get-level-face 3)))
6320 ;; Table lines
6321 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6322 (1 'org-table t))
6323 ;; Table internals
6324 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6325 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6326 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6327 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6328 ;; Drawers
6329 '(org-fontify-drawers)
6330 ;; Properties
6331 (list org-property-re
6332 '(1 'org-special-keyword t)
6333 '(3 'org-property-value t))
6334 ;; Links
6335 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6336 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6337 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6338 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6339 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6340 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6341 (if (memq 'footnote lk) '(org-activate-footnote-links))
6342 ;; Targets.
6343 (list org-any-target-regexp '(0 'org-target t))
6344 ;; Diary sexps.
6345 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6346 ;; Macro
6347 '(org-fontify-macros)
6348 '(org-hide-wide-columns (0 nil append))
6349 ;; TODO keyword
6350 (list (format org-heading-keyword-regexp-format
6351 org-todo-regexp)
6352 '(2 (org-get-todo-face 2) t))
6353 ;; DONE
6354 (if org-fontify-done-headline
6355 (list (format org-heading-keyword-regexp-format
6356 (concat
6357 "\\(?:"
6358 (mapconcat 'regexp-quote org-done-keywords "\\|")
6359 "\\)"))
6360 '(2 'org-headline-done t))
6361 nil)
6362 ;; Priorities
6363 '(org-font-lock-add-priority-faces)
6364 ;; Tags
6365 '(org-font-lock-add-tag-faces)
6366 ;; Tags groups
6367 (if (and org-group-tags org-tag-groups-alist)
6368 (list (concat org-outline-regexp-bol ".+\\(:"
6369 (regexp-opt (mapcar 'car org-tag-groups-alist))
6370 ":\\).*$")
6371 '(1 'org-tag-group prepend)))
6372 ;; Special keywords
6373 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6374 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6375 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6376 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6377 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6378 ;; Emphasis
6379 (if em
6380 (if (featurep 'xemacs)
6381 '(org-do-emphasis-faces (0 nil append))
6382 '(org-do-emphasis-faces)))
6383 ;; Checkboxes
6384 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6385 1 'org-checkbox prepend)
6386 (if (cdr (assq 'checkbox org-list-automatic-rules))
6387 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6388 (0 (org-get-checkbox-statistics-face) t)))
6389 ;; Description list items
6390 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6391 1 'org-list-dt prepend)
6392 ;; ARCHIVEd headings
6393 (list (concat
6394 org-outline-regexp-bol
6395 "\\(.*:" org-archive-tag ":.*\\)")
6396 '(1 'org-archived prepend))
6397 ;; Specials
6398 '(org-do-latex-and-related)
6399 '(org-fontify-entities)
6400 '(org-raise-scripts)
6401 ;; Code
6402 '(org-activate-code (1 'org-code t))
6403 ;; COMMENT
6404 (list (format
6405 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6406 org-todo-regexp
6407 org-comment-string)
6408 '(9 'org-special-keyword t))
6409 ;; Blocks and meta lines
6410 '(org-fontify-meta-lines-and-blocks))))
6411 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6412 (run-hooks 'org-font-lock-set-keywords-hook)
6413 ;; Now set the full font-lock-keywords
6414 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6415 (org-set-local 'font-lock-defaults
6416 '(org-font-lock-keywords t nil nil backward-paragraph))
6417 (kill-local-variable 'font-lock-keywords) nil))
6419 (defun org-toggle-pretty-entities ()
6420 "Toggle the composition display of entities as UTF8 characters."
6421 (interactive)
6422 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6423 (org-restart-font-lock)
6424 (if org-pretty-entities
6425 (message "Entities are now displayed as UTF8 characters")
6426 (save-restriction
6427 (widen)
6428 (org-decompose-region (point-min) (point-max))
6429 (message "Entities are now displayed as plain text"))))
6431 (defvar org-custom-properties-overlays nil
6432 "List of overlays used for custom properties.")
6433 (make-variable-buffer-local 'org-custom-properties-overlays)
6435 (defun org-toggle-custom-properties-visibility ()
6436 "Display or hide properties in `org-custom-properties'."
6437 (interactive)
6438 (if org-custom-properties-overlays
6439 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6440 (setq org-custom-properties-overlays nil))
6441 (when org-custom-properties
6442 (org-with-wide-buffer
6443 (goto-char (point-min))
6444 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6445 (while (re-search-forward regexp nil t)
6446 (let ((end (cdr (save-match-data (org-get-property-block)))))
6447 (when (and end (< (point) end))
6448 ;; Hide first custom property in current drawer.
6449 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6450 (overlay-put o 'invisible t)
6451 (overlay-put o 'org-custom-property t)
6452 (push o org-custom-properties-overlays))
6453 ;; Hide additional custom properties in the same drawer.
6454 (while (re-search-forward regexp end t)
6455 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6456 (overlay-put o 'invisible t)
6457 (overlay-put o 'org-custom-property t)
6458 (push o org-custom-properties-overlays)))))
6459 ;; Each entry is limited to a single property drawer.
6460 (outline-next-heading)))))))
6462 (defun org-fontify-entities (limit)
6463 "Find an entity to fontify."
6464 (let (ee)
6465 (when org-pretty-entities
6466 (catch 'match
6467 ;; "\_ "-family is left out on purpose. Only the first one,
6468 ;; i.e., "\_ ", could be fontified anyway, and it would be
6469 ;; confusing when adding a second white space character.
6470 (while (re-search-forward
6471 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6472 limit t)
6473 (if (and (not (org-at-comment-p))
6474 (setq ee (org-entity-get (match-string 1)))
6475 (= (length (nth 6 ee)) 1))
6476 (let*
6477 ((end (if (equal (match-string 2) "{}")
6478 (match-end 2)
6479 (match-end 1))))
6480 (add-text-properties
6481 (match-beginning 0) end
6482 (list 'font-lock-fontified t))
6483 (compose-region (match-beginning 0) end
6484 (nth 6 ee) nil)
6485 (backward-char 1)
6486 (throw 'match t))))
6487 nil))))
6489 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6490 "Fontify string S like in Org-mode."
6491 (with-temp-buffer
6492 (insert s)
6493 (let ((org-odd-levels-only odd-levels))
6494 (org-mode)
6495 (font-lock-ensure)
6496 (buffer-string))))
6498 (defvar org-m nil)
6499 (defvar org-l nil)
6500 (defvar org-f nil)
6501 (defun org-get-level-face (n)
6502 "Get the right face for match N in font-lock matching of headlines."
6503 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6504 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6505 (if org-cycle-level-faces
6506 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6507 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6508 (cond
6509 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6510 ((eq n 2) org-f)
6511 (t (if org-level-color-stars-only nil org-f))))
6514 (defun org-get-todo-face (kwd)
6515 "Get the right face for a TODO keyword KWD.
6516 If KWD is a number, get the corresponding match group."
6517 (if (numberp kwd) (setq kwd (match-string kwd)))
6518 (or (org-face-from-face-or-color
6519 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6520 (and (member kwd org-done-keywords) 'org-done)
6521 'org-todo))
6523 (defun org-face-from-face-or-color (context inherit face-or-color)
6524 "Create a face list that inherits INHERIT, but sets the foreground color.
6525 When FACE-OR-COLOR is not a string, just return it."
6526 (if (stringp face-or-color)
6527 (list :inherit inherit
6528 (cdr (assoc context org-faces-easy-properties))
6529 face-or-color)
6530 face-or-color))
6532 (defun org-font-lock-add-tag-faces (limit)
6533 "Add the special tag faces."
6534 (when (and org-tag-faces org-tags-special-faces-re)
6535 (while (re-search-forward org-tags-special-faces-re limit t)
6536 (add-text-properties (match-beginning 1) (match-end 1)
6537 (list 'face (org-get-tag-face 1)
6538 'font-lock-fontified t))
6539 (backward-char 1))))
6541 (defun org-font-lock-add-priority-faces (limit)
6542 "Add the special priority faces."
6543 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6544 (when (save-match-data (org-at-heading-p))
6545 (add-text-properties
6546 (match-beginning 0) (match-end 0)
6547 (list 'face (or (org-face-from-face-or-color
6548 'priority 'org-priority
6549 (cdr (assoc (char-after (match-beginning 1))
6550 org-priority-faces)))
6551 'org-priority)
6552 'font-lock-fontified t)))))
6554 (defun org-get-tag-face (kwd)
6555 "Get the right face for a TODO keyword KWD.
6556 If KWD is a number, get the corresponding match group."
6557 (if (numberp kwd) (setq kwd (match-string kwd)))
6558 (or (org-face-from-face-or-color
6559 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6560 'org-tag))
6562 (defun org-unfontify-region (beg end &optional maybe_loudly)
6563 "Remove fontification and activation overlays from links."
6564 (font-lock-default-unfontify-region beg end)
6565 (let* ((buffer-undo-list t)
6566 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6567 (inhibit-modification-hooks t)
6568 deactivate-mark buffer-file-name buffer-file-truename)
6569 (org-decompose-region beg end)
6570 (remove-text-properties beg end
6571 '(mouse-face t keymap t org-linked-text t
6572 invisible t intangible t
6573 org-emphasis t))
6574 (org-remove-font-lock-display-properties beg end)))
6576 (defconst org-script-display '(((raise -0.3) (height 0.7))
6577 ((raise 0.3) (height 0.7))
6578 ((raise -0.5))
6579 ((raise 0.5)))
6580 "Display properties for showing superscripts and subscripts.")
6582 (defun org-remove-font-lock-display-properties (beg end)
6583 "Remove specific display properties that have been added by font lock.
6584 The will remove the raise properties that are used to show superscripts
6585 and subscripts."
6586 (let (next prop)
6587 (while (< beg end)
6588 (setq next (next-single-property-change beg 'display nil end)
6589 prop (get-text-property beg 'display))
6590 (if (member prop org-script-display)
6591 (put-text-property beg next 'display nil))
6592 (setq beg next))))
6594 (defun org-raise-scripts (limit)
6595 "Add raise properties to sub/superscripts."
6596 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6597 (if (re-search-forward
6598 (if (eq org-use-sub-superscripts t)
6599 org-match-substring-regexp
6600 org-match-substring-with-braces-regexp)
6601 limit t)
6602 (let* ((pos (point)) table-p comment-p
6603 (mpos (match-beginning 3))
6604 (emph-p (get-text-property mpos 'org-emphasis))
6605 (link-p (get-text-property mpos 'mouse-face))
6606 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6607 (goto-char (point-at-bol))
6608 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6609 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6610 (goto-char pos)
6611 ;; Handle a_b^c
6612 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6613 (if (or comment-p emph-p link-p keyw-p)
6615 (put-text-property (match-beginning 3) (match-end 0)
6616 'display
6617 (if (equal (char-after (match-beginning 2)) ?^)
6618 (nth (if table-p 3 1) org-script-display)
6619 (nth (if table-p 2 0) org-script-display)))
6620 (add-text-properties (match-beginning 2) (match-end 2)
6621 (list 'invisible t
6622 'org-dwidth t 'org-dwidth-n 1))
6623 (if (and (eq (char-after (match-beginning 3)) ?{)
6624 (eq (char-before (match-end 3)) ?}))
6625 (progn
6626 (add-text-properties
6627 (match-beginning 3) (1+ (match-beginning 3))
6628 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6629 (add-text-properties
6630 (1- (match-end 3)) (match-end 3)
6631 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6632 t)))))
6634 ;;;; Visibility cycling, including org-goto and indirect buffer
6636 ;;; Cycling
6638 (defvar org-cycle-global-status nil)
6639 (make-variable-buffer-local 'org-cycle-global-status)
6640 (put 'org-cycle-global-status 'org-state t)
6641 (defvar org-cycle-subtree-status nil)
6642 (make-variable-buffer-local 'org-cycle-subtree-status)
6643 (put 'org-cycle-subtree-status 'org-state t)
6645 (defvar org-inlinetask-min-level)
6647 (defun org-unlogged-message (&rest args)
6648 "Display a message, but avoid logging it in the *Messages* buffer."
6649 (let ((message-log-max nil))
6650 (apply 'message args)))
6652 ;;;###autoload
6653 (defun org-cycle (&optional arg)
6654 "TAB-action and visibility cycling for Org-mode.
6656 This is the command invoked in Org-mode by the TAB key. Its main purpose
6657 is outline visibility cycling, but it also invokes other actions
6658 in special contexts.
6660 - When this function is called with a prefix argument, rotate the entire
6661 buffer through 3 states (global cycling)
6662 1. OVERVIEW: Show only top-level headlines.
6663 2. CONTENTS: Show all headlines of all levels, but no body text.
6664 3. SHOW ALL: Show everything.
6665 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6666 determined by the variable `org-startup-folded', and by any VISIBILITY
6667 properties in the buffer.
6668 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6669 including any drawers.
6671 - When inside a table, re-align the table and move to the next field.
6673 - When point is at the beginning of a headline, rotate the subtree started
6674 by this line through 3 different states (local cycling)
6675 1. FOLDED: Only the main headline is shown.
6676 2. CHILDREN: The main headline and the direct children are shown.
6677 From this state, you can move to one of the children
6678 and zoom in further.
6679 3. SUBTREE: Show the entire subtree, including body text.
6680 If there is no subtree, switch directly from CHILDREN to FOLDED.
6682 - When point is at the beginning of an empty headline and the variable
6683 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6684 of the headline by demoting and promoting it to likely levels. This
6685 speeds up creation document structure by pressing TAB once or several
6686 times right after creating a new headline.
6688 - When there is a numeric prefix, go up to a heading with level ARG, do
6689 a `show-subtree' and return to the previous cursor position. If ARG
6690 is negative, go up that many levels.
6692 - When point is not at the beginning of a headline, execute the global
6693 binding for TAB, which is re-indenting the line. See the option
6694 `org-cycle-emulate-tab' for details.
6696 - Special case: if point is at the beginning of the buffer and there is
6697 no headline in line 1, this function will act as if called with prefix arg
6698 (C-u TAB, same as S-TAB) also when called without prefix arg.
6699 But only if also the variable `org-cycle-global-at-bob' is t."
6700 (interactive "P")
6701 (org-load-modules-maybe)
6702 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6703 (and org-cycle-level-after-item/entry-creation
6704 (or (org-cycle-level)
6705 (org-cycle-item-indentation))))
6706 (let* ((limit-level
6707 (or org-cycle-max-level
6708 (and (boundp 'org-inlinetask-min-level)
6709 org-inlinetask-min-level
6710 (1- org-inlinetask-min-level))))
6711 (nstars (and limit-level
6712 (if org-odd-levels-only
6713 (and limit-level (1- (* limit-level 2)))
6714 limit-level)))
6715 (org-outline-regexp
6716 (if (not (derived-mode-p 'org-mode))
6717 outline-regexp
6718 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6719 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6720 (not (looking-at org-outline-regexp))))
6721 (org-cycle-hook
6722 (if bob-special
6723 (delq 'org-optimize-window-after-visibility-change
6724 (copy-sequence org-cycle-hook))
6725 org-cycle-hook))
6726 (pos (point)))
6728 (if (or bob-special (equal arg '(4)))
6729 ;; special case: use global cycling
6730 (setq arg t))
6732 (cond
6734 ((equal arg '(16))
6735 (setq last-command 'dummy)
6736 (org-set-startup-visibility)
6737 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6739 ((equal arg '(64))
6740 (show-all)
6741 (org-unlogged-message "Entire buffer visible, including drawers"))
6743 ;; Try cdlatex TAB completion
6744 ((org-try-cdlatex-tab))
6746 ;; Table: enter it or move to the next field.
6747 ((org-at-table-p 'any)
6748 (if (org-at-table.el-p)
6749 (message "Use C-c ' to edit table.el tables")
6750 (if arg (org-table-edit-field t)
6751 (org-table-justify-field-maybe)
6752 (call-interactively 'org-table-next-field))))
6754 ((run-hook-with-args-until-success
6755 'org-tab-after-check-for-table-hook))
6757 ;; Global cycling: delegate to `org-cycle-internal-global'.
6758 ((eq arg t) (org-cycle-internal-global))
6760 ;; Drawers: delegate to `org-flag-drawer'.
6761 ((save-excursion
6762 (beginning-of-line 1)
6763 (looking-at org-drawer-regexp))
6764 (org-flag-drawer ; toggle block visibility
6765 (not (get-char-property (match-end 0) 'invisible))))
6767 ;; Show-subtree, ARG levels up from here.
6768 ((integerp arg)
6769 (save-excursion
6770 (org-back-to-heading)
6771 (outline-up-heading (if (< arg 0) (- arg)
6772 (- (funcall outline-level) arg)))
6773 (org-show-subtree)))
6775 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6776 ((and (featurep 'org-inlinetask)
6777 (org-inlinetask-at-task-p)
6778 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6779 (org-inlinetask-toggle-visibility))
6781 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6782 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6783 (save-excursion (move-beginning-of-line 1)
6784 (looking-at org-outline-regexp)))
6785 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6786 (org-cycle-internal-local))
6788 ;; From there: TAB emulation and template completion.
6789 (buffer-read-only (org-back-to-heading))
6791 ((run-hook-with-args-until-success
6792 'org-tab-after-check-for-cycling-hook))
6794 ((org-try-structure-completion))
6796 ((run-hook-with-args-until-success
6797 'org-tab-before-tab-emulation-hook))
6799 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6800 (or (not (bolp))
6801 (not (looking-at org-outline-regexp))))
6802 (call-interactively (global-key-binding "\t")))
6804 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6805 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6806 (or (and (eq org-cycle-emulate-tab 'white)
6807 (= (match-end 0) (point-at-eol)))
6808 (and (eq org-cycle-emulate-tab 'whitestart)
6809 (>= (match-end 0) pos))))
6811 (eq org-cycle-emulate-tab t))
6812 (call-interactively (global-key-binding "\t")))
6814 (t (save-excursion
6815 (org-back-to-heading)
6816 (org-cycle)))))))
6818 (defun org-cycle-internal-global ()
6819 "Do the global cycling action."
6820 ;; Hack to avoid display of messages for .org attachments in Gnus
6821 (let ((ga (string-match "\\*fontification" (buffer-name))))
6822 (cond
6823 ((and (eq last-command this-command)
6824 (eq org-cycle-global-status 'overview))
6825 ;; We just created the overview - now do table of contents
6826 ;; This can be slow in very large buffers, so indicate action
6827 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6828 (unless ga (org-unlogged-message "CONTENTS..."))
6829 (org-content)
6830 (unless ga (org-unlogged-message "CONTENTS...done"))
6831 (setq org-cycle-global-status 'contents)
6832 (run-hook-with-args 'org-cycle-hook 'contents))
6834 ((and (eq last-command this-command)
6835 (eq org-cycle-global-status 'contents))
6836 ;; We just showed the table of contents - now show everything
6837 (run-hook-with-args 'org-pre-cycle-hook 'all)
6838 (show-all)
6839 (unless ga (org-unlogged-message "SHOW ALL"))
6840 (setq org-cycle-global-status 'all)
6841 (run-hook-with-args 'org-cycle-hook 'all))
6844 ;; Default action: go to overview
6845 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6846 (org-overview)
6847 (unless ga (org-unlogged-message "OVERVIEW"))
6848 (setq org-cycle-global-status 'overview)
6849 (run-hook-with-args 'org-cycle-hook 'overview)))))
6851 (defvar org-called-with-limited-levels nil
6852 "Non-nil when `org-with-limited-levels' is currently active.")
6854 (defun org-cycle-internal-local ()
6855 "Do the local cycling action."
6856 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6857 ;; First, determine end of headline (EOH), end of subtree or item
6858 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6859 (save-excursion
6860 (if (org-at-item-p)
6861 (progn
6862 (beginning-of-line)
6863 (setq struct (org-list-struct))
6864 (setq eoh (point-at-eol))
6865 (setq eos (org-list-get-item-end-before-blank (point) struct))
6866 (setq has-children (org-list-has-child-p (point) struct)))
6867 (org-back-to-heading)
6868 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6869 (setq eos (save-excursion (org-end-of-subtree t t)
6870 (when (bolp) (backward-char)) (point)))
6871 (setq has-children
6872 (or (save-excursion
6873 (let ((level (funcall outline-level)))
6874 (outline-next-heading)
6875 (and (org-at-heading-p t)
6876 (> (funcall outline-level) level))))
6877 (save-excursion
6878 (org-list-search-forward (org-item-beginning-re) eos t)))))
6879 ;; Determine end invisible part of buffer (EOL)
6880 (beginning-of-line 2)
6881 ;; XEmacs doesn't have `next-single-char-property-change'
6882 (if (featurep 'xemacs)
6883 (while (and (not (eobp)) ;; this is like `next-line'
6884 (get-char-property (1- (point)) 'invisible))
6885 (beginning-of-line 2))
6886 (while (and (not (eobp)) ;; this is like `next-line'
6887 (get-char-property (1- (point)) 'invisible))
6888 (goto-char (next-single-char-property-change (point) 'invisible))
6889 (and (eolp) (beginning-of-line 2))))
6890 (setq eol (point)))
6891 ;; Find out what to do next and set `this-command'
6892 (cond
6893 ((= eos eoh)
6894 ;; Nothing is hidden behind this heading
6895 (unless (org-before-first-heading-p)
6896 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6897 (org-unlogged-message "EMPTY ENTRY")
6898 (setq org-cycle-subtree-status nil)
6899 (save-excursion
6900 (goto-char eos)
6901 (outline-next-heading)
6902 (if (outline-invisible-p) (org-flag-heading nil))))
6903 ((and (or (>= eol eos)
6904 (not (string-match "\\S-" (buffer-substring eol eos))))
6905 (or has-children
6906 (not (setq children-skipped
6907 org-cycle-skip-children-state-if-no-children))))
6908 ;; Entire subtree is hidden in one line: children view
6909 (unless (org-before-first-heading-p)
6910 (run-hook-with-args 'org-pre-cycle-hook 'children))
6911 (if (org-at-item-p)
6912 (org-list-set-item-visibility (point-at-bol) struct 'children)
6913 (org-show-entry)
6914 (org-with-limited-levels (show-children))
6915 ;; FIXME: This slows down the func way too much.
6916 ;; How keep drawers hidden in subtree anyway?
6917 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6918 ;; (org-cycle-hide-drawers 'subtree))
6920 ;; Fold every list in subtree to top-level items.
6921 (when (eq org-cycle-include-plain-lists 'integrate)
6922 (save-excursion
6923 (org-back-to-heading)
6924 (while (org-list-search-forward (org-item-beginning-re) eos t)
6925 (beginning-of-line 1)
6926 (let* ((struct (org-list-struct))
6927 (prevs (org-list-prevs-alist struct))
6928 (end (org-list-get-bottom-point struct)))
6929 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6930 (org-list-get-all-items (point) struct prevs))
6931 (goto-char (if (< end eos) end eos)))))))
6932 (org-unlogged-message "CHILDREN")
6933 (save-excursion
6934 (goto-char eos)
6935 (outline-next-heading)
6936 (if (outline-invisible-p) (org-flag-heading nil)))
6937 (setq org-cycle-subtree-status 'children)
6938 (unless (org-before-first-heading-p)
6939 (run-hook-with-args 'org-cycle-hook 'children)))
6940 ((or children-skipped
6941 (and (eq last-command this-command)
6942 (eq org-cycle-subtree-status 'children)))
6943 ;; We just showed the children, or no children are there,
6944 ;; now show everything.
6945 (unless (org-before-first-heading-p)
6946 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6947 (outline-flag-region eoh eos nil)
6948 (org-unlogged-message
6949 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6950 (setq org-cycle-subtree-status 'subtree)
6951 (unless (org-before-first-heading-p)
6952 (run-hook-with-args 'org-cycle-hook 'subtree)))
6954 ;; Default action: hide the subtree.
6955 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6956 (outline-flag-region eoh eos t)
6957 (org-unlogged-message "FOLDED")
6958 (setq org-cycle-subtree-status 'folded)
6959 (unless (org-before-first-heading-p)
6960 (run-hook-with-args 'org-cycle-hook 'folded))))))
6962 ;;;###autoload
6963 (defun org-global-cycle (&optional arg)
6964 "Cycle the global visibility. For details see `org-cycle'.
6965 With \\[universal-argument] prefix arg, switch to startup visibility.
6966 With a numeric prefix, show all headlines up to that level."
6967 (interactive "P")
6968 (let ((org-cycle-include-plain-lists
6969 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6970 (cond
6971 ((integerp arg)
6972 (show-all)
6973 (hide-sublevels arg)
6974 (setq org-cycle-global-status 'contents))
6975 ((equal arg '(4))
6976 (org-set-startup-visibility)
6977 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6979 (org-cycle '(4))))))
6981 (defun org-set-startup-visibility ()
6982 "Set the visibility required by startup options and properties."
6983 (cond
6984 ((eq org-startup-folded t)
6985 (org-overview))
6986 ((eq org-startup-folded 'content)
6987 (org-content))
6988 ((or (eq org-startup-folded 'showeverything)
6989 (eq org-startup-folded nil))
6990 (show-all)))
6991 (unless (eq org-startup-folded 'showeverything)
6992 (if org-hide-block-startup (org-hide-block-all))
6993 (org-set-visibility-according-to-property 'no-cleanup)
6994 (org-cycle-hide-archived-subtrees 'all)
6995 (org-cycle-hide-drawers 'all)
6996 (org-cycle-show-empty-lines t)))
6998 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6999 "Switch subtree visibilities according to :VISIBILITY: property."
7000 (interactive)
7001 (let (org-show-entry-below)
7002 (org-with-wide-buffer
7003 (goto-char (point-min))
7004 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7005 (if (not (org-at-property-p)) (outline-next-heading)
7006 (let ((state (match-string 3)))
7007 (save-excursion
7008 (org-back-to-heading t)
7009 (hide-subtree)
7010 (org-reveal)
7011 (cond
7012 ((equal state "folded")
7013 (hide-subtree))
7014 ((equal state "children")
7015 (org-show-hidden-entry)
7016 (show-children))
7017 ((equal state "content")
7018 (save-excursion
7019 (save-restriction
7020 (org-narrow-to-subtree)
7021 (org-content))))
7022 ((member state '("all" "showall"))
7023 (show-subtree)))))))
7024 (unless no-cleanup
7025 (org-cycle-hide-archived-subtrees 'all)
7026 (org-cycle-hide-drawers 'all)
7027 (org-cycle-show-empty-lines 'all)))))
7029 ;; This function uses outline-regexp instead of the more fundamental
7030 ;; org-outline-regexp so that org-cycle-global works outside of Org
7031 ;; buffers, where outline-regexp is needed.
7032 (defun org-overview ()
7033 "Switch to overview mode, showing only top-level headlines.
7034 This shows all headlines with a level equal or greater than the level
7035 of the first headline in the buffer. This is important, because if the
7036 first headline is not level one, then (hide-sublevels 1) gives confusing
7037 results."
7038 (interactive)
7039 (save-excursion
7040 (let ((level
7041 (save-excursion
7042 (goto-char (point-min))
7043 (if (re-search-forward (concat "^" outline-regexp) nil t)
7044 (progn
7045 (goto-char (match-beginning 0))
7046 (funcall outline-level))))))
7047 (and level (hide-sublevels level)))))
7049 (defun org-content (&optional arg)
7050 "Show all headlines in the buffer, like a table of contents.
7051 With numerical argument N, show content up to level N."
7052 (interactive "P")
7053 (org-overview)
7054 (save-excursion
7055 ;; Visit all headings and show their offspring
7056 (and (integerp arg) (org-overview))
7057 (goto-char (point-max))
7058 (catch 'exit
7059 (while (and (progn (condition-case nil
7060 (outline-previous-visible-heading 1)
7061 (error (goto-char (point-min))))
7063 (looking-at org-outline-regexp))
7064 (if (integerp arg)
7065 (show-children (1- arg))
7066 (show-branches))
7067 (if (bobp) (throw 'exit nil))))))
7069 (defun org-optimize-window-after-visibility-change (state)
7070 "Adjust the window after a change in outline visibility.
7071 This function is the default value of the hook `org-cycle-hook'."
7072 (when (get-buffer-window (current-buffer))
7073 (cond
7074 ((eq state 'content) nil)
7075 ((eq state 'all) nil)
7076 ((eq state 'folded) nil)
7077 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7078 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7080 (defun org-remove-empty-overlays-at (pos)
7081 "Remove outline overlays that do not contain non-white stuff."
7082 (mapc
7083 (lambda (o)
7084 (and (eq 'outline (overlay-get o 'invisible))
7085 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7086 (overlay-end o))))
7087 (delete-overlay o)))
7088 (overlays-at pos)))
7090 (defun org-clean-visibility-after-subtree-move ()
7091 "Fix visibility issues after moving a subtree."
7092 ;; First, find a reasonable region to look at:
7093 ;; Start two siblings above, end three below
7094 (let* ((beg (save-excursion
7095 (and (org-get-last-sibling)
7096 (org-get-last-sibling))
7097 (point)))
7098 (end (save-excursion
7099 (and (org-get-next-sibling)
7100 (org-get-next-sibling)
7101 (org-get-next-sibling))
7102 (if (org-at-heading-p)
7103 (point-at-eol)
7104 (point))))
7105 (level (looking-at "\\*+"))
7106 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7107 (save-excursion
7108 (save-restriction
7109 (narrow-to-region beg end)
7110 (when re
7111 ;; Properly fold already folded siblings
7112 (goto-char (point-min))
7113 (while (re-search-forward re nil t)
7114 (if (and (not (outline-invisible-p))
7115 (save-excursion
7116 (goto-char (point-at-eol)) (outline-invisible-p)))
7117 (hide-entry))))
7118 (org-cycle-show-empty-lines 'overview)
7119 (org-cycle-hide-drawers 'overview)))))
7121 (defun org-cycle-show-empty-lines (state)
7122 "Show empty lines above all visible headlines.
7123 The region to be covered depends on STATE when called through
7124 `org-cycle-hook'. Lisp program can use t for STATE to get the
7125 entire buffer covered. Note that an empty line is only shown if there
7126 are at least `org-cycle-separator-lines' empty lines before the headline."
7127 (when (/= org-cycle-separator-lines 0)
7128 (save-excursion
7129 (let* ((n (abs org-cycle-separator-lines))
7130 (re (cond
7131 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7132 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7133 (t (let ((ns (number-to-string (- n 2))))
7134 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7135 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7136 beg end)
7137 (cond
7138 ((memq state '(overview contents t))
7139 (setq beg (point-min) end (point-max)))
7140 ((memq state '(children folded))
7141 (setq beg (point)
7142 end (progn (org-end-of-subtree t t)
7143 (line-beginning-position 2)))))
7144 (when beg
7145 (goto-char beg)
7146 (while (re-search-forward re end t)
7147 (unless (get-char-property (match-end 1) 'invisible)
7148 (let ((e (match-end 1))
7149 (b (if (>= org-cycle-separator-lines 0)
7150 (match-beginning 1)
7151 (save-excursion
7152 (goto-char (match-beginning 0))
7153 (skip-chars-backward " \t\n")
7154 (line-end-position)))))
7155 (outline-flag-region b e nil))))))))
7156 ;; Never hide empty lines at the end of the file.
7157 (save-excursion
7158 (goto-char (point-max))
7159 (outline-previous-heading)
7160 (outline-end-of-heading)
7161 (if (and (looking-at "[ \t\n]+")
7162 (= (match-end 0) (point-max)))
7163 (outline-flag-region (point) (match-end 0) nil))))
7165 (defun org-show-empty-lines-in-parent ()
7166 "Move to the parent and re-show empty lines before visible headlines."
7167 (save-excursion
7168 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7169 (org-cycle-show-empty-lines context))))
7171 (defun org-files-list ()
7172 "Return `org-agenda-files' list, plus all open org-mode files.
7173 This is useful for operations that need to scan all of a user's
7174 open and agenda-wise Org files."
7175 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7176 (dolist (buf (buffer-list))
7177 (with-current-buffer buf
7178 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7179 (let ((file (expand-file-name (buffer-file-name))))
7180 (unless (member file files)
7181 (push file files))))))
7182 files))
7184 (defsubst org-entry-beginning-position ()
7185 "Return the beginning position of the current entry."
7186 (save-excursion (outline-back-to-heading t) (point)))
7188 (defsubst org-entry-end-position ()
7189 "Return the end position of the current entry."
7190 (save-excursion (outline-next-heading) (point)))
7192 (defun org-cycle-hide-drawers (state &optional exceptions)
7193 "Re-hide all drawers after a visibility state change.
7194 When non-nil, optional argument EXCEPTIONS is a list of strings
7195 specifying which drawers should not be hidden."
7196 (when (and (derived-mode-p 'org-mode)
7197 (not (memq state '(overview folded contents))))
7198 (save-excursion
7199 (let* ((globalp (memq state '(contents all)))
7200 (beg (if globalp (point-min) (point)))
7201 (end (if globalp (point-max)
7202 (if (eq state 'children)
7203 (save-excursion (outline-next-heading) (point))
7204 (org-end-of-subtree t)))))
7205 (goto-char beg)
7206 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7207 (unless (member-ignore-case (match-string 1) exceptions)
7208 (let ((drawer (org-element-at-point)))
7209 (when (memq (org-element-type drawer) '(drawer property-drawer))
7210 (org-flag-drawer t drawer)
7211 ;; Make sure to skip drawer entirely or we might flag
7212 ;; it another time when matching its ending line with
7213 ;; `org-drawer-regexp'.
7214 (goto-char (org-element-property :end drawer))))))))))
7216 (defun org-flag-drawer (flag &optional element)
7217 "When FLAG is non-nil, hide the drawer we are at.
7218 Otherwise make it visible. When optional argument ELEMENT is
7219 a parsed drawer, as returned by `org-element-at-point', hide or
7220 show that drawer instead."
7221 (when (save-excursion
7222 (beginning-of-line)
7223 (org-looking-at-p org-drawer-regexp))
7224 (let ((drawer (or element (org-element-at-point))))
7225 (when (memq (org-element-type drawer) '(drawer property-drawer))
7226 (let ((post (org-element-property :post-affiliated drawer)))
7227 (save-excursion
7228 (outline-flag-region
7229 (progn (goto-char post) (line-end-position))
7230 (progn (goto-char (org-element-property :end drawer))
7231 (skip-chars-backward " \r\t\n")
7232 (line-end-position))
7233 flag))
7234 ;; When the drawer is hidden away, make sure point lies in
7235 ;; a visible part of the buffer.
7236 (when (and flag (> (line-beginning-position) post))
7237 (goto-char post)))))))
7239 (defun org-subtree-end-visible-p ()
7240 "Is the end of the current subtree visible?"
7241 (pos-visible-in-window-p
7242 (save-excursion (org-end-of-subtree t) (point))))
7244 (defun org-first-headline-recenter ()
7245 "Move cursor to the first headline and recenter the headline."
7246 (goto-char (point-min))
7247 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7248 (set-window-start (selected-window) (point-at-bol))))
7250 ;;; Saving and restoring visibility
7252 (defun org-outline-overlay-data (&optional use-markers)
7253 "Return a list of the locations of all outline overlays.
7254 These are overlays with the `invisible' property value `outline'.
7255 The return value is a list of cons cells, with start and stop
7256 positions for each overlay.
7257 If USE-MARKERS is set, return the positions as markers."
7258 (let (beg end)
7259 (save-excursion
7260 (save-restriction
7261 (widen)
7262 (delq nil
7263 (mapcar (lambda (o)
7264 (when (eq (overlay-get o 'invisible) 'outline)
7265 (setq beg (overlay-start o)
7266 end (overlay-end o))
7267 (and beg end (> end beg)
7268 (if use-markers
7269 (cons (copy-marker beg)
7270 (copy-marker end t))
7271 (cons beg end)))))
7272 (overlays-in (point-min) (point-max))))))))
7274 (defun org-set-outline-overlay-data (data)
7275 "Create visibility overlays for all positions in DATA.
7276 DATA should have been made by `org-outline-overlay-data'."
7277 (let (o)
7278 (save-excursion
7279 (save-restriction
7280 (widen)
7281 (show-all)
7282 (mapc (lambda (c)
7283 (outline-flag-region (car c) (cdr c) t))
7284 data)))))
7286 ;;; Folding of blocks
7288 (defvar org-hide-block-overlays nil
7289 "Overlays hiding blocks.")
7290 (make-variable-buffer-local 'org-hide-block-overlays)
7292 (defun org-block-map (function &optional start end)
7293 "Call FUNCTION at the head of all source blocks in the current buffer.
7294 Optional arguments START and END can be used to limit the range."
7295 (let ((start (or start (point-min)))
7296 (end (or end (point-max))))
7297 (save-excursion
7298 (goto-char start)
7299 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7300 (save-excursion
7301 (save-match-data
7302 (goto-char (match-beginning 0))
7303 (funcall function)))))))
7305 (defun org-hide-block-toggle-all ()
7306 "Toggle the visibility of all blocks in the current buffer."
7307 (org-block-map 'org-hide-block-toggle))
7309 (defun org-hide-block-all ()
7310 "Fold all blocks in the current buffer."
7311 (interactive)
7312 (org-show-block-all)
7313 (org-block-map 'org-hide-block-toggle-maybe))
7315 (defun org-show-block-all ()
7316 "Unfold all blocks in the current buffer."
7317 (interactive)
7318 (mapc 'delete-overlay org-hide-block-overlays)
7319 (setq org-hide-block-overlays nil))
7321 (defun org-hide-block-toggle-maybe ()
7322 "Toggle visibility of block at point.
7323 Unlike to `org-hide-block-toggle', this function does not throw
7324 an error. Return a non-nil value when toggling is successful."
7325 (interactive)
7326 (ignore-errors (org-hide-block-toggle)))
7328 (defun org-hide-block-toggle (&optional force)
7329 "Toggle the visibility of the current block.
7330 When optional argument FORCE is `off', make block visible. If it
7331 is non-nil, hide it unconditionally. Throw an error when not at
7332 a block. Return a non-nil value when toggling is successful."
7333 (interactive)
7334 (let ((element (org-element-at-point)))
7335 (unless (memq (org-element-type element)
7336 '(center-block comment-block dynamic-block example-block
7337 export-block quote-block special-block
7338 src-block verse-block))
7339 (user-error "Not at a block"))
7340 (let* ((start (save-excursion
7341 (goto-char (org-element-property :post-affiliated element))
7342 (line-end-position)))
7343 (end (save-excursion
7344 (goto-char (org-element-property :end element))
7345 (skip-chars-backward " \r\t\n")
7346 (line-end-position)))
7347 (overlays (overlays-at start)))
7348 (cond
7349 ;; Do nothing when not before or at the block opening line or
7350 ;; at the block closing line.
7351 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7352 ((and (not (eq force 'off))
7353 (not (memq t (mapcar
7354 (lambda (o)
7355 (eq (overlay-get o 'invisible) 'org-hide-block))
7356 overlays))))
7357 (let ((ov (make-overlay start end)))
7358 (overlay-put ov 'invisible 'org-hide-block)
7359 ;; Make the block accessible to `isearch'.
7360 (overlay-put
7361 ov 'isearch-open-invisible
7362 (lambda (ov)
7363 (when (memq ov org-hide-block-overlays)
7364 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7365 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7366 (delete-overlay ov))))
7367 (push ov org-hide-block-overlays)
7368 ;; When the block is hidden away, make sure point is left in
7369 ;; a visible part of the buffer.
7370 (when (> (line-beginning-position) start)
7371 (goto-char start)
7372 (beginning-of-line))
7373 ;; Signal successful toggling.
7375 ((or (not force) (eq force 'off))
7376 (dolist (ov overlays t)
7377 (when (memq ov org-hide-block-overlays)
7378 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7379 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7380 (delete-overlay ov))))))))
7382 ;; org-tab-after-check-for-cycling-hook
7383 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7384 ;; Remove overlays when changing major mode
7385 (add-hook 'org-mode-hook
7386 (lambda () (org-add-hook 'change-major-mode-hook
7387 'org-show-block-all 'append 'local)))
7389 ;;; Org-goto
7391 (defvar org-goto-window-configuration nil)
7392 (defvar org-goto-marker nil)
7393 (defvar org-goto-map)
7394 (defun org-goto-map ()
7395 "Set the keymap `org-goto'."
7396 (setq org-goto-map
7397 (let ((map (make-sparse-keymap)))
7398 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7399 mouse-drag-region universal-argument org-occur))
7400 cmd)
7401 (while (setq cmd (pop cmds))
7402 (substitute-key-definition cmd cmd map global-map)))
7403 (suppress-keymap map)
7404 (org-defkey map "\C-m" 'org-goto-ret)
7405 (org-defkey map [(return)] 'org-goto-ret)
7406 (org-defkey map [(left)] 'org-goto-left)
7407 (org-defkey map [(right)] 'org-goto-right)
7408 (org-defkey map [(control ?g)] 'org-goto-quit)
7409 (org-defkey map "\C-i" 'org-cycle)
7410 (org-defkey map [(tab)] 'org-cycle)
7411 (org-defkey map [(down)] 'outline-next-visible-heading)
7412 (org-defkey map [(up)] 'outline-previous-visible-heading)
7413 (if org-goto-auto-isearch
7414 (if (fboundp 'define-key-after)
7415 (define-key-after map [t] 'org-goto-local-auto-isearch)
7416 nil)
7417 (org-defkey map "q" 'org-goto-quit)
7418 (org-defkey map "n" 'outline-next-visible-heading)
7419 (org-defkey map "p" 'outline-previous-visible-heading)
7420 (org-defkey map "f" 'outline-forward-same-level)
7421 (org-defkey map "b" 'outline-backward-same-level)
7422 (org-defkey map "u" 'outline-up-heading))
7423 (org-defkey map "/" 'org-occur)
7424 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7425 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7426 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7427 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7428 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7429 map)))
7431 (defconst org-goto-help
7432 "Browse buffer copy, to find location or copy text.%s
7433 RET=jump to location C-g=quit and return to previous location
7434 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7436 (defvar org-goto-start-pos) ; dynamically scoped parameter
7438 (defun org-goto (&optional alternative-interface)
7439 "Look up a different location in the current file, keeping current visibility.
7441 When you want look-up or go to a different location in a
7442 document, the fastest way is often to fold the entire buffer and
7443 then dive into the tree. This method has the disadvantage, that
7444 the previous location will be folded, which may not be what you
7445 want.
7447 This command works around this by showing a copy of the current
7448 buffer in an indirect buffer, in overview mode. You can dive
7449 into the tree in that copy, use org-occur and incremental search
7450 to find a location. When pressing RET or `Q', the command
7451 returns to the original buffer in which the visibility is still
7452 unchanged. After RET it will also jump to the location selected
7453 in the indirect buffer and expose the headline hierarchy above.
7455 With a prefix argument, use the alternative interface: e.g. if
7456 `org-goto-interface' is 'outline use 'outline-path-completion."
7457 (interactive "P")
7458 (org-goto-map)
7459 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7460 (org-refile-use-outline-path t)
7461 (org-refile-target-verify-function nil)
7462 (interface
7463 (if (not alternative-interface)
7464 org-goto-interface
7465 (if (eq org-goto-interface 'outline)
7466 'outline-path-completion
7467 'outline)))
7468 (org-goto-start-pos (point))
7469 (selected-point
7470 (if (eq interface 'outline)
7471 (car (org-get-location (current-buffer) org-goto-help))
7472 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7473 (org-refile-check-position pa)
7474 (nth 3 pa)))))
7475 (if selected-point
7476 (progn
7477 (org-mark-ring-push org-goto-start-pos)
7478 (goto-char selected-point)
7479 (if (or (outline-invisible-p) (org-invisible-p2))
7480 (org-show-context 'org-goto)))
7481 (message "Quit"))))
7483 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7484 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7485 (defvar org-goto-local-auto-isearch-map) ; defined below
7487 (defun org-get-location (buf help)
7488 "Let the user select a location in the Org-mode buffer BUF.
7489 This function uses a recursive edit. It returns the selected position
7490 or nil."
7491 (org-no-popups
7492 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7493 (isearch-hide-immediately nil)
7494 (isearch-search-fun-function
7495 (lambda () 'org-goto-local-search-headings))
7496 (org-goto-selected-point org-goto-exit-command))
7497 (save-excursion
7498 (save-window-excursion
7499 (delete-other-windows)
7500 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7501 (org-pop-to-buffer-same-window
7502 (condition-case nil
7503 (make-indirect-buffer (current-buffer) "*org-goto*")
7504 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7505 (with-output-to-temp-buffer "*Org Help*"
7506 (princ (format help (if org-goto-auto-isearch
7507 " Just type for auto-isearch."
7508 " n/p/f/b/u to navigate, q to quit."))))
7509 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7510 (setq buffer-read-only nil)
7511 (let ((org-startup-truncated t)
7512 (org-startup-folded nil)
7513 (org-startup-align-all-tables nil))
7514 (org-mode)
7515 (org-overview))
7516 (setq buffer-read-only t)
7517 (if (and (boundp 'org-goto-start-pos)
7518 (integer-or-marker-p org-goto-start-pos))
7519 (progn (goto-char org-goto-start-pos)
7520 (when (outline-invisible-p)
7521 (org-show-set-visibility 'lineage)))
7522 (goto-char (point-min)))
7523 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7524 (message "Select location and press RET")
7525 (use-local-map org-goto-map)
7526 (recursive-edit)))
7527 (kill-buffer "*org-goto*")
7528 (cons org-goto-selected-point org-goto-exit-command))))
7530 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7531 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7532 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7533 (if (fboundp 'isearch-other-control-char)
7534 (progn
7535 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7536 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7537 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7538 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7539 (define-key org-goto-local-auto-isearch-map [return] nil))
7541 (defun org-goto-local-search-headings (string bound noerror)
7542 "Search and make sure that any matches are in headlines."
7543 (catch 'return
7544 (while (if isearch-forward
7545 (search-forward string bound noerror)
7546 (search-backward string bound noerror))
7547 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7548 (and (member :headline context)
7549 (not (member :tags context))))
7550 (throw 'return (point))))))
7552 (defun org-goto-local-auto-isearch ()
7553 "Start isearch."
7554 (interactive)
7555 (goto-char (point-min))
7556 (let ((keys (this-command-keys)))
7557 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7558 (isearch-mode t)
7559 (isearch-process-search-char (string-to-char keys)))))
7561 (defun org-goto-ret (&optional arg)
7562 "Finish `org-goto' by going to the new location."
7563 (interactive "P")
7564 (setq org-goto-selected-point (point)
7565 org-goto-exit-command 'return)
7566 (throw 'exit nil))
7568 (defun org-goto-left ()
7569 "Finish `org-goto' by going to the new location."
7570 (interactive)
7571 (if (org-at-heading-p)
7572 (progn
7573 (beginning-of-line 1)
7574 (setq org-goto-selected-point (point)
7575 org-goto-exit-command 'left)
7576 (throw 'exit nil))
7577 (user-error "Not on a heading")))
7579 (defun org-goto-right ()
7580 "Finish `org-goto' by going to the new location."
7581 (interactive)
7582 (if (org-at-heading-p)
7583 (progn
7584 (setq org-goto-selected-point (point)
7585 org-goto-exit-command 'right)
7586 (throw 'exit nil))
7587 (user-error "Not on a heading")))
7589 (defun org-goto-quit ()
7590 "Finish `org-goto' without cursor motion."
7591 (interactive)
7592 (setq org-goto-selected-point nil)
7593 (setq org-goto-exit-command 'quit)
7594 (throw 'exit nil))
7596 ;;; Indirect buffer display of subtrees
7598 (defvar org-indirect-dedicated-frame nil
7599 "This is the frame being used for indirect tree display.")
7600 (defvar org-last-indirect-buffer nil)
7602 (defun org-tree-to-indirect-buffer (&optional arg)
7603 "Create indirect buffer and narrow it to current subtree.
7604 With a numerical prefix ARG, go up to this level and then take that tree.
7605 If ARG is negative, go up that many levels.
7607 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7608 indirect buffer previously made with this command, to avoid proliferation of
7609 indirect buffers. However, when you call the command with a \
7610 \\[universal-argument] prefix, or
7611 when `org-indirect-buffer-display' is `new-frame', the last buffer
7612 is kept so that you can work with several indirect buffers at the same time.
7613 If `org-indirect-buffer-display' is `dedicated-frame', the \
7614 \\[universal-argument] prefix also
7615 requests that a new frame be made for the new buffer, so that the dedicated
7616 frame is not changed."
7617 (interactive "P")
7618 (let ((cbuf (current-buffer))
7619 (cwin (selected-window))
7620 (pos (point))
7621 beg end level heading ibuf)
7622 (save-excursion
7623 (org-back-to-heading t)
7624 (when (numberp arg)
7625 (setq level (org-outline-level))
7626 (if (< arg 0) (setq arg (+ level arg)))
7627 (while (> (setq level (org-outline-level)) arg)
7628 (org-up-heading-safe)))
7629 (setq beg (point)
7630 heading (org-get-heading))
7631 (org-end-of-subtree t t)
7632 (if (org-at-heading-p) (backward-char 1))
7633 (setq end (point)))
7634 (if (and (buffer-live-p org-last-indirect-buffer)
7635 (not (eq org-indirect-buffer-display 'new-frame))
7636 (not arg))
7637 (kill-buffer org-last-indirect-buffer))
7638 (setq ibuf (org-get-indirect-buffer cbuf heading)
7639 org-last-indirect-buffer ibuf)
7640 (cond
7641 ((or (eq org-indirect-buffer-display 'new-frame)
7642 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7643 (select-frame (make-frame))
7644 (delete-other-windows)
7645 (org-pop-to-buffer-same-window ibuf)
7646 (org-set-frame-title heading))
7647 ((eq org-indirect-buffer-display 'dedicated-frame)
7648 (raise-frame
7649 (select-frame (or (and org-indirect-dedicated-frame
7650 (frame-live-p org-indirect-dedicated-frame)
7651 org-indirect-dedicated-frame)
7652 (setq org-indirect-dedicated-frame (make-frame)))))
7653 (delete-other-windows)
7654 (org-pop-to-buffer-same-window ibuf)
7655 (org-set-frame-title (concat "Indirect: " heading)))
7656 ((eq org-indirect-buffer-display 'current-window)
7657 (org-pop-to-buffer-same-window ibuf))
7658 ((eq org-indirect-buffer-display 'other-window)
7659 (pop-to-buffer ibuf))
7660 (t (error "Invalid value")))
7661 (if (featurep 'xemacs)
7662 (save-excursion (org-mode) (turn-on-font-lock)))
7663 (narrow-to-region beg end)
7664 (show-all)
7665 (goto-char pos)
7666 (run-hook-with-args 'org-cycle-hook 'all)
7667 (and (window-live-p cwin) (select-window cwin))))
7669 (defun org-get-indirect-buffer (&optional buffer heading)
7670 (setq buffer (or buffer (current-buffer)))
7671 (let ((n 1) (base (buffer-name buffer)) bname)
7672 (while (buffer-live-p
7673 (get-buffer
7674 (setq bname
7675 (concat base "-"
7676 (if heading (concat heading "-" (number-to-string n))
7677 (number-to-string n))))))
7678 (setq n (1+ n)))
7679 (condition-case nil
7680 (make-indirect-buffer buffer bname 'clone)
7681 (error (make-indirect-buffer buffer bname)))))
7683 (defun org-set-frame-title (title)
7684 "Set the title of the current frame to the string TITLE."
7685 ;; FIXME: how to name a single frame in XEmacs???
7686 (unless (featurep 'xemacs)
7687 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7689 ;;;; Structure editing
7691 ;;; Inserting headlines
7693 (defun org-previous-line-empty-p (&optional next)
7694 "Is the previous line a blank line?
7695 When NEXT is non-nil, check the next line instead."
7696 (save-excursion
7697 (and (not (bobp))
7698 (or (beginning-of-line (if next 2 0)) t)
7699 (save-match-data
7700 (looking-at "[ \t]*$")))))
7702 (defun org-insert-heading (&optional arg invisible-ok top-level)
7703 "Insert a new heading or an item with the same depth at point.
7705 If point is at the beginning of a heading or a list item, insert
7706 a new heading or a new item above the current one. If point is
7707 at the beginning of a normal line, turn the line into a heading.
7709 If point is in the middle of a headline or a list item, split the
7710 headline or the item and create a new headline/item with the text
7711 in the current line after point \(see `org-M-RET-may-split-line'
7712 on how to modify this behavior).
7714 With one universal prefix argument, set the user option
7715 `org-insert-heading-respect-content' to t for the duration of
7716 the command. This modifies the behavior described above in this
7717 ways: on list items and at the beginning of normal lines, force
7718 the insertion of a heading after the current subtree.
7720 With two universal prefix arguments, insert the heading at the
7721 end of the grandparent subtree. For example, if point is within
7722 a 2nd-level heading, then it will insert a 2nd-level heading at
7723 the end of the 1st-level parent heading.
7725 If point is at the beginning of a headline, insert a sibling
7726 before the current headline. If point is not at the beginning,
7727 split the line and create a new headline with the text in the
7728 current line after point \(see `org-M-RET-may-split-line' on how
7729 to modify this behavior).
7731 If point is at the beginning of a normal line, turn this line
7732 into a heading.
7734 When INVISIBLE-OK is set, stop at invisible headlines when going
7735 back. This is important for non-interactive uses of the
7736 command.
7738 When optional argument TOP-LEVEL is non-nil, insert a level 1
7739 heading, unconditionally."
7740 (interactive "P")
7741 (if (org-called-interactively-p 'any) (org-reveal))
7742 (let ((itemp (and (not top-level) (org-in-item-p)))
7743 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7744 (respect-content (or org-insert-heading-respect-content
7745 (equal arg '(4))))
7746 (initial-content ""))
7748 (cond
7750 ((or (= (buffer-size) 0)
7751 (and (not (save-excursion
7752 (and (ignore-errors (org-back-to-heading invisible-ok))
7753 (org-at-heading-p))))
7754 (or arg (not itemp))))
7755 ;; At beginning of buffer or so high up that only a heading
7756 ;; makes sense.
7757 (cond ((and (bolp) (not respect-content)) (insert "* "))
7758 ((not respect-content)
7759 (unless may-split (end-of-line))
7760 (insert "\n* "))
7761 ((re-search-forward org-outline-regexp-bol nil t)
7762 (beginning-of-line)
7763 (insert "* \n")
7764 (backward-char))
7765 (t (goto-char (point-max))
7766 (insert "\n* ")))
7767 (run-hooks 'org-insert-heading-hook))
7769 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7772 ;; Maybe move at the end of the subtree
7773 (when (equal arg '(16))
7774 (org-up-heading-safe)
7775 (org-end-of-subtree t))
7776 ;; Insert a heading
7777 (save-restriction
7778 (widen)
7779 (let* ((level nil)
7780 (on-heading (org-at-heading-p))
7781 (empty-line-p (if on-heading
7782 (org-previous-line-empty-p)
7783 ;; We will decide later
7784 nil))
7785 ;; Get a level string to fall back on.
7786 (fix-level
7787 (if (org-before-first-heading-p) "*"
7788 (save-excursion
7789 (org-back-to-heading t)
7790 (if (org-previous-line-empty-p) (setq empty-line-p t))
7791 (looking-at org-outline-regexp)
7792 (make-string (1- (length (match-string 0))) ?*))))
7793 (stars
7794 (save-excursion
7795 (condition-case nil
7796 (if top-level "* "
7797 (org-back-to-heading invisible-ok)
7798 (when (and (not on-heading)
7799 (featurep 'org-inlinetask)
7800 (integerp org-inlinetask-min-level)
7801 (>= (length (match-string 0))
7802 org-inlinetask-min-level))
7803 ;; Find a heading level before the inline
7804 ;; task.
7805 (while (and (setq level (org-up-heading-safe))
7806 (>= level org-inlinetask-min-level)))
7807 (if (org-at-heading-p)
7808 (org-back-to-heading invisible-ok)
7809 (error "This should not happen")))
7810 (unless (and (save-excursion
7811 (save-match-data
7812 (org-backward-heading-same-level
7813 1 invisible-ok))
7814 (= (point) (match-beginning 0)))
7815 (not (org-previous-line-empty-p t)))
7816 (setq empty-line-p (or empty-line-p
7817 (org-previous-line-empty-p))))
7818 (match-string 0))
7819 (error (or fix-level "* ")))))
7820 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7821 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7822 pos hide-previous previous-pos)
7824 ;; If we insert after content, move there and clean up
7825 ;; whitespace.
7826 (when (and respect-content
7827 (not (org-looking-at-p org-outline-regexp-bol)))
7828 (if (not (org-before-first-heading-p))
7829 (org-end-of-subtree nil t)
7830 (re-search-forward org-outline-regexp-bol)
7831 (beginning-of-line 0))
7832 (skip-chars-backward " \r\t\n")
7833 (and (not (looking-back "^\\*+"))
7834 (looking-at "[ \t]+") (replace-match ""))
7835 (unless (eobp) (forward-char 1))
7836 (when (looking-at "^\\*")
7837 (unless (bobp) (backward-char 1))
7838 (insert "\n")))
7840 ;; If we are splitting, grab the text that should be moved
7841 ;; to the new headline.
7842 (when may-split
7843 (if (org-on-heading-p)
7844 ;; This is a heading: split intelligently (keeping
7845 ;; tags).
7846 (let ((pos (point)))
7847 (beginning-of-line)
7848 (unless (looking-at org-complex-heading-regexp)
7849 (error "This should not happen"))
7850 (when (and (match-beginning 4)
7851 (> pos (match-beginning 4))
7852 (< pos (match-end 4)))
7853 (setq initial-content (buffer-substring pos (match-end 4)))
7854 (goto-char pos)
7855 (delete-region (point) (match-end 4))
7856 (if (looking-at "[ \t]*$")
7857 (replace-match "")
7858 (insert (make-string (length initial-content) ?\s)))
7859 (setq initial-content (org-trim initial-content)))
7860 (goto-char pos))
7861 ;; A normal line.
7862 (setq initial-content
7863 (org-trim
7864 (delete-and-extract-region (point) (line-end-position))))))
7866 ;; If we are at the beginning of the line, insert before it.
7867 ;; Otherwise, after it.
7868 (cond
7869 ((and (bolp) (looking-at "[ \t]*$")))
7870 ((bolp) (save-excursion (insert "\n")))
7871 (t (end-of-line)
7872 (insert "\n")))
7874 ;; Insert the new heading
7875 (insert stars)
7876 (just-one-space)
7877 (insert initial-content)
7878 (unless (and blank (org-previous-line-empty-p))
7879 (org-N-empty-lines-before-current (if blank 1 0)))
7880 ;; Adjust visibility, which may be messed up if we removed
7881 ;; blank lines while previous entry was hidden.
7882 (let ((bol (line-beginning-position)))
7883 (dolist (o (overlays-at (1- bol)))
7884 (when (and (eq (overlay-get o 'invisible) 'outline)
7885 (eq (overlay-end o) bol))
7886 (move-overlay o (overlay-start o) (1- bol)))))
7887 (run-hooks 'org-insert-heading-hook)))))))
7889 (defun org-N-empty-lines-before-current (N)
7890 "Make the number of empty lines before current exactly N.
7891 So this will delete or add empty lines."
7892 (save-excursion
7893 (beginning-of-line)
7894 (let ((p (point)))
7895 (skip-chars-backward " \r\t\n")
7896 (unless (bolp) (forward-line))
7897 (delete-region (point) p))
7898 (when (> N 0) (insert (make-string N ?\n)))))
7900 (defun org-get-heading (&optional no-tags no-todo)
7901 "Return the heading of the current entry, without the stars.
7902 When NO-TAGS is non-nil, don't include tags.
7903 When NO-TODO is non-nil, don't include TODO keywords."
7904 (save-excursion
7905 (org-back-to-heading t)
7906 (cond
7907 ((and no-tags no-todo)
7908 (looking-at org-complex-heading-regexp)
7909 (match-string 4))
7910 (no-tags
7911 (looking-at (concat org-outline-regexp
7912 "\\(.*?\\)"
7913 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7914 (match-string 1))
7915 (no-todo
7916 (looking-at org-todo-line-regexp)
7917 (match-string 3))
7918 (t (looking-at org-heading-regexp)
7919 (match-string 2)))))
7921 (defvar orgstruct-mode) ; defined below
7923 (defun org-heading-components ()
7924 "Return the components of the current heading.
7925 This is a list with the following elements:
7926 - the level as an integer
7927 - the reduced level, different if `org-odd-levels-only' is set.
7928 - the TODO keyword, or nil
7929 - the priority character, like ?A, or nil if no priority is given
7930 - the headline text itself, or the tags string if no headline text
7931 - the tags string, or nil."
7932 (save-excursion
7933 (org-back-to-heading t)
7934 (if (let (case-fold-search)
7935 (looking-at
7936 (if orgstruct-mode
7937 org-heading-regexp
7938 org-complex-heading-regexp)))
7939 (if orgstruct-mode
7940 (list (length (match-string 1))
7941 (org-reduced-level (length (match-string 1)))
7944 (match-string 2)
7945 nil)
7946 (list (length (match-string 1))
7947 (org-reduced-level (length (match-string 1)))
7948 (org-match-string-no-properties 2)
7949 (and (match-end 3) (aref (match-string 3) 2))
7950 (org-match-string-no-properties 4)
7951 (org-match-string-no-properties 5))))))
7953 (defun org-get-entry ()
7954 "Get the entry text, after heading, entire subtree."
7955 (save-excursion
7956 (org-back-to-heading t)
7957 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7959 (defun org-insert-heading-after-current ()
7960 "Insert a new heading with same level as current, after current subtree."
7961 (interactive)
7962 (org-back-to-heading)
7963 (org-insert-heading)
7964 (org-move-subtree-down)
7965 (end-of-line 1))
7967 (defun org-insert-heading-respect-content (&optional invisible-ok)
7968 "Insert heading with `org-insert-heading-respect-content' set to t."
7969 (interactive)
7970 (org-insert-heading '(4) invisible-ok))
7972 (defun org-insert-todo-heading-respect-content (&optional force-state)
7973 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7974 (interactive)
7975 (org-insert-todo-heading force-state '(4)))
7977 (defun org-insert-todo-heading (arg &optional force-heading)
7978 "Insert a new heading with the same level and TODO state as current heading.
7979 If the heading has no TODO state, or if the state is DONE, use the first
7980 state (TODO by default). Also with one prefix arg, force first state. With
7981 two prefix args, force inserting at the end of the parent subtree."
7982 (interactive "P")
7983 (when (or force-heading (not (org-insert-item 'checkbox)))
7984 (org-insert-heading (or (and (equal arg '(16)) '(16))
7985 force-heading))
7986 (save-excursion
7987 (org-back-to-heading)
7988 (outline-previous-heading)
7989 (looking-at org-todo-line-regexp))
7990 (let*
7991 ((new-mark-x
7992 (if (or (equal arg '(4))
7993 (not (match-beginning 2))
7994 (member (match-string 2) org-done-keywords))
7995 (car org-todo-keywords-1)
7996 (match-string 2)))
7997 (new-mark
7999 (run-hook-with-args-until-success
8000 'org-todo-get-default-hook new-mark-x nil)
8001 new-mark-x)))
8002 (beginning-of-line 1)
8003 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8004 (if org-treat-insert-todo-heading-as-state-change
8005 (org-todo new-mark)
8006 (insert new-mark " "))))
8007 (when org-provide-todo-statistics
8008 (org-update-parent-todo-statistics))))
8010 (defun org-insert-subheading (arg)
8011 "Insert a new subheading and demote it.
8012 Works for outline headings and for plain lists alike."
8013 (interactive "P")
8014 (org-insert-heading arg)
8015 (cond
8016 ((org-at-heading-p) (org-do-demote))
8017 ((org-at-item-p) (org-indent-item))))
8019 (defun org-insert-todo-subheading (arg)
8020 "Insert a new subheading with TODO keyword or checkbox and demote it.
8021 Works for outline headings and for plain lists alike."
8022 (interactive "P")
8023 (org-insert-todo-heading arg)
8024 (cond
8025 ((org-at-heading-p) (org-do-demote))
8026 ((org-at-item-p) (org-indent-item))))
8028 ;;; Promotion and Demotion
8030 (defvar org-after-demote-entry-hook nil
8031 "Hook run after an entry has been demoted.
8032 The cursor will be at the beginning of the entry.
8033 When a subtree is being demoted, the hook will be called for each node.")
8035 (defvar org-after-promote-entry-hook nil
8036 "Hook run after an entry has been promoted.
8037 The cursor will be at the beginning of the entry.
8038 When a subtree is being promoted, the hook will be called for each node.")
8040 (defun org-promote-subtree ()
8041 "Promote the entire subtree.
8042 See also `org-promote'."
8043 (interactive)
8044 (save-excursion
8045 (org-with-limited-levels (org-map-tree 'org-promote)))
8046 (org-fix-position-after-promote))
8048 (defun org-demote-subtree ()
8049 "Demote the entire subtree. See `org-demote'.
8050 See also `org-promote'."
8051 (interactive)
8052 (save-excursion
8053 (org-with-limited-levels (org-map-tree 'org-demote)))
8054 (org-fix-position-after-promote))
8057 (defun org-do-promote ()
8058 "Promote the current heading higher up the tree.
8059 If the region is active in `transient-mark-mode', promote all headings
8060 in the region."
8061 (interactive)
8062 (save-excursion
8063 (if (org-region-active-p)
8064 (org-map-region 'org-promote (region-beginning) (region-end))
8065 (org-promote)))
8066 (org-fix-position-after-promote))
8068 (defun org-do-demote ()
8069 "Demote the current heading lower down the tree.
8070 If the region is active in `transient-mark-mode', demote all headings
8071 in the region."
8072 (interactive)
8073 (save-excursion
8074 (if (org-region-active-p)
8075 (org-map-region 'org-demote (region-beginning) (region-end))
8076 (org-demote)))
8077 (org-fix-position-after-promote))
8079 (defun org-fix-position-after-promote ()
8080 "Make sure that after pro/demotion cursor position is right."
8081 (let ((pos (point)))
8082 (when (save-excursion
8083 (beginning-of-line 1)
8084 (looking-at org-todo-line-regexp)
8085 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8086 (cond ((eobp) (insert " "))
8087 ((eolp) (insert " "))
8088 ((equal (char-after) ?\ ) (forward-char 1))))))
8090 (defun org-current-level ()
8091 "Return the level of the current entry, or nil if before the first headline.
8092 The level is the number of stars at the beginning of the
8093 headline. Use `org-reduced-level' to remove the effect of
8094 `org-odd-levels'. Unlike to `org-outline-level', this function
8095 ignores inlinetasks."
8096 (let ((level (org-with-limited-levels (org-outline-level))))
8097 (and (> level 0) level)))
8099 (defun org-get-previous-line-level ()
8100 "Return the outline depth of the last headline before the current line.
8101 Returns 0 for the first headline in the buffer, and nil if before the
8102 first headline."
8103 (and (org-current-level)
8104 (or (and (/= (line-beginning-position) (point-min))
8105 (save-excursion (beginning-of-line 0) (org-current-level)))
8106 0)))
8108 (defun org-reduced-level (l)
8109 "Compute the effective level of a heading.
8110 This takes into account the setting of `org-odd-levels-only'."
8111 (cond
8112 ((zerop l) 0)
8113 (org-odd-levels-only (1+ (floor (/ l 2))))
8114 (t l)))
8116 (defun org-level-increment ()
8117 "Return the number of stars that will be added or removed at a
8118 time to headlines when structure editing, based on the value of
8119 `org-odd-levels-only'."
8120 (if org-odd-levels-only 2 1))
8122 (defun org-get-valid-level (level &optional change)
8123 "Rectify a level change under the influence of `org-odd-levels-only'
8124 LEVEL is a current level, CHANGE is by how much the level should be
8125 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8126 even level numbers will become the next higher odd number."
8127 (if org-odd-levels-only
8128 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8129 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8130 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8131 (max 1 (+ level (or change 0)))))
8133 (if (boundp 'define-obsolete-function-alias)
8134 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8135 (define-obsolete-function-alias 'org-get-legal-level
8136 'org-get-valid-level)
8137 (define-obsolete-function-alias 'org-get-legal-level
8138 'org-get-valid-level "23.1")))
8140 (defun org-promote ()
8141 "Promote the current heading higher up the tree."
8142 (org-with-wide-buffer
8143 (org-back-to-heading t)
8144 (let* ((after-change-functions (remq 'flyspell-after-change-function
8145 after-change-functions))
8146 (level (save-match-data (funcall outline-level)))
8147 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8148 (diff (abs (- level (length up-head) -1))))
8149 (cond
8150 ((and (= level 1) org-allow-promoting-top-level-subtree)
8151 (replace-match "# " nil t))
8152 ((= level 1)
8153 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8154 (t (replace-match up-head nil t)))
8155 (unless (= level 1)
8156 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8157 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8158 (run-hooks 'org-after-promote-entry-hook))))
8160 (defun org-demote ()
8161 "Demote the current heading lower down the tree."
8162 (org-with-wide-buffer
8163 (org-back-to-heading t)
8164 (let* ((after-change-functions (remq 'flyspell-after-change-function
8165 after-change-functions))
8166 (level (save-match-data (funcall outline-level)))
8167 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8168 (diff (abs (- level (length down-head) -1))))
8169 (replace-match down-head nil t)
8170 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8171 (when org-adapt-indentation (org-fixup-indentation diff))
8172 (run-hooks 'org-after-demote-entry-hook))))
8174 (defun org-cycle-level ()
8175 "Cycle the level of an empty headline through possible states.
8176 This goes first to child, then to parent, level, then up the hierarchy.
8177 After top level, it switches back to sibling level."
8178 (interactive)
8179 (let ((org-adapt-indentation nil))
8180 (when (org-point-at-end-of-empty-headline)
8181 (setq this-command 'org-cycle-level) ; Only needed for caching
8182 (let ((cur-level (org-current-level))
8183 (prev-level (org-get-previous-line-level)))
8184 (cond
8185 ;; If first headline in file, promote to top-level.
8186 ((= prev-level 0)
8187 (loop repeat (/ (- cur-level 1) (org-level-increment))
8188 do (org-do-promote)))
8189 ;; If same level as prev, demote one.
8190 ((= prev-level cur-level)
8191 (org-do-demote))
8192 ;; If parent is top-level, promote to top level if not already.
8193 ((= prev-level 1)
8194 (loop repeat (/ (- cur-level 1) (org-level-increment))
8195 do (org-do-promote)))
8196 ;; If top-level, return to prev-level.
8197 ((= cur-level 1)
8198 (loop repeat (/ (- prev-level 1) (org-level-increment))
8199 do (org-do-demote)))
8200 ;; If less than prev-level, promote one.
8201 ((< cur-level prev-level)
8202 (org-do-promote))
8203 ;; If deeper than prev-level, promote until higher than
8204 ;; prev-level.
8205 ((> cur-level prev-level)
8206 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8207 do (org-do-promote))))
8208 t))))
8210 (defun org-map-tree (fun)
8211 "Call FUN for every heading underneath the current one."
8212 (org-back-to-heading)
8213 (let ((level (funcall outline-level)))
8214 (save-excursion
8215 (funcall fun)
8216 (while (and (progn
8217 (outline-next-heading)
8218 (> (funcall outline-level) level))
8219 (not (eobp)))
8220 (funcall fun)))))
8222 (defun org-map-region (fun beg end)
8223 "Call FUN for every heading between BEG and END."
8224 (let ((org-ignore-region t))
8225 (save-excursion
8226 (setq end (copy-marker end))
8227 (goto-char beg)
8228 (if (and (re-search-forward org-outline-regexp-bol nil t)
8229 (< (point) end))
8230 (funcall fun))
8231 (while (and (progn
8232 (outline-next-heading)
8233 (< (point) end))
8234 (not (eobp)))
8235 (funcall fun)))))
8237 (defun org-fixup-indentation (diff)
8238 "Change the indentation in the current entry by DIFF.
8240 DIFF is an integer. Indentation is done according to the
8241 following rules:
8243 - Planning information and property drawers are always indented
8244 according to the new level of the headline;
8246 - Footnote definitions and their contents are ignored;
8248 - Inlinetasks' boundaries are not shifted;
8250 - Empty lines are ignored;
8252 - Other lines' indentation are shifted by DIFF columns, unless
8253 it would introduce a structural change in the document, in
8254 which case no shifting is done at all.
8256 Assume point is at a heading or an inlinetask beginning."
8257 (org-with-wide-buffer
8258 (narrow-to-region (line-beginning-position)
8259 (save-excursion
8260 (if (org-with-limited-levels (org-at-heading-p))
8261 (org-with-limited-levels (outline-next-heading))
8262 (org-inlinetask-goto-end))
8263 (point)))
8264 (forward-line)
8265 ;; Indent properly planning info and property drawer.
8266 (when (org-looking-at-p org-planning-line-re)
8267 (org-indent-line)
8268 (forward-line))
8269 (when (looking-at org-property-drawer-re)
8270 (goto-char (match-end 0))
8271 (forward-line)
8272 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8273 (catch 'no-shift
8274 (when (zerop diff) (throw 'no-shift nil))
8275 ;; If DIFF is negative, first check if a shift is possible at all
8276 ;; (e.g., it doesn't break structure). This can only happen if
8277 ;; some contents are not properly indented.
8278 (let ((case-fold-search t))
8279 (when (< diff 0)
8280 (let ((diff (- diff))
8281 (forbidden-re (concat org-outline-regexp
8282 "\\|"
8283 (substring org-footnote-definition-re 1))))
8284 (save-excursion
8285 (while (not (eobp))
8286 (cond
8287 ((org-looking-at-p "[ \t]*$") (forward-line))
8288 ((and (org-looking-at-p org-footnote-definition-re)
8289 (let ((e (org-element-at-point)))
8290 (and (eq (org-element-type e) 'footnote-definition)
8291 (goto-char (org-element-property :end e))))))
8292 ((org-looking-at-p org-outline-regexp) (forward-line))
8293 ;; Give up if shifting would move before column 0 or
8294 ;; if it would introduce a headline or a footnote
8295 ;; definition.
8297 (skip-chars-forward " \t")
8298 (let ((ind (current-column)))
8299 (when (or (< ind diff)
8300 (and (= ind diff) (org-looking-at-p forbidden-re)))
8301 (throw 'no-shift nil)))
8302 ;; Ignore contents of example blocks and source
8303 ;; blocks if their indentation is meant to be
8304 ;; preserved. Jump to block's closing line.
8305 (beginning-of-line)
8306 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8307 (let ((e (org-element-at-point)))
8308 (and (memq (org-element-type e)
8309 '(example-block src-block))
8310 (or org-src-preserve-indentation
8311 (org-element-property :preserve-indent e))
8312 (goto-char (org-element-property :end e))
8313 (progn (skip-chars-backward " \r\t\n")
8314 (beginning-of-line)
8315 t))))
8316 (forward-line))))))))
8317 ;; Shift lines but footnote definitions, inlinetasks boundaries
8318 ;; by DIFF. Also skip contents of source or example blocks
8319 ;; when indentation is meant to be preserved.
8320 (while (not (eobp))
8321 (cond
8322 ((and (org-looking-at-p org-footnote-definition-re)
8323 (let ((e (org-element-at-point)))
8324 (and (eq (org-element-type e) 'footnote-definition)
8325 (goto-char (org-element-property :end e))))))
8326 ((org-looking-at-p org-outline-regexp) (forward-line))
8327 ((org-looking-at-p "[ \t]*$") (forward-line))
8329 (org-indent-line-to (+ (org-get-indentation) diff))
8330 (beginning-of-line)
8331 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8332 (let ((e (org-element-at-point)))
8333 (and (memq (org-element-type e)
8334 '(example-block src-block))
8335 (or org-src-preserve-indentation
8336 (org-element-property :preserve-indent e))
8337 (goto-char (org-element-property :end e))
8338 (progn (skip-chars-backward " \r\t\n")
8339 (beginning-of-line)
8340 t))))
8341 (forward-line)))))))))
8343 (defun org-convert-to-odd-levels ()
8344 "Convert an org-mode file with all levels allowed to one with odd levels.
8345 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8346 level 5 etc."
8347 (interactive)
8348 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8349 (let ((outline-level 'org-outline-level)
8350 (org-odd-levels-only nil) n)
8351 (save-excursion
8352 (goto-char (point-min))
8353 (while (re-search-forward "^\\*\\*+ " nil t)
8354 (setq n (- (length (match-string 0)) 2))
8355 (while (>= (setq n (1- n)) 0)
8356 (org-demote))
8357 (end-of-line 1))))))
8359 (defun org-convert-to-oddeven-levels ()
8360 "Convert an org-mode file with only odd levels to one with odd/even levels.
8361 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8362 file contains a section with an even level, conversion would
8363 destroy the structure of the file. An error is signaled in this
8364 case."
8365 (interactive)
8366 (goto-char (point-min))
8367 ;; First check if there are no even levels
8368 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8369 (org-show-set-visibility 'canonical)
8370 (error "Not all levels are odd in this file. Conversion not possible"))
8371 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8372 (let ((outline-regexp org-outline-regexp)
8373 (outline-level 'org-outline-level)
8374 (org-odd-levels-only nil) n)
8375 (save-excursion
8376 (goto-char (point-min))
8377 (while (re-search-forward "^\\*\\*+ " nil t)
8378 (setq n (/ (1- (length (match-string 0))) 2))
8379 (while (>= (setq n (1- n)) 0)
8380 (org-promote))
8381 (end-of-line 1))))))
8383 (defun org-tr-level (n)
8384 "Make N odd if required."
8385 (if org-odd-levels-only (1+ (/ n 2)) n))
8387 ;;; Vertical tree motion, cutting and pasting of subtrees
8389 (defun org-move-subtree-up (&optional arg)
8390 "Move the current subtree up past ARG headlines of the same level."
8391 (interactive "p")
8392 (org-move-subtree-down (- (prefix-numeric-value arg))))
8394 (defun org-move-subtree-down (&optional arg)
8395 "Move the current subtree down past ARG headlines of the same level."
8396 (interactive "p")
8397 (setq arg (prefix-numeric-value arg))
8398 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8399 'org-get-last-sibling))
8400 (ins-point (make-marker))
8401 (cnt (abs arg))
8402 (col (current-column))
8403 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8404 ;; Select the tree
8405 (org-back-to-heading)
8406 (setq beg0 (point))
8407 (save-excursion
8408 (setq ne-beg (org-back-over-empty-lines))
8409 (setq beg (point)))
8410 (save-match-data
8411 (save-excursion (outline-end-of-heading)
8412 (setq folded (outline-invisible-p)))
8413 (progn (org-end-of-subtree nil t)
8414 (unless (eobp) (backward-char))))
8415 (outline-next-heading)
8416 (setq ne-end (org-back-over-empty-lines))
8417 (setq end (point))
8418 (goto-char beg0)
8419 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8420 ;; include less whitespace
8421 (save-excursion
8422 (goto-char beg)
8423 (forward-line (- ne-beg ne-end))
8424 (setq beg (point))))
8425 ;; Find insertion point, with error handling
8426 (while (> cnt 0)
8427 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8428 (progn (goto-char beg0)
8429 (user-error "Cannot move past superior level or buffer limit")))
8430 (setq cnt (1- cnt)))
8431 (if (> arg 0)
8432 ;; Moving forward - still need to move over subtree
8433 (progn (org-end-of-subtree t t)
8434 (save-excursion
8435 (org-back-over-empty-lines)
8436 (or (bolp) (newline)))))
8437 (setq ne-ins (org-back-over-empty-lines))
8438 (move-marker ins-point (point))
8439 (setq txt (buffer-substring beg end))
8440 (org-save-markers-in-region beg end)
8441 (delete-region beg end)
8442 (org-remove-empty-overlays-at beg)
8443 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8444 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8445 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8446 (let ((bbb (point)))
8447 (insert-before-markers txt)
8448 (org-reinstall-markers-in-region bbb)
8449 (move-marker ins-point bbb))
8450 (or (bolp) (insert "\n"))
8451 (setq ins-end (point))
8452 (goto-char ins-point)
8453 (org-skip-whitespace)
8454 (when (and (< arg 0)
8455 (org-first-sibling-p)
8456 (> ne-ins ne-beg))
8457 ;; Move whitespace back to beginning
8458 (save-excursion
8459 (goto-char ins-end)
8460 (let ((kill-whole-line t))
8461 (kill-line (- ne-ins ne-beg)) (point)))
8462 (insert (make-string (- ne-ins ne-beg) ?\n)))
8463 (move-marker ins-point nil)
8464 (if folded
8465 (hide-subtree)
8466 (org-show-entry)
8467 (show-children)
8468 (org-cycle-hide-drawers 'children))
8469 (org-clean-visibility-after-subtree-move)
8470 ;; move back to the initial column we were at
8471 (move-to-column col)))
8473 (defvar org-subtree-clip ""
8474 "Clipboard for cut and paste of subtrees.
8475 This is actually only a copy of the kill, because we use the normal kill
8476 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8478 (defvar org-subtree-clip-folded nil
8479 "Was the last copied subtree folded?
8480 This is used to fold the tree back after pasting.")
8482 (defun org-cut-subtree (&optional n)
8483 "Cut the current subtree into the clipboard.
8484 With prefix arg N, cut this many sequential subtrees.
8485 This is a short-hand for marking the subtree and then cutting it."
8486 (interactive "p")
8487 (org-copy-subtree n 'cut))
8489 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8490 "Copy the current subtree it in the clipboard.
8491 With prefix arg N, copy this many sequential subtrees.
8492 This is a short-hand for marking the subtree and then copying it.
8493 If CUT is non-nil, actually cut the subtree.
8494 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8495 of some markers in the region, even if CUT is non-nil. This is
8496 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8497 (interactive "p")
8498 (let (beg end folded (beg0 (point)))
8499 (if (org-called-interactively-p 'any)
8500 (org-back-to-heading nil) ; take what looks like a subtree
8501 (org-back-to-heading t)) ; take what is really there
8502 (setq beg (point))
8503 (skip-chars-forward " \t\r\n")
8504 (save-match-data
8505 (if nosubtrees
8506 (outline-next-heading)
8507 (save-excursion (outline-end-of-heading)
8508 (setq folded (outline-invisible-p)))
8509 (ignore-errors (org-forward-heading-same-level (1- n) t))
8510 (org-end-of-subtree t t)))
8511 ;; Include the end of an inlinetask
8512 (when (and (featurep 'org-inlinetask)
8513 (looking-at-p (concat (org-inlinetask-outline-regexp)
8514 "END[ \t]*$")))
8515 (end-of-line))
8516 (setq end (point))
8517 (goto-char beg0)
8518 (when (> end beg)
8519 (setq org-subtree-clip-folded folded)
8520 (when (or cut force-store-markers)
8521 (org-save-markers-in-region beg end))
8522 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8523 (setq org-subtree-clip (current-kill 0))
8524 (message "%s: Subtree(s) with %d characters"
8525 (if cut "Cut" "Copied")
8526 (length org-subtree-clip)))))
8528 (defun org-paste-subtree (&optional level tree for-yank remove)
8529 "Paste the clipboard as a subtree, with modification of headline level.
8530 The entire subtree is promoted or demoted in order to match a new headline
8531 level.
8533 If the cursor is at the beginning of a headline, the same level as
8534 that headline is used to paste the tree.
8536 If not, the new level is derived from the *visible* headings
8537 before and after the insertion point, and taken to be the inferior headline
8538 level of the two. So if the previous visible heading is level 3 and the
8539 next is level 4 (or vice versa), level 4 will be used for insertion.
8540 This makes sure that the subtree remains an independent subtree and does
8541 not swallow low level entries.
8543 You can also force a different level, either by using a numeric prefix
8544 argument, or by inserting the heading marker by hand. For example, if the
8545 cursor is after \"*****\", then the tree will be shifted to level 5.
8547 If optional TREE is given, use this text instead of the kill ring.
8549 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8550 move back over whitespace before inserting, and move point to the end of
8551 the inserted text when done.
8553 When REMOVE is non-nil, remove the subtree from the clipboard."
8554 (interactive "P")
8555 (setq tree (or tree (and kill-ring (current-kill 0))))
8556 (unless (org-kill-is-subtree-p tree)
8557 (user-error "%s"
8558 (substitute-command-keys
8559 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8560 (org-with-limited-levels
8561 (let* ((visp (not (outline-invisible-p)))
8562 (txt tree)
8563 (^re_ "\\(\\*+\\)[ \t]*")
8564 (old-level (if (string-match org-outline-regexp-bol txt)
8565 (- (match-end 0) (match-beginning 0) 1)
8566 -1))
8567 (force-level (cond (level (prefix-numeric-value level))
8568 ((and (looking-at "[ \t]*$")
8569 (string-match
8570 "^\\*+$" (buffer-substring
8571 (point-at-bol) (point))))
8572 (- (match-end 0) (match-beginning 0)))
8573 ((and (bolp)
8574 (looking-at org-outline-regexp))
8575 (- (match-end 0) (point) 1))))
8576 (previous-level (save-excursion
8577 (condition-case nil
8578 (progn
8579 (outline-previous-visible-heading 1)
8580 (if (looking-at ^re_)
8581 (- (match-end 0) (match-beginning 0) 1)
8583 (error 1))))
8584 (next-level (save-excursion
8585 (condition-case nil
8586 (progn
8587 (or (looking-at org-outline-regexp)
8588 (outline-next-visible-heading 1))
8589 (if (looking-at ^re_)
8590 (- (match-end 0) (match-beginning 0) 1)
8592 (error 1))))
8593 (new-level (or force-level (max previous-level next-level)))
8594 (shift (if (or (= old-level -1)
8595 (= new-level -1)
8596 (= old-level new-level))
8598 (- new-level old-level)))
8599 (delta (if (> shift 0) -1 1))
8600 (func (if (> shift 0) 'org-demote 'org-promote))
8601 (org-odd-levels-only nil)
8602 beg end newend)
8603 ;; Remove the forced level indicator
8604 (if force-level
8605 (delete-region (point-at-bol) (point)))
8606 ;; Paste
8607 (beginning-of-line (if (bolp) 1 2))
8608 (setq beg (point))
8609 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8610 (insert-before-markers txt)
8611 (unless (string-match "\n\\'" txt) (insert "\n"))
8612 (setq newend (point))
8613 (org-reinstall-markers-in-region beg)
8614 (setq end (point))
8615 (goto-char beg)
8616 (skip-chars-forward " \t\n\r")
8617 (setq beg (point))
8618 (if (and (outline-invisible-p) visp)
8619 (save-excursion (outline-show-heading)))
8620 ;; Shift if necessary
8621 (unless (= shift 0)
8622 (save-restriction
8623 (narrow-to-region beg end)
8624 (while (not (= shift 0))
8625 (org-map-region func (point-min) (point-max))
8626 (setq shift (+ delta shift)))
8627 (goto-char (point-min))
8628 (setq newend (point-max))))
8629 (when (or (org-called-interactively-p 'interactive) for-yank)
8630 (message "Clipboard pasted as level %d subtree" new-level))
8631 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8632 kill-ring
8633 (eq org-subtree-clip (current-kill 0))
8634 org-subtree-clip-folded)
8635 ;; The tree was folded before it was killed/copied
8636 (hide-subtree))
8637 (and for-yank (goto-char newend))
8638 (and remove (setq kill-ring (cdr kill-ring))))))
8640 (defun org-kill-is-subtree-p (&optional txt)
8641 "Check if the current kill is an outline subtree, or a set of trees.
8642 Returns nil if kill does not start with a headline, or if the first
8643 headline level is not the largest headline level in the tree.
8644 So this will actually accept several entries of equal levels as well,
8645 which is OK for `org-paste-subtree'.
8646 If optional TXT is given, check this string instead of the current kill."
8647 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8648 (re (org-get-limited-outline-regexp))
8649 (^re (concat "^" re))
8650 (start-level (and kill
8651 (string-match
8652 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8653 kill)
8654 (- (match-end 2) (match-beginning 2) 1)))
8655 (start (1+ (or (match-beginning 2) -1))))
8656 (if (not start-level)
8657 (progn
8658 nil) ;; does not even start with a heading
8659 (catch 'exit
8660 (while (setq start (string-match ^re kill (1+ start)))
8661 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8662 (throw 'exit nil)))
8663 t))))
8665 (defvar org-markers-to-move nil
8666 "Markers that should be moved with a cut-and-paste operation.
8667 Those markers are stored together with their positions relative to
8668 the start of the region.")
8670 (defun org-save-markers-in-region (beg end)
8671 "Check markers in region.
8672 If these markers are between BEG and END, record their position relative
8673 to BEG, so that after moving the block of text, we can put the markers back
8674 into place.
8675 This function gets called just before an entry or tree gets cut from the
8676 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8677 called immediately, to move the markers with the entries."
8678 (setq org-markers-to-move nil)
8679 (when (featurep 'org-clock)
8680 (org-clock-save-markers-for-cut-and-paste beg end))
8681 (when (featurep 'org-agenda)
8682 (org-agenda-save-markers-for-cut-and-paste beg end)))
8684 (defun org-check-and-save-marker (marker beg end)
8685 "Check if MARKER is between BEG and END.
8686 If yes, remember the marker and the distance to BEG."
8687 (when (and (marker-buffer marker)
8688 (equal (marker-buffer marker) (current-buffer)))
8689 (if (and (>= marker beg) (< marker end))
8690 (push (cons marker (- marker beg)) org-markers-to-move))))
8692 (defun org-reinstall-markers-in-region (beg)
8693 "Move all remembered markers to their position relative to BEG."
8694 (mapc (lambda (x)
8695 (move-marker (car x) (+ beg (cdr x))))
8696 org-markers-to-move)
8697 (setq org-markers-to-move nil))
8699 (defun org-narrow-to-subtree ()
8700 "Narrow buffer to the current subtree."
8701 (interactive)
8702 (save-excursion
8703 (save-match-data
8704 (org-with-limited-levels
8705 (narrow-to-region
8706 (progn (org-back-to-heading t) (point))
8707 (progn (org-end-of-subtree t t)
8708 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8709 (point)))))))
8711 (defun org-narrow-to-block ()
8712 "Narrow buffer to the current block."
8713 (interactive)
8714 (let* ((case-fold-search t)
8715 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8716 "^[ \t]*#\\+end_.*")))
8717 (if blockp
8718 (narrow-to-region (car blockp) (cdr blockp))
8719 (user-error "Not in a block"))))
8721 (defun org-clone-subtree-with-time-shift (n &optional shift)
8722 "Clone the task (subtree) at point N times.
8723 The clones will be inserted as siblings.
8725 In interactive use, the user will be prompted for the number of
8726 clones to be produced. If the entry has a timestamp, the user
8727 will also be prompted for a time shift, which may be a repeater
8728 as used in time stamps, for example `+3d'. To disable this,
8729 you can call the function with a universal prefix argument.
8731 When a valid repeater is given and the entry contains any time
8732 stamps, the clones will become a sequence in time, with time
8733 stamps in the subtree shifted for each clone produced. If SHIFT
8734 is nil or the empty string, time stamps will be left alone. The
8735 ID property of the original subtree is removed.
8737 If the original subtree did contain time stamps with a repeater,
8738 the following will happen:
8739 - the repeater will be removed in each clone
8740 - an additional clone will be produced, with the current, unshifted
8741 date(s) in the entry.
8742 - the original entry will be placed *after* all the clones, with
8743 repeater intact.
8744 - the start days in the repeater in the original entry will be shifted
8745 to past the last clone.
8746 In this way you can spell out a number of instances of a repeating task,
8747 and still retain the repeater to cover future instances of the task."
8748 (interactive "nNumber of clones to produce: ")
8749 (let ((shift
8750 (or shift
8751 (if (and (not (equal current-prefix-arg '(4)))
8752 (save-excursion
8753 (re-search-forward org-ts-regexp-both
8754 (save-excursion
8755 (org-end-of-subtree t)
8756 (point)) t)))
8757 (read-from-minibuffer
8758 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8759 ""))) ;; No time shift
8760 (n-no-remove -1)
8761 (drawer-re org-drawer-regexp)
8762 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8763 beg end template task idprop
8764 shift-n shift-what doshift nmin nmax)
8765 (if (not (and (integerp n) (> n 0)))
8766 (user-error "Invalid number of replications %s" n))
8767 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8768 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8769 shift)))
8770 (user-error "Invalid shift specification %s" shift))
8771 (when doshift
8772 (setq shift-n (string-to-number (match-string 1 shift))
8773 shift-what (cdr (assoc (match-string 2 shift)
8774 '(("d" . day) ("w" . week)
8775 ("m" . month) ("y" . year))))))
8776 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8777 (setq nmin 1 nmax n)
8778 (org-back-to-heading t)
8779 (setq beg (point))
8780 (setq idprop (org-entry-get nil "ID"))
8781 (org-end-of-subtree t t)
8782 (or (bolp) (insert "\n"))
8783 (setq end (point))
8784 (setq template (buffer-substring beg end))
8785 (when (and doshift
8786 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8787 (delete-region beg end)
8788 (setq end beg)
8789 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8790 (goto-char end)
8791 (loop for n from nmin to nmax do
8792 ;; prepare clone
8793 (with-temp-buffer
8794 (insert template)
8795 (org-mode)
8796 (goto-char (point-min))
8797 (org-show-subtree)
8798 (and idprop (if org-clone-delete-id
8799 (org-entry-delete nil "ID")
8800 (org-id-get-create t)))
8801 (unless (= n 0)
8802 (while (re-search-forward org-clock-re nil t)
8803 (kill-whole-line))
8804 (goto-char (point-min))
8805 (while (re-search-forward drawer-re nil t)
8806 (org-remove-empty-drawer-at (point))))
8807 (goto-char (point-min))
8808 (when doshift
8809 (while (re-search-forward org-ts-regexp-both nil t)
8810 (org-timestamp-change (* n shift-n) shift-what))
8811 (unless (= n n-no-remove)
8812 (goto-char (point-min))
8813 (while (re-search-forward org-ts-regexp nil t)
8814 (save-excursion
8815 (goto-char (match-beginning 0))
8816 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8817 (delete-region (match-beginning 1) (match-end 1)))))))
8818 (setq task (buffer-string)))
8819 (insert task))
8820 (goto-char beg)))
8822 ;;; Outline Sorting
8824 (defun org-sort (with-case)
8825 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8826 Optional argument WITH-CASE means sort case-sensitively."
8827 (interactive "P")
8828 (cond
8829 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8830 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8832 (org-call-with-arg 'org-sort-entries with-case))))
8834 (defun org-sort-remove-invisible (s)
8835 "Remove invisible links from string S."
8836 (remove-text-properties 0 (length s) org-rm-props s)
8837 (while (string-match org-bracket-link-regexp s)
8838 (setq s (replace-match (if (match-end 2)
8839 (match-string 3 s)
8840 (match-string 1 s)) t t s)))
8841 (let ((st (format " %s " s)))
8842 (while (string-match org-emph-re st)
8843 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8844 (setq s (substring st 1 -1)))
8847 (defvar org-priority-regexp) ; defined later in the file
8849 (defvar org-after-sorting-entries-or-items-hook nil
8850 "Hook that is run after a bunch of entries or items have been sorted.
8851 When children are sorted, the cursor is in the parent line when this
8852 hook gets called. When a region or a plain list is sorted, the cursor
8853 will be in the first entry of the sorted region/list.")
8855 (defun org-sort-entries
8856 (&optional with-case sorting-type getkey-func compare-func property)
8857 "Sort entries on a certain level of an outline tree.
8858 If there is an active region, the entries in the region are sorted.
8859 Else, if the cursor is before the first entry, sort the top-level items.
8860 Else, the children of the entry at point are sorted.
8862 Sorting can be alphabetically, numerically, by date/time as given by
8863 a time stamp, by a property, by priority order, or by a custom function.
8865 The command prompts for the sorting type unless it has been given to the
8866 function through the SORTING-TYPE argument, which needs to be a character,
8867 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8868 the precise meaning of each character:
8870 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8871 c By creation time, which is assumed to be the first inactive time stamp
8872 at the beginning of a line.
8873 d By deadline date/time.
8874 k By clocking time.
8875 n Numerically, by converting the beginning of the entry/item to a number.
8876 o By order of TODO keywords.
8877 p By priority according to the cookie.
8878 r By the value of a property.
8879 s By scheduled date/time.
8880 t By date/time, either the first active time stamp in the entry, or, if
8881 none exist, by the first inactive one.
8883 Capital letters will reverse the sort order.
8885 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8886 called with point at the beginning of the record. It must return either
8887 a string or a number that should serve as the sorting key for that record.
8889 Comparing entries ignores case by default. However, with an optional argument
8890 WITH-CASE, the sorting considers case as well.
8892 Sorting is done against the visible part of the headlines, it ignores hidden
8893 links.
8895 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8896 (interactive "P")
8897 (let ((case-func (if with-case 'identity 'downcase))
8898 (cmstr
8899 ;; The clock marker is lost when using `sort-subr', let's
8900 ;; store the clocking string.
8901 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8902 (save-excursion
8903 (goto-char org-clock-marker)
8904 (looking-back "^.*") (match-string-no-properties 0))))
8905 start beg end stars re re2
8906 txt what tmp)
8907 ;; Find beginning and end of region to sort
8908 (cond
8909 ((org-region-active-p)
8910 ;; we will sort the region
8911 (setq end (region-end)
8912 what "region")
8913 (goto-char (region-beginning))
8914 (if (not (org-at-heading-p)) (outline-next-heading))
8915 (setq start (point)))
8916 ((or (org-at-heading-p)
8917 (ignore-errors (progn (org-back-to-heading) t)))
8918 ;; we will sort the children of the current headline
8919 (org-back-to-heading)
8920 (setq start (point)
8921 end (progn (org-end-of-subtree t t)
8922 (or (bolp) (insert "\n"))
8923 (when (>= (org-back-over-empty-lines) 1)
8924 (forward-line 1))
8925 (point))
8926 what "children")
8927 (goto-char start)
8928 (show-subtree)
8929 (outline-next-heading))
8931 ;; we will sort the top-level entries in this file
8932 (goto-char (point-min))
8933 (or (org-at-heading-p) (outline-next-heading))
8934 (setq start (point))
8935 (goto-char (point-max))
8936 (beginning-of-line 1)
8937 (when (looking-at ".*?\\S-")
8938 ;; File ends in a non-white line
8939 (end-of-line 1)
8940 (insert "\n"))
8941 (setq end (point-max))
8942 (setq what "top-level")
8943 (goto-char start)
8944 (show-all)))
8946 (setq beg (point))
8947 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8949 (looking-at "\\(\\*+\\)")
8950 (setq stars (match-string 1)
8951 re (concat "^" (regexp-quote stars) " +")
8952 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8953 txt (buffer-substring beg end))
8954 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8955 (if (and (not (equal stars "*")) (string-match re2 txt))
8956 (user-error "Region to sort contains a level above the first entry"))
8958 (unless sorting-type
8959 (message
8960 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8961 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8962 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8963 what)
8964 (setq sorting-type (read-char-exclusive))
8966 (unless getkey-func
8967 (and (= (downcase sorting-type) ?f)
8968 (setq getkey-func
8969 (org-icompleting-read "Sort using function: "
8970 obarray 'fboundp t nil nil))
8971 (setq getkey-func (intern getkey-func))))
8973 (and (= (downcase sorting-type) ?r)
8974 (not property)
8975 (setq property
8976 (org-icompleting-read "Property: "
8977 (mapcar 'list (org-buffer-property-keys t))
8978 nil t))))
8980 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8981 (message "Sorting entries...")
8983 (save-restriction
8984 (narrow-to-region start end)
8985 (let ((dcst (downcase sorting-type))
8986 (case-fold-search nil)
8987 (now (current-time)))
8988 (sort-subr
8989 (/= dcst sorting-type)
8990 ;; This function moves to the beginning character of the "record" to
8991 ;; be sorted.
8992 (lambda nil
8993 (if (re-search-forward re nil t)
8994 (goto-char (match-beginning 0))
8995 (goto-char (point-max))))
8996 ;; This function moves to the last character of the "record" being
8997 ;; sorted.
8998 (lambda nil
8999 (save-match-data
9000 (condition-case nil
9001 (outline-forward-same-level 1)
9002 (error
9003 (goto-char (point-max))))))
9004 ;; This function returns the value that gets sorted against.
9005 (lambda nil
9006 (cond
9007 ((= dcst ?n)
9008 (if (looking-at org-complex-heading-regexp)
9009 (string-to-number (org-sort-remove-invisible (match-string 4)))
9010 nil))
9011 ((= dcst ?a)
9012 (if (looking-at org-complex-heading-regexp)
9013 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9014 nil))
9015 ((= dcst ?k)
9016 (or (get-text-property (point) :org-clock-minutes) 0))
9017 ((= dcst ?t)
9018 (let ((end (save-excursion (outline-next-heading) (point))))
9019 (if (or (re-search-forward org-ts-regexp end t)
9020 (re-search-forward org-ts-regexp-both end t))
9021 (org-time-string-to-seconds (match-string 0))
9022 (org-float-time now))))
9023 ((= dcst ?c)
9024 (let ((end (save-excursion (outline-next-heading) (point))))
9025 (if (re-search-forward
9026 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9027 end t)
9028 (org-time-string-to-seconds (match-string 0))
9029 (org-float-time now))))
9030 ((= dcst ?s)
9031 (let ((end (save-excursion (outline-next-heading) (point))))
9032 (if (re-search-forward org-scheduled-time-regexp end t)
9033 (org-time-string-to-seconds (match-string 1))
9034 (org-float-time now))))
9035 ((= dcst ?d)
9036 (let ((end (save-excursion (outline-next-heading) (point))))
9037 (if (re-search-forward org-deadline-time-regexp end t)
9038 (org-time-string-to-seconds (match-string 1))
9039 (org-float-time now))))
9040 ((= dcst ?p)
9041 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9042 (string-to-char (match-string 2))
9043 org-default-priority))
9044 ((= dcst ?r)
9045 (or (org-entry-get nil property) ""))
9046 ((= dcst ?o)
9047 (if (looking-at org-complex-heading-regexp)
9048 (let* ((m (match-string 2))
9049 (s (if (member m org-done-keywords) '- '+)))
9050 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9051 ((= dcst ?f)
9052 (if getkey-func
9053 (progn
9054 (setq tmp (funcall getkey-func))
9055 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9056 tmp)
9057 (error "Invalid key function `%s'" getkey-func)))
9058 (t (error "Invalid sorting type `%c'" sorting-type))))
9060 (cond
9061 ((= dcst ?a) 'string<)
9062 ((= dcst ?f) compare-func)
9063 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9064 (run-hooks 'org-after-sorting-entries-or-items-hook)
9065 ;; Reset the clock marker if needed
9066 (when cmstr
9067 (save-excursion
9068 (goto-char start)
9069 (search-forward cmstr nil t)
9070 (move-marker org-clock-marker (point))))
9071 (message "Sorting entries...done")))
9073 ;;; The orgstruct minor mode
9075 ;; Define a minor mode which can be used in other modes in order to
9076 ;; integrate the org-mode structure editing commands.
9078 ;; This is really a hack, because the org-mode structure commands use
9079 ;; keys which normally belong to the major mode. Here is how it
9080 ;; works: The minor mode defines all the keys necessary to operate the
9081 ;; structure commands, but wraps the commands into a function which
9082 ;; tests if the cursor is currently at a headline or a plain list
9083 ;; item. If that is the case, the structure command is used,
9084 ;; temporarily setting many Org-mode variables like regular
9085 ;; expressions for filling etc. However, when any of those keys is
9086 ;; used at a different location, function uses `key-binding' to look
9087 ;; up if the key has an associated command in another currently active
9088 ;; keymap (minor modes, major mode, global), and executes that
9089 ;; command. There might be problems if any of the keys is otherwise
9090 ;; used as a prefix key.
9092 (defcustom orgstruct-heading-prefix-regexp ""
9093 "Regexp that matches the custom prefix of Org headlines in
9094 orgstruct(++)-mode."
9095 :group 'org
9096 :version "24.4"
9097 :package-version '(Org . "8.3")
9098 :type 'regexp)
9099 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9101 (defcustom orgstruct-setup-hook nil
9102 "Hook run after orgstruct-mode-map is filled."
9103 :group 'org
9104 :version "24.4"
9105 :package-version '(Org . "8.0")
9106 :type 'hook)
9108 (defvar orgstruct-initialized nil)
9110 (defvar org-local-vars nil
9111 "List of local variables, for use by `orgstruct-mode'.")
9113 ;;;###autoload
9114 (define-minor-mode orgstruct-mode
9115 "Toggle the minor mode `orgstruct-mode'.
9116 This mode is for using Org-mode structure commands in other
9117 modes. The following keys behave as if Org-mode were active, if
9118 the cursor is on a headline, or on a plain list item (both as
9119 defined by Org-mode)."
9120 nil " OrgStruct" (make-sparse-keymap)
9121 (funcall (if orgstruct-mode
9122 'add-to-invisibility-spec
9123 'remove-from-invisibility-spec)
9124 '(outline . t))
9125 (when orgstruct-mode
9126 (org-load-modules-maybe)
9127 (unless orgstruct-initialized
9128 (orgstruct-setup)
9129 (setq orgstruct-initialized t))))
9131 ;;;###autoload
9132 (defun turn-on-orgstruct ()
9133 "Unconditionally turn on `orgstruct-mode'."
9134 (orgstruct-mode 1))
9136 (defvar org-fb-vars nil)
9137 (make-variable-buffer-local 'org-fb-vars)
9138 (defun orgstruct++-mode (&optional arg)
9139 "Toggle `orgstruct-mode', the enhanced version of it.
9140 In addition to setting orgstruct-mode, this also exports all
9141 indentation and autofilling variables from org-mode into the
9142 buffer. It will also recognize item context in multiline items."
9143 (interactive "P")
9144 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9145 (if (< arg 1)
9146 (progn (orgstruct-mode -1)
9147 (mapc (lambda(v)
9148 (org-set-local (car v)
9149 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9150 org-fb-vars))
9151 (orgstruct-mode 1)
9152 (setq org-fb-vars nil)
9153 (unless org-local-vars
9154 (setq org-local-vars (org-get-local-variables)))
9155 (let (var val)
9156 (mapc
9157 (lambda (x)
9158 (when (string-match
9159 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9160 (symbol-name (car x)))
9161 (setq var (car x) val (nth 1 x))
9162 (push (list var `(quote ,(eval var))) org-fb-vars)
9163 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9164 org-local-vars)
9165 (org-set-local 'orgstruct-is-++ t))))
9167 (defvar orgstruct-is-++ nil
9168 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9169 (make-variable-buffer-local 'orgstruct-is-++)
9171 ;;;###autoload
9172 (defun turn-on-orgstruct++ ()
9173 "Unconditionally turn on `orgstruct++-mode'."
9174 (orgstruct++-mode 1))
9176 (defun orgstruct-error ()
9177 "Error when there is no default binding for a structure key."
9178 (interactive)
9179 (funcall (if (fboundp 'user-error)
9180 'user-error
9181 'error)
9182 "This key has no function outside structure elements"))
9184 (defun orgstruct-setup ()
9185 "Setup orgstruct keymap."
9186 (dolist (cell '((org-demote . t)
9187 (org-metaleft . t)
9188 (org-metaright . t)
9189 (org-promote . t)
9190 (org-shiftmetaleft . t)
9191 (org-shiftmetaright . t)
9192 org-backward-element
9193 org-backward-heading-same-level
9194 org-ctrl-c-ret
9195 org-ctrl-c-minus
9196 org-ctrl-c-star
9197 org-cycle
9198 org-forward-heading-same-level
9199 org-insert-heading
9200 org-insert-heading-respect-content
9201 org-kill-note-or-show-branches
9202 org-mark-subtree
9203 org-meta-return
9204 org-metadown
9205 org-metaup
9206 org-narrow-to-subtree
9207 org-promote-subtree
9208 org-reveal
9209 org-shiftdown
9210 org-shiftleft
9211 org-shiftmetadown
9212 org-shiftmetaup
9213 org-shiftright
9214 org-shifttab
9215 org-shifttab
9216 org-shiftup
9217 org-show-subtree
9218 org-sort
9219 org-up-element
9220 outline-demote
9221 outline-next-visible-heading
9222 outline-previous-visible-heading
9223 outline-promote
9224 outline-up-heading
9225 show-children))
9226 (let ((f (or (car-safe cell) cell))
9227 (disable-when-heading-prefix (cdr-safe cell)))
9228 (when (fboundp f)
9229 (let ((new-bindings))
9230 (dolist (binding (nconc (where-is-internal f org-mode-map)
9231 (where-is-internal f outline-mode-map)))
9232 (push binding new-bindings)
9233 ;; TODO use local-function-key-map
9234 (dolist (rep '(("<tab>" . "TAB")
9235 ("<return>" . "RET")
9236 ("<escape>" . "ESC")
9237 ("<delete>" . "DEL")))
9238 (setq binding (read-kbd-macro
9239 (let ((case-fold-search))
9240 (replace-regexp-in-string
9241 (regexp-quote (cdr rep))
9242 (car rep)
9243 (key-description binding)))))
9244 (pushnew binding new-bindings :test 'equal)))
9245 (dolist (binding new-bindings)
9246 (let ((key (lookup-key orgstruct-mode-map binding)))
9247 (when (or (not key) (numberp key))
9248 (ignore-errors
9249 (org-defkey orgstruct-mode-map
9250 binding
9251 (orgstruct-make-binding
9252 f binding disable-when-heading-prefix))))))))))
9253 (run-hooks 'orgstruct-setup-hook))
9255 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9256 "Create a function for binding in the structure minor mode.
9257 FUN is the command to call inside a table. KEY is the key that
9258 should be checked in for a command to execute outside of tables.
9259 Non-nil `disable-when-heading-prefix' means to disable the command
9260 if `orgstruct-heading-prefix-regexp' is not empty."
9261 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9262 (let ((nname name)
9263 (i 0))
9264 (while (fboundp (intern nname))
9265 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9266 (setq name (intern nname)))
9267 (eval
9268 (let ((bindings '((org-heading-regexp
9269 (concat "^"
9270 orgstruct-heading-prefix-regexp
9271 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9272 (org-outline-regexp
9273 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9274 (org-outline-regexp-bol
9275 (concat "^" org-outline-regexp))
9276 (outline-regexp org-outline-regexp)
9277 (outline-heading-end-regexp "\n")
9278 (outline-level 'org-outline-level)
9279 (outline-heading-alist))))
9280 `(defun ,name (arg)
9281 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9282 "Outside of structure, run the binding of `"
9283 (key-description key) "'."
9284 (when disable-when-heading-prefix
9285 (concat
9286 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9287 "back to the default binding due to limitations of Org's implementation of\n"
9288 "`" (symbol-name fun) "'.")))
9289 (interactive "p")
9290 (let* ((disable
9291 ,(and disable-when-heading-prefix
9292 '(not (string= orgstruct-heading-prefix-regexp ""))))
9293 (fallback
9294 (or disable
9295 (not
9296 (let* ,bindings
9297 (org-context-p 'headline 'item
9298 ,(when (memq fun
9299 '(org-insert-heading
9300 org-insert-heading-respect-content
9301 org-meta-return))
9302 '(when orgstruct-is-++
9303 'item-body))))))))
9304 (if fallback
9305 (let* ((orgstruct-mode)
9306 (binding
9307 (let ((key ,key))
9308 (catch 'exit
9309 (dolist
9310 (rep
9311 '(nil
9312 ("<\\([^>]*\\)tab>" . "\\1TAB")
9313 ("<\\([^>]*\\)return>" . "\\1RET")
9314 ("<\\([^>]*\\)escape>" . "\\1ESC")
9315 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9316 nil)
9317 (when rep
9318 (setq key (read-kbd-macro
9319 (let ((case-fold-search))
9320 (replace-regexp-in-string
9321 (car rep)
9322 (cdr rep)
9323 (key-description key))))))
9324 (when (key-binding key)
9325 (throw 'exit (key-binding key))))))))
9326 (if (keymapp binding)
9327 (org-set-transient-map binding)
9328 (let ((func (or binding
9329 (unless disable
9330 'orgstruct-error))))
9331 (when func
9332 (call-interactively func)))))
9333 (org-run-like-in-org-mode
9334 (lambda ()
9335 (interactive)
9336 (let* ,bindings
9337 (call-interactively ',fun)))))))))
9338 name))
9340 (defun org-contextualize-keys (alist contexts)
9341 "Return valid elements in ALIST depending on CONTEXTS.
9343 `org-agenda-custom-commands' or `org-capture-templates' are the
9344 values used for ALIST, and `org-agenda-custom-commands-contexts'
9345 or `org-capture-templates-contexts' are the associated contexts
9346 definitions."
9347 (let ((contexts
9348 ;; normalize contexts
9349 (mapcar
9350 (lambda(c) (cond ((listp (cadr c))
9351 (list (car c) (car c) (cadr c)))
9352 ((string= "" (cadr c))
9353 (list (car c) (car c) (caddr c)))
9354 (t c))) contexts))
9355 (a alist) c r s)
9356 ;; loop over all commands or templates
9357 (while (setq c (pop a))
9358 (let (vrules repl)
9359 (cond
9360 ((not (assoc (car c) contexts))
9361 (push c r))
9362 ((and (assoc (car c) contexts)
9363 (setq vrules (org-contextualize-validate-key
9364 (car c) contexts)))
9365 (mapc (lambda (vr)
9366 (when (not (equal (car vr) (cadr vr)))
9367 (setq repl vr))) vrules)
9368 (if (not repl) (push c r)
9369 (push (cadr repl) s)
9370 (push
9371 (cons (car c)
9372 (cdr (or (assoc (cadr repl) alist)
9373 (error "Undefined key `%s' as contextual replacement for `%s'"
9374 (cadr repl) (car c)))))
9375 r))))))
9376 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9377 (delq
9379 (delete-dups
9380 (mapcar (lambda (x)
9381 (let ((tpl (car x)))
9382 (when (not (delq
9384 (mapcar (lambda(y)
9385 (equal y tpl)) s))) x)))
9386 (reverse r))))))
9388 (defun org-contextualize-validate-key (key contexts)
9389 "Check CONTEXTS for agenda or capture KEY."
9390 (let (r rr res)
9391 (while (setq r (pop contexts))
9392 (mapc
9393 (lambda (rr)
9394 (when
9395 (and (equal key (car r))
9396 (if (functionp rr) (funcall rr)
9397 (or (and (eq (car rr) 'in-file)
9398 (buffer-file-name)
9399 (string-match (cdr rr) (buffer-file-name)))
9400 (and (eq (car rr) 'in-mode)
9401 (string-match (cdr rr) (symbol-name major-mode)))
9402 (and (eq (car rr) 'in-buffer)
9403 (string-match (cdr rr) (buffer-name)))
9404 (when (and (eq (car rr) 'not-in-file)
9405 (buffer-file-name))
9406 (not (string-match (cdr rr) (buffer-file-name))))
9407 (when (eq (car rr) 'not-in-mode)
9408 (not (string-match (cdr rr) (symbol-name major-mode))))
9409 (when (eq (car rr) 'not-in-buffer)
9410 (not (string-match (cdr rr) (buffer-name)))))))
9411 (push r res)))
9412 (car (last r))))
9413 (delete-dups (delq nil res))))
9415 (defun org-context-p (&rest contexts)
9416 "Check if local context is any of CONTEXTS.
9417 Possible values in the list of contexts are `table', `headline', and `item'."
9418 (let ((pos (point)))
9419 (goto-char (point-at-bol))
9420 (prog1 (or (and (memq 'table contexts)
9421 (looking-at "[ \t]*|"))
9422 (and (memq 'headline contexts)
9423 (looking-at org-outline-regexp))
9424 (and (memq 'item contexts)
9425 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9426 (and (memq 'item-body contexts)
9427 (org-in-item-p)))
9428 (goto-char pos))))
9430 (defun org-get-local-variables ()
9431 "Return a list of all local variables in an Org mode buffer."
9432 (let (varlist)
9433 (with-current-buffer (get-buffer-create "*Org tmp*")
9434 (erase-buffer)
9435 (org-mode)
9436 (setq varlist (buffer-local-variables)))
9437 (kill-buffer "*Org tmp*")
9438 (delq nil
9439 (mapcar
9440 (lambda (x)
9441 (setq x
9442 (if (symbolp x)
9443 (list x)
9444 (list (car x) (cdr x))))
9445 (if (and (not (get (car x) 'org-state))
9446 (string-match
9447 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9448 (symbol-name (car x))))
9449 x nil))
9450 varlist))))
9452 (defun org-clone-local-variables (from-buffer &optional regexp)
9453 "Clone local variables from FROM-BUFFER.
9454 Optional argument REGEXP selects variables to clone."
9455 (mapc
9456 (lambda (pair)
9457 (and (symbolp (car pair))
9458 (or (null regexp)
9459 (string-match regexp (symbol-name (car pair))))
9460 (set (make-local-variable (car pair))
9461 (cdr pair))))
9462 (buffer-local-variables from-buffer)))
9464 ;;;###autoload
9465 (defun org-run-like-in-org-mode (cmd)
9466 "Run a command, pretending that the current buffer is in Org-mode.
9467 This will temporarily bind local variables that are typically bound in
9468 Org-mode to the values they have in Org-mode, and then interactively
9469 call CMD."
9470 (org-load-modules-maybe)
9471 (unless org-local-vars
9472 (setq org-local-vars (org-get-local-variables)))
9473 (let (binds)
9474 (dolist (var org-local-vars)
9475 (when (or (not (boundp (car var)))
9476 (eq (symbol-value (car var))
9477 (default-value (car var))))
9478 (push (list (car var) `(quote ,(cadr var))) binds)))
9479 (eval `(let ,binds
9480 (call-interactively (quote ,cmd))))))
9482 (defun org-get-category (&optional pos force-refresh)
9483 "Get the category applying to position POS."
9484 (save-match-data
9485 (if force-refresh (org-refresh-category-properties))
9486 (let ((pos (or pos (point))))
9487 (or (get-text-property pos 'org-category)
9488 (progn (org-refresh-category-properties)
9489 (get-text-property pos 'org-category))))))
9491 ;;; Refresh properties
9493 (defun org-refresh-properties (dprop tprop)
9494 "Refresh buffer text properties.
9495 DPROP is the drawer property and TPROP is either the
9496 corresponding text property to set, or an alist with each element
9497 being a text property (as a symbol) and a function to apply to
9498 the value of the drawer property."
9499 (let ((case-fold-search t)
9500 (inhibit-read-only t))
9501 (org-with-silent-modifications
9502 (save-excursion
9503 (save-restriction
9504 (widen)
9505 (goto-char (point-min))
9506 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9507 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9509 (defun org-refresh-property (tprop p)
9510 "Refresh the buffer text property TPROP from the drawer property P.
9511 The refresh happens only for the current tree (not subtree)."
9512 (unless (org-before-first-heading-p)
9513 (save-excursion
9514 (org-back-to-heading t)
9515 (if (symbolp tprop)
9516 ;; TPROP is a text property symbol
9517 (put-text-property
9518 (point) (or (outline-next-heading) (point-max)) tprop p)
9519 ;; TPROP is an alist with (properties . function) elements
9520 (dolist (al tprop)
9521 (save-excursion
9522 (put-text-property
9523 (line-beginning-position) (or (outline-next-heading) (point-max))
9524 (car al)
9525 (funcall (cdr al) p))))))))
9527 (defun org-refresh-category-properties ()
9528 "Refresh category text properties in the buffer."
9529 (let ((case-fold-search t)
9530 (inhibit-read-only t)
9531 (default-category
9532 (cond ((null org-category)
9533 (if buffer-file-name
9534 (file-name-sans-extension
9535 (file-name-nondirectory buffer-file-name))
9536 "???"))
9537 ((symbolp org-category) (symbol-name org-category))
9538 (t org-category))))
9539 (org-with-silent-modifications
9540 (org-with-wide-buffer
9541 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9542 ;; This is the default category for the buffer. If none is
9543 ;; found, fall-back to `org-category' or buffer file name.
9544 (put-text-property
9545 (point-min) (point-max)
9546 'org-category
9547 (catch 'buffer-category
9548 (goto-char (point-max))
9549 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9550 (let ((element (org-element-at-point)))
9551 (when (eq (org-element-type element) 'keyword)
9552 (throw 'buffer-category
9553 (org-element-property :value element)))))
9554 default-category))
9555 ;; Set sub-tree specific categories.
9556 (goto-char (point-min))
9557 (let ((regexp (org-re-property "CATEGORY")))
9558 (while (re-search-forward regexp nil t)
9559 (let ((value (org-match-string-no-properties 3)))
9560 (when (org-at-property-p)
9561 (put-text-property
9562 (save-excursion (org-back-to-heading t) (point))
9563 (save-excursion (org-end-of-subtree t t) (point))
9564 'org-category
9565 value)))))))))
9567 (defun org-refresh-stats-properties ()
9568 "Refresh stats text properties in the buffer."
9569 (let (stats)
9570 (org-with-silent-modifications
9571 (save-excursion
9572 (save-restriction
9573 (widen)
9574 (goto-char (point-min))
9575 (while (re-search-forward
9576 (concat org-outline-regexp-bol ".*"
9577 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9578 nil t)
9579 (setq stats (cond ((equal (match-string 3) "0") 0)
9580 ((match-string 2)
9581 (/ (* (string-to-number (match-string 2)) 100)
9582 (string-to-number (match-string 3))))
9583 (t (string-to-number (match-string 1)))))
9584 (org-back-to-heading t)
9585 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9586 'org-stats stats)))))))
9588 (defun org-refresh-effort-properties ()
9589 "Refresh effort properties"
9590 (org-refresh-properties
9591 org-effort-property
9592 '((effort . identity)
9593 (effort-minutes . org-duration-string-to-minutes))))
9595 ;;;; Link Stuff
9597 ;;; Link abbreviations
9599 (defun org-link-expand-abbrev (link)
9600 "Apply replacements as defined in `org-link-abbrev-alist'."
9601 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9602 (let* ((key (match-string 1 link))
9603 (as (or (assoc key org-link-abbrev-alist-local)
9604 (assoc key org-link-abbrev-alist)))
9605 (tag (and (match-end 2) (match-string 3 link)))
9606 rpl)
9607 (if (not as)
9608 link
9609 (setq rpl (cdr as))
9610 (cond
9611 ((symbolp rpl) (funcall rpl tag))
9612 ((string-match "%(\\([^)]+\\))" rpl)
9613 (replace-match
9614 (save-match-data
9615 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9616 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9617 ((string-match "%h" rpl)
9618 (replace-match (url-hexify-string (or tag "")) t t rpl))
9619 (t (concat rpl tag)))))
9620 link))
9622 ;;; Storing and inserting links
9624 (defvar org-insert-link-history nil
9625 "Minibuffer history for links inserted with `org-insert-link'.")
9627 (defvar org-stored-links nil
9628 "Contains the links stored with `org-store-link'.")
9630 (defvar org-store-link-plist nil
9631 "Plist with info about the most recently link created with `org-store-link'.")
9633 (defvar org-link-protocols nil
9634 "Link protocols added to Org-mode using `org-add-link-type'.")
9636 (defvar org-store-link-functions nil
9637 "List of functions that are called to create and store a link.
9638 Each function will be called in turn until one returns a non-nil
9639 value. Each function should check if it is responsible for creating
9640 this link (for example by looking at the major mode).
9641 If not, it must exit and return nil.
9642 If yes, it should return a non-nil value after a calling
9643 `org-store-link-props' with a list of properties and values.
9644 Special properties are:
9646 :type The link prefix, like \"http\". This must be given.
9647 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9648 This is obligatory as well.
9649 :description Optional default description for the second pair
9650 of brackets in an Org-mode link. The user can still change
9651 this when inserting this link into an Org-mode buffer.
9653 In addition to these, any additional properties can be specified
9654 and then used in capture templates.")
9656 (defun org-add-link-type (type &optional follow export)
9657 "Add TYPE to the list of `org-link-types'.
9658 Re-compute all regular expressions depending on `org-link-types'
9660 FOLLOW and EXPORT are two functions.
9662 FOLLOW should take the link path as the single argument and do whatever
9663 is necessary to follow the link, for example find a file or display
9664 a mail message.
9666 EXPORT should format the link path for export to one of the export formats.
9667 It should be a function accepting three arguments:
9669 path the path of the link, the text after the prefix (like \"http:\")
9670 desc the description of the link, if any
9671 format the export format, a symbol like `html' or `latex' or `ascii'.
9673 The function may use the FORMAT information to return different values
9674 depending on the format. The return value will be put literally into
9675 the exported file. If the return value is nil, this means Org should
9676 do what it normally does with links which do not have EXPORT defined.
9678 Org mode has a built-in default for exporting links. If you are happy with
9679 this default, there is no need to define an export function for the link
9680 type. For a simple example of an export function, see `org-bbdb.el'."
9681 (add-to-list 'org-link-types type t)
9682 (org-make-link-regexps)
9683 (org-element-update-syntax)
9684 (if (assoc type org-link-protocols)
9685 (setcdr (assoc type org-link-protocols) (list follow export))
9686 (push (list type follow export) org-link-protocols)))
9688 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9689 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9691 ;;;###autoload
9692 (defun org-store-link (arg)
9693 "\\<org-mode-map>Store an org-link to the current location.
9694 This link is added to `org-stored-links' and can later be inserted
9695 into an org-buffer with \\[org-insert-link].
9697 For some link types, a prefix arg is interpreted.
9698 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9699 For file links, arg negates `org-context-in-file-links'.
9701 A double prefix arg force skipping storing functions that are not
9702 part of Org's core.
9704 A triple prefix arg force storing a link for each line in the
9705 active region."
9706 (interactive "P")
9707 (org-load-modules-maybe)
9708 (if (and (equal arg '(64)) (org-region-active-p))
9709 (save-excursion
9710 (let ((end (region-end)))
9711 (goto-char (region-beginning))
9712 (set-mark (point))
9713 (while (< (point-at-eol) end)
9714 (move-end-of-line 1) (activate-mark)
9715 (let (current-prefix-arg)
9716 (call-interactively 'org-store-link))
9717 (move-beginning-of-line 2)
9718 (set-mark (point)))))
9719 (org-with-limited-levels
9720 (setq org-store-link-plist nil)
9721 (let (link cpltxt desc description search
9722 txt custom-id agenda-link sfuns sfunsn)
9723 (cond
9725 ;; Store a link using an external link type
9726 ((and (not (equal arg '(16)))
9727 (setq sfuns
9728 (delq
9729 nil (mapcar (lambda (f)
9730 (let (fs) (if (funcall f) (push f fs))))
9731 org-store-link-functions))
9732 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9733 (or (and (cdr sfuns)
9734 (funcall (intern
9735 (completing-read
9736 "Which function for creating the link? "
9737 sfunsn nil t (car sfunsn)))))
9738 (funcall (caar sfuns)))
9739 (setq link (plist-get org-store-link-plist :link)
9740 desc (or (plist-get org-store-link-plist
9741 :description) link))))
9743 ;; Store a link from a source code buffer
9744 ((org-src-edit-buffer-p)
9745 (let (label gc)
9746 (while (or (not label)
9747 (save-excursion
9748 (save-restriction
9749 (widen)
9750 (goto-char (point-min))
9751 (re-search-forward
9752 (regexp-quote (format org-coderef-label-format label))
9753 nil t))))
9754 (when label (message "Label exists already") (sit-for 2))
9755 (setq label (read-string "Code line label: " label)))
9756 (end-of-line 1)
9757 (setq link (format org-coderef-label-format label))
9758 (setq gc (- 79 (length link)))
9759 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9760 (insert link)
9761 (setq link (concat "(" label ")") desc nil)))
9763 ;; We are in the agenda, link to referenced location
9764 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9765 (let ((m (or (get-text-property (point) 'org-hd-marker)
9766 (get-text-property (point) 'org-marker))))
9767 (when m
9768 (org-with-point-at m
9769 (setq agenda-link
9770 (if (org-called-interactively-p 'any)
9771 (call-interactively 'org-store-link)
9772 (org-store-link nil)))))))
9774 ((eq major-mode 'calendar-mode)
9775 (let ((cd (calendar-cursor-to-date)))
9776 (setq link
9777 (format-time-string
9778 (car org-time-stamp-formats)
9779 (apply 'encode-time
9780 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9781 nil nil nil))))
9782 (org-store-link-props :type "calendar" :date cd)))
9784 ((eq major-mode 'help-mode)
9785 (setq link (concat "help:" (save-excursion
9786 (goto-char (point-min))
9787 (looking-at "^[^ ]+")
9788 (match-string 0))))
9789 (org-store-link-props :type "help"))
9791 ((eq major-mode 'w3-mode)
9792 (setq cpltxt (if (and (buffer-name)
9793 (not (string-match "Untitled" (buffer-name))))
9794 (buffer-name)
9795 (url-view-url t))
9796 link (url-view-url t))
9797 (org-store-link-props :type "w3" :url (url-view-url t)))
9799 ((eq major-mode 'image-mode)
9800 (setq cpltxt (concat "file:"
9801 (abbreviate-file-name buffer-file-name))
9802 link cpltxt)
9803 (org-store-link-props :type "image" :file buffer-file-name))
9805 ;; In dired, store a link to the file of the current line
9806 ((derived-mode-p 'dired-mode)
9807 (let ((file (dired-get-filename nil t)))
9808 (setq file (if file
9809 (abbreviate-file-name
9810 (expand-file-name (dired-get-filename nil t)))
9811 ;; otherwise, no file so use current directory.
9812 default-directory))
9813 (setq cpltxt (concat "file:" file)
9814 link cpltxt)))
9816 ((setq search (run-hook-with-args-until-success
9817 'org-create-file-search-functions))
9818 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9819 "::" search))
9820 (setq cpltxt (or description link)))
9822 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9823 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9824 (cond
9825 ;; Store a link using the target at point
9826 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9827 (setq cpltxt
9828 (concat "file:"
9829 (abbreviate-file-name
9830 (buffer-file-name (buffer-base-buffer)))
9831 "::" (match-string 1))
9832 link cpltxt))
9833 ((and (featurep 'org-id)
9834 (or (eq org-id-link-to-org-use-id t)
9835 (and (org-called-interactively-p 'any)
9836 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9837 (and (eq org-id-link-to-org-use-id
9838 'create-if-interactive-and-no-custom-id)
9839 (not custom-id))))
9840 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9841 ;; Store a link using the ID at point
9842 (setq link (condition-case nil
9843 (prog1 (org-id-store-link)
9844 (setq desc (or (plist-get org-store-link-plist
9845 :description)
9846 "")))
9847 (error
9848 ;; Probably before first headline, link only to file
9849 (concat "file:"
9850 (abbreviate-file-name
9851 (buffer-file-name (buffer-base-buffer))))))))
9853 ;; Just link to current headline
9854 (setq cpltxt (concat "file:"
9855 (abbreviate-file-name
9856 (buffer-file-name (buffer-base-buffer)))))
9857 ;; Add a context search string
9858 (when (org-xor org-context-in-file-links arg)
9859 (let* ((ee (org-element-at-point))
9860 (et (org-element-type ee))
9861 (ev (plist-get (cadr ee) :value))
9862 (ek (plist-get (cadr ee) :key))
9863 (eok (and (stringp ek) (string-match "name" ek))))
9864 (setq txt (cond
9865 ((org-at-heading-p) nil)
9866 ((and (eq et 'keyword) eok) ev)
9867 ((org-region-active-p)
9868 (buffer-substring (region-beginning) (region-end)))))
9869 (when (or (null txt) (string-match "\\S-" txt))
9870 (setq cpltxt
9871 (concat cpltxt "::"
9872 (condition-case nil
9873 (org-make-org-heading-search-string txt)
9874 (error "")))
9875 desc (or (and (eq et 'keyword) eok ev)
9876 (nth 4 (ignore-errors (org-heading-components)))
9877 "NONE")))))
9878 (if (string-match "::\\'" cpltxt)
9879 (setq cpltxt (substring cpltxt 0 -2)))
9880 (setq link cpltxt))))
9882 ((buffer-file-name (buffer-base-buffer))
9883 ;; Just link to this file here.
9884 (setq cpltxt (concat "file:"
9885 (abbreviate-file-name
9886 (buffer-file-name (buffer-base-buffer)))))
9887 ;; Add a context string.
9888 (when (org-xor org-context-in-file-links arg)
9889 (setq txt (if (org-region-active-p)
9890 (buffer-substring (region-beginning) (region-end))
9891 (buffer-substring (point-at-bol) (point-at-eol))))
9892 ;; Only use search option if there is some text.
9893 (when (string-match "\\S-" txt)
9894 (setq cpltxt
9895 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9896 desc "NONE")))
9897 (setq link cpltxt))
9899 ((org-called-interactively-p 'interactive)
9900 (user-error "No method for storing a link from this buffer"))
9902 (t (setq link nil)))
9904 ;; We're done setting link and desc, clean up
9905 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9906 (setq link (or link cpltxt)
9907 desc (or desc cpltxt))
9908 (cond ((equal desc "NONE") (setq desc nil))
9909 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9910 (let ((d0 (match-string 3 desc))
9911 (p0 (match-string 5 desc)))
9912 (setq desc
9913 (replace-regexp-in-string
9914 org-bracket-link-regexp
9915 (concat (or p0 d0)
9916 (if (equal (length (match-string 0 desc))
9917 (length desc)) "*" "")) desc)))))
9919 ;; Return the link
9920 (if (not (and (or (org-called-interactively-p 'any)
9921 executing-kbd-macro) link))
9922 (or agenda-link (and link (org-make-link-string link desc)))
9923 (push (list link desc) org-stored-links)
9924 (message "Stored: %s" (or desc link))
9925 (when custom-id
9926 (setq link (concat "file:" (abbreviate-file-name
9927 (buffer-file-name)) "::#" custom-id))
9928 (push (list link desc) org-stored-links))
9929 (car org-stored-links))))))
9931 (defun org-store-link-props (&rest plist)
9932 "Store link properties, extract names and addresses."
9933 (let (x adr)
9934 (when (setq x (plist-get plist :from))
9935 (setq adr (mail-extract-address-components x))
9936 (setq plist (plist-put plist :fromname (car adr)))
9937 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9938 (when (setq x (plist-get plist :to))
9939 (setq adr (mail-extract-address-components x))
9940 (setq plist (plist-put plist :toname (car adr)))
9941 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9942 (let ((from (plist-get plist :from))
9943 (to (plist-get plist :to)))
9944 (when (and from to org-from-is-user-regexp)
9945 (setq plist
9946 (plist-put plist :fromto
9947 (if (string-match org-from-is-user-regexp from)
9948 (concat "to %t")
9949 (concat "from %f"))))))
9950 (setq org-store-link-plist plist))
9952 (defun org-add-link-props (&rest plist)
9953 "Add these properties to the link property list."
9954 (let (key value)
9955 (while plist
9956 (setq key (pop plist) value (pop plist))
9957 (setq org-store-link-plist
9958 (plist-put org-store-link-plist key value)))))
9960 (defun org-email-link-description (&optional fmt)
9961 "Return the description part of an email link.
9962 This takes information from `org-store-link-plist' and formats it
9963 according to FMT (default from `org-email-link-description-format')."
9964 (setq fmt (or fmt org-email-link-description-format))
9965 (let* ((p org-store-link-plist)
9966 (to (plist-get p :toaddress))
9967 (from (plist-get p :fromaddress))
9968 (table
9969 (list
9970 (cons "%c" (plist-get p :fromto))
9971 (cons "%F" (plist-get p :from))
9972 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9973 (cons "%T" (plist-get p :to))
9974 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9975 (cons "%s" (plist-get p :subject))
9976 (cons "%d" (plist-get p :date))
9977 (cons "%m" (plist-get p :message-id)))))
9978 (when (string-match "%c" fmt)
9979 ;; Check if the user wrote this message
9980 (if (and org-from-is-user-regexp from to
9981 (save-match-data (string-match org-from-is-user-regexp from)))
9982 (setq fmt (replace-match "to %t" t t fmt))
9983 (setq fmt (replace-match "from %f" t t fmt))))
9984 (org-replace-escapes fmt table)))
9986 (defun org-make-org-heading-search-string (&optional string)
9987 "Make search string for the current headline or STRING."
9988 (let ((s (or string
9989 (and (derived-mode-p 'org-mode)
9990 (save-excursion
9991 (org-back-to-heading t)
9992 (org-element-property :raw-value (org-element-at-point))))))
9993 (lines org-context-in-file-links))
9994 (or string (setq s (concat "*" s))) ; Add * for headlines
9995 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9996 (when (and string (integerp lines) (> lines 0))
9997 (let ((slines (org-split-string s "\n")))
9998 (when (< lines (length slines))
9999 (setq s (mapconcat
10000 'identity
10001 (reverse (nthcdr (- (length slines) lines)
10002 (reverse slines))) "\n")))))
10003 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10005 (defun org-make-link-string (link &optional description)
10006 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10007 (unless (string-match "\\S-" link)
10008 (error "Empty link"))
10009 (when (and description
10010 (stringp description)
10011 (not (string-match "\\S-" description)))
10012 (setq description nil))
10013 (when (stringp description)
10014 ;; Remove brackets from the description, they are fatal.
10015 (while (string-match "\\[" description)
10016 (setq description (replace-match "{" t t description)))
10017 (while (string-match "\\]" description)
10018 (setq description (replace-match "}" t t description))))
10019 (when (equal link description)
10020 ;; No description needed, it is identical
10021 (setq description nil))
10022 (when (and (not description)
10023 (not (string-match (org-image-file-name-regexp) link))
10024 (not (equal link (org-link-escape link))))
10025 (setq description (org-extract-attributes link)))
10026 (setq link
10027 (cond ((string-match (org-image-file-name-regexp) link) link)
10028 ((string-match org-link-types-re link)
10029 (concat (match-string 1 link)
10030 (org-link-escape (substring link (match-end 1)))))
10031 (t (org-link-escape link))))
10032 (concat "[[" link "]"
10033 (if description (concat "[" description "]") "")
10034 "]"))
10036 (defconst org-link-escape-chars
10037 ;;%20 %5B %5D
10038 '(?\ ?\[ ?\])
10039 "List of characters that should be escaped in a link when stored to Org.
10040 This is the list that is used for internal purposes.")
10042 (defconst org-link-escape-chars-browser
10043 ;;%20 %22
10044 '(?\ ?\")
10045 "List of characters to be escaped before handing over to the browser.
10046 If you consider using this constant then you probably want to use
10047 the function `org-link-escape-browser' instead. See there why
10048 this constant is a candidate to be removed once Org drops support
10049 for Emacs 24.1 and 24.2.")
10051 (defun org-link-escape (text &optional table merge)
10052 "Return percent escaped representation of TEXT.
10053 TEXT is a string with the text to escape.
10054 Optional argument TABLE is a list with characters that should be
10055 escaped. When nil, `org-link-escape-chars' is used.
10056 If optional argument MERGE is set, merge TABLE into
10057 `org-link-escape-chars'."
10058 ;; Don't escape chars in internal links
10059 (if (string-match "^\\*[[:alnum:]]+" text)
10060 text
10061 (cond
10062 ((and table merge)
10063 (mapc (lambda (defchr)
10064 (unless (member defchr table)
10065 (setq table (cons defchr table))))
10066 org-link-escape-chars))
10067 ((null table)
10068 (setq table org-link-escape-chars)))
10069 (mapconcat
10070 (lambda (char)
10071 (if (or (member char table)
10072 (and (or (< char 32) (= char ?\%) (> char 126))
10073 org-url-hexify-p))
10074 (mapconcat (lambda (sequence-element)
10075 (format "%%%.2X" sequence-element))
10076 (or (encode-coding-char char 'utf-8)
10077 (error "Unable to percent escape character: %s"
10078 (char-to-string char))) "")
10079 (char-to-string char))) text "")))
10081 (defun org-link-escape-browser (text)
10082 "Escape some characters before handing over to the browser.
10083 This function is a candidate to be removed together with the
10084 constant `org-link-escape-chars-browser' once Org drops support
10085 for Emacs 24.1 and 24.2. All calls to this function will have to
10086 be replaced with `url-encode-url' which is available since Emacs
10087 24.3.1."
10088 ;; Example with the Org link
10089 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10090 ;; to open the browser with +subject:"Release 8.2" filled into the
10091 ;; query field: In this case the variable TEXT contains the
10092 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10093 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10094 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10095 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10096 (if (fboundp 'url-encode-url)
10097 (url-encode-url text)
10098 (if (org-string-match-p
10099 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10100 text)
10101 (org-link-escape text org-link-escape-chars-browser)
10102 text)))
10104 (defun org-link-unescape (str)
10105 "Unhex hexified Unicode strings as returned from the JavaScript function
10106 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10107 (unless (and (null str) (string= "" str))
10108 (let ((pos 0) (case-fold-search t) unhexed)
10109 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10110 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10111 (setq str (replace-match unhexed t t str))
10112 (setq pos (+ pos (length unhexed))))))
10113 str)
10115 (defun org-link-unescape-compound (hex)
10116 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10117 Note: this function also decodes single byte encodings like
10118 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10119 (save-match-data
10120 (let* ((bytes (cdr (split-string hex "%")))
10121 (ret "")
10122 (eat 0)
10123 (sum 0))
10124 (while bytes
10125 (let* ((val (string-to-number (pop bytes) 16))
10126 (shift-xor
10127 (if (= 0 eat)
10128 (cond
10129 ((>= val 252) (cons 6 252))
10130 ((>= val 248) (cons 5 248))
10131 ((>= val 240) (cons 4 240))
10132 ((>= val 224) (cons 3 224))
10133 ((>= val 192) (cons 2 192))
10134 (t (cons 0 0)))
10135 (cons 6 128))))
10136 (if (>= val 192) (setq eat (car shift-xor)))
10137 (setq val (logxor val (cdr shift-xor)))
10138 (setq sum (+ (lsh sum (car shift-xor)) val))
10139 (if (> eat 0) (setq eat (- eat 1)))
10140 (cond
10141 ((= 0 eat) ;multi byte
10142 (setq ret (concat ret (org-char-to-string sum)))
10143 (setq sum 0))
10144 ((not bytes) ; single byte(s)
10145 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10146 ret)))
10148 (defun org-link-unescape-single-byte-sequence (hex)
10149 "Unhexify hex-encoded single byte character sequences."
10150 (mapconcat (lambda (byte)
10151 (char-to-string (string-to-number byte 16)))
10152 (cdr (split-string hex "%")) ""))
10154 (defun org-xor (a b)
10155 "Exclusive or."
10156 (if a (not b) b))
10158 (defun org-fixup-message-id-for-http (s)
10159 "Replace special characters in a message id, so it can be used in an http query."
10160 (when (string-match "%" s)
10161 (setq s (mapconcat (lambda (c)
10162 (if (eq c ?%)
10163 "%25"
10164 (char-to-string c)))
10165 s "")))
10166 (while (string-match "<" s)
10167 (setq s (replace-match "%3C" t t s)))
10168 (while (string-match ">" s)
10169 (setq s (replace-match "%3E" t t s)))
10170 (while (string-match "@" s)
10171 (setq s (replace-match "%40" t t s)))
10174 (defun org-link-prettify (link)
10175 "Return a human-readable representation of LINK.
10176 The car of LINK must be a raw link.
10177 The cdr of LINK must be either a link description or nil."
10178 (let ((desc (or (cadr link) "<no description>")))
10179 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10180 "<" (car link) ">")))
10182 ;;;###autoload
10183 (defun org-insert-link-global ()
10184 "Insert a link like Org-mode does.
10185 This command can be called in any mode to insert a link in Org-mode syntax."
10186 (interactive)
10187 (org-load-modules-maybe)
10188 (org-run-like-in-org-mode 'org-insert-link))
10190 (defun org-insert-all-links (arg &optional pre post)
10191 "Insert all links in `org-stored-links'.
10192 When a universal prefix, do not delete the links from `org-stored-links'.
10193 When `ARG' is a number, insert the last N link(s).
10194 `PRE' and `POST' are optional arguments to define a string to
10195 prepend or to append."
10196 (interactive "P")
10197 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10198 (links (copy-seq org-stored-links))
10199 (pr (or pre "- "))
10200 (po (or post "\n"))
10201 (cnt 1) l)
10202 (if (null org-stored-links)
10203 (message "No link to insert")
10204 (while (and (or (listp arg) (>= arg cnt))
10205 (setq l (if (listp arg)
10206 (pop links)
10207 (pop org-stored-links))))
10208 (setq cnt (1+ cnt))
10209 (insert pr)
10210 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10211 (insert po)))))
10213 (defun org-insert-last-stored-link (arg)
10214 "Insert the last link stored in `org-stored-links'."
10215 (interactive "p")
10216 (org-insert-all-links arg "" "\n"))
10218 (defun org-link-fontify-links-to-this-file ()
10219 "Fontify links to the current file in `org-stored-links'."
10220 (let ((f (buffer-file-name)) a b)
10221 (setq a (mapcar (lambda(l)
10222 (let ((ll (car l)))
10223 (when (and (string-match "^file:\\(.+\\)::" ll)
10224 (equal f (expand-file-name (match-string 1 ll))))
10225 ll)))
10226 org-stored-links))
10227 (when (featurep 'org-id)
10228 (setq b (mapcar (lambda(l)
10229 (let ((ll (car l)))
10230 (when (and (string-match "^id:\\(.+\\)$" ll)
10231 (equal f (expand-file-name
10232 (or (org-id-find-id-file
10233 (match-string 1 ll)) ""))))
10234 ll)))
10235 org-stored-links)))
10236 (mapcar (lambda(l)
10237 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10238 (delq nil (append a b)))))
10240 (defvar org-link-links-in-this-file nil)
10241 (defun org-insert-link (&optional complete-file link-location default-description)
10242 "Insert a link. At the prompt, enter the link.
10244 Completion can be used to insert any of the link protocol prefixes like
10245 http or ftp in use.
10247 The history can be used to select a link previously stored with
10248 `org-store-link'. When the empty string is entered (i.e. if you just
10249 press RET at the prompt), the link defaults to the most recently
10250 stored link. As SPC triggers completion in the minibuffer, you need to
10251 use M-SPC or C-q SPC to force the insertion of a space character.
10253 You will also be prompted for a description, and if one is given, it will
10254 be displayed in the buffer instead of the link.
10256 If there is already a link at point, this command will allow you to edit link
10257 and description parts.
10259 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10260 be selected using completion. The path to the file will be relative to the
10261 current directory if the file is in the current directory or a subdirectory.
10262 Otherwise, the link will be the absolute path as completed in the minibuffer
10263 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10264 option `org-link-file-path-type'.
10266 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10267 the current directory or below.
10269 With three \\[universal-argument] prefixes, negate the meaning of
10270 `org-keep-stored-link-after-insertion'.
10272 If `org-make-link-description-function' is non-nil, this function will be
10273 called with the link target, and the result will be the default
10274 link description.
10276 If the LINK-LOCATION parameter is non-nil, this value will be
10277 used as the link location instead of reading one interactively.
10279 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10280 be used as the default description."
10281 (interactive "P")
10282 (let* ((wcf (current-window-configuration))
10283 (origbuf (current-buffer))
10284 (region (if (org-region-active-p)
10285 (buffer-substring (region-beginning) (region-end))))
10286 (remove (and region (list (region-beginning) (region-end))))
10287 (desc region)
10288 tmphist ; byte-compile incorrectly complains about this
10289 (link link-location)
10290 (abbrevs org-link-abbrev-alist-local)
10291 entry file all-prefixes auto-desc)
10292 (cond
10293 (link-location) ; specified by arg, just use it.
10294 ((org-in-regexp org-bracket-link-regexp 1)
10295 ;; We do have a link at point, and we are going to edit it.
10296 (setq remove (list (match-beginning 0) (match-end 0)))
10297 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10298 (setq link (read-string "Link: "
10299 (org-link-unescape
10300 (org-match-string-no-properties 1)))))
10301 ((or (org-in-regexp org-angle-link-re)
10302 (org-in-regexp org-plain-link-re))
10303 ;; Convert to bracket link
10304 (setq remove (list (match-beginning 0) (match-end 0))
10305 link (read-string "Link: "
10306 (org-remove-angle-brackets (match-string 0)))))
10307 ((member complete-file '((4) (16)))
10308 ;; Completing read for file names.
10309 (setq link (org-file-complete-link complete-file)))
10311 ;; Read link, with completion for stored links.
10312 (org-link-fontify-links-to-this-file)
10313 (org-switch-to-buffer-other-window "*Org Links*")
10314 (with-current-buffer "*Org Links*"
10315 (erase-buffer)
10316 (insert "Insert a link.
10317 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10318 (when org-stored-links
10319 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10320 (insert (mapconcat 'org-link-prettify
10321 (reverse org-stored-links) "\n")))
10322 (goto-char (point-min)))
10323 (let ((cw (selected-window)))
10324 (select-window (get-buffer-window "*Org Links*" 'visible))
10325 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10326 (unless (pos-visible-in-window-p (point-max))
10327 (org-fit-window-to-buffer))
10328 (and (window-live-p cw) (select-window cw)))
10329 ;; Fake a link history, containing the stored links.
10330 (setq tmphist (append (mapcar 'car org-stored-links)
10331 org-insert-link-history))
10332 (setq all-prefixes (append (mapcar 'car abbrevs)
10333 (mapcar 'car org-link-abbrev-alist)
10334 org-link-types))
10335 (unwind-protect
10336 (progn
10337 (setq link
10338 (org-completing-read
10339 "Link: "
10340 (append
10341 (mapcar (lambda (x) (concat x ":"))
10342 all-prefixes)
10343 (mapcar 'car org-stored-links))
10344 nil nil nil
10345 'tmphist
10346 (caar org-stored-links)))
10347 (if (not (string-match "\\S-" link))
10348 (user-error "No link selected"))
10349 (mapc (lambda(l)
10350 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10351 org-stored-links)
10352 (if (or (member link all-prefixes)
10353 (and (equal ":" (substring link -1))
10354 (member (substring link 0 -1) all-prefixes)
10355 (setq link (substring link 0 -1))))
10356 (setq link (with-current-buffer origbuf
10357 (org-link-try-special-completion link)))))
10358 (set-window-configuration wcf)
10359 (kill-buffer "*Org Links*"))
10360 (setq entry (assoc link org-stored-links))
10361 (or entry (push link org-insert-link-history))
10362 (setq desc (or desc (nth 1 entry)))))
10364 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10365 (not org-keep-stored-link-after-insertion))
10366 (setq org-stored-links (delq (assoc link org-stored-links)
10367 org-stored-links)))
10369 (if (and (string-match org-plain-link-re link)
10370 (not (string-match org-ts-regexp link)))
10371 ;; URL-like link, normalize the use of angular brackets.
10372 (setq link (org-remove-angle-brackets link)))
10374 ;; Check if we are linking to the current file with a search
10375 ;; option If yes, simplify the link by using only the search
10376 ;; option.
10377 (when (and buffer-file-name
10378 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10379 (let* ((path (match-string 1 link))
10380 (case-fold-search nil)
10381 (search (match-string 2 link)))
10382 (save-match-data
10383 (if (equal (file-truename buffer-file-name) (file-truename path))
10384 ;; We are linking to this same file, with a search option
10385 (setq link search)))))
10387 ;; Check if we can/should use a relative path. If yes, simplify the link
10388 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10389 (let* ((type (match-string 1 link))
10390 (path (match-string 2 link))
10391 (origpath path)
10392 (case-fold-search nil))
10393 (cond
10394 ((or (eq org-link-file-path-type 'absolute)
10395 (equal complete-file '(16)))
10396 (setq path (abbreviate-file-name (expand-file-name path))))
10397 ((eq org-link-file-path-type 'noabbrev)
10398 (setq path (expand-file-name path)))
10399 ((eq org-link-file-path-type 'relative)
10400 (setq path (file-relative-name path)))
10402 (save-match-data
10403 (if (string-match (concat "^" (regexp-quote
10404 (expand-file-name
10405 (file-name-as-directory
10406 default-directory))))
10407 (expand-file-name path))
10408 ;; We are linking a file with relative path name.
10409 (setq path (substring (expand-file-name path)
10410 (match-end 0)))
10411 (setq path (abbreviate-file-name (expand-file-name path)))))))
10412 (setq link (concat type path))
10413 (if (equal desc origpath)
10414 (setq desc path))))
10416 (if org-make-link-description-function
10417 (setq desc
10418 (or (condition-case nil
10419 (funcall org-make-link-description-function link desc)
10420 (error (progn (message "Can't get link description from `%s'"
10421 (symbol-name org-make-link-description-function))
10422 (sit-for 2) nil)))
10423 (read-string "Description: " default-description)))
10424 (if default-description (setq desc default-description)
10425 (setq desc (or (and auto-desc desc)
10426 (read-string "Description: " desc)))))
10428 (unless (string-match "\\S-" desc) (setq desc nil))
10429 (if remove (apply 'delete-region remove))
10430 (insert (org-make-link-string link desc))))
10432 (defun org-link-try-special-completion (type)
10433 "If there is completion support for link type TYPE, offer it."
10434 (let ((fun (intern (concat "org-" type "-complete-link"))))
10435 (if (functionp fun)
10436 (funcall fun)
10437 (read-string "Link (no completion support): " (concat type ":")))))
10439 (defun org-file-complete-link (&optional arg)
10440 "Create a file link using completion."
10441 (let ((file (org-iread-file-name "File: "))
10442 (pwd (file-name-as-directory (expand-file-name ".")))
10443 (pwd1 (file-name-as-directory (abbreviate-file-name
10444 (expand-file-name ".")))))
10445 (cond ((equal arg '(16))
10446 (concat "file:"
10447 (abbreviate-file-name (expand-file-name file))))
10448 ((string-match
10449 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10450 (concat "file:" (match-string 1 file)))
10451 ((string-match
10452 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10453 (expand-file-name file))
10454 (concat "file:"
10455 (match-string 1 (expand-file-name file))))
10456 (t (concat "file:" file)))))
10458 (defun org-iread-file-name (&rest args)
10459 "Read-file-name using `ido-mode' speedup if available.
10460 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10461 See `read-file-name' for a description of parameters."
10462 (org-without-partial-completion
10463 (if (and org-completion-use-ido
10464 (fboundp 'ido-read-file-name)
10465 (org-bound-and-true-p ido-mode)
10466 (listp (nth 1 args)))
10467 (let ((ido-enter-matching-directory nil))
10468 (apply #'ido-read-file-name args))
10469 (apply #'read-file-name args))))
10471 (defun org-completing-read (&rest args)
10472 "Completing-read with SPACE being a normal character."
10473 (let ((enable-recursive-minibuffers t)
10474 (minibuffer-local-completion-map
10475 (copy-keymap minibuffer-local-completion-map)))
10476 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10477 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10478 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10479 (apply 'org-icompleting-read args)))
10481 (defun org-completing-read-no-i (&rest args)
10482 (let (org-completion-use-ido org-completion-use-iswitchb)
10483 (apply 'org-completing-read args)))
10485 (defun org-iswitchb-completing-read (prompt choices &rest args)
10486 "Use iswitch as a completing-read replacement to choose from choices.
10487 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10488 from."
10489 (let* ((iswitchb-use-virtual-buffers nil)
10490 (iswitchb-make-buflist-hook
10491 (lambda ()
10492 (setq iswitchb-temp-buflist choices))))
10493 (iswitchb-read-buffer prompt)))
10495 (defun org-icompleting-read (&rest args)
10496 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10497 Should be called like `completing-read'."
10498 (org-without-partial-completion
10499 (if (not (listp (nth 1 args)))
10500 ;; Ido only supports lists as the COLLECTION argument. Use
10501 ;; default completion function when second argument is not
10502 ;; a list.
10503 (apply #'completing-read args)
10504 (let ((ido-enter-matching-directory nil))
10505 (apply (cond ((and org-completion-use-ido
10506 (fboundp 'ido-completing-read)
10507 (org-bound-and-true-p ido-mode))
10508 #'ido-completing-read)
10509 ((and org-completion-use-iswitchb
10510 (org-bound-and-true-p iswitchb-mode))
10511 #'org-iswitchb-completing-read)
10512 (t #'completing-read))
10513 (pop args)
10514 (if (org-some #'consp (car args))
10515 (mapcar #'car (pop args))
10516 (pop args))
10517 args)))))
10519 (defun org-extract-attributes (s)
10520 "Extract the attributes cookie from a string and set as text property."
10521 (let (a attr (start 0) key value)
10522 (save-match-data
10523 (when (string-match "{{\\([^}]+\\)}}$" s)
10524 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10525 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10526 (setq key (match-string 1 a) value (match-string 2 a)
10527 start (match-end 0)
10528 attr (plist-put attr (intern key) value))))
10529 (org-add-props s nil 'org-attr attr))
10532 ;;; Opening/following a link
10534 (defvar org-link-search-failed nil)
10536 (defvar org-open-link-functions nil
10537 "Hook for functions finding a plain text link.
10538 These functions must take a single argument, the link content.
10539 They will be called for links that look like [[link text][description]]
10540 when LINK TEXT does not have a protocol like \"http:\" and does not look
10541 like a filename (e.g. \"./blue.png\").
10543 These functions will be called *before* Org attempts to resolve the
10544 link by doing text searches in the current buffer - so if you want a
10545 link \"[[target]]\" to still find \"<<target>>\", your function should
10546 handle this as a special case.
10548 When the function does handle the link, it must return a non-nil value.
10549 If it decides that it is not responsible for this link, it must return
10550 nil to indicate that that Org-mode can continue with other options
10551 like exact and fuzzy text search.")
10553 (defun org-next-link (&optional search-backward)
10554 "Move forward to the next link.
10555 If the link is in hidden text, expose it."
10556 (interactive "P")
10557 (when (and org-link-search-failed (eq this-command last-command))
10558 (goto-char (point-min))
10559 (message "Link search wrapped back to beginning of buffer"))
10560 (setq org-link-search-failed nil)
10561 (let* ((pos (point))
10562 (ct (org-context))
10563 (a (assoc :link ct))
10564 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10565 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10566 ((looking-at org-any-link-re)
10567 ;; Don't stay stuck at link without an org-link face
10568 (forward-char (if search-backward -1 1))))
10569 (if (funcall srch-fun org-any-link-re nil t)
10570 (progn
10571 (goto-char (match-beginning 0))
10572 (if (outline-invisible-p) (org-show-context)))
10573 (goto-char pos)
10574 (setq org-link-search-failed t)
10575 (message "No further link found"))))
10577 (defun org-previous-link ()
10578 "Move backward to the previous link.
10579 If the link is in hidden text, expose it."
10580 (interactive)
10581 (funcall 'org-next-link t))
10583 (defun org-translate-link (s)
10584 "Translate a link string if a translation function has been defined."
10585 (if (and org-link-translation-function
10586 (fboundp org-link-translation-function)
10587 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10588 (progn
10589 (setq s (funcall org-link-translation-function
10590 (match-string 1 s) (match-string 2 s)))
10591 (concat (car s) ":" (cdr s)))
10594 (defun org-translate-link-from-planner (type path)
10595 "Translate a link from Emacs Planner syntax so that Org can follow it.
10596 This is still an experimental function, your mileage may vary."
10597 (cond
10598 ((member type '("http" "https" "news" "ftp"))
10599 ;; standard Internet links are the same.
10600 nil)
10601 ((and (equal type "irc") (string-match "^//" path))
10602 ;; Planner has two / at the beginning of an irc link, we have 1.
10603 ;; We should have zero, actually....
10604 (setq path (substring path 1)))
10605 ((and (equal type "lisp") (string-match "^/" path))
10606 ;; Planner has a slash, we do not.
10607 (setq type "elisp" path (substring path 1)))
10608 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10609 ;; A typical message link. Planner has the id after the final slash,
10610 ;; we separate it with a hash mark
10611 (setq path (concat (match-string 1 path) "#"
10612 (org-remove-angle-brackets (match-string 2 path))))))
10613 (cons type path))
10615 (defun org-find-file-at-mouse (ev)
10616 "Open file link or URL at mouse."
10617 (interactive "e")
10618 (mouse-set-point ev)
10619 (org-open-at-point 'in-emacs))
10621 (defun org-open-at-mouse (ev)
10622 "Open file link or URL at mouse.
10623 See the docstring of `org-open-file' for details."
10624 (interactive "e")
10625 (mouse-set-point ev)
10626 (if (eq major-mode 'org-agenda-mode)
10627 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10628 (org-open-at-point))
10630 (defvar org-window-config-before-follow-link nil
10631 "The window configuration before following a link.
10632 This is saved in case the need arises to restore it.")
10634 (defvar org-open-link-marker (make-marker)
10635 "Marker pointing to the location where `org-open-at-point' was called.")
10637 ;;;###autoload
10638 (defun org-open-at-point-global ()
10639 "Follow a link like Org-mode does.
10640 This command can be called in any mode to follow a link that has
10641 Org-mode syntax."
10642 (interactive)
10643 (org-run-like-in-org-mode 'org-open-at-point))
10645 ;;;###autoload
10646 (defun org-open-link-from-string (s &optional arg reference-buffer)
10647 "Open a link in the string S, as if it was in Org-mode."
10648 (interactive "sLink: \nP")
10649 (let ((reference-buffer (or reference-buffer (current-buffer))))
10650 (with-temp-buffer
10651 (let ((org-inhibit-startup (not reference-buffer)))
10652 (org-mode)
10653 (insert s)
10654 (goto-char (point-min))
10655 (when reference-buffer
10656 (setq org-link-abbrev-alist-local
10657 (with-current-buffer reference-buffer
10658 org-link-abbrev-alist-local)))
10659 (org-open-at-point arg reference-buffer)))))
10661 (defvar org-open-at-point-functions nil
10662 "Hook that is run when following a link at point.
10664 Functions in this hook must return t if they identify and follow
10665 a link at point. If they don't find anything interesting at point,
10666 they must return nil.")
10668 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10669 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10670 (defun org-open-at-point (&optional arg reference-buffer)
10671 "Open link, timestamp, footnote or tags at point.
10673 When point is on a link, follow it. Normally, files will be
10674 opened by an appropriate application. If the optional prefix
10675 argument ARG is non-nil, Emacs will visit the file. With
10676 a double prefix argument, try to open outside of Emacs, in the
10677 application the system uses for this file type.
10679 When point is on a timestamp, open the agenda at the day
10680 specified.
10682 When point is a footnote definition, move to the first reference
10683 found. If it is on a reference, move to the associated
10684 definition.
10686 When point is on a headline, display a list of every link in the
10687 entry, so it is possible to pick one, or all, of them. If point
10688 is on a tag, call `org-tags-view' instead.
10690 When optional argument REFERENCE-BUFFER is non-nil, it should
10691 specify a buffer from where the link search should happen. This
10692 is used internally by `org-open-link-from-string'.
10694 On top of syntactically correct links, this function will open
10695 the link at point in comments or comment blocks and the first
10696 link in a property drawer line."
10697 (interactive "P")
10698 ;; On a code block, open block's results.
10699 (unless (call-interactively 'org-babel-open-src-block-result)
10700 (org-load-modules-maybe)
10701 (move-marker org-open-link-marker (point))
10702 (setq org-window-config-before-follow-link (current-window-configuration))
10703 (org-remove-occur-highlights nil nil t)
10704 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10705 (let* ((context
10706 ;; Only consider supported types, even if they are not
10707 ;; the closest one.
10708 (org-element-lineage
10709 (org-element-context)
10710 '(comment comment-block footnote-definition footnote-reference
10711 headline inlinetask keyword link node-property
10712 timestamp)
10714 (type (org-element-type context))
10715 (value (org-element-property :value context)))
10716 (cond
10717 ((not context) (user-error "No link found"))
10718 ;; Exception: open timestamps and links in properties
10719 ;; drawers, keywords and comments.
10720 ((memq type '(comment comment-block keyword node-property))
10721 (cond ((org-in-regexp org-any-link-re)
10722 (org-open-link-from-string (match-string-no-properties 0)))
10723 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10724 (org-follow-timestamp-link))
10725 (t (user-error "No link found"))))
10726 ;; On a headline or an inlinetask, but not on a timestamp,
10727 ;; a link, a footnote reference or on tags.
10728 ((and (memq type '(headline inlinetask))
10729 ;; Not on tags.
10730 (progn (save-excursion (beginning-of-line)
10731 (looking-at org-complex-heading-regexp))
10732 (or (not (match-beginning 5))
10733 (< (point) (match-beginning 5)))))
10734 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10735 (links (car data))
10736 (links-end (cdr data)))
10737 (if links
10738 (dolist (link (if (stringp links) (list links) links))
10739 (search-forward link nil links-end)
10740 (goto-char (match-beginning 0))
10741 (org-open-at-point))
10742 (require 'org-attach)
10743 (org-attach-reveal 'if-exists))))
10744 ;; Do nothing on white spaces after an object, unless point
10745 ;; is right after it.
10746 ((> (point)
10747 (save-excursion
10748 (goto-char (org-element-property :end context))
10749 (skip-chars-backward " \t")
10750 (point)))
10751 (user-error "No link found"))
10752 ((eq type 'timestamp) (org-follow-timestamp-link))
10753 ;; On tags within a headline or an inlinetask.
10754 ((and (memq type '(headline inlinetask))
10755 (progn (save-excursion (beginning-of-line)
10756 (looking-at org-complex-heading-regexp))
10757 (and (match-beginning 5)
10758 (>= (point) (match-beginning 5)))))
10759 (org-tags-view arg (substring (match-string 5) 0 -1)))
10760 ((eq type 'link)
10761 ;; When link is located within the description of another
10762 ;; link (e.g., an inline image), always open the parent
10763 ;; link.
10764 (let*((link (let ((up (org-element-property :parent context)))
10765 (if (eq (org-element-type up) 'link) up context)))
10766 (type (org-element-property :type link))
10767 (path (org-link-unescape (org-element-property :path link))))
10768 ;; Switch back to REFERENCE-BUFFER needed when called in
10769 ;; a temporary buffer through `org-open-link-from-string'.
10770 (with-current-buffer (or reference-buffer (current-buffer))
10771 (cond
10772 ((equal type "file")
10773 (if (string-match "[*?{]" (file-name-nondirectory path))
10774 (dired path)
10775 ;; Look into `org-link-protocols' in order to find
10776 ;; a DEDICATED-FUNCTION to open file. The function
10777 ;; will be applied on raw link instead of parsed
10778 ;; link due to the limitation in `org-add-link-type'
10779 ;; ("open" function called with a single argument).
10780 ;; If no such function is found, fallback to
10781 ;; `org-open-file'.
10783 ;; Note : "file+emacs" and "file+sys" types are
10784 ;; hard-coded in order to escape the previous
10785 ;; limitation.
10786 (let* ((option (org-element-property :search-option link))
10787 (app (org-element-property :application link))
10788 (dedicated-function
10789 (nth 1 (assoc app org-link-protocols))))
10790 (if dedicated-function
10791 (funcall dedicated-function
10792 (concat path
10793 (and option (concat "::" option))))
10794 (apply 'org-open-file
10795 path
10796 (cond (arg)
10797 ((equal app "emacs") 'emacs)
10798 ((equal app "sys") 'system))
10799 (cond ((not option) nil)
10800 ((org-string-match-p "\\`[0-9]+\\'" option)
10801 (list (string-to-number option)))
10802 (t (list nil
10803 (org-link-unescape option)))))))))
10804 ((assoc type org-link-protocols)
10805 (funcall (nth 1 (assoc type org-link-protocols)) path))
10806 ((equal type "help")
10807 (let ((f-or-v (intern path)))
10808 (cond ((fboundp f-or-v) (describe-function f-or-v))
10809 ((boundp f-or-v) (describe-variable f-or-v))
10810 (t (error "Not a known function or variable")))))
10811 ((member type '("http" "https" "ftp" "mailto" "news"))
10812 (browse-url (org-link-escape-browser (concat type ":" path))))
10813 ((equal type "doi")
10814 (browse-url
10815 (org-link-escape-browser (concat org-doi-server-url path))))
10816 ((equal type "message") (browse-url (concat type ":" path)))
10817 ((equal type "shell")
10818 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10819 (cmd path))
10820 (if (or (and (org-string-nw-p
10821 org-confirm-shell-link-not-regexp)
10822 (string-match
10823 org-confirm-shell-link-not-regexp cmd))
10824 (not org-confirm-shell-link-function)
10825 (funcall org-confirm-shell-link-function
10826 (format "Execute \"%s\" in shell? "
10827 (org-add-props cmd nil
10828 'face 'org-warning))))
10829 (progn
10830 (message "Executing %s" cmd)
10831 (shell-command cmd buf)
10832 (when (featurep 'midnight)
10833 (setq clean-buffer-list-kill-buffer-names
10834 (cons (buffer-name buf)
10835 clean-buffer-list-kill-buffer-names))))
10836 (user-error "Abort"))))
10837 ((equal type "elisp")
10838 (let ((cmd path))
10839 (if (or (and (org-string-nw-p
10840 org-confirm-elisp-link-not-regexp)
10841 (org-string-match-p
10842 org-confirm-elisp-link-not-regexp cmd))
10843 (not org-confirm-elisp-link-function)
10844 (funcall org-confirm-elisp-link-function
10845 (format "Execute \"%s\" as elisp? "
10846 (org-add-props cmd nil
10847 'face 'org-warning))))
10848 (message "%s => %s" cmd
10849 (if (eq (string-to-char cmd) ?\()
10850 (eval (read cmd))
10851 (call-interactively (read cmd))))
10852 (user-error "Abort"))))
10853 ((equal type "id")
10854 (require 'ord-id)
10855 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10856 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10857 (unless (run-hook-with-args-until-success
10858 'org-open-link-functions path)
10859 (if (not arg) (org-mark-ring-push)
10860 (switch-to-buffer-other-window
10861 (org-get-buffer-for-internal-link (current-buffer))))
10862 (let ((cmd `(org-link-search
10863 ,(if (member type '("custom-id" "coderef"))
10864 (org-element-property :raw-link link)
10865 path)
10866 ,(cond ((equal arg '(4)) 'occur)
10867 ((equal arg '(16)) 'org-occur))
10868 ,(org-element-property :begin link))))
10869 (condition-case nil
10870 (let ((org-link-search-inhibit-query t))
10871 (eval cmd))
10872 (error (progn (widen) (eval cmd)))))))
10873 (t (browse-url-at-point))))))
10874 ;; On a footnote reference or at a footnote definition's label.
10875 ((or (eq type 'footnote-reference)
10876 (and (eq type 'footnote-definition)
10877 (save-excursion
10878 ;; Do not validate action when point is on the
10879 ;; spaces right after the footnote label, in
10880 ;; order to be on par with behaviour on links.
10881 (skip-chars-forward " \t")
10882 (let ((begin
10883 (org-element-property :contents-begin context)))
10884 (if begin (< (point) begin)
10885 (= (org-element-property :post-affiliated context)
10886 (line-beginning-position)))))))
10887 (org-footnote-action))
10888 (t (user-error "No link found")))))
10889 (move-marker org-open-link-marker nil)
10890 (run-hook-with-args 'org-follow-link-hook)))
10892 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10893 "Offer links in the current entry and return the selected link.
10894 If there is only one link, return it.
10895 If NTH is an integer, return the NTH link found.
10896 If ZERO is a string, check also this string for a link, and if
10897 there is one, return it."
10898 (with-current-buffer buffer
10899 (save-excursion
10900 (save-restriction
10901 (widen)
10902 (goto-char marker)
10903 (let ((cnt ?0)
10904 (in-emacs (if (integerp nth) nil nth))
10905 have-zero end links link c)
10906 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10907 (push (match-string 0 zero) links)
10908 (setq cnt (1- cnt) have-zero t))
10909 (save-excursion
10910 (org-back-to-heading t)
10911 (setq end (save-excursion (outline-next-heading) (point)))
10912 (while (re-search-forward org-any-link-re end t)
10913 (push (match-string 0) links))
10914 (setq links (org-uniquify (reverse links))))
10915 (cond
10916 ((null links)
10917 (message "No links"))
10918 ((equal (length links) 1)
10919 (setq link (car links)))
10920 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10921 (setq link (nth (if have-zero nth (1- nth)) links)))
10922 (t ; we have to select a link
10923 (save-excursion
10924 (save-window-excursion
10925 (delete-other-windows)
10926 (with-output-to-temp-buffer "*Select Link*"
10927 (mapc (lambda (l)
10928 (if (not (string-match org-bracket-link-regexp l))
10929 (princ (format "[%c] %s\n" (incf cnt)
10930 (org-remove-angle-brackets l)))
10931 (if (match-end 3)
10932 (princ (format "[%c] %s (%s)\n" (incf cnt)
10933 (match-string 3 l) (match-string 1 l)))
10934 (princ (format "[%c] %s\n" (incf cnt)
10935 (match-string 1 l))))))
10936 links))
10937 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10938 (message "Select link to open, RET to open all:")
10939 (setq c (read-char-exclusive))
10940 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10941 (when (equal c ?q) (user-error "Abort"))
10942 (if (equal c ?\C-m)
10943 (setq link links)
10944 (setq nth (- c ?0))
10945 (if have-zero (setq nth (1+ nth)))
10946 (unless (and (integerp nth) (>= (length links) nth))
10947 (user-error "Invalid link selection"))
10948 (setq link (nth (1- nth) links)))))
10949 (cons link end))))))
10951 ;; TODO: These functions are deprecated since `org-open-at-point'
10952 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10953 (defun org-open-file-with-system (path)
10954 "Open file at PATH using the system way of opening it."
10955 (org-open-file path 'system))
10956 (defun org-open-file-with-emacs (path)
10957 "Open file at PATH in Emacs."
10958 (org-open-file path 'emacs))
10961 ;;; File search
10963 (defvar org-create-file-search-functions nil
10964 "List of functions to construct the right search string for a file link.
10965 These functions are called in turn with point at the location to
10966 which the link should point.
10968 A function in the hook should first test if it would like to
10969 handle this file type, for example by checking the `major-mode'
10970 or the file extension. If it decides not to handle this file, it
10971 should just return nil to give other functions a chance. If it
10972 does handle the file, it must return the search string to be used
10973 when following the link. The search string will be part of the
10974 file link, given after a double colon, and `org-open-at-point'
10975 will automatically search for it. If special measures must be
10976 taken to make the search successful, another function should be
10977 added to the companion hook `org-execute-file-search-functions',
10978 which see.
10980 A function in this hook may also use `setq' to set the variable
10981 `description' to provide a suggestion for the descriptive text to
10982 be used for this link when it gets inserted into an Org-mode
10983 buffer with \\[org-insert-link].")
10985 (defvar org-execute-file-search-functions nil
10986 "List of functions to execute a file search triggered by a link.
10988 Functions added to this hook must accept a single argument, the
10989 search string that was part of the file link, the part after the
10990 double colon. The function must first check if it would like to
10991 handle this search, for example by checking the `major-mode' or
10992 the file extension. If it decides not to handle this search, it
10993 should just return nil to give other functions a chance. If it
10994 does handle the search, it must return a non-nil value to keep
10995 other functions from trying.
10997 Each function can access the current prefix argument through the
10998 variable `current-prefix-arg'. Note that a single prefix is used
10999 to force opening a link in Emacs, so it may be good to only use a
11000 numeric or double prefix to guide the search function.
11002 In case this is needed, a function in this hook can also restore
11003 the window configuration before `org-open-at-point' was called using:
11005 (set-window-configuration org-window-config-before-follow-link)")
11007 (defun org-link-search (s &optional type avoid-pos stealth)
11008 "Search for a link search option.
11009 If S is surrounded by forward slashes, it is interpreted as a
11010 regular expression. In org-mode files, this will create an `org-occur'
11011 sparse tree. In ordinary files, `occur' will be used to list matches.
11012 If the current buffer is in `dired-mode', grep will be used to search
11013 in all files. If AVOID-POS is given, ignore matches near that position.
11015 When optional argument STEALTH is non-nil, do not modify
11016 visibility around point, thus ignoring `org-show-context-detail'
11017 variable."
11018 (let ((case-fold-search t)
11019 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11020 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11021 (append '(("") (" ") ("\t") ("\n"))
11022 org-emphasis-alist)
11023 "\\|") "\\)"))
11024 (pos (point))
11025 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
11026 (cond
11027 ;; First check if there are any special search functions
11028 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11029 ;; Now try the builtin stuff
11030 ((and (eq (aref s0 0) ?#)
11031 (> (length s0) 1)
11032 (let ((match (org-find-property "CUSTOM_ID" (substring s0 1))))
11033 (and match (goto-char match) (setf type 'dedicated)))))
11034 ((save-excursion
11035 (goto-char (point-min))
11036 (and
11037 (re-search-forward
11038 (concat "<<" (regexp-quote s0) ">>") nil t)
11039 (setq type 'dedicated
11040 pos (match-beginning 0))))
11041 ;; There is an exact target for this
11042 (goto-char pos))
11043 ((save-excursion
11044 (goto-char (point-min))
11045 (and
11046 (re-search-forward
11047 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11048 (setq type 'dedicated pos (match-beginning 0))))
11049 ;; Found an element with a matching #+name affiliated keyword.
11050 (goto-char pos))
11051 ((and (string-match "^(\\(.*\\))$" s0)
11052 (save-excursion
11053 (goto-char (point-min))
11054 (and
11055 (re-search-forward
11056 (concat "[^[]" (regexp-quote
11057 (format org-coderef-label-format
11058 (match-string 1 s0))))
11059 nil t)
11060 (setq type 'dedicated
11061 pos (1+ (match-beginning 0))))))
11062 ;; There is a coderef target for this
11063 (goto-char pos))
11064 ((string-match "^/\\(.*\\)/$" s)
11065 ;; A regular expression
11066 (cond
11067 ((derived-mode-p 'org-mode)
11068 (org-occur (match-string 1 s)))
11069 (t (org-do-occur (match-string 1 s)))))
11070 ((and (derived-mode-p 'org-mode)
11071 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11072 org-link-search-must-match-exact-headline))
11073 ;; Headline search.
11074 (goto-char (point-min))
11075 (cond
11076 ((let (case-fold-search)
11077 (re-search-forward
11078 (let* ((wspace "[ \t]")
11079 (wspaceopt (concat wspace "*"))
11080 (cookie (concat "\\(?:"
11081 wspaceopt
11082 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11083 wspaceopt
11084 "\\)"))
11085 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11086 (concat
11087 org-outline-regexp-bol
11088 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11089 "\\(?:\\[#.\\][ \t]+\\)?"
11090 "\\(?:" org-comment-string "[ \t]+\\)?"
11091 sep "*"
11092 (mapconcat #'identity
11093 (org-split-string (regexp-quote s))
11094 (concat sep "+"))
11095 sep "*"
11096 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11097 "[ \t]*$"))
11098 nil t))
11099 ;; OK, found a match
11100 (setq type 'dedicated)
11101 (goto-char (match-beginning 0)))
11102 ((and (not org-link-search-inhibit-query)
11103 (eq org-link-search-must-match-exact-headline 'query-to-create)
11104 (y-or-n-p "No match - create this as a new heading? "))
11105 (goto-char (point-max))
11106 (unless (bolp) (newline))
11107 (org-insert-heading nil t t)
11108 (insert s "\n")
11109 (beginning-of-line 0))
11111 (goto-char pos)
11112 (error "No match"))))
11114 ;; A normal search string
11115 (remove-text-properties
11116 0 (length s)
11117 '(face nil mouse-face nil keymap nil fontified nil) s)
11118 ;; Make a series of regular expressions to find a match
11119 (setq words (org-split-string s "[ \n\r\t]+")
11121 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11122 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11123 "\\)" markers)
11124 re2a_ (concat "\\(" (mapconcat 'downcase words
11125 "[ \t\r\n]+") "\\)[ \t\r\n]")
11126 re2a (concat "[ \t\r\n]" re2a_)
11127 re4_ (concat "\\(" (mapconcat 'downcase words
11128 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11129 re4 (concat "[^a-zA-Z_]" re4_)
11131 re5 (concat ".*" re4)
11132 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11133 "\\)\\|\\(" re5 "\\)"))
11134 (cond
11135 ((eq type 'org-occur) (org-occur reall))
11136 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11137 (t (goto-char (point-min))
11138 (setq type 'fuzzy)
11139 (if (or (and (org-search-not-self 1 re0 nil t)
11140 (setq type 'dedicated))
11141 (org-search-not-self 1 re2 nil t)
11142 (org-search-not-self 1 re2a nil t)
11143 (org-search-not-self 1 re4 nil t)
11144 (org-search-not-self 1 re5 nil t))
11145 (goto-char (match-beginning 1))
11146 (goto-char pos)
11147 (error "No match"))))))
11148 (and (derived-mode-p 'org-mode)
11149 (not stealth)
11150 (org-show-context 'link-search))
11151 type))
11153 (defun org-search-not-self (group &rest args)
11154 "Execute `re-search-forward', but only accept matches that do not
11155 enclose the position of `org-open-link-marker'."
11156 (let ((m org-open-link-marker))
11157 (catch 'exit
11158 (while (apply 're-search-forward args)
11159 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11160 (goto-char (match-end group))
11161 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11162 (> (match-beginning 0) (marker-position m))
11163 (< (match-end 0) (marker-position m)))
11164 (save-match-data
11165 (or (not (org-in-regexp
11166 org-bracket-link-analytic-regexp 1))
11167 (not (match-end 4)) ; no description
11168 (and (<= (match-beginning 4) (point))
11169 (>= (match-end 4) (point))))))
11170 (throw 'exit (point))))))))
11172 (defun org-get-buffer-for-internal-link (buffer)
11173 "Return a buffer to be used for displaying the link target of internal links."
11174 (cond
11175 ((not org-display-internal-link-with-indirect-buffer)
11176 buffer)
11177 ((string-match "(Clone)$" (buffer-name buffer))
11178 (message "Buffer is already a clone, not making another one")
11179 ;; we also do not modify visibility in this case
11180 buffer)
11181 (t ; make a new indirect buffer for displaying the link
11182 (let* ((bn (buffer-name buffer))
11183 (ibn (concat bn "(Clone)"))
11184 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11185 (with-current-buffer ib (org-overview))
11186 ib))))
11188 (defun org-do-occur (regexp &optional cleanup)
11189 "Call the Emacs command `occur'.
11190 If CLEANUP is non-nil, remove the printout of the regular expression
11191 in the *Occur* buffer. This is useful if the regex is long and not useful
11192 to read."
11193 (occur regexp)
11194 (when cleanup
11195 (let ((cwin (selected-window)) win beg end)
11196 (when (setq win (get-buffer-window "*Occur*"))
11197 (select-window win))
11198 (goto-char (point-min))
11199 (when (re-search-forward "match[a-z]+" nil t)
11200 (setq beg (match-end 0))
11201 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11202 (setq end (1- (match-beginning 0)))))
11203 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11204 (goto-char (point-min))
11205 (select-window cwin))))
11207 ;;; The mark ring for links jumps
11209 (defvar org-mark-ring nil
11210 "Mark ring for positions before jumps in Org-mode.")
11211 (defvar org-mark-ring-last-goto nil
11212 "Last position in the mark ring used to go back.")
11213 ;; Fill and close the ring
11214 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11215 (loop for i from 1 to org-mark-ring-length do
11216 (push (make-marker) org-mark-ring))
11217 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11218 org-mark-ring)
11220 (defun org-mark-ring-push (&optional pos buffer)
11221 "Put the current position or POS into the mark ring and rotate it."
11222 (interactive)
11223 (setq pos (or pos (point)))
11224 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11225 (move-marker (car org-mark-ring)
11226 (or pos (point))
11227 (or buffer (current-buffer)))
11228 (message "%s"
11229 (substitute-command-keys
11230 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11232 (defun org-mark-ring-goto (&optional n)
11233 "Jump to the previous position in the mark ring.
11234 With prefix arg N, jump back that many stored positions. When
11235 called several times in succession, walk through the entire ring.
11236 Org-mode commands jumping to a different position in the current file,
11237 or to another Org-mode file, automatically push the old position
11238 onto the ring."
11239 (interactive "p")
11240 (let (p m)
11241 (if (eq last-command this-command)
11242 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11243 (setq p org-mark-ring))
11244 (setq org-mark-ring-last-goto p)
11245 (setq m (car p))
11246 (org-pop-to-buffer-same-window (marker-buffer m))
11247 (goto-char m)
11248 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11250 (defun org-remove-angle-brackets (s)
11251 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11252 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11254 (defun org-add-angle-brackets (s)
11255 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11256 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11258 (defun org-remove-double-quotes (s)
11259 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11260 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11263 ;;; Following specific links
11265 (defun org-follow-timestamp-link ()
11266 "Open an agenda view for the time-stamp date/range at point."
11267 (cond
11268 ((org-at-date-range-p t)
11269 (let ((org-agenda-start-on-weekday)
11270 (t1 (match-string 1))
11271 (t2 (match-string 2)) tt1 tt2)
11272 (setq tt1 (time-to-days (org-time-string-to-time t1))
11273 tt2 (time-to-days (org-time-string-to-time t2)))
11274 (let ((org-agenda-buffer-tmp-name
11275 (format "*Org Agenda(a:%s)"
11276 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11277 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11278 ((org-at-timestamp-p t)
11279 (let ((org-agenda-buffer-tmp-name
11280 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11281 (org-agenda-list nil (time-to-days (org-time-string-to-time
11282 (substring (match-string 1) 0 10)))
11283 1)))
11284 (t (error "This should not happen"))))
11287 ;;; Following file links
11288 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11289 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11290 (declare-function mailcap-mime-info
11291 "mailcap" (string &optional request no-decode))
11292 (defvar org-wait nil)
11293 (defun org-open-file (path &optional in-emacs line search)
11294 "Open the file at PATH.
11295 First, this expands any special file name abbreviations. Then the
11296 configuration variable `org-file-apps' is checked if it contains an
11297 entry for this file type, and if yes, the corresponding command is launched.
11299 If no application is found, Emacs simply visits the file.
11301 With optional prefix argument IN-EMACS, Emacs will visit the file.
11302 With a double \\[universal-argument] \\[universal-argument] \
11303 prefix arg, Org tries to avoid opening in Emacs
11304 and to use an external application to visit the file.
11306 Optional LINE specifies a line to go to, optional SEARCH a string
11307 to search for. If LINE or SEARCH is given, the file will be
11308 opened in Emacs, unless an entry from org-file-apps that makes
11309 use of groups in a regexp matches.
11311 If you want to change the way frames are used when following a
11312 link, please customize `org-link-frame-setup'.
11314 If the file does not exist, an error is thrown."
11315 (let* ((file (if (equal path "")
11316 buffer-file-name
11317 (substitute-in-file-name (expand-file-name path))))
11318 (file-apps (append org-file-apps (org-default-apps)))
11319 (apps (org-remove-if
11320 'org-file-apps-entry-match-against-dlink-p file-apps))
11321 (apps-dlink (org-remove-if-not
11322 'org-file-apps-entry-match-against-dlink-p file-apps))
11323 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11324 (dirp (if remp nil (file-directory-p file)))
11325 (file (if (and dirp org-open-directory-means-index-dot-org)
11326 (concat (file-name-as-directory file) "index.org")
11327 file))
11328 (a-m-a-p (assq 'auto-mode apps))
11329 (dfile (downcase file))
11330 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11331 (link (cond ((and (eq line nil)
11332 (eq search nil))
11333 file)
11334 (line
11335 (concat file "::" (number-to-string line)))
11336 (search
11337 (concat file "::" search))))
11338 (dlink (downcase link))
11339 (old-buffer (current-buffer))
11340 (old-pos (point))
11341 (old-mode major-mode)
11342 ext cmd link-match-data)
11343 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11344 (setq ext (match-string 1 dfile))
11345 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11346 (setq ext (match-string 1 dfile))))
11347 (cond
11348 ((member in-emacs '((16) system))
11349 (setq cmd (cdr (assoc 'system apps))))
11350 (in-emacs (setq cmd 'emacs))
11352 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11353 (and dirp (cdr (assoc 'directory apps)))
11354 ; first, try matching against apps-dlink
11355 ; if we get a match here, store the match data for later
11356 (let ((match (assoc-default dlink apps-dlink
11357 'string-match)))
11358 (if match
11359 (progn (setq link-match-data (match-data))
11360 match)
11361 (progn (setq in-emacs (or in-emacs line search))
11362 nil))) ; if we have no match in apps-dlink,
11363 ; always open the file in emacs if line or search
11364 ; is given (for backwards compatibility)
11365 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11366 'string-match)
11367 (cdr (assoc ext apps))
11368 (cdr (assoc t apps))))))
11369 (when (eq cmd 'system)
11370 (setq cmd (cdr (assoc 'system apps))))
11371 (when (eq cmd 'default)
11372 (setq cmd (cdr (assoc t apps))))
11373 (when (eq cmd 'mailcap)
11374 (require 'mailcap)
11375 (mailcap-parse-mailcaps)
11376 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11377 (command (mailcap-mime-info mime-type)))
11378 (if (stringp command)
11379 (setq cmd command)
11380 (setq cmd 'emacs))))
11381 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11382 (not (file-exists-p file))
11383 (not org-open-non-existing-files))
11384 (user-error "No such file: %s" file))
11385 (cond
11386 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11387 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11388 (while (string-match "['\"]%s['\"]" cmd)
11389 (setq cmd (replace-match "%s" t t cmd)))
11390 (while (string-match "%s" cmd)
11391 (setq cmd (replace-match
11392 (save-match-data
11393 (shell-quote-argument
11394 (convert-standard-filename file)))
11395 t t cmd)))
11397 ;; Replace "%1", "%2" etc. in command with group matches from regex
11398 (save-match-data
11399 (let ((match-index 1)
11400 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11401 (set-match-data link-match-data)
11402 (while (<= match-index number-of-groups)
11403 (let ((regex (concat "%" (number-to-string match-index)))
11404 (replace-with (match-string match-index dlink)))
11405 (while (string-match regex cmd)
11406 (setq cmd (replace-match replace-with t t cmd))))
11407 (setq match-index (+ match-index 1)))))
11409 (save-window-excursion
11410 (message "Running %s...done" cmd)
11411 (start-process-shell-command cmd nil cmd)
11412 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11413 ((or (stringp cmd)
11414 (eq cmd 'emacs))
11415 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11416 (widen)
11417 (if line (progn (org-goto-line line)
11418 (if (derived-mode-p 'org-mode)
11419 (org-reveal)))
11420 (if search (org-link-search search))))
11421 ((consp cmd)
11422 (let ((file (convert-standard-filename file)))
11423 (save-match-data
11424 (set-match-data link-match-data)
11425 (eval cmd))))
11426 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11427 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11428 (or (not (equal old-buffer (current-buffer)))
11429 (not (equal old-pos (point))))
11430 (org-mark-ring-push old-pos old-buffer))))
11432 (defun org-file-apps-entry-match-against-dlink-p (entry)
11433 "This function returns non-nil if `entry' uses a regular
11434 expression which should be matched against the whole link by
11435 org-open-file.
11437 It assumes that is the case when the entry uses a regular
11438 expression which has at least one grouping construct and the
11439 action is either a lisp form or a command string containing
11440 '%1', i.e. using at least one subexpression match as a
11441 parameter."
11442 (let ((selector (car entry))
11443 (action (cdr entry)))
11444 (if (stringp selector)
11445 (and (> (regexp-opt-depth selector) 0)
11446 (or (and (stringp action)
11447 (string-match "%[0-9]" action))
11448 (consp action)))
11449 nil)))
11451 (defun org-default-apps ()
11452 "Return the default applications for this operating system."
11453 (cond
11454 ((eq system-type 'darwin)
11455 org-file-apps-defaults-macosx)
11456 ((eq system-type 'windows-nt)
11457 org-file-apps-defaults-windowsnt)
11458 (t org-file-apps-defaults-gnu)))
11460 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11461 "Convert extensions to regular expressions in the cars of LIST.
11462 Also, weed out any non-string entries, because the return value is used
11463 only for regexp matching.
11464 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11465 point to the symbol `emacs', indicating that the file should
11466 be opened in Emacs."
11467 (append
11468 (delq nil
11469 (mapcar (lambda (x)
11470 (if (not (stringp (car x)))
11472 (if (string-match "\\W" (car x))
11474 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11475 list))
11476 (if add-auto-mode
11477 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11479 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11480 (defun org-file-remote-p (file)
11481 "Test whether FILE specifies a location on a remote system.
11482 Return non-nil if the location is indeed remote.
11484 For example, the filename \"/user@host:/foo\" specifies a location
11485 on the system \"/user@host:\"."
11486 (cond ((fboundp 'file-remote-p)
11487 (file-remote-p file))
11488 ((fboundp 'tramp-handle-file-remote-p)
11489 (tramp-handle-file-remote-p file))
11490 ((and (boundp 'ange-ftp-name-format)
11491 (string-match (car ange-ftp-name-format) file))
11492 t)))
11495 ;;;; Refiling
11497 (defun org-get-org-file ()
11498 "Read a filename, with default directory `org-directory'."
11499 (let ((default (or org-default-notes-file remember-data-file)))
11500 (read-file-name (format "File name [%s]: " default)
11501 (file-name-as-directory org-directory)
11502 default)))
11504 (defun org-notes-order-reversed-p ()
11505 "Check if the current file should receive notes in reversed order."
11506 (cond
11507 ((not org-reverse-note-order) nil)
11508 ((eq t org-reverse-note-order) t)
11509 ((not (listp org-reverse-note-order)) nil)
11510 (t (catch 'exit
11511 (let ((all org-reverse-note-order)
11512 entry)
11513 (while (setq entry (pop all))
11514 (if (string-match (car entry) buffer-file-name)
11515 (throw 'exit (cdr entry))))
11516 nil)))))
11518 (defvar org-refile-target-table nil
11519 "The list of refile targets, created by `org-refile'.")
11521 (defvar org-agenda-new-buffers nil
11522 "Buffers created to visit agenda files.")
11524 (defvar org-refile-cache nil
11525 "Cache for refile targets.")
11527 (defvar org-refile-markers nil
11528 "All the markers used for caching refile locations.")
11530 (defun org-refile-marker (pos)
11531 "Get a new refile marker, but only if caching is in use."
11532 (if (not org-refile-use-cache)
11534 (let ((m (make-marker)))
11535 (move-marker m pos)
11536 (push m org-refile-markers)
11537 m)))
11539 (defun org-refile-cache-clear ()
11540 "Clear the refile cache and disable all the markers."
11541 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11542 (setq org-refile-markers nil)
11543 (setq org-refile-cache nil)
11544 (message "Refile cache has been cleared"))
11546 (defun org-refile-cache-check-set (set)
11547 "Check if all the markers in the cache still have live buffers."
11548 (let (marker)
11549 (catch 'exit
11550 (while (and set (setq marker (nth 3 (pop set))))
11551 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11552 (when (and marker (null (marker-buffer marker)))
11553 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11554 (sit-for 3)
11555 (throw 'exit nil)))
11556 t)))
11558 (defun org-refile-cache-put (set &rest identifiers)
11559 "Push the refile targets SET into the cache, under IDENTIFIERS."
11560 (let* ((key (sha1 (prin1-to-string identifiers)))
11561 (entry (assoc key org-refile-cache)))
11562 (if entry
11563 (setcdr entry set)
11564 (push (cons key set) org-refile-cache))))
11566 (defun org-refile-cache-get (&rest identifiers)
11567 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11568 (cond
11569 ((not org-refile-cache) nil)
11570 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11572 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11573 org-refile-cache))))
11574 (and set (org-refile-cache-check-set set) set)))))
11576 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11577 "Produce a table with refile targets."
11578 (let ((case-fold-search nil)
11579 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11580 (entries (or org-refile-targets '((nil . (:level . 1)))))
11581 targets tgs txt re files f desc descre fast-path-p level pos0)
11582 (message "Getting targets...")
11583 (with-current-buffer (or default-buffer (current-buffer))
11584 (while (setq entry (pop entries))
11585 (setq files (car entry) desc (cdr entry))
11586 (setq fast-path-p nil)
11587 (cond
11588 ((null files) (setq files (list (current-buffer))))
11589 ((eq files 'org-agenda-files)
11590 (setq files (org-agenda-files 'unrestricted)))
11591 ((and (symbolp files) (fboundp files))
11592 (setq files (funcall files)))
11593 ((and (symbolp files) (boundp files))
11594 (setq files (symbol-value files))))
11595 (if (stringp files) (setq files (list files)))
11596 (cond
11597 ((eq (car desc) :tag)
11598 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11599 ((eq (car desc) :todo)
11600 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11601 ((eq (car desc) :regexp)
11602 (setq descre (cdr desc)))
11603 ((eq (car desc) :level)
11604 (setq descre (concat "^\\*\\{" (number-to-string
11605 (if org-odd-levels-only
11606 (1- (* 2 (cdr desc)))
11607 (cdr desc)))
11608 "\\}[ \t]")))
11609 ((eq (car desc) :maxlevel)
11610 (setq fast-path-p t)
11611 (setq descre (concat "^\\*\\{1," (number-to-string
11612 (if org-odd-levels-only
11613 (1- (* 2 (cdr desc)))
11614 (cdr desc)))
11615 "\\}[ \t]")))
11616 (t (error "Bad refiling target description %s" desc)))
11617 (while (setq f (pop files))
11618 (with-current-buffer
11619 (if (bufferp f) f (org-get-agenda-file-buffer f))
11621 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11622 (progn
11623 (if (bufferp f) (setq f (buffer-file-name
11624 (buffer-base-buffer f))))
11625 (setq f (and f (expand-file-name f)))
11626 (if (eq org-refile-use-outline-path 'file)
11627 (push (list (file-name-nondirectory f) f nil nil) tgs))
11628 (save-excursion
11629 (save-restriction
11630 (widen)
11631 (goto-char (point-min))
11632 (while (re-search-forward descre nil t)
11633 (goto-char (setq pos0 (point-at-bol)))
11634 (catch 'next
11635 (when org-refile-target-verify-function
11636 (save-match-data
11637 (or (funcall org-refile-target-verify-function)
11638 (throw 'next t))))
11639 (when (and (looking-at org-complex-heading-regexp)
11640 (not (member (match-string 4) excluded-entries))
11641 (match-string 4))
11642 (setq level (org-reduced-level
11643 (- (match-end 1) (match-beginning 1)))
11644 txt (org-link-display-format (match-string 4))
11645 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11646 re (format org-complex-heading-regexp-format
11647 (regexp-quote (match-string 4))))
11648 (when org-refile-use-outline-path
11649 (setq txt (mapconcat
11650 'org-protect-slash
11651 (append
11652 (if (eq org-refile-use-outline-path
11653 'file)
11654 (list (file-name-nondirectory
11655 (buffer-file-name
11656 (buffer-base-buffer))))
11657 (if (eq org-refile-use-outline-path
11658 'full-file-path)
11659 (list (buffer-file-name
11660 (buffer-base-buffer)))))
11661 (org-get-outline-path fast-path-p
11662 level txt)
11663 (list txt))
11664 "/")))
11665 (push (list txt f re (org-refile-marker (point)))
11666 tgs)))
11667 (when (= (point) pos0)
11668 ;; verification function has not moved point
11669 (goto-char (point-at-eol))))))))
11670 (when org-refile-use-cache
11671 (org-refile-cache-put tgs (buffer-file-name) descre))
11672 (setq targets (append tgs targets))))))
11673 (message "Getting targets...done")
11674 (nreverse targets)))
11676 (defun org-protect-slash (s)
11677 (while (string-match "/" s)
11678 (setq s (replace-match "\\" t t s)))
11681 (defvar org-olpa (make-vector 20 nil))
11683 (defun org-get-outline-path (&optional fastp level heading)
11684 "Return the outline path to the current entry, as a list.
11686 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11687 routine which makes outline path derivations for an entire file,
11688 avoiding backtracing. Refile target collection makes use of that."
11689 (if fastp
11690 (progn
11691 (if (> level 19)
11692 (error "Outline path failure, more than 19 levels"))
11693 (loop for i from level upto 19 do
11694 (aset org-olpa i nil))
11695 (prog1
11696 (delq nil (append org-olpa nil))
11697 (aset org-olpa level heading)))
11698 (let (rtn case-fold-search)
11699 (save-excursion
11700 (save-restriction
11701 (widen)
11702 (while (org-up-heading-safe)
11703 (when (looking-at org-complex-heading-regexp)
11704 (push (org-trim
11705 (replace-regexp-in-string
11706 ;; Remove statistical/checkboxes cookies
11707 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11708 (org-match-string-no-properties 4)))
11709 rtn)))
11710 rtn)))))
11712 (defun org-format-outline-path (path &optional width prefix separator)
11713 "Format the outline path PATH for display.
11714 WIDTH is the maximum number of characters that is available.
11715 PREFIX is a prefix to be included in the returned string,
11716 such as the file name.
11717 SEPARATOR is inserted between the different parts of the path,
11718 the default is \"/\"."
11719 (setq width (or width 79))
11720 (if prefix (setq width (- width (length prefix))))
11721 (if (not path)
11722 (or prefix "")
11723 (let* ((nsteps (length path))
11724 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11725 (maxwidth (if (<= total-width width)
11726 10000 ;; everything fits
11727 ;; we need to shorten the level headings
11728 (/ (- width nsteps) nsteps)))
11729 (org-odd-levels-only nil)
11730 (n 0)
11731 (total (1+ (length prefix))))
11732 (setq maxwidth (max maxwidth 10))
11733 (concat prefix
11734 (if prefix (or separator "/"))
11735 (mapconcat
11736 (lambda (h)
11737 (setq n (1+ n))
11738 (if (and (= n nsteps) (< maxwidth 10000))
11739 (setq maxwidth (- total-width total)))
11740 (if (< (length h) maxwidth)
11741 (progn (setq total (+ total (length h) 1)) h)
11742 (setq h (substring h 0 (- maxwidth 2))
11743 total (+ total maxwidth 1))
11744 (if (string-match "[ \t]+\\'" h)
11745 (setq h (substring h 0 (match-beginning 0))))
11746 (setq h (concat h "..")))
11747 (org-add-props h nil 'face
11748 (nth (% (1- n) org-n-level-faces)
11749 org-level-faces))
11751 path (or separator "/"))))))
11753 (defun org-display-outline-path (&optional file current separator just-return-string)
11754 "Display the current outline path in the echo area.
11756 If FILE is non-nil, prepend the output with the file name.
11757 If CURRENT is non-nil, append the current heading to the output.
11758 SEPARATOR is passed through to `org-format-outline-path'. It separates
11759 the different parts of the path and defaults to \"/\".
11760 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11761 (interactive "P")
11762 (let* (case-fold-search
11763 (bfn (buffer-file-name (buffer-base-buffer)))
11764 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11765 res)
11766 (if current (setq path (append path
11767 (save-excursion
11768 (org-back-to-heading t)
11769 (if (looking-at org-complex-heading-regexp)
11770 (list (match-string 4)))))))
11771 (setq res
11772 (org-format-outline-path
11773 path
11774 (1- (frame-width))
11775 (and file bfn (concat (file-name-nondirectory bfn) separator))
11776 separator))
11777 (if just-return-string
11778 (org-no-properties res)
11779 (org-unlogged-message "%s" res))))
11781 (defvar org-refile-history nil
11782 "History for refiling operations.")
11784 (defvar org-after-refile-insert-hook nil
11785 "Hook run after `org-refile' has inserted its stuff at the new location.
11786 Note that this is still *before* the stuff will be removed from
11787 the *old* location.")
11789 (defvar org-capture-last-stored-marker)
11790 (defvar org-refile-keep nil
11791 "Non-nil means `org-refile' will copy instead of refile.")
11793 (defun org-copy ()
11794 "Like `org-refile', but copy."
11795 (interactive)
11796 (let ((org-refile-keep t))
11797 (funcall 'org-refile nil nil nil "Copy")))
11799 (defun org-refile (&optional arg default-buffer rfloc msg)
11800 "Move the entry or entries at point to another heading.
11801 The list of target headings is compiled using the information in
11802 `org-refile-targets', which see.
11804 At the target location, the entry is filed as a subitem of the
11805 target heading. Depending on `org-reverse-note-order', the new
11806 subitem will either be the first or the last subitem.
11808 If there is an active region, all entries in that region will be
11809 refiled. However, the region must fulfill the requirement that
11810 the first heading sets the top-level of the moved text.
11812 With prefix arg ARG, the command will only visit the target
11813 location and not actually move anything.
11815 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11816 refiling operation has put the subtree.
11818 With a numeric prefix argument of `2', refile to the running clock.
11820 With a numeric prefix argument of `3', emulate `org-refile-keep'
11821 being set to `t' and copy to the target location, don't move it.
11822 Beware that keeping refiled entries may result in duplicated ID
11823 properties.
11825 RFLOC can be a refile location obtained in a different way.
11827 MSG is a string to replace \"Refile\" in the default prompt with
11828 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11830 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11832 If you are using target caching (see `org-refile-use-cache'), you
11833 have to clear the target cache in order to find new targets.
11834 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11835 prefix argument (`C-u C-u C-u C-c C-w')."
11836 (interactive "P")
11837 (if (member arg '(0 (64)))
11838 (org-refile-cache-clear)
11839 (let* ((actionmsg (cond (msg msg)
11840 ((equal arg 3) "Refile (and keep)")
11841 (t "Refile")))
11842 (cbuf (current-buffer))
11843 (regionp (org-region-active-p))
11844 (region-start (and regionp (region-beginning)))
11845 (region-end (and regionp (region-end)))
11846 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11847 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11848 pos it nbuf file re level reversed)
11849 (setq last-command nil)
11850 (when regionp
11851 (goto-char region-start)
11852 (or (bolp) (goto-char (point-at-bol)))
11853 (setq region-start (point))
11854 (unless (or (org-kill-is-subtree-p
11855 (buffer-substring region-start region-end))
11856 (prog1 org-refile-active-region-within-subtree
11857 (let ((s (point-at-eol)))
11858 (org-toggle-heading)
11859 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11860 (user-error "The region is not a (sequence of) subtree(s)")))
11861 (if (equal arg '(16))
11862 (org-refile-goto-last-stored)
11863 (when (or
11864 (and (equal arg 2)
11865 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11866 (prog1
11867 (setq it (list (or org-clock-heading "running clock")
11868 (buffer-file-name
11869 (marker-buffer org-clock-hd-marker))
11871 (marker-position org-clock-hd-marker)))
11872 (setq arg nil)))
11873 (setq it (or rfloc
11874 (let (heading-text)
11875 (save-excursion
11876 (unless (and arg (listp arg))
11877 (org-back-to-heading t)
11878 (setq heading-text
11879 (replace-regexp-in-string
11880 org-bracket-link-regexp
11881 "\\3"
11882 (nth 4 (org-heading-components)))))
11883 (org-refile-get-location
11884 (cond ((and arg (listp arg)) "Goto")
11885 (regionp (concat actionmsg " region to"))
11886 (t (concat actionmsg " subtree \""
11887 heading-text "\" to")))
11888 default-buffer
11889 (and (not (equal '(4) arg))
11890 org-refile-allow-creating-parent-nodes)
11891 arg))))))
11892 (setq file (nth 1 it)
11893 re (nth 2 it)
11894 pos (nth 3 it))
11895 (if (and (not arg)
11897 (equal (buffer-file-name) file)
11898 (if regionp
11899 (and (>= pos region-start)
11900 (<= pos region-end))
11901 (and (>= pos (point))
11902 (< pos (save-excursion
11903 (org-end-of-subtree t t))))))
11904 (error "Cannot refile to position inside the tree or region"))
11905 (setq nbuf (or (find-buffer-visiting file)
11906 (find-file-noselect file)))
11907 (if (and arg (not (equal arg 3)))
11908 (progn
11909 (org-pop-to-buffer-same-window nbuf)
11910 (goto-char pos)
11911 (org-show-context 'org-goto))
11912 (if regionp
11913 (progn
11914 (org-kill-new (buffer-substring region-start region-end))
11915 (org-save-markers-in-region region-start region-end))
11916 (org-copy-subtree 1 nil t))
11917 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11918 (find-file-noselect file)))
11919 (setq reversed (org-notes-order-reversed-p))
11920 (save-excursion
11921 (save-restriction
11922 (widen)
11923 (if pos
11924 (progn
11925 (goto-char pos)
11926 (looking-at org-outline-regexp)
11927 (setq level (org-get-valid-level (funcall outline-level) 1))
11928 (goto-char
11929 (if reversed
11930 (or (outline-next-heading) (point-max))
11931 (or (save-excursion (org-get-next-sibling))
11932 (org-end-of-subtree t t)
11933 (point-max)))))
11934 (setq level 1)
11935 (if (not reversed)
11936 (goto-char (point-max))
11937 (goto-char (point-min))
11938 (or (outline-next-heading) (goto-char (point-max)))))
11939 (if (not (bolp)) (newline))
11940 (org-paste-subtree level nil nil t)
11941 (when org-log-refile
11942 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11943 (unless (eq org-log-refile 'note)
11944 (save-excursion (org-add-log-note))))
11945 (and org-auto-align-tags
11946 (let ((org-loop-over-headlines-in-active-region nil))
11947 (org-set-tags nil t)))
11948 (let ((bookmark-name (plist-get org-bookmark-names-plist
11949 :last-refile)))
11950 (when bookmark-name
11951 (with-demoted-errors
11952 (bookmark-set bookmark-name))))
11953 ;; If we are refiling for capture, make sure that the
11954 ;; last-capture pointers point here
11955 (when (org-bound-and-true-p org-refile-for-capture)
11956 (let ((bookmark-name (plist-get org-bookmark-names-plist
11957 :last-capture-marker)))
11958 (when bookmark-name
11959 (with-demoted-errors
11960 (bookmark-set bookmark-name))))
11961 (move-marker org-capture-last-stored-marker (point)))
11962 (if (fboundp 'deactivate-mark) (deactivate-mark))
11963 (run-hooks 'org-after-refile-insert-hook))))
11964 (unless org-refile-keep
11965 (if regionp
11966 (delete-region (point) (+ (point) (- region-end region-start)))
11967 (delete-region
11968 (and (org-back-to-heading t) (point))
11969 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11970 (when (featurep 'org-inlinetask)
11971 (org-inlinetask-remove-END-maybe))
11972 (setq org-markers-to-move nil)
11973 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11975 (defun org-refile-goto-last-stored ()
11976 "Go to the location where the last refile was stored."
11977 (interactive)
11978 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11979 (message "This is the location of the last refile"))
11981 (defun org-refile--get-location (refloc tbl)
11982 "When user refile to REFLOC, find the associated target in TBL.
11983 Also check `org-refile-target-table'."
11984 (car (delq
11986 (mapcar
11987 (lambda (r) (or (assoc r tbl)
11988 (assoc r org-refile-target-table)))
11989 (list (replace-regexp-in-string "/$" "" refloc)
11990 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11992 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11993 no-exclude)
11994 "Prompt the user for a refile location, using PROMPT.
11995 PROMPT should not be suffixed with a colon and a space, because
11996 this function appends the default value from
11997 `org-refile-history' automatically, if that is not empty.
11998 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11999 this is used for the GOTO interface."
12000 (let ((org-refile-targets org-refile-targets)
12001 (org-refile-use-outline-path org-refile-use-outline-path)
12002 excluded-entries)
12003 (when (and (derived-mode-p 'org-mode)
12004 (not org-refile-use-cache)
12005 (not no-exclude))
12006 (org-map-tree
12007 (lambda()
12008 (setq excluded-entries
12009 (append excluded-entries (list (org-get-heading t t)))))))
12010 (setq org-refile-target-table
12011 (org-refile-get-targets default-buffer excluded-entries)))
12012 (unless org-refile-target-table
12013 (user-error "No refile targets"))
12014 (let* ((cbuf (current-buffer))
12015 (partial-completion-mode nil)
12016 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12017 (cfunc (if (and org-refile-use-outline-path
12018 org-outline-path-complete-in-steps)
12019 'org-olpath-completing-read
12020 'org-icompleting-read))
12021 (extra (if org-refile-use-outline-path "/" ""))
12022 (cbnex (concat (buffer-name) extra))
12023 (filename (and cfn (expand-file-name cfn)))
12024 (tbl (mapcar
12025 (lambda (x)
12026 (if (and (not (member org-refile-use-outline-path
12027 '(file full-file-path)))
12028 (not (equal filename (nth 1 x))))
12029 (cons (concat (car x) extra " ("
12030 (file-name-nondirectory (nth 1 x)) ")")
12031 (cdr x))
12032 (cons (concat (car x) extra) (cdr x))))
12033 org-refile-target-table))
12034 (completion-ignore-case t)
12035 cdef
12036 (prompt (concat prompt
12037 (or (and (car org-refile-history)
12038 (concat " (default " (car org-refile-history) ")"))
12039 (and (assoc cbnex tbl) (setq cdef cbnex)
12040 (concat " (default " cbnex ")"))) ": "))
12041 pa answ parent-target child parent old-hist)
12042 (setq old-hist org-refile-history)
12043 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12044 nil 'org-refile-history (or cdef (car org-refile-history))))
12045 (if (setq pa (org-refile--get-location answ tbl))
12046 (progn
12047 (org-refile-check-position pa)
12048 (when (or (not org-refile-history)
12049 (not (eq old-hist org-refile-history))
12050 (not (equal (car pa) (car org-refile-history))))
12051 (setq org-refile-history
12052 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12053 org-refile-history
12054 (cdr org-refile-history))))
12055 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12056 (pop org-refile-history)))
12058 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12059 (progn
12060 (setq parent (match-string 1 answ)
12061 child (match-string 2 answ))
12062 (setq parent-target (org-refile--get-location parent tbl))
12063 (when (and parent-target
12064 (or (eq new-nodes t)
12065 (and (eq new-nodes 'confirm)
12066 (y-or-n-p (format "Create new node \"%s\"? "
12067 child)))))
12068 (org-refile-new-child parent-target child)))
12069 (user-error "Invalid target location")))))
12071 (declare-function org-string-nw-p "org-macs" (s))
12072 (defun org-refile-check-position (refile-pointer)
12073 "Check if the refile pointer matches the headline to which it points."
12074 (let* ((file (nth 1 refile-pointer))
12075 (re (nth 2 refile-pointer))
12076 (pos (nth 3 refile-pointer))
12077 buffer)
12078 (if (and (not (markerp pos)) (not file))
12079 (user-error "Please indicate a target file in the refile path")
12080 (when (org-string-nw-p re)
12081 (setq buffer (if (markerp pos)
12082 (marker-buffer pos)
12083 (or (find-buffer-visiting file)
12084 (find-file-noselect file))))
12085 (with-current-buffer buffer
12086 (save-excursion
12087 (save-restriction
12088 (widen)
12089 (goto-char pos)
12090 (beginning-of-line 1)
12091 (unless (org-looking-at-p re)
12092 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12094 (defun org-refile-new-child (parent-target child)
12095 "Use refile target PARENT-TARGET to add new CHILD below it."
12096 (unless parent-target
12097 (error "Cannot find parent for new node"))
12098 (let ((file (nth 1 parent-target))
12099 (pos (nth 3 parent-target))
12100 level)
12101 (with-current-buffer (or (find-buffer-visiting file)
12102 (find-file-noselect file))
12103 (save-excursion
12104 (save-restriction
12105 (widen)
12106 (if pos
12107 (goto-char pos)
12108 (goto-char (point-max))
12109 (if (not (bolp)) (newline)))
12110 (when (looking-at org-outline-regexp)
12111 (setq level (funcall outline-level))
12112 (org-end-of-subtree t t))
12113 (org-back-over-empty-lines)
12114 (insert "\n" (make-string
12115 (if pos (org-get-valid-level level 1) 1) ?*)
12116 " " child "\n")
12117 (beginning-of-line 0)
12118 (list (concat (car parent-target) "/" child) file "" (point)))))))
12120 (defun org-olpath-completing-read (prompt collection &rest args)
12121 "Read an outline path like a file name."
12122 (let ((thetable collection)
12123 (org-completion-use-ido nil) ; does not work with ido.
12124 (org-completion-use-iswitchb nil)) ; or iswitchb
12125 (apply
12126 'org-icompleting-read prompt
12127 (lambda (string predicate &optional flag)
12128 (let (rtn r f (l (length string)))
12129 (cond
12130 ((eq flag nil)
12131 ;; try completion
12132 (try-completion string thetable))
12133 ((eq flag t)
12134 ;; all-completions
12135 (setq rtn (all-completions string thetable predicate))
12136 (mapcar
12137 (lambda (x)
12138 (setq r (substring x l))
12139 (if (string-match " ([^)]*)$" x)
12140 (setq f (match-string 0 x))
12141 (setq f ""))
12142 (if (string-match "/" r)
12143 (concat string (substring r 0 (match-end 0)) f)
12145 rtn))
12146 ((eq flag 'lambda)
12147 ;; exact match?
12148 (assoc string thetable)))))
12149 args)))
12151 ;;;; Dynamic blocks
12153 (defun org-find-dblock (name)
12154 "Find the first dynamic block with name NAME in the buffer.
12155 If not found, stay at current position and return nil."
12156 (let ((case-fold-search t) pos)
12157 (save-excursion
12158 (goto-char (point-min))
12159 (setq pos (and (re-search-forward
12160 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12161 (match-beginning 0))))
12162 (if pos (goto-char pos))
12163 pos))
12165 (defun org-create-dblock (plist)
12166 "Create a dynamic block section, with parameters taken from PLIST.
12167 PLIST must contain a :name entry which is used as the name of the block."
12168 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12169 (end-of-line 1)
12170 (newline))
12171 (let ((col (current-column))
12172 (name (plist-get plist :name)))
12173 (insert "#+BEGIN: " name)
12174 (while plist
12175 (if (eq (car plist) :name)
12176 (setq plist (cddr plist))
12177 (insert " " (prin1-to-string (pop plist)))))
12178 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12179 (beginning-of-line -2)))
12181 (defun org-prepare-dblock ()
12182 "Prepare dynamic block for refresh.
12183 This empties the block, puts the cursor at the insert position and returns
12184 the property list including an extra property :name with the block name."
12185 (unless (looking-at org-dblock-start-re)
12186 (user-error "Not at a dynamic block"))
12187 (let* ((begdel (1+ (match-end 0)))
12188 (name (org-no-properties (match-string 1)))
12189 (params (append (list :name name)
12190 (read (concat "(" (match-string 3) ")")))))
12191 (save-excursion
12192 (beginning-of-line 1)
12193 (skip-chars-forward " \t")
12194 (setq params (plist-put params :indentation-column (current-column))))
12195 (unless (re-search-forward org-dblock-end-re nil t)
12196 (error "Dynamic block not terminated"))
12197 (setq params
12198 (append params
12199 (list :content (buffer-substring
12200 begdel (match-beginning 0)))))
12201 (delete-region begdel (match-beginning 0))
12202 (goto-char begdel)
12203 (open-line 1)
12204 params))
12206 (defun org-map-dblocks (&optional command)
12207 "Apply COMMAND to all dynamic blocks in the current buffer.
12208 If COMMAND is not given, use `org-update-dblock'."
12209 (let ((cmd (or command 'org-update-dblock)))
12210 (save-excursion
12211 (goto-char (point-min))
12212 (while (re-search-forward org-dblock-start-re nil t)
12213 (goto-char (match-beginning 0))
12214 (save-excursion
12215 (condition-case nil
12216 (funcall cmd)
12217 (error (message "Error during update of dynamic block"))))
12218 (unless (re-search-forward org-dblock-end-re nil t)
12219 (error "Dynamic block not terminated"))))))
12221 (defun org-dblock-update (&optional arg)
12222 "User command for updating dynamic blocks.
12223 Update the dynamic block at point. With prefix ARG, update all dynamic
12224 blocks in the buffer."
12225 (interactive "P")
12226 (if arg
12227 (org-update-all-dblocks)
12228 (or (looking-at org-dblock-start-re)
12229 (org-beginning-of-dblock))
12230 (org-update-dblock)))
12232 (defun org-update-dblock ()
12233 "Update the dynamic block at point.
12234 This means to empty the block, parse for parameters and then call
12235 the correct writing function."
12236 (interactive)
12237 (save-excursion
12238 (let* ((win (selected-window))
12239 (pos (point))
12240 (line (org-current-line))
12241 (params (org-prepare-dblock))
12242 (name (plist-get params :name))
12243 (indent (plist-get params :indentation-column))
12244 (cmd (intern (concat "org-dblock-write:" name))))
12245 (message "Updating dynamic block `%s' at line %d..." name line)
12246 (funcall cmd params)
12247 (message "Updating dynamic block `%s' at line %d...done" name line)
12248 (goto-char pos)
12249 (when (and indent (> indent 0))
12250 (setq indent (make-string indent ?\ ))
12251 (save-excursion
12252 (select-window win)
12253 (org-beginning-of-dblock)
12254 (forward-line 1)
12255 (while (not (looking-at org-dblock-end-re))
12256 (insert indent)
12257 (beginning-of-line 2))
12258 (when (looking-at org-dblock-end-re)
12259 (and (looking-at "[ \t]+")
12260 (replace-match ""))
12261 (insert indent)))))))
12263 (defun org-beginning-of-dblock ()
12264 "Find the beginning of the dynamic block at point.
12265 Error if there is no such block at point."
12266 (let ((pos (point))
12267 beg)
12268 (end-of-line 1)
12269 (if (and (re-search-backward org-dblock-start-re nil t)
12270 (setq beg (match-beginning 0))
12271 (re-search-forward org-dblock-end-re nil t)
12272 (> (match-end 0) pos))
12273 (goto-char beg)
12274 (goto-char pos)
12275 (error "Not in a dynamic block"))))
12277 (defun org-update-all-dblocks ()
12278 "Update all dynamic blocks in the buffer.
12279 This function can be used in a hook."
12280 (interactive)
12281 (when (derived-mode-p 'org-mode)
12282 (org-map-dblocks 'org-update-dblock)))
12285 ;;;; Completion
12287 (declare-function org-export-backend-name "org-export" (cl-x))
12288 (declare-function org-export-backend-options "org-export" (cl-x))
12289 (defun org-get-export-keywords ()
12290 "Return a list of all currently understood export keywords.
12291 Export keywords include options, block names, attributes and
12292 keywords relative to each registered export back-end."
12293 (let (keywords)
12294 (dolist (backend
12295 (org-bound-and-true-p org-export-registered-backends)
12296 (delq nil keywords))
12297 ;; Back-end name (for keywords, like #+LATEX:)
12298 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12299 (dolist (option-entry (org-export-backend-options backend))
12300 ;; Back-end options.
12301 (push (nth 1 option-entry) keywords)))))
12303 (defconst org-options-keywords
12304 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12305 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12306 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12307 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12308 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12310 (defcustom org-structure-template-alist
12311 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12312 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12313 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12314 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12315 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12316 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12317 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12318 ("L" "#+LaTeX: ")
12319 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12320 ("H" "#+HTML: ")
12321 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12322 ("A" "#+ASCII: ")
12323 ("i" "#+INDEX: ?")
12324 ("I" "#+INCLUDE: %file ?"))
12325 "Structure completion elements.
12326 This is a list of abbreviation keys and values. The value gets inserted
12327 if you type `<' followed by the key and then press the completion key,
12328 usually `TAB'. %file will be replaced by a file name after prompting
12329 for the file using completion. The cursor will be placed at the position
12330 of the `?` in the template.
12331 There are two templates for each key, the first uses the original Org syntax,
12332 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12333 the default when the /org-mtags.el/ module has been loaded. See also the
12334 variable `org-mtags-prefer-muse-templates'."
12335 :group 'org-completion
12336 :type '(repeat
12337 (list
12338 (string :tag "Key")
12339 (string :tag "Template")))
12340 :version "25.1"
12341 :package-version '(Org . "8.3"))
12343 (defun org-try-structure-completion ()
12344 "Try to complete a structure template before point.
12345 This looks for strings like \"<e\" on an otherwise empty line and
12346 expands them."
12347 (let ((l (buffer-substring (point-at-bol) (point)))
12349 (when (and (looking-at "[ \t]*$")
12350 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12351 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12352 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12353 (match-beginning 1)) a)
12354 t)))
12356 (defun org-complete-expand-structure-template (start cell)
12357 "Expand a structure template."
12358 (let ((rpl (nth 1 cell))
12359 (ind ""))
12360 (delete-region start (point))
12361 (when (string-match "\\`[ \t]*#\\+" rpl)
12362 (cond
12363 ((bolp))
12364 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12365 (setq ind (buffer-substring (point-at-bol) (point))))
12366 (t (newline))))
12367 (setq start (point))
12368 (if (string-match "%file" rpl)
12369 (setq rpl (replace-match
12370 (concat
12371 "\""
12372 (save-match-data
12373 (abbreviate-file-name (read-file-name "Include file: ")))
12374 "\"")
12375 t t rpl)))
12376 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12377 (concat "\n" ind)))
12378 (insert rpl)
12379 (if (re-search-backward "\\?" start t) (delete-char 1))))
12381 ;;;; TODO, DEADLINE, Comments
12383 (defun org-toggle-comment ()
12384 "Change the COMMENT state of an entry."
12385 (interactive)
12386 (save-excursion
12387 (org-back-to-heading)
12388 (looking-at org-complex-heading-regexp)
12389 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12390 (skip-chars-forward " \t")
12391 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12392 (if (org-in-commented-heading-p t)
12393 (delete-region (point)
12394 (progn (search-forward " " (line-end-position) 'move)
12395 (skip-chars-forward " \t")
12396 (point)))
12397 (insert org-comment-string)
12398 (unless (eolp) (insert " ")))))
12400 (defvar org-last-todo-state-is-todo nil
12401 "This is non-nil when the last TODO state change led to a TODO state.
12402 If the last change removed the TODO tag or switched to DONE, then
12403 this is nil.")
12405 (defvar org-setting-tags nil) ; dynamically skipped
12407 (defvar org-todo-setup-filter-hook nil
12408 "Hook for functions that pre-filter todo specs.
12409 Each function takes a todo spec and returns either nil or the spec
12410 transformed into canonical form." )
12412 (defvar org-todo-get-default-hook nil
12413 "Hook for functions that get a default item for todo.
12414 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12415 nil or a string to be used for the todo mark." )
12417 (defvar org-agenda-headline-snapshot-before-repeat)
12419 (defun org-current-effective-time ()
12420 "Return current time adjusted for `org-extend-today-until' variable."
12421 (let* ((ct (org-current-time))
12422 (dct (decode-time ct))
12423 (ct1
12424 (cond
12425 (org-use-last-clock-out-time-as-effective-time
12426 (or (org-clock-get-last-clock-out-time) ct))
12427 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12428 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12429 (t ct))))
12430 ct1))
12432 (defun org-todo-yesterday (&optional arg)
12433 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12434 (interactive "P")
12435 (if (eq major-mode 'org-agenda-mode)
12436 (apply 'org-agenda-todo-yesterday arg)
12437 (let* ((org-use-effective-time t)
12438 (hour (third (decode-time
12439 (org-current-time))))
12440 (org-extend-today-until (1+ hour)))
12441 (org-todo arg))))
12443 (defvar org-block-entry-blocking ""
12444 "First entry preventing the TODO state change.")
12446 (defun org-cancel-repeater ()
12447 "Cancel a repeater by setting its numeric value to zero."
12448 (interactive)
12449 (save-excursion
12450 (org-back-to-heading t)
12451 (let ((bound1 (point))
12452 (bound0 (save-excursion (outline-next-heading) (point))))
12453 (when (re-search-forward
12454 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12455 org-deadline-time-regexp "\\)\\|\\("
12456 org-ts-regexp "\\)")
12457 bound0 t)
12458 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12459 (replace-match "0" t nil nil 1))))))
12461 (defun org-todo (&optional arg)
12462 "Change the TODO state of an item.
12463 The state of an item is given by a keyword at the start of the heading,
12464 like
12465 *** TODO Write paper
12466 *** DONE Call mom
12468 The different keywords are specified in the variable `org-todo-keywords'.
12469 By default the available states are \"TODO\" and \"DONE\".
12470 So for this example: when the item starts with TODO, it is changed to DONE.
12471 When it starts with DONE, the DONE is removed. And when neither TODO nor
12472 DONE are present, add TODO at the beginning of the heading.
12474 With \\[universal-argument] prefix arg, use completion to determine the new \
12475 state.
12476 With numeric prefix arg, switch to that state.
12477 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12478 keywords (nextset).
12479 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12480 With a numeric prefix arg of 0, inhibit note taking for the change.
12481 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12483 When called through ELisp, arg is also interpreted in the following way:
12484 'none -> empty state
12485 \"\"(empty string) -> switch to empty state
12486 'done -> switch to DONE
12487 'nextset -> switch to the next set of keywords
12488 'previousset -> switch to the previous set of keywords
12489 \"WAITING\" -> switch to the specified keyword, but only if it
12490 really is a member of `org-todo-keywords'."
12491 (interactive "P")
12492 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12493 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12494 'region-start-level 'region))
12495 org-loop-over-headlines-in-active-region)
12496 (org-map-entries
12497 `(org-todo ,arg)
12498 org-loop-over-headlines-in-active-region
12499 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12500 (if (equal arg '(16)) (setq arg 'nextset))
12501 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12502 (let ((org-blocker-hook org-blocker-hook)
12503 commentp
12504 case-fold-search)
12505 (when (equal arg '(64))
12506 (setq arg nil org-blocker-hook nil))
12507 (when (and org-blocker-hook
12508 (or org-inhibit-blocking
12509 (org-entry-get nil "NOBLOCKING")))
12510 (setq org-blocker-hook nil))
12511 (save-excursion
12512 (catch 'exit
12513 (org-back-to-heading t)
12514 (when (org-in-commented-heading-p t)
12515 (org-toggle-comment)
12516 (setq commentp t))
12517 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12518 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12519 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12520 (let* ((match-data (match-data))
12521 (startpos (point-at-bol))
12522 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12523 (org-log-done org-log-done)
12524 (org-log-repeat org-log-repeat)
12525 (org-todo-log-states org-todo-log-states)
12526 (org-inhibit-logging
12527 (if (equal arg 0)
12528 (progn (setq arg nil) 'note) org-inhibit-logging))
12529 (this (match-string 1))
12530 (hl-pos (match-beginning 0))
12531 (head (org-get-todo-sequence-head this))
12532 (ass (assoc head org-todo-kwd-alist))
12533 (interpret (nth 1 ass))
12534 (done-word (nth 3 ass))
12535 (final-done-word (nth 4 ass))
12536 (org-last-state (or this ""))
12537 (completion-ignore-case t)
12538 (member (member this org-todo-keywords-1))
12539 (tail (cdr member))
12540 (org-state (cond
12541 ((and org-todo-key-trigger
12542 (or (and (equal arg '(4))
12543 (eq org-use-fast-todo-selection 'prefix))
12544 (and (not arg) org-use-fast-todo-selection
12545 (not (eq org-use-fast-todo-selection
12546 'prefix)))))
12547 ;; Use fast selection
12548 (org-fast-todo-selection))
12549 ((and (equal arg '(4))
12550 (or (not org-use-fast-todo-selection)
12551 (not org-todo-key-trigger)))
12552 ;; Read a state with completion
12553 (org-icompleting-read
12554 "State: " (mapcar 'list org-todo-keywords-1)
12555 nil t))
12556 ((eq arg 'right)
12557 (if this
12558 (if tail (car tail) nil)
12559 (car org-todo-keywords-1)))
12560 ((eq arg 'left)
12561 (if (equal member org-todo-keywords-1)
12563 (if this
12564 (nth (- (length org-todo-keywords-1)
12565 (length tail) 2)
12566 org-todo-keywords-1)
12567 (org-last org-todo-keywords-1))))
12568 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12569 (setq arg nil))) ; hack to fall back to cycling
12570 (arg
12571 ;; user or caller requests a specific state
12572 (cond
12573 ((equal arg "") nil)
12574 ((eq arg 'none) nil)
12575 ((eq arg 'done) (or done-word (car org-done-keywords)))
12576 ((eq arg 'nextset)
12577 (or (car (cdr (member head org-todo-heads)))
12578 (car org-todo-heads)))
12579 ((eq arg 'previousset)
12580 (let ((org-todo-heads (reverse org-todo-heads)))
12581 (or (car (cdr (member head org-todo-heads)))
12582 (car org-todo-heads))))
12583 ((car (member arg org-todo-keywords-1)))
12584 ((stringp arg)
12585 (user-error "State `%s' not valid in this file" arg))
12586 ((nth (1- (prefix-numeric-value arg))
12587 org-todo-keywords-1))))
12588 ((null member) (or head (car org-todo-keywords-1)))
12589 ((equal this final-done-word) nil) ;; -> make empty
12590 ((null tail) nil) ;; -> first entry
12591 ((memq interpret '(type priority))
12592 (if (eq this-command last-command)
12593 (car tail)
12594 (if (> (length tail) 0)
12595 (or done-word (car org-done-keywords))
12596 nil)))
12598 (car tail))))
12599 (org-state (or
12600 (run-hook-with-args-until-success
12601 'org-todo-get-default-hook org-state org-last-state)
12602 org-state))
12603 (next (if org-state (concat " " org-state " ") " "))
12604 (change-plist (list :type 'todo-state-change :from this :to org-state
12605 :position startpos))
12606 dolog now-done-p)
12607 (when org-blocker-hook
12608 (setq org-last-todo-state-is-todo
12609 (not (member this org-done-keywords)))
12610 (unless (save-excursion
12611 (save-match-data
12612 (org-with-wide-buffer
12613 (run-hook-with-args-until-failure
12614 'org-blocker-hook change-plist))))
12615 (if (org-called-interactively-p 'interactive)
12616 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12617 this org-state org-block-entry-blocking)
12618 ;; fail silently
12619 (message "TODO state change from %s to %s blocked (by \"%s\")"
12620 this org-state org-block-entry-blocking)
12621 (throw 'exit nil))))
12622 (store-match-data match-data)
12623 (replace-match next t t)
12624 (cond ((equal this org-state)
12625 (message "TODO state was already %s" (org-trim next)))
12626 ((pos-visible-in-window-p hl-pos)
12627 (message "TODO state changed to %s" (org-trim next))))
12628 (unless head
12629 (setq head (org-get-todo-sequence-head org-state)
12630 ass (assoc head org-todo-kwd-alist)
12631 interpret (nth 1 ass)
12632 done-word (nth 3 ass)
12633 final-done-word (nth 4 ass)))
12634 (when (memq arg '(nextset previousset))
12635 (message "Keyword-Set %d/%d: %s"
12636 (- (length org-todo-sets) -1
12637 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12638 (length org-todo-sets)
12639 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12640 (setq org-last-todo-state-is-todo
12641 (not (member org-state org-done-keywords)))
12642 (setq now-done-p (and (member org-state org-done-keywords)
12643 (not (member this org-done-keywords))))
12644 (and logging (org-local-logging logging))
12645 (when (and (or org-todo-log-states org-log-done)
12646 (not (eq org-inhibit-logging t))
12647 (not (memq arg '(nextset previousset))))
12648 ;; we need to look at recording a time and note
12649 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12650 (nth 2 (assoc this org-todo-log-states))))
12651 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12652 (setq dolog 'time))
12653 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12654 (and org-state
12655 (member org-state org-not-done-keywords)
12656 (not (member this org-not-done-keywords))))
12657 ;; This is now a todo state and was not one before
12658 ;; If there was a CLOSED time stamp, get rid of it.
12659 (org-add-planning-info nil nil 'closed))
12660 (when (and now-done-p org-log-done)
12661 ;; It is now done, and it was not done before
12662 (org-add-planning-info 'closed (org-current-effective-time))
12663 (if (and (not dolog) (eq 'note org-log-done))
12664 (org-add-log-setup 'done org-state this 'findpos 'note)))
12665 (when (and org-state dolog)
12666 ;; This is a non-nil state, and we need to log it
12667 (org-add-log-setup 'state org-state this 'findpos dolog)))
12668 ;; Fixup tag positioning
12669 (org-todo-trigger-tag-changes org-state)
12670 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12671 (when org-provide-todo-statistics
12672 (org-update-parent-todo-statistics))
12673 (run-hooks 'org-after-todo-state-change-hook)
12674 (if (and arg (not (member org-state org-done-keywords)))
12675 (setq head (org-get-todo-sequence-head org-state)))
12676 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12677 ;; Do we need to trigger a repeat?
12678 (when now-done-p
12679 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12680 ;; This is for the agenda, take a snapshot of the headline.
12681 (save-match-data
12682 (setq org-agenda-headline-snapshot-before-repeat
12683 (org-get-heading))))
12684 (org-auto-repeat-maybe org-state))
12685 ;; Fixup cursor location if close to the keyword
12686 (if (and (outline-on-heading-p)
12687 (not (bolp))
12688 (save-excursion (beginning-of-line 1)
12689 (looking-at org-todo-line-regexp))
12690 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12691 (progn
12692 (goto-char (or (match-end 2) (match-end 1)))
12693 (and (looking-at " ") (just-one-space))))
12694 (when org-trigger-hook
12695 (save-excursion
12696 (run-hook-with-args 'org-trigger-hook change-plist)))
12697 (when commentp (org-toggle-comment))))))))
12699 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12700 "Block turning an entry into a TODO, using the hierarchy.
12701 This checks whether the current task should be blocked from state
12702 changes. Such blocking occurs when:
12704 1. The task has children which are not all in a completed state.
12706 2. A task has a parent with the property :ORDERED:, and there
12707 are siblings prior to the current task with incomplete
12708 status.
12710 3. The parent of the task is blocked because it has siblings that should
12711 be done first, or is child of a block grandparent TODO entry."
12713 (if (not org-enforce-todo-dependencies)
12714 t ; if locally turned off don't block
12715 (catch 'dont-block
12716 ;; If this is not a todo state change, or if this entry is already DONE,
12717 ;; do not block
12718 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12719 (member (plist-get change-plist :from)
12720 (cons 'done org-done-keywords))
12721 (member (plist-get change-plist :to)
12722 (cons 'todo org-not-done-keywords))
12723 (not (plist-get change-plist :to)))
12724 (throw 'dont-block t))
12725 ;; If this task has children, and any are undone, it's blocked
12726 (save-excursion
12727 (org-back-to-heading t)
12728 (let ((this-level (funcall outline-level)))
12729 (outline-next-heading)
12730 (let ((child-level (funcall outline-level)))
12731 (while (and (not (eobp))
12732 (> child-level this-level))
12733 ;; this todo has children, check whether they are all
12734 ;; completed
12735 (if (and (not (org-entry-is-done-p))
12736 (org-entry-is-todo-p))
12737 (progn (setq org-block-entry-blocking (org-get-heading))
12738 (throw 'dont-block nil)))
12739 (outline-next-heading)
12740 (setq child-level (funcall outline-level))))))
12741 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12742 ;; any previous siblings are undone, it's blocked
12743 (save-excursion
12744 (org-back-to-heading t)
12745 (let* ((pos (point))
12746 (parent-pos (and (org-up-heading-safe) (point))))
12747 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12748 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12749 (forward-line 1)
12750 (re-search-forward org-not-done-heading-regexp pos t))
12751 (setq org-block-entry-blocking (match-string 0))
12752 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12753 ;; Search further up the hierarchy, to see if an ancestor is blocked
12754 (while t
12755 (goto-char parent-pos)
12756 (if (not (looking-at org-not-done-heading-regexp))
12757 (throw 'dont-block t)) ; do not block, parent is not a TODO
12758 (setq pos (point))
12759 (setq parent-pos (and (org-up-heading-safe) (point)))
12760 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12761 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12762 (forward-line 1)
12763 (re-search-forward org-not-done-heading-regexp pos t)
12764 (setq org-block-entry-blocking (org-get-heading)))
12765 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12767 (defcustom org-track-ordered-property-with-tag nil
12768 "Should the ORDERED property also be shown as a tag?
12769 The ORDERED property decides if an entry should require subtasks to be
12770 completed in sequence. Since a property is not very visible, setting
12771 this option means that toggling the ORDERED property with the command
12772 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12773 not relevant for the behavior, but it makes things more visible.
12775 Note that toggling the tag with tags commands will not change the property
12776 and therefore not influence behavior!
12778 This can be t, meaning the tag ORDERED should be used, It can also be a
12779 string to select a different tag for this task."
12780 :group 'org-todo
12781 :type '(choice
12782 (const :tag "No tracking" nil)
12783 (const :tag "Track with ORDERED tag" t)
12784 (string :tag "Use other tag")))
12786 (defun org-toggle-ordered-property ()
12787 "Toggle the ORDERED property of the current entry.
12788 For better visibility, you can track the value of this property with a tag.
12789 See variable `org-track-ordered-property-with-tag'."
12790 (interactive)
12791 (let* ((t1 org-track-ordered-property-with-tag)
12792 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12793 (save-excursion
12794 (org-back-to-heading)
12795 (if (org-entry-get nil "ORDERED")
12796 (progn
12797 (org-delete-property "ORDERED")
12798 (and tag (org-toggle-tag tag 'off))
12799 (message "Subtasks can be completed in arbitrary order"))
12800 (org-entry-put nil "ORDERED" "t")
12801 (and tag (org-toggle-tag tag 'on))
12802 (message "Subtasks must be completed in sequence")))))
12804 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12805 (defun org-block-todo-from-checkboxes (change-plist)
12806 "Block turning an entry into a TODO, using checkboxes.
12807 This checks whether the current task should be blocked from state
12808 changes because there are unchecked boxes in this entry."
12809 (if (not org-enforce-todo-checkbox-dependencies)
12810 t ; if locally turned off don't block
12811 (catch 'dont-block
12812 ;; If this is not a todo state change, or if this entry is already DONE,
12813 ;; do not block
12814 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12815 (member (plist-get change-plist :from)
12816 (cons 'done org-done-keywords))
12817 (member (plist-get change-plist :to)
12818 (cons 'todo org-not-done-keywords))
12819 (not (plist-get change-plist :to)))
12820 (throw 'dont-block t))
12821 ;; If this task has checkboxes that are not checked, it's blocked
12822 (save-excursion
12823 (org-back-to-heading t)
12824 (let ((beg (point)) end)
12825 (outline-next-heading)
12826 (setq end (point))
12827 (goto-char beg)
12828 (if (org-list-search-forward
12829 (concat (org-item-beginning-re)
12830 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12831 "\\[[- ]\\]")
12832 end t)
12833 (progn
12834 (if (boundp 'org-blocked-by-checkboxes)
12835 (setq org-blocked-by-checkboxes t))
12836 (throw 'dont-block nil)))))
12837 t))) ; do not block
12839 (defun org-entry-blocked-p ()
12840 "Is the current entry blocked?"
12841 (org-with-silent-modifications
12842 (if (org-entry-get nil "NOBLOCKING")
12843 nil ;; Never block this entry
12844 (not (run-hook-with-args-until-failure
12845 'org-blocker-hook
12846 (list :type 'todo-state-change
12847 :position (point)
12848 :from 'todo
12849 :to 'done))))))
12851 (defun org-update-statistics-cookies (all)
12852 "Update the statistics cookie, either from TODO or from checkboxes.
12853 This should be called with the cursor in a line with a statistics cookie."
12854 (interactive "P")
12855 (if all
12856 (progn
12857 (org-update-checkbox-count 'all)
12858 (org-map-entries 'org-update-parent-todo-statistics))
12859 (if (not (org-at-heading-p))
12860 (org-update-checkbox-count)
12861 (let ((pos (point-marker))
12862 end l1 l2)
12863 (ignore-errors (org-back-to-heading t))
12864 (if (not (org-at-heading-p))
12865 (org-update-checkbox-count)
12866 (setq l1 (org-outline-level))
12867 (setq end (save-excursion
12868 (outline-next-heading)
12869 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12870 (point)))
12871 (if (and (save-excursion
12872 (re-search-forward
12873 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12874 (not (save-excursion (re-search-forward
12875 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12876 (org-update-checkbox-count)
12877 (if (and l2 (> l2 l1))
12878 (progn
12879 (goto-char end)
12880 (org-update-parent-todo-statistics))
12881 (goto-char pos)
12882 (beginning-of-line 1)
12883 (while (re-search-forward
12884 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12885 (point-at-eol) t)
12886 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12887 (goto-char pos)
12888 (move-marker pos nil)))))
12890 (defvar org-entry-property-inherited-from) ;; defined below
12891 (defun org-update-parent-todo-statistics ()
12892 "Update any statistics cookie in the parent of the current headline.
12893 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12894 the entire subtree and this will travel up the hierarchy and update
12895 statistics everywhere."
12896 (let* ((prop (save-excursion (org-up-heading-safe)
12897 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12898 (recursive (or (not org-hierarchical-todo-statistics)
12899 (and prop (string-match "\\<recursive\\>" prop))))
12900 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12902 (first t)
12903 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12904 level ltoggle l1 new ndel
12905 (cnt-all 0) (cnt-done 0) is-percent kwd
12906 checkbox-beg ov ovs ove cookie-present)
12907 (catch 'exit
12908 (save-excursion
12909 (beginning-of-line 1)
12910 (setq ltoggle (funcall outline-level))
12911 ;; Three situations are to consider:
12913 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12914 ;; to the top-level ancestor on the headline;
12916 ;; 2. If parent has "recursive" property, repeat up to the
12917 ;; headline setting that property, taking inheritance into
12918 ;; account;
12920 ;; 3. Else, move up to direct parent and proceed only once.
12921 (while (and (setq level (org-up-heading-safe))
12922 (or recursive first)
12923 (>= (point) lim))
12924 (setq first nil cookie-present nil)
12925 (unless (and level
12926 (not (string-match
12927 "\\<checkbox\\>"
12928 (downcase (or (org-entry-get nil "COOKIE_DATA")
12929 "")))))
12930 (throw 'exit nil))
12931 (while (re-search-forward box-re (point-at-eol) t)
12932 (setq cnt-all 0 cnt-done 0 cookie-present t)
12933 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12934 (save-match-data
12935 (unless (outline-next-heading) (throw 'exit nil))
12936 (while (and (looking-at org-complex-heading-regexp)
12937 (> (setq l1 (length (match-string 1))) level))
12938 (setq kwd (and (or recursive (= l1 ltoggle))
12939 (match-string 2)))
12940 (if (or (eq org-provide-todo-statistics 'all-headlines)
12941 (and (eq org-provide-todo-statistics t)
12942 (or (member kwd org-done-keywords)))
12943 (and (listp org-provide-todo-statistics)
12944 (stringp (car org-provide-todo-statistics))
12945 (or (member kwd org-provide-todo-statistics)
12946 (member kwd org-done-keywords)))
12947 (and (listp org-provide-todo-statistics)
12948 (listp (car org-provide-todo-statistics))
12949 (or (member kwd (car org-provide-todo-statistics))
12950 (and (member kwd org-done-keywords)
12951 (member kwd (cadr org-provide-todo-statistics))))))
12952 (setq cnt-all (1+ cnt-all))
12953 (if (eq org-provide-todo-statistics t)
12954 (and kwd (setq cnt-all (1+ cnt-all)))))
12955 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12956 (member kwd org-done-keywords))
12957 (and (listp org-provide-todo-statistics)
12958 (listp (car org-provide-todo-statistics))
12959 (member kwd org-done-keywords)
12960 (member kwd (cadr org-provide-todo-statistics)))
12961 (and (listp org-provide-todo-statistics)
12962 (stringp (car org-provide-todo-statistics))
12963 (member kwd org-done-keywords)))
12964 (setq cnt-done (1+ cnt-done)))
12965 (outline-next-heading)))
12966 (setq new
12967 (if is-percent
12968 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12969 (format "[%d/%d]" cnt-done cnt-all))
12970 ndel (- (match-end 0) checkbox-beg))
12971 ;; handle overlays when updating cookie from column view
12972 (when (setq ov (car (overlays-at checkbox-beg)))
12973 (setq ovs (overlay-start ov) ove (overlay-end ov))
12974 (delete-overlay ov))
12975 (goto-char checkbox-beg)
12976 (insert new)
12977 (delete-region (point) (+ (point) ndel))
12978 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12979 (when ov (move-overlay ov ovs ove)))
12980 (when cookie-present
12981 (run-hook-with-args 'org-after-todo-statistics-hook
12982 cnt-done (- cnt-all cnt-done))))))
12983 (run-hooks 'org-todo-statistics-hook)))
12985 (defvar org-after-todo-statistics-hook nil
12986 "Hook that is called after a TODO statistics cookie has been updated.
12987 Each function is called with two arguments: the number of not-done entries
12988 and the number of done entries.
12990 For example, the following function, when added to this hook, will switch
12991 an entry to DONE when all children are done, and back to TODO when new
12992 entries are set to a TODO status. Note that this hook is only called
12993 when there is a statistics cookie in the headline!
12995 (defun org-summary-todo (n-done n-not-done)
12996 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12997 (let (org-log-done org-log-states) ; turn off logging
12998 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13001 (defvar org-todo-statistics-hook nil
13002 "Hook that is run whenever Org thinks TODO statistics should be updated.
13003 This hook runs even if there is no statistics cookie present, in which case
13004 `org-after-todo-statistics-hook' would not run.")
13006 (defun org-todo-trigger-tag-changes (state)
13007 "Apply the changes defined in `org-todo-state-tags-triggers'."
13008 (let ((l org-todo-state-tags-triggers)
13009 changes)
13010 (when (or (not state) (equal state ""))
13011 (setq changes (append changes (cdr (assoc "" l)))))
13012 (when (and (stringp state) (> (length state) 0))
13013 (setq changes (append changes (cdr (assoc state l)))))
13014 (when (member state org-not-done-keywords)
13015 (setq changes (append changes (cdr (assoc 'todo l)))))
13016 (when (member state org-done-keywords)
13017 (setq changes (append changes (cdr (assoc 'done l)))))
13018 (dolist (c changes)
13019 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13021 (defun org-local-logging (value)
13022 "Get logging settings from a property VALUE."
13023 (let* (words w a)
13024 ;; directly set the variables, they are already local.
13025 (setq org-log-done nil
13026 org-log-repeat nil
13027 org-todo-log-states nil)
13028 (setq words (org-split-string value))
13029 (while (setq w (pop words))
13030 (cond
13031 ((setq a (assoc w org-startup-options))
13032 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13033 (set (nth 1 a) (nth 2 a))))
13034 ((setq a (org-extract-log-state-settings w))
13035 (and (member (car a) org-todo-keywords-1)
13036 (push a org-todo-log-states)))))))
13038 (defun org-get-todo-sequence-head (kwd)
13039 "Return the head of the TODO sequence to which KWD belongs.
13040 If KWD is not set, check if there is a text property remembering the
13041 right sequence."
13042 (let (p)
13043 (cond
13044 ((not kwd)
13045 (or (get-text-property (point-at-bol) 'org-todo-head)
13046 (progn
13047 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13048 nil (point-at-eol)))
13049 (get-text-property p 'org-todo-head))))
13050 ((not (member kwd org-todo-keywords-1))
13051 (car org-todo-keywords-1))
13052 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13054 (defun org-fast-todo-selection ()
13055 "Fast TODO keyword selection with single keys.
13056 Returns the new TODO keyword, or nil if no state change should occur."
13057 (let* ((fulltable org-todo-key-alist)
13058 (done-keywords org-done-keywords) ;; needed for the faces.
13059 (maxlen (apply 'max (mapcar
13060 (lambda (x)
13061 (if (stringp (car x)) (string-width (car x)) 0))
13062 fulltable)))
13063 (expert nil)
13064 (fwidth (+ maxlen 3 1 3))
13065 (ncol (/ (- (window-width) 4) fwidth))
13066 tg cnt e c tbl
13067 groups ingroup)
13068 (save-excursion
13069 (save-window-excursion
13070 (if expert
13071 (set-buffer (get-buffer-create " *Org todo*"))
13072 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13073 (erase-buffer)
13074 (org-set-local 'org-done-keywords done-keywords)
13075 (setq tbl fulltable cnt 0)
13076 (while (setq e (pop tbl))
13077 (cond
13078 ((equal e '(:startgroup))
13079 (push '() groups) (setq ingroup t)
13080 (when (not (= cnt 0))
13081 (setq cnt 0)
13082 (insert "\n"))
13083 (insert "{ "))
13084 ((equal e '(:endgroup))
13085 (setq ingroup nil cnt 0)
13086 (insert "}\n"))
13087 ((equal e '(:newline))
13088 (when (not (= cnt 0))
13089 (setq cnt 0)
13090 (insert "\n")
13091 (setq e (car tbl))
13092 (while (equal (car tbl) '(:newline))
13093 (insert "\n")
13094 (setq tbl (cdr tbl)))))
13096 (setq tg (car e) c (cdr e))
13097 (if ingroup (push tg (car groups)))
13098 (setq tg (org-add-props tg nil 'face
13099 (org-get-todo-face tg)))
13100 (if (and (= cnt 0) (not ingroup)) (insert " "))
13101 (insert "[" c "] " tg (make-string
13102 (- fwidth 4 (length tg)) ?\ ))
13103 (when (= (setq cnt (1+ cnt)) ncol)
13104 (insert "\n")
13105 (if ingroup (insert " "))
13106 (setq cnt 0)))))
13107 (insert "\n")
13108 (goto-char (point-min))
13109 (if (not expert) (org-fit-window-to-buffer))
13110 (message "[a-z..]:Set [SPC]:clear")
13111 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13112 (cond
13113 ((or (= c ?\C-g)
13114 (and (= c ?q) (not (rassoc c fulltable))))
13115 (setq quit-flag t))
13116 ((= c ?\ ) nil)
13117 ((setq e (rassoc c fulltable) tg (car e))
13119 (t (setq quit-flag t)))))))
13121 (defun org-entry-is-todo-p ()
13122 (member (org-get-todo-state) org-not-done-keywords))
13124 (defun org-entry-is-done-p ()
13125 (member (org-get-todo-state) org-done-keywords))
13127 (defun org-get-todo-state ()
13128 "Return the TODO keyword of the current subtree."
13129 (save-excursion
13130 (org-back-to-heading t)
13131 (and (looking-at org-todo-line-regexp)
13132 (match-end 2)
13133 (match-string 2))))
13135 (defun org-at-date-range-p (&optional inactive-ok)
13136 "Is the cursor inside a date range?"
13137 (interactive)
13138 (save-excursion
13139 (catch 'exit
13140 (let ((pos (point)))
13141 (skip-chars-backward "^[<\r\n")
13142 (skip-chars-backward "<[")
13143 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13144 (>= (match-end 0) pos)
13145 (throw 'exit t))
13146 (skip-chars-backward "^<[\r\n")
13147 (skip-chars-backward "<[")
13148 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13149 (>= (match-end 0) pos)
13150 (throw 'exit t)))
13151 nil)))
13153 (defun org-get-repeat (&optional tagline)
13154 "Check if there is a deadline/schedule with repeater in this entry."
13155 (save-match-data
13156 (save-excursion
13157 (org-back-to-heading t)
13158 (and (re-search-forward (if tagline
13159 (concat tagline "\\s-*" org-repeat-re)
13160 org-repeat-re)
13161 (org-entry-end-position) t)
13162 (match-string-no-properties 1)))))
13164 (defvar org-last-changed-timestamp)
13165 (defvar org-last-inserted-timestamp)
13166 (defvar org-log-post-message)
13167 (defvar org-log-note-purpose)
13168 (defvar org-log-note-how nil)
13169 (defvar org-log-note-extra)
13170 (defun org-auto-repeat-maybe (done-word)
13171 "Check if the current headline contains a repeated deadline/schedule.
13172 If yes, set TODO state back to what it was and change the base date
13173 of repeating deadline/scheduled time stamps to new date.
13174 This function is run automatically after each state change to a DONE state."
13175 ;; last-state is dynamically scoped into this function
13176 (let* ((repeat (org-get-repeat))
13177 (aa (assoc org-last-state org-todo-kwd-alist))
13178 (interpret (nth 1 aa))
13179 (head (nth 2 aa))
13180 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13181 (msg "Entry repeats: ")
13182 (org-log-done nil)
13183 (org-todo-log-states nil)
13184 re type n what ts time to-state)
13185 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13186 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13187 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13188 org-todo-repeat-to-state))
13189 (unless (and to-state (member to-state org-todo-keywords-1))
13190 (setq to-state (if (eq interpret 'type) org-last-state head)))
13191 (org-todo to-state)
13192 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13193 (org-entry-put nil "LAST_REPEAT" (format-time-string
13194 (org-time-stamp-format t t))))
13195 (when org-log-repeat
13196 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13197 (memq 'org-add-log-note post-command-hook))
13198 ;; OK, we are already setup for some record
13199 (if (eq org-log-repeat 'note)
13200 ;; make sure we take a note, not only a time stamp
13201 (setq org-log-note-how 'note))
13202 ;; Set up for taking a record
13203 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13204 org-last-state
13205 'findpos org-log-repeat)))
13206 (org-back-to-heading t)
13207 (org-add-planning-info nil nil 'closed)
13208 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13209 org-deadline-time-regexp "\\)\\|\\("
13210 org-ts-regexp "\\)"))
13211 (while (re-search-forward
13212 re (save-excursion (outline-next-heading) (point)) t)
13213 (setq type (if (match-end 1) org-scheduled-string
13214 (if (match-end 3) org-deadline-string "Plain:"))
13215 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13216 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13217 (setq n (string-to-number (match-string 2 ts))
13218 what (match-string 3 ts))
13219 (if (equal what "w") (setq n (* n 7) what "d"))
13220 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13221 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13222 ;; Preparation, see if we need to modify the start date for the change
13223 (when (match-end 1)
13224 (setq time (save-match-data (org-time-string-to-time ts)))
13225 (cond
13226 ((equal (match-string 1 ts) ".")
13227 ;; Shift starting date to today
13228 (org-timestamp-change
13229 (- (org-today) (time-to-days time))
13230 'day))
13231 ((equal (match-string 1 ts) "+")
13232 (let ((nshiftmax 10) (nshift 0))
13233 (while (or (= nshift 0)
13234 (<= (time-to-days time)
13235 (time-to-days (current-time))))
13236 (when (= (incf nshift) nshiftmax)
13237 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13238 (user-error "Abort")))
13239 (org-timestamp-change n (cdr (assoc what whata)))
13240 (org-at-timestamp-p t)
13241 (setq ts (match-string 1))
13242 (setq time (save-match-data (org-time-string-to-time ts)))))
13243 (org-timestamp-change (- n) (cdr (assoc what whata)))
13244 ;; rematch, so that we have everything in place for the real shift
13245 (org-at-timestamp-p t)
13246 (setq ts (match-string 1))
13247 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13248 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13249 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13250 (setq org-log-post-message msg)
13251 (message "%s" msg))))
13253 (defun org-show-todo-tree (arg)
13254 "Make a compact tree which shows all headlines marked with TODO.
13255 The tree will show the lines where the regexp matches, and all higher
13256 headlines above the match.
13257 With a \\[universal-argument] prefix, prompt for a regexp to match.
13258 With a numeric prefix N, construct a sparse tree for the Nth element
13259 of `org-todo-keywords-1'."
13260 (interactive "P")
13261 (let ((case-fold-search nil)
13262 (kwd-re
13263 (cond ((null arg) org-not-done-regexp)
13264 ((equal arg '(4))
13265 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13266 (mapcar 'list org-todo-keywords-1))))
13267 (concat "\\("
13268 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13269 "\\)\\>")))
13270 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13271 (regexp-quote (nth (1- (prefix-numeric-value arg))
13272 org-todo-keywords-1)))
13273 (t (user-error "Invalid prefix argument: %s" arg)))))
13274 (message "%d TODO entries found"
13275 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13277 (defun org-deadline (arg &optional time)
13278 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13279 With one universal prefix argument, remove any deadline from the item.
13280 With two universal prefix arguments, prompt for a warning delay.
13281 With argument TIME, set the deadline at the corresponding date. TIME
13282 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13283 (interactive "P")
13284 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13285 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13286 'region-start-level 'region))
13287 org-loop-over-headlines-in-active-region)
13288 (org-map-entries
13289 `(org-deadline ',arg ,time)
13290 org-loop-over-headlines-in-active-region
13291 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13292 (let* ((old-date (org-entry-get nil "DEADLINE"))
13293 (old-date-time (if old-date (org-time-string-to-time old-date)))
13294 (repeater (and old-date
13295 (string-match
13296 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13297 old-date)
13298 (match-string 1 old-date))))
13299 (cond
13300 ((equal arg '(4))
13301 (when (and old-date org-log-redeadline)
13302 (org-add-log-setup 'deldeadline nil old-date 'findpos
13303 org-log-redeadline))
13304 (org-remove-timestamp-with-keyword org-deadline-string)
13305 (message "Item no longer has a deadline."))
13306 ((equal arg '(16))
13307 (save-excursion
13308 (org-back-to-heading t)
13309 (if (re-search-forward
13310 org-deadline-time-regexp
13311 (save-excursion (outline-next-heading) (point)) t)
13312 (let* ((rpl0 (match-string 1))
13313 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13314 (replace-match
13315 (concat org-deadline-string
13316 " <" rpl
13317 (format " -%dd"
13318 (abs
13319 (- (time-to-days
13320 (save-match-data
13321 (org-read-date nil t nil "Warn starting from" old-date-time)))
13322 (time-to-days old-date-time))))
13323 ">") t t))
13324 (user-error "No deadline information to update"))))
13326 (org-add-planning-info 'deadline time 'closed)
13327 (when (and old-date org-log-redeadline
13328 (not (equal old-date
13329 (substring org-last-inserted-timestamp 1 -1))))
13330 (org-add-log-setup 'redeadline nil old-date 'findpos
13331 org-log-redeadline))
13332 (when repeater
13333 (save-excursion
13334 (org-back-to-heading t)
13335 (when (re-search-forward (concat org-deadline-string " "
13336 org-last-inserted-timestamp)
13337 (save-excursion
13338 (outline-next-heading) (point)) t)
13339 (goto-char (1- (match-end 0)))
13340 (insert " " repeater)
13341 (setq org-last-inserted-timestamp
13342 (concat (substring org-last-inserted-timestamp 0 -1)
13343 " " repeater
13344 (substring org-last-inserted-timestamp -1))))))
13345 (message "Deadline on %s" org-last-inserted-timestamp))))))
13347 (defun org-schedule (arg &optional time)
13348 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13349 With one universal prefix argument, remove any scheduling date from the item.
13350 With two universal prefix arguments, prompt for a delay cookie.
13351 With argument TIME, scheduled at the corresponding date. TIME can
13352 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13353 (interactive "P")
13354 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13355 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13356 'region-start-level 'region))
13357 org-loop-over-headlines-in-active-region)
13358 (org-map-entries
13359 `(org-schedule ',arg ,time)
13360 org-loop-over-headlines-in-active-region
13361 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13362 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13363 (old-date-time (if old-date (org-time-string-to-time old-date)))
13364 (repeater (and old-date
13365 (string-match
13366 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13367 old-date)
13368 (match-string 1 old-date))))
13369 (cond
13370 ((equal arg '(4))
13371 (progn
13372 (when (and old-date org-log-reschedule)
13373 (org-add-log-setup 'delschedule nil old-date 'findpos
13374 org-log-reschedule))
13375 (org-remove-timestamp-with-keyword org-scheduled-string)
13376 (message "Item is no longer scheduled.")))
13377 ((equal arg '(16))
13378 (save-excursion
13379 (org-back-to-heading t)
13380 (if (re-search-forward
13381 org-scheduled-time-regexp
13382 (save-excursion (outline-next-heading) (point)) t)
13383 (let* ((rpl0 (match-string 1))
13384 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13385 (replace-match
13386 (concat org-scheduled-string
13387 " <" rpl
13388 (format " -%dd"
13389 (abs
13390 (- (time-to-days
13391 (save-match-data
13392 (org-read-date nil t nil "Delay until" old-date-time)))
13393 (time-to-days old-date-time))))
13394 ">") t t))
13395 (user-error "No scheduled information to update"))))
13397 (org-add-planning-info 'scheduled time 'closed)
13398 (when (and old-date org-log-reschedule
13399 (not (equal old-date
13400 (substring org-last-inserted-timestamp 1 -1))))
13401 (org-add-log-setup 'reschedule nil old-date 'findpos
13402 org-log-reschedule))
13403 (when repeater
13404 (save-excursion
13405 (org-back-to-heading t)
13406 (when (re-search-forward (concat org-scheduled-string " "
13407 org-last-inserted-timestamp)
13408 (save-excursion
13409 (outline-next-heading) (point)) t)
13410 (goto-char (1- (match-end 0)))
13411 (insert " " repeater)
13412 (setq org-last-inserted-timestamp
13413 (concat (substring org-last-inserted-timestamp 0 -1)
13414 " " repeater
13415 (substring org-last-inserted-timestamp -1))))))
13416 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13418 (defun org-get-scheduled-time (pom &optional inherit)
13419 "Get the scheduled time as a time tuple, of a format suitable
13420 for calling org-schedule with, or if there is no scheduling,
13421 returns nil."
13422 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13423 (when time
13424 (apply 'encode-time (org-parse-time-string time)))))
13426 (defun org-get-deadline-time (pom &optional inherit)
13427 "Get the deadline as a time tuple, of a format suitable for
13428 calling org-deadline with, or if there is no scheduling, returns
13429 nil."
13430 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13431 (when time
13432 (apply 'encode-time (org-parse-time-string time)))))
13434 (defun org-remove-timestamp-with-keyword (keyword)
13435 "Remove all time stamps with KEYWORD in the current entry."
13436 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13437 beg)
13438 (save-excursion
13439 (org-back-to-heading t)
13440 (setq beg (point))
13441 (outline-next-heading)
13442 (while (re-search-backward re beg t)
13443 (replace-match "")
13444 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13445 (equal (char-before) ?\ ))
13446 (backward-delete-char 1)
13447 (if (string-match "^[ \t]*$" (buffer-substring
13448 (point-at-bol) (point-at-eol)))
13449 (delete-region (point-at-bol)
13450 (min (point-max) (1+ (point-at-eol))))))))))
13452 (defvar org-time-was-given) ; dynamically scoped parameter
13453 (defvar org-end-time-was-given) ; dynamically scoped parameter
13455 (defun org-at-planning-p ()
13456 "Non-nil when point is on a planning info line."
13457 ;; This is as accurate and faster than `org-element-at-point' since
13458 ;; planning info location is fixed in the section.
13459 (org-with-wide-buffer
13460 (beginning-of-line)
13461 (and (org-looking-at-p org-planning-line-re)
13462 (eq (point)
13463 (ignore-errors
13464 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13465 (org-back-to-heading t)
13466 (org-with-limited-levels (org-back-to-heading t)))
13467 (line-beginning-position 2))))))
13469 (defun org-add-planning-info (what &optional time &rest remove)
13470 "Insert new timestamp with keyword in the planning line.
13471 WHAT indicates what kind of time stamp to add. It is a symbol
13472 among `closed', `deadline', `scheduled' and nil. TIME indicates
13473 the time to use. If none is given, the user is prompted for
13474 a date. REMOVE indicates what kind of entries to remove. An old
13475 WHAT entry will also be removed."
13476 (let (org-time-was-given org-end-time-was-given default-time default-input)
13477 (catch 'exit
13478 (when (and (memq what '(scheduled deadline))
13479 (or (not time)
13480 (and (stringp time)
13481 (string-match "^[-+]+[0-9]" time))))
13482 ;; Try to get a default date/time from existing timestamp
13483 (save-excursion
13484 (org-back-to-heading t)
13485 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13486 (when (re-search-forward (if (eq what 'scheduled)
13487 org-scheduled-time-regexp
13488 org-deadline-time-regexp)
13489 end t)
13490 (setq ts (match-string 1)
13491 default-time (apply 'encode-time (org-parse-time-string ts))
13492 default-input (and ts (org-get-compact-tod ts)))))))
13493 (when what
13494 (setq time
13495 (if (stringp time)
13496 ;; This is a string (relative or absolute), set
13497 ;; proper date.
13498 (apply #'encode-time
13499 (org-read-date-analyze
13500 time default-time (decode-time default-time)))
13501 ;; If necessary, get the time from the user
13502 (or time (org-read-date nil 'to-time nil nil
13503 default-time default-input)))))
13505 (org-with-wide-buffer
13506 (org-back-to-heading t)
13507 (forward-line)
13508 (unless (bolp) (insert "\n"))
13509 (cond ((org-looking-at-p org-planning-line-re)
13510 ;; Move to current indentation.
13511 (skip-chars-forward " \t")
13512 ;; Check if we have to remove something.
13513 (dolist (type (if what (cons what remove) remove))
13514 (when (save-excursion
13515 (re-search-forward
13516 (case type
13517 (closed org-closed-time-regexp)
13518 (deadline org-deadline-time-regexp)
13519 (scheduled org-scheduled-time-regexp)
13520 (otherwise (error "Invalid planning type: %s" type)))
13521 (line-end-position) t))
13522 (replace-match "")
13523 (when (looking-at "--+<[^>]+>") (replace-match ""))
13524 (when (and (not what) (eq type 'closed))
13525 (save-excursion
13526 (beginning-of-line)
13527 (if (looking-at "[ \t]*$")
13528 (delete-region (point) (1+ (point-at-eol)))))))
13529 ;; Remove leading white spaces.
13530 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13531 ((not what) (throw 'exit nil)) ; Nothing to do.
13532 (t (insert-before-markers "\n")
13533 (backward-char 1)
13534 (when org-adapt-indentation
13535 (org-indent-to-column (1+ (org-outline-level))))))
13536 (when what
13537 ;; Insert planning keyword.
13538 (insert (case what
13539 (closed org-closed-string)
13540 (deadline org-deadline-string)
13541 (scheduled org-scheduled-string)
13542 (otherwise (error "Invalid planning type: %s" what)))
13543 " ")
13544 ;; Insert associated timestamp.
13545 (let ((ts (org-insert-time-stamp
13546 time
13547 (or org-time-was-given
13548 (and (eq what 'closed) org-log-done-with-time))
13549 (eq what 'closed)
13550 nil nil (list org-end-time-was-given))))
13551 (unless (eolp) (insert " "))
13552 ts))))))
13554 (defvar org-log-note-marker (make-marker))
13555 (defvar org-log-note-purpose nil)
13556 (defvar org-log-note-state nil)
13557 (defvar org-log-note-previous-state nil)
13558 (defvar org-log-note-extra nil)
13559 (defvar org-log-note-window-configuration nil)
13560 (defvar org-log-note-return-to (make-marker))
13561 (defvar org-log-note-effective-time nil
13562 "Remembered current time so that dynamically scoped
13563 `org-extend-today-until' affects tha timestamps in state change
13564 log")
13566 (defvar org-log-post-message nil
13567 "Message to be displayed after a log note has been stored.
13568 The auto-repeater uses this.")
13570 (defun org-add-note ()
13571 "Add a note to the current entry.
13572 This is done in the same way as adding a state change note."
13573 (interactive)
13574 (org-add-log-setup 'note nil nil 'findpos nil))
13576 (defun org-log-beginning (&optional create)
13577 "Return expected start of log notes in current entry.
13578 When optional argument CREATE is non-nil, the function creates
13579 a drawer to store notes, if necessary. Returned position ignores
13580 narrowing."
13581 (org-with-wide-buffer
13582 (org-end-of-meta-data)
13583 (let ((end (if (org-at-heading-p) (point)
13584 (save-excursion (outline-next-heading) (point))))
13585 (drawer (org-log-into-drawer)))
13586 (cond
13587 (drawer
13588 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13589 (case-fold-search t))
13590 (catch 'exit
13591 ;; Try to find existing drawer.
13592 (while (re-search-forward regexp end t)
13593 (let ((element (org-element-at-point)))
13594 (when (eq (org-element-type element) 'drawer)
13595 (let ((cend (org-element-property :contents-end element)))
13596 (when (and (not org-log-states-order-reversed) cend)
13597 (goto-char cend)))
13598 (throw 'exit nil))))
13599 ;; No drawer found. Create one, if permitted.
13600 (when create
13601 (unless (bolp) (insert "\n"))
13602 (let ((beg (point)))
13603 (insert ":" drawer ":\n:END:\n")
13604 (org-indent-region beg (point)))
13605 (end-of-line -1)))))
13606 (org-log-state-notes-insert-after-drawers
13607 (while (and (looking-at org-drawer-regexp)
13608 (progn (goto-char (match-end 0))
13609 (re-search-forward org-property-end-re end t)))
13610 (forward-line)))))
13611 (if (bolp) (point) (line-beginning-position 2))))
13613 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13614 "Set up the post command hook to take a note.
13615 If this is about to TODO state change, the new state is expected in STATE.
13616 When FINDPOS is non-nil, find the correct position for the note in
13617 the current entry. If not, assume that it can be inserted at point.
13618 HOW is an indicator what kind of note should be created.
13619 EXTRA is additional text that will be inserted into the notes buffer."
13620 (org-with-wide-buffer
13621 (when findpos
13622 (goto-char (org-log-beginning t))
13623 (unless org-log-states-order-reversed
13624 (org-skip-over-state-notes)
13625 (skip-chars-backward " \t\n\r")
13626 (forward-line)))
13627 (move-marker org-log-note-marker (point))
13628 ;; Preserve position even if a property drawer is inserted in the
13629 ;; process.
13630 (set-marker-insertion-type org-log-note-marker t)
13631 (setq org-log-note-purpose purpose
13632 org-log-note-state state
13633 org-log-note-previous-state prev-state
13634 org-log-note-how how
13635 org-log-note-extra extra
13636 org-log-note-effective-time (org-current-effective-time))
13637 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13639 (defun org-skip-over-state-notes ()
13640 "Skip past the list of State notes in an entry."
13641 (when (ignore-errors (goto-char (org-in-item-p)))
13642 (let* ((struct (org-list-struct))
13643 (prevs (org-list-prevs-alist struct))
13644 (regexp
13645 (concat "[ \t]*- +"
13646 (replace-regexp-in-string
13647 " +" " +"
13648 (org-replace-escapes
13649 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13650 `(("%d" . ,org-ts-regexp-inactive)
13651 ("%D" . ,org-ts-regexp)
13652 ("%s" . "\"\\S-+\"")
13653 ("%S" . "\"\\S-+\"")
13654 ("%t" . ,org-ts-regexp-inactive)
13655 ("%T" . ,org-ts-regexp)
13656 ("%u" . ".*?")
13657 ("%U" . ".*?")))))))
13658 (while (org-looking-at-p regexp)
13659 (goto-char (or (org-list-get-next-item (point) struct prevs)
13660 (org-list-get-item-end (point) struct)))))))
13662 (defun org-add-log-note (&optional purpose)
13663 "Pop up a window for taking a note, and add this note later at point."
13664 (remove-hook 'post-command-hook 'org-add-log-note)
13665 (setq org-log-note-window-configuration (current-window-configuration))
13666 (delete-other-windows)
13667 (move-marker org-log-note-return-to (point))
13668 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13669 (goto-char org-log-note-marker)
13670 (org-switch-to-buffer-other-window "*Org Note*")
13671 (erase-buffer)
13672 (if (memq org-log-note-how '(time state))
13673 (let (current-prefix-arg) (org-store-log-note))
13674 (let ((org-inhibit-startup t)) (org-mode))
13675 (insert (format "# Insert note for %s.
13676 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13677 (cond
13678 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13679 ((eq org-log-note-purpose 'done) "closed todo item")
13680 ((eq org-log-note-purpose 'state)
13681 (format "state change from \"%s\" to \"%s\""
13682 (or org-log-note-previous-state "")
13683 (or org-log-note-state "")))
13684 ((eq org-log-note-purpose 'reschedule)
13685 "rescheduling")
13686 ((eq org-log-note-purpose 'delschedule)
13687 "no longer scheduled")
13688 ((eq org-log-note-purpose 'redeadline)
13689 "changing deadline")
13690 ((eq org-log-note-purpose 'deldeadline)
13691 "removing deadline")
13692 ((eq org-log-note-purpose 'refile)
13693 "refiling")
13694 ((eq org-log-note-purpose 'note)
13695 "this entry")
13696 (t (error "This should not happen")))))
13697 (if org-log-note-extra (insert org-log-note-extra))
13698 (org-set-local 'org-finish-function 'org-store-log-note)
13699 (run-hooks 'org-log-buffer-setup-hook)))
13701 (defvar org-note-abort nil) ; dynamically scoped
13702 (defun org-store-log-note ()
13703 "Finish taking a log note, and insert it to where it belongs."
13704 (let ((txt (buffer-string)))
13705 (kill-buffer (current-buffer))
13706 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13707 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13708 (setq txt (replace-match "" t t txt)))
13709 (if (string-match "\\s-+\\'" txt)
13710 (setq txt (replace-match "" t t txt)))
13711 (setq lines (org-split-string txt "\n"))
13712 (when (and note (string-match "\\S-" note))
13713 (setq note
13714 (org-replace-escapes
13715 note
13716 (list (cons "%u" (user-login-name))
13717 (cons "%U" user-full-name)
13718 (cons "%t" (format-time-string
13719 (org-time-stamp-format 'long 'inactive)
13720 org-log-note-effective-time))
13721 (cons "%T" (format-time-string
13722 (org-time-stamp-format 'long nil)
13723 org-log-note-effective-time))
13724 (cons "%d" (format-time-string
13725 (org-time-stamp-format nil 'inactive)
13726 org-log-note-effective-time))
13727 (cons "%D" (format-time-string
13728 (org-time-stamp-format nil nil)
13729 org-log-note-effective-time))
13730 (cons "%s" (if org-log-note-state
13731 (concat "\"" org-log-note-state "\"")
13732 ""))
13733 (cons "%S" (if org-log-note-previous-state
13734 (concat "\"" org-log-note-previous-state "\"")
13735 "\"\"")))))
13736 (when lines (setq note (concat note " \\\\")))
13737 (push note lines))
13738 (when (or current-prefix-arg org-note-abort)
13739 (when (org-log-into-drawer)
13740 (org-remove-empty-drawer-at org-log-note-marker))
13741 (setq lines nil))
13742 (when lines
13743 (with-current-buffer (marker-buffer org-log-note-marker)
13744 (save-excursion
13745 (goto-char org-log-note-marker)
13746 (move-marker org-log-note-marker nil)
13747 ;; Make sure point is at the beginning of an empty line.
13748 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13749 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13750 ;; In an existing list, add a new item at the top level.
13751 ;; Otherwise, indent line like a regular one.
13752 (let ((itemp (org-in-item-p)))
13753 (if itemp
13754 (org-indent-line-to
13755 (let ((struct (save-excursion
13756 (goto-char itemp) (org-list-struct))))
13757 (org-list-get-ind (org-list-get-top-point struct) struct)))
13758 (org-indent-line)))
13759 (insert (org-list-bullet-string "-") (pop lines))
13760 (let ((ind (org-list-item-body-column (line-beginning-position))))
13761 (dolist (line lines)
13762 (insert "\n")
13763 (org-indent-line-to ind)
13764 (insert line)))
13765 (message "Note stored")
13766 (org-back-to-heading t)
13767 (org-cycle-hide-drawers 'children))
13768 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13769 ;; from within `org-add-log-note' because `buffer-undo-list'
13770 ;; is then modified outside of `org-with-remote-undo'.
13771 (when (eq this-command 'org-agenda-todo)
13772 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13773 ;; Don't add undo information when called from `org-agenda-todo'
13774 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13775 (set-window-configuration org-log-note-window-configuration)
13776 (with-current-buffer (marker-buffer org-log-note-return-to)
13777 (goto-char org-log-note-return-to))
13778 (move-marker org-log-note-return-to nil)
13779 (and org-log-post-message (message "%s" org-log-post-message))))
13781 (defun org-remove-empty-drawer-at (pos)
13782 "Remove an empty drawer at position POS.
13783 POS may also be a marker."
13784 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13785 (org-with-wide-buffer
13786 (goto-char pos)
13787 (let ((drawer (org-element-at-point)))
13788 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13789 (not (org-element-property :contents-begin drawer)))
13790 (delete-region (org-element-property :begin drawer)
13791 (progn (goto-char (org-element-property :end drawer))
13792 (skip-chars-backward " \r\t\n")
13793 (forward-line)
13794 (point))))))))
13796 (defvar org-ts-type nil)
13797 (defun org-sparse-tree (&optional arg type)
13798 "Create a sparse tree, prompt for the details.
13799 This command can create sparse trees. You first need to select the type
13800 of match used to create the tree:
13802 t Show all TODO entries.
13803 T Show entries with a specific TODO keyword.
13804 m Show entries selected by a tags/property match.
13805 p Enter a property name and its value (both with completion on existing
13806 names/values) and show entries with that property.
13807 r Show entries matching a regular expression (`/' can be used as well).
13808 b Show deadlines and scheduled items before a date.
13809 a Show deadlines and scheduled items after a date.
13810 d Show deadlines due within `org-deadline-warning-days'.
13811 D Show deadlines and scheduled items between a date range."
13812 (interactive "P")
13813 (setq type (or type org-sparse-tree-default-date-type))
13814 (setq org-ts-type type)
13815 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13816 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13817 [c]ycle through date types: %s"
13818 (case type
13819 (all "all timestamps")
13820 (scheduled "only scheduled")
13821 (deadline "only deadline")
13822 (active "only active timestamps")
13823 (inactive "only inactive timestamps")
13824 (closed "with a closed time-stamp")
13825 (otherwise "scheduled/deadline")))
13826 (let ((answer (read-char-exclusive)))
13827 (case answer
13829 (org-sparse-tree
13831 (cadr
13832 (memq type '(nil all scheduled deadline active inactive closed)))))
13833 (?d (call-interactively 'org-check-deadlines))
13834 (?b (call-interactively 'org-check-before-date))
13835 (?a (call-interactively 'org-check-after-date))
13836 (?D (call-interactively 'org-check-dates-range))
13837 (?t (call-interactively 'org-show-todo-tree))
13838 (?T (org-show-todo-tree '(4)))
13839 (?m (call-interactively 'org-match-sparse-tree))
13840 ((?p ?P)
13841 (let* ((kwd (org-icompleting-read
13842 "Property: " (mapcar 'list (org-buffer-property-keys))))
13843 (value (org-icompleting-read
13844 "Value: " (mapcar 'list (org-property-values kwd)))))
13845 (unless (string-match "\\`{.*}\\'" value)
13846 (setq value (concat "\"" value "\"")))
13847 (org-match-sparse-tree arg (concat kwd "=" value))))
13848 ((?r ?R ?/) (call-interactively 'org-occur))
13849 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13851 (defvar org-occur-highlights nil
13852 "List of overlays used for occur matches.")
13853 (make-variable-buffer-local 'org-occur-highlights)
13854 (defvar org-occur-parameters nil
13855 "Parameters of the active org-occur calls.
13856 This is a list, each call to org-occur pushes as cons cell,
13857 containing the regular expression and the callback, onto the list.
13858 The list can contain several entries if `org-occur' has been called
13859 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13860 will only contain one set of parameters. When the highlights are
13861 removed (for example with `C-c C-c', or with the next edit (depending
13862 on `org-remove-highlights-with-change'), this variable is emptied
13863 as well.")
13864 (make-variable-buffer-local 'org-occur-parameters)
13866 (defun org-occur (regexp &optional keep-previous callback)
13867 "Make a compact tree which shows all matches of REGEXP.
13868 The tree will show the lines where the regexp matches, and all higher
13869 headlines above the match. It will also show the heading after the match,
13870 to make sure editing the matching entry is easy.
13871 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13872 call to `org-occur' will be kept, to allow stacking of calls to this
13873 command.
13874 If CALLBACK is non-nil, it is a function which is called to confirm
13875 that the match should indeed be shown."
13876 (interactive "sRegexp: \nP")
13877 (when (equal regexp "")
13878 (user-error "Regexp cannot be empty"))
13879 (unless keep-previous
13880 (org-remove-occur-highlights nil nil t))
13881 (push (cons regexp callback) org-occur-parameters)
13882 (let ((cnt 0))
13883 (save-excursion
13884 (goto-char (point-min))
13885 (if (or (not keep-previous) ; do not want to keep
13886 (not org-occur-highlights)) ; no previous matches
13887 ;; hide everything
13888 (org-overview))
13889 (while (re-search-forward regexp nil t)
13890 (when (or (not callback)
13891 (save-match-data (funcall callback)))
13892 (setq cnt (1+ cnt))
13893 (when org-highlight-sparse-tree-matches
13894 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13895 (org-show-context 'occur-tree))))
13896 (when org-remove-highlights-with-change
13897 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13898 nil 'local))
13899 (unless org-sparse-tree-open-archived-trees
13900 (org-hide-archived-subtrees (point-min) (point-max)))
13901 (run-hooks 'org-occur-hook)
13902 (if (org-called-interactively-p 'interactive)
13903 (message "%d match(es) for regexp %s" cnt regexp))
13904 cnt))
13906 (defun org-occur-next-match (&optional n reset)
13907 "Function for `next-error-function' to find sparse tree matches.
13908 N is the number of matches to move, when negative move backwards.
13909 RESET is entirely ignored - this function always goes back to the
13910 starting point when no match is found."
13911 (let* ((limit (if (< n 0) (point-min) (point-max)))
13912 (search-func (if (< n 0)
13913 'previous-single-char-property-change
13914 'next-single-char-property-change))
13915 (n (abs n))
13916 (pos (point))
13918 (catch 'exit
13919 (while (setq p1 (funcall search-func (point) 'org-type))
13920 (when (equal p1 limit)
13921 (goto-char pos)
13922 (user-error "No more matches"))
13923 (when (equal (get-char-property p1 'org-type) 'org-occur)
13924 (setq n (1- n))
13925 (when (= n 0)
13926 (goto-char p1)
13927 (throw 'exit (point))))
13928 (goto-char p1))
13929 (goto-char p1)
13930 (user-error "No more matches"))))
13932 (defun org-show-context (&optional key)
13933 "Make sure point and context are visible.
13934 Optional argument KEY, when non-nil, is a symbol. See
13935 `org-show-context-detail' for allowed values and how much is to
13936 be shown."
13937 (org-show-set-visibility
13938 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13939 ((cdr (assq key org-show-context-detail)))
13940 (t (cdr (assq 'default org-show-context-detail))))))
13942 (defun org-show-set-visibility (detail)
13943 "Set visibility around point according to DETAIL.
13944 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13945 `tree', `canonical' or t. See `org-show-context-detail' for more
13946 information."
13947 (unless (org-before-first-heading-p)
13948 ;; Show current heading and possibly its entry, following headline
13949 ;; or all children.
13950 (if (and (org-at-heading-p) (not (eq detail 'local)))
13951 (org-flag-heading nil)
13952 (org-show-entry)
13953 (org-with-limited-levels
13954 (case detail
13955 ((tree canonical t) (show-children))
13956 ((nil minimal ancestors))
13957 (t (save-excursion
13958 (outline-next-heading)
13959 (org-flag-heading nil))))))
13960 ;; Show all siblings.
13961 (when (eq detail 'lineage) (org-show-siblings))
13962 ;; Show ancestors, possibly with their children.
13963 (when (memq detail '(ancestors lineage tree canonical t))
13964 (save-excursion
13965 (while (org-up-heading-safe)
13966 (org-flag-heading nil)
13967 (when (memq detail '(canonical t)) (org-show-entry))
13968 (when (memq detail '(tree canonical t)) (show-children)))))))
13970 (defvar org-reveal-start-hook nil
13971 "Hook run before revealing a location.")
13973 (defun org-reveal (&optional siblings)
13974 "Show current entry, hierarchy above it, and the following headline.
13976 This can be used to show a consistent set of context around
13977 locations exposed with `org-show-context'.
13979 With optional argument SIBLINGS, on each level of the hierarchy all
13980 siblings are shown. This repairs the tree structure to what it would
13981 look like when opened with hierarchical calls to `org-cycle'.
13983 With double optional argument \\[universal-argument] \\[universal-argument], \
13984 go to the parent and show the
13985 entire tree."
13986 (interactive "P")
13987 (run-hooks 'org-reveal-start-hook)
13988 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
13989 ((equal siblings '(16))
13990 (save-excursion
13991 (when (org-up-heading-safe)
13992 (org-show-subtree)
13993 (run-hook-with-args 'org-cycle-hook 'subtree))))
13994 (t (org-show-set-visibility 'lineage))))
13996 (defun org-highlight-new-match (beg end)
13997 "Highlight from BEG to END and mark the highlight is an occur headline."
13998 (let ((ov (make-overlay beg end)))
13999 (overlay-put ov 'face 'secondary-selection)
14000 (overlay-put ov 'org-type 'org-occur)
14001 (push ov org-occur-highlights)))
14003 (defun org-remove-occur-highlights (&optional beg end noremove)
14004 "Remove the occur highlights from the buffer.
14005 BEG and END are ignored. If NOREMOVE is nil, remove this function
14006 from the `before-change-functions' in the current buffer."
14007 (interactive)
14008 (unless org-inhibit-highlight-removal
14009 (mapc 'delete-overlay org-occur-highlights)
14010 (setq org-occur-highlights nil)
14011 (setq org-occur-parameters nil)
14012 (unless noremove
14013 (remove-hook 'before-change-functions
14014 'org-remove-occur-highlights 'local))))
14016 ;;;; Priorities
14018 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14019 "Regular expression matching the priority indicator.")
14021 (defvar org-remove-priority-next-time nil)
14023 (defun org-priority-up ()
14024 "Increase the priority of the current item."
14025 (interactive)
14026 (org-priority 'up))
14028 (defun org-priority-down ()
14029 "Decrease the priority of the current item."
14030 (interactive)
14031 (org-priority 'down))
14033 (defun org-priority (&optional action show)
14034 "Change the priority of an item.
14035 ACTION can be `set', `up', `down', or a character."
14036 (interactive "P")
14037 (if (equal action '(4))
14038 (org-show-priority)
14039 (unless org-enable-priority-commands
14040 (user-error "Priority commands are disabled"))
14041 (setq action (or action 'set))
14042 (let (current new news have remove)
14043 (save-excursion
14044 (org-back-to-heading t)
14045 (if (looking-at org-priority-regexp)
14046 (setq current (string-to-char (match-string 2))
14047 have t))
14048 (cond
14049 ((eq action 'remove)
14050 (setq remove t new ?\ ))
14051 ((or (eq action 'set)
14052 (if (featurep 'xemacs) (characterp action) (integerp action)))
14053 (if (not (eq action 'set))
14054 (setq new action)
14055 (message "Priority %c-%c, SPC to remove: "
14056 org-highest-priority org-lowest-priority)
14057 (save-match-data
14058 (setq new (read-char-exclusive))))
14059 (if (and (= (upcase org-highest-priority) org-highest-priority)
14060 (= (upcase org-lowest-priority) org-lowest-priority))
14061 (setq new (upcase new)))
14062 (cond ((equal new ?\ ) (setq remove t))
14063 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14064 (user-error "Priority must be between `%c' and `%c'"
14065 org-highest-priority org-lowest-priority))))
14066 ((eq action 'up)
14067 (setq new (if have
14068 (1- current) ; normal cycling
14069 ;; last priority was empty
14070 (if (eq last-command this-command)
14071 org-lowest-priority ; wrap around empty to lowest
14072 ;; default
14073 (if org-priority-start-cycle-with-default
14074 org-default-priority
14075 (1- org-default-priority))))))
14076 ((eq action 'down)
14077 (setq new (if have
14078 (1+ current) ; normal cycling
14079 ;; last priority was empty
14080 (if (eq last-command this-command)
14081 org-highest-priority ; wrap around empty to highest
14082 ;; default
14083 (if org-priority-start-cycle-with-default
14084 org-default-priority
14085 (1+ org-default-priority))))))
14086 (t (user-error "Invalid action")))
14087 (if (or (< (upcase new) org-highest-priority)
14088 (> (upcase new) org-lowest-priority))
14089 (if (and (memq action '(up down))
14090 (not have) (not (eq last-command this-command)))
14091 ;; `new' is from default priority
14092 (error
14093 "The default can not be set, see `org-default-priority' why")
14094 ;; normal cycling: `new' is beyond highest/lowest priority
14095 ;; and is wrapped around to the empty priority
14096 (setq remove t)))
14097 (setq news (format "%c" new))
14098 (if have
14099 (if remove
14100 (replace-match "" t t nil 1)
14101 (replace-match news t t nil 2))
14102 (if remove
14103 (user-error "No priority cookie found in line")
14104 (let ((case-fold-search nil))
14105 (looking-at org-todo-line-regexp))
14106 (if (match-end 2)
14107 (progn
14108 (goto-char (match-end 2))
14109 (insert " [#" news "]"))
14110 (goto-char (match-beginning 3))
14111 (insert "[#" news "] "))))
14112 (org-set-tags nil 'align))
14113 (if remove
14114 (message "Priority removed")
14115 (message "Priority of current item set to %s" news)))))
14117 (defun org-show-priority ()
14118 "Show the priority of the current item.
14119 This priority is composed of the main priority given with the [#A] cookies,
14120 and by additional input from the age of a schedules or deadline entry."
14121 (interactive)
14122 (let ((pri (if (eq major-mode 'org-agenda-mode)
14123 (org-get-at-bol 'priority)
14124 (save-excursion
14125 (save-match-data
14126 (beginning-of-line)
14127 (and (looking-at org-heading-regexp)
14128 (org-get-priority (match-string 0))))))))
14129 (message "Priority is %d" (if pri pri -1000))))
14131 (defun org-get-priority (s)
14132 "Find priority cookie and return priority."
14133 (save-match-data
14134 (if (functionp org-get-priority-function)
14135 (funcall org-get-priority-function)
14136 (if (not (string-match org-priority-regexp s))
14137 (* 1000 (- org-lowest-priority org-default-priority))
14138 (* 1000 (- org-lowest-priority
14139 (string-to-char (match-string 2 s))))))))
14141 ;;;; Tags
14143 (defvar org-agenda-archives-mode)
14144 (defvar org-map-continue-from nil
14145 "Position from where mapping should continue.
14146 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14148 (defvar org-scanner-tags nil
14149 "The current tag list while the tags scanner is running.")
14150 (defvar org-trust-scanner-tags nil
14151 "Should `org-get-tags-at' use the tags for the scanner.
14152 This is for internal dynamical scoping only.
14153 When this is non-nil, the function `org-get-tags-at' will return the value
14154 of `org-scanner-tags' instead of building the list by itself. This
14155 can lead to large speed-ups when the tags scanner is used in a file with
14156 many entries, and when the list of tags is retrieved, for example to
14157 obtain a list of properties. Building the tags list for each entry in such
14158 a file becomes an N^2 operation - but with this variable set, it scales
14159 as N.")
14161 (defun org-scan-tags (action matcher todo-only &optional start-level)
14162 "Scan headline tags with inheritance and produce output ACTION.
14164 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14165 or `agenda' to produce an entry list for an agenda view. It can also be
14166 a Lisp form or a function that should be called at each matched headline, in
14167 this case the return value is a list of all return values from these calls.
14169 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14170 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14171 only lines with a not-done TODO keyword are included in the output.
14172 This should be the same variable that was scoped into
14173 and set by `org-make-tags-matcher' when it constructed MATCHER.
14175 START-LEVEL can be a string with asterisks, reducing the scope to
14176 headlines matching this string."
14177 (require 'org-agenda)
14178 (let* ((re (concat "^"
14179 (if start-level
14180 ;; Get the correct level to match
14181 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14182 org-outline-regexp)
14183 " *\\(\\<\\("
14184 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14185 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14186 (props (list 'face 'default
14187 'done-face 'org-agenda-done
14188 'undone-face 'default
14189 'mouse-face 'highlight
14190 'org-not-done-regexp org-not-done-regexp
14191 'org-todo-regexp org-todo-regexp
14192 'org-complex-heading-regexp org-complex-heading-regexp
14193 'help-echo
14194 (format "mouse-2 or RET jump to org file %s"
14195 (abbreviate-file-name
14196 (or (buffer-file-name (buffer-base-buffer))
14197 (buffer-name (buffer-base-buffer)))))))
14198 (org-map-continue-from nil)
14199 lspos tags tags-list
14200 (tags-alist (list (cons 0 org-file-tags)))
14201 (llast 0) rtn rtn1 level category i txt
14202 todo marker entry priority
14203 ts-date ts-date-type ts-date-pair)
14204 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14205 (setq action (list 'lambda nil action)))
14206 (save-excursion
14207 (goto-char (point-min))
14208 (when (eq action 'sparse-tree)
14209 (org-overview)
14210 (org-remove-occur-highlights))
14211 (while (let (case-fold-search)
14212 (re-search-forward re nil t))
14213 (setq org-map-continue-from nil)
14214 (catch :skip
14215 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14216 tags (if (match-end 4) (org-match-string-no-properties 4)))
14217 (goto-char (setq lspos (match-beginning 0)))
14218 (setq level (org-reduced-level (org-outline-level))
14219 category (org-get-category))
14220 (when (eq action 'agenda)
14221 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14222 ts-date (car ts-date-pair)
14223 ts-date-type (cdr ts-date-pair)))
14224 (setq i llast llast level)
14225 ;; remove tag lists from same and sublevels
14226 (while (>= i level)
14227 (when (setq entry (assoc i tags-alist))
14228 (setq tags-alist (delete entry tags-alist)))
14229 (setq i (1- i)))
14230 ;; add the next tags
14231 (when tags
14232 (setq tags (org-split-string tags ":")
14233 tags-alist
14234 (cons (cons level tags) tags-alist)))
14235 ;; compile tags for current headline
14236 (setq tags-list
14237 (if org-use-tag-inheritance
14238 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14239 tags)
14240 org-scanner-tags tags-list)
14241 (when org-use-tag-inheritance
14242 (setcdr (car tags-alist)
14243 (mapcar (lambda (x)
14244 (setq x (copy-sequence x))
14245 (org-add-prop-inherited x))
14246 (cdar tags-alist))))
14247 (when (and tags org-use-tag-inheritance
14248 (or (not (eq t org-use-tag-inheritance))
14249 org-tags-exclude-from-inheritance))
14250 ;; selective inheritance, remove uninherited ones
14251 (setcdr (car tags-alist)
14252 (org-remove-uninherited-tags (cdar tags-alist))))
14253 (when (and
14255 ;; eval matcher only when the todo condition is OK
14256 (and (or (not todo-only) (member todo org-not-done-keywords))
14257 (let ((case-fold-search t) (org-trust-scanner-tags t))
14258 (eval matcher)))
14260 ;; Call the skipper, but return t if it does not skip,
14261 ;; so that the `and' form continues evaluating
14262 (progn
14263 (unless (eq action 'sparse-tree) (org-agenda-skip))
14266 ;; Check if timestamps are deselecting this entry
14267 (or (not todo-only)
14268 (and (member todo org-not-done-keywords)
14269 (or (not org-agenda-tags-todo-honor-ignore-options)
14270 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14272 ;; select this headline
14273 (cond
14274 ((eq action 'sparse-tree)
14275 (and org-highlight-sparse-tree-matches
14276 (org-get-heading) (match-end 0)
14277 (org-highlight-new-match
14278 (match-beginning 1) (match-end 1)))
14279 (org-show-context 'tags-tree))
14280 ((eq action 'agenda)
14281 (setq txt (org-agenda-format-item
14283 (concat
14284 (if (eq org-tags-match-list-sublevels 'indented)
14285 (make-string (1- level) ?.) "")
14286 (org-get-heading))
14287 (make-string level ?\s)
14288 category
14289 tags-list)
14290 priority (org-get-priority txt))
14291 (goto-char lspos)
14292 (setq marker (org-agenda-new-marker))
14293 (org-add-props txt props
14294 'org-marker marker 'org-hd-marker marker 'org-category category
14295 'todo-state todo
14296 'ts-date ts-date
14297 'priority priority
14298 'type (concat "tagsmatch" ts-date-type))
14299 (push txt rtn))
14300 ((functionp action)
14301 (setq org-map-continue-from nil)
14302 (save-excursion
14303 (setq rtn1 (funcall action))
14304 (push rtn1 rtn)))
14305 (t (user-error "Invalid action")))
14307 ;; if we are to skip sublevels, jump to end of subtree
14308 (unless org-tags-match-list-sublevels
14309 (org-end-of-subtree t)
14310 (backward-char 1))))
14311 ;; Get the correct position from where to continue
14312 (if org-map-continue-from
14313 (goto-char org-map-continue-from)
14314 (and (= (point) lspos) (end-of-line 1)))))
14315 (when (and (eq action 'sparse-tree)
14316 (not org-sparse-tree-open-archived-trees))
14317 (org-hide-archived-subtrees (point-min) (point-max)))
14318 (nreverse rtn)))
14320 (defun org-remove-uninherited-tags (tags)
14321 "Remove all tags that are not inherited from the list TAGS."
14322 (cond
14323 ((eq org-use-tag-inheritance t)
14324 (if org-tags-exclude-from-inheritance
14325 (org-delete-all org-tags-exclude-from-inheritance tags)
14326 tags))
14327 ((not org-use-tag-inheritance) nil)
14328 ((stringp org-use-tag-inheritance)
14329 (delq nil (mapcar
14330 (lambda (x)
14331 (if (and (string-match org-use-tag-inheritance x)
14332 (not (member x org-tags-exclude-from-inheritance)))
14333 x nil))
14334 tags)))
14335 ((listp org-use-tag-inheritance)
14336 (delq nil (mapcar
14337 (lambda (x)
14338 (if (member x org-use-tag-inheritance) x nil))
14339 tags)))))
14341 (defun org-match-sparse-tree (&optional todo-only match)
14342 "Create a sparse tree according to tags string MATCH.
14343 MATCH can contain positive and negative selection of tags, like
14344 \"+WORK+URGENT-WITHBOSS\".
14345 If optional argument TODO-ONLY is non-nil, only select lines that are
14346 also TODO lines."
14347 (interactive "P")
14348 (org-agenda-prepare-buffers (list (current-buffer)))
14349 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14351 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14353 (defvar org-cached-props nil)
14354 (defun org-cached-entry-get (pom property)
14355 (if (or (eq t org-use-property-inheritance)
14356 (and (stringp org-use-property-inheritance)
14357 (let ((case-fold-search t))
14358 (org-string-match-p org-use-property-inheritance property)))
14359 (and (listp org-use-property-inheritance)
14360 (member-ignore-case property org-use-property-inheritance)))
14361 ;; Caching is not possible, check it directly.
14362 (org-entry-get pom property 'inherit)
14363 ;; Get all properties, so we can do complicated checks easily.
14364 (cdr (assoc-string property
14365 (or org-cached-props
14366 (setq org-cached-props (org-entry-properties pom)))
14367 t))))
14369 (defun org-global-tags-completion-table (&optional files)
14370 "Return the list of all tags in all agenda buffer/files.
14371 Optional FILES argument is a list of files which can be used
14372 instead of the agenda files."
14373 (save-excursion
14374 (org-uniquify
14375 (delq nil
14376 (apply 'append
14377 (mapcar
14378 (lambda (file)
14379 (set-buffer (find-file-noselect file))
14380 (append (org-get-buffer-tags)
14381 (mapcar (lambda (x) (if (stringp (car-safe x))
14382 (list (car-safe x)) nil))
14383 org-tag-alist)))
14384 (if (and files (car files))
14385 files
14386 (org-agenda-files))))))))
14388 (defun org-make-tags-matcher (match)
14389 "Create the TAGS/TODO matcher form for the selection string MATCH.
14391 The variable `todo-only' is scoped dynamically into this function.
14392 It will be set to t if the matcher restricts matching to TODO entries,
14393 otherwise will not be touched.
14395 Returns a cons of the selection string MATCH and the constructed
14396 lisp form implementing the matcher. The matcher is to be evaluated
14397 at an Org entry, with point on the headline, and returns t if the
14398 entry matches the selection string MATCH. The returned lisp form
14399 references two variables with information about the entry, which
14400 must be bound around the form's evaluation: todo, the TODO keyword
14401 at the entry (or nil of none); and tags-list, the list of all tags
14402 at the entry including inherited ones. Additionally, the category
14403 of the entry (if any) must be specified as the text property
14404 'org-category on the headline.
14406 See also `org-scan-tags'.
14408 (declare (special todo-only))
14409 (unless (boundp 'todo-only)
14410 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14411 (unless match
14412 ;; Get a new match request, with completion against the global
14413 ;; tags table and the local tags in current buffer
14414 (let ((org-last-tags-completion-table
14415 (org-uniquify
14416 (delq nil (append (org-get-buffer-tags)
14417 (org-global-tags-completion-table))))))
14418 (setq match (org-completing-read-no-i
14419 "Match: " 'org-tags-completion-function nil nil nil
14420 'org-tags-history))))
14422 ;; Parse the string and create a lisp form
14423 (let ((match0 match)
14424 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14425 minus tag mm
14426 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14427 orterms term orlist re-p str-p level-p level-op time-p
14428 prop-p pn pv po gv rest (start 0) (ss 0))
14429 ;; Expand group tags
14430 (setq match (org-tags-expand match))
14432 ;; Check if there is a TODO part of this match, which would be the
14433 ;; part after a "/". TO make sure that this slash is not part of
14434 ;; a property value to be matched against, we also check that there
14435 ;; is no " after that slash.
14436 ;; First, find the last slash
14437 (while (string-match "/+" match ss)
14438 (setq start (match-beginning 0) ss (match-end 0)))
14439 (if (and (string-match "/+" match start)
14440 (not (save-match-data (string-match "\"" match start))))
14441 ;; match contains also a todo-matching request
14442 (progn
14443 (setq tagsmatch (substring match 0 (match-beginning 0))
14444 todomatch (substring match (match-end 0)))
14445 (if (string-match "^!" todomatch)
14446 (setq todo-only t todomatch (substring todomatch 1)))
14447 (if (string-match "^\\s-*$" todomatch)
14448 (setq todomatch nil)))
14449 ;; only matching tags
14450 (setq tagsmatch match todomatch nil))
14452 ;; Make the tags matcher
14453 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14454 (setq tagsmatcher t)
14455 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14456 (while (setq term (pop orterms))
14457 (while (and (equal (substring term -1) "\\") orterms)
14458 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14459 (while (string-match re term)
14460 (setq rest (substring term (match-end 0))
14461 minus (and (match-end 1)
14462 (equal (match-string 1 term) "-"))
14463 tag (save-match-data (replace-regexp-in-string
14464 "\\\\-" "-"
14465 (match-string 2 term)))
14466 re-p (equal (string-to-char tag) ?{)
14467 level-p (match-end 4)
14468 prop-p (match-end 5)
14469 mm (cond
14470 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14471 (level-p
14472 (setq level-op (org-op-to-function (match-string 3 term)))
14473 `(,level-op level ,(string-to-number
14474 (match-string 4 term))))
14475 (prop-p
14476 (setq pn (match-string 5 term)
14477 po (match-string 6 term)
14478 pv (match-string 7 term)
14479 re-p (equal (string-to-char pv) ?{)
14480 str-p (equal (string-to-char pv) ?\")
14481 time-p (save-match-data
14482 (string-match "^\"[[<].*[]>]\"$" pv))
14483 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14484 (if time-p (setq pv (org-matcher-time pv)))
14485 (setq po (org-op-to-function po (if time-p 'time str-p)))
14486 (cond
14487 ((equal pn "CATEGORY")
14488 (setq gv '(get-text-property (point) 'org-category)))
14489 ((equal pn "TODO")
14490 (setq gv 'todo))
14492 (setq gv `(org-cached-entry-get nil ,pn))))
14493 (if re-p
14494 (if (eq po 'org<>)
14495 `(not (string-match ,pv (or ,gv "")))
14496 `(string-match ,pv (or ,gv "")))
14497 (if str-p
14498 `(,po (or ,gv "") ,pv)
14499 `(,po (string-to-number (or ,gv ""))
14500 ,(string-to-number pv) ))))
14501 (t `(member ,tag tags-list)))
14502 mm (if minus (list 'not mm) mm)
14503 term rest)
14504 (push mm tagsmatcher))
14505 (push (if (> (length tagsmatcher) 1)
14506 (cons 'and tagsmatcher)
14507 (car tagsmatcher))
14508 orlist)
14509 (setq tagsmatcher nil))
14510 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14511 (setq tagsmatcher
14512 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14513 ;; Make the todo matcher
14514 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14515 (setq todomatcher t)
14516 (setq orterms (org-split-string todomatch "|") orlist nil)
14517 (while (setq term (pop orterms))
14518 (while (string-match re term)
14519 (setq minus (and (match-end 1)
14520 (equal (match-string 1 term) "-"))
14521 kwd (match-string 2 term)
14522 re-p (equal (string-to-char kwd) ?{)
14523 term (substring term (match-end 0))
14524 mm (if re-p
14525 `(string-match ,(substring kwd 1 -1) todo)
14526 (list 'equal 'todo kwd))
14527 mm (if minus (list 'not mm) mm))
14528 (push mm todomatcher))
14529 (push (if (> (length todomatcher) 1)
14530 (cons 'and todomatcher)
14531 (car todomatcher))
14532 orlist)
14533 (setq todomatcher nil))
14534 (setq todomatcher (if (> (length orlist) 1)
14535 (cons 'or orlist) (car orlist))))
14537 ;; Return the string and lisp forms of the matcher
14538 (setq matcher (if todomatcher
14539 (list 'and tagsmatcher todomatcher)
14540 tagsmatcher))
14541 (when todo-only
14542 (setq matcher (list 'and '(member todo org-not-done-keywords)
14543 matcher)))
14544 (cons match0 matcher)))
14546 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14547 "Expand group tags in MATCH.
14549 This replaces every group tag in MATCH with a regexp tag search.
14550 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14551 will be replaced like this:
14553 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14554 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14555 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14557 Replacing by a regexp preserves the structure of the match.
14558 E.g., this expansion
14560 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14562 will match anything tagged with \"Lab\" and \"Home\", or tagged
14563 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14565 A group tag in MATCH can contain regular expressions of its own.
14566 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14567 will be replaced like this:
14569 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14571 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14572 assumed to be a single group tag, and the function will return
14573 the list of tags in this group.
14575 When DOWNCASE is non-nil, expand downcased TAGS."
14576 (if org-group-tags
14577 (let* ((case-fold-search t)
14578 (stable org-mode-syntax-table)
14579 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14580 (taggroups (if downcased
14581 (mapcar (lambda (tg) (mapcar #'downcase tg))
14582 taggroups)
14583 taggroups))
14584 (taggroups-keys (mapcar #'car taggroups))
14585 (return-match (if downcased (downcase match) match))
14586 (count 0)
14587 (work-already-expanded tags-already-expanded)
14588 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14589 ;; @ and _ are allowed as word-components in tags.
14590 (modify-syntax-entry ?@ "w" stable)
14591 (modify-syntax-entry ?_ "w" stable)
14592 ;; Temporarily replace regexp-expressions in the match-expression.
14593 (while (string-match "{.+?}" return-match)
14594 (incf count)
14595 (push (match-string 0 return-match) regexps-in-match)
14596 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14597 (while (and taggroups-keys
14598 (with-syntax-table stable
14599 (string-match
14600 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14601 (regexp-opt taggroups-keys) "\\>\\)") return-match)))
14602 (let* ((dir (match-string 1 return-match))
14603 (tag (match-string 2 return-match))
14604 (tag (if downcased (downcase tag) tag)))
14605 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14606 (member tag work-already-expanded))
14607 (setq tags-in-group (assoc tag taggroups))
14608 (push tag work-already-expanded)
14609 ;; Recursively expand each tag in the group, if the tag hasn't
14610 ;; already been expanded. Restore the match-data after all recursive calls.
14611 (save-match-data
14612 (let (tags-expanded)
14613 (dolist (x (cdr tags-in-group))
14614 (if (and (member x taggroups-keys)
14615 (not (member x work-already-expanded)))
14616 (setq tags-expanded
14617 (delete-dups
14618 (append
14619 (org-tags-expand x t downcased
14620 work-already-expanded)
14621 tags-expanded)))
14622 (setq tags-expanded
14623 (append (list x) tags-expanded)))
14624 (setq work-already-expanded
14625 (delete-dups
14626 (append tags-expanded
14627 work-already-expanded))))
14628 (setq tags-in-group
14629 (delete-dups (cons (car tags-in-group)
14630 tags-expanded)))))
14631 ;; Filter tag-regexps from tags.
14632 (setq regexp-in-group-escaped
14633 (delq nil (mapcar (lambda (x)
14634 (if (stringp x)
14635 (and (equal "{" (substring x 0 1))
14636 (equal "}" (substring x -1))
14639 tags-in-group))
14640 regexp-in-group
14641 (mapcar (lambda (x)
14642 (substring x 1 -1))
14643 regexp-in-group-escaped)
14644 tags-in-group
14645 (delq nil (mapcar (lambda (x)
14646 (if (stringp x)
14647 (and (not (equal "{" (substring x 0 1)))
14648 (not (equal "}" (substring x -1)))
14651 tags-in-group)))
14652 ;; If single-as-list, do no more in the while-loop.
14653 (if (not single-as-list)
14654 (progn
14655 (when regexp-in-group
14656 (setq regexp-in-group
14657 (concat "\\|"
14658 (mapconcat 'identity regexp-in-group
14659 "\\|"))))
14660 (setq tags-in-group
14661 (concat dir
14662 "{\\<"
14663 (regexp-opt tags-in-group)
14664 "\\>"
14665 regexp-in-group
14666 "}"))
14667 (when (stringp tags-in-group)
14668 (org-add-props tags-in-group '(grouptag t)))
14669 (setq return-match
14670 (replace-match tags-in-group t t return-match)))
14671 (setq tags-in-group
14672 (append regexp-in-group-escaped tags-in-group))))
14673 (setq taggroups-keys (delete tag taggroups-keys))))
14674 ;; Add the regular expressions back into the match-expression again.
14675 (while regexps-in-match
14676 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14677 (pop regexps-in-match)
14678 return-match t t))
14679 (decf count))
14680 (if single-as-list
14681 (if tags-in-group tags-in-group (list return-match))
14682 return-match))
14683 (if single-as-list
14684 (list (if downcased (downcase match) match))
14685 match)))
14687 (defun org-op-to-function (op &optional stringp)
14688 "Turn an operator into the appropriate function."
14689 (setq op
14690 (cond
14691 ((equal op "<" ) '(< string< org-time<))
14692 ((equal op ">" ) '(> org-string> org-time>))
14693 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14694 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14695 ((member op '("=" "==")) '(= string= org-time=))
14696 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14697 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14699 (defun org<> (a b) (not (= a b)))
14700 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14701 (defun org-string>= (a b) (not (string< a b)))
14702 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14703 (defun org-string<> (a b) (not (string= a b)))
14704 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14705 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14706 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14707 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14708 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14709 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14710 (defun org-2ft (s)
14711 "Convert S to a floating point time.
14712 If S is already a number, just return it. If it is a string, parse
14713 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14714 (cond
14715 ((numberp s) s)
14716 ((stringp s)
14717 (condition-case nil
14718 (float-time (apply 'encode-time (org-parse-time-string s)))
14719 (error 0.)))
14720 (t 0.)))
14722 (defun org-time-today ()
14723 "Time in seconds today at 0:00.
14724 Returns the float number of seconds since the beginning of the
14725 epoch to the beginning of today (00:00)."
14726 (float-time (apply 'encode-time
14727 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14729 (defun org-matcher-time (s)
14730 "Interpret a time comparison value."
14731 (save-match-data
14732 (cond
14733 ((string= s "<now>") (float-time))
14734 ((string= s "<today>") (org-time-today))
14735 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14736 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14737 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14738 (+ (org-time-today)
14739 (* (string-to-number (match-string 1 s))
14740 (cdr (assoc (match-string 2 s)
14741 '(("d" . 86400.0) ("w" . 604800.0)
14742 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14743 (t (org-2ft s)))))
14745 (defun org-match-any-p (re list)
14746 "Does re match any element of list?"
14747 (setq list (mapcar (lambda (x) (string-match re x)) list))
14748 (delq nil list))
14750 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14751 (defvar org-tags-overlay (make-overlay 1 1))
14752 (org-detach-overlay org-tags-overlay)
14754 (defun org-get-local-tags-at (&optional pos)
14755 "Get a list of tags defined in the current headline."
14756 (org-get-tags-at pos 'local))
14758 (defun org-get-local-tags ()
14759 "Get a list of tags defined in the current headline."
14760 (org-get-tags-at nil 'local))
14762 (defun org-get-tags-at (&optional pos local)
14763 "Get a list of all headline tags applicable at POS.
14764 POS defaults to point. If tags are inherited, the list contains
14765 the targets in the same sequence as the headlines appear, i.e.
14766 the tags of the current headline come last.
14767 When LOCAL is non-nil, only return tags from the current headline,
14768 ignore inherited ones."
14769 (interactive)
14770 (if (and org-trust-scanner-tags
14771 (or (not pos) (equal pos (point)))
14772 (not local))
14773 org-scanner-tags
14774 (let (tags ltags lastpos parent)
14775 (save-excursion
14776 (save-restriction
14777 (widen)
14778 (goto-char (or pos (point)))
14779 (save-match-data
14780 (catch 'done
14781 (condition-case nil
14782 (progn
14783 (org-back-to-heading t)
14784 (while (not (equal lastpos (point)))
14785 (setq lastpos (point))
14786 (when (looking-at
14787 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14788 (setq ltags (org-split-string
14789 (org-match-string-no-properties 1) ":"))
14790 (when parent
14791 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14792 (setq tags (append
14793 (if parent
14794 (org-remove-uninherited-tags ltags)
14795 ltags)
14796 tags)))
14797 (or org-use-tag-inheritance (throw 'done t))
14798 (if local (throw 'done t))
14799 (or (org-up-heading-safe) (error nil))
14800 (setq parent t)))
14801 (error nil)))))
14802 (if local
14803 tags
14804 (reverse (delete-dups
14805 (reverse (append
14806 (org-remove-uninherited-tags
14807 org-file-tags) tags)))))))))
14809 (defun org-add-prop-inherited (s)
14810 (add-text-properties 0 (length s) '(inherited t) s)
14813 (defun org-toggle-tag (tag &optional onoff)
14814 "Toggle the tag TAG for the current line.
14815 If ONOFF is `on' or `off', don't toggle but set to this state."
14816 (let (res current)
14817 (save-excursion
14818 (org-back-to-heading t)
14819 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14820 (point-at-eol) t)
14821 (progn
14822 (setq current (match-string 1))
14823 (replace-match ""))
14824 (setq current ""))
14825 (setq current (nreverse (org-split-string current ":")))
14826 (cond
14827 ((eq onoff 'on)
14828 (setq res t)
14829 (or (member tag current) (push tag current)))
14830 ((eq onoff 'off)
14831 (or (not (member tag current)) (setq current (delete tag current))))
14832 (t (if (member tag current)
14833 (setq current (delete tag current))
14834 (setq res t)
14835 (push tag current))))
14836 (end-of-line 1)
14837 (if current
14838 (progn
14839 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14840 (org-set-tags nil t))
14841 (delete-horizontal-space))
14842 (run-hooks 'org-after-tags-change-hook))
14843 res))
14845 (defun org-align-tags-here (to-col)
14846 ;; Assumes that this is a headline
14847 "Align tags on the current headline to TO-COL."
14848 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14849 (beginning-of-line 1)
14850 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14851 (< pos (match-beginning 2)))
14852 (progn
14853 (setq tags-l (- (match-end 2) (match-beginning 2)))
14854 (goto-char (match-beginning 1))
14855 (insert " ")
14856 (delete-region (point) (1+ (match-beginning 2)))
14857 (setq ncol (max (current-column)
14858 (1+ col)
14859 (if (> to-col 0)
14860 to-col
14861 (- (abs to-col) tags-l))))
14862 (setq p (point))
14863 (insert (make-string (- ncol (current-column)) ?\ ))
14864 (setq ncol (current-column))
14865 (when indent-tabs-mode (tabify p (point-at-eol)))
14866 (org-move-to-column (min ncol col)))
14867 (goto-char pos))))
14869 (defun org-set-tags-command (&optional arg just-align)
14870 "Call the set-tags command for the current entry."
14871 (interactive "P")
14872 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14873 (org-set-tags arg just-align)
14874 (save-excursion
14875 (unless (and (org-region-active-p)
14876 org-loop-over-headlines-in-active-region)
14877 (org-back-to-heading t))
14878 (org-set-tags arg just-align))))
14880 (defun org-set-tags-to (data)
14881 "Set the tags of the current entry to DATA, replacing the current tags.
14882 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14883 If DATA is nil or the empty string, any tags will be removed."
14884 (interactive "sTags: ")
14885 (setq data
14886 (cond
14887 ((eq data nil) "")
14888 ((equal data "") "")
14889 ((stringp data)
14890 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14891 ":"))
14892 ((listp data)
14893 (concat ":" (mapconcat 'identity data ":") ":"))))
14894 (when data
14895 (save-excursion
14896 (org-back-to-heading t)
14897 (when (looking-at org-complex-heading-regexp)
14898 (if (match-end 5)
14899 (progn
14900 (goto-char (match-beginning 5))
14901 (insert data)
14902 (delete-region (point) (point-at-eol))
14903 (org-set-tags nil 'align))
14904 (goto-char (point-at-eol))
14905 (insert " " data)
14906 (org-set-tags nil 'align)))
14907 (beginning-of-line 1)
14908 (if (looking-at ".*?\\([ \t]+\\)$")
14909 (delete-region (match-beginning 1) (match-end 1))))))
14911 (defun org-align-all-tags ()
14912 "Align the tags i all headings."
14913 (interactive)
14914 (save-excursion
14915 (or (ignore-errors (org-back-to-heading t))
14916 (outline-next-heading))
14917 (if (org-at-heading-p)
14918 (org-set-tags t)
14919 (message "No headings"))))
14921 (defvar org-indent-indentation-per-level)
14922 (defun org-set-tags (&optional arg just-align)
14923 "Set the tags for the current headline.
14924 With prefix ARG, realign all tags in headings in the current buffer.
14925 When JUST-ALIGN is non-nil, only align tags."
14926 (interactive "P")
14927 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14928 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14929 'region-start-level 'region))
14930 org-loop-over-headlines-in-active-region)
14931 (org-map-entries
14932 ;; We don't use ARG and JUST-ALIGN here because these args
14933 ;; are not useful when looping over headlines.
14934 `(org-set-tags)
14935 org-loop-over-headlines-in-active-region
14936 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14937 (let* ((re org-outline-regexp-bol)
14938 (current (unless arg (org-get-tags-string)))
14939 (col (current-column))
14940 (org-setting-tags t)
14941 table current-tags inherited-tags ; computed below when needed
14942 tags p0 c0 c1 rpl di tc level)
14943 (if arg
14944 (save-excursion
14945 (goto-char (point-min))
14946 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14947 (while (re-search-forward re nil t)
14948 (org-set-tags nil t)
14949 (end-of-line 1)))
14950 (message "All tags realigned to column %d" org-tags-column))
14951 (if just-align
14952 (setq tags current)
14953 ;; Get a new set of tags from the user
14954 (save-excursion
14955 (setq table (append org-tag-persistent-alist
14956 (or org-tag-alist (org-get-buffer-tags))
14957 (and
14958 org-complete-tags-always-offer-all-agenda-tags
14959 (org-global-tags-completion-table
14960 (org-agenda-files))))
14961 org-last-tags-completion-table table
14962 current-tags (org-split-string current ":")
14963 inherited-tags (nreverse
14964 (nthcdr (length current-tags)
14965 (nreverse (org-get-tags-at))))
14966 tags
14967 (if (or (eq t org-use-fast-tag-selection)
14968 (and org-use-fast-tag-selection
14969 (delq nil (mapcar 'cdr table))))
14970 (org-fast-tag-selection
14971 current-tags inherited-tags table
14972 (if org-fast-tag-selection-include-todo
14973 org-todo-key-alist))
14974 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14975 (org-trim
14976 (org-icompleting-read "Tags: "
14977 'org-tags-completion-function
14978 nil nil current 'org-tags-history))))))
14979 (while (string-match "[-+&]+" tags)
14980 ;; No boolean logic, just a list
14981 (setq tags (replace-match ":" t t tags))))
14983 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14985 (if org-tags-sort-function
14986 (setq tags (mapconcat 'identity
14987 (sort (org-split-string
14988 tags (org-re "[^[:alnum:]_@#%]+"))
14989 org-tags-sort-function) ":")))
14991 (if (string-match "\\`[\t ]*\\'" tags)
14992 (setq tags "")
14993 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14994 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14996 ;; Insert new tags at the correct column
14997 (beginning-of-line 1)
14998 (setq level (or (and (looking-at org-outline-regexp)
14999 (- (match-end 0) (point) 1))
15001 (cond
15002 ((and (equal current "") (equal tags "")))
15003 ((re-search-forward
15004 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15005 (point-at-eol) t)
15006 (if (equal tags "")
15007 (setq rpl "")
15008 (goto-char (match-beginning 0))
15009 (setq c0 (current-column)
15010 ;; compute offset for the case of org-indent-mode active
15011 di (if (org-bound-and-true-p org-indent-mode)
15012 (* (1- org-indent-indentation-per-level) (1- level))
15014 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
15015 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
15016 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
15017 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
15018 (replace-match rpl t t)
15019 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
15020 tags)
15021 (t (error "Tags alignment failed")))
15022 (org-move-to-column col)
15023 (unless just-align
15024 (run-hooks 'org-after-tags-change-hook))))))
15026 (defun org-change-tag-in-region (beg end tag off)
15027 "Add or remove TAG for each entry in the region.
15028 This works in the agenda, and also in an org-mode buffer."
15029 (interactive
15030 (list (region-beginning) (region-end)
15031 (let ((org-last-tags-completion-table
15032 (if (derived-mode-p 'org-mode)
15033 (org-uniquify
15034 (delq nil (append (org-get-buffer-tags)
15035 (org-global-tags-completion-table))))
15036 (org-global-tags-completion-table))))
15037 (org-icompleting-read
15038 "Tag: " 'org-tags-completion-function nil nil nil
15039 'org-tags-history))
15040 (progn
15041 (message "[s]et or [r]emove? ")
15042 (equal (read-char-exclusive) ?r))))
15043 (if (fboundp 'deactivate-mark) (deactivate-mark))
15044 (let ((agendap (equal major-mode 'org-agenda-mode))
15045 l1 l2 m buf pos newhead (cnt 0))
15046 (goto-char end)
15047 (setq l2 (1- (org-current-line)))
15048 (goto-char beg)
15049 (setq l1 (org-current-line))
15050 (loop for l from l1 to l2 do
15051 (org-goto-line l)
15052 (setq m (get-text-property (point) 'org-hd-marker))
15053 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15054 (and agendap m))
15055 (setq buf (if agendap (marker-buffer m) (current-buffer))
15056 pos (if agendap m (point)))
15057 (with-current-buffer buf
15058 (save-excursion
15059 (save-restriction
15060 (goto-char pos)
15061 (setq cnt (1+ cnt))
15062 (org-toggle-tag tag (if off 'off 'on))
15063 (setq newhead (org-get-heading)))))
15064 (and agendap (org-agenda-change-all-lines newhead m))))
15065 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15067 (defun org-tags-completion-function (string predicate &optional flag)
15068 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15069 (confirm (lambda (x) (stringp (car x)))))
15070 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15071 (setq s1 (match-string 1 string)
15072 s2 (match-string 2 string))
15073 (setq s1 "" s2 string))
15074 (cond
15075 ((eq flag nil)
15076 ;; try completion
15077 (setq rtn (try-completion s2 ctable confirm))
15078 (if (stringp rtn)
15079 (setq rtn
15080 (concat s1 s2 (substring rtn (length s2))
15081 (if (and org-add-colon-after-tag-completion
15082 (assoc rtn ctable))
15083 ":" ""))))
15084 rtn)
15085 ((eq flag t)
15086 ;; all-completions
15087 (all-completions s2 ctable confirm))
15088 ((eq flag 'lambda)
15089 ;; exact match?
15090 (assoc s2 ctable)))))
15092 (defun org-fast-tag-insert (kwd tags face &optional end)
15093 "Insert KDW, and the TAGS, the latter with face FACE.
15094 Also insert END."
15095 (insert (format "%-12s" (concat kwd ":"))
15096 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15097 (or end "")))
15099 (defun org-fast-tag-show-exit (flag)
15100 (save-excursion
15101 (org-goto-line 3)
15102 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15103 (replace-match ""))
15104 (when flag
15105 (end-of-line 1)
15106 (org-move-to-column (- (window-width) 19) t)
15107 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15109 (defun org-set-current-tags-overlay (current prefix)
15110 "Add an overlay to CURRENT tag with PREFIX."
15111 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15112 (if (featurep 'xemacs)
15113 (org-overlay-display org-tags-overlay (concat prefix s)
15114 'secondary-selection)
15115 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15116 (org-overlay-display org-tags-overlay (concat prefix s)))))
15118 (defvar org-last-tag-selection-key nil)
15119 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15120 "Fast tag selection with single keys.
15121 CURRENT is the current list of tags in the headline, INHERITED is the
15122 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15123 possibly with grouping information. TODO-TABLE is a similar table with
15124 TODO keywords, should these have keys assigned to them.
15125 If the keys are nil, a-z are automatically assigned.
15126 Returns the new tags string, or nil to not change the current settings."
15127 (let* ((fulltable (append table todo-table))
15128 (maxlen (apply 'max (mapcar
15129 (lambda (x)
15130 (if (stringp (car x)) (string-width (car x)) 0))
15131 fulltable)))
15132 (buf (current-buffer))
15133 (expert (eq org-fast-tag-selection-single-key 'expert))
15134 (buffer-tags nil)
15135 (fwidth (+ maxlen 3 1 3))
15136 (ncol (/ (- (window-width) 4) fwidth))
15137 (i-face 'org-done)
15138 (c-face 'org-todo)
15139 tg cnt e c char c1 c2 ntable tbl rtn
15140 ov-start ov-end ov-prefix
15141 (exit-after-next org-fast-tag-selection-single-key)
15142 (done-keywords org-done-keywords)
15143 groups ingroup intaggroup)
15144 (save-excursion
15145 (beginning-of-line 1)
15146 (if (looking-at
15147 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15148 (setq ov-start (match-beginning 1)
15149 ov-end (match-end 1)
15150 ov-prefix "")
15151 (setq ov-start (1- (point-at-eol))
15152 ov-end (1+ ov-start))
15153 (skip-chars-forward "^\n\r")
15154 (setq ov-prefix
15155 (concat
15156 (buffer-substring (1- (point)) (point))
15157 (if (> (current-column) org-tags-column)
15159 (make-string (- org-tags-column (current-column)) ?\ ))))))
15160 (move-overlay org-tags-overlay ov-start ov-end)
15161 (save-window-excursion
15162 (if expert
15163 (set-buffer (get-buffer-create " *Org tags*"))
15164 (delete-other-windows)
15165 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15166 (org-switch-to-buffer-other-window " *Org tags*"))
15167 (erase-buffer)
15168 (org-set-local 'org-done-keywords done-keywords)
15169 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15170 (org-fast-tag-insert "Current" current c-face "\n\n")
15171 (org-fast-tag-show-exit exit-after-next)
15172 (org-set-current-tags-overlay current ov-prefix)
15173 (setq tbl fulltable char ?a cnt 0)
15174 (while (setq e (pop tbl))
15175 (cond
15176 ((eq (car e) :startgroup)
15177 (push '() groups) (setq ingroup t)
15178 (unless (zerop cnt)
15179 (setq cnt 0)
15180 (insert "\n"))
15181 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15182 ((eq (car e) :endgroup)
15183 (setq ingroup nil cnt 0)
15184 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15185 ((eq (car e) :startgrouptag)
15186 (setq intaggroup t)
15187 (unless (zerop cnt)
15188 (setq cnt 0)
15189 (insert "\n"))
15190 (insert "[ "))
15191 ((eq (car e) :endgrouptag)
15192 (setq intaggroup nil cnt 0)
15193 (insert "]\n"))
15194 ((equal e '(:newline))
15195 (unless (zerop cnt)
15196 (setq cnt 0)
15197 (insert "\n")
15198 (setq e (car tbl))
15199 (while (equal (car tbl) '(:newline))
15200 (insert "\n")
15201 (setq tbl (cdr tbl)))))
15202 ((equal e '(:grouptags)) (insert " : "))
15204 (setq tg (copy-sequence (car e)) c2 nil)
15205 (if (cdr e)
15206 (setq c (cdr e))
15207 ;; automatically assign a character.
15208 (setq c1 (string-to-char
15209 (downcase (substring
15210 tg (if (= (string-to-char tg) ?@) 1 0)))))
15211 (if (or (rassoc c1 ntable) (rassoc c1 table))
15212 (while (or (rassoc char ntable) (rassoc char table))
15213 (setq char (1+ char)))
15214 (setq c2 c1))
15215 (setq c (or c2 char)))
15216 (when ingroup (push tg (car groups)))
15217 (setq tg (org-add-props tg nil 'face
15218 (cond
15219 ((not (assoc tg table))
15220 (org-get-todo-face tg))
15221 ((member tg current) c-face)
15222 ((member tg inherited) i-face))))
15223 (when (equal (caar tbl) :grouptags)
15224 (org-add-props tg nil 'face 'org-tag-group))
15225 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15226 (insert "[" c "] " tg (make-string
15227 (- fwidth 4 (length tg)) ?\ ))
15228 (push (cons tg c) ntable)
15229 (when (= (incf cnt) ncol)
15230 (insert "\n")
15231 (when (or ingroup intaggroup) (insert " "))
15232 (setq cnt 0)))))
15233 (setq ntable (nreverse ntable))
15234 (insert "\n")
15235 (goto-char (point-min))
15236 (unless expert (org-fit-window-to-buffer))
15237 (setq rtn
15238 (catch 'exit
15239 (while t
15240 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15241 (if (not groups) "no " "")
15242 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15243 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15244 (setq org-last-tag-selection-key c)
15245 (cond
15246 ((= c ?\r) (throw 'exit t))
15247 ((= c ?!)
15248 (setq groups (not groups))
15249 (goto-char (point-min))
15250 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15251 ((= c ?\C-c)
15252 (if (not expert)
15253 (org-fast-tag-show-exit
15254 (setq exit-after-next (not exit-after-next)))
15255 (setq expert nil)
15256 (delete-other-windows)
15257 (set-window-buffer (split-window-vertically) " *Org tags*")
15258 (org-switch-to-buffer-other-window " *Org tags*")
15259 (org-fit-window-to-buffer)))
15260 ((or (= c ?\C-g)
15261 (and (= c ?q) (not (rassoc c ntable))))
15262 (org-detach-overlay org-tags-overlay)
15263 (setq quit-flag t))
15264 ((= c ?\ )
15265 (setq current nil)
15266 (when exit-after-next (setq exit-after-next 'now)))
15267 ((= c ?\t)
15268 (condition-case nil
15269 (setq tg (org-icompleting-read
15270 "Tag: "
15271 (or buffer-tags
15272 (with-current-buffer buf
15273 (org-get-buffer-tags)))))
15274 (quit (setq tg "")))
15275 (when (string-match "\\S-" tg)
15276 (add-to-list 'buffer-tags (list tg))
15277 (if (member tg current)
15278 (setq current (delete tg current))
15279 (push tg current)))
15280 (when exit-after-next (setq exit-after-next 'now)))
15281 ((setq e (rassoc c todo-table) tg (car e))
15282 (with-current-buffer buf
15283 (save-excursion (org-todo tg)))
15284 (when exit-after-next (setq exit-after-next 'now)))
15285 ((setq e (rassoc c ntable) tg (car e))
15286 (if (member tg current)
15287 (setq current (delete tg current))
15288 (loop for g in groups do
15289 (when (member tg g)
15290 (dolist (x g) (setq current (delete x current)))))
15291 (push tg current))
15292 (when exit-after-next (setq exit-after-next 'now))))
15294 ;; Create a sorted list
15295 (setq current
15296 (sort current
15297 (lambda (a b)
15298 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15299 (when (eq exit-after-next 'now) (throw 'exit t))
15300 (goto-char (point-min))
15301 (beginning-of-line 2)
15302 (delete-region (point) (point-at-eol))
15303 (org-fast-tag-insert "Current" current c-face)
15304 (org-set-current-tags-overlay current ov-prefix)
15305 (while (re-search-forward
15306 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15307 (setq tg (match-string 1))
15308 (add-text-properties
15309 (match-beginning 1) (match-end 1)
15310 (list 'face
15311 (cond
15312 ((member tg current) c-face)
15313 ((member tg inherited) i-face)
15314 (t (get-text-property (match-beginning 1) 'face))))))
15315 (goto-char (point-min)))))
15316 (org-detach-overlay org-tags-overlay)
15317 (if rtn
15318 (mapconcat 'identity current ":")
15319 nil))))
15321 (defun org-get-tags-string ()
15322 "Get the TAGS string in the current headline."
15323 (unless (org-at-heading-p t)
15324 (user-error "Not on a heading"))
15325 (save-excursion
15326 (beginning-of-line 1)
15327 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15328 (org-match-string-no-properties 1)
15329 "")))
15331 (defun org-get-tags ()
15332 "Get the list of tags specified in the current headline."
15333 (org-split-string (org-get-tags-string) ":"))
15335 (defun org-get-buffer-tags ()
15336 "Get a table of all tags used in the buffer, for completion."
15337 (org-with-wide-buffer
15338 (goto-char (point-min))
15339 (let ((tag-re (concat org-outline-regexp-bol
15340 "\\(?:.*?[ \t]\\)?"
15341 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15342 tags)
15343 (while (re-search-forward tag-re nil t)
15344 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15345 (push tag tags)))
15346 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15348 ;;;; The mapping API
15350 (defun org-map-entries (func &optional match scope &rest skip)
15351 "Call FUNC at each headline selected by MATCH in SCOPE.
15353 FUNC is a function or a lisp form. The function will be called without
15354 arguments, with the cursor positioned at the beginning of the headline.
15355 The return values of all calls to the function will be collected and
15356 returned as a list.
15358 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15359 does not need to preserve point. After evaluation, the cursor will be
15360 moved to the end of the line (presumably of the headline of the
15361 processed entry) and search continues from there. Under some
15362 circumstances, this may not produce the wanted results. For example,
15363 if you have removed (e.g. archived) the current (sub)tree it could
15364 mean that the next entry will be skipped entirely. In such cases, you
15365 can specify the position from where search should continue by making
15366 FUNC set the variable `org-map-continue-from' to the desired buffer
15367 position.
15369 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15370 Only headlines that are matched by this query will be considered during
15371 the iteration. When MATCH is nil or t, all headlines will be
15372 visited by the iteration.
15374 SCOPE determines the scope of this command. It can be any of:
15376 nil The current buffer, respecting the restriction if any
15377 tree The subtree started with the entry at point
15378 region The entries within the active region, if any
15379 region-start-level
15380 The entries within the active region, but only those at
15381 the same level than the first one.
15382 file The current buffer, without restriction
15383 file-with-archives
15384 The current buffer, and any archives associated with it
15385 agenda All agenda files
15386 agenda-with-archives
15387 All agenda files with any archive files associated with them
15388 \(file1 file2 ...)
15389 If this is a list, all files in the list will be scanned
15391 The remaining args are treated as settings for the skipping facilities of
15392 the scanner. The following items can be given here:
15394 archive skip trees with the archive tag
15395 comment skip trees with the COMMENT keyword
15396 function or Emacs Lisp form:
15397 will be used as value for `org-agenda-skip-function', so
15398 whenever the function returns a position, FUNC will not be
15399 called for that entry and search will continue from the
15400 position returned
15402 If your function needs to retrieve the tags including inherited tags
15403 at the *current* entry, you can use the value of the variable
15404 `org-scanner-tags' which will be much faster than getting the value
15405 with `org-get-tags-at'. If your function gets properties with
15406 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15407 to t around the call to `org-entry-properties' to get the same speedup.
15408 Note that if your function moves around to retrieve tags and properties at
15409 a *different* entry, you cannot use these techniques."
15410 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15411 (not (org-region-active-p)))
15412 (let* ((org-agenda-archives-mode nil) ; just to make sure
15413 (org-agenda-skip-archived-trees (memq 'archive skip))
15414 (org-agenda-skip-comment-trees (memq 'comment skip))
15415 (org-agenda-skip-function
15416 (car (org-delete-all '(comment archive) skip)))
15417 (org-tags-match-list-sublevels t)
15418 (start-level (eq scope 'region-start-level))
15419 matcher file res
15420 org-todo-keywords-for-agenda
15421 org-done-keywords-for-agenda
15422 org-todo-keyword-alist-for-agenda
15423 org-tag-alist-for-agenda
15424 todo-only)
15426 (cond
15427 ((eq match t) (setq matcher t))
15428 ((eq match nil) (setq matcher t))
15429 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15431 (save-excursion
15432 (save-restriction
15433 (cond ((eq scope 'tree)
15434 (org-back-to-heading t)
15435 (org-narrow-to-subtree)
15436 (setq scope nil))
15437 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15438 (org-region-active-p))
15439 ;; If needed, set start-level to a string like "2"
15440 (when start-level
15441 (save-excursion
15442 (goto-char (region-beginning))
15443 (unless (org-at-heading-p) (outline-next-heading))
15444 (setq start-level (org-current-level))))
15445 (narrow-to-region (region-beginning)
15446 (save-excursion
15447 (goto-char (region-end))
15448 (unless (and (bolp) (org-at-heading-p))
15449 (outline-next-heading))
15450 (point)))
15451 (setq scope nil)))
15453 (if (not scope)
15454 (progn
15455 (org-agenda-prepare-buffers
15456 (list (buffer-file-name (current-buffer))))
15457 (setq res (org-scan-tags func matcher todo-only start-level)))
15458 ;; Get the right scope
15459 (cond
15460 ((and scope (listp scope) (symbolp (car scope)))
15461 (setq scope (eval scope)))
15462 ((eq scope 'agenda)
15463 (setq scope (org-agenda-files t)))
15464 ((eq scope 'agenda-with-archives)
15465 (setq scope (org-agenda-files t))
15466 (setq scope (org-add-archive-files scope)))
15467 ((eq scope 'file)
15468 (setq scope (list (buffer-file-name))))
15469 ((eq scope 'file-with-archives)
15470 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15471 (org-agenda-prepare-buffers scope)
15472 (while (setq file (pop scope))
15473 (with-current-buffer (org-find-base-buffer-visiting file)
15474 (save-excursion
15475 (save-restriction
15476 (widen)
15477 (goto-char (point-min))
15478 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15479 res)))
15481 ;;; Properties API
15483 (defconst org-special-properties
15484 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15485 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15486 "The special properties valid in Org mode.
15487 These are properties that are not defined in the property drawer,
15488 but in some other way.")
15490 (defconst org-default-properties
15491 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15492 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15493 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15494 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15495 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15496 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15497 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15498 "Some properties that are used by Org mode for various purposes.
15499 Being in this list makes sure that they are offered for completion.")
15501 (defun org--update-property-plist (key val props)
15502 "Associate KEY to VAL in alist PROPS.
15503 Modifications are made by side-effect. Return new alist."
15504 (let* ((appending (string= (substring key -1) "+"))
15505 (key (if appending (substring key 0 -1) key))
15506 (old (assoc-string key props t)))
15507 (if (not old) (cons (cons key val) props)
15508 (setcdr old (if appending (concat (cdr old) " " val) val))
15509 props)))
15511 (defun org-get-property-block (&optional beg force)
15512 "Return the (beg . end) range of the body of the property drawer.
15513 BEG is the beginning of the current subtree, or of the part
15514 before the first headline. If it is not given, it will be found.
15515 If the drawer does not exist, create it if FORCE is non-nil, or
15516 return nil."
15517 (org-with-wide-buffer
15518 (when beg (goto-char beg))
15519 (unless (org-before-first-heading-p)
15520 (let ((beg (cond (beg)
15521 ((or (not (featurep 'org-inlinetask))
15522 (org-inlinetask-in-task-p))
15523 (org-back-to-heading t))
15524 (t (org-with-limited-levels (org-back-to-heading t))))))
15525 (forward-line)
15526 (when (org-looking-at-p org-planning-line-re) (forward-line))
15527 (cond ((looking-at org-property-drawer-re)
15528 (forward-line)
15529 (cons (point) (progn (goto-char (match-end 0))
15530 (line-beginning-position))))
15531 (force
15532 (goto-char beg)
15533 (org-insert-property-drawer)
15534 (let ((pos (save-excursion (search-forward ":END:")
15535 (line-beginning-position))))
15536 (cons pos pos))))))))
15538 (defun org-at-property-p ()
15539 "Non-nil when point is inside a property drawer.
15540 See `org-property-re' for match data, if applicable."
15541 (save-excursion
15542 (beginning-of-line)
15543 (and (looking-at org-property-re)
15544 (let ((property-drawer (save-match-data (org-get-property-block))))
15545 (and property-drawer
15546 (>= (point) (car property-drawer))
15547 (< (point) (cdr property-drawer)))))))
15549 (defun org-property-action ()
15550 "Do an action on properties."
15551 (interactive)
15552 (unless (org-at-property-p) (user-error "Not at a property"))
15553 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15554 (let ((c (read-char-exclusive)))
15555 (case c
15556 (?s (call-interactively #'org-set-property))
15557 (?d (call-interactively #'org-delete-property))
15558 (?D (call-interactively #'org-delete-property-globally))
15559 (?c (call-interactively #'org-compute-property-at-point))
15560 (otherwise (user-error "No such property action %c" c)))))
15562 (defun org-inc-effort ()
15563 "Increment the value of the effort property in the current entry."
15564 (interactive)
15565 (org-set-effort nil t))
15567 (defvar org-clock-effort) ; Defined in org-clock.el.
15568 (defvar org-clock-current-task) ; Defined in org-clock.el.
15569 (defun org-set-effort (&optional value increment)
15570 "Set the effort property of the current entry.
15571 With numerical prefix arg, use the nth allowed value, 0 stands for the
15572 10th allowed value.
15574 When INCREMENT is non-nil, set the property to the next allowed value."
15575 (interactive "P")
15576 (if (equal value 0) (setq value 10))
15577 (let* ((completion-ignore-case t)
15578 (prop org-effort-property)
15579 (cur (org-entry-get nil prop))
15580 (allowed (org-property-get-allowed-values nil prop 'table))
15581 (existing (mapcar 'list (org-property-values prop)))
15582 (heading (nth 4 (org-heading-components)))
15584 (val (cond
15585 ((stringp value) value)
15586 ((and allowed (integerp value))
15587 (or (car (nth (1- value) allowed))
15588 (car (org-last allowed))))
15589 ((and allowed increment)
15590 (or (caadr (member (list cur) allowed))
15591 (user-error "Allowed effort values are not set")))
15592 (allowed
15593 (message "Select 1-9,0, [RET%s]: %s"
15594 (if cur (concat "=" cur) "")
15595 (mapconcat 'car allowed " "))
15596 (setq rpl (read-char-exclusive))
15597 (if (equal rpl ?\r)
15599 (setq rpl (- rpl ?0))
15600 (if (equal rpl 0) (setq rpl 10))
15601 (if (and (> rpl 0) (<= rpl (length allowed)))
15602 (car (nth (1- rpl) allowed))
15603 (org-completing-read "Effort: " allowed nil))))
15605 (let (org-completion-use-ido org-completion-use-iswitchb)
15606 (org-completing-read
15607 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15608 (concat "[" cur "]") "")
15609 ": ")
15610 existing nil nil "" nil cur))))))
15611 (unless (equal (org-entry-get nil prop) val)
15612 (org-entry-put nil prop val))
15613 (org-refresh-property
15614 '((effort . identity)
15615 (effort-minutes . org-duration-string-to-minutes))
15616 val)
15617 (when (string= heading org-clock-current-task)
15618 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15619 (org-clock-update-mode-line))
15620 (message "%s is now %s" prop val)))
15622 (defun org-entry-properties (&optional pom which)
15623 "Get all properties of the current entry.
15625 When POM is a buffer position, get all properties from the entry
15626 there instead.
15628 This includes the TODO keyword, the tags, time strings for
15629 deadline, scheduled, and clocking, and any additional properties
15630 defined in the entry.
15632 If WHICH is nil or `all', get all properties. If WHICH is
15633 `special' or `standard', only get that subclass. If WHICH is
15634 a string, only get that property.
15636 Return value is an alist. Keys are properties, as upcased
15637 strings."
15638 (org-with-point-at pom
15639 (when (and (derived-mode-p 'org-mode)
15640 (ignore-errors (org-back-to-heading t)))
15641 (catch 'exit
15642 (let* ((beg (point))
15643 (specific (and (stringp which) (upcase which)))
15644 (which (cond ((not specific) which)
15645 ((member specific org-special-properties) 'special)
15646 (t 'standard)))
15647 props)
15648 ;; Get the special properties, like TODO and TAGS.
15649 (when (memq which '(nil all special))
15650 (when (or (not specific) (string= specific "CLOCKSUM"))
15651 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15652 (when clocksum
15653 (push (cons "CLOCKSUM"
15654 (org-columns-number-to-string
15655 (/ (float clocksum) 60.) 'add_times))
15656 props)))
15657 (when specific (throw 'exit props)))
15658 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15659 (let ((clocksumt (get-text-property (point)
15660 :org-clock-minutes-today)))
15661 (when clocksumt
15662 (push (cons "CLOCKSUM_T"
15663 (org-columns-number-to-string
15664 (/ (float clocksumt) 60.) 'add_times))
15665 props)))
15666 (when specific (throw 'exit props)))
15667 (when (or (not specific) (string= specific "ITEM"))
15668 (when (looking-at org-complex-heading-regexp)
15669 (push (cons "ITEM"
15670 (concat
15671 (org-match-string-no-properties 1)
15672 (let ((title (org-match-string-no-properties 4)))
15673 (when (org-string-nw-p title)
15674 (concat " " (org-remove-tabs title))))))
15675 props))
15676 (when specific (throw 'exit props)))
15677 (when (or (not specific) (string= specific "TODO"))
15678 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15679 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15680 (when specific (throw 'exit props)))
15681 (when (or (not specific) (string= specific "PRIORITY"))
15682 (when (looking-at org-priority-regexp)
15683 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15684 (when specific (throw 'exit props)))
15685 (when (or (not specific) (string= specific "FILE"))
15686 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15687 props)
15688 (when specific (throw 'exit props)))
15689 (when (or (not specific) (string= specific "TAGS"))
15690 (let ((value (org-string-nw-p (org-get-tags-string))))
15691 (when value (push (cons "TAGS" value) props)))
15692 (when specific (throw 'exit props)))
15693 (when (or (not specific) (string= specific "ALLTAGS"))
15694 (let ((value (org-get-tags-at)))
15695 (when value
15696 (push (cons "ALLTAGS"
15697 (format ":%s:" (mapconcat #'identity value ":")))
15698 props)))
15699 (when specific (throw 'exit props)))
15700 (when (or (not specific) (string= specific "BLOCKED"))
15701 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15702 (when specific (throw 'exit props)))
15703 (when (or (not specific)
15704 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15705 (forward-line)
15706 (when (org-looking-at-p org-planning-line-re)
15707 (end-of-line)
15708 (let ((bol (line-beginning-position))
15709 ;; Backward compatibility: time keywords used to
15710 ;; be configurable (before 8.3). Make sure we
15711 ;; get the correct keyword.
15712 (key-assoc `(("CLOSED" . ,org-closed-string)
15713 ("DEADLINE" . ,org-deadline-string)
15714 ("SCHEDULED" . ,org-scheduled-string))))
15715 (dolist (pair (if specific (list (assoc specific key-assoc))
15716 key-assoc))
15717 (save-excursion
15718 (when (search-backward (cdr pair) bol t)
15719 (goto-char (match-end 0))
15720 (skip-chars-forward " \t")
15721 (and (looking-at org-ts-regexp-both)
15722 (push (cons (car pair)
15723 (org-match-string-no-properties 0))
15724 props)))))))
15725 (when specific (throw 'exit props)))
15726 (when (or (not specific)
15727 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15728 (let ((find-ts
15729 (lambda (end ts)
15730 (let ((regexp (if (or (string= specific "TIMESTAMP")
15731 (assoc "TIMESTAMP_IA" ts))
15732 org-ts-regexp
15733 org-ts-regexp-both)))
15734 (catch 'next
15735 (while (re-search-forward regexp end t)
15736 (backward-char)
15737 (let ((object (org-element-context)))
15738 ;; Accept to match timestamps in node
15739 ;; properties, too.
15740 (when (memq (org-element-type object)
15741 '(node-property timestamp))
15742 (let ((type
15743 (org-element-property :type object)))
15744 (cond
15745 ((and (memq type '(active active-range))
15746 (not (equal specific "TIMESTAMP_IA")))
15747 (unless (assoc "TIMESTAMP" ts)
15748 (push (cons "TIMESTAMP"
15749 (org-element-property
15750 :raw-value object))
15752 (when specific (throw 'exit ts))))
15753 ((and (memq type '(inactive inactive-range))
15754 (not (string= specific "TIMESTAMP")))
15755 (unless (assoc "TIMESTAMP_IA" ts)
15756 (push (cons "TIMESTAMP_IA"
15757 (org-element-property
15758 :raw-value object))
15760 (when specific (throw 'exit ts))))))
15761 ;; Both timestamp types are found,
15762 ;; move to next part.
15763 (when (= (length ts) 2) (throw 'next ts)))))
15764 ts)))))
15765 (goto-char beg)
15766 ;; First look for timestamps within headline.
15767 (let ((ts (funcall find-ts (line-end-position) nil)))
15768 (if (= (length ts) 2) (setq props (nconc ts props))
15769 (forward-line)
15770 ;; Then find timestamps in the section, skipping
15771 ;; planning line.
15772 (when (org-looking-at-p org-planning-line-re)
15773 (forward-line))
15774 (let ((end (save-excursion (outline-next-heading))))
15775 (setq props (nconc (funcall find-ts end ts) props))))))))
15776 ;; Get the standard properties, like :PROP:.
15777 (when (memq which '(nil all standard))
15778 ;; If we are looking after a specific property, delegate
15779 ;; to `org-entry-get', which is faster. However, make an
15780 ;; exception for "CATEGORY", since it can be also set
15781 ;; through keywords (i.e. #+CATEGORY).
15782 (if (and specific (not (equal specific "CATEGORY")))
15783 (let ((value (org-entry-get beg specific nil t)))
15784 (throw 'exit (and value (list (cons specific value)))))
15785 (let ((range (org-get-property-block beg)))
15786 (when range
15787 (let ((end (cdr range)) seen-base)
15788 (goto-char (car range))
15789 ;; Unlike to `org--update-property-plist', we
15790 ;; handle the case where base values is found
15791 ;; after its extension. We also forbid standard
15792 ;; properties to be named as special properties.
15793 (while (re-search-forward org-property-re end t)
15794 (let* ((key (upcase (org-match-string-no-properties 2)))
15795 (extendp (org-string-match-p "\\+\\'" key))
15796 (key-base (if extendp (substring key 0 -1) key))
15797 (value (org-match-string-no-properties 3)))
15798 (cond
15799 ((member-ignore-case key-base org-special-properties))
15800 (extendp
15801 (setq props
15802 (org--update-property-plist key value props)))
15803 ((member key seen-base))
15804 (t (push key seen-base)
15805 (let ((p (assoc-string key props t)))
15806 (if p (setcdr p (concat value " " (cdr p)))
15807 (push (cons key value) props))))))))))))
15808 (unless (assoc "CATEGORY" props)
15809 (push (cons "CATEGORY" (org-get-category beg)) props)
15810 (when (string= specific "CATEGORY") (throw 'exit props)))
15811 ;; Return value.
15812 (append (get-text-property beg 'org-summaries) props))))))
15814 (defun org-entry-get (pom property &optional inherit literal-nil)
15815 "Get value of PROPERTY for entry or content at point-or-marker POM.
15817 If INHERIT is non-nil and the entry does not have the property,
15818 then also check higher levels of the hierarchy. If INHERIT is
15819 the symbol `selective', use inheritance only if the setting in
15820 `org-use-property-inheritance' selects PROPERTY for inheritance.
15822 If the property is present but empty, the return value is the
15823 empty string. If the property is not present at all, nil is
15824 returned. In any other case, return the value as a string.
15825 Search is case-insensitive.
15827 If LITERAL-NIL is set, return the string value \"nil\" as
15828 a string, do not interpret it as the list atom nil. This is used
15829 for inheritance when a \"nil\" value can supersede a non-nil
15830 value higher up the hierarchy."
15831 (org-with-point-at pom
15832 (cond
15833 ((and inherit
15834 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15835 (org-entry-get-with-inheritance property literal-nil))
15836 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15837 ;; We need a special property. Use `org-entry-properties' to
15838 ;; retrieve it, but specify the wanted property.
15839 (cdr (assoc-string property (org-entry-properties nil property))))
15841 (let ((range (org-get-property-block)))
15842 (when range
15843 (let* ((case-fold-search t)
15844 (end (cdr range))
15845 (props
15846 (let ((global
15847 (or (assoc-string property org-file-properties t)
15848 (assoc-string property org-global-properties t)
15849 (assoc-string
15850 property org-global-properties-fixed t))))
15851 ;; Make sure to not re-use GLOBAL as
15852 ;; `org--update-property-plist' would alter it by
15853 ;; side-effect.
15854 (and global (list (cons property (cdr global))))))
15855 (find-value
15856 (lambda (key)
15857 (when (re-search-forward (org-re-property key nil t) end t)
15858 (setq props
15859 (org--update-property-plist
15860 key (org-match-string-no-properties 3) props))))))
15861 (goto-char (car range))
15862 ;; Find base value.
15863 (save-excursion (funcall find-value property))
15864 ;; Find additional values.
15865 (let ((property+ (concat property "+")))
15866 (while (funcall find-value property+)))
15867 ;; Return final value.
15868 (let ((val (cdr (assoc-string property props t))))
15869 (if literal-nil val (org-not-nil val))))))))))
15871 (defun org-property-or-variable-value (var &optional inherit)
15872 "Check if there is a property fixing the value of VAR.
15873 If yes, return this value. If not, return the current value of the variable."
15874 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15875 (if (and prop (stringp prop) (string-match "\\S-" prop))
15876 (read prop)
15877 (symbol-value var))))
15879 (defun org-entry-delete (pom property)
15880 "Delete PROPERTY from entry at point-or-marker POM.
15881 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15882 non-nil when a property was removed."
15883 (unless (member property org-special-properties)
15884 (org-with-point-at pom
15885 (let ((range (org-get-property-block)))
15886 (when range
15887 (let* ((begin (car range))
15888 (origin (cdr range))
15889 (end (copy-marker origin))
15890 (re (org-re-property
15891 (concat (regexp-quote property) "\\+?") t t)))
15892 (goto-char begin)
15893 (while (re-search-forward re end t)
15894 (delete-region (match-beginning 0) (line-beginning-position 2)))
15895 ;; If drawer is empty, remove it altogether.
15896 (when (= begin end)
15897 (delete-region (line-beginning-position 0)
15898 (line-beginning-position 2)))
15899 ;; Return non-nil if some property was removed.
15900 (prog1 (/= end origin) (set-marker end nil))))))))
15902 ;; Multi-values properties are properties that contain multiple values
15903 ;; These values are assumed to be single words, separated by whitespace.
15904 (defun org-entry-add-to-multivalued-property (pom property value)
15905 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15906 (let* ((old (org-entry-get pom property))
15907 (values (and old (org-split-string old "[ \t]"))))
15908 (setq value (org-entry-protect-space value))
15909 (unless (member value values)
15910 (setq values (append values (list value)))
15911 (org-entry-put pom property
15912 (mapconcat 'identity values " ")))))
15914 (defun org-entry-remove-from-multivalued-property (pom property value)
15915 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15916 (let* ((old (org-entry-get pom property))
15917 (values (and old (org-split-string old "[ \t]"))))
15918 (setq value (org-entry-protect-space value))
15919 (when (member value values)
15920 (setq values (delete value values))
15921 (org-entry-put pom property
15922 (mapconcat 'identity values " ")))))
15924 (defun org-entry-member-in-multivalued-property (pom property value)
15925 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15926 (let* ((old (org-entry-get pom property))
15927 (values (and old (org-split-string old "[ \t]"))))
15928 (setq value (org-entry-protect-space value))
15929 (member value values)))
15931 (defun org-entry-get-multivalued-property (pom property)
15932 "Return a list of values in a multivalued property."
15933 (let* ((value (org-entry-get pom property))
15934 (values (and value (org-split-string value "[ \t]"))))
15935 (mapcar 'org-entry-restore-space values)))
15937 (defun org-entry-put-multivalued-property (pom property &rest values)
15938 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15939 VALUES should be a list of strings. Spaces will be protected."
15940 (org-entry-put pom property
15941 (mapconcat 'org-entry-protect-space values " "))
15942 (let* ((value (org-entry-get pom property))
15943 (values (and value (org-split-string value "[ \t]"))))
15944 (mapcar 'org-entry-restore-space values)))
15946 (defun org-entry-protect-space (s)
15947 "Protect spaces and newline in string S."
15948 (while (string-match " " s)
15949 (setq s (replace-match "%20" t t s)))
15950 (while (string-match "\n" s)
15951 (setq s (replace-match "%0A" t t s)))
15954 (defun org-entry-restore-space (s)
15955 "Restore spaces and newline in string S."
15956 (while (string-match "%20" s)
15957 (setq s (replace-match " " t t s)))
15958 (while (string-match "%0A" s)
15959 (setq s (replace-match "\n" t t s)))
15962 (defvar org-entry-property-inherited-from (make-marker)
15963 "Marker pointing to the entry from where a property was inherited.
15964 Each call to `org-entry-get-with-inheritance' will set this marker to the
15965 location of the entry where the inheritance search matched. If there was
15966 no match, the marker will point nowhere.
15967 Note that also `org-entry-get' calls this function, if the INHERIT flag
15968 is set.")
15970 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15971 "Get PROPERTY of entry or content at point, search higher levels if needed.
15972 The search will stop at the first ancestor which has the property defined.
15973 If the value found is \"nil\", return nil to show that the property
15974 should be considered as undefined (this is the meaning of nil here).
15975 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15976 (move-marker org-entry-property-inherited-from nil)
15977 (let (value)
15978 (org-with-wide-buffer
15979 (catch 'exit
15980 (while t
15981 (when (setq value (org-entry-get nil property nil literal-nil))
15982 (org-back-to-heading t)
15983 (move-marker org-entry-property-inherited-from (point))
15984 (throw 'exit nil))
15985 (or (org-up-heading-safe) (throw 'exit nil)))))
15986 (unless value
15987 (setq value
15988 (cdr (or (assoc-string property org-file-properties t)
15989 (assoc-string property org-global-properties t)
15990 (assoc-string property org-global-properties-fixed t)))))
15991 (if literal-nil value (org-not-nil value))))
15993 (defvar org-property-changed-functions nil
15994 "Hook called when the value of a property has changed.
15995 Each hook function should accept two arguments, the name of the property
15996 and the new value.")
15998 (defun org-entry-put (pom property value)
15999 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16001 If the value is `nil', it is converted to the empty string. If
16002 it is not a string, an error is raised.
16004 PROPERTY can be any regular property (see
16005 `org-special-properties'). It can also be \"TODO\",
16006 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16008 For the last two properties, VALUE may have any of the special
16009 values \"earlier\" and \"later\". The function then increases or
16010 decreases scheduled or deadline date by one day."
16011 (cond ((null value) (setq value ""))
16012 ((not (stringp value)) (error "Properties values should be strings")))
16013 (org-with-point-at pom
16014 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16015 (org-back-to-heading t)
16016 (org-with-limited-levels (org-back-to-heading t)))
16017 (let ((beg (point)))
16018 (cond
16019 ((equal property "TODO")
16020 (cond ((not (org-string-nw-p value)) (setq value 'none))
16021 ((not (member value org-todo-keywords-1))
16022 (user-error "\"%s\" is not a valid TODO state" value)))
16023 (org-todo value)
16024 (org-set-tags nil 'align))
16025 ((equal property "PRIORITY")
16026 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16027 (org-set-tags nil 'align))
16028 ((equal property "SCHEDULED")
16029 (forward-line)
16030 (if (and (org-looking-at-p org-planning-line-re)
16031 (re-search-forward
16032 org-scheduled-time-regexp (line-end-position) t))
16033 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16034 ((string= value "later") (org-timestamp-change 1 'day))
16035 ((string= value "") (org-schedule '(4)))
16036 (t (org-schedule nil value)))
16037 (if (member value '("earlier" "later" ""))
16038 (call-interactively #'org-schedule)
16039 (org-schedule nil value))))
16040 ((equal property "DEADLINE")
16041 (forward-line)
16042 (if (and (org-looking-at-p org-planning-line-re)
16043 (re-search-forward
16044 org-deadline-time-regexp (line-end-position) t))
16045 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16046 ((string= value "later") (org-timestamp-change 1 'day))
16047 ((string= value "") (org-deadline '(4)))
16048 (t (org-deadline nil value)))
16049 (if (member value '("earlier" "later" ""))
16050 (call-interactively #'org-deadline)
16051 (org-deadline nil value))))
16052 ((member property org-special-properties)
16053 (error "The %s property cannot be set with `org-entry-put'" property))
16055 (let* ((range (org-get-property-block beg 'force))
16056 (end (cdr range))
16057 (case-fold-search t))
16058 (goto-char (car range))
16059 (if (re-search-forward (org-re-property property nil t) end t)
16060 (progn (delete-region (match-beginning 0) (match-end 0))
16061 (goto-char (match-beginning 0)))
16062 (goto-char end)
16063 (insert "\n")
16064 (backward-char))
16065 (insert ":" property ":")
16066 (when value (insert " " value))
16067 (org-indent-line)))))
16068 (run-hook-with-args 'org-property-changed-functions property value)))
16070 (defun org-buffer-property-keys (&optional specials defaults columns)
16071 "Get all property keys in the current buffer.
16073 When SPECIALS is non-nil, also list the special properties that
16074 reflect things like tags and TODO state.
16076 When DEFAULTS is non-nil, also include properties that has
16077 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16078 DESCRIPTION, LOCATION, and LOGGING and others.
16080 When COLUMNS in non-nil, also include property names given in
16081 COLUMN formats in the current buffer."
16082 (let ((case-fold-search t)
16083 (props (append
16084 (and specials org-special-properties)
16085 (and defaults (cons org-effort-property org-default-properties))
16086 nil)))
16087 (org-with-wide-buffer
16088 (goto-char (point-min))
16089 (while (re-search-forward org-property-start-re nil t)
16090 (let ((range (org-get-property-block)))
16091 (catch 'skip
16092 (unless range
16093 (when (and (not (org-before-first-heading-p))
16094 (y-or-n-p (format "Malformed drawer at %d, repair?"
16095 (line-beginning-position))))
16096 (org-get-property-block nil t))
16097 (throw 'skip nil))
16098 (goto-char (car range))
16099 (let ((begin (car range))
16100 (end (cdr range)))
16101 ;; Make sure that found property block is not located
16102 ;; before current point, as it would generate an infloop.
16103 ;; It can happen, for example, in the following
16104 ;; situation:
16106 ;; * Headline
16107 ;; :PROPERTIES:
16108 ;; ...
16109 ;; :END:
16110 ;; *************** Inlinetask
16111 ;; #+BEGIN_EXAMPLE
16112 ;; :PROPERTIES:
16113 ;; #+END_EXAMPLE
16115 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16116 (while (< (point) end)
16117 (let ((p (progn (looking-at org-property-re)
16118 (org-match-string-no-properties 2))))
16119 ;; Only add true property name, not extension symbol.
16120 (add-to-list 'props
16121 (if (not (org-string-match-p "\\+\\'" p)) p
16122 (substring p 0 -1))))
16123 (forward-line))))
16124 (outline-next-heading)))
16125 (when columns
16126 (goto-char (point-min))
16127 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16128 (let ((element (org-element-at-point)))
16129 (when (memq (org-element-type element) '(keyword node-property))
16130 (let ((value (org-element-property :value element))
16131 (start 0))
16132 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16133 (setq start (match-end 0))
16134 (let ((p (org-match-string-no-properties 1 value)))
16135 (unless (member-ignore-case p org-special-properties)
16136 (add-to-list 'props p))))))))))
16137 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16139 (defun org-property-values (key)
16140 "List all non-nil values of property KEY in current buffer."
16141 (org-with-wide-buffer
16142 (goto-char (point-min))
16143 (let ((case-fold-search t)
16144 (re (org-re-property key))
16145 values)
16146 (while (re-search-forward re nil t)
16147 (add-to-list 'values (org-entry-get (point) key)))
16148 values)))
16150 (defun org-insert-property-drawer ()
16151 "Insert a property drawer into the current entry."
16152 (org-with-wide-buffer
16153 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16154 (org-back-to-heading t)
16155 (org-with-limited-levels (org-back-to-heading t)))
16156 (forward-line)
16157 (when (org-looking-at-p org-planning-line-re) (forward-line))
16158 (unless (org-looking-at-p org-property-drawer-re)
16159 (let ((inhibit-read-only t))
16160 (unless (bolp) (insert "\n"))
16161 (let ((begin (point)))
16162 (insert ":PROPERTIES:\n:END:\n")
16163 (org-indent-region begin (point)))))))
16165 (defun org-insert-drawer (&optional arg drawer)
16166 "Insert a drawer at point.
16168 When optional argument ARG is non-nil, insert a property drawer.
16170 Optional argument DRAWER, when non-nil, is a string representing
16171 drawer's name. Otherwise, the user is prompted for a name.
16173 If a region is active, insert the drawer around that region
16174 instead.
16176 Point is left between drawer's boundaries."
16177 (interactive "P")
16178 (let* ((drawer (if arg "PROPERTIES"
16179 (or drawer (read-from-minibuffer "Drawer: ")))))
16180 (cond
16181 ;; With C-u, fall back on `org-insert-property-drawer'
16182 (arg (org-insert-property-drawer))
16183 ;; Check validity of suggested drawer's name.
16184 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16185 (user-error "Invalid drawer name"))
16186 ;; With an active region, insert a drawer at point.
16187 ((not (org-region-active-p))
16188 (progn
16189 (unless (bolp) (insert "\n"))
16190 (insert (format ":%s:\n\n:END:\n" drawer))
16191 (forward-line -2)))
16192 ;; Otherwise, insert the drawer at point
16194 (let ((rbeg (region-beginning))
16195 (rend (copy-marker (region-end))))
16196 (unwind-protect
16197 (progn
16198 (goto-char rbeg)
16199 (beginning-of-line)
16200 (when (save-excursion
16201 (re-search-forward org-outline-regexp-bol rend t))
16202 (user-error "Drawers cannot contain headlines"))
16203 ;; Position point at the beginning of the first
16204 ;; non-blank line in region. Insert drawer's opening
16205 ;; there, then indent it.
16206 (org-skip-whitespace)
16207 (beginning-of-line)
16208 (insert ":" drawer ":\n")
16209 (forward-line -1)
16210 (indent-for-tab-command)
16211 ;; Move point to the beginning of the first blank line
16212 ;; after the last non-blank line in region. Insert
16213 ;; drawer's closing, then indent it.
16214 (goto-char rend)
16215 (skip-chars-backward " \r\t\n")
16216 (insert "\n:END:")
16217 (deactivate-mark t)
16218 (indent-for-tab-command)
16219 (unless (eolp) (insert "\n")))
16220 ;; Clear marker, whatever the outcome of insertion is.
16221 (set-marker rend nil)))))))
16223 (defvar org-property-set-functions-alist nil
16224 "Property set function alist.
16225 Each entry should have the following format:
16227 (PROPERTY . READ-FUNCTION)
16229 The read function will be called with the same argument as
16230 `org-completing-read'.")
16232 (defun org-set-property-function (property)
16233 "Get the function that should be used to set PROPERTY.
16234 This is computed according to `org-property-set-functions-alist'."
16235 (or (cdr (assoc property org-property-set-functions-alist))
16236 'org-completing-read))
16238 (defun org-read-property-value (property)
16239 "Read PROPERTY value from user."
16240 (let* ((completion-ignore-case t)
16241 (allowed (org-property-get-allowed-values nil property 'table))
16242 (cur (org-entry-get nil property))
16243 (prompt (concat property " value"
16244 (if (and cur (string-match "\\S-" cur))
16245 (concat " [" cur "]") "") ": "))
16246 (set-function (org-set-property-function property))
16247 (val (if allowed
16248 (funcall set-function prompt allowed nil
16249 (not (get-text-property 0 'org-unrestricted
16250 (caar allowed))))
16251 (let (org-completion-use-ido org-completion-use-iswitchb)
16252 (funcall set-function prompt
16253 (mapcar 'list (org-property-values property))
16254 nil nil "" nil cur)))))
16255 (org-trim val)))
16257 (defvar org-last-set-property nil)
16258 (defvar org-last-set-property-value nil)
16259 (defun org-read-property-name ()
16260 "Read a property name."
16261 (let ((completion-ignore-case t)
16262 (default-prop (or (and (org-at-property-p)
16263 (org-match-string-no-properties 2))
16264 org-last-set-property)))
16265 (org-completing-read
16266 (concat "Property"
16267 (if default-prop (concat " [" default-prop "]") "")
16268 ": ")
16269 (mapcar #'list (org-buffer-property-keys nil t t))
16270 nil nil nil nil default-prop)))
16272 (defun org-set-property-and-value (use-last)
16273 "Allow to set [PROPERTY]: [value] direction from prompt.
16274 When use-default, don't even ask, just use the last
16275 \"[PROPERTY]: [value]\" string from the history."
16276 (interactive "P")
16277 (let* ((completion-ignore-case t)
16278 (pv (or (and use-last org-last-set-property-value)
16279 (org-completing-read
16280 "Enter a \"[Property]: [value]\" pair: "
16281 nil nil nil nil nil
16282 org-last-set-property-value)))
16283 prop val)
16284 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16285 (setq prop (match-string 1 pv)
16286 val (match-string 2 pv))
16287 (org-set-property prop val))))
16289 (defun org-set-property (property value)
16290 "In the current entry, set PROPERTY to VALUE.
16291 When called interactively, this will prompt for a property name, offering
16292 completion on existing and default properties. And then it will prompt
16293 for a value, offering completion either on allowed values (via an inherited
16294 xxx_ALL property) or on existing values in other instances of this property
16295 in the current file."
16296 (interactive (list nil nil))
16297 (let* ((property (or property (org-read-property-name)))
16298 (value (or value (org-read-property-value property)))
16299 (fn (cdr (assoc property org-properties-postprocess-alist))))
16300 (setq org-last-set-property property)
16301 (setq org-last-set-property-value (concat property ": " value))
16302 ;; Possibly postprocess the inserted value:
16303 (when fn (setq value (funcall fn value)))
16304 (unless (equal (org-entry-get nil property) value)
16305 (org-entry-put nil property value))))
16307 (defun org-find-property (property &optional value)
16308 "Find first entry in buffer that sets PROPERTY.
16310 When optional argument VALUE is non-nil, only consider an entry
16311 if it contains PROPERTY set to this value. If PROPERTY should be
16312 explicitly set to nil, use string \"nil\" for VALUE.
16314 Return position where the entry begins, or nil if there is no
16315 such entry. If narrowing is in effect, only search the visible
16316 part of the buffer."
16317 (save-excursion
16318 (goto-char (point-min))
16319 (let ((case-fold-search t)
16320 (re (org-re-property property nil (not value) value)))
16321 (catch 'exit
16322 (while (re-search-forward re nil t)
16323 (when (if value (org-at-property-p)
16324 (org-entry-get (point) property nil t))
16325 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16327 (defun org-delete-property (property)
16328 "In the current entry, delete PROPERTY."
16329 (interactive
16330 (let* ((completion-ignore-case t)
16331 (cat (org-entry-get (point) "CATEGORY"))
16332 (props0 (org-entry-properties nil 'standard))
16333 (props (if cat props0
16334 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16335 (prop (if (< 1 (length props))
16336 (org-icompleting-read "Property: " props nil t)
16337 (caar props))))
16338 (list prop)))
16339 (if (not property)
16340 (message "No property to delete in this entry")
16341 (org-entry-delete nil property)
16342 (message "Property \"%s\" deleted" property)))
16344 (defun org-delete-property-globally (property)
16345 "Remove PROPERTY globally, from all entries.
16346 This function ignores narrowing, if any."
16347 (interactive
16348 (let* ((completion-ignore-case t)
16349 (prop (org-icompleting-read
16350 "Globally remove property: "
16351 (mapcar #'list (org-buffer-property-keys)))))
16352 (list prop)))
16353 (org-with-wide-buffer
16354 (goto-char (point-min))
16355 (let ((count 0)
16356 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16357 (while (re-search-forward re nil t)
16358 (when (org-entry-delete (point) property) (incf count)))
16359 (message "Property \"%s\" removed from %d entries" property count))))
16361 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16363 (defun org-compute-property-at-point ()
16364 "Compute the property at point.
16365 This looks for an enclosing column format, extracts the operator and
16366 then applies it to the property in the column format's scope."
16367 (interactive)
16368 (unless (org-at-property-p)
16369 (user-error "Not at a property"))
16370 (let ((prop (org-match-string-no-properties 2)))
16371 (org-columns-get-format-and-top-level)
16372 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16373 (user-error "No operator defined for property %s" prop))
16374 (org-columns-compute prop)))
16376 (defvar org-property-allowed-value-functions nil
16377 "Hook for functions supplying allowed values for a specific property.
16378 The functions must take a single argument, the name of the property, and
16379 return a flat list of allowed values. If \":ETC\" is one of
16380 the values, this means that these values are intended as defaults for
16381 completion, but that other values should be allowed too.
16382 The functions must return nil if they are not responsible for this
16383 property.")
16385 (defun org-property-get-allowed-values (pom property &optional table)
16386 "Get allowed values for the property PROPERTY.
16387 When TABLE is non-nil, return an alist that can directly be used for
16388 completion."
16389 (let (vals)
16390 (cond
16391 ((equal property "TODO")
16392 (setq vals (org-with-point-at pom
16393 (append org-todo-keywords-1 '("")))))
16394 ((equal property "PRIORITY")
16395 (let ((n org-lowest-priority))
16396 (while (>= n org-highest-priority)
16397 (push (char-to-string n) vals)
16398 (setq n (1- n)))))
16399 ((equal property "CATEGORY"))
16400 ((member property org-special-properties))
16401 ((setq vals (run-hook-with-args-until-success
16402 'org-property-allowed-value-functions property)))
16404 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16405 (when (and vals (string-match "\\S-" vals))
16406 (setq vals (car (read-from-string (concat "(" vals ")"))))
16407 (setq vals (mapcar (lambda (x)
16408 (cond ((stringp x) x)
16409 ((numberp x) (number-to-string x))
16410 ((symbolp x) (symbol-name x))
16411 (t "???")))
16412 vals)))))
16413 (when (member ":ETC" vals)
16414 (setq vals (remove ":ETC" vals))
16415 (org-add-props (car vals) '(org-unrestricted t)))
16416 (if table (mapcar 'list vals) vals)))
16418 (defun org-property-previous-allowed-value (&optional previous)
16419 "Switch to the next allowed value for this property."
16420 (interactive)
16421 (org-property-next-allowed-value t))
16423 (defun org-property-next-allowed-value (&optional previous)
16424 "Switch to the next allowed value for this property."
16425 (interactive)
16426 (unless (org-at-property-p)
16427 (user-error "Not at a property"))
16428 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16429 (key (match-string 2))
16430 (value (match-string 3))
16431 (allowed (or (org-property-get-allowed-values (point) key)
16432 (and (member value '("[ ]" "[-]" "[X]"))
16433 '("[ ]" "[X]"))))
16434 (heading (save-match-data (nth 4 (org-heading-components))))
16435 nval)
16436 (unless allowed
16437 (user-error "Allowed values for this property have not been defined"))
16438 (if previous (setq allowed (reverse allowed)))
16439 (if (member value allowed)
16440 (setq nval (car (cdr (member value allowed)))))
16441 (setq nval (or nval (car allowed)))
16442 (if (equal nval value)
16443 (user-error "Only one allowed value for this property"))
16444 (org-at-property-p)
16445 (replace-match (concat " :" key ": " nval) t t)
16446 (org-indent-line)
16447 (beginning-of-line 1)
16448 (skip-chars-forward " \t")
16449 (when (equal prop org-effort-property)
16450 (org-refresh-property
16451 '((effort . identity)
16452 (effort-minutes . org-duration-string-to-minutes))
16453 nval)
16454 (when (string= org-clock-current-task heading)
16455 (setq org-clock-effort nval)
16456 (org-clock-update-mode-line)))
16457 (run-hook-with-args 'org-property-changed-functions key nval)))
16459 (defun org-find-olp (path &optional this-buffer)
16460 "Return a marker pointing to the entry at outline path OLP.
16461 If anything goes wrong, throw an error.
16462 You can wrap this call to catch the error like this:
16464 (condition-case msg
16465 (org-mobile-locate-entry (match-string 4))
16466 (error (nth 1 msg)))
16468 The return value will then be either a string with the error message,
16469 or a marker if everything is OK.
16471 If THIS-BUFFER is set, the outline path does not contain a file,
16472 only headings."
16473 (let* ((file (if this-buffer buffer-file-name (pop path)))
16474 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16475 (level 1)
16476 (lmin 1)
16477 (lmax 1)
16478 limit re end found pos heading cnt flevel)
16479 (unless buffer (error "File not found :%s" file))
16480 (with-current-buffer buffer
16481 (save-excursion
16482 (save-restriction
16483 (widen)
16484 (setq limit (point-max))
16485 (goto-char (point-min))
16486 (while (setq heading (pop path))
16487 (setq re (format org-complex-heading-regexp-format
16488 (regexp-quote heading)))
16489 (setq cnt 0 pos (point))
16490 (while (re-search-forward re end t)
16491 (setq level (- (match-end 1) (match-beginning 1)))
16492 (if (and (>= level lmin) (<= level lmax))
16493 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16494 (when (= cnt 0) (error "Heading not found on level %d: %s"
16495 lmax heading))
16496 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16497 lmax heading))
16498 (goto-char found)
16499 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16500 (setq end (save-excursion (org-end-of-subtree t t))))
16501 (when (org-at-heading-p)
16502 (point-marker)))))))
16504 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16505 "Find node HEADING in BUFFER.
16506 Return a marker to the heading if it was found, or nil if not.
16507 If POS-ONLY is set, return just the position instead of a marker.
16509 The heading text must match exact, but it may have a TODO keyword,
16510 a priority cookie and tags in the standard locations."
16511 (with-current-buffer (or buffer (current-buffer))
16512 (save-excursion
16513 (save-restriction
16514 (widen)
16515 (goto-char (point-min))
16516 (let (case-fold-search)
16517 (if (re-search-forward
16518 (format org-complex-heading-regexp-format
16519 (regexp-quote heading)) nil t)
16520 (if pos-only
16521 (match-beginning 0)
16522 (move-marker (make-marker) (match-beginning 0)))))))))
16524 (defun org-find-exact-heading-in-directory (heading &optional dir)
16525 "Find Org node headline HEADING in all .org files in directory DIR.
16526 When the target headline is found, return a marker to this location."
16527 (let ((files (directory-files (or dir default-directory)
16528 t "\\`[^.#].*\\.org\\'"))
16529 file visiting m buffer)
16530 (catch 'found
16531 (while (setq file (pop files))
16532 (message "trying %s" file)
16533 (setq visiting (org-find-base-buffer-visiting file))
16534 (setq buffer (or visiting (find-file-noselect file)))
16535 (setq m (org-find-exact-headline-in-buffer
16536 heading buffer))
16537 (when (and (not m) (not visiting)) (kill-buffer buffer))
16538 (and m (throw 'found m))))))
16540 (defun org-find-entry-with-id (ident)
16541 "Locate the entry that contains the ID property with exact value IDENT.
16542 IDENT can be a string, a symbol or a number, this function will search for
16543 the string representation of it.
16544 Return the position where this entry starts, or nil if there is no such entry."
16545 (interactive "sID: ")
16546 (let ((id (cond
16547 ((stringp ident) ident)
16548 ((symbolp ident) (symbol-name ident))
16549 ((numberp ident) (number-to-string ident))
16550 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16551 (org-with-wide-buffer (org-find-property "ID" id))))
16553 ;;;; Timestamps
16555 (defvar org-last-changed-timestamp nil)
16556 (defvar org-last-inserted-timestamp nil
16557 "The last time stamp inserted with `org-insert-time-stamp'.")
16558 (defvar org-ts-what) ; dynamically scoped parameter
16560 (defun org-time-stamp (arg &optional inactive)
16561 "Prompt for a date/time and insert a time stamp.
16563 If the user specifies a time like HH:MM or if this command is
16564 called with at least one prefix argument, the time stamp contains
16565 the date and the time. Otherwise, only the date is included.
16567 All parts of a date not specified by the user are filled in from
16568 the timestamp at point, if any, or the current date/time
16569 otherwise.
16571 If there is already a timestamp at the cursor, it is replaced.
16573 With two universal prefix arguments, insert an active timestamp
16574 with the current time without prompting the user.
16576 When called from lisp, the timestamp is inactive if INACTIVE is
16577 non-nil."
16578 (interactive "P")
16579 (let* ((ts
16580 (cond ((org-at-date-range-p t)
16581 (save-excursion
16582 (goto-char (match-beginning 0))
16583 (looking-at (if inactive org-ts-regexp-both org-ts-regexp)))
16584 (match-string 0))
16585 ((org-at-timestamp-p t) (match-string 0))))
16586 ;; Default time is either the timestamp at point or today.
16587 ;; When entering a range, only the range start is considered.
16588 (default-time (if (not ts) (current-time)
16589 (apply #'encode-time (org-parse-time-string ts))))
16590 (default-input (and ts (org-get-compact-tod ts)))
16591 (repeater (and ts
16592 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16593 (match-string 0 ts)))
16594 org-time-was-given
16595 org-end-time-was-given
16596 (time
16597 (and (if (equal arg '(16)) (current-time)
16598 ;; Preserve `this-command' and `last-command'.
16599 (let ((this-command this-command)
16600 (last-command last-command))
16601 (org-read-date
16602 arg 'totime nil nil default-time default-input
16603 inactive))))))
16604 (cond
16605 ((and ts
16606 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16607 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16608 (insert "--")
16609 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16611 ;; Make sure we're on a timestamp. When in the middle of a date
16612 ;; range, move arbitrarily to range end.
16613 (unless (org-at-timestamp-p t)
16614 (skip-chars-forward "-")
16615 (org-at-timestamp-p t))
16616 (replace-match "")
16617 (setq org-last-changed-timestamp
16618 (org-insert-time-stamp
16619 time (or org-time-was-given arg)
16620 inactive nil nil (list org-end-time-was-given)))
16621 (when repeater
16622 (backward-char)
16623 (insert " " repeater)
16624 (setq org-last-changed-timestamp
16625 (concat (substring org-last-inserted-timestamp 0 -1)
16626 " " repeater ">")))
16627 (message "Timestamp updated"))
16628 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16629 (t (org-insert-time-stamp
16630 time (or org-time-was-given arg) inactive nil nil
16631 (list org-end-time-was-given))))))
16633 ;; FIXME: can we use this for something else, like computing time differences?
16634 (defun org-get-compact-tod (s)
16635 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16636 (let* ((t1 (match-string 1 s))
16637 (h1 (string-to-number (match-string 2 s)))
16638 (m1 (string-to-number (match-string 3 s)))
16639 (t2 (and (match-end 4) (match-string 5 s)))
16640 (h2 (and t2 (string-to-number (match-string 6 s))))
16641 (m2 (and t2 (string-to-number (match-string 7 s))))
16642 dh dm)
16643 (if (not t2)
16645 (setq dh (- h2 h1) dm (- m2 m1))
16646 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16647 (concat t1 "+" (number-to-string dh)
16648 (and (/= 0 dm) (format ":%02d" dm)))))))
16650 (defun org-time-stamp-inactive (&optional arg)
16651 "Insert an inactive time stamp.
16652 An inactive time stamp is enclosed in square brackets instead of angle
16653 brackets. It is inactive in the sense that it does not trigger agenda entries,
16654 does not link to the calendar and cannot be changed with the S-cursor keys.
16655 So these are more for recording a certain time/date."
16656 (interactive "P")
16657 (org-time-stamp arg 'inactive))
16659 (defvar org-date-ovl (make-overlay 1 1))
16660 (overlay-put org-date-ovl 'face 'org-date-selected)
16661 (org-detach-overlay org-date-ovl)
16663 (defvar org-ans1) ; dynamically scoped parameter
16664 (defvar org-ans2) ; dynamically scoped parameter
16666 (defvar org-plain-time-of-day-regexp) ; defined below
16668 (defvar org-overriding-default-time nil) ; dynamically scoped
16669 (defvar org-read-date-overlay nil)
16670 (defvar org-dcst nil) ; dynamically scoped
16671 (defvar org-read-date-history nil)
16672 (defvar org-read-date-final-answer nil)
16673 (defvar org-read-date-analyze-futurep nil)
16674 (defvar org-read-date-analyze-forced-year nil)
16675 (defvar org-read-date-inactive)
16677 (defvar org-read-date-minibuffer-local-map
16678 (let* ((map (make-sparse-keymap)))
16679 (set-keymap-parent map minibuffer-local-map)
16680 (org-defkey map (kbd ".")
16681 (lambda () (interactive)
16682 ;; Are we at the beginning of the prompt?
16683 (if (looking-back "^[^:]+: ")
16684 (org-eval-in-calendar '(calendar-goto-today))
16685 (insert "."))))
16686 (org-defkey map (kbd "C-.")
16687 (lambda () (interactive)
16688 (org-eval-in-calendar '(calendar-goto-today))))
16689 (org-defkey map [(meta shift left)]
16690 (lambda () (interactive)
16691 (org-eval-in-calendar '(calendar-backward-month 1))))
16692 (org-defkey map [(meta shift right)]
16693 (lambda () (interactive)
16694 (org-eval-in-calendar '(calendar-forward-month 1))))
16695 (org-defkey map [(meta shift up)]
16696 (lambda () (interactive)
16697 (org-eval-in-calendar '(calendar-backward-year 1))))
16698 (org-defkey map [(meta shift down)]
16699 (lambda () (interactive)
16700 (org-eval-in-calendar '(calendar-forward-year 1))))
16701 (org-defkey map [?\e (shift left)]
16702 (lambda () (interactive)
16703 (org-eval-in-calendar '(calendar-backward-month 1))))
16704 (org-defkey map [?\e (shift right)]
16705 (lambda () (interactive)
16706 (org-eval-in-calendar '(calendar-forward-month 1))))
16707 (org-defkey map [?\e (shift up)]
16708 (lambda () (interactive)
16709 (org-eval-in-calendar '(calendar-backward-year 1))))
16710 (org-defkey map [?\e (shift down)]
16711 (lambda () (interactive)
16712 (org-eval-in-calendar '(calendar-forward-year 1))))
16713 (org-defkey map [(shift up)]
16714 (lambda () (interactive)
16715 (org-eval-in-calendar '(calendar-backward-week 1))))
16716 (org-defkey map [(shift down)]
16717 (lambda () (interactive)
16718 (org-eval-in-calendar '(calendar-forward-week 1))))
16719 (org-defkey map [(shift left)]
16720 (lambda () (interactive)
16721 (org-eval-in-calendar '(calendar-backward-day 1))))
16722 (org-defkey map [(shift right)]
16723 (lambda () (interactive)
16724 (org-eval-in-calendar '(calendar-forward-day 1))))
16725 (org-defkey map "!"
16726 (lambda () (interactive)
16727 (org-eval-in-calendar '(diary-view-entries))
16728 (message "")))
16729 (org-defkey map ">"
16730 (lambda () (interactive)
16731 (org-eval-in-calendar '(calendar-scroll-left 1))))
16732 (org-defkey map "<"
16733 (lambda () (interactive)
16734 (org-eval-in-calendar '(calendar-scroll-right 1))))
16735 (org-defkey map "\C-v"
16736 (lambda () (interactive)
16737 (org-eval-in-calendar
16738 '(calendar-scroll-left-three-months 1))))
16739 (org-defkey map "\M-v"
16740 (lambda () (interactive)
16741 (org-eval-in-calendar
16742 '(calendar-scroll-right-three-months 1))))
16743 map)
16744 "Keymap for minibuffer commands when using `org-read-date'.")
16746 (defvar org-def)
16747 (defvar org-defdecode)
16748 (defvar org-with-time)
16750 (defun org-read-date (&optional org-with-time to-time from-string prompt
16751 default-time default-input inactive)
16752 "Read a date, possibly a time, and make things smooth for the user.
16753 The prompt will suggest to enter an ISO date, but you can also enter anything
16754 which will at least partially be understood by `parse-time-string'.
16755 Unrecognized parts of the date will default to the current day, month, year,
16756 hour and minute. If this command is called to replace a timestamp at point,
16757 or to enter the second timestamp of a range, the default time is taken
16758 from the existing stamp. Furthermore, the command prefers the future,
16759 so if you are giving a date where the year is not given, and the day-month
16760 combination is already past in the current year, it will assume you
16761 mean next year. For details, see the manual. A few examples:
16763 3-2-5 --> 2003-02-05
16764 feb 15 --> currentyear-02-15
16765 2/15 --> currentyear-02-15
16766 sep 12 9 --> 2009-09-12
16767 12:45 --> today 12:45
16768 22 sept 0:34 --> currentyear-09-22 0:34
16769 12 --> currentyear-currentmonth-12
16770 Fri --> nearest Friday after today
16771 -Tue --> last Tuesday
16772 etc.
16774 Furthermore you can specify a relative date by giving, as the *first* thing
16775 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16776 change in days weeks, months, years.
16777 With a single plus or minus, the date is relative to today. With a double
16778 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16779 +4d --> four days from today
16780 +4 --> same as above
16781 +2w --> two weeks from today
16782 ++5 --> five days from default date
16784 The function understands only English month and weekday abbreviations.
16786 While prompting, a calendar is popped up - you can also select the
16787 date with the mouse (button 1). The calendar shows a period of three
16788 months. To scroll it to other months, use the keys `>' and `<'.
16789 If you don't like the calendar, turn it off with
16790 \(setq org-read-date-popup-calendar nil)
16792 With optional argument TO-TIME, the date will immediately be converted
16793 to an internal time.
16794 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16795 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16796 still enter a time, and this function will inform the calling routine
16797 about this change. The calling routine may then choose to change the
16798 format used to insert the time stamp into the buffer to include the time.
16799 With optional argument FROM-STRING, read from this string instead from
16800 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16801 the time/date that is used for everything that is not specified by the
16802 user."
16803 (require 'parse-time)
16804 (let* ((org-time-stamp-rounding-minutes
16805 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16806 (org-dcst org-display-custom-times)
16807 (ct (org-current-time))
16808 (org-def (or org-overriding-default-time default-time ct))
16809 (org-defdecode (decode-time org-def))
16810 (dummy (progn
16811 (when (< (nth 2 org-defdecode) org-extend-today-until)
16812 (setcar (nthcdr 2 org-defdecode) -1)
16813 (setcar (nthcdr 1 org-defdecode) 59)
16814 (setq org-def (apply 'encode-time org-defdecode)
16815 org-defdecode (decode-time org-def)))))
16816 (cur-frame (selected-frame))
16817 (mouse-autoselect-window nil) ; Don't let the mouse jump
16818 (calendar-frame-setup nil)
16819 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16820 (calendar-move-hook nil)
16821 (calendar-view-diary-initially-flag nil)
16822 (calendar-view-holidays-initially-flag nil)
16823 (timestr (format-time-string
16824 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16825 (prompt (concat (if prompt (concat prompt " ") "")
16826 (format "Date+time [%s]: " timestr)))
16827 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16829 (cond
16830 (from-string (setq ans from-string))
16831 (org-read-date-popup-calendar
16832 (save-excursion
16833 (save-window-excursion
16834 (calendar)
16835 (when (eq calendar-setup 'calendar-only)
16836 (setq cal-frame
16837 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16838 (select-frame cal-frame))
16839 (org-eval-in-calendar '(setq cursor-type nil) t)
16840 (unwind-protect
16841 (progn
16842 (calendar-forward-day (- (time-to-days org-def)
16843 (calendar-absolute-from-gregorian
16844 (calendar-current-date))))
16845 (org-eval-in-calendar nil t)
16846 (let* ((old-map (current-local-map))
16847 (map (copy-keymap calendar-mode-map))
16848 (minibuffer-local-map
16849 (copy-keymap org-read-date-minibuffer-local-map)))
16850 (org-defkey map (kbd "RET") 'org-calendar-select)
16851 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16852 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16853 (unwind-protect
16854 (progn
16855 (use-local-map map)
16856 (setq org-read-date-inactive inactive)
16857 (add-hook 'post-command-hook 'org-read-date-display)
16858 (setq org-ans0 (read-string prompt default-input
16859 'org-read-date-history nil))
16860 ;; org-ans0: from prompt
16861 ;; org-ans1: from mouse click
16862 ;; org-ans2: from calendar motion
16863 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16864 (remove-hook 'post-command-hook 'org-read-date-display)
16865 (use-local-map old-map)
16866 (when org-read-date-overlay
16867 (delete-overlay org-read-date-overlay)
16868 (setq org-read-date-overlay nil)))))
16869 (bury-buffer "*Calendar*")
16870 (when cal-frame
16871 (delete-frame cal-frame)
16872 (select-frame-set-input-focus cur-frame))))))
16874 (t ; Naked prompt only
16875 (unwind-protect
16876 (setq ans (read-string prompt default-input
16877 'org-read-date-history timestr))
16878 (when org-read-date-overlay
16879 (delete-overlay org-read-date-overlay)
16880 (setq org-read-date-overlay nil)))))
16882 (setq final (org-read-date-analyze ans org-def org-defdecode))
16884 (when org-read-date-analyze-forced-year
16885 (message "Year was forced into %s"
16886 (if org-read-date-force-compatible-dates
16887 "compatible range (1970-2037)"
16888 "range representable on this machine"))
16889 (ding))
16891 ;; One round trip to get rid of 34th of August and stuff like that....
16892 (setq final (decode-time (apply 'encode-time final)))
16894 (setq org-read-date-final-answer ans)
16896 (if to-time
16897 (apply 'encode-time final)
16898 (if (and (boundp 'org-time-was-given) org-time-was-given)
16899 (format "%04d-%02d-%02d %02d:%02d"
16900 (nth 5 final) (nth 4 final) (nth 3 final)
16901 (nth 2 final) (nth 1 final))
16902 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16904 (defun org-read-date-display ()
16905 "Display the current date prompt interpretation in the minibuffer."
16906 (when org-read-date-display-live
16907 (when org-read-date-overlay
16908 (delete-overlay org-read-date-overlay))
16909 (when (minibufferp (current-buffer))
16910 (save-excursion
16911 (end-of-line 1)
16912 (while (not (equal (buffer-substring
16913 (max (point-min) (- (point) 4)) (point))
16914 " "))
16915 (insert " ")))
16916 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16917 " " (or org-ans1 org-ans2)))
16918 (org-end-time-was-given nil)
16919 (f (org-read-date-analyze ans org-def org-defdecode))
16920 (fmts (if org-dcst
16921 org-time-stamp-custom-formats
16922 org-time-stamp-formats))
16923 (fmt (if (or org-with-time
16924 (and (boundp 'org-time-was-given) org-time-was-given))
16925 (cdr fmts)
16926 (car fmts)))
16927 (txt (format-time-string fmt (apply 'encode-time f)))
16928 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16929 (txt (concat "=> " txt)))
16930 (when (and org-end-time-was-given
16931 (string-match org-plain-time-of-day-regexp txt))
16932 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16933 org-end-time-was-given
16934 (substring txt (match-end 0)))))
16935 (when org-read-date-analyze-futurep
16936 (setq txt (concat txt " (=>F)")))
16937 (setq org-read-date-overlay
16938 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16939 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16941 (defun org-read-date-analyze (ans org-def org-defdecode)
16942 "Analyze the combined answer of the date prompt."
16943 ;; FIXME: cleanup and comment
16944 (let ((nowdecode (decode-time (current-time)))
16945 delta deltan deltaw deltadef year month day
16946 hour minute second wday pm h2 m2 tl wday1
16947 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16948 (setq org-read-date-analyze-futurep nil
16949 org-read-date-analyze-forced-year nil)
16950 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16951 (setq ans "+0"))
16953 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16954 (setq ans (replace-match "" t t ans)
16955 deltan (car delta)
16956 deltaw (nth 1 delta)
16957 deltadef (nth 2 delta)))
16959 ;; Check if there is an iso week date in there. If yes, store the
16960 ;; info and postpone interpreting it until the rest of the parsing
16961 ;; is done.
16962 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16963 (setq iso-year (if (match-end 1)
16964 (org-small-year-to-year
16965 (string-to-number (match-string 1 ans))))
16966 iso-weekday (if (match-end 3)
16967 (string-to-number (match-string 3 ans)))
16968 iso-week (string-to-number (match-string 2 ans)))
16969 (setq ans (replace-match "" t t ans)))
16971 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16972 (when (string-match
16973 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16974 (setq year (if (match-end 2)
16975 (string-to-number (match-string 2 ans))
16976 (progn (setq kill-year t)
16977 (string-to-number (format-time-string "%Y"))))
16978 month (string-to-number (match-string 3 ans))
16979 day (string-to-number (match-string 4 ans)))
16980 (if (< year 100) (setq year (+ 2000 year)))
16981 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16982 t nil ans)))
16984 ;; Help matching dotted european dates
16985 (when (string-match
16986 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16987 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16988 (setq kill-year t)
16989 (string-to-number (format-time-string "%Y")))
16990 day (string-to-number (match-string 1 ans))
16991 month (string-to-number (match-string 2 ans))
16992 ans (replace-match (format "%04d-%02d-%02d" year month day)
16993 t nil ans)))
16995 ;; Help matching american dates, like 5/30 or 5/30/7
16996 (when (string-match
16997 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16998 (setq year (if (match-end 4)
16999 (string-to-number (match-string 4 ans))
17000 (progn (setq kill-year t)
17001 (string-to-number (format-time-string "%Y"))))
17002 month (string-to-number (match-string 1 ans))
17003 day (string-to-number (match-string 2 ans)))
17004 (if (< year 100) (setq year (+ 2000 year)))
17005 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17006 t nil ans)))
17007 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17008 ;; If there is a time with am/pm, and *no* time without it, we convert
17009 ;; so that matching will be successful.
17010 (loop for i from 1 to 2 do ; twice, for end time as well
17011 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17012 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17013 (setq hour (string-to-number (match-string 1 ans))
17014 minute (if (match-end 3)
17015 (string-to-number (match-string 3 ans))
17017 pm (equal ?p
17018 (string-to-char (downcase (match-string 4 ans)))))
17019 (if (and (= hour 12) (not pm))
17020 (setq hour 0)
17021 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17022 (setq ans (replace-match (format "%02d:%02d" hour minute)
17023 t t ans))))
17025 ;; Check if a time range is given as a duration
17026 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17027 (setq hour (string-to-number (match-string 1 ans))
17028 h2 (+ hour (string-to-number (match-string 3 ans)))
17029 minute (string-to-number (match-string 2 ans))
17030 m2 (+ minute (if (match-end 5) (string-to-number
17031 (match-string 5 ans))0)))
17032 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17033 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17034 t t ans)))
17036 ;; Check if there is a time range
17037 (when (boundp 'org-end-time-was-given)
17038 (setq org-time-was-given nil)
17039 (when (and (string-match org-plain-time-of-day-regexp ans)
17040 (match-end 8))
17041 (setq org-end-time-was-given (match-string 8 ans))
17042 (setq ans (concat (substring ans 0 (match-beginning 7))
17043 (substring ans (match-end 7))))))
17045 (setq tl (parse-time-string ans)
17046 day (or (nth 3 tl) (nth 3 org-defdecode))
17047 month
17048 (cond ((nth 4 tl))
17049 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17050 ;; Day was specified. Make sure DAY+MONTH
17051 ;; combination happens in the future.
17052 ((nth 3 tl)
17053 (setq futurep t)
17054 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17055 (nth 4 nowdecode)))
17056 (t (nth 4 org-defdecode)))
17057 year
17058 (cond ((and (not kill-year) (nth 5 tl)))
17059 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17060 ;; Month was guessed in the future and is at least
17061 ;; equal to NOWDECODE's. Fix year accordingly.
17062 (futurep
17063 (if (or (> month (nth 4 nowdecode))
17064 (>= day (nth 3 nowdecode)))
17065 (nth 5 nowdecode)
17066 (1+ (nth 5 nowdecode))))
17067 ;; Month was specified. Make sure MONTH+YEAR
17068 ;; combination happens in the future.
17069 ((nth 4 tl)
17070 (setq futurep t)
17071 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17072 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17073 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17074 (t (nth 5 nowdecode))))
17075 (t (nth 5 org-defdecode)))
17076 hour (or (nth 2 tl) (nth 2 org-defdecode))
17077 minute (or (nth 1 tl) (nth 1 org-defdecode))
17078 second (or (nth 0 tl) 0)
17079 wday (nth 6 tl))
17081 (when (and (eq org-read-date-prefer-future 'time)
17082 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17083 (equal day (nth 3 nowdecode))
17084 (equal month (nth 4 nowdecode))
17085 (equal year (nth 5 nowdecode))
17086 (nth 2 tl)
17087 (or (< (nth 2 tl) (nth 2 nowdecode))
17088 (and (= (nth 2 tl) (nth 2 nowdecode))
17089 (nth 1 tl)
17090 (< (nth 1 tl) (nth 1 nowdecode)))))
17091 (setq day (1+ day)
17092 futurep t))
17094 ;; Special date definitions below
17095 (cond
17096 (iso-week
17097 ;; There was an iso week
17098 (require 'cal-iso)
17099 (setq futurep nil)
17100 (setq year (or iso-year year)
17101 day (or iso-weekday wday 1)
17102 wday nil ; to make sure that the trigger below does not match
17103 iso-date (calendar-gregorian-from-absolute
17104 (calendar-iso-to-absolute
17105 (list iso-week day year))))
17106 ; FIXME: Should we also push ISO weeks into the future?
17107 ; (when (and org-read-date-prefer-future
17108 ; (not iso-year)
17109 ; (< (calendar-absolute-from-gregorian iso-date)
17110 ; (time-to-days (current-time))))
17111 ; (setq year (1+ year)
17112 ; iso-date (calendar-gregorian-from-absolute
17113 ; (calendar-iso-to-absolute
17114 ; (list iso-week day year)))))
17115 (setq month (car iso-date)
17116 year (nth 2 iso-date)
17117 day (nth 1 iso-date)))
17118 (deltan
17119 (setq futurep nil)
17120 (unless deltadef
17121 (let ((now (decode-time (current-time))))
17122 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17123 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17124 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17125 ((equal deltaw "m") (setq month (+ month deltan)))
17126 ((equal deltaw "y") (setq year (+ year deltan)))))
17127 ((and wday (not (nth 3 tl)))
17128 ;; Weekday was given, but no day, so pick that day in the week
17129 ;; on or after the derived date.
17130 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17131 (unless (equal wday wday1)
17132 (setq day (+ day (% (- wday wday1 -7) 7))))))
17133 (if (and (boundp 'org-time-was-given)
17134 (nth 2 tl))
17135 (setq org-time-was-given t))
17136 (if (< year 100) (setq year (+ 2000 year)))
17137 ;; Check of the date is representable
17138 (if org-read-date-force-compatible-dates
17139 (progn
17140 (if (< year 1970)
17141 (setq year 1970 org-read-date-analyze-forced-year t))
17142 (if (> year 2037)
17143 (setq year 2037 org-read-date-analyze-forced-year t)))
17144 (condition-case nil
17145 (ignore (encode-time second minute hour day month year))
17146 (error
17147 (setq year (nth 5 org-defdecode))
17148 (setq org-read-date-analyze-forced-year t))))
17149 (setq org-read-date-analyze-futurep futurep)
17150 (list second minute hour day month year)))
17152 (defvar parse-time-weekdays)
17153 (defun org-read-date-get-relative (s today default)
17154 "Check string S for special relative date string.
17155 TODAY and DEFAULT are internal times, for today and for a default.
17156 Return shift list (N what def-flag)
17157 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17158 N is the number of WHATs to shift.
17159 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17160 the DEFAULT date rather than TODAY."
17161 (require 'parse-time)
17162 (when (and
17163 (string-match
17164 (concat
17165 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17166 "\\([0-9]+\\)?"
17167 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17168 "\\([ \t]\\|$\\)") s)
17169 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17170 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17171 (string-to-char (substring (match-string 1 s) -1))
17172 ?+))
17173 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17174 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17175 (what (if (match-end 3) (match-string 3 s) "d"))
17176 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17177 (date (if rel default today))
17178 (wday (nth 6 (decode-time date)))
17179 delta)
17180 (if wday1
17181 (progn
17182 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17183 (if (= delta 0) (setq delta 7))
17184 (if (= dir ?-)
17185 (progn
17186 (setq delta (- delta 7))
17187 (if (= delta 0) (setq delta -7))))
17188 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17189 (list delta "d" rel))
17190 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17192 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17193 "Turn a user-specified date into the internal representation.
17194 The internal representation needed by the calendar is (month day year).
17195 This is a wrapper to handle the brain-dead convention in calendar that
17196 user function argument order change dependent on argument order."
17197 (if (boundp 'calendar-date-style)
17198 (cond
17199 ((eq calendar-date-style 'american)
17200 (list arg1 arg2 arg3))
17201 ((eq calendar-date-style 'european)
17202 (list arg2 arg1 arg3))
17203 ((eq calendar-date-style 'iso)
17204 (list arg2 arg3 arg1)))
17205 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17206 (if (org-bound-and-true-p european-calendar-style)
17207 (list arg2 arg1 arg3)
17208 (list arg1 arg2 arg3)))))
17210 (defun org-eval-in-calendar (form &optional keepdate)
17211 "Eval FORM in the calendar window and return to current window.
17212 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17213 otherwise stick to the current value of `org-ans2'."
17214 (let ((sf (selected-frame))
17215 (sw (selected-window)))
17216 (select-window (get-buffer-window "*Calendar*" t))
17217 (eval form)
17218 (when (and (not keepdate) (calendar-cursor-to-date))
17219 (let* ((date (calendar-cursor-to-date))
17220 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17221 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17222 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17223 (select-window sw)
17224 (org-select-frame-set-input-focus sf)))
17226 (defun org-calendar-select ()
17227 "Return to `org-read-date' with the date currently selected.
17228 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17229 (interactive)
17230 (when (calendar-cursor-to-date)
17231 (let* ((date (calendar-cursor-to-date))
17232 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17233 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17234 (if (active-minibuffer-window) (exit-minibuffer))))
17236 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17237 "Insert a date stamp for the date given by the internal TIME.
17238 See `format-time-string' for the format of TIME.
17239 WITH-HM means use the stamp format that includes the time of the day.
17240 INACTIVE means use square brackets instead of angular ones, so that the
17241 stamp will not contribute to the agenda.
17242 PRE and POST are optional strings to be inserted before and after the
17243 stamp.
17244 The command returns the inserted time stamp."
17245 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17246 stamp)
17247 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17248 (insert-before-markers (or pre ""))
17249 (when (listp extra)
17250 (setq extra (car extra))
17251 (if (and (stringp extra)
17252 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17253 (setq extra (format "-%02d:%02d"
17254 (string-to-number (match-string 1 extra))
17255 (string-to-number (match-string 2 extra))))
17256 (setq extra nil)))
17257 (when extra
17258 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17259 (insert-before-markers (setq stamp (format-time-string fmt time)))
17260 (insert-before-markers (or post ""))
17261 (setq org-last-inserted-timestamp stamp)))
17263 (defun org-toggle-time-stamp-overlays ()
17264 "Toggle the use of custom time stamp formats."
17265 (interactive)
17266 (setq org-display-custom-times (not org-display-custom-times))
17267 (unless org-display-custom-times
17268 (let ((p (point-min)) (bmp (buffer-modified-p)))
17269 (while (setq p (next-single-property-change p 'display))
17270 (if (and (get-text-property p 'display)
17271 (eq (get-text-property p 'face) 'org-date))
17272 (remove-text-properties
17273 p (setq p (next-single-property-change p 'display))
17274 '(display t))))
17275 (set-buffer-modified-p bmp)))
17276 (if (featurep 'xemacs)
17277 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17278 (org-restart-font-lock)
17279 (setq org-table-may-need-update t)
17280 (if org-display-custom-times
17281 (message "Time stamps are overlaid with custom format")
17282 (message "Time stamp overlays removed")))
17284 (defun org-display-custom-time (beg end)
17285 "Overlay modified time stamp format over timestamp between BEG and END."
17286 (let* ((ts (buffer-substring beg end))
17287 t1 w1 with-hm tf time str w2 (off 0))
17288 (save-match-data
17289 (setq t1 (org-parse-time-string ts t))
17290 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17291 (setq off (- (match-end 0) (match-beginning 0)))))
17292 (setq end (- end off))
17293 (setq w1 (- end beg)
17294 with-hm (and (nth 1 t1) (nth 2 t1))
17295 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17296 time (org-fix-decoded-time t1)
17297 str (org-add-props
17298 (format-time-string
17299 (substring tf 1 -1) (apply 'encode-time time))
17300 nil 'mouse-face 'highlight)
17301 w2 (length str))
17302 (if (not (= w2 w1))
17303 (add-text-properties (1+ beg) (+ 2 beg)
17304 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17305 (if (featurep 'xemacs)
17306 (progn
17307 (put-text-property beg end 'invisible t)
17308 (put-text-property beg end 'end-glyph (make-glyph str)))
17309 (put-text-property beg end 'display str))))
17311 (defun org-fix-decoded-time (time)
17312 "Set 0 instead of nil for the first 6 elements of time.
17313 Don't touch the rest."
17314 (let ((n 0))
17315 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17317 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17319 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17320 "Difference between TIMESTAMP-STRING and now in days.
17321 If SECONDS is non-nil, return the difference in seconds."
17322 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17323 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17324 (funcall fdiff (current-time)))))
17326 (defun org-deadline-close (timestamp-string &optional ndays)
17327 "Is the time in TIMESTAMP-STRING close to the current date?"
17328 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17329 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17330 (not (org-entry-is-done-p))))
17332 (defun org-get-wdays (ts &optional delay zero-delay)
17333 "Get the deadline lead time appropriate for timestring TS.
17334 When DELAY is non-nil, get the delay time for scheduled items
17335 instead of the deadline lead time. When ZERO-DELAY is non-nil
17336 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17337 don't try to find the delay cookie in the scheduled timestamp."
17338 (let ((tv (if delay org-scheduled-delay-days
17339 org-deadline-warning-days)))
17340 (cond
17341 ((or (and delay (< tv 0))
17342 (and delay zero-delay (<= tv 0))
17343 (and (not delay) (<= tv 0)))
17344 ;; Enforce this value no matter what
17345 (- tv))
17346 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17347 ;; lead time is specified.
17348 (floor (* (string-to-number (match-string 1 ts))
17349 (cdr (assoc (match-string 2 ts)
17350 '(("d" . 1) ("w" . 7)
17351 ("m" . 30.4) ("y" . 365.25)
17352 ("h" . 0.041667)))))))
17353 ;; go for the default.
17354 (t tv))))
17356 (defun org-calendar-select-mouse (ev)
17357 "Return to `org-read-date' with the date currently selected.
17358 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17359 (interactive "e")
17360 (mouse-set-point ev)
17361 (when (calendar-cursor-to-date)
17362 (let* ((date (calendar-cursor-to-date))
17363 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17364 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17365 (if (active-minibuffer-window) (exit-minibuffer))))
17367 (defun org-check-deadlines (ndays)
17368 "Check if there are any deadlines due or past due.
17369 A deadline is considered due if it happens within `org-deadline-warning-days'
17370 days from today's date. If the deadline appears in an entry marked DONE,
17371 it is not shown. The prefix arg NDAYS can be used to test that many
17372 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17373 (interactive "P")
17374 (let* ((org-warn-days
17375 (cond
17376 ((equal ndays '(4)) 100000)
17377 (ndays (prefix-numeric-value ndays))
17378 (t (abs org-deadline-warning-days))))
17379 (case-fold-search nil)
17380 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17381 (callback
17382 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17384 (message "%d deadlines past-due or due within %d days"
17385 (org-occur regexp nil callback)
17386 org-warn-days)))
17388 (defsubst org-re-timestamp (type)
17389 "Return a regexp for timestamp TYPE.
17390 Allowed values for TYPE are:
17392 all: all timestamps
17393 active: only active timestamps (<...>)
17394 inactive: only inactive timestamps ([...])
17395 scheduled: only scheduled timestamps
17396 deadline: only deadline timestamps
17397 closed: only closed time-stamps
17399 When TYPE is nil, fall back on returning a regexp that matches
17400 both scheduled and deadline timestamps."
17401 (case type
17402 (all org-ts-regexp-both)
17403 (active org-ts-regexp)
17404 (inactive org-ts-regexp-inactive)
17405 (scheduled org-scheduled-time-regexp)
17406 (deadline org-deadline-time-regexp)
17407 (closed org-closed-time-regexp)
17408 (otherwise
17409 (concat "\\<"
17410 (regexp-opt (list org-deadline-string org-scheduled-string))
17411 " *<\\([^>]+\\)>"))))
17413 (defun org-check-before-date (date)
17414 "Check if there are deadlines or scheduled entries before DATE."
17415 (interactive (list (org-read-date)))
17416 (let ((case-fold-search nil)
17417 (regexp (org-re-timestamp org-ts-type))
17418 (callback
17419 `(lambda ()
17420 (and ,(if (memq org-ts-type '(active inactive all))
17421 '(eq (org-element-type (org-element-context) 'timestamp))
17422 '(org-at-planning-p))
17423 (time-less-p
17424 (org-time-string-to-time (match-string 1))
17425 (org-time-string-to-time date))))))
17426 (message "%d entries before %s"
17427 (org-occur regexp nil callback) date)))
17429 (defun org-check-after-date (date)
17430 "Check if there are deadlines or scheduled entries after DATE."
17431 (interactive (list (org-read-date)))
17432 (let ((case-fold-search nil)
17433 (regexp (org-re-timestamp org-ts-type))
17434 (callback
17435 `(lambda ()
17436 (and ,(if (memq org-ts-type '(active inactive all))
17437 '(eq (org-element-type (org-element-context) 'timestamp))
17438 '(org-at-planning-p))
17439 (not (time-less-p
17440 (org-time-string-to-time (match-string 1))
17441 (org-time-string-to-time date)))))))
17442 (message "%d entries after %s"
17443 (org-occur regexp nil callback) date)))
17445 (defun org-check-dates-range (start-date end-date)
17446 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17447 (interactive (list (org-read-date nil nil nil "Range starts")
17448 (org-read-date nil nil nil "Range end")))
17449 (let ((case-fold-search nil)
17450 (regexp (org-re-timestamp org-ts-type))
17451 (callback
17452 `(lambda ()
17453 (let ((match (match-string 1)))
17454 (and
17455 ,(if (memq org-ts-type '(active inactive all))
17456 '(eq (org-element-type (org-element-context) 'timestamp))
17457 '(org-at-planning-p))
17458 (not (time-less-p
17459 (org-time-string-to-time match)
17460 (org-time-string-to-time start-date)))
17461 (time-less-p
17462 (org-time-string-to-time match)
17463 (org-time-string-to-time end-date)))))))
17464 (message "%d entries between %s and %s"
17465 (org-occur regexp nil callback) start-date end-date)))
17467 (defun org-evaluate-time-range (&optional to-buffer)
17468 "Evaluate a time range by computing the difference between start and end.
17469 Normally the result is just printed in the echo area, but with prefix arg
17470 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17471 If the time range is actually in a table, the result is inserted into the
17472 next column.
17473 For time difference computation, a year is assumed to be exactly 365
17474 days in order to avoid rounding problems."
17475 (interactive "P")
17477 (org-clock-update-time-maybe)
17478 (save-excursion
17479 (unless (org-at-date-range-p t)
17480 (goto-char (point-at-bol))
17481 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17482 (if (not (org-at-date-range-p t))
17483 (user-error "Not at a time-stamp range, and none found in current line")))
17484 (let* ((ts1 (match-string 1))
17485 (ts2 (match-string 2))
17486 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17487 (match-end (match-end 0))
17488 (time1 (org-time-string-to-time ts1))
17489 (time2 (org-time-string-to-time ts2))
17490 (t1 (org-float-time time1))
17491 (t2 (org-float-time time2))
17492 (diff (abs (- t2 t1)))
17493 (negative (< (- t2 t1) 0))
17494 ;; (ys (floor (* 365 24 60 60)))
17495 (ds (* 24 60 60))
17496 (hs (* 60 60))
17497 (fy "%dy %dd %02d:%02d")
17498 (fy1 "%dy %dd")
17499 (fd "%dd %02d:%02d")
17500 (fd1 "%dd")
17501 (fh "%02d:%02d")
17502 y d h m align)
17503 (if havetime
17504 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17506 d (floor (/ diff ds)) diff (mod diff ds)
17507 h (floor (/ diff hs)) diff (mod diff hs)
17508 m (floor (/ diff 60)))
17509 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17511 d (floor (+ (/ diff ds) 0.5))
17512 h 0 m 0))
17513 (if (not to-buffer)
17514 (message "%s" (org-make-tdiff-string y d h m))
17515 (if (org-at-table-p)
17516 (progn
17517 (goto-char match-end)
17518 (setq align t)
17519 (and (looking-at " *|") (goto-char (match-end 0))))
17520 (goto-char match-end))
17521 (if (looking-at
17522 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17523 (replace-match ""))
17524 (if negative (insert " -"))
17525 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17526 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17527 (insert " " (format fh h m))))
17528 (if align (org-table-align))
17529 (message "Time difference inserted")))))
17531 (defun org-make-tdiff-string (y d h m)
17532 (let ((fmt "")
17533 (l nil))
17534 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17535 l (push y l)))
17536 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17537 l (push d l)))
17538 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17539 l (push h l)))
17540 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17541 l (push m l)))
17542 (apply 'format fmt (nreverse l))))
17544 (defun org-time-string-to-time (s &optional buffer pos)
17545 "Convert a timestamp string into internal time."
17546 (condition-case errdata
17547 (apply 'encode-time (org-parse-time-string s))
17548 (error (error "Bad timestamp `%s'%s\nError was: %s"
17549 s (if (not (and buffer pos))
17551 (format " at %d in buffer `%s'" pos buffer))
17552 (cdr errdata)))))
17554 (defun org-time-string-to-seconds (s)
17555 "Convert a timestamp string to a number of seconds."
17556 (org-float-time (org-time-string-to-time s)))
17558 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17559 "Convert a time stamp to an absolute day number.
17560 If there is a specifier for a cyclic time stamp, get the closest
17561 date to DAYNR.
17562 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17563 The variable `date' is bound by the calendar when this is called."
17564 (cond
17565 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17566 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17567 daynr
17568 (+ daynr 1000)))
17569 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17570 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17571 (time-to-days (current-time))) (match-string 0 s)
17572 prefer show-all))
17573 (t (time-to-days
17574 (condition-case errdata
17575 (apply 'encode-time (org-parse-time-string s))
17576 (error (error "Bad timestamp `%s'%s\nError was: %s"
17577 s (if (not (and buffer pos))
17579 (format " at %d in buffer `%s'" pos buffer))
17580 (cdr errdata))))))))
17582 (defun org-days-to-iso-week (days)
17583 "Return the iso week number."
17584 (require 'cal-iso)
17585 (car (calendar-iso-from-absolute days)))
17587 (defun org-small-year-to-year (year)
17588 "Convert 2-digit years into 4-digit years.
17589 YEAR is expanded into one of the 30 next years, if possible, or
17590 into a past one. Any year larger than 99 is returned unchanged."
17591 (if (>= year 100) year
17592 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17593 (century (/ current 100))
17594 (offset (- year (% current 100))))
17595 (cond ((> offset 30) (+ (* (1- century) 100) year))
17596 ((> offset -70) (+ (* century 100) year))
17597 (t (+ (* (1+ century) 100) year))))))
17599 (defun org-time-from-absolute (d)
17600 "Return the time corresponding to date D.
17601 D may be an absolute day number, or a calendar-type list (month day year)."
17602 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17603 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17605 (defun org-calendar-holiday ()
17606 "List of holidays, for Diary display in Org-mode."
17607 (require 'holidays)
17608 (let ((hl (funcall
17609 (if (fboundp 'calendar-check-holidays)
17610 'calendar-check-holidays 'check-calendar-holidays) date)))
17611 (if hl (mapconcat 'identity hl "; "))))
17613 (defun org-diary-sexp-entry (sexp entry date)
17614 "Process a SEXP diary ENTRY for DATE."
17615 (require 'diary-lib)
17616 (let ((result (if calendar-debug-sexp
17617 (let ((stack-trace-on-error t))
17618 (eval (car (read-from-string sexp))))
17619 (condition-case nil
17620 (eval (car (read-from-string sexp)))
17621 (error
17622 (beep)
17623 (message "Bad sexp at line %d in %s: %s"
17624 (org-current-line)
17625 (buffer-file-name) sexp)
17626 (sleep-for 2))))))
17627 (cond ((stringp result) (split-string result "; "))
17628 ((and (consp result)
17629 (not (consp (cdr result)))
17630 (stringp (cdr result))) (cdr result))
17631 ((and (consp result)
17632 (stringp (car result))) result)
17633 (result entry))))
17635 (defun org-diary-to-ical-string (frombuf)
17636 "Get iCalendar entries from diary entries in buffer FROMBUF.
17637 This uses the icalendar.el library."
17638 (let* ((tmpdir (if (featurep 'xemacs)
17639 (temp-directory)
17640 temporary-file-directory))
17641 (tmpfile (make-temp-name
17642 (expand-file-name "orgics" tmpdir)))
17643 buf rtn b e)
17644 (with-current-buffer frombuf
17645 (icalendar-export-region (point-min) (point-max) tmpfile)
17646 (setq buf (find-buffer-visiting tmpfile))
17647 (set-buffer buf)
17648 (goto-char (point-min))
17649 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17650 (setq b (match-beginning 0)))
17651 (goto-char (point-max))
17652 (if (re-search-backward "^END:VEVENT" nil t)
17653 (setq e (match-end 0)))
17654 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17655 (kill-buffer buf)
17656 (delete-file tmpfile)
17657 rtn))
17659 (defun org-closest-date (start current change prefer show-all)
17660 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17661 When PREFER is `past', return a date that is either CURRENT or past.
17662 When PREFER is `future', return a date that is either CURRENT or future.
17663 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17664 ;; Make the proper lists from the dates
17665 (catch 'exit
17666 (let ((a1 '(("h" . hour)
17667 ("d" . day)
17668 ("w" . week)
17669 ("m" . month)
17670 ("y" . year)))
17671 (shour (nth 2 (org-parse-time-string start)))
17672 dn dw sday cday n1 n2 n0
17673 d m y y1 y2 date1 date2 nmonths nm ny m2)
17675 (setq start (org-date-to-gregorian start)
17676 current (org-date-to-gregorian
17677 (if show-all
17678 current
17679 (time-to-days (current-time))))
17680 sday (calendar-absolute-from-gregorian start)
17681 cday (calendar-absolute-from-gregorian current))
17683 (if (<= cday sday) (throw 'exit sday))
17685 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17686 (setq dn (string-to-number (match-string 1 change))
17687 dw (cdr (assoc (match-string 2 change) a1)))
17688 (user-error "Invalid change specifier: %s" change))
17689 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17690 (cond
17691 ((eq dw 'hour)
17692 (let ((missing-hours
17693 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17694 dn)))
17695 (setq n1 (if (zerop missing-hours) cday
17696 (- cday (1+ (floor (/ missing-hours 24)))))
17697 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17698 ((eq dw 'day)
17699 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17700 n2 (+ n1 dn)))
17701 ((eq dw 'year)
17702 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17703 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17704 (setq date1 (list m d y1)
17705 n1 (calendar-absolute-from-gregorian date1)
17706 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17707 n2 (calendar-absolute-from-gregorian date2)))
17708 ((eq dw 'month)
17709 ;; approx number of month between the two dates
17710 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17711 ;; How often does dn fit in there?
17712 (setq d (nth 1 start) m (car start) y (nth 2 start)
17713 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17714 m (+ m nm)
17715 ny (floor (/ m 12))
17716 y (+ y ny)
17717 m (- m (* ny 12)))
17718 (while (> m 12) (setq m (- m 12) y (1+ y)))
17719 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17720 (setq m2 (+ m dn) y2 y)
17721 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17722 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17723 (while (<= n2 cday)
17724 (setq n1 n2 m m2 y y2)
17725 (setq m2 (+ m dn) y2 y)
17726 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17727 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17728 ;; Make sure n1 is the earlier date
17729 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17730 (if show-all
17731 (cond
17732 ((eq prefer 'past) (if (= cday n2) n2 n1))
17733 ((eq prefer 'future) (if (= cday n1) n1 n2))
17734 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17735 (cond
17736 ((eq prefer 'past) (if (= cday n2) n2 n1))
17737 ((eq prefer 'future) (if (= cday n1) n1 n2))
17738 (t (if (= cday n1) n1 n2)))))))
17740 (defun org-date-to-gregorian (date)
17741 "Turn any specification of DATE into a Gregorian date for the calendar."
17742 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17743 ((and (listp date) (= (length date) 3)) date)
17744 ((stringp date)
17745 (setq date (org-parse-time-string date))
17746 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17747 ((listp date)
17748 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17750 (defun org-parse-time-string (s &optional nodefault)
17751 "Parse the standard Org-mode time string.
17752 This should be a lot faster than the normal `parse-time-string'.
17753 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17754 hour and minute fields will be nil if not given."
17755 (cond ((string-match org-ts-regexp0 s)
17756 (list 0
17757 (if (or (match-beginning 8) (not nodefault))
17758 (string-to-number (or (match-string 8 s) "0")))
17759 (if (or (match-beginning 7) (not nodefault))
17760 (string-to-number (or (match-string 7 s) "0")))
17761 (string-to-number (match-string 4 s))
17762 (string-to-number (match-string 3 s))
17763 (string-to-number (match-string 2 s))
17764 nil nil nil))
17765 ((string-match "^<[^>]+>$" s)
17766 (decode-time (seconds-to-time (org-matcher-time s))))
17767 (t (error "Not a standard Org-mode time string: %s" s))))
17769 (defun org-timestamp-up (&optional arg)
17770 "Increase the date item at the cursor by one.
17771 If the cursor is on the year, change the year. If it is on the month,
17772 the day or the time, change that.
17773 With prefix ARG, change by that many units."
17774 (interactive "p")
17775 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17777 (defun org-timestamp-down (&optional arg)
17778 "Decrease the date item at the cursor by one.
17779 If the cursor is on the year, change the year. If it is on the month,
17780 the day or the time, change that.
17781 With prefix ARG, change by that many units."
17782 (interactive "p")
17783 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17785 (defun org-timestamp-up-day (&optional arg)
17786 "Increase the date in the time stamp by one day.
17787 With prefix ARG, change that many days."
17788 (interactive "p")
17789 (if (and (not (org-at-timestamp-p t))
17790 (org-at-heading-p))
17791 (org-todo 'up)
17792 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17794 (defun org-timestamp-down-day (&optional arg)
17795 "Decrease the date in the time stamp by one day.
17796 With prefix ARG, change that many days."
17797 (interactive "p")
17798 (if (and (not (org-at-timestamp-p t))
17799 (org-at-heading-p))
17800 (org-todo 'down)
17801 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17803 (defun org-at-timestamp-p (&optional inactive-ok)
17804 "Determine if the cursor is in or at a timestamp."
17805 (interactive)
17806 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17807 (pos (point))
17808 (ans (or (looking-at tsr)
17809 (save-excursion
17810 (skip-chars-backward "^[<\n\r\t")
17811 (if (> (point) (point-min)) (backward-char 1))
17812 (and (looking-at tsr)
17813 (> (- (match-end 0) pos) -1))))))
17814 (and ans
17815 (boundp 'org-ts-what)
17816 (setq org-ts-what
17817 (cond
17818 ((= pos (match-beginning 0)) 'bracket)
17819 ;; Point is considered to be "on the bracket" whether
17820 ;; it's really on it or right after it.
17821 ((= pos (1- (match-end 0))) 'bracket)
17822 ((= pos (match-end 0)) 'after)
17823 ((org-pos-in-match-range pos 2) 'year)
17824 ((org-pos-in-match-range pos 3) 'month)
17825 ((org-pos-in-match-range pos 7) 'hour)
17826 ((org-pos-in-match-range pos 8) 'minute)
17827 ((or (org-pos-in-match-range pos 4)
17828 (org-pos-in-match-range pos 5)) 'day)
17829 ((and (> pos (or (match-end 8) (match-end 5)))
17830 (< pos (match-end 0)))
17831 (- pos (or (match-end 8) (match-end 5))))
17832 (t 'day))))
17833 ans))
17835 (defun org-toggle-timestamp-type ()
17836 "Toggle the type (<active> or [inactive]) of a time stamp."
17837 (interactive)
17838 (when (org-at-timestamp-p t)
17839 (let ((beg (match-beginning 0)) (end (match-end 0))
17840 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17841 (save-excursion
17842 (goto-char beg)
17843 (while (re-search-forward "[][<>]" end t)
17844 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17845 t t)))
17846 (message "Timestamp is now %sactive"
17847 (if (equal (char-after beg) ?<) "" "in")))))
17849 (defun org-at-clock-log-p nil
17850 "Is the cursor on the clock log line?"
17851 (save-excursion
17852 (move-beginning-of-line 1)
17853 (looking-at org-clock-line-re)))
17855 (defvar org-clock-history) ; defined in org-clock.el
17856 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17857 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17858 "Change the date in the time stamp at point.
17859 The date will be changed by N times WHAT. WHAT can be `day', `month',
17860 `year', `minute', `second'. If WHAT is not given, the cursor position
17861 in the timestamp determines what will be changed.
17862 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17863 (let ((origin (point)) origin-cat
17864 with-hm inactive
17865 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17866 org-ts-what
17867 extra rem
17868 ts time time0 fixnext clrgx)
17869 (if (not (org-at-timestamp-p t))
17870 (user-error "Not at a timestamp"))
17871 (if (and (not what) (eq org-ts-what 'bracket))
17872 (org-toggle-timestamp-type)
17873 ;; Point isn't on brackets. Remember the part of the time-stamp
17874 ;; the point was in. Indeed, size of time-stamps may change,
17875 ;; but point must be kept in the same category nonetheless.
17876 (setq origin-cat org-ts-what)
17877 (if (and (not what) (not (eq org-ts-what 'day))
17878 org-display-custom-times
17879 (get-text-property (point) 'display)
17880 (not (get-text-property (1- (point)) 'display)))
17881 (setq org-ts-what 'day))
17882 (setq org-ts-what (or what org-ts-what)
17883 inactive (= (char-after (match-beginning 0)) ?\[)
17884 ts (match-string 0))
17885 (replace-match "")
17886 (when (string-match
17887 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17889 (setq extra (match-string 1 ts))
17890 (if suppress-tmp-delay
17891 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17892 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17893 (setq with-hm t))
17894 (setq time0 (org-parse-time-string ts))
17895 (when (and updown
17896 (eq org-ts-what 'minute)
17897 (not current-prefix-arg))
17898 ;; This looks like s-up and s-down. Change by one rounding step.
17899 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17900 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17901 (setcar (cdr time0) (+ (nth 1 time0)
17902 (if (> n 0) (- rem) (- dm rem))))))
17903 (setq time
17904 (encode-time (or (car time0) 0)
17905 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17906 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17907 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17908 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17909 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17910 (nthcdr 6 time0)))
17911 (when (and (member org-ts-what '(hour minute))
17912 extra
17913 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17914 (setq extra (org-modify-ts-extra
17915 extra
17916 (if (eq org-ts-what 'hour) 2 5)
17917 n dm)))
17918 (when (integerp org-ts-what)
17919 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17920 (if (eq what 'calendar)
17921 (let ((cal-date (org-get-date-from-calendar)))
17922 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17923 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17924 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17925 (setcar time0 (or (car time0) 0))
17926 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17927 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17928 (setq time (apply 'encode-time time0))))
17929 ;; Insert the new time-stamp, and ensure point stays in the same
17930 ;; category as before (i.e. not after the last position in that
17931 ;; category).
17932 (let ((pos (point)))
17933 ;; Stay before inserted string. `save-excursion' is of no use.
17934 (setq org-last-changed-timestamp
17935 (org-insert-time-stamp time with-hm inactive nil nil extra))
17936 (goto-char pos))
17937 (save-match-data
17938 (looking-at org-ts-regexp3)
17939 (goto-char (cond
17940 ;; `day' category ends before `hour' if any, or at
17941 ;; the end of the day name.
17942 ((eq origin-cat 'day)
17943 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17944 ((eq origin-cat 'hour) (min (match-end 7) origin))
17945 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17946 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17947 ;; `year' and `month' have both fixed size: point
17948 ;; couldn't have moved into another part.
17949 (t origin))))
17950 ;; Update clock if on a CLOCK line.
17951 (org-clock-update-time-maybe)
17952 ;; Maybe adjust the closest clock in `org-clock-history'
17953 (when org-clock-adjust-closest
17954 (if (not (and (org-at-clock-log-p)
17955 (< 1 (length (delq nil (mapcar 'marker-position
17956 org-clock-history))))))
17957 (message "No clock to adjust")
17958 (cond ((save-excursion ; fix previous clock?
17959 (re-search-backward org-ts-regexp0 nil t)
17960 (org-looking-back (concat org-clock-string " \\[")))
17961 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17962 ((save-excursion ; fix next clock?
17963 (re-search-backward org-ts-regexp0 nil t)
17964 (looking-at (concat org-ts-regexp0 "\\] =>")))
17965 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17966 (save-window-excursion
17967 ;; Find closest clock to point, adjust the previous/next one in history
17968 (let* ((p (save-excursion (org-back-to-heading t)))
17969 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17970 (clfixnth
17971 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17972 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17973 (if (not clfixpos)
17974 (message "No clock to adjust")
17975 (save-excursion
17976 (org-goto-marker-or-bmk clfixpos)
17977 (org-show-subtree)
17978 (when (re-search-forward clrgx nil t)
17979 (goto-char (match-beginning 1))
17980 (let (org-clock-adjust-closest)
17981 (org-timestamp-change n org-ts-what updown))
17982 (message "Clock adjusted in %s for heading: %s"
17983 (file-name-nondirectory (buffer-file-name))
17984 (org-get-heading t t)))))))))
17985 ;; Try to recenter the calendar window, if any.
17986 (if (and org-calendar-follow-timestamp-change
17987 (get-buffer-window "*Calendar*" t)
17988 (memq org-ts-what '(day month year)))
17989 (org-recenter-calendar (time-to-days time))))))
17991 (defun org-modify-ts-extra (s pos n dm)
17992 "Change the different parts of the lead-time and repeat fields in timestamp."
17993 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17994 ng h m new rem)
17995 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17996 (cond
17997 ((or (org-pos-in-match-range pos 2)
17998 (org-pos-in-match-range pos 3))
17999 (setq m (string-to-number (match-string 3 s))
18000 h (string-to-number (match-string 2 s)))
18001 (if (org-pos-in-match-range pos 2)
18002 (setq h (+ h n))
18003 (setq n (* dm (org-no-warnings (signum n))))
18004 (when (not (= 0 (setq rem (% m dm))))
18005 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18006 (setq m (+ m n)))
18007 (if (< m 0) (setq m (+ m 60) h (1- h)))
18008 (if (> m 59) (setq m (- m 60) h (1+ h)))
18009 (setq h (min 24 (max 0 h)))
18010 (setq ng 1 new (format "-%02d:%02d" h m)))
18011 ((org-pos-in-match-range pos 6)
18012 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18013 ((org-pos-in-match-range pos 5)
18014 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18016 ((org-pos-in-match-range pos 9)
18017 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18018 ((org-pos-in-match-range pos 8)
18019 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18021 (when ng
18022 (setq s (concat
18023 (substring s 0 (match-beginning ng))
18025 (substring s (match-end ng))))))
18028 (defun org-recenter-calendar (date)
18029 "If the calendar is visible, recenter it to DATE."
18030 (let ((cwin (get-buffer-window "*Calendar*" t)))
18031 (when cwin
18032 (let ((calendar-move-hook nil))
18033 (with-selected-window cwin
18034 (calendar-goto-date (if (listp date) date
18035 (calendar-gregorian-from-absolute date))))))))
18037 (defun org-goto-calendar (&optional arg)
18038 "Go to the Emacs calendar at the current date.
18039 If there is a time stamp in the current line, go to that date.
18040 A prefix ARG can be used to force the current date."
18041 (interactive "P")
18042 (let ((tsr org-ts-regexp) diff
18043 (calendar-move-hook nil)
18044 (calendar-view-holidays-initially-flag nil)
18045 (calendar-view-diary-initially-flag nil))
18046 (if (or (org-at-timestamp-p)
18047 (save-excursion
18048 (beginning-of-line 1)
18049 (looking-at (concat ".*" tsr))))
18050 (let ((d1 (time-to-days (current-time)))
18051 (d2 (time-to-days
18052 (org-time-string-to-time (match-string 1)))))
18053 (setq diff (- d2 d1))))
18054 (calendar)
18055 (calendar-goto-today)
18056 (if (and diff (not arg)) (calendar-forward-day diff))))
18058 (defun org-get-date-from-calendar ()
18059 "Return a list (month day year) of date at point in calendar."
18060 (with-current-buffer "*Calendar*"
18061 (save-match-data
18062 (calendar-cursor-to-date))))
18064 (defun org-date-from-calendar ()
18065 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18066 If there is already a time stamp at the cursor position, update it."
18067 (interactive)
18068 (if (org-at-timestamp-p t)
18069 (org-timestamp-change 0 'calendar)
18070 (let ((cal-date (org-get-date-from-calendar)))
18071 (org-insert-time-stamp
18072 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18074 (defcustom org-effort-durations
18075 `(("min" . 1)
18076 ("h" . 60)
18077 ("d" . ,(* 60 8))
18078 ("w" . ,(* 60 8 5))
18079 ("m" . ,(* 60 8 5 4))
18080 ("y" . ,(* 60 8 5 40)))
18081 "Conversion factor to minutes for an effort modifier.
18083 Each entry has the form (MODIFIER . MINUTES).
18085 In an effort string, a number followed by MODIFIER is multiplied
18086 by the specified number of MINUTES to obtain an effort in
18087 minutes.
18089 For example, if the value of this variable is ((\"hours\" . 60)), then an
18090 effort string \"2hours\" is equivalent to 120 minutes."
18091 :group 'org-agenda
18092 :version "25.1"
18093 :package-version '(Org . "8.3")
18094 :type '(alist :key-type (string :tag "Modifier")
18095 :value-type (number :tag "Minutes")))
18097 (defun org-minutes-to-clocksum-string (m)
18098 "Format number of minutes as a clocksum string.
18099 The format is determined by `org-time-clocksum-format',
18100 `org-time-clocksum-use-fractional' and
18101 `org-time-clocksum-fractional-format' and
18102 `org-time-clocksum-use-effort-durations'."
18103 (let ((clocksum "")
18104 (m (round m)) ; Don't allow fractions of minutes
18105 h d w mo y fmt n)
18106 (setq h (if org-time-clocksum-use-effort-durations
18107 (cdr (assoc "h" org-effort-durations)) 60)
18108 d (if org-time-clocksum-use-effort-durations
18109 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18110 w (if org-time-clocksum-use-effort-durations
18111 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18112 mo (if org-time-clocksum-use-effort-durations
18113 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18114 y (if org-time-clocksum-use-effort-durations
18115 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18116 ;; fractional format
18117 (if org-time-clocksum-use-fractional
18118 (cond
18119 ;; single format string
18120 ((stringp org-time-clocksum-fractional-format)
18121 (format org-time-clocksum-fractional-format (/ m (float h))))
18122 ;; choice of fractional formats for different time units
18123 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18124 (> (/ (truncate m) (* y d h)) 0))
18125 (format fmt (/ m (* y d (float h)))))
18126 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18127 (> (/ (truncate m) (* mo d h)) 0))
18128 (format fmt (/ m (* mo d (float h)))))
18129 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18130 (> (/ (truncate m) (* w d h)) 0))
18131 (format fmt (/ m (* w d (float h)))))
18132 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18133 (> (/ (truncate m) (* d h)) 0))
18134 (format fmt (/ m (* d (float h)))))
18135 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18136 (> (/ (truncate m) h) 0))
18137 (format fmt (/ m (float h))))
18138 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18139 (format fmt m))
18140 ;; fall back to smallest time unit with a format
18141 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18142 (format fmt (/ m (float h))))
18143 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18144 (format fmt (/ m (* d (float h)))))
18145 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18146 (format fmt (/ m (* w d (float h)))))
18147 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18148 (format fmt (/ m (* mo d (float h)))))
18149 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18150 (format fmt (/ m (* y d (float h))))))
18151 ;; standard (non-fractional) format, with single format string
18152 (if (stringp org-time-clocksum-format)
18153 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18154 ;; separate formats components
18155 (and (setq fmt (plist-get org-time-clocksum-format :years))
18156 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18157 (plist-get org-time-clocksum-format :require-years))
18158 (setq clocksum (concat clocksum (format fmt n))
18159 m (- m (* n y d h))))
18160 (and (setq fmt (plist-get org-time-clocksum-format :months))
18161 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18162 (plist-get org-time-clocksum-format :require-months))
18163 (setq clocksum (concat clocksum (format fmt n))
18164 m (- m (* n mo d h))))
18165 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18166 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18167 (plist-get org-time-clocksum-format :require-weeks))
18168 (setq clocksum (concat clocksum (format fmt n))
18169 m (- m (* n w d h))))
18170 (and (setq fmt (plist-get org-time-clocksum-format :days))
18171 (or (> (setq n (/ (truncate m) (* d h))) 0)
18172 (plist-get org-time-clocksum-format :require-days))
18173 (setq clocksum (concat clocksum (format fmt n))
18174 m (- m (* n d h))))
18175 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18176 (or (> (setq n (/ (truncate m) h)) 0)
18177 (plist-get org-time-clocksum-format :require-hours))
18178 (setq clocksum (concat clocksum (format fmt n))
18179 m (- m (* n h))))
18180 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18181 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18182 (setq clocksum (concat clocksum (format fmt m))))
18183 ;; return formatted time duration
18184 clocksum))))
18186 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18187 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18188 "Org mode version 8.0")
18190 (defun org-hours-to-clocksum-string (n)
18191 (org-minutes-to-clocksum-string (* n 60)))
18193 (defun org-hh:mm-string-to-minutes (s)
18194 "Convert a string H:MM to a number of minutes.
18195 If the string is just a number, interpret it as minutes.
18196 In fact, the first hh:mm or number in the string will be taken,
18197 there can be extra stuff in the string.
18198 If no number is found, the return value is 0."
18199 (cond
18200 ((integerp s) s)
18201 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18202 (+ (* (string-to-number (match-string 1 s)) 60)
18203 (string-to-number (match-string 2 s))))
18204 ((string-match "\\([0-9]+\\)" s)
18205 (string-to-number (match-string 1 s)))
18206 (t 0)))
18208 (defcustom org-image-actual-width t
18209 "Should we use the actual width of images when inlining them?
18211 When set to `t', always use the image width.
18213 When set to a number, use imagemagick (when available) to set
18214 the image's width to this value.
18216 When set to a number in a list, try to get the width from any
18217 #+ATTR.* keyword if it matches a width specification like
18219 #+ATTR_HTML: :width 300px
18221 and fall back on that number if none is found.
18223 When set to nil, try to get the width from an #+ATTR.* keyword
18224 and fall back on the original width if none is found.
18226 This requires Emacs >= 24.1, build with imagemagick support."
18227 :group 'org-appearance
18228 :version "24.4"
18229 :package-version '(Org . "8.0")
18230 :type '(choice
18231 (const :tag "Use the image width" t)
18232 (integer :tag "Use a number of pixels")
18233 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18234 (const :tag "Use #+ATTR* or don't resize" nil)))
18236 (defcustom org-agenda-inhibit-startup nil
18237 "Inhibit startup when preparing agenda buffers.
18238 When this variable is `t', the initialization of the Org agenda
18239 buffers is inhibited: e.g. the visibility state is not set, the
18240 tables are not re-aligned, etc."
18241 :type 'boolean
18242 :version "24.3"
18243 :group 'org-agenda)
18245 (define-obsolete-variable-alias
18246 'org-agenda-ignore-drawer-properties
18247 'org-agenda-ignore-properties "25.1")
18249 (defcustom org-agenda-ignore-properties nil
18250 "Avoid updating text properties when building the agenda.
18251 Properties are used to prepare buffers for effort estimates,
18252 appointments, statistics and subtree-local categories.
18253 If you don't use these in the agenda, you can add them to this
18254 list and agenda building will be a bit faster.
18255 The value is a list, with zero or more of the symbols `effort', `appt',
18256 `stats' or `category'."
18257 :type '(set :greedy t
18258 (const effort)
18259 (const appt)
18260 (const stats)
18261 (const category))
18262 :version "25.1"
18263 :package-version '(Org . "8.3")
18264 :group 'org-agenda)
18266 (defun org-duration-string-to-minutes (s &optional output-to-string)
18267 "Convert a duration string S to minutes.
18269 A bare number is interpreted as minutes, modifiers can be set by
18270 customizing `org-effort-durations' (which see).
18272 Entries containing a colon are interpreted as H:MM by
18273 `org-hh:mm-string-to-minutes'."
18274 (let ((result 0)
18275 (re (concat "\\([0-9.]+\\) *\\("
18276 (regexp-opt (mapcar 'car org-effort-durations))
18277 "\\)")))
18278 (while (string-match re s)
18279 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18280 (string-to-number (match-string 1 s))))
18281 (setq s (replace-match "" nil t s)))
18282 (setq result (floor result))
18283 (incf result (org-hh:mm-string-to-minutes s))
18284 (if output-to-string (number-to-string result) result)))
18286 ;;;; Files
18288 (defun org-save-all-org-buffers ()
18289 "Save all Org-mode buffers without user confirmation."
18290 (interactive)
18291 (message "Saving all Org-mode buffers...")
18292 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18293 (when (featurep 'org-id) (org-id-locations-save))
18294 (message "Saving all Org-mode buffers... done"))
18296 (defun org-revert-all-org-buffers ()
18297 "Revert all Org-mode buffers.
18298 Prompt for confirmation when there are unsaved changes.
18299 Be sure you know what you are doing before letting this function
18300 overwrite your changes.
18302 This function is useful in a setup where one tracks org files
18303 with a version control system, to revert on one machine after pulling
18304 changes from another. I believe the procedure must be like this:
18306 1. M-x org-save-all-org-buffers
18307 2. Pull changes from the other machine, resolve conflicts
18308 3. M-x org-revert-all-org-buffers"
18309 (interactive)
18310 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18311 (user-error "Abort"))
18312 (save-excursion
18313 (save-window-excursion
18314 (mapc
18315 (lambda (b)
18316 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18317 (with-current-buffer b buffer-file-name))
18318 (org-pop-to-buffer-same-window b)
18319 (revert-buffer t 'no-confirm)))
18320 (buffer-list))
18321 (when (and (featurep 'org-id) org-id-track-globally)
18322 (org-id-locations-load)))))
18324 ;;;; Agenda files
18326 ;;;###autoload
18327 (defun org-switchb (&optional arg)
18328 "Switch between Org buffers.
18329 With one prefix argument, restrict available buffers to files.
18330 With two prefix arguments, restrict available buffers to agenda files.
18332 Defaults to `iswitchb' for buffer name completion.
18333 Set `org-completion-use-ido' to make it use ido instead."
18334 (interactive "P")
18335 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18336 ((equal arg '(16)) (org-buffer-list 'agenda))
18337 (t (org-buffer-list))))
18338 (org-completion-use-iswitchb org-completion-use-iswitchb)
18339 (org-completion-use-ido org-completion-use-ido))
18340 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18341 (setq org-completion-use-iswitchb t))
18342 (org-pop-to-buffer-same-window
18343 (org-icompleting-read "Org buffer: "
18344 (mapcar 'list (mapcar 'buffer-name blist))
18345 nil t))))
18347 ;;; Define some older names previously used for this functionality
18348 ;;;###autoload
18349 (defalias 'org-ido-switchb 'org-switchb)
18350 ;;;###autoload
18351 (defalias 'org-iswitchb 'org-switchb)
18353 (defun org-buffer-list (&optional predicate exclude-tmp)
18354 "Return a list of Org buffers.
18355 PREDICATE can be `export', `files' or `agenda'.
18357 export restrict the list to Export buffers.
18358 files restrict the list to buffers visiting Org files.
18359 agenda restrict the list to buffers visiting agenda files.
18361 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18362 (let* ((bfn nil)
18363 (agenda-files (and (eq predicate 'agenda)
18364 (mapcar 'file-truename (org-agenda-files t))))
18365 (filter
18366 (cond
18367 ((eq predicate 'files)
18368 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18369 ((eq predicate 'export)
18370 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18371 ((eq predicate 'agenda)
18372 (lambda (b)
18373 (with-current-buffer b
18374 (and (derived-mode-p 'org-mode)
18375 (setq bfn (buffer-file-name b))
18376 (member (file-truename bfn) agenda-files)))))
18377 (t (lambda (b) (with-current-buffer b
18378 (or (derived-mode-p 'org-mode)
18379 (string-match "\*Org .*Export"
18380 (buffer-name b)))))))))
18381 (delq nil
18382 (mapcar
18383 (lambda(b)
18384 (if (and (funcall filter b)
18385 (or (not exclude-tmp)
18386 (not (string-match "tmp" (buffer-name b)))))
18388 nil))
18389 (buffer-list)))))
18391 (defun org-agenda-files (&optional unrestricted archives)
18392 "Get the list of agenda files.
18393 Optional UNRESTRICTED means return the full list even if a restriction
18394 is currently in place.
18395 When ARCHIVES is t, include all archive files that are really being
18396 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18397 `org-agenda-archives-mode' is t."
18398 (let ((files
18399 (cond
18400 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18401 ((stringp org-agenda-files) (org-read-agenda-file-list))
18402 ((listp org-agenda-files) org-agenda-files)
18403 (t (error "Invalid value of `org-agenda-files'")))))
18404 (setq files (apply 'append
18405 (mapcar (lambda (f)
18406 (if (file-directory-p f)
18407 (directory-files
18408 f t org-agenda-file-regexp)
18409 (list f)))
18410 files)))
18411 (when org-agenda-skip-unavailable-files
18412 (setq files (delq nil
18413 (mapcar (function
18414 (lambda (file)
18415 (and (file-readable-p file) file)))
18416 files))))
18417 (when (or (eq archives t)
18418 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18419 (setq files (org-add-archive-files files)))
18420 files))
18422 (defun org-agenda-file-p (&optional file)
18423 "Return non-nil, if FILE is an agenda file.
18424 If FILE is omitted, use the file associated with the current
18425 buffer."
18426 (let ((fname (or file (buffer-file-name))))
18427 (and fname
18428 (member (file-truename fname)
18429 (mapcar #'file-truename (org-agenda-files t))))))
18431 (defun org-edit-agenda-file-list ()
18432 "Edit the list of agenda files.
18433 Depending on setup, this either uses customize to edit the variable
18434 `org-agenda-files', or it visits the file that is holding the list. In the
18435 latter case, the buffer is set up in a way that saving it automatically kills
18436 the buffer and restores the previous window configuration."
18437 (interactive)
18438 (if (stringp org-agenda-files)
18439 (let ((cw (current-window-configuration)))
18440 (find-file org-agenda-files)
18441 (org-set-local 'org-window-configuration cw)
18442 (org-add-hook 'after-save-hook
18443 (lambda ()
18444 (set-window-configuration
18445 (prog1 org-window-configuration
18446 (kill-buffer (current-buffer))))
18447 (org-install-agenda-files-menu)
18448 (message "New agenda file list installed"))
18449 nil 'local)
18450 (message "%s" (substitute-command-keys
18451 "Edit list and finish with \\[save-buffer]")))
18452 (customize-variable 'org-agenda-files)))
18454 (defun org-store-new-agenda-file-list (list)
18455 "Set new value for the agenda file list and save it correctly."
18456 (if (stringp org-agenda-files)
18457 (let ((fe (org-read-agenda-file-list t)) b u)
18458 (while (setq b (find-buffer-visiting org-agenda-files))
18459 (kill-buffer b))
18460 (with-temp-file org-agenda-files
18461 (insert
18462 (mapconcat
18463 (lambda (f) ;; Keep un-expanded entries.
18464 (if (setq u (assoc f fe))
18465 (cdr u)
18467 list "\n")
18468 "\n")))
18469 (let ((org-mode-hook nil) (org-inhibit-startup t)
18470 (org-insert-mode-line-in-empty-file nil))
18471 (setq org-agenda-files list)
18472 (customize-save-variable 'org-agenda-files org-agenda-files))))
18474 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18475 "Read the list of agenda files from a file.
18476 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18477 filenames, used by `org-store-new-agenda-file-list' to write back
18478 un-expanded file names."
18479 (when (file-directory-p org-agenda-files)
18480 (error "`org-agenda-files' cannot be a single directory"))
18481 (when (stringp org-agenda-files)
18482 (with-temp-buffer
18483 (insert-file-contents org-agenda-files)
18484 (mapcar
18485 (lambda (f)
18486 (let ((e (expand-file-name (substitute-in-file-name f)
18487 org-directory)))
18488 (if pair-with-expansion
18489 (cons e f)
18490 e)))
18491 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18493 ;;;###autoload
18494 (defun org-cycle-agenda-files ()
18495 "Cycle through the files in `org-agenda-files'.
18496 If the current buffer visits an agenda file, find the next one in the list.
18497 If the current buffer does not, find the first agenda file."
18498 (interactive)
18499 (let* ((fs (org-agenda-files t))
18500 (files (append fs (list (car fs))))
18501 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18502 file)
18503 (unless files (user-error "No agenda files"))
18504 (catch 'exit
18505 (while (setq file (pop files))
18506 (if (equal (file-truename file) tcf)
18507 (when (car files)
18508 (find-file (car files))
18509 (throw 'exit t))))
18510 (find-file (car fs)))
18511 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18513 (defun org-agenda-file-to-front (&optional to-end)
18514 "Move/add the current file to the top of the agenda file list.
18515 If the file is not present in the list, it is added to the front. If it is
18516 present, it is moved there. With optional argument TO-END, add/move to the
18517 end of the list."
18518 (interactive "P")
18519 (let ((org-agenda-skip-unavailable-files nil)
18520 (file-alist (mapcar (lambda (x)
18521 (cons (file-truename x) x))
18522 (org-agenda-files t)))
18523 (ctf (file-truename
18524 (or buffer-file-name
18525 (user-error "Please save the current buffer to a file"))))
18526 x had)
18527 (setq x (assoc ctf file-alist) had x)
18529 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18530 (if to-end
18531 (setq file-alist (append (delq x file-alist) (list x)))
18532 (setq file-alist (cons x (delq x file-alist))))
18533 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18534 (org-install-agenda-files-menu)
18535 (message "File %s to %s of agenda file list"
18536 (if had "moved" "added") (if to-end "end" "front"))))
18538 (defun org-remove-file (&optional file)
18539 "Remove current file from the list of files in variable `org-agenda-files'.
18540 These are the files which are being checked for agenda entries.
18541 Optional argument FILE means use this file instead of the current."
18542 (interactive)
18543 (let* ((org-agenda-skip-unavailable-files nil)
18544 (file (or file buffer-file-name
18545 (user-error "Current buffer does not visit a file")))
18546 (true-file (file-truename file))
18547 (afile (abbreviate-file-name file))
18548 (files (delq nil (mapcar
18549 (lambda (x)
18550 (if (equal true-file
18551 (file-truename x))
18552 nil x))
18553 (org-agenda-files t)))))
18554 (if (not (= (length files) (length (org-agenda-files t))))
18555 (progn
18556 (org-store-new-agenda-file-list files)
18557 (org-install-agenda-files-menu)
18558 (message "Removed from Org Agenda list: %s" afile))
18559 (message "File was not in list: %s (not removed)" afile))))
18561 (defun org-file-menu-entry (file)
18562 (vector file (list 'find-file file) t))
18564 (defun org-check-agenda-file (file)
18565 "Make sure FILE exists. If not, ask user what to do."
18566 (when (not (file-exists-p file))
18567 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18568 (abbreviate-file-name file))
18569 (let ((r (downcase (read-char-exclusive))))
18570 (cond
18571 ((equal r ?r)
18572 (org-remove-file file)
18573 (throw 'nextfile t))
18574 (t (user-error "Abort"))))))
18576 (defun org-get-agenda-file-buffer (file)
18577 "Get an agenda buffer visiting FILE.
18578 If the buffer needs to be created, add it to the list of buffers
18579 which might be released later."
18580 (let ((buf (org-find-base-buffer-visiting file)))
18581 (if buf
18582 buf ; just return it
18583 ;; Make a new buffer and remember it
18584 (setq buf (find-file-noselect file))
18585 (if buf (push buf org-agenda-new-buffers))
18586 buf)))
18588 (defun org-release-buffers (blist)
18589 "Release all buffers in list, asking the user for confirmation when needed.
18590 When a buffer is unmodified, it is just killed. When modified, it is saved
18591 \(if the user agrees) and then killed."
18592 (let (buf file)
18593 (while (setq buf (pop blist))
18594 (setq file (buffer-file-name buf))
18595 (when (and (buffer-modified-p buf)
18596 file
18597 (y-or-n-p (format "Save file %s? " file)))
18598 (with-current-buffer buf (save-buffer)))
18599 (kill-buffer buf))))
18601 (defun org-agenda-prepare-buffers (files)
18602 "Create buffers for all agenda files, protect archived trees and comments."
18603 (interactive)
18604 (let ((pa '(:org-archived t))
18605 (pc '(:org-comment t))
18606 (pall '(:org-archived t :org-comment t))
18607 (inhibit-read-only t)
18608 (org-inhibit-startup org-agenda-inhibit-startup)
18609 (rea (concat ":" org-archive-tag ":"))
18610 file re pos)
18611 (setq org-tag-alist-for-agenda nil
18612 org-tag-groups-alist-for-agenda nil)
18613 (save-excursion
18614 (save-restriction
18615 (while (setq file (pop files))
18616 (catch 'nextfile
18617 (if (bufferp file)
18618 (set-buffer file)
18619 (org-check-agenda-file file)
18620 (set-buffer (org-get-agenda-file-buffer file)))
18621 (widen)
18622 (org-set-regexps-and-options 'tags-only)
18623 (setq pos (point))
18624 (or (memq 'category org-agenda-ignore-properties)
18625 (org-refresh-category-properties))
18626 (or (memq 'stats org-agenda-ignore-properties)
18627 (org-refresh-stats-properties))
18628 (or (memq 'effort org-agenda-ignore-properties)
18629 (org-refresh-effort-properties))
18630 (or (memq 'appt org-agenda-ignore-properties)
18631 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18632 (setq org-todo-keywords-for-agenda
18633 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18634 (setq org-done-keywords-for-agenda
18635 (append org-done-keywords-for-agenda org-done-keywords))
18636 (setq org-todo-keyword-alist-for-agenda
18637 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18638 (setq org-tag-alist-for-agenda
18639 (org-uniquify
18640 (append org-tag-alist-for-agenda
18641 org-tag-alist
18642 org-tag-persistent-alist)))
18643 (if org-group-tags
18644 (setq org-tag-groups-alist-for-agenda
18645 (org-uniquify-alist
18646 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18647 (org-with-silent-modifications
18648 (save-excursion
18649 (remove-text-properties (point-min) (point-max) pall)
18650 (when org-agenda-skip-archived-trees
18651 (goto-char (point-min))
18652 (while (re-search-forward rea nil t)
18653 (if (org-at-heading-p t)
18654 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18655 (goto-char (point-min))
18656 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18657 (while (re-search-forward re nil t)
18658 (when (save-match-data (org-in-commented-heading-p t))
18659 (add-text-properties
18660 (match-beginning 0) (org-end-of-subtree t) pc)))))
18661 (goto-char pos)))))
18662 (setq org-todo-keywords-for-agenda
18663 (org-uniquify org-todo-keywords-for-agenda))
18664 (setq org-todo-keyword-alist-for-agenda
18665 (org-uniquify org-todo-keyword-alist-for-agenda))))
18668 ;;;; CDLaTeX minor mode
18670 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18671 "Keymap for the minor `org-cdlatex-mode'.")
18673 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18674 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18675 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18676 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18677 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18679 (defvar org-cdlatex-texmathp-advice-is-done nil
18680 "Flag remembering if we have applied the advice to texmathp already.")
18682 (define-minor-mode org-cdlatex-mode
18683 "Toggle the minor `org-cdlatex-mode'.
18684 This mode supports entering LaTeX environment and math in LaTeX fragments
18685 in Org-mode.
18686 \\{org-cdlatex-mode-map}"
18687 nil " OCDL" nil
18688 (when org-cdlatex-mode
18689 (require 'cdlatex)
18690 (run-hooks 'cdlatex-mode-hook)
18691 (cdlatex-compute-tables))
18692 (unless org-cdlatex-texmathp-advice-is-done
18693 (setq org-cdlatex-texmathp-advice-is-done t)
18694 (defadvice texmathp (around org-math-always-on activate)
18695 "Always return t in org-mode buffers.
18696 This is because we want to insert math symbols without dollars even outside
18697 the LaTeX math segments. If Orgmode thinks that point is actually inside
18698 an embedded LaTeX fragment, let texmathp do its job.
18699 \\[org-cdlatex-mode-map]"
18700 (interactive)
18701 (let (p)
18702 (cond
18703 ((not (derived-mode-p 'org-mode)) ad-do-it)
18704 ((eq this-command 'cdlatex-math-symbol)
18705 (setq ad-return-value t
18706 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18708 (let ((p (org-inside-LaTeX-fragment-p)))
18709 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18710 (setq ad-return-value t
18711 texmathp-why '("Org-mode embedded math" . 0))
18712 (if p ad-do-it)))))))))
18714 (defun turn-on-org-cdlatex ()
18715 "Unconditionally turn on `org-cdlatex-mode'."
18716 (org-cdlatex-mode 1))
18718 (defun org-try-cdlatex-tab ()
18719 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18720 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18721 - inside a LaTeX fragment, or
18722 - after the first word in a line, where an abbreviation expansion could
18723 insert a LaTeX environment."
18724 (when org-cdlatex-mode
18725 (cond
18726 ;; Before any word on the line: No expansion possible.
18727 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18728 ;; Just after first word on the line: Expand it. Make sure it
18729 ;; cannot happen on headlines, though.
18730 ((save-excursion
18731 (skip-chars-backward "a-zA-Z0-9*")
18732 (skip-chars-backward " \t")
18733 (and (bolp) (not (org-at-heading-p))))
18734 (cdlatex-tab) t)
18735 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18737 (defun org-cdlatex-underscore-caret (&optional arg)
18738 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18739 Revert to the normal definition outside of these fragments."
18740 (interactive "P")
18741 (if (org-inside-LaTeX-fragment-p)
18742 (call-interactively 'cdlatex-sub-superscript)
18743 (let (org-cdlatex-mode)
18744 (call-interactively (key-binding (vector last-input-event))))))
18746 (defun org-cdlatex-math-modify (&optional arg)
18747 "Execute `cdlatex-math-modify' in LaTeX fragments.
18748 Revert to the normal definition outside of these fragments."
18749 (interactive "P")
18750 (if (org-inside-LaTeX-fragment-p)
18751 (call-interactively 'cdlatex-math-modify)
18752 (let (org-cdlatex-mode)
18753 (call-interactively (key-binding (vector last-input-event))))))
18755 (defun org-cdlatex-environment-indent (&optional environment item)
18756 "Execute `cdlatex-environment' and indent the inserted environment.
18758 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18760 The inserted environment is indented to current indentation
18761 unless point is at the beginning of the line, in which the
18762 environment remains unintended."
18763 (interactive)
18764 ;; cdlatex-environment always return nil. Therefore, capture output
18765 ;; first and determine if an environment was selected.
18766 (let* ((beg (point-marker))
18767 (end (copy-marker (point) t))
18768 (inserted (progn
18769 (ignore-errors (cdlatex-environment environment item))
18770 (< beg end)))
18771 ;; Figure out how many lines to move forward after the
18772 ;; environment has been inserted.
18773 (lines (when inserted
18774 (save-excursion
18775 (- (loop while (< beg (point))
18776 with x = 0
18777 do (forward-line -1)
18778 (incf x)
18779 finally return x)
18780 (if (progn (goto-char beg)
18781 (and (progn (skip-chars-forward " \t") (eolp))
18782 (progn (skip-chars-backward " \t") (bolp))))
18783 1 0)))))
18784 (env (org-trim (delete-and-extract-region beg end))))
18785 (when inserted
18786 ;; Get indentation of next line unless at column 0.
18787 (let ((ind (if (bolp) 0
18788 (save-excursion
18789 (org-return-indent)
18790 (prog1 (org-get-indentation)
18791 (when (progn (skip-chars-forward " \t") (eolp))
18792 (delete-region beg (point)))))))
18793 (bol (progn (skip-chars-backward " \t") (bolp))))
18794 ;; Insert a newline before environment unless at column zero
18795 ;; to "escape" the current line. Insert a newline if
18796 ;; something is one the same line as \end{ENVIRONMENT}.
18797 (insert
18798 (concat (unless bol "\n") env
18799 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18800 (unless (zerop ind)
18801 (save-excursion
18802 (goto-char beg)
18803 (while (< (point) end)
18804 (unless (eolp) (org-indent-line-to ind))
18805 (forward-line))))
18806 (goto-char beg)
18807 (forward-line lines)
18808 (org-indent-line-to ind)))
18809 (set-marker beg nil)
18810 (set-marker end nil)))
18813 ;;;; LaTeX fragments
18815 (defun org-inside-LaTeX-fragment-p ()
18816 "Test if point is inside a LaTeX fragment.
18817 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18818 sequence appearing also before point.
18819 Even though the matchers for math are configurable, this function assumes
18820 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18821 delimiters are skipped when they have been removed by customization.
18822 The return value is nil, or a cons cell with the delimiter and the
18823 position of this delimiter.
18825 This function does a reasonably good job, but can locally be fooled by
18826 for example currency specifications. For example it will assume being in
18827 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18828 fragments that are properly closed, but during editing, we have to live
18829 with the uncertainty caused by missing closing delimiters. This function
18830 looks only before point, not after."
18831 (catch 'exit
18832 (let ((pos (point))
18833 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18834 (lim (progn
18835 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18836 (point)))
18837 dd-on str (start 0) m re)
18838 (goto-char pos)
18839 (when dodollar
18840 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18841 re (nth 1 (assoc "$" org-latex-regexps)))
18842 (while (string-match re str start)
18843 (cond
18844 ((= (match-end 0) (length str))
18845 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18846 ((= (match-end 0) (- (length str) 5))
18847 (throw 'exit nil))
18848 (t (setq start (match-end 0))))))
18849 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18850 (goto-char pos)
18851 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18852 (and (match-beginning 2) (throw 'exit nil))
18853 ;; count $$
18854 (while (re-search-backward "\\$\\$" lim t)
18855 (setq dd-on (not dd-on)))
18856 (goto-char pos)
18857 (if dd-on (cons "$$" m))))))
18859 (defun org-inside-latex-macro-p ()
18860 "Is point inside a LaTeX macro or its arguments?"
18861 (save-match-data
18862 (org-in-regexp
18863 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18865 (defvar org-latex-fragment-image-overlays nil
18866 "List of overlays carrying the images of latex fragments.")
18867 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18869 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18870 "Remove all overlays with LaTeX fragment images in current buffer.
18871 When optional arguments BEG and END are non-nil, remove all
18872 overlays between them instead. Return t when some overlays were
18873 removed, nil otherwise."
18874 (let (removedp)
18875 (setq org-latex-fragment-image-overlays
18876 (let ((beg (or beg (point-min)))
18877 (end (or end (point-max))))
18878 (org-remove-if
18879 (lambda (o)
18880 (and (>= (overlay-start o) beg)
18881 (<= (overlay-end o) end)
18882 (progn (delete-overlay o)
18883 (or removedp (setq removedp t)))))
18884 org-latex-fragment-image-overlays)))
18885 removedp))
18887 (define-obsolete-function-alias
18888 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18889 (defun org-toggle-latex-fragment (&optional arg)
18890 "Preview the LaTeX fragment at point, or all locally or globally.
18892 If the cursor is on a LaTeX fragment, create the image and overlay
18893 it over the source code, if there is none. Remove it otherwise.
18894 If there is no fragment at point, display all fragments in the
18895 current section.
18897 With prefix ARG, preview or clear image for all fragments in the
18898 current subtree or in the whole buffer when used before the first
18899 headline. With a double prefix ARG \\[universal-argument] \
18900 \\[universal-argument] preview or clear images
18901 for all fragments in the buffer."
18902 (interactive "P")
18903 (unless (buffer-file-name (buffer-base-buffer))
18904 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18905 (when (display-graphic-p)
18906 (catch 'exit
18907 (save-excursion
18908 (let ((window-start (window-start)) msg)
18909 (save-restriction
18910 (cond
18911 ((or (equal arg '(16))
18912 (and (equal arg '(4))
18913 (org-with-limited-levels (org-before-first-heading-p))))
18914 (if (org-remove-latex-fragment-image-overlays)
18915 (progn (message "LaTeX fragments images removed from buffer")
18916 (throw 'exit nil))
18917 (setq msg "Creating images for buffer...")))
18918 ((equal arg '(4))
18919 (org-with-limited-levels (org-back-to-heading t))
18920 (let ((beg (point))
18921 (end (progn (org-end-of-subtree t) (point))))
18922 (if (org-remove-latex-fragment-image-overlays beg end)
18923 (progn
18924 (message "LaTeX fragment images removed from subtree")
18925 (throw 'exit nil))
18926 (setq msg "Creating images for subtree...")
18927 (narrow-to-region beg end))))
18928 ((let ((datum (org-element-context)))
18929 (when (memq (org-element-type datum)
18930 '(latex-environment latex-fragment))
18931 (let* ((beg (org-element-property :begin datum))
18932 (end (org-element-property :end datum)))
18933 (if (org-remove-latex-fragment-image-overlays beg end)
18934 (progn (message "LaTeX fragment image removed")
18935 (throw 'exit nil))
18936 (narrow-to-region beg end)
18937 (setq msg "Creating image..."))))))
18939 (org-with-limited-levels
18940 (let ((beg (if (org-at-heading-p) (line-beginning-position)
18941 (outline-previous-heading)
18942 (point)))
18943 (end (progn (outline-next-heading) (point))))
18944 (if (org-remove-latex-fragment-image-overlays beg end)
18945 (progn
18946 (message "LaTeX fragment images removed from section")
18947 (throw 'exit nil))
18948 (setq msg "Creating images for section...")
18949 (narrow-to-region beg end))))))
18950 (let ((file (buffer-file-name (buffer-base-buffer))))
18951 (org-format-latex
18952 (concat org-latex-preview-ltxpng-directory
18953 (file-name-sans-extension (file-name-nondirectory file)))
18954 ;; Emacs cannot overlay images from remote hosts.
18955 ;; Create it in `temporary-file-directory' instead.
18956 (if (file-remote-p file) temporary-file-directory
18957 default-directory)
18958 'overlays msg 'forbuffer
18959 org-latex-create-formula-image-program)))
18960 ;; Work around a bug that doesn't restore window's start
18961 ;; when widening back the buffer.
18962 (set-window-start nil window-start)
18963 (message (concat msg "done")))))))
18965 (defun org-format-latex
18966 (prefix &optional dir overlays msg forbuffer processing-type)
18967 "Replace LaTeX fragments with links to an image, and produce images.
18969 When optional argument OVERLAYS is non-nil, display the image on
18970 top of the fragment instead of replacing it.
18972 PROCESSING-TYPE is the conversion method to use, as a symbol.
18974 Some of the options can be changed using the variable
18975 `org-format-latex-options', which see."
18976 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18977 (unless (eq processing-type 'verbatim)
18978 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18979 (cnt 0)
18980 checkdir-flag)
18981 (goto-char (point-min))
18982 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
18983 (when (and overlays (memq processing-type '(dvipng imagemagick)))
18984 (overlay-recenter (point-max)))
18985 (while (re-search-forward math-regexp nil t)
18986 (unless (and overlays
18987 (eq (get-char-property (point) 'org-overlay-type)
18988 'org-latex-overlay))
18989 (let* ((context (org-element-context))
18990 (type (org-element-type context)))
18991 (when (memq type '(latex-environment latex-fragment))
18992 (let ((block-type (eq type 'latex-environment))
18993 (value (org-element-property :value context))
18994 (beg (org-element-property :begin context))
18995 (end (save-excursion
18996 (goto-char (org-element-property :end context))
18997 (skip-chars-backward " \r\t\n")
18998 (point))))
18999 (case processing-type
19000 (mathjax
19001 ;; Prepare for MathJax processing.
19002 (if (eq (char-after beg) ?$)
19003 (save-excursion
19004 (delete-region beg end)
19005 (insert "\\(" (substring value 1 -1) "\\)"))
19006 (goto-char end)))
19007 ((dvipng imagemagick)
19008 ;; Process to an image.
19009 (incf cnt)
19010 (goto-char beg)
19011 (let* ((face (face-at-point))
19012 ;; Get the colors from the face at point.
19014 (let ((color (plist-get org-format-latex-options
19015 :foreground)))
19016 (if (and forbuffer (eq color 'auto))
19017 (face-attribute face :foreground nil 'default)
19018 color)))
19020 (let ((color (plist-get org-format-latex-options
19021 :background)))
19022 (if (and forbuffer (eq color 'auto))
19023 (face-attribute face :background nil 'default)
19024 color)))
19025 (hash (sha1 (prin1-to-string
19026 (list org-format-latex-header
19027 org-latex-default-packages-alist
19028 org-latex-packages-alist
19029 org-format-latex-options
19030 forbuffer value fg bg))))
19031 (absprefix (expand-file-name prefix dir))
19032 (linkfile (format "%s_%s.png" prefix hash))
19033 (movefile (format "%s_%s.png" absprefix hash))
19034 (sep (and block-type "\n\n"))
19035 (link (concat sep "[[file:" linkfile "]]" sep))
19036 (options
19037 (org-combine-plists
19038 org-format-latex-options
19039 `(:foreground ,fg :background ,bg))))
19040 (when msg (message msg cnt))
19041 (unless checkdir-flag ; Ensure the directory exists.
19042 (setq checkdir-flag t)
19043 (let ((todir (file-name-directory absprefix)))
19044 (unless (file-directory-p todir)
19045 (make-directory todir t))))
19046 (unless (file-exists-p movefile)
19047 (org-create-formula-image
19048 value movefile options forbuffer processing-type))
19049 (if overlays
19050 (progn
19051 (dolist (o (overlays-in beg end))
19052 (when (eq (overlay-get o 'org-overlay-type)
19053 'org-latex-overlay)
19054 (delete-overlay o)))
19055 (let ((ov (make-overlay beg end)))
19056 (overlay-put ov
19057 'org-overlay-type
19058 'org-latex-overlay)
19059 (overlay-put ov 'evaporate t)
19060 (if (featurep 'xemacs)
19061 (progn
19062 (overlay-put ov 'invisible t)
19063 (overlay-put
19064 ov 'end-glyph
19065 (make-glyph
19066 (vector 'png :file movefile))))
19067 (overlay-put
19068 ov 'display
19069 (list 'image
19070 :type 'png
19071 :file movefile
19072 :ascent 'center)))
19073 (push ov org-latex-fragment-image-overlays))
19074 (goto-char end))
19075 (delete-region beg end)
19076 (insert
19077 (org-add-props link
19078 (list 'org-latex-src
19079 (replace-regexp-in-string "\"" "" value)
19080 'org-latex-src-embed-type
19081 (if block-type 'paragraph 'character)))))))
19082 (mathml
19083 ;; Process to MathML.
19084 (unless (org-format-latex-mathml-available-p)
19085 (user-error "LaTeX to MathML converter not configured"))
19086 (incf cnt)
19087 (when msg (message msg cnt))
19088 (goto-char beg)
19089 (delete-region beg end)
19090 (insert (org-format-latex-as-mathml
19091 value block-type prefix dir)))
19092 (otherwise
19093 (error "Unknown conversion type %s for LaTeX fragments"
19094 processing-type)))))))))))
19096 (defun org-create-math-formula (latex-frag &optional mathml-file)
19097 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19098 Use `org-latex-to-mathml-convert-command'. If the conversion is
19099 sucessful, return the portion between \"<math...> </math>\"
19100 elements otherwise return nil. When MATHML-FILE is specified,
19101 write the results in to that file. When invoked as an
19102 interactive command, prompt for LATEX-FRAG, with initial value
19103 set to the current active region and echo the results for user
19104 inspection."
19105 (interactive (list (let ((frag (when (org-region-active-p)
19106 (buffer-substring-no-properties
19107 (region-beginning) (region-end)))))
19108 (read-string "LaTeX Fragment: " frag nil frag))))
19109 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19110 (let* ((tmp-in-file (file-relative-name
19111 (make-temp-name (expand-file-name "ltxmathml-in"))))
19112 (ignore (write-region latex-frag nil tmp-in-file))
19113 (tmp-out-file (file-relative-name
19114 (make-temp-name (expand-file-name "ltxmathml-out"))))
19115 (cmd (format-spec
19116 org-latex-to-mathml-convert-command
19117 `((?j . ,(and org-latex-to-mathml-jar-file
19118 (shell-quote-argument
19119 (expand-file-name
19120 org-latex-to-mathml-jar-file))))
19121 (?I . ,(shell-quote-argument tmp-in-file))
19122 (?i . ,latex-frag)
19123 (?o . ,(shell-quote-argument tmp-out-file)))))
19124 mathml shell-command-output)
19125 (when (org-called-interactively-p 'any)
19126 (unless (org-format-latex-mathml-available-p)
19127 (user-error "LaTeX to MathML converter not configured")))
19128 (message "Running %s" cmd)
19129 (setq shell-command-output (shell-command-to-string cmd))
19130 (setq mathml
19131 (when (file-readable-p tmp-out-file)
19132 (with-current-buffer (find-file-noselect tmp-out-file t)
19133 (goto-char (point-min))
19134 (when (re-search-forward
19135 (concat
19136 (regexp-quote
19137 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19138 "[^>]*?>"
19139 "\\(.\\|\n\\)*"
19140 "</math>")
19141 nil t)
19142 (prog1 (match-string 0) (kill-buffer))))))
19143 (cond
19144 (mathml
19145 (setq mathml
19146 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19147 (when mathml-file
19148 (write-region mathml nil mathml-file))
19149 (when (org-called-interactively-p 'any)
19150 (message mathml)))
19151 ((message "LaTeX to MathML conversion failed")
19152 (message shell-command-output)))
19153 (delete-file tmp-in-file)
19154 (when (file-exists-p tmp-out-file)
19155 (delete-file tmp-out-file))
19156 mathml))
19158 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19159 prefix &optional dir)
19160 "Use `org-create-math-formula' but check local cache first."
19161 (let* ((absprefix (expand-file-name prefix dir))
19162 (print-length nil) (print-level nil)
19163 (formula-id (concat
19164 "formula-"
19165 (sha1
19166 (prin1-to-string
19167 (list latex-frag
19168 org-latex-to-mathml-convert-command)))))
19169 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19170 (formula-cache-dir (file-name-directory formula-cache)))
19172 (unless (file-directory-p formula-cache-dir)
19173 (make-directory formula-cache-dir t))
19175 (unless (file-exists-p formula-cache)
19176 (org-create-math-formula latex-frag formula-cache))
19178 (if (file-exists-p formula-cache)
19179 ;; Successful conversion. Return the link to MathML file.
19180 (org-add-props
19181 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19182 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19183 'org-latex-src-embed-type (if latex-frag-type
19184 'paragraph 'character)))
19185 ;; Failed conversion. Return the LaTeX fragment verbatim
19186 latex-frag)))
19188 (defun org-create-formula-image (string tofile options buffer &optional type)
19189 "Create an image from LaTeX source using dvipng or convert.
19190 This function calls either `org-create-formula-image-with-dvipng'
19191 or `org-create-formula-image-with-imagemagick' depending on the
19192 value of `org-latex-create-formula-image-program' or on the value
19193 of the optional TYPE variable.
19195 Note: ultimately these two function should be combined as they
19196 share a good deal of logic."
19197 (org-check-external-command
19198 "latex" "needed to convert LaTeX fragments to images")
19199 (funcall
19200 (case (or type org-latex-create-formula-image-program)
19201 ('dvipng
19202 (org-check-external-command
19203 "dvipng" "needed to convert LaTeX fragments to images")
19204 'org-create-formula-image-with-dvipng)
19205 ('imagemagick
19206 (org-check-external-command
19207 "convert" "you need to install imagemagick")
19208 'org-create-formula-image-with-imagemagick)
19209 (t (error
19210 "Invalid value of `org-latex-create-formula-image-program'")))
19211 string tofile options buffer))
19213 (declare-function org-export-get-backend "ox" (name))
19214 (declare-function org-export--get-global-options "ox" (&optional backend))
19215 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19216 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19217 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19218 (defun org-create-formula--latex-header ()
19219 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19220 (let ((info (org-combine-plists (org-export--get-global-options
19221 (org-export-get-backend 'latex))
19222 (org-export--get-inbuffer-options
19223 (org-export-get-backend 'latex)))))
19224 (org-latex-guess-babel-language
19225 (org-latex-guess-inputenc
19226 (org-splice-latex-header
19227 org-format-latex-header
19228 org-latex-default-packages-alist
19229 org-latex-packages-alist t
19230 (plist-get info :latex-header)))
19231 info)))
19233 (defun org--get-display-dpi ()
19234 "Get the DPI of the display.
19236 Assumes that the display has the same pixel width in the
19237 horizontal and vertical directions."
19238 (if (display-graphic-p)
19239 (round (/ (display-pixel-height)
19240 (/ (display-mm-height) 25.4)))
19241 (error "Attempt to calculate the dpi of a non-graphic display")))
19243 ;; This function borrows from Ganesh Swami's latex2png.el
19244 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19245 "This calls dvipng."
19246 (require 'ox-latex)
19247 (let* ((tmpdir (if (featurep 'xemacs)
19248 (temp-directory)
19249 temporary-file-directory))
19250 (texfilebase (make-temp-name
19251 (expand-file-name "orgtex" tmpdir)))
19252 (texfile (concat texfilebase ".tex"))
19253 (dvifile (concat texfilebase ".dvi"))
19254 (pngfile (concat texfilebase ".png"))
19255 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19256 ;; This assumes that the display has the same pixel width in
19257 ;; the horizontal and vertical directions
19258 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19259 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19260 "Black"))
19261 (bg (or (plist-get options (if buffer :background :html-background))
19262 "Transparent")))
19263 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19264 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19265 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19266 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19267 (let ((latex-header (org-create-formula--latex-header)))
19268 (with-temp-file texfile
19269 (insert latex-header)
19270 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19271 (let ((dir default-directory))
19272 (ignore-errors
19273 (cd tmpdir)
19274 (call-process "latex" nil nil nil texfile))
19275 (cd dir))
19276 (if (not (file-exists-p dvifile))
19277 (progn (message "Failed to create dvi file from %s" texfile) nil)
19278 (ignore-errors
19279 (if (featurep 'xemacs)
19280 (call-process "dvipng" nil nil nil
19281 "-fg" fg "-bg" bg
19282 "-T" "tight"
19283 "-o" pngfile
19284 dvifile)
19285 (call-process "dvipng" nil nil nil
19286 "-fg" fg "-bg" bg
19287 "-D" dpi
19288 ;;"-x" scale "-y" scale
19289 "-T" "tight"
19290 "-o" pngfile
19291 dvifile)))
19292 (if (not (file-exists-p pngfile))
19293 (if org-format-latex-signal-error
19294 (error "Failed to create png file from %s" texfile)
19295 (message "Failed to create png file from %s" texfile)
19296 nil)
19297 ;; Use the requested file name and clean up
19298 (copy-file pngfile tofile 'replace)
19299 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19300 (if (file-exists-p (concat texfilebase e))
19301 (delete-file (concat texfilebase e))))
19302 pngfile))))
19304 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19305 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19306 "This calls convert, which is included into imagemagick."
19307 (require 'ox-latex)
19308 (let* ((tmpdir (if (featurep 'xemacs)
19309 (temp-directory)
19310 temporary-file-directory))
19311 (texfilebase (make-temp-name
19312 (expand-file-name "orgtex" tmpdir)))
19313 (texfile (concat texfilebase ".tex"))
19314 (pdffile (concat texfilebase ".pdf"))
19315 (pngfile (concat texfilebase ".png"))
19316 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19317 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19318 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19319 "black"))
19320 (bg (or (plist-get options (if buffer :background :html-background))
19321 "white")))
19322 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19323 (setq fg (org-latex-color-format fg)))
19324 (if (eq bg 'default) (setq bg (org-latex-color :background))
19325 (setq bg (org-latex-color-format
19326 (if (string= bg "Transparent") "white" bg))))
19327 (let ((latex-header (org-create-formula--latex-header)))
19328 (with-temp-file texfile
19329 (insert latex-header)
19330 (insert "\n\\begin{document}\n"
19331 "\\definecolor{fg}{rgb}{" fg "}\n"
19332 "\\definecolor{bg}{rgb}{" bg "}\n"
19333 "\n\\pagecolor{bg}\n"
19334 "\n{\\color{fg}\n"
19335 string
19336 "\n}\n"
19337 "\n\\end{document}\n")))
19338 (org-latex-compile texfile t)
19339 (if (not (file-exists-p pdffile))
19340 (progn (message "Failed to create pdf file from %s" texfile) nil)
19341 (ignore-errors
19342 (if (featurep 'xemacs)
19343 (call-process "convert" nil nil nil
19344 "-density" "96"
19345 "-trim"
19346 "-antialias"
19347 pdffile
19348 "-quality" "100"
19349 ;; "-sharpen" "0x1.0"
19350 pngfile)
19351 (call-process "convert" nil nil nil
19352 "-density" dpi
19353 "-trim"
19354 "-antialias"
19355 pdffile
19356 "-quality" "100"
19357 ;; "-sharpen" "0x1.0"
19358 pngfile)))
19359 (if (not (file-exists-p pngfile))
19360 (if org-format-latex-signal-error
19361 (error "Failed to create png file from %s" texfile)
19362 (message "Failed to create png file from %s" texfile)
19363 nil)
19364 ;; Use the requested file name and clean up
19365 (copy-file pngfile tofile 'replace)
19366 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19367 (if (file-exists-p (concat texfilebase e))
19368 (delete-file (concat texfilebase e))))
19369 pngfile))))
19371 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19372 "Fill a LaTeX header template TPL.
19373 In the template, the following place holders will be recognized:
19375 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19376 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19377 [PACKAGES] \\usepackage statements for PKG
19378 [NO-PACKAGES] do not include PKG
19379 [EXTRA] the string EXTRA
19380 [NO-EXTRA] do not include EXTRA
19382 For backward compatibility, if both the positive and the negative place
19383 holder is missing, the positive one (without the \"NO-\") will be
19384 assumed to be present at the end of the template.
19385 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19386 EXTRA is a string.
19387 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19388 (let (rpl (end ""))
19389 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19390 (setq rpl (if (or (match-end 1) (not def-pkg))
19391 "" (org-latex-packages-to-string def-pkg snippets-p t))
19392 tpl (replace-match rpl t t tpl))
19393 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19395 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19396 (setq rpl (if (or (match-end 1) (not pkg))
19397 "" (org-latex-packages-to-string pkg snippets-p t))
19398 tpl (replace-match rpl t t tpl))
19399 (if pkg (setq end
19400 (concat end "\n"
19401 (org-latex-packages-to-string pkg snippets-p)))))
19403 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19404 (setq rpl (if (or (match-end 1) (not extra))
19405 "" (concat extra "\n"))
19406 tpl (replace-match rpl t t tpl))
19407 (if (and extra (string-match "\\S-" extra))
19408 (setq end (concat end "\n" extra))))
19410 (if (string-match "\\S-" end)
19411 (concat tpl "\n" end)
19412 tpl)))
19414 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19415 "Turn an alist of packages into a string with the \\usepackage macros."
19416 (setq pkg (mapconcat (lambda(p)
19417 (cond
19418 ((stringp p) p)
19419 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19420 (format "%% Package %s omitted" (cadr p)))
19421 ((equal "" (car p))
19422 (format "\\usepackage{%s}" (cadr p)))
19424 (format "\\usepackage[%s]{%s}"
19425 (car p) (cadr p)))))
19427 "\n"))
19428 (if newline (concat pkg "\n") pkg))
19430 (defun org-dvipng-color (attr)
19431 "Return a RGB color specification for dvipng."
19432 (apply 'format "rgb %s %s %s"
19433 (mapcar 'org-normalize-color
19434 (if (featurep 'xemacs)
19435 (color-rgb-components
19436 (face-property 'default
19437 (cond ((eq attr :foreground) 'foreground)
19438 ((eq attr :background) 'background))))
19439 (color-values (face-attribute 'default attr nil))))))
19441 (defun org-dvipng-color-format (color-name)
19442 "Convert COLOR-NAME to a RGB color value for dvipng."
19443 (apply 'format "rgb %s %s %s"
19444 (mapcar 'org-normalize-color
19445 (color-values color-name))))
19447 (defun org-latex-color (attr)
19448 "Return a RGB color for the LaTeX color package."
19449 (apply 'format "%s,%s,%s"
19450 (mapcar 'org-normalize-color
19451 (if (featurep 'xemacs)
19452 (color-rgb-components
19453 (face-property 'default
19454 (cond ((eq attr :foreground) 'foreground)
19455 ((eq attr :background) 'background))))
19456 (color-values (face-attribute 'default attr nil))))))
19458 (defun org-latex-color-format (color-name)
19459 "Convert COLOR-NAME to a RGB color value."
19460 (apply 'format "%s,%s,%s"
19461 (mapcar 'org-normalize-color
19462 (color-values color-name))))
19464 (defun org-normalize-color (value)
19465 "Return string to be used as color value for an RGB component."
19466 (format "%g" (/ value 65535.0)))
19470 ;; Image display
19472 (defvar org-inline-image-overlays nil)
19473 (make-variable-buffer-local 'org-inline-image-overlays)
19475 (defun org-toggle-inline-images (&optional include-linked)
19476 "Toggle the display of inline images.
19477 INCLUDE-LINKED is passed to `org-display-inline-images'."
19478 (interactive "P")
19479 (if org-inline-image-overlays
19480 (progn
19481 (org-remove-inline-images)
19482 (when (org-called-interactively-p 'interactive)
19483 (message "Inline image display turned off")))
19484 (org-display-inline-images include-linked)
19485 (when (org-called-interactively-p 'interactive)
19486 (message (if org-inline-image-overlays
19487 (format "%d images displayed inline"
19488 (length org-inline-image-overlays))
19489 "No images to display inline")))))
19491 (defun org-redisplay-inline-images ()
19492 "Refresh the display of inline images."
19493 (interactive)
19494 (if (not org-inline-image-overlays)
19495 (org-toggle-inline-images)
19496 (org-toggle-inline-images)
19497 (org-toggle-inline-images)))
19499 (defun org-display-inline-images (&optional include-linked refresh beg end)
19500 "Display inline images.
19502 An inline image is a link which follows either of these
19503 conventions:
19505 1. Its path is a file with an extension matching return value
19506 from `image-file-name-regexp' and it has no contents.
19508 2. Its description consists in a single link of the previous
19509 type.
19511 When optional argument INCLUDE-LINKED is non-nil, also links with
19512 a text description part will be inlined. This can be nice for
19513 a quick look at those images, but it does not reflect what
19514 exported files will look like.
19516 When optional argument REFRESH is non-nil, refresh existing
19517 images between BEG and END. This will create new image displays
19518 only if necessary. BEG and END default to the buffer
19519 boundaries."
19520 (interactive "P")
19521 (when (display-graphic-p)
19522 (unless refresh
19523 (org-remove-inline-images)
19524 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19525 (org-with-wide-buffer
19526 (goto-char (or beg (point-min)))
19527 (let ((case-fold-search t)
19528 (file-extension-re (org-image-file-name-regexp)))
19529 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19530 (let ((link (save-match-data (org-element-context))))
19531 ;; Check if we're at an inline image.
19532 (when (and (equal (org-element-property :type link) "file")
19533 (or include-linked
19534 (not (org-element-property :contents-begin link)))
19535 (let ((parent (org-element-property :parent link)))
19536 (or (not (eq (org-element-type parent) 'link))
19537 (not (cdr (org-element-contents parent)))))
19538 (org-string-match-p file-extension-re
19539 (org-element-property :path link)))
19540 (let ((file (expand-file-name (org-element-property :path link))))
19541 (when (file-exists-p file)
19542 (let ((width
19543 ;; Apply `org-image-actual-width' specifications.
19544 (cond
19545 ((not (image-type-available-p 'imagemagick)) nil)
19546 ((eq org-image-actual-width t) nil)
19547 ((listp org-image-actual-width)
19549 ;; First try to find a width among
19550 ;; attributes associated to the paragraph
19551 ;; containing link.
19552 (let ((paragraph
19553 (let ((e link))
19554 (while (and (setq e (org-element-property
19555 :parent e))
19556 (not (eq (org-element-type e)
19557 'paragraph))))
19558 e)))
19559 (when paragraph
19560 (save-excursion
19561 (goto-char (org-element-property :begin paragraph))
19562 (when
19563 (re-search-forward
19564 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19565 (org-element-property
19566 :post-affiliated paragraph)
19568 (string-to-number (match-string 1))))))
19569 ;; Otherwise, fall-back to provided number.
19570 (car org-image-actual-width)))
19571 ((numberp org-image-actual-width)
19572 org-image-actual-width)))
19573 (old (get-char-property-and-overlay
19574 (org-element-property :begin link)
19575 'org-image-overlay)))
19576 (if (and (car-safe old) refresh)
19577 (image-refresh (overlay-get (cdr old) 'display))
19578 (let ((image (create-image file
19579 (and width 'imagemagick)
19581 :width width)))
19582 (when image
19583 (let* ((link
19584 ;; If inline image is the description
19585 ;; of another link, be sure to
19586 ;; consider the latter as the one to
19587 ;; apply the overlay on.
19588 (let ((parent
19589 (org-element-property :parent link)))
19590 (if (eq (org-element-type parent) 'link)
19591 parent
19592 link)))
19593 (ov (make-overlay
19594 (org-element-property :begin link)
19595 (progn
19596 (goto-char
19597 (org-element-property :end link))
19598 (skip-chars-backward " \t")
19599 (point)))))
19600 (overlay-put ov 'display image)
19601 (overlay-put ov 'face 'default)
19602 (overlay-put ov 'org-image-overlay t)
19603 (overlay-put
19604 ov 'modification-hooks
19605 (list 'org-display-inline-remove-overlay))
19606 (push ov org-inline-image-overlays)))))))))))))))
19608 (define-obsolete-function-alias
19609 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19611 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19612 "Remove inline-display overlay if a corresponding region is modified."
19613 (let ((inhibit-modification-hooks t))
19614 (when (and ov after)
19615 (delete ov org-inline-image-overlays)
19616 (delete-overlay ov))))
19618 (defun org-remove-inline-images ()
19619 "Remove inline display of images."
19620 (interactive)
19621 (mapc 'delete-overlay org-inline-image-overlays)
19622 (setq org-inline-image-overlays nil))
19624 ;;;; Key bindings
19626 ;; Outline functions from `outline-mode-prefix-map'
19627 ;; that can be remapped in Org:
19628 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19629 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19630 (define-key org-mode-map [remap outline-forward-same-level]
19631 'org-forward-heading-same-level)
19632 (define-key org-mode-map [remap outline-backward-same-level]
19633 'org-backward-heading-same-level)
19634 (define-key org-mode-map [remap show-branches]
19635 'org-kill-note-or-show-branches)
19636 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19637 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19638 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19639 (define-key org-mode-map [remap outline-next-visible-heading]
19640 'org-next-visible-heading)
19641 (define-key org-mode-map [remap outline-previous-visible-heading]
19642 'org-previous-visible-heading)
19644 ;; Outline functions from `outline-mode-prefix-map' that can not
19645 ;; be remapped in Org:
19647 ;; - the column "key binding" shows whether the Outline function is still
19648 ;; available in Org mode on the same key that it has been bound to in
19649 ;; Outline mode:
19650 ;; - "overridden": key used for a different functionality in Org mode
19651 ;; - else: key still bound to the same Outline function in Org mode
19653 ;; | Outline function | key binding | Org replacement |
19654 ;; |------------------------------------+-------------+--------------------------|
19655 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19656 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19657 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19658 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19659 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19660 ;; | `show-entry' | overridden | no replacement |
19661 ;; | `show-children' | `C-c C-i' | visibility cycling |
19662 ;; | `show-branches' | `C-c C-k' | still same function |
19663 ;; | `show-subtree' | overridden | visibility cycling |
19664 ;; | `show-all' | overridden | no replacement |
19665 ;; | `hide-subtree' | overridden | visibility cycling |
19666 ;; | `hide-body' | overridden | no replacement |
19667 ;; | `hide-entry' | overridden | visibility cycling |
19668 ;; | `hide-leaves' | overridden | no replacement |
19669 ;; | `hide-sublevels' | overridden | no replacement |
19670 ;; | `hide-other' | overridden | no replacement |
19672 ;; Make `C-c C-x' a prefix key
19673 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19675 ;; TAB key with modifiers
19676 (org-defkey org-mode-map "\C-i" 'org-cycle)
19677 (org-defkey org-mode-map [(tab)] 'org-cycle)
19678 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19679 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19680 ;; The following line is necessary under Suse GNU/Linux
19681 (unless (featurep 'xemacs)
19682 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19683 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19684 (define-key org-mode-map [backtab] 'org-shifttab)
19686 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19687 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19688 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19690 ;; Cursor keys with modifiers
19691 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19692 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19693 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19694 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19696 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19697 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19698 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19699 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19700 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19701 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19703 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19704 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19705 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19706 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19708 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19709 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19710 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19711 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19713 ;; Babel keys
19714 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19715 (mapc (lambda (pair)
19716 (define-key org-babel-map (car pair) (cdr pair)))
19717 org-babel-key-bindings)
19719 ;;; Extra keys for tty access.
19720 ;; We only set them when really needed because otherwise the
19721 ;; menus don't show the simple keys
19723 (when (or org-use-extra-keys
19724 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19725 (not window-system))
19726 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19727 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19728 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19729 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19730 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19731 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19732 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19733 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19734 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19735 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19736 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19737 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19738 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19739 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19740 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19741 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19742 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19743 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19744 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19745 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19746 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19747 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19748 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19749 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19750 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19751 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19752 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19753 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19755 ;; All the other keys
19757 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19758 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19759 (if (boundp 'narrow-map)
19760 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19761 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19762 (if (boundp 'narrow-map)
19763 (org-defkey narrow-map "b" 'org-narrow-to-block)
19764 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19765 (if (boundp 'narrow-map)
19766 (org-defkey narrow-map "e" 'org-narrow-to-element)
19767 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19768 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19769 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19770 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19771 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19772 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19773 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19774 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19775 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19776 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19777 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19778 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19779 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19780 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19781 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19782 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19783 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19784 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19785 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19786 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19787 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19788 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19789 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19790 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19791 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19792 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19793 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19794 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19795 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19796 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19797 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19798 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19799 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19800 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19801 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19802 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19803 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19804 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19805 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19806 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19807 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19808 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19809 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19810 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19811 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19812 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19813 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19814 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19815 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19816 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19817 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19818 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19819 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19820 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19821 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19822 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19823 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19824 (org-defkey org-mode-map "\C-c^" 'org-sort)
19825 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19826 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19827 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19828 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19829 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19830 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19831 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19832 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19833 (org-defkey org-mode-map "\C-m" 'org-return)
19834 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19835 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19836 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19837 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19838 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19839 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19840 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19841 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19842 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19843 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19844 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19845 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19846 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19847 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19848 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19849 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19850 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19851 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19852 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19853 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19854 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19855 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19856 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19857 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19858 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19860 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19861 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19862 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19864 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19865 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19866 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19867 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19868 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19869 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19870 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19871 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19872 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19873 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19874 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19875 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19876 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19877 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19878 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19879 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19880 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19881 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19882 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19883 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19884 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19885 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19887 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19888 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19889 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19890 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19891 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19893 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19895 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19897 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19898 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19900 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19903 (when (featurep 'xemacs)
19904 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19907 (defconst org-speed-commands-default
19909 ("Outline Navigation")
19910 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19911 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19912 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19913 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19914 ("F" . org-next-block)
19915 ("B" . org-previous-block)
19916 ("u" . (org-speed-move-safe 'outline-up-heading))
19917 ("j" . org-goto)
19918 ("g" . (org-refile t))
19919 ("Outline Visibility")
19920 ("c" . org-cycle)
19921 ("C" . org-shifttab)
19922 (" " . org-display-outline-path)
19923 ("s" . org-narrow-to-subtree)
19924 ("=" . org-columns)
19925 ("Outline Structure Editing")
19926 ("U" . org-metaup)
19927 ("D" . org-metadown)
19928 ("r" . org-metaright)
19929 ("l" . org-metaleft)
19930 ("R" . org-shiftmetaright)
19931 ("L" . org-shiftmetaleft)
19932 ("i" . (progn (forward-char 1) (call-interactively
19933 'org-insert-heading-respect-content)))
19934 ("^" . org-sort)
19935 ("w" . org-refile)
19936 ("a" . org-archive-subtree-default-with-confirmation)
19937 ("@" . org-mark-subtree)
19938 ("#" . org-toggle-comment)
19939 ("Clock Commands")
19940 ("I" . org-clock-in)
19941 ("O" . org-clock-out)
19942 ("Meta Data Editing")
19943 ("t" . org-todo)
19944 ("," . (org-priority))
19945 ("0" . (org-priority ?\ ))
19946 ("1" . (org-priority ?A))
19947 ("2" . (org-priority ?B))
19948 ("3" . (org-priority ?C))
19949 (":" . org-set-tags-command)
19950 ("e" . org-set-effort)
19951 ("E" . org-inc-effort)
19952 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19953 (org-entry-put (point) "APPT_WARNTIME" m)))
19954 ("Agenda Views etc")
19955 ("v" . org-agenda)
19956 ("/" . org-sparse-tree)
19957 ("Misc")
19958 ("o" . org-open-at-point)
19959 ("?" . org-speed-command-help)
19960 ("<" . (org-agenda-set-restriction-lock 'subtree))
19961 (">" . (org-agenda-remove-restriction-lock))
19963 "The default speed commands.")
19965 (defun org-print-speed-command (e)
19966 (if (> (length (car e)) 1)
19967 (progn
19968 (princ "\n")
19969 (princ (car e))
19970 (princ "\n")
19971 (princ (make-string (length (car e)) ?-))
19972 (princ "\n"))
19973 (princ (car e))
19974 (princ " ")
19975 (if (symbolp (cdr e))
19976 (princ (symbol-name (cdr e)))
19977 (prin1 (cdr e)))
19978 (princ "\n")))
19980 (defun org-speed-command-help ()
19981 "Show the available speed commands."
19982 (interactive)
19983 (if (not org-use-speed-commands)
19984 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19985 (with-output-to-temp-buffer "*Help*"
19986 (princ "User-defined Speed commands\n===========================\n")
19987 (mapc 'org-print-speed-command org-speed-commands-user)
19988 (princ "\n")
19989 (princ "Built-in Speed commands\n=======================\n")
19990 (mapc 'org-print-speed-command org-speed-commands-default))
19991 (with-current-buffer "*Help*"
19992 (setq truncate-lines t))))
19994 (defun org-speed-move-safe (cmd)
19995 "Execute CMD, but make sure that the cursor always ends up in a headline.
19996 If not, return to the original position and throw an error."
19997 (interactive)
19998 (let ((pos (point)))
19999 (call-interactively cmd)
20000 (unless (and (bolp) (org-at-heading-p))
20001 (goto-char pos)
20002 (error "Boundary reached while executing %s" cmd))))
20004 (defvar org-self-insert-command-undo-counter 0)
20006 (defvar org-table-auto-blank-field) ; defined in org-table.el
20007 (defvar org-speed-command nil)
20009 (define-obsolete-function-alias
20010 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20012 (defun org-speed-command-activate (keys)
20013 "Hook for activating single-letter speed commands.
20014 `org-speed-commands-default' specifies a minimal command set.
20015 Use `org-speed-commands-user' for further customization."
20016 (when (or (and (bolp) (looking-at org-outline-regexp))
20017 (and (functionp org-use-speed-commands)
20018 (funcall org-use-speed-commands)))
20019 (cdr (assoc keys (append org-speed-commands-user
20020 org-speed-commands-default)))))
20022 (define-obsolete-function-alias
20023 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20025 (defun org-babel-speed-command-activate (keys)
20026 "Hook for activating single-letter code block commands."
20027 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20028 (cdr (assoc keys org-babel-key-bindings))))
20030 (defcustom org-speed-command-hook
20031 '(org-speed-command-default-hook org-babel-speed-command-hook)
20032 "Hook for activating speed commands at strategic locations.
20033 Hook functions are called in sequence until a valid handler is
20034 found.
20036 Each hook takes a single argument, a user-pressed command key
20037 which is also a `self-insert-command' from the global map.
20039 Within the hook, examine the cursor position and the command key
20040 and return nil or a valid handler as appropriate. Handler could
20041 be one of an interactive command, a function, or a form.
20043 Set `org-use-speed-commands' to non-nil value to enable this
20044 hook. The default setting is `org-speed-command-activate'."
20045 :group 'org-structure
20046 :version "24.1"
20047 :type 'hook)
20049 (defun org-self-insert-command (N)
20050 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20051 If the cursor is in a table looking at whitespace, the whitespace is
20052 overwritten, and the table is not marked as requiring realignment."
20053 (interactive "p")
20054 (org-check-before-invisible-edit 'insert)
20055 (cond
20056 ((and org-use-speed-commands
20057 (let ((kv (this-command-keys-vector)))
20058 (setq org-speed-command
20059 (run-hook-with-args-until-success
20060 'org-speed-command-hook
20061 (make-string 1 (aref kv (1- (length kv))))))))
20062 (cond
20063 ((commandp org-speed-command)
20064 (setq this-command org-speed-command)
20065 (call-interactively org-speed-command))
20066 ((functionp org-speed-command)
20067 (funcall org-speed-command))
20068 ((and org-speed-command (listp org-speed-command))
20069 (eval org-speed-command))
20070 (t (let (org-use-speed-commands)
20071 (call-interactively 'org-self-insert-command)))))
20072 ((and
20073 (org-table-p)
20074 (progn
20075 ;; check if we blank the field, and if that triggers align
20076 (and (featurep 'org-table) org-table-auto-blank-field
20077 (memq last-command
20078 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20079 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
20080 ;; got extra space, this field does not determine column width
20081 (let (org-table-may-need-update) (org-table-blank-field))
20082 ;; no extra space, this field may determine column width
20083 (org-table-blank-field)))
20085 (eq N 1)
20086 (looking-at "[^|\n]* |"))
20087 (let (org-table-may-need-update)
20088 (goto-char (1- (match-end 0)))
20089 (backward-delete-char 1)
20090 (goto-char (match-beginning 0))
20091 (self-insert-command N)))
20093 (setq org-table-may-need-update t)
20094 (self-insert-command N)
20095 (org-fix-tags-on-the-fly)
20096 (if org-self-insert-cluster-for-undo
20097 (if (not (eq last-command 'org-self-insert-command))
20098 (setq org-self-insert-command-undo-counter 1)
20099 (if (>= org-self-insert-command-undo-counter 20)
20100 (setq org-self-insert-command-undo-counter 1)
20101 (and (> org-self-insert-command-undo-counter 0)
20102 buffer-undo-list (listp buffer-undo-list)
20103 (not (cadr buffer-undo-list)) ; remove nil entry
20104 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20105 (setq org-self-insert-command-undo-counter
20106 (1+ org-self-insert-command-undo-counter))))))))
20108 (defun org-check-before-invisible-edit (kind)
20109 "Check is editing if kind KIND would be dangerous with invisible text around.
20110 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20111 ;; First, try to get out of here as quickly as possible, to reduce overhead
20112 (if (and org-catch-invisible-edits
20113 (or (not (boundp 'visible-mode)) (not visible-mode))
20114 (or (get-char-property (point) 'invisible)
20115 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20116 ;; OK, we need to take a closer look
20117 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20118 (invisible-before-point (if (bobp) nil (get-char-property
20119 (1- (point)) 'invisible)))
20120 (border-and-ok-direction
20122 ;; Check if we are acting predictably before invisible text
20123 (and invisible-at-point (not invisible-before-point)
20124 (memq kind '(insert delete-backward)))
20125 ;; Check if we are acting predictably after invisible text
20126 ;; This works not well, and I have turned it off. It seems
20127 ;; better to always show and stop after invisible text.
20128 ;; (and (not invisible-at-point) invisible-before-point
20129 ;; (memq kind '(insert delete)))
20131 (when (or (memq invisible-at-point '(outline org-hide-block t))
20132 (memq invisible-before-point '(outline org-hide-block t)))
20133 (if (eq org-catch-invisible-edits 'error)
20134 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20135 (if (and org-custom-properties-overlays
20136 (y-or-n-p "Display invisible properties in this buffer? "))
20137 (org-toggle-custom-properties-visibility)
20138 ;; Make the area visible
20139 (save-excursion
20140 (if invisible-before-point
20141 (goto-char (previous-single-char-property-change
20142 (point) 'invisible)))
20143 (show-subtree))
20144 (cond
20145 ((eq org-catch-invisible-edits 'show)
20146 ;; That's it, we do the edit after showing
20147 (message
20148 "Unfolding invisible region around point before editing")
20149 (sit-for 1))
20150 ((and (eq org-catch-invisible-edits 'smart)
20151 border-and-ok-direction)
20152 (message "Unfolding invisible region around point before editing"))
20154 ;; Don't do the edit, make the user repeat it in full visibility
20155 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20157 (defun org-fix-tags-on-the-fly ()
20158 (when (and (equal (char-after (point-at-bol)) ?*)
20159 (org-at-heading-p))
20160 (org-align-tags-here org-tags-column)))
20162 (defun org-delete-backward-char (N)
20163 "Like `delete-backward-char', insert whitespace at field end in tables.
20164 When deleting backwards, in tables this function will insert whitespace in
20165 front of the next \"|\" separator, to keep the table aligned. The table will
20166 still be marked for re-alignment if the field did fill the entire column,
20167 because, in this case the deletion might narrow the column."
20168 (interactive "p")
20169 (save-match-data
20170 (org-check-before-invisible-edit 'delete-backward)
20171 (if (and (org-table-p)
20172 (eq N 1)
20173 (string-match "|" (buffer-substring (point-at-bol) (point)))
20174 (looking-at ".*?|"))
20175 (let ((pos (point))
20176 (noalign (looking-at "[^|\n\r]* |"))
20177 (c org-table-may-need-update))
20178 (backward-delete-char N)
20179 (if (not overwrite-mode)
20180 (progn
20181 (skip-chars-forward "^|")
20182 (insert " ")
20183 (goto-char (1- pos))))
20184 ;; noalign: if there were two spaces at the end, this field
20185 ;; does not determine the width of the column.
20186 (if noalign (setq org-table-may-need-update c)))
20187 (backward-delete-char N)
20188 (org-fix-tags-on-the-fly))))
20190 (defun org-delete-char (N)
20191 "Like `delete-char', but insert whitespace at field end in tables.
20192 When deleting characters, in tables this function will insert whitespace in
20193 front of the next \"|\" separator, to keep the table aligned. The table will
20194 still be marked for re-alignment if the field did fill the entire column,
20195 because, in this case the deletion might narrow the column."
20196 (interactive "p")
20197 (save-match-data
20198 (org-check-before-invisible-edit 'delete)
20199 (if (and (org-table-p)
20200 (not (bolp))
20201 (not (= (char-after) ?|))
20202 (eq N 1))
20203 (if (looking-at ".*?|")
20204 (let ((pos (point))
20205 (noalign (looking-at "[^|\n\r]* |"))
20206 (c org-table-may-need-update))
20207 (replace-match
20208 (concat (substring (match-string 0) 1 -1) " |") nil t)
20209 (goto-char pos)
20210 ;; noalign: if there were two spaces at the end, this field
20211 ;; does not determine the width of the column.
20212 (if noalign (setq org-table-may-need-update c)))
20213 (delete-char N))
20214 (delete-char N)
20215 (org-fix-tags-on-the-fly))))
20217 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20218 (put 'org-self-insert-command 'delete-selection
20219 (lambda ()
20220 (not (run-hook-with-args-until-success
20221 'self-insert-uses-region-functions))))
20222 (put 'orgtbl-self-insert-command 'delete-selection
20223 (lambda ()
20224 (not (run-hook-with-args-until-success
20225 'self-insert-uses-region-functions))))
20226 (put 'org-delete-char 'delete-selection 'supersede)
20227 (put 'org-delete-backward-char 'delete-selection 'supersede)
20228 (put 'org-yank 'delete-selection 'yank)
20230 ;; Make `flyspell-mode' delay after some commands
20231 (put 'org-self-insert-command 'flyspell-delayed t)
20232 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20233 (put 'org-delete-char 'flyspell-delayed t)
20234 (put 'org-delete-backward-char 'flyspell-delayed t)
20236 ;; Make pabbrev-mode expand after org-mode commands
20237 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20238 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20240 (defun org-remap (map &rest commands)
20241 "In MAP, remap the functions given in COMMANDS.
20242 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20243 (let (new old)
20244 (while commands
20245 (setq old (pop commands) new (pop commands))
20246 (if (fboundp 'command-remapping)
20247 (org-defkey map (vector 'remap old) new)
20248 (substitute-key-definition old new map global-map)))))
20250 (defun org-transpose-words ()
20251 "Transpose words for Org.
20252 This uses the `org-mode-transpose-word-syntax-table' syntax
20253 table, which interprets characters in `org-emphasis-alist' as
20254 word constituents."
20255 (interactive)
20256 (with-syntax-table org-mode-transpose-word-syntax-table
20257 (call-interactively 'transpose-words)))
20258 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20260 (when (eq org-enable-table-editor 'optimized)
20261 ;; If the user wants maximum table support, we need to hijack
20262 ;; some standard editing functions
20263 (org-remap org-mode-map
20264 'self-insert-command 'org-self-insert-command
20265 'delete-char 'org-delete-char
20266 'delete-backward-char 'org-delete-backward-char)
20267 (org-defkey org-mode-map "|" 'org-force-self-insert))
20269 (defvar org-ctrl-c-ctrl-c-hook nil
20270 "Hook for functions attaching themselves to `C-c C-c'.
20272 This can be used to add additional functionality to the C-c C-c
20273 key which executes context-dependent commands. This hook is run
20274 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20275 run after the last test.
20277 Each function will be called with no arguments. The function
20278 must check if the context is appropriate for it to act. If yes,
20279 it should do its thing and then return a non-nil value. If the
20280 context is wrong, just do nothing and return nil.")
20282 (defvar org-ctrl-c-ctrl-c-final-hook nil
20283 "Hook for functions attaching themselves to `C-c C-c'.
20285 This can be used to add additional functionality to the C-c C-c
20286 key which executes context-dependent commands. This hook is run
20287 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20288 before the first test.
20290 Each function will be called with no arguments. The function
20291 must check if the context is appropriate for it to act. If yes,
20292 it should do its thing and then return a non-nil value. If the
20293 context is wrong, just do nothing and return nil.")
20295 (defvar org-tab-first-hook nil
20296 "Hook for functions to attach themselves to TAB.
20297 See `org-ctrl-c-ctrl-c-hook' for more information.
20298 This hook runs as the first action when TAB is pressed, even before
20299 `org-cycle' messes around with the `outline-regexp' to cater for
20300 inline tasks and plain list item folding.
20301 If any function in this hook returns t, any other actions that
20302 would have been caused by TAB (such as table field motion or visibility
20303 cycling) will not occur.")
20305 (defvar org-tab-after-check-for-table-hook nil
20306 "Hook for functions to attach themselves to TAB.
20307 See `org-ctrl-c-ctrl-c-hook' for more information.
20308 This hook runs after it has been established that the cursor is not in a
20309 table, but before checking if the cursor is in a headline or if global cycling
20310 should be done.
20311 If any function in this hook returns t, not other actions like visibility
20312 cycling will be done.")
20314 (defvar org-tab-after-check-for-cycling-hook nil
20315 "Hook for functions to attach themselves to TAB.
20316 See `org-ctrl-c-ctrl-c-hook' for more information.
20317 This hook runs after it has been established that not table field motion and
20318 not visibility should be done because of current context. This is probably
20319 the place where a package like yasnippets can hook in.")
20321 (defvar org-tab-before-tab-emulation-hook nil
20322 "Hook for functions to attach themselves to TAB.
20323 See `org-ctrl-c-ctrl-c-hook' for more information.
20324 This hook runs after every other options for TAB have been exhausted, but
20325 before indentation and \t insertion takes place.")
20327 (defvar org-metaleft-hook nil
20328 "Hook for functions attaching themselves to `M-left'.
20329 See `org-ctrl-c-ctrl-c-hook' for more information.")
20330 (defvar org-metaright-hook nil
20331 "Hook for functions attaching themselves to `M-right'.
20332 See `org-ctrl-c-ctrl-c-hook' for more information.")
20333 (defvar org-metaup-hook nil
20334 "Hook for functions attaching themselves to `M-up'.
20335 See `org-ctrl-c-ctrl-c-hook' for more information.")
20336 (defvar org-metadown-hook nil
20337 "Hook for functions attaching themselves to `M-down'.
20338 See `org-ctrl-c-ctrl-c-hook' for more information.")
20339 (defvar org-shiftmetaleft-hook nil
20340 "Hook for functions attaching themselves to `M-S-left'.
20341 See `org-ctrl-c-ctrl-c-hook' for more information.")
20342 (defvar org-shiftmetaright-hook nil
20343 "Hook for functions attaching themselves to `M-S-right'.
20344 See `org-ctrl-c-ctrl-c-hook' for more information.")
20345 (defvar org-shiftmetaup-hook nil
20346 "Hook for functions attaching themselves to `M-S-up'.
20347 See `org-ctrl-c-ctrl-c-hook' for more information.")
20348 (defvar org-shiftmetadown-hook nil
20349 "Hook for functions attaching themselves to `M-S-down'.
20350 See `org-ctrl-c-ctrl-c-hook' for more information.")
20351 (defvar org-metareturn-hook nil
20352 "Hook for functions attaching themselves to `M-RET'.
20353 See `org-ctrl-c-ctrl-c-hook' for more information.")
20354 (defvar org-shiftup-hook nil
20355 "Hook for functions attaching themselves to `S-up'.
20356 See `org-ctrl-c-ctrl-c-hook' for more information.")
20357 (defvar org-shiftup-final-hook nil
20358 "Hook for functions attaching themselves to `S-up'.
20359 This one runs after all other options except shift-select have been excluded.
20360 See `org-ctrl-c-ctrl-c-hook' for more information.")
20361 (defvar org-shiftdown-hook nil
20362 "Hook for functions attaching themselves to `S-down'.
20363 See `org-ctrl-c-ctrl-c-hook' for more information.")
20364 (defvar org-shiftdown-final-hook nil
20365 "Hook for functions attaching themselves to `S-down'.
20366 This one runs after all other options except shift-select have been excluded.
20367 See `org-ctrl-c-ctrl-c-hook' for more information.")
20368 (defvar org-shiftleft-hook nil
20369 "Hook for functions attaching themselves to `S-left'.
20370 See `org-ctrl-c-ctrl-c-hook' for more information.")
20371 (defvar org-shiftleft-final-hook nil
20372 "Hook for functions attaching themselves to `S-left'.
20373 This one runs after all other options except shift-select have been excluded.
20374 See `org-ctrl-c-ctrl-c-hook' for more information.")
20375 (defvar org-shiftright-hook nil
20376 "Hook for functions attaching themselves to `S-right'.
20377 See `org-ctrl-c-ctrl-c-hook' for more information.")
20378 (defvar org-shiftright-final-hook nil
20379 "Hook for functions attaching themselves to `S-right'.
20380 This one runs after all other options except shift-select have been excluded.
20381 See `org-ctrl-c-ctrl-c-hook' for more information.")
20383 (defun org-modifier-cursor-error ()
20384 "Throw an error, a modified cursor command was applied in wrong context."
20385 (user-error "This command is active in special context like tables, headlines or items"))
20387 (defun org-shiftselect-error ()
20388 "Throw an error because Shift-Cursor command was applied in wrong context."
20389 (if (and (boundp 'shift-select-mode) shift-select-mode)
20390 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20391 (user-error "This command works only in special context like headlines or timestamps")))
20393 (defun org-call-for-shift-select (cmd)
20394 (let ((this-command-keys-shift-translated t))
20395 (call-interactively cmd)))
20397 (defun org-shifttab (&optional arg)
20398 "Global visibility cycling or move to previous table field.
20399 Call `org-table-previous-field' within a table.
20400 When ARG is nil, cycle globally through visibility states.
20401 When ARG is a numeric prefix, show contents of this level."
20402 (interactive "P")
20403 (cond
20404 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20405 ((integerp arg)
20406 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20407 (message "Content view to level: %d" arg)
20408 (org-content (prefix-numeric-value arg2))
20409 (org-cycle-show-empty-lines t)
20410 (setq org-cycle-global-status 'overview)))
20411 (t (call-interactively 'org-global-cycle))))
20413 (defun org-shiftmetaleft ()
20414 "Promote subtree or delete table column.
20415 Calls `org-promote-subtree', `org-outdent-item-tree', or
20416 `org-table-delete-column', depending on context. See the
20417 individual commands for more information."
20418 (interactive)
20419 (cond
20420 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20421 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20422 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20423 ((if (not (org-region-active-p)) (org-at-item-p)
20424 (save-excursion (goto-char (region-beginning))
20425 (org-at-item-p)))
20426 (call-interactively 'org-outdent-item-tree))
20427 (t (org-modifier-cursor-error))))
20429 (defun org-shiftmetaright ()
20430 "Demote subtree or insert table column.
20431 Calls `org-demote-subtree', `org-indent-item-tree', or
20432 `org-table-insert-column', depending on context. See the
20433 individual commands for more information."
20434 (interactive)
20435 (cond
20436 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20437 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20438 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20439 ((if (not (org-region-active-p)) (org-at-item-p)
20440 (save-excursion (goto-char (region-beginning))
20441 (org-at-item-p)))
20442 (call-interactively 'org-indent-item-tree))
20443 (t (org-modifier-cursor-error))))
20445 (defun org-shiftmetaup (&optional arg)
20446 "Drag the line at point up.
20447 In a table, kill the current row.
20448 On a clock timestamp, update the value of the timestamp like `S-<up>'
20449 but also adjust the previous clocked item in the clock history.
20450 Everywhere else, drag the line at point up."
20451 (interactive "P")
20452 (cond
20453 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20454 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20455 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20456 (call-interactively 'org-timestamp-up)))
20457 (t (call-interactively 'org-drag-line-backward))))
20459 (defun org-shiftmetadown (&optional arg)
20460 "Drag the line at point down.
20461 In a table, insert an empty row at the current line.
20462 On a clock timestamp, update the value of the timestamp like `S-<down>'
20463 but also adjust the previous clocked item in the clock history.
20464 Everywhere else, drag the line at point down."
20465 (interactive "P")
20466 (cond
20467 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20468 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20469 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20470 (call-interactively 'org-timestamp-down)))
20471 (t (call-interactively 'org-drag-line-forward))))
20473 (defsubst org-hidden-tree-error ()
20474 (user-error
20475 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20477 (defun org-metaleft (&optional arg)
20478 "Promote heading, list item at point or move table column left.
20480 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20481 depending on context. With no specific context, calls the Emacs
20482 default `backward-word'. See the individual commands for more
20483 information.
20485 This function runs the hook `org-metaleft-hook' as a first step,
20486 and returns at first non-nil value."
20487 (interactive "P")
20488 (cond
20489 ((run-hook-with-args-until-success 'org-metaleft-hook))
20490 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20491 ((org-with-limited-levels
20492 (or (org-at-heading-p)
20493 (and (org-region-active-p)
20494 (save-excursion
20495 (goto-char (region-beginning))
20496 (org-at-heading-p)))))
20497 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20498 (call-interactively 'org-do-promote))
20499 ;; At an inline task.
20500 ((org-at-heading-p)
20501 (call-interactively 'org-inlinetask-promote))
20502 ((or (org-at-item-p)
20503 (and (org-region-active-p)
20504 (save-excursion
20505 (goto-char (region-beginning))
20506 (org-at-item-p))))
20507 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20508 (call-interactively 'org-outdent-item))
20509 (t (call-interactively 'backward-word))))
20511 (defun org-metaright (&optional arg)
20512 "Demote heading, list item at point or move table column right.
20514 In front of a drawer or a block keyword, indent it correctly.
20516 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20517 `org-indnet-drawer' or `org-indent-block' depending on context.
20518 With no specific context, calls the Emacs default `forward-word'.
20519 See the individual commands for more information.
20521 This function runs the hook `org-metaright-hook' as a first step,
20522 and returns at first non-nil value."
20523 (interactive "P")
20524 (cond
20525 ((run-hook-with-args-until-success 'org-metaright-hook))
20526 ((org-at-table-p) (call-interactively 'org-table-move-column))
20527 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20528 ((org-at-block-p) (call-interactively 'org-indent-block))
20529 ((org-with-limited-levels
20530 (or (org-at-heading-p)
20531 (and (org-region-active-p)
20532 (save-excursion
20533 (goto-char (region-beginning))
20534 (org-at-heading-p)))))
20535 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20536 (call-interactively 'org-do-demote))
20537 ;; At an inline task.
20538 ((org-at-heading-p)
20539 (call-interactively 'org-inlinetask-demote))
20540 ((or (org-at-item-p)
20541 (and (org-region-active-p)
20542 (save-excursion
20543 (goto-char (region-beginning))
20544 (org-at-item-p))))
20545 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20546 (call-interactively 'org-indent-item))
20547 (t (call-interactively 'forward-word))))
20549 (defun org-check-for-hidden (what)
20550 "Check if there are hidden headlines/items in the current visual line.
20551 WHAT can be either `headlines' or `items'. If the current line is
20552 an outline or item heading and it has a folded subtree below it,
20553 this function returns t, nil otherwise."
20554 (let ((re (cond
20555 ((eq what 'headlines) org-outline-regexp-bol)
20556 ((eq what 'items) (org-item-beginning-re))
20557 (t (error "This should not happen"))))
20558 beg end)
20559 (save-excursion
20560 (catch 'exit
20561 (unless (org-region-active-p)
20562 (setq beg (point-at-bol))
20563 (beginning-of-line 2)
20564 (while (and (not (eobp)) ;; this is like `next-line'
20565 (get-char-property (1- (point)) 'invisible))
20566 (beginning-of-line 2))
20567 (setq end (point))
20568 (goto-char beg)
20569 (goto-char (point-at-eol))
20570 (setq end (max end (point)))
20571 (while (re-search-forward re end t)
20572 (if (get-char-property (match-beginning 0) 'invisible)
20573 (throw 'exit t))))
20574 nil))))
20576 (defun org-metaup (&optional arg)
20577 "Move subtree up or move table row up.
20578 Calls `org-move-subtree-up' or `org-table-move-row' or
20579 `org-move-item-up', depending on context. See the individual commands
20580 for more information."
20581 (interactive "P")
20582 (cond
20583 ((run-hook-with-args-until-success 'org-metaup-hook))
20584 ((org-region-active-p)
20585 (let* ((a (min (region-beginning) (region-end)))
20586 (b (1- (max (region-beginning) (region-end))))
20587 (c (save-excursion (goto-char a)
20588 (move-beginning-of-line 0)))
20589 (d (save-excursion (goto-char a)
20590 (move-end-of-line 0) (point))))
20591 (transpose-regions a b c d)
20592 (goto-char c)))
20593 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20594 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20595 ((org-at-item-p) (call-interactively 'org-move-item-up))
20596 (t (org-drag-element-backward))))
20598 (defun org-metadown (&optional arg)
20599 "Move subtree down or move table row down.
20600 Calls `org-move-subtree-down' or `org-table-move-row' or
20601 `org-move-item-down', depending on context. See the individual
20602 commands for more information."
20603 (interactive "P")
20604 (cond
20605 ((run-hook-with-args-until-success 'org-metadown-hook))
20606 ((org-region-active-p)
20607 (let* ((a (min (region-beginning) (region-end)))
20608 (b (max (region-beginning) (region-end)))
20609 (c (save-excursion (goto-char b)
20610 (move-beginning-of-line 1)))
20611 (d (save-excursion (goto-char b)
20612 (move-end-of-line 1) (1+ (point)))))
20613 (transpose-regions a b c d)
20614 (goto-char d)))
20615 ((org-at-table-p) (call-interactively 'org-table-move-row))
20616 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20617 ((org-at-item-p) (call-interactively 'org-move-item-down))
20618 (t (org-drag-element-forward))))
20620 (defun org-shiftup (&optional arg)
20621 "Increase item in timestamp or increase priority of current headline.
20622 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20623 depending on context. See the individual commands for more information."
20624 (interactive "P")
20625 (cond
20626 ((run-hook-with-args-until-success 'org-shiftup-hook))
20627 ((and org-support-shift-select (org-region-active-p))
20628 (org-call-for-shift-select 'previous-line))
20629 ((org-at-timestamp-p t)
20630 (call-interactively (if org-edit-timestamp-down-means-later
20631 'org-timestamp-down 'org-timestamp-up)))
20632 ((and (not (eq org-support-shift-select 'always))
20633 org-enable-priority-commands
20634 (org-at-heading-p))
20635 (call-interactively 'org-priority-up))
20636 ((and (not org-support-shift-select) (org-at-item-p))
20637 (call-interactively 'org-previous-item))
20638 ((org-clocktable-try-shift 'up arg))
20639 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20640 (org-support-shift-select
20641 (org-call-for-shift-select 'previous-line))
20642 (t (org-shiftselect-error))))
20644 (defun org-shiftdown (&optional arg)
20645 "Decrease item in timestamp or decrease priority of current headline.
20646 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20647 depending on context. See the individual commands for more information."
20648 (interactive "P")
20649 (cond
20650 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20651 ((and org-support-shift-select (org-region-active-p))
20652 (org-call-for-shift-select 'next-line))
20653 ((org-at-timestamp-p t)
20654 (call-interactively (if org-edit-timestamp-down-means-later
20655 'org-timestamp-up 'org-timestamp-down)))
20656 ((and (not (eq org-support-shift-select 'always))
20657 org-enable-priority-commands
20658 (org-at-heading-p))
20659 (call-interactively 'org-priority-down))
20660 ((and (not org-support-shift-select) (org-at-item-p))
20661 (call-interactively 'org-next-item))
20662 ((org-clocktable-try-shift 'down arg))
20663 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20664 (org-support-shift-select
20665 (org-call-for-shift-select 'next-line))
20666 (t (org-shiftselect-error))))
20668 (defun org-shiftright (&optional arg)
20669 "Cycle the thing at point or in the current line, depending on context.
20670 Depending on context, this does one of the following:
20672 - switch a timestamp at point one day into the future
20673 - on a headline, switch to the next TODO keyword.
20674 - on an item, switch entire list to the next bullet type
20675 - on a property line, switch to the next allowed value
20676 - on a clocktable definition line, move time block into the future"
20677 (interactive "P")
20678 (cond
20679 ((run-hook-with-args-until-success 'org-shiftright-hook))
20680 ((and org-support-shift-select (org-region-active-p))
20681 (org-call-for-shift-select 'forward-char))
20682 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20683 ((and (not (eq org-support-shift-select 'always))
20684 (org-at-heading-p))
20685 (let ((org-inhibit-logging
20686 (not org-treat-S-cursor-todo-selection-as-state-change))
20687 (org-inhibit-blocking
20688 (not org-treat-S-cursor-todo-selection-as-state-change)))
20689 (org-call-with-arg 'org-todo 'right)))
20690 ((or (and org-support-shift-select
20691 (not (eq org-support-shift-select 'always))
20692 (org-at-item-bullet-p))
20693 (and (not org-support-shift-select) (org-at-item-p)))
20694 (org-call-with-arg 'org-cycle-list-bullet nil))
20695 ((and (not (eq org-support-shift-select 'always))
20696 (org-at-property-p))
20697 (call-interactively 'org-property-next-allowed-value))
20698 ((org-clocktable-try-shift 'right arg))
20699 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20700 (org-support-shift-select
20701 (org-call-for-shift-select 'forward-char))
20702 (t (org-shiftselect-error))))
20704 (defun org-shiftleft (&optional arg)
20705 "Cycle the thing at point or in the current line, depending on context.
20706 Depending on context, this does one of the following:
20708 - switch a timestamp at point one day into the past
20709 - on a headline, switch to the previous TODO keyword.
20710 - on an item, switch entire list to the previous bullet type
20711 - on a property line, switch to the previous allowed value
20712 - on a clocktable definition line, move time block into the past"
20713 (interactive "P")
20714 (cond
20715 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20716 ((and org-support-shift-select (org-region-active-p))
20717 (org-call-for-shift-select 'backward-char))
20718 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20719 ((and (not (eq org-support-shift-select 'always))
20720 (org-at-heading-p))
20721 (let ((org-inhibit-logging
20722 (not org-treat-S-cursor-todo-selection-as-state-change))
20723 (org-inhibit-blocking
20724 (not org-treat-S-cursor-todo-selection-as-state-change)))
20725 (org-call-with-arg 'org-todo 'left)))
20726 ((or (and org-support-shift-select
20727 (not (eq org-support-shift-select 'always))
20728 (org-at-item-bullet-p))
20729 (and (not org-support-shift-select) (org-at-item-p)))
20730 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20731 ((and (not (eq org-support-shift-select 'always))
20732 (org-at-property-p))
20733 (call-interactively 'org-property-previous-allowed-value))
20734 ((org-clocktable-try-shift 'left arg))
20735 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20736 (org-support-shift-select
20737 (org-call-for-shift-select 'backward-char))
20738 (t (org-shiftselect-error))))
20740 (defun org-shiftcontrolright ()
20741 "Switch to next TODO set."
20742 (interactive)
20743 (cond
20744 ((and org-support-shift-select (org-region-active-p))
20745 (org-call-for-shift-select 'forward-word))
20746 ((and (not (eq org-support-shift-select 'always))
20747 (org-at-heading-p))
20748 (org-call-with-arg 'org-todo 'nextset))
20749 (org-support-shift-select
20750 (org-call-for-shift-select 'forward-word))
20751 (t (org-shiftselect-error))))
20753 (defun org-shiftcontrolleft ()
20754 "Switch to previous TODO set."
20755 (interactive)
20756 (cond
20757 ((and org-support-shift-select (org-region-active-p))
20758 (org-call-for-shift-select 'backward-word))
20759 ((and (not (eq org-support-shift-select 'always))
20760 (org-at-heading-p))
20761 (org-call-with-arg 'org-todo 'previousset))
20762 (org-support-shift-select
20763 (org-call-for-shift-select 'backward-word))
20764 (t (org-shiftselect-error))))
20766 (defun org-shiftcontrolup (&optional n)
20767 "Change timestamps synchronously up in CLOCK log lines.
20768 Optional argument N tells to change by that many units."
20769 (interactive "P")
20770 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20771 (let (org-support-shift-select)
20772 (org-clock-timestamps-up n))
20773 (user-error "Not at a clock log")))
20775 (defun org-shiftcontroldown (&optional n)
20776 "Change timestamps synchronously down in CLOCK log lines.
20777 Optional argument N tells to change by that many units."
20778 (interactive "P")
20779 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20780 (let (org-support-shift-select)
20781 (org-clock-timestamps-down n))
20782 (user-error "Not at a clock log")))
20784 (defun org-increase-number-at-point (&optional inc)
20785 "Increment the number at point.
20786 With an optional prefix numeric argument INC, increment using
20787 this numeric value."
20788 (interactive "p")
20789 (if (not (number-at-point))
20790 (user-error "Not on a number")
20791 (unless inc (setq inc 1))
20792 (let ((pos (point))
20793 (beg (skip-chars-backward "-+^/*0-9eE."))
20794 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20795 (setq nap (buffer-substring-no-properties
20796 (+ pos beg) (+ pos beg end)))
20797 (delete-region (+ pos beg) (+ pos beg end))
20798 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20799 (when (org-at-table-p)
20800 (org-table-align)
20801 (org-table-end-of-field 1))))
20803 (defun org-decrease-number-at-point (&optional inc)
20804 "Decrement the number at point.
20805 With an optional prefix numeric argument INC, decrement using
20806 this numeric value."
20807 (interactive "p")
20808 (org-increase-number-at-point (- inc)))
20810 (defun org-ctrl-c-ret ()
20811 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20812 (interactive)
20813 (cond
20814 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20815 (t (call-interactively 'org-insert-heading))))
20817 (defun org-find-visible ()
20818 (let ((s (point)))
20819 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20820 (get-char-property s 'invisible)))
20822 (defun org-find-invisible ()
20823 (let ((s (point)))
20824 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20825 (not (get-char-property s 'invisible))))
20828 (defun org-copy-visible (beg end)
20829 "Copy the visible parts of the region."
20830 (interactive "r")
20831 (let (snippets s)
20832 (save-excursion
20833 (save-restriction
20834 (narrow-to-region beg end)
20835 (setq s (goto-char (point-min)))
20836 (while (not (= (point) (point-max)))
20837 (goto-char (org-find-invisible))
20838 (push (buffer-substring s (point)) snippets)
20839 (setq s (goto-char (org-find-visible))))))
20840 (kill-new (apply 'concat (nreverse snippets)))))
20842 (defun org-copy-special ()
20843 "Copy region in table or copy current subtree.
20844 Calls `org-table-copy' or `org-copy-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-copy-region 'org-copy-subtree)))
20850 (defun org-cut-special ()
20851 "Cut region in table or cut current subtree.
20852 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20853 See the individual commands for more information."
20854 (interactive)
20855 (call-interactively
20856 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20858 (defun org-paste-special (arg)
20859 "Paste rectangular region into table, or past subtree relative to level.
20860 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20861 See the individual commands for more information."
20862 (interactive "P")
20863 (if (org-at-table-p)
20864 (org-table-paste-rectangle)
20865 (org-paste-subtree arg)))
20867 (defsubst org-in-fixed-width-region-p ()
20868 "Is point in a fixed-width region?"
20869 (save-match-data
20870 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20872 (defun org-edit-special (&optional arg)
20873 "Call a special editor for the element at point.
20874 When at a table, call the formula editor with `org-table-edit-formulas'.
20875 When in a source code block, call `org-edit-src-code'.
20876 When in a fixed-width region, call `org-edit-fixed-width-region'.
20877 When in an export block, call `org-edit-export-block'.
20878 When at an #+INCLUDE keyword, visit the included file.
20879 When at a footnote reference, call `org-edit-footnote-reference'
20880 On a link, call `ffap' to visit the link at point.
20881 Otherwise, return a user error."
20882 (interactive "P")
20883 (let ((element (org-element-at-point)))
20884 (assert (not buffer-read-only) nil
20885 "Buffer is read-only: %s" (buffer-name))
20886 (case (org-element-type element)
20887 (src-block
20888 (if (not arg) (org-edit-src-code)
20889 (let* ((info (org-babel-get-src-block-info))
20890 (lang (nth 0 info))
20891 (params (nth 2 info))
20892 (session (cdr (assq :session params))))
20893 (if (not session) (org-edit-src-code)
20894 ;; At a src-block with a session and function called with
20895 ;; an ARG: switch to the buffer related to the inferior
20896 ;; process.
20897 (switch-to-buffer
20898 (funcall (intern (concat "org-babel-prep-session:" lang))
20899 session params))))))
20900 (keyword
20901 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20902 (org-open-link-from-string
20903 (format "[[%s]]"
20904 (expand-file-name
20905 (let ((value (org-element-property :value element)))
20906 (cond ((not (org-string-nw-p value))
20907 (user-error "No file to edit"))
20908 ((string-match "\\`\"\\(.*?\\)\"" value)
20909 (match-string 1 value))
20910 ((string-match "\\`[^ \t\"]\\S-*" value)
20911 (match-string 0 value))
20912 (t (user-error "No valid file specified")))))))
20913 (user-error "No special environment to edit here")))
20914 (table
20915 (if (eq (org-element-property :type element) 'table.el)
20916 (org-edit-table.el)
20917 (call-interactively 'org-table-edit-formulas)))
20918 ;; Only Org tables contain `table-row' type elements.
20919 (table-row (call-interactively 'org-table-edit-formulas))
20920 (example-block (org-edit-src-code))
20921 (export-block (org-edit-export-block))
20922 (fixed-width (org-edit-fixed-width-region))
20923 (otherwise
20924 ;; No notable element at point. Though, we may be at a link or
20925 ;; a footnote reference, which are objects. Thus, scan deeper.
20926 (let ((context (org-element-context element)))
20927 (case (org-element-type context)
20928 (link (call-interactively #'ffap))
20929 (footnote-reference (org-edit-footnote-reference))
20930 (t (user-error "No special environment to edit here"))))))))
20932 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20933 (defun org-ctrl-c-ctrl-c (&optional arg)
20934 "Set tags in headline, or update according to changed information at point.
20936 This command does many different things, depending on context:
20938 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20939 this is what we do.
20941 - If the cursor is on a statistics cookie, update it.
20943 - If the cursor is in a headline, prompt for tags and insert them
20944 into the current line, aligned to `org-tags-column'. When called
20945 with prefix arg, realign all tags in the current buffer.
20947 - If the cursor is in one of the special #+KEYWORD lines, this
20948 triggers scanning the buffer for these lines and updating the
20949 information.
20951 - If the cursor is inside a table, realign the table. This command
20952 works even if the automatic table editor has been turned off.
20954 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20955 the entire table.
20957 - If the cursor is at a footnote reference or definition, jump to
20958 the corresponding definition or references, respectively.
20960 - If the cursor is a the beginning of a dynamic block, update it.
20962 - If the current buffer is a capture buffer, close note and file it.
20964 - If the cursor is on a <<<target>>>, update radio targets and
20965 corresponding links in this buffer.
20967 - If the cursor is on a numbered item in a plain list, renumber the
20968 ordered list.
20970 - If the cursor is on a checkbox, toggle it.
20972 - If the cursor is on a code block, evaluate it. The variable
20973 `org-confirm-babel-evaluate' can be used to control prompting
20974 before code block evaluation, by default every code block
20975 evaluation requires confirmation. Code block evaluation can be
20976 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20977 (interactive "P")
20978 (cond
20979 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20980 org-occur-highlights)
20981 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20982 (org-remove-occur-highlights)
20983 (message "Temporary highlights/overlays removed from current buffer"))
20984 ((and (local-variable-p 'org-finish-function (current-buffer))
20985 (fboundp org-finish-function))
20986 (funcall org-finish-function))
20987 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20989 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20990 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20991 (user-error "C-c C-c can do nothing useful at this location"))
20992 (let* ((context (org-element-context))
20993 (type (org-element-type context)))
20994 (case type
20995 ;; When at a link, act according to the parent instead.
20996 (link (setq context (org-element-property :parent context))
20997 (setq type (org-element-type context)))
20998 ;; Unsupported object types: refer to the first supported
20999 ;; element or object containing it.
21000 ((bold code entity export-snippet inline-babel-call inline-src-block
21001 italic latex-fragment line-break macro strike-through subscript
21002 superscript underline verbatim)
21003 (setq context
21004 (org-element-lineage
21005 context '(radio-target paragraph verse-block table-cell)))))
21006 ;; For convenience: at the first line of a paragraph on the
21007 ;; same line as an item, apply function on that item instead.
21008 (when (eq type 'paragraph)
21009 (let ((parent (org-element-property :parent context)))
21010 (when (and (eq (org-element-type parent) 'item)
21011 (= (line-beginning-position)
21012 (org-element-property :begin parent)))
21013 (setq context parent type 'item))))
21014 ;; Act according to type of element or object at point.
21015 (case type
21016 (clock (org-clock-update-time-maybe))
21017 (dynamic-block
21018 (save-excursion
21019 (goto-char (org-element-property :post-affiliated context))
21020 (org-update-dblock)))
21021 (footnote-definition
21022 (goto-char (org-element-property :post-affiliated context))
21023 (call-interactively 'org-footnote-action))
21024 (footnote-reference (call-interactively 'org-footnote-action))
21025 ((headline inlinetask)
21026 (save-excursion (goto-char (org-element-property :begin context))
21027 (call-interactively 'org-set-tags)))
21028 (item
21029 ;; At an item: a double C-u set checkbox to "[-]"
21030 ;; unconditionally, whereas a single one will toggle its
21031 ;; presence. Without an universal argument, if the item
21032 ;; has a checkbox, toggle it. Otherwise repair the list.
21033 (let* ((box (org-element-property :checkbox context))
21034 (struct (org-element-property :structure context))
21035 (old-struct (copy-tree struct))
21036 (parents (org-list-parents-alist struct))
21037 (prevs (org-list-prevs-alist struct))
21038 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21039 (org-list-set-checkbox
21040 (org-element-property :begin context) struct
21041 (cond ((equal arg '(16)) "[-]")
21042 ((and (not box) (equal arg '(4))) "[ ]")
21043 ((or (not box) (equal arg '(4))) nil)
21044 ((eq box 'on) "[ ]")
21045 (t "[X]")))
21046 ;; Mimic `org-list-write-struct' but with grabbing
21047 ;; a return value from `org-list-struct-fix-box'.
21048 (org-list-struct-fix-ind struct parents 2)
21049 (org-list-struct-fix-item-end struct)
21050 (org-list-struct-fix-bul struct prevs)
21051 (org-list-struct-fix-ind struct parents)
21052 (let ((block-item
21053 (org-list-struct-fix-box struct parents prevs orderedp)))
21054 (if (and box (equal struct old-struct))
21055 (if (equal arg '(16))
21056 (message "Checkboxes already reset")
21057 (user-error "Cannot toggle this checkbox: %s"
21058 (if (eq box 'on)
21059 "all subitems checked"
21060 "unchecked subitems")))
21061 (org-list-struct-apply-struct struct old-struct)
21062 (org-update-checkbox-count-maybe))
21063 (when block-item
21064 (message "Checkboxes were removed due to empty box at line %d"
21065 (org-current-line block-item))))))
21066 (keyword
21067 (let ((org-inhibit-startup-visibility-stuff t)
21068 (org-startup-align-all-tables nil))
21069 (when (boundp 'org-table-coordinate-overlays)
21070 (mapc 'delete-overlay org-table-coordinate-overlays)
21071 (setq org-table-coordinate-overlays nil))
21072 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21073 (message "Local setup has been refreshed"))
21074 (plain-list
21075 ;; At a plain list, with a double C-u argument, set
21076 ;; checkboxes of each item to "[-]", whereas a single one
21077 ;; will toggle their presence according to the state of the
21078 ;; first item in the list. Without an argument, repair the
21079 ;; list.
21080 (let* ((begin (org-element-property :contents-begin context))
21081 (beginm (move-marker (make-marker) begin))
21082 (struct (org-element-property :structure context))
21083 (old-struct (copy-tree struct))
21084 (first-box (save-excursion
21085 (goto-char begin)
21086 (looking-at org-list-full-item-re)
21087 (match-string-no-properties 3)))
21088 (new-box (cond ((equal arg '(16)) "[-]")
21089 ((equal arg '(4)) (unless first-box "[ ]"))
21090 ((equal first-box "[X]") "[ ]")
21091 (t "[X]"))))
21092 (cond
21093 (arg
21094 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21095 (org-list-get-all-items
21096 begin struct (org-list-prevs-alist struct))))
21097 ((and first-box (eq (point) begin))
21098 ;; For convenience, when point is at bol on the first
21099 ;; item of the list and no argument is provided, simply
21100 ;; toggle checkbox of that item, if any.
21101 (org-list-set-checkbox begin struct new-box)))
21102 (org-list-write-struct
21103 struct (org-list-parents-alist struct) old-struct)
21104 (org-update-checkbox-count-maybe)
21105 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21106 ((property-drawer node-property)
21107 (call-interactively 'org-property-action))
21108 ((radio-target target)
21109 (call-interactively 'org-update-radio-target-regexp))
21110 (statistics-cookie
21111 (call-interactively 'org-update-statistics-cookies))
21112 ((table table-cell table-row)
21113 ;; At a table, recalculate every field and align it. Also
21114 ;; send the table if necessary. If the table has
21115 ;; a `table.el' type, just give up. At a table row or
21116 ;; cell, maybe recalculate line but always align table.
21117 (if (eq (org-element-property :type context) 'table.el)
21118 (message "Use C-c ' to edit table.el tables")
21119 (let ((org-enable-table-editor t))
21120 (if (or (eq type 'table)
21121 ;; Check if point is at a TBLFM line.
21122 (and (eq type 'table-row)
21123 (= (point) (org-element-property :end context))))
21124 (save-excursion
21125 (if (org-at-TBLFM-p)
21126 (progn (require 'org-table)
21127 (org-table-calc-current-TBLFM))
21128 (goto-char (org-element-property :contents-begin context))
21129 (org-call-with-arg 'org-table-recalculate (or arg t))
21130 (orgtbl-send-table 'maybe)))
21131 (org-table-maybe-eval-formula)
21132 (cond (arg (call-interactively 'org-table-recalculate))
21133 ((org-table-maybe-recalculate-line))
21134 (t (org-table-align)))))))
21135 (timestamp (org-timestamp-change 0 'day))
21136 (otherwise
21137 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21138 (user-error
21139 "C-c C-c can do nothing useful at this location")))))))))
21141 (defun org-mode-restart ()
21142 (interactive)
21143 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21144 (funcall major-mode)
21145 (hack-local-variables)
21146 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21147 (org-indent-mode -1)))
21148 (message "%s restarted" major-mode))
21150 (defun org-kill-note-or-show-branches ()
21151 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21152 (interactive)
21153 (if (not org-finish-function)
21154 (progn
21155 (hide-subtree)
21156 (call-interactively 'show-branches))
21157 (let ((org-note-abort t))
21158 (funcall org-finish-function))))
21160 (defun org-delete-indentation (&optional ARG)
21161 "Join current line to previous and fix whitespace at join.
21163 If previous line is a headline add to headline title. Otherwise
21164 the function calls `delete-indentation'.
21166 With argument, join this line to following line."
21167 (interactive "*P")
21168 (if (save-excursion
21169 (if ARG (beginning-of-line)
21170 (forward-line -1))
21171 (looking-at org-complex-heading-regexp))
21172 ;; At headline.
21173 (let ((tags-column (when (match-beginning 5)
21174 (save-excursion (goto-char (match-beginning 5))
21175 (current-column))))
21176 (string (concat " " (progn (when ARG (forward-line 1))
21177 (org-trim (delete-and-extract-region
21178 (line-beginning-position)
21179 (line-end-position)))))))
21180 (unless (bobp) (delete-region (point) (1- (point))))
21181 (goto-char (or (match-end 4)
21182 (match-beginning 5)
21183 (match-end 0)))
21184 (skip-chars-backward " \t")
21185 (save-excursion (insert string))
21186 ;; Adjust alignment of tags.
21187 (when tags-column
21188 (org-align-tags-here (if org-auto-align-tags
21189 org-tags-column
21190 tags-column))))
21191 (delete-indentation ARG)))
21193 (defun org-open-line (n)
21194 "Insert a new row in tables, call `open-line' elsewhere.
21195 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21196 (interactive "*p")
21197 (cond
21198 ((not org-special-ctrl-o)
21199 (open-line n))
21200 ((org-at-table-p)
21201 (org-table-insert-row))
21203 (open-line n))))
21205 (defun org-return (&optional indent)
21206 "Goto next table row or insert a newline.
21208 Calls `org-table-next-row' or `newline', depending on context.
21210 When optional INDENT argument is non-nil, call
21211 `newline-and-indent' instead of `newline'.
21213 When `org-return-follows-link' is non-nil and point is on
21214 a timestamp or a link, call `org-open-at-point'. However, it
21215 will not happen if point is in a table or on a \"dead\"
21216 object (e.g., within a comment). In these case, you need to use
21217 `org-open-at-point' directly."
21218 (interactive)
21219 (if (and (not (bolp))
21220 (save-excursion (beginning-of-line)
21221 (looking-at org-complex-heading-regexp)))
21222 ;; At headline.
21223 (let ((tags-column (when (match-beginning 5)
21224 (save-excursion (goto-char (match-beginning 5))
21225 (current-column))))
21226 ;; Test if before or after headline title.
21227 (string (when (and (match-end 4)
21228 (not (or (< (point)
21229 (or (match-end 3)
21230 (match-end 2)
21231 (save-excursion
21232 (goto-char (match-beginning 4))
21233 (skip-chars-backward " \t")
21234 (point))))
21235 (and (match-beginning 5)
21236 (>= (point) (match-beginning 5))))))
21237 ;; Point is on headline keywords, tags or cookies. Do not break
21238 ;; them: add a newline after the headline instead.
21239 (org-string-nw-p
21240 (delete-and-extract-region (point) (match-end 4))))))
21241 ;; Adjust alignment of tags.
21242 (when (and tags-column string)
21243 (org-align-tags-here (if org-auto-align-tags
21244 org-tags-column
21245 tags-column)))
21246 (end-of-line)
21247 (org-show-entry)
21248 (if indent (newline-and-indent) (newline))
21249 (and string (save-excursion (insert (org-trim string)))))
21250 (let* ((context (if org-return-follows-link (org-element-context)
21251 (org-element-at-point)))
21252 (type (org-element-type context)))
21253 (cond
21254 ;; In a table, call `org-table-next-row'.
21255 ((or (and (eq type 'table)
21256 (>= (point) (org-element-property :contents-begin context))
21257 (< (point) (org-element-property :contents-end context)))
21258 (org-element-lineage context '(table-row table-cell) t))
21259 (org-table-justify-field-maybe)
21260 (call-interactively #'org-table-next-row))
21261 ;; On a link or a timestamp but not on white spaces after it,
21262 ;; call `org-open-line' if `org-return-follows-link' allows it.
21263 ((and org-return-follows-link
21264 (memq type '(link timestamp))
21265 (< (point)
21266 (save-excursion (goto-char (org-element-property :end context))
21267 (skip-chars-backward " \t")
21268 (point))))
21269 (call-interactively #'org-open-at-point))
21270 ;; In a list, make sure indenting keeps trailing text within.
21271 ((and indent
21272 (not (eolp))
21273 (org-element-lineage context '(item)))
21274 (let ((trailing-data
21275 (delete-and-extract-region (point) (line-end-position))))
21276 (newline-and-indent)
21277 (save-excursion (insert trailing-data))))
21278 (t (if indent (newline-and-indent) (newline)))))))
21280 (defun org-return-indent ()
21281 "Goto next table row or insert a newline and indent.
21282 Calls `org-table-next-row' or `newline-and-indent', depending on
21283 context. See the individual commands for more information."
21284 (interactive)
21285 (org-return t))
21287 (defun org-ctrl-c-star ()
21288 "Compute table, or change heading status of lines.
21289 Calls `org-table-recalculate' or `org-toggle-heading',
21290 depending on context."
21291 (interactive)
21292 (cond
21293 ((org-at-table-p)
21294 (call-interactively 'org-table-recalculate))
21296 ;; Convert all lines in region to list items
21297 (call-interactively 'org-toggle-heading))))
21299 (defun org-ctrl-c-minus ()
21300 "Insert separator line in table or modify bullet status of line.
21301 Also turns a plain line or a region of lines into list items.
21302 Calls `org-table-insert-hline', `org-toggle-item', or
21303 `org-cycle-list-bullet', depending on context."
21304 (interactive)
21305 (cond
21306 ((org-at-table-p)
21307 (call-interactively 'org-table-insert-hline))
21308 ((org-region-active-p)
21309 (call-interactively 'org-toggle-item))
21310 ((org-in-item-p)
21311 (call-interactively 'org-cycle-list-bullet))
21313 (call-interactively 'org-toggle-item))))
21315 (defun org-toggle-item (arg)
21316 "Convert headings or normal lines to items, items to normal lines.
21317 If there is no active region, only the current line is considered.
21319 If the first non blank line in the region is a headline, convert
21320 all headlines to items, shifting text accordingly.
21322 If it is an item, convert all items to normal lines.
21324 If it is normal text, change region into a list of items.
21325 With a prefix argument ARG, change the region in a single item."
21326 (interactive "P")
21327 (let ((shift-text
21328 (function
21329 ;; Shift text in current section to IND, from point to END.
21330 ;; The function leaves point to END line.
21331 (lambda (ind end)
21332 (let ((min-i 1000) (end (copy-marker end)))
21333 ;; First determine the minimum indentation (MIN-I) of
21334 ;; the text.
21335 (save-excursion
21336 (catch 'exit
21337 (while (< (point) end)
21338 (let ((i (org-get-indentation)))
21339 (cond
21340 ;; Skip blank lines and inline tasks.
21341 ((looking-at "^[ \t]*$"))
21342 ((looking-at org-outline-regexp-bol))
21343 ;; We can't find less than 0 indentation.
21344 ((zerop i) (throw 'exit (setq min-i 0)))
21345 ((< i min-i) (setq min-i i))))
21346 (forward-line))))
21347 ;; Then indent each line so that a line indented to
21348 ;; MIN-I becomes indented to IND. Ignore blank lines
21349 ;; and inline tasks in the process.
21350 (let ((delta (- ind min-i)))
21351 (while (< (point) end)
21352 (unless (or (looking-at "^[ \t]*$")
21353 (looking-at org-outline-regexp-bol))
21354 (org-indent-line-to (+ (org-get-indentation) delta)))
21355 (forward-line)))))))
21356 (skip-blanks
21357 (function
21358 ;; Return beginning of first non-blank line, starting from
21359 ;; line at POS.
21360 (lambda (pos)
21361 (save-excursion
21362 (goto-char pos)
21363 (skip-chars-forward " \r\t\n")
21364 (point-at-bol)))))
21365 beg end)
21366 ;; Determine boundaries of changes.
21367 (if (org-region-active-p)
21368 (setq beg (funcall skip-blanks (region-beginning))
21369 end (copy-marker (region-end)))
21370 (setq beg (funcall skip-blanks (point-at-bol))
21371 end (copy-marker (point-at-eol))))
21372 ;; Depending on the starting line, choose an action on the text
21373 ;; between BEG and END.
21374 (org-with-limited-levels
21375 (save-excursion
21376 (goto-char beg)
21377 (cond
21378 ;; Case 1. Start at an item: de-itemize. Note that it only
21379 ;; happens when a region is active: `org-ctrl-c-minus'
21380 ;; would call `org-cycle-list-bullet' otherwise.
21381 ((org-at-item-p)
21382 (while (< (point) end)
21383 (when (org-at-item-p)
21384 (skip-chars-forward " \t")
21385 (delete-region (point) (match-end 0)))
21386 (forward-line)))
21387 ;; Case 2. Start at an heading: convert to items.
21388 ((org-at-heading-p)
21389 (let* ((bul (org-list-bullet-string "-"))
21390 (bul-len (length bul))
21391 (done (org-entry-is-done-p))
21392 (todo (org-entry-is-todo-p))
21393 ;; Indentation of the first heading. It should be
21394 ;; relative to the indentation of its parent, if any.
21395 (start-ind (save-excursion
21396 (cond
21397 ((not org-adapt-indentation) 0)
21398 ((not (outline-previous-heading)) 0)
21399 (t (length (match-string 0))))))
21400 ;; Level of first heading. Further headings will be
21401 ;; compared to it to determine hierarchy in the list.
21402 (ref-level (org-reduced-level (org-outline-level))))
21403 (when (or done todo) (org-todo ""))
21404 (while (< (point) end)
21405 (let* ((level (org-reduced-level (org-outline-level)))
21406 (delta (max 0 (- level ref-level))))
21407 ;; If current headline is less indented than the first
21408 ;; one, set it as reference, in order to preserve
21409 ;; subtrees.
21410 (when (< level ref-level) (setq ref-level level))
21411 (replace-match bul t t)
21412 (org-indent-line-to (+ start-ind (* delta bul-len)))
21413 (when (or done todo)
21414 (let* ((struct (org-list-struct))
21415 (old (copy-tree struct)))
21416 (org-list-set-checkbox (line-beginning-position)
21417 struct
21418 (if done "[X]" "[ ]"))
21419 (org-list-write-struct struct
21420 (org-list-parents-alist struct)
21421 old)))
21422 ;; Ensure all text down to END (or SECTION-END) belongs
21423 ;; to the newly created item.
21424 (let ((section-end (save-excursion
21425 (or (outline-next-heading) (point)))))
21426 (forward-line)
21427 (funcall shift-text
21428 (+ start-ind (* (1+ delta) bul-len))
21429 (min end section-end)))))))
21430 ;; Case 3. Normal line with ARG: make the first line of region
21431 ;; an item, and shift indentation of others lines to
21432 ;; set them as item's body.
21433 (arg (let* ((bul (org-list-bullet-string "-"))
21434 (bul-len (length bul))
21435 (ref-ind (org-get-indentation)))
21436 (skip-chars-forward " \t")
21437 (insert bul)
21438 (forward-line)
21439 (while (< (point) end)
21440 ;; Ensure that lines less indented than first one
21441 ;; still get included in item body.
21442 (funcall shift-text
21443 (+ ref-ind bul-len)
21444 (min end (save-excursion (or (outline-next-heading)
21445 (point)))))
21446 (forward-line))))
21447 ;; Case 4. Normal line without ARG: turn each non-item line
21448 ;; into an item.
21450 (while (< (point) end)
21451 (unless (or (org-at-heading-p) (org-at-item-p))
21452 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21453 (replace-match
21454 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21455 (forward-line))))))))
21457 (defun org-toggle-heading (&optional nstars)
21458 "Convert headings to normal text, or items or text to headings.
21459 If there is no active region, only convert the current line.
21461 With a \\[universal-argument] prefix, convert the whole list at
21462 point into heading.
21464 In a region:
21466 - If the first non blank line is a headline, remove the stars
21467 from all headlines in the region.
21469 - If it is a normal line, turn each and every normal line (i.e.,
21470 not an heading or an item) in the region into headings. If you
21471 want to convert only the first line of this region, use one
21472 universal prefix argument.
21474 - If it is a plain list item, turn all plain list items into headings.
21476 When converting a line into a heading, the number of stars is chosen
21477 such that the lines become children of the current entry. However,
21478 when a numeric prefix argument is given, its value determines the
21479 number of stars to add."
21480 (interactive "P")
21481 (let ((skip-blanks
21482 (function
21483 ;; Return beginning of first non-blank line, starting from
21484 ;; line at POS.
21485 (lambda (pos)
21486 (save-excursion
21487 (goto-char pos)
21488 (while (org-at-comment-p) (forward-line))
21489 (skip-chars-forward " \r\t\n")
21490 (point-at-bol)))))
21491 beg end toggled)
21492 ;; Determine boundaries of changes. If a universal prefix has
21493 ;; been given, put the list in a region. If region ends at a bol,
21494 ;; do not consider the last line to be in the region.
21496 (when (and current-prefix-arg (org-at-item-p))
21497 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21498 (org-mark-element))
21500 (if (org-region-active-p)
21501 (setq beg (funcall skip-blanks (region-beginning))
21502 end (copy-marker (save-excursion
21503 (goto-char (region-end))
21504 (if (bolp) (point) (point-at-eol)))))
21505 (setq beg (funcall skip-blanks (point-at-bol))
21506 end (copy-marker (point-at-eol))))
21507 ;; Ensure inline tasks don't count as headings.
21508 (org-with-limited-levels
21509 (save-excursion
21510 (goto-char beg)
21511 (cond
21512 ;; Case 1. Started at an heading: de-star headings.
21513 ((org-at-heading-p)
21514 (while (< (point) end)
21515 (when (org-at-heading-p t)
21516 (looking-at org-outline-regexp) (replace-match "")
21517 (setq toggled t))
21518 (forward-line)))
21519 ;; Case 2. Started at an item: change items into headlines.
21520 ;; One star will be added by `org-list-to-subtree'.
21521 ((org-at-item-p)
21522 (while (< (point) end)
21523 (when (org-at-item-p)
21524 ;; Pay attention to cases when region ends before list.
21525 (let* ((struct (org-list-struct))
21526 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21527 (save-restriction
21528 (narrow-to-region (point) list-end)
21529 (insert (org-list-to-subtree (org-list-parse-list t)))))
21530 (setq toggled t))
21531 (forward-line)))
21532 ;; Case 3. Started at normal text: make every line an heading,
21533 ;; skipping headlines and items.
21534 (t (let* ((stars
21535 (make-string
21536 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21537 (add-stars
21538 (cond (nstars "") ; stars from prefix only
21539 ((equal stars "") "*") ; before first heading
21540 (org-odd-levels-only "**") ; inside heading, odd
21541 (t "*"))) ; inside heading, oddeven
21542 (rpl (concat stars add-stars " "))
21543 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21544 (while (< (point) (if (equal nstars '(4)) lend end))
21545 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21546 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21547 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21548 (forward-line)))))))
21549 (unless toggled (message "Cannot toggle heading from here"))))
21551 (defun org-meta-return (&optional arg)
21552 "Insert a new heading or wrap a region in a table.
21553 Calls `org-insert-heading' or `org-table-wrap-region', depending
21554 on context. See the individual commands for more information."
21555 (interactive "P")
21556 (org-check-before-invisible-edit 'insert)
21557 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21558 (let* ((element (org-element-at-point))
21559 (type (org-element-type element)))
21560 (when (eq type 'table-row)
21561 (setq element (org-element-property :parent element))
21562 (setq type 'table))
21563 (if (and (eq type 'table)
21564 (eq (org-element-property :type element) 'org)
21565 (>= (point) (org-element-property :contents-begin element))
21566 (< (point) (org-element-property :contents-end element)))
21567 (call-interactively 'org-table-wrap-region)
21568 (call-interactively 'org-insert-heading)))))
21570 ;;; Menu entries
21572 (defsubst org-in-subtree-not-table-p ()
21573 "Are we in a subtree and not in a table?"
21574 (and (not (org-before-first-heading-p))
21575 (not (org-at-table-p))))
21577 ;; Define the Org-mode menus
21578 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21579 '("Tbl"
21580 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21581 ["Next Field" org-cycle (org-at-table-p)]
21582 ["Previous Field" org-shifttab (org-at-table-p)]
21583 ["Next Row" org-return (org-at-table-p)]
21584 "--"
21585 ["Blank Field" org-table-blank-field (org-at-table-p)]
21586 ["Edit Field" org-table-edit-field (org-at-table-p)]
21587 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21588 "--"
21589 ("Column"
21590 ["Move Column Left" org-metaleft (org-at-table-p)]
21591 ["Move Column Right" org-metaright (org-at-table-p)]
21592 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21593 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21594 ("Row"
21595 ["Move Row Up" org-metaup (org-at-table-p)]
21596 ["Move Row Down" org-metadown (org-at-table-p)]
21597 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21598 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21599 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21600 "--"
21601 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21602 ("Rectangle"
21603 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21604 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21605 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21606 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21607 "--"
21608 ("Calculate"
21609 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21610 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21611 ["Edit Formulas" org-edit-special (org-at-table-p)]
21612 "--"
21613 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21614 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21615 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21616 "--"
21617 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21618 "--"
21619 ["Sum Column/Rectangle" org-table-sum
21620 (or (org-at-table-p) (org-region-active-p))]
21621 ["Which Column?" org-table-current-column (org-at-table-p)])
21622 ["Debug Formulas"
21623 org-table-toggle-formula-debugger
21624 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21625 ["Show Col/Row Numbers"
21626 org-table-toggle-coordinate-overlays
21627 :style toggle
21628 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21629 "--"
21630 ["Create" org-table-create (and (not (org-at-table-p))
21631 org-enable-table-editor)]
21632 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21633 ["Import from File" org-table-import (not (org-at-table-p))]
21634 ["Export to File" org-table-export (org-at-table-p)]
21635 "--"
21636 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21637 "--"
21638 ("Plot"
21639 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21640 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21642 (easy-menu-define org-org-menu org-mode-map "Org menu"
21643 '("Org"
21644 ("Show/Hide"
21645 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21646 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21647 ["Sparse Tree..." org-sparse-tree t]
21648 ["Reveal Context" org-reveal t]
21649 ["Show All" show-all t]
21650 "--"
21651 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21652 "--"
21653 ["New Heading" org-insert-heading t]
21654 ("Navigate Headings"
21655 ["Up" outline-up-heading t]
21656 ["Next" outline-next-visible-heading t]
21657 ["Previous" outline-previous-visible-heading t]
21658 ["Next Same Level" outline-forward-same-level t]
21659 ["Previous Same Level" outline-backward-same-level t]
21660 "--"
21661 ["Jump" org-goto t])
21662 ("Edit Structure"
21663 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21664 "--"
21665 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21666 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21667 "--"
21668 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21669 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21670 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21671 "--"
21672 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21673 "--"
21674 ["Copy visible text" org-copy-visible t]
21675 "--"
21676 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21677 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21678 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21679 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21680 "--"
21681 ["Sort Region/Children" org-sort t]
21682 "--"
21683 ["Convert to odd levels" org-convert-to-odd-levels t]
21684 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21685 ("Editing"
21686 ["Emphasis..." org-emphasize t]
21687 ["Edit Source Example" org-edit-special t]
21688 "--"
21689 ["Footnote new/jump" org-footnote-action t]
21690 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21691 ("Archive"
21692 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21693 "--"
21694 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21695 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21696 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21698 "--"
21699 ("Hyperlinks"
21700 ["Store Link (Global)" org-store-link t]
21701 ["Find existing link to here" org-occur-link-in-agenda-files t]
21702 ["Insert Link" org-insert-link t]
21703 ["Follow Link" org-open-at-point t]
21704 "--"
21705 ["Next link" org-next-link t]
21706 ["Previous link" org-previous-link t]
21707 "--"
21708 ["Descriptive Links"
21709 org-toggle-link-display
21710 :style radio
21711 :selected org-descriptive-links
21713 ["Literal Links"
21714 org-toggle-link-display
21715 :style radio
21716 :selected (not org-descriptive-links)])
21717 "--"
21718 ("TODO Lists"
21719 ["TODO/DONE/-" org-todo t]
21720 ("Select keyword"
21721 ["Next keyword" org-shiftright (org-at-heading-p)]
21722 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21723 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21724 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21725 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21726 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21727 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21728 "--"
21729 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21730 :selected org-enforce-todo-dependencies :style toggle :active t]
21731 "Settings for tree at point"
21732 ["Do Children sequentially" org-toggle-ordered-property :style radio
21733 :selected (org-entry-get nil "ORDERED")
21734 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21735 ["Do Children parallel" org-toggle-ordered-property :style radio
21736 :selected (not (org-entry-get nil "ORDERED"))
21737 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21738 "--"
21739 ["Set Priority" org-priority t]
21740 ["Priority Up" org-shiftup t]
21741 ["Priority Down" org-shiftdown t]
21742 "--"
21743 ["Get news from all feeds" org-feed-update-all t]
21744 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21745 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21746 ("TAGS and Properties"
21747 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21748 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21749 "--"
21750 ["Set property" org-set-property (not (org-before-first-heading-p))]
21751 ["Column view of properties" org-columns t]
21752 ["Insert Column View DBlock" org-insert-columns-dblock t])
21753 ("Dates and Scheduling"
21754 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21755 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21756 ("Change Date"
21757 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21758 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21759 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21760 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21761 ["Compute Time Range" org-evaluate-time-range t]
21762 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21763 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21764 "--"
21765 ["Custom time format" org-toggle-time-stamp-overlays
21766 :style radio :selected org-display-custom-times]
21767 "--"
21768 ["Goto Calendar" org-goto-calendar t]
21769 ["Date from Calendar" org-date-from-calendar t]
21770 "--"
21771 ["Start/Restart Timer" org-timer-start t]
21772 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21773 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21774 ["Insert Timer String" org-timer t]
21775 ["Insert Timer Item" org-timer-item t])
21776 ("Logging work"
21777 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21778 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21779 ["Clock out" org-clock-out t]
21780 ["Clock cancel" org-clock-cancel t]
21781 "--"
21782 ["Mark as default task" org-clock-mark-default-task t]
21783 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21784 ["Goto running clock" org-clock-goto t]
21785 "--"
21786 ["Display times" org-clock-display t]
21787 ["Create clock table" org-clock-report t]
21788 "--"
21789 ["Record DONE time"
21790 (progn (setq org-log-done (not org-log-done))
21791 (message "Switching to %s will %s record a timestamp"
21792 (car org-done-keywords)
21793 (if org-log-done "automatically" "not")))
21794 :style toggle :selected org-log-done])
21795 "--"
21796 ["Agenda Command..." org-agenda t]
21797 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21798 ("File List for Agenda")
21799 ("Special views current file"
21800 ["TODO Tree" org-show-todo-tree t]
21801 ["Check Deadlines" org-check-deadlines t]
21802 ["Timeline" org-timeline t]
21803 ["Tags/Property tree" org-match-sparse-tree t])
21804 "--"
21805 ["Export/Publish..." org-export-dispatch t]
21806 ("LaTeX"
21807 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21808 :selected org-cdlatex-mode]
21809 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21810 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21811 ["Modify math symbol" org-cdlatex-math-modify
21812 (org-inside-LaTeX-fragment-p)]
21813 ["Insert citation" org-reftex-citation t]
21814 "--"
21815 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21816 "--"
21817 ("MobileOrg"
21818 ["Push Files and Views" org-mobile-push t]
21819 ["Get Captured and Flagged" org-mobile-pull t]
21820 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21821 "--"
21822 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21823 "--"
21824 ("Documentation"
21825 ["Show Version" org-version t]
21826 ["Info Documentation" org-info t])
21827 ("Customize"
21828 ["Browse Org Group" org-customize t]
21829 "--"
21830 ["Expand This Menu" org-create-customize-menu
21831 (fboundp 'customize-menu-create)])
21832 ["Send bug report" org-submit-bug-report t]
21833 "--"
21834 ("Refresh/Reload"
21835 ["Refresh setup current buffer" org-mode-restart t]
21836 ["Reload Org (after update)" org-reload t]
21837 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21840 (defun org-info (&optional node)
21841 "Read documentation for Org-mode in the info system.
21842 With optional NODE, go directly to that node."
21843 (interactive)
21844 (info (format "(org)%s" (or node ""))))
21846 ;;;###autoload
21847 (defun org-submit-bug-report ()
21848 "Submit a bug report on Org-mode via mail.
21850 Don't hesitate to report any problems or inaccurate documentation.
21852 If you don't have setup sending mail from (X)Emacs, please copy the
21853 output buffer into your mail program, as it gives us important
21854 information about your Org-mode version and configuration."
21855 (interactive)
21856 (require 'reporter)
21857 (org-load-modules-maybe)
21858 (org-require-autoloaded-modules)
21859 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21860 (reporter-submit-bug-report
21861 "emacs-orgmode@gnu.org"
21862 (org-version nil 'full)
21863 (let (list)
21864 (save-window-excursion
21865 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21866 (delete-other-windows)
21867 (erase-buffer)
21868 (insert "You are about to submit a bug report to the Org-mode mailing list.
21870 We would like to add your full Org-mode and Outline configuration to the
21871 bug report. This greatly simplifies the work of the maintainer and
21872 other experts on the mailing list.
21874 HOWEVER, some variables you have customized may contain private
21875 information. The names of customers, colleagues, or friends, might
21876 appear in the form of file names, tags, todo states, or search strings.
21877 If you answer yes to the prompt, you might want to check and remove
21878 such private information before sending the email.")
21879 (add-text-properties (point-min) (point-max) '(face org-warning))
21880 (when (yes-or-no-p "Include your Org-mode configuration ")
21881 (mapatoms
21882 (lambda (v)
21883 (and (boundp v)
21884 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21885 (or (and (symbol-value v)
21886 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21887 (and
21888 (get v 'custom-type) (get v 'standard-value)
21889 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21890 (push v list)))))
21891 (kill-buffer (get-buffer "*Warn about privacy*"))
21892 list))
21893 nil nil
21894 "Remember to cover the basics, that is, what you expected to happen and
21895 what in fact did happen. You don't know how to make a good report? See
21897 http://orgmode.org/manual/Feedback.html#Feedback
21899 Your bug report will be posted to the Org-mode mailing list.
21900 ------------------------------------------------------------------------")
21901 (save-excursion
21902 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21903 (replace-match "\\1Bug: \\3 [\\2]")))))
21906 (defun org-install-agenda-files-menu ()
21907 (let ((bl (buffer-list)))
21908 (save-excursion
21909 (while bl
21910 (set-buffer (pop bl))
21911 (if (derived-mode-p 'org-mode) (setq bl nil)))
21912 (when (derived-mode-p 'org-mode)
21913 (easy-menu-change
21914 '("Org") "File List for Agenda"
21915 (append
21916 (list
21917 ["Edit File List" (org-edit-agenda-file-list) t]
21918 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21919 ["Remove Current File from List" org-remove-file t]
21920 ["Cycle through agenda files" org-cycle-agenda-files t]
21921 ["Occur in all agenda files" org-occur-in-agenda-files t]
21922 "--")
21923 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21925 ;;;; Documentation
21927 (defun org-require-autoloaded-modules ()
21928 (interactive)
21929 (mapc 'require
21930 '(org-agenda org-archive org-attach org-clock org-colview org-id
21931 org-table org-timer)))
21933 ;;;###autoload
21934 (defun org-reload (&optional uncompiled)
21935 "Reload all org lisp files.
21936 With prefix arg UNCOMPILED, load the uncompiled versions."
21937 (interactive "P")
21938 (require 'loadhist)
21939 (let* ((org-dir (org-find-library-dir "org"))
21940 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21941 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21942 (remove-re (mapconcat 'identity
21943 (mapcar (lambda (f) (concat "^" f "$"))
21944 (list (if (featurep 'xemacs)
21945 "org-colview"
21946 "org-colview-xemacs")
21947 "org" "org-loaddefs" "org-version"))
21948 "\\|"))
21949 (feats (delete-dups
21950 (mapcar 'file-name-sans-extension
21951 (mapcar 'file-name-nondirectory
21952 (delq nil
21953 (mapcar 'feature-file
21954 features))))))
21955 (lfeat (append
21956 (sort
21957 (setq feats
21958 (delq nil (mapcar
21959 (lambda (f)
21960 (if (and (string-match feature-re f)
21961 (not (string-match remove-re f)))
21962 f nil))
21963 feats)))
21964 'string-lessp)
21965 (list "org-version" "org")))
21966 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21967 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21968 load-uncore load-misses)
21969 (setq load-misses
21970 (delq 't
21971 (mapcar (lambda (f)
21972 (or (org-load-noerror-mustsuffix (concat org-dir f))
21973 (and (string= org-dir contrib-dir)
21974 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21975 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21976 (add-to-list 'load-uncore f 'append)
21979 lfeat)))
21980 (if load-uncore
21981 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21982 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21983 (if load-misses
21984 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21985 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21986 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21988 ;;;###autoload
21989 (defun org-customize ()
21990 "Call the customize function with org as argument."
21991 (interactive)
21992 (org-load-modules-maybe)
21993 (org-require-autoloaded-modules)
21994 (customize-browse 'org))
21996 (defun org-create-customize-menu ()
21997 "Create a full customization menu for Org-mode, insert it into the menu."
21998 (interactive)
21999 (org-load-modules-maybe)
22000 (org-require-autoloaded-modules)
22001 (if (fboundp 'customize-menu-create)
22002 (progn
22003 (easy-menu-change
22004 '("Org") "Customize"
22005 `(["Browse Org group" org-customize t]
22006 "--"
22007 ,(customize-menu-create 'org)
22008 ["Set" Custom-set t]
22009 ["Save" Custom-save t]
22010 ["Reset to Current" Custom-reset-current t]
22011 ["Reset to Saved" Custom-reset-saved t]
22012 ["Reset to Standard Settings" Custom-reset-standard t]))
22013 (message "\"Org\"-menu now contains full customization menu"))
22014 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22016 ;;;; Miscellaneous stuff
22018 ;;; Generally useful functions
22020 (defsubst org-get-at-eol (property n)
22021 "Get text property PROPERTY at the end of line less N characters."
22022 (get-text-property (- (point-at-eol) n) property))
22024 (defun org-find-text-property-in-string (prop s)
22025 "Return the first non-nil value of property PROP in string S."
22026 (or (get-text-property 0 prop s)
22027 (get-text-property (or (next-single-property-change 0 prop s) 0)
22028 prop s)))
22030 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22031 "Display the given MESSAGE as a warning."
22032 (if (fboundp 'display-warning)
22033 (display-warning 'org message
22034 (if (featurep 'xemacs) 'warning :warning))
22035 (let ((buf (get-buffer-create "*Org warnings*")))
22036 (with-current-buffer buf
22037 (goto-char (point-max))
22038 (insert "Warning (Org): " message)
22039 (unless (bolp)
22040 (newline)))
22041 (display-buffer buf)
22042 (sit-for 0))))
22044 (defun org-eval (form)
22045 "Eval FORM and return result."
22046 (condition-case error
22047 (eval form)
22048 (error (format "%%![Error: %s]" error))))
22050 (defun org-in-clocktable-p ()
22051 "Check if the cursor is in a clocktable."
22052 (let ((pos (point)) start)
22053 (save-excursion
22054 (end-of-line 1)
22055 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22056 (setq start (match-beginning 0))
22057 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22058 (>= (match-end 0) pos)
22059 start))))
22061 (defun org-in-verbatim-emphasis ()
22062 (save-match-data
22063 (and (org-in-regexp org-emph-re 2)
22064 (>= (point) (match-beginning 3))
22065 (<= (point) (match-end 4))
22066 (member (match-string 3) '("=" "~")))))
22068 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22069 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22070 (if (and marker (marker-buffer marker)
22071 (buffer-live-p (marker-buffer marker)))
22072 (progn
22073 (org-pop-to-buffer-same-window (marker-buffer marker))
22074 (if (or (> marker (point-max)) (< marker (point-min)))
22075 (widen))
22076 (goto-char marker)
22077 (org-show-context 'org-goto))
22078 (if bookmark
22079 (bookmark-jump bookmark)
22080 (error "Cannot find location"))))
22082 (defun org-quote-csv-field (s)
22083 "Quote field for inclusion in CSV material."
22084 (if (string-match "[\",]" s)
22085 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22088 (defun org-force-self-insert (N)
22089 "Needed to enforce self-insert under remapping."
22090 (interactive "p")
22091 (self-insert-command N))
22093 (defun org-string-width (s)
22094 "Compute width of string, ignoring invisible characters.
22095 This ignores character with invisibility property `org-link', and also
22096 characters with property `org-cwidth', because these will become invisible
22097 upon the next fontification round."
22098 (let (b l)
22099 (when (or (eq t buffer-invisibility-spec)
22100 (assq 'org-link buffer-invisibility-spec))
22101 (while (setq b (text-property-any 0 (length s)
22102 'invisible 'org-link s))
22103 (setq s (concat (substring s 0 b)
22104 (substring s (or (next-single-property-change
22105 b 'invisible s) (length s)))))))
22106 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22107 (setq s (concat (substring s 0 b)
22108 (substring s (or (next-single-property-change
22109 b 'org-cwidth s) (length s))))))
22110 (setq l (string-width s) b -1)
22111 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22112 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22115 (defun org-shorten-string (s maxlength)
22116 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22117 If the string is shorter or has length MAXLENGTH, just return the
22118 original string. If it is longer, the functions finds a space in the
22119 string, breaks this string off at that locations and adds three dots
22120 as ellipsis. Including the ellipsis, the string will not be longer
22121 than MAXLENGTH. If finding a good breaking point in the string does
22122 not work, the string is just chopped off in the middle of a word
22123 if necessary."
22124 (if (<= (length s) maxlength)
22126 (let* ((n (max (- maxlength 4) 1))
22127 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22128 (if (string-match re s)
22129 (concat (match-string 1 s) "...")
22130 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22132 (defun org-get-indentation (&optional line)
22133 "Get the indentation of the current line, interpreting tabs.
22134 When LINE is given, assume it represents a line and compute its indentation."
22135 (if line
22136 (if (string-match "^ *" (org-remove-tabs line))
22137 (match-end 0))
22138 (save-excursion
22139 (beginning-of-line 1)
22140 (skip-chars-forward " \t")
22141 (current-column))))
22143 (defun org-get-string-indentation (s)
22144 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22145 (let ((n -1) (i 0) (w tab-width) c)
22146 (catch 'exit
22147 (while (< (setq n (1+ n)) (length s))
22148 (setq c (aref s n))
22149 (cond ((= c ?\ ) (setq i (1+ i)))
22150 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22151 (t (throw 'exit t)))))
22154 (defun org-remove-tabs (s &optional width)
22155 "Replace tabulators in S with spaces.
22156 Assumes that s is a single line, starting in column 0."
22157 (setq width (or width tab-width))
22158 (while (string-match "\t" s)
22159 (setq s (replace-match
22160 (make-string
22161 (- (* width (/ (+ (match-beginning 0) width) width))
22162 (match-beginning 0)) ?\ )
22163 t t s)))
22166 (defun org-fix-indentation (line ind)
22167 "Fix indentation in LINE.
22168 IND is a cons cell with target and minimum indentation.
22169 If the current indentation in LINE is smaller than the minimum,
22170 leave it alone. If it is larger than ind, set it to the target."
22171 (let* ((l (org-remove-tabs line))
22172 (i (org-get-indentation l))
22173 (i1 (car ind)) (i2 (cdr ind)))
22174 (if (>= i i2) (setq l (substring line i2)))
22175 (if (> i1 0)
22176 (concat (make-string i1 ?\ ) l)
22177 l)))
22179 (defun org-remove-indentation (code &optional n)
22180 "Remove the maximum common indentation from the lines in CODE.
22181 N may optionally be the number of spaces to remove."
22182 (with-temp-buffer
22183 (insert code)
22184 (org-do-remove-indentation n)
22185 (buffer-string)))
22187 (defun org-do-remove-indentation (&optional n)
22188 "Remove the maximum common indentation from the buffer."
22189 (untabify (point-min) (point-max))
22190 (let ((min 10000) re)
22191 (if n
22192 (setq min n)
22193 (goto-char (point-min))
22194 (while (re-search-forward "^ *[^ \n]" nil t)
22195 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22196 (unless (or (= min 0) (= min 10000))
22197 (setq re (format "^ \\{%d\\}" min))
22198 (goto-char (point-min))
22199 (while (re-search-forward re nil t)
22200 (replace-match "")
22201 (end-of-line 1))
22202 min)))
22204 (defun org-fill-template (template alist)
22205 "Find each %key of ALIST in TEMPLATE and replace it."
22206 (let ((case-fold-search nil)
22207 entry key value)
22208 (setq alist (sort (copy-sequence alist)
22209 (lambda (a b) (< (length (car a)) (length (car b))))))
22210 (while (setq entry (pop alist))
22211 (setq template
22212 (replace-regexp-in-string
22213 (concat "%" (regexp-quote (car entry)))
22214 (or (cdr entry) "") template t t)))
22215 template))
22217 (defun org-base-buffer (buffer)
22218 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22219 (if (not buffer)
22220 buffer
22221 (or (buffer-base-buffer buffer)
22222 buffer)))
22224 (defun org-wrap (string &optional width lines)
22225 "Wrap string to either a number of lines, or a width in characters.
22226 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22227 that costs. If there is a word longer than WIDTH, the text is actually
22228 wrapped to the length of that word.
22229 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22230 many lines, whatever width that takes.
22231 The return value is a list of lines, without newlines at the end."
22232 (let* ((words (org-split-string string "[ \t\n]+"))
22233 (maxword (apply 'max (mapcar 'org-string-width words)))
22234 w ll)
22235 (cond (width
22236 (org-do-wrap words (max maxword width)))
22237 (lines
22238 (setq w maxword)
22239 (setq ll (org-do-wrap words maxword))
22240 (if (<= (length ll) lines)
22242 (setq ll words)
22243 (while (> (length ll) lines)
22244 (setq w (1+ w))
22245 (setq ll (org-do-wrap words w)))
22246 ll))
22247 (t (error "Cannot wrap this")))))
22249 (defun org-do-wrap (words width)
22250 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22251 (let (lines line)
22252 (while words
22253 (setq line (pop words))
22254 (while (and words (< (+ (length line) (length (car words))) width))
22255 (setq line (concat line " " (pop words))))
22256 (setq lines (push line lines)))
22257 (nreverse lines)))
22259 (defun org-split-string (string &optional separators)
22260 "Splits STRING into substrings at SEPARATORS.
22261 No empty strings are returned if there are matches at the beginning
22262 and end of string."
22263 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22264 (start 0)
22265 notfirst
22266 (list nil))
22267 (while (and (string-match rexp string
22268 (if (and notfirst
22269 (= start (match-beginning 0))
22270 (< start (length string)))
22271 (1+ start) start))
22272 (< (match-beginning 0) (length string)))
22273 (setq notfirst t)
22274 (or (eq (match-beginning 0) 0)
22275 (and (eq (match-beginning 0) (match-end 0))
22276 (eq (match-beginning 0) start))
22277 (setq list
22278 (cons (substring string start (match-beginning 0))
22279 list)))
22280 (setq start (match-end 0)))
22281 (or (eq start (length string))
22282 (setq list
22283 (cons (substring string start)
22284 list)))
22285 (nreverse list)))
22287 (defun org-quote-vert (s)
22288 "Replace \"|\" with \"\\vert\"."
22289 (while (string-match "|" s)
22290 (setq s (replace-match "\\vert" t t s)))
22293 (defun org-uuidgen-p (s)
22294 "Is S an ID created by UUIDGEN?"
22295 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22297 (defun org-in-src-block-p (&optional inside)
22298 "Whether point is in a code source block.
22299 When INSIDE is non-nil, don't consider we are within a src block
22300 when point is at #+BEGIN_SRC or #+END_SRC."
22301 (let ((case-fold-search t) ov)
22302 (or (and (eq (get-char-property (point) 'src-block) t))
22303 (and (not inside)
22304 (save-match-data
22305 (save-excursion
22306 (beginning-of-line)
22307 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22309 (defun org-context ()
22310 "Return a list of contexts of the current cursor position.
22311 If several contexts apply, all are returned.
22312 Each context entry is a list with a symbol naming the context, and
22313 two positions indicating start and end of the context. Possible
22314 contexts are:
22316 :headline anywhere in a headline
22317 :headline-stars on the leading stars in a headline
22318 :todo-keyword on a TODO keyword (including DONE) in a headline
22319 :tags on the TAGS in a headline
22320 :priority on the priority cookie in a headline
22321 :item on the first line of a plain list item
22322 :item-bullet on the bullet/number of a plain list item
22323 :checkbox on the checkbox in a plain list item
22324 :table in an org-mode table
22325 :table-special on a special filed in a table
22326 :table-table in a table.el table
22327 :clocktable in a clocktable
22328 :src-block in a source block
22329 :link on a hyperlink
22330 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22331 :target on a <<target>>
22332 :radio-target on a <<<radio-target>>>
22333 :latex-fragment on a LaTeX fragment
22334 :latex-preview on a LaTeX fragment with overlaid preview image
22336 This function expects the position to be visible because it uses font-lock
22337 faces as a help to recognize the following contexts: :table-special, :link,
22338 and :keyword."
22339 (let* ((f (get-text-property (point) 'face))
22340 (faces (if (listp f) f (list f)))
22341 (case-fold-search t)
22342 (p (point)) clist o)
22343 ;; First the large context
22344 (cond
22345 ((org-at-heading-p t)
22346 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22347 (when (progn
22348 (beginning-of-line 1)
22349 (looking-at org-todo-line-tags-regexp))
22350 (push (org-point-in-group p 1 :headline-stars) clist)
22351 (push (org-point-in-group p 2 :todo-keyword) clist)
22352 (push (org-point-in-group p 4 :tags) clist))
22353 (goto-char p)
22354 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22355 (if (looking-at "\\[#[A-Z0-9]\\]")
22356 (push (org-point-in-group p 0 :priority) clist)))
22358 ((org-at-item-p)
22359 (push (org-point-in-group p 2 :item-bullet) clist)
22360 (push (list :item (point-at-bol)
22361 (save-excursion (org-end-of-item) (point)))
22362 clist)
22363 (and (org-at-item-checkbox-p)
22364 (push (org-point-in-group p 0 :checkbox) clist)))
22366 ((org-at-table-p)
22367 (push (list :table (org-table-begin) (org-table-end)) clist)
22368 (if (memq 'org-formula faces)
22369 (push (list :table-special
22370 (previous-single-property-change p 'face)
22371 (next-single-property-change p 'face)) clist)))
22372 ((org-at-table-p 'any)
22373 (push (list :table-table) clist)))
22374 (goto-char p)
22376 (let ((case-fold-search t))
22377 ;; New the "medium" contexts: clocktables, source blocks
22378 (cond ((org-in-clocktable-p)
22379 (push (list :clocktable
22380 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22381 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22382 (match-beginning 1))
22383 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22384 (match-end 0))) clist))
22385 ((org-in-src-block-p)
22386 (push (list :src-block
22387 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22388 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22389 (match-beginning 1))
22390 (and (search-forward "#+END_SRC" nil t)
22391 (match-beginning 0))) clist))))
22392 (goto-char p)
22394 ;; Now the small context
22395 (cond
22396 ((org-at-timestamp-p)
22397 (push (org-point-in-group p 0 :timestamp) clist))
22398 ((memq 'org-link faces)
22399 (push (list :link
22400 (previous-single-property-change p 'face)
22401 (next-single-property-change p 'face)) clist))
22402 ((memq 'org-special-keyword faces)
22403 (push (list :keyword
22404 (previous-single-property-change p 'face)
22405 (next-single-property-change p 'face)) clist))
22406 ((org-at-target-p)
22407 (push (org-point-in-group p 0 :target) clist)
22408 (goto-char (1- (match-beginning 0)))
22409 (if (looking-at org-radio-target-regexp)
22410 (push (org-point-in-group p 0 :radio-target) clist))
22411 (goto-char p))
22412 ((setq o (car (delq nil
22413 (mapcar
22414 (lambda (x)
22415 (if (memq x org-latex-fragment-image-overlays) x))
22416 (overlays-at (point))))))
22417 (push (list :latex-fragment
22418 (overlay-start o) (overlay-end o)) clist)
22419 (push (list :latex-preview
22420 (overlay-start o) (overlay-end o)) clist))
22421 ((org-inside-LaTeX-fragment-p)
22422 ;; FIXME: positions wrong.
22423 (push (list :latex-fragment (point) (point)) clist)))
22425 (setq clist (nreverse (delq nil clist)))
22426 clist))
22428 (defun org-in-regexp (re &optional nlines visually)
22429 "Check if point is inside a match of RE.
22431 Normally only the current line is checked, but you can include
22432 NLINES extra lines after point into the search. If VISUALLY is
22433 set, require that the cursor is not after the match but really
22434 on, so that the block visually is on the match."
22435 (catch 'exit
22436 (let ((pos (point))
22437 (eol (point-at-eol (+ 1 (or nlines 0))))
22438 (inc (if visually 1 0)))
22439 (save-excursion
22440 (beginning-of-line (- 1 (or nlines 0)))
22441 (while (re-search-forward re eol t)
22442 (if (and (<= (match-beginning 0) pos)
22443 (>= (+ inc (match-end 0)) pos))
22444 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22445 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22446 "Org mode 8.3")
22448 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22449 "Non-nil when point is between matches of START-RE and END-RE.
22451 Also return a non-nil value when point is on one of the matches.
22453 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22454 buffer positions. Default values are the positions of headlines
22455 surrounding the point.
22457 The functions returns a cons cell whose car (resp. cdr) is the
22458 position before START-RE (resp. after END-RE)."
22459 (save-match-data
22460 (let ((pos (point))
22461 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22462 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22463 beg end)
22464 (save-excursion
22465 ;; Point is on a block when on START-RE or if START-RE can be
22466 ;; found before it...
22467 (and (or (org-in-regexp start-re)
22468 (re-search-backward start-re limit-up t))
22469 (setq beg (match-beginning 0))
22470 ;; ... and END-RE after it...
22471 (goto-char (match-end 0))
22472 (re-search-forward end-re limit-down t)
22473 (> (setq end (match-end 0)) pos)
22474 ;; ... without another START-RE in-between.
22475 (goto-char (match-beginning 0))
22476 (not (re-search-backward start-re (1+ beg) t))
22477 ;; Return value.
22478 (cons beg end))))))
22480 (defun org-in-block-p (names)
22481 "Non-nil when point belongs to a block whose name belongs to NAMES.
22483 NAMES is a list of strings containing names of blocks.
22485 Return first block name matched, or nil. Beware that in case of
22486 nested blocks, the returned name may not belong to the closest
22487 block from point."
22488 (save-match-data
22489 (catch 'exit
22490 (let ((case-fold-search t)
22491 (lim-up (save-excursion (outline-previous-heading)))
22492 (lim-down (save-excursion (outline-next-heading))))
22493 (mapc (lambda (name)
22494 (let ((n (regexp-quote name)))
22495 (when (org-between-regexps-p
22496 (concat "^[ \t]*#\\+begin_" n)
22497 (concat "^[ \t]*#\\+end_" n)
22498 lim-up lim-down)
22499 (throw 'exit n))))
22500 names))
22501 nil)))
22503 (defun org-occur-in-agenda-files (regexp &optional nlines)
22504 "Call `multi-occur' with buffers for all agenda files."
22505 (interactive "sOrg-files matching: \np")
22506 (let* ((files (org-agenda-files))
22507 (tnames (mapcar 'file-truename files))
22508 (extra org-agenda-text-search-extra-files)
22510 (when (eq (car extra) 'agenda-archives)
22511 (setq extra (cdr extra))
22512 (setq files (org-add-archive-files files)))
22513 (while (setq f (pop extra))
22514 (unless (member (file-truename f) tnames)
22515 (add-to-list 'files f 'append)
22516 (add-to-list 'tnames (file-truename f) 'append)))
22517 (multi-occur
22518 (mapcar (lambda (x)
22519 (with-current-buffer
22520 (or (get-file-buffer x) (find-file-noselect x))
22521 (widen)
22522 (current-buffer)))
22523 files)
22524 regexp)))
22526 (if (boundp 'occur-mode-find-occurrence-hook)
22527 ;; Emacs 23
22528 (add-hook 'occur-mode-find-occurrence-hook
22529 (lambda ()
22530 (when (derived-mode-p 'org-mode)
22531 (org-reveal))))
22532 ;; Emacs 22
22533 (defadvice occur-mode-goto-occurrence
22534 (after org-occur-reveal activate)
22535 (and (derived-mode-p 'org-mode) (org-reveal)))
22536 (defadvice occur-mode-goto-occurrence-other-window
22537 (after org-occur-reveal activate)
22538 (and (derived-mode-p 'org-mode) (org-reveal)))
22539 (defadvice occur-mode-display-occurrence
22540 (after org-occur-reveal activate)
22541 (when (derived-mode-p 'org-mode)
22542 (let ((pos (occur-mode-find-occurrence)))
22543 (with-current-buffer (marker-buffer pos)
22544 (save-excursion
22545 (goto-char pos)
22546 (org-reveal)))))))
22548 (defun org-occur-link-in-agenda-files ()
22549 "Create a link and search for it in the agendas.
22550 The link is not stored in `org-stored-links', it is just created
22551 for the search purpose."
22552 (interactive)
22553 (let ((link (condition-case nil
22554 (org-store-link nil)
22555 (error "Unable to create a link to here"))))
22556 (org-occur-in-agenda-files (regexp-quote link))))
22558 (defun org-reverse-string (string)
22559 "Return the reverse of STRING."
22560 (apply 'string (reverse (string-to-list string))))
22562 ;; defsubst org-uniquify must be defined before first use
22564 (defun org-uniquify-alist (alist)
22565 "Merge elements of ALIST with the same key.
22567 For example, in this alist:
22569 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22570 => '((a 1 3) (b 2))
22572 merge (a 1) and (a 3) into (a 1 3).
22574 The function returns the new ALIST."
22575 (let (rtn)
22576 (mapc
22577 (lambda (e)
22578 (let (n)
22579 (if (not (assoc (car e) rtn))
22580 (push e rtn)
22581 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22582 (setq rtn (assq-delete-all (car e) rtn))
22583 (push n rtn))))
22584 alist)
22585 rtn))
22587 (defun org-delete-all (elts list)
22588 "Remove all elements in ELTS from LIST."
22589 (while elts
22590 (setq list (delete (pop elts) list)))
22591 list)
22593 (defun org-count (cl-item cl-seq)
22594 "Count the number of occurrences of ITEM in SEQ.
22595 Taken from `count' in cl-seq.el with all keyword arguments removed."
22596 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22597 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22598 (while (< cl-start cl-end)
22599 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22600 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22601 (setq cl-start (1+ cl-start)))
22602 cl-count))
22604 (defun org-remove-if (predicate seq)
22605 "Remove everything from SEQ that fulfills PREDICATE."
22606 (let (res e)
22607 (while seq
22608 (setq e (pop seq))
22609 (if (not (funcall predicate e)) (push e res)))
22610 (nreverse res)))
22612 (defun org-remove-if-not (predicate seq)
22613 "Remove everything from SEQ that does not fulfill PREDICATE."
22614 (let (res e)
22615 (while seq
22616 (setq e (pop seq))
22617 (if (funcall predicate e) (push e res)))
22618 (nreverse res)))
22620 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22621 "Reduce two-argument FUNCTION across SEQ.
22622 Taken from `reduce' in cl-seq.el with all keyword arguments but
22623 \":initial-value\" removed."
22624 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22625 (cadr (memq :initial-value cl-keys)))
22626 (cl-seq (pop cl-seq))
22627 (t (funcall cl-func)))))
22628 (while cl-seq
22629 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22630 cl-accum))
22632 (defun org-every (pred seq)
22633 "Return true if PREDICATE is true of every element of SEQ.
22634 Adapted from `every' in cl.el."
22635 (catch 'org-every
22636 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22639 (defun org-some (pred seq)
22640 "Return true if PREDICATE is true of any element of SEQ.
22641 Adapted from `some' in cl.el."
22642 (catch 'org-some
22643 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22644 nil))
22646 (defun org-back-over-empty-lines ()
22647 "Move backwards over whitespace, to the beginning of the first empty line.
22648 Returns the number of empty lines passed."
22649 (let ((pos (point)))
22650 (if (cdr (assoc 'heading org-blank-before-new-entry))
22651 (skip-chars-backward " \t\n\r")
22652 (unless (eobp)
22653 (forward-line -1)))
22654 (beginning-of-line 2)
22655 (goto-char (min (point) pos))
22656 (count-lines (point) pos)))
22658 (defun org-skip-whitespace ()
22659 (skip-chars-forward " \t\n\r"))
22661 (defun org-point-in-group (point group &optional context)
22662 "Check if POINT is in match-group GROUP.
22663 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22664 match. If the match group does not exist or point is not inside it,
22665 return nil."
22666 (and (match-beginning group)
22667 (>= point (match-beginning group))
22668 (<= point (match-end group))
22669 (if context
22670 (list context (match-beginning group) (match-end group))
22671 t)))
22673 (defun org-switch-to-buffer-other-window (&rest args)
22674 "Switch to buffer in a second window on the current frame.
22675 In particular, do not allow pop-up frames.
22676 Returns the newly created buffer."
22677 (org-no-popups
22678 (apply 'switch-to-buffer-other-window args)))
22680 (defun org-combine-plists (&rest plists)
22681 "Create a single property list from all plists in PLISTS.
22682 The process starts by copying the first list, and then setting properties
22683 from the other lists. Settings in the last list are the most significant
22684 ones and overrule settings in the other lists."
22685 (let ((rtn (copy-sequence (pop plists)))
22686 p v ls)
22687 (while plists
22688 (setq ls (pop plists))
22689 (while ls
22690 (setq p (pop ls) v (pop ls))
22691 (setq rtn (plist-put rtn p v))))
22692 rtn))
22694 (defun org-replace-escapes (string table)
22695 "Replace %-escapes in STRING with values in TABLE.
22696 TABLE is an association list with keys like \"%a\" and string values.
22697 The sequences in STRING may contain normal field width and padding information,
22698 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22699 so values can contain further %-escapes if they are define later in TABLE."
22700 (let ((tbl (copy-alist table))
22701 (case-fold-search nil)
22702 (pchg 0)
22703 e re rpl)
22704 (while (setq e (pop tbl))
22705 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22706 (when (and (cdr e) (string-match re (cdr e)))
22707 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22708 (safe "SREF"))
22709 (add-text-properties 0 3 (list 'sref sref) safe)
22710 (setcdr e (replace-match safe t t (cdr e)))))
22711 (while (string-match re string)
22712 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22713 (cdr e)))
22714 (setq string (replace-match rpl t t string))))
22715 (while (setq pchg (next-property-change pchg string))
22716 (let ((sref (get-text-property pchg 'sref string)))
22717 (when (and sref (string-match "SREF" string pchg))
22718 (setq string (replace-match sref t t string)))))
22719 string))
22721 (defun org-sublist (list start end)
22722 "Return a section of LIST, from START to END.
22723 Counting starts at 1."
22724 (let (rtn (c start))
22725 (setq list (nthcdr (1- start) list))
22726 (while (and list (<= c end))
22727 (push (pop list) rtn)
22728 (setq c (1+ c)))
22729 (nreverse rtn)))
22731 (defun org-find-base-buffer-visiting (file)
22732 "Like `find-buffer-visiting' but always return the base buffer and
22733 not an indirect buffer."
22734 (let ((buf (or (get-file-buffer file)
22735 (find-buffer-visiting file))))
22736 (if buf
22737 (or (buffer-base-buffer buf) buf)
22738 nil)))
22740 (defun org-image-file-name-regexp (&optional extensions)
22741 "Return regexp matching the file names of images.
22742 If EXTENSIONS is given, only match these."
22743 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22744 (image-file-name-regexp)
22745 (let ((image-file-name-extensions
22746 (or extensions
22747 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22748 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22749 (concat "\\."
22750 (regexp-opt (nconc (mapcar 'upcase
22751 image-file-name-extensions)
22752 image-file-name-extensions)
22754 "\\'"))))
22756 (defun org-file-image-p (file &optional extensions)
22757 "Return non-nil if FILE is an image."
22758 (save-match-data
22759 (string-match (org-image-file-name-regexp extensions) file)))
22761 (defun org-get-cursor-date (&optional with-time)
22762 "Return the date at cursor in as a time.
22763 This works in the calendar and in the agenda, anywhere else it just
22764 returns the current time.
22765 If WITH-TIME is non-nil, returns the time of the event at point (in
22766 the agenda) or the current time of the day."
22767 (let (date day defd tp tm hod mod)
22768 (when with-time
22769 (setq tp (get-text-property (point) 'time))
22770 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22771 (setq hod (string-to-number (match-string 1 tp))
22772 mod (string-to-number (match-string 2 tp))))
22773 (or tp (setq hod (nth 2 (decode-time (current-time)))
22774 mod (nth 1 (decode-time (current-time))))))
22775 (cond
22776 ((eq major-mode 'calendar-mode)
22777 (setq date (calendar-cursor-to-date)
22778 defd (encode-time 0 (or mod 0) (or hod 0)
22779 (nth 1 date) (nth 0 date) (nth 2 date))))
22780 ((eq major-mode 'org-agenda-mode)
22781 (setq day (get-text-property (point) 'day))
22782 (if day
22783 (setq date (calendar-gregorian-from-absolute day)
22784 defd (encode-time 0 (or mod 0) (or hod 0)
22785 (nth 1 date) (nth 0 date) (nth 2 date))))))
22786 (or defd (current-time))))
22788 (defun org-mark-subtree (&optional up)
22789 "Mark the current subtree.
22790 This puts point at the start of the current subtree, and mark at
22791 the end. If a numeric prefix UP is given, move up into the
22792 hierarchy of headlines by UP levels before marking the subtree."
22793 (interactive "P")
22794 (org-with-limited-levels
22795 (cond ((org-at-heading-p) (beginning-of-line))
22796 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22797 (t (outline-previous-visible-heading 1))))
22798 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22799 (if (org-called-interactively-p 'any)
22800 (call-interactively 'org-mark-element)
22801 (org-mark-element)))
22804 ;;; Indentation
22806 (defun org--get-expected-indentation (element contentsp)
22807 "Expected indentation column for current line, according to ELEMENT.
22808 ELEMENT is an element containing point. CONTENTSP is non-nil
22809 when indentation is to be computed according to contents of
22810 ELEMENT."
22811 (let ((type (org-element-type element))
22812 (start (org-element-property :begin element))
22813 (post-affiliated (org-element-property :post-affiliated element)))
22814 (org-with-wide-buffer
22815 (cond
22816 (contentsp
22817 (case type
22818 ((diary-sexp footnote-definition) 0)
22819 ((headline inlinetask nil)
22820 (if (not org-adapt-indentation) 0
22821 (let ((level (org-current-level)))
22822 (if level (1+ level) 0))))
22823 ((item plain-list) (org-list-item-body-column post-affiliated))
22825 (goto-char start)
22826 (org-get-indentation))))
22827 ((memq type '(headline inlinetask nil))
22828 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22829 (org--get-expected-indentation element t)
22831 ((memq type '(diary-sexp footnote-definition)) 0)
22832 ;; First paragraph of a footnote definition or an item.
22833 ;; Indent like parent.
22834 ((< (line-beginning-position) start)
22835 (org--get-expected-indentation
22836 (org-element-property :parent element) t))
22837 ;; At first line: indent according to previous sibling, if any,
22838 ;; ignoring footnote definitions and inline tasks, or parent's
22839 ;; contents.
22840 ((= (line-beginning-position) start)
22841 (catch 'exit
22842 (while t
22843 (if (= (point-min) start) (throw 'exit 0)
22844 (goto-char (1- start))
22845 (let* ((previous (org-element-at-point))
22846 (parent previous))
22847 (while (and parent (<= (org-element-property :end parent) start))
22848 (setq previous parent
22849 parent (org-element-property :parent parent)))
22850 (cond
22851 ((not previous) (throw 'exit 0))
22852 ((> (org-element-property :end previous) start)
22853 (throw 'exit (org--get-expected-indentation previous t)))
22854 ((memq (org-element-type previous)
22855 '(footnote-definition inlinetask))
22856 (setq start (org-element-property :begin previous)))
22857 (t (goto-char (org-element-property :begin previous))
22858 (throw 'exit
22859 (if (bolp) (org-get-indentation)
22860 ;; At first paragraph in an item or
22861 ;; a footnote definition.
22862 (org--get-expected-indentation
22863 (org-element-property :parent previous) t))))))))))
22864 ;; Otherwise, move to the first non-blank line above.
22866 (beginning-of-line)
22867 (let ((pos (point)))
22868 (skip-chars-backward " \r\t\n")
22869 (cond
22870 ;; Two blank lines end a footnote definition or a plain
22871 ;; list. When we indent an empty line after them, the
22872 ;; containing list or footnote definition is over, so it
22873 ;; qualifies as a previous sibling. Therefore, we indent
22874 ;; like its first line.
22875 ((and (memq type '(footnote-definition plain-list))
22876 (> (count-lines (point) pos) 2))
22877 (goto-char start)
22878 (org-get-indentation))
22879 ;; Line above is the first one of a paragraph at the
22880 ;; beginning of an item or a footnote definition. Indent
22881 ;; like parent.
22882 ((< (line-beginning-position) start)
22883 (org--get-expected-indentation
22884 (org-element-property :parent element) t))
22885 ;; Line above is the beginning of an element, i.e., point
22886 ;; was originally on the blank lines between element's start
22887 ;; and contents.
22888 ((= (line-beginning-position) post-affiliated)
22889 (org--get-expected-indentation element t))
22890 ;; POS is after contents in a greater element. Indent like
22891 ;; the beginning of the element.
22893 ;; As a special case, if point is at the end of a footnote
22894 ;; definition or an item, indent like the very last element
22895 ;; within.
22896 ((and (not (eq type 'paragraph))
22897 (let ((cend (org-element-property :contents-end element)))
22898 (and cend (<= cend pos))))
22899 (if (memq type '(footnote-definition item plain-list))
22900 (let ((last (org-element-at-point)))
22901 (org--get-expected-indentation
22902 last
22903 (memq (org-element-type last)
22904 '(footnote-definition item plain-list))))
22905 (goto-char start)
22906 (org-get-indentation)))
22907 ;; In any other case, indent like the current line.
22908 (t (org-get-indentation)))))))))
22910 (defun org--align-node-property ()
22911 "Align node property at point.
22912 Alignment is done according to `org-property-format', which see."
22913 (when (save-excursion
22914 (beginning-of-line)
22915 (looking-at org-property-re))
22916 (replace-match
22917 (concat (match-string 4)
22918 (org-trim
22919 (format org-property-format (match-string 1) (match-string 3))))
22920 t t)))
22922 (defun org-indent-line ()
22923 "Indent line depending on context.
22925 Indentation is done according to the following rules:
22927 - Footnote definitions, diary sexps, headlines and inline tasks
22928 have to start at column 0.
22930 - On the very first line of an element, consider, in order, the
22931 next rules until one matches:
22933 1. If there's a sibling element before, ignoring footnote
22934 definitions and inline tasks, indent like its first line.
22936 2. If element has a parent, indent like its contents. More
22937 precisely, if parent is an item, indent after the
22938 description part, if any, or the bullet (see
22939 `org-list-description-max-indent'). Else, indent like
22940 parent's first line.
22942 3. Otherwise, indent relatively to current level, if
22943 `org-adapt-indentation' is non-nil, or to left margin.
22945 - On a blank line at the end of an element, indent according to
22946 the type of the element. More precisely
22948 1. If element is a plain list, an item, or a footnote
22949 definition, indent like the very last element within.
22951 2. If element is a paragraph, indent like its last non blank
22952 line.
22954 3. Otherwise, indent like its very first line.
22956 - In the code part of a source block, use language major mode
22957 to indent current line if `org-src-tab-acts-natively' is
22958 non-nil. If it is nil, do nothing.
22960 - Otherwise, indent like the first non-blank line above.
22962 The function doesn't indent an item as it could break the whole
22963 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22964 \\[org-shiftmetaright].
22966 Also align node properties according to `org-property-format'."
22967 (interactive)
22968 (cond
22969 (orgstruct-is-++
22970 (let ((indent-line-function
22971 (cadadr (assq 'indent-line-function org-fb-vars))))
22972 (indent-according-to-mode)))
22973 ((org-at-heading-p) 'noindent)
22975 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22976 (type (org-element-type element)))
22977 (cond ((and (memq type '(plain-list item))
22978 (= (line-beginning-position)
22979 (org-element-property :post-affiliated element)))
22980 'noindent)
22981 ((and (eq type 'src-block)
22982 org-src-tab-acts-natively
22983 (> (line-beginning-position)
22984 (org-element-property :post-affiliated element))
22985 (< (line-beginning-position)
22986 (org-with-wide-buffer
22987 (goto-char (org-element-property :end element))
22988 (skip-chars-backward " \r\t\n")
22989 (line-beginning-position))))
22990 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22992 (let ((column (org--get-expected-indentation element nil)))
22993 ;; Preserve current column.
22994 (if (<= (current-column) (current-indentation))
22995 (org-indent-line-to column)
22996 (save-excursion (org-indent-line-to column))))
22997 ;; Align node property. Also preserve current column.
22998 (when (eq type 'node-property)
22999 (let ((column (current-column)))
23000 (org--align-node-property)
23001 (org-move-to-column column)))))))))
23003 (defun org-indent-region (start end)
23004 "Indent each non-blank line in the region.
23005 Called from a program, START and END specify the region to
23006 indent. The function will not indent contents of example blocks,
23007 verse blocks and export blocks as leading white spaces are
23008 assumed to be significant there."
23009 (interactive "r")
23010 (save-excursion
23011 (goto-char start)
23012 (skip-chars-forward " \r\t\n")
23013 (unless (eobp) (beginning-of-line))
23014 (let ((indent-to
23015 (lambda (ind pos)
23016 ;; Set IND as indentation for all lines between point and
23017 ;; POS or END, whichever comes first. Blank lines are
23018 ;; ignored. Leave point after POS once done.
23019 (let ((limit (copy-marker (min end pos))))
23020 (while (< (point) limit)
23021 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23022 (forward-line))
23023 (set-marker limit nil))))
23024 (end (copy-marker end)))
23025 (while (< (point) end)
23026 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23027 (let* ((element (org-element-at-point))
23028 (type (org-element-type element))
23029 (element-end (copy-marker (org-element-property :end element)))
23030 (ind (org--get-expected-indentation element nil)))
23031 (cond
23032 ((or (memq type '(paragraph table table-row))
23033 (not (or (org-element-property :contents-begin element)
23034 (memq type
23035 '(example-block export-block src-block)))))
23036 ;; Elements here are indented as a single block. Also
23037 ;; align node properties.
23038 (when (eq type 'node-property)
23039 (org--align-node-property)
23040 (beginning-of-line))
23041 (funcall indent-to ind element-end))
23043 ;; Elements in this category consist of three parts:
23044 ;; before the contents, the contents, and after the
23045 ;; contents. The contents are treated specially,
23046 ;; according to the element type, or not indented at
23047 ;; all. Other parts are indented as a single block.
23048 (let* ((post (copy-marker
23049 (org-element-property :post-affiliated element)))
23050 (cbeg
23051 (copy-marker
23052 (cond
23053 ((not (org-element-property :contents-begin element))
23054 ;; Fake contents for source blocks.
23055 (org-with-wide-buffer
23056 (goto-char post)
23057 (forward-line)
23058 (point)))
23059 ((memq type '(footnote-definition item plain-list))
23060 ;; Contents in these elements could start on
23061 ;; the same line as the beginning of the
23062 ;; element. Make sure we start indenting
23063 ;; from the second line.
23064 (org-with-wide-buffer
23065 (goto-char post)
23066 (end-of-line)
23067 (skip-chars-forward " \r\t\n")
23068 (if (eobp) (point) (line-beginning-position))))
23069 (t (org-element-property :contents-begin element)))))
23070 (cend (copy-marker
23071 (or (org-element-property :contents-end element)
23072 ;; Fake contents for source blocks.
23073 (org-with-wide-buffer
23074 (goto-char element-end)
23075 (skip-chars-backward " \r\t\n")
23076 (line-beginning-position)))
23077 t)))
23078 ;; Do not change items indentation individually as it
23079 ;; might break the list as a whole. On the other
23080 ;; hand, when at a plain list, indent it as a whole.
23081 (cond ((eq type 'plain-list)
23082 (let ((offset (- ind (org-get-indentation))))
23083 (unless (zerop offset)
23084 (indent-rigidly (org-element-property :begin element)
23085 (org-element-property :end element)
23086 offset))
23087 (goto-char cbeg)))
23088 ((eq type 'item) (goto-char cbeg))
23089 (t (funcall indent-to ind cbeg)))
23090 (when (< (point) end)
23091 (case type
23092 ((example-block export-block verse-block))
23093 (src-block
23094 ;; In a source block, indent source code
23095 ;; according to language major mode, but only if
23096 ;; `org-src-tab-acts-natively' is non-nil.
23097 (when (and (< (point) end) org-src-tab-acts-natively)
23098 (ignore-errors
23099 (org-babel-do-in-edit-buffer
23100 (indent-region (point-min) (point-max))))))
23101 (t (org-indent-region (point) (min cend end))))
23102 (goto-char (min cend end))
23103 (when (< (point) end) (funcall indent-to ind element-end)))
23104 (set-marker post nil)
23105 (set-marker cbeg nil)
23106 (set-marker cend nil))))
23107 (set-marker element-end nil))))
23108 (set-marker end nil))))
23110 (defun org-indent-drawer ()
23111 "Indent the drawer at point."
23112 (interactive)
23113 (unless (save-excursion
23114 (beginning-of-line)
23115 (org-looking-at-p org-drawer-regexp))
23116 (user-error "Not at a drawer"))
23117 (let ((element (org-element-at-point)))
23118 (unless (memq (org-element-type element) '(drawer property-drawer))
23119 (user-error "Not at a drawer"))
23120 (org-with-wide-buffer
23121 (org-indent-region (org-element-property :begin element)
23122 (org-element-property :end element))))
23123 (message "Drawer at point indented"))
23125 (defun org-indent-block ()
23126 "Indent the block at point."
23127 (interactive)
23128 (unless (save-excursion
23129 (beginning-of-line)
23130 (let ((case-fold-search t))
23131 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23132 (user-error "Not at a block"))
23133 (let ((element (org-element-at-point)))
23134 (unless (memq (org-element-type element)
23135 '(comment-block center-block dynamic-block example-block
23136 export-block quote-block special-block
23137 src-block verse-block))
23138 (user-error "Not at a block"))
23139 (org-with-wide-buffer
23140 (org-indent-region (org-element-property :begin element)
23141 (org-element-property :end element))))
23142 (message "Block at point indented"))
23145 ;;; Filling
23147 ;; We use our own fill-paragraph and auto-fill functions.
23149 ;; `org-fill-paragraph' relies on adaptive filling and context
23150 ;; checking. Appropriate `fill-prefix' is computed with
23151 ;; `org-adaptive-fill-function'.
23153 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23154 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23155 ;; `org-adaptive-fill-function' value. Internally,
23156 ;; `org-comment-line-break-function' breaks the line.
23158 ;; `org-setup-filling' installs filling and auto-filling related
23159 ;; variables during `org-mode' initialization.
23161 (defvar org-element-paragraph-separate) ; org-element.el
23162 (defun org-setup-filling ()
23163 (require 'org-element)
23164 ;; Prevent auto-fill from inserting unwanted new items.
23165 (when (boundp 'fill-nobreak-predicate)
23166 (org-set-local
23167 'fill-nobreak-predicate
23168 (org-uniquify
23169 (append fill-nobreak-predicate
23170 '(org-fill-line-break-nobreak-p
23171 org-fill-paragraph-with-timestamp-nobreak-p)))))
23172 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23173 (org-set-local 'paragraph-start paragraph-ending)
23174 (org-set-local 'paragraph-separate paragraph-ending))
23175 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23176 (org-set-local 'auto-fill-inhibit-regexp nil)
23177 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23178 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23179 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23181 (defun org-fill-line-break-nobreak-p ()
23182 "Non-nil when a new line at point would create an Org line break."
23183 (save-excursion
23184 (skip-chars-backward "[ \t]")
23185 (skip-chars-backward "\\\\")
23186 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23188 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23189 "Non-nil when a new line at point would split a timestamp."
23190 (and (org-at-timestamp-p t)
23191 (not (looking-at org-ts-regexp-both))))
23193 (declare-function message-in-body-p "message" ())
23194 (defvar orgtbl-line-start-regexp) ; From org-table.el
23195 (defun org-adaptive-fill-function ()
23196 "Compute a fill prefix for the current line.
23197 Return fill prefix, as a string, or nil if current line isn't
23198 meant to be filled. For convenience, if `adaptive-fill-regexp'
23199 matches in paragraphs or comments, use it."
23200 (catch 'exit
23201 (when (derived-mode-p 'message-mode)
23202 (save-excursion
23203 (beginning-of-line)
23204 (cond ((not (message-in-body-p)) (throw 'exit nil))
23205 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23206 ((looking-at message-cite-prefix-regexp)
23207 (throw 'exit (match-string-no-properties 0)))
23208 ((looking-at org-outline-regexp)
23209 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23210 (org-with-wide-buffer
23211 (unless (org-at-heading-p)
23212 (let* ((p (line-beginning-position))
23213 (element (save-excursion
23214 (beginning-of-line)
23215 (org-element-at-point)))
23216 (type (org-element-type element))
23217 (post-affiliated (org-element-property :post-affiliated element)))
23218 (unless (< p post-affiliated)
23219 (case type
23220 (comment
23221 (save-excursion
23222 (beginning-of-line)
23223 (looking-at "[ \t]*")
23224 (concat (match-string 0) "# ")))
23225 (footnote-definition "")
23226 ((item plain-list)
23227 (make-string (org-list-item-body-column post-affiliated) ?\s))
23228 (paragraph
23229 ;; Fill prefix is usually the same as the current line,
23230 ;; unless the paragraph is at the beginning of an item.
23231 (let ((parent (org-element-property :parent element)))
23232 (save-excursion
23233 (beginning-of-line)
23234 (cond ((eq (org-element-type parent) 'item)
23235 (make-string (org-list-item-body-column
23236 (org-element-property :begin parent))
23237 ?\s))
23238 ((and adaptive-fill-regexp
23239 ;; Locally disable
23240 ;; `adaptive-fill-function' to let
23241 ;; `fill-context-prefix' handle
23242 ;; `adaptive-fill-regexp' variable.
23243 (let (adaptive-fill-function)
23244 (fill-context-prefix
23245 post-affiliated
23246 (org-element-property :end element)))))
23247 ((looking-at "[ \t]+") (match-string 0))
23248 (t "")))))
23249 (comment-block
23250 ;; Only fill contents if P is within block boundaries.
23251 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23252 (forward-line)
23253 (point)))
23254 (cend (save-excursion
23255 (goto-char (org-element-property :end element))
23256 (skip-chars-backward " \r\t\n")
23257 (line-beginning-position))))
23258 (when (and (>= p cbeg) (< p cend))
23259 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23260 (match-string 0)
23261 "")))))))))))
23263 (declare-function message-goto-body "message" ())
23264 (defvar message-cite-prefix-regexp) ; From message.el
23265 (defun org-fill-paragraph (&optional justify)
23266 "Fill element at point, when applicable.
23268 This function only applies to comment blocks, comments, example
23269 blocks and paragraphs. Also, as a special case, re-align table
23270 when point is at one.
23272 If JUSTIFY is non-nil (interactively, with prefix argument),
23273 justify as well. If `sentence-end-double-space' is non-nil, then
23274 period followed by one space does not end a sentence, so don't
23275 break a line there. The variable `fill-column' controls the
23276 width for filling.
23278 For convenience, when point is at a plain list, an item or
23279 a footnote definition, try to fill the first paragraph within."
23280 (interactive)
23281 (if (and (derived-mode-p 'message-mode)
23282 (or (not (message-in-body-p))
23283 (save-excursion (move-beginning-of-line 1)
23284 (looking-at message-cite-prefix-regexp))))
23285 ;; First ensure filling is correct in message-mode.
23286 (let ((fill-paragraph-function
23287 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23288 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23289 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23290 (paragraph-separate
23291 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23292 (fill-paragraph nil))
23293 (with-syntax-table org-mode-transpose-word-syntax-table
23294 ;; Move to end of line in order to get the first paragraph
23295 ;; within a plain list or a footnote definition.
23296 (let ((element (save-excursion
23297 (end-of-line)
23298 (or (ignore-errors (org-element-at-point))
23299 (user-error "An element cannot be parsed line %d"
23300 (line-number-at-pos (point)))))))
23301 ;; First check if point is in a blank line at the beginning of
23302 ;; the buffer. In that case, ignore filling.
23303 (case (org-element-type element)
23304 ;; Use major mode filling function is src blocks.
23305 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23306 ;; Align Org tables, leave table.el tables as-is.
23307 (table-row (org-table-align) t)
23308 (table
23309 (when (eq (org-element-property :type element) 'org)
23310 (save-excursion
23311 (goto-char (org-element-property :post-affiliated element))
23312 (org-table-align)))
23314 (paragraph
23315 ;; Paragraphs may contain `line-break' type objects.
23316 (let ((beg (max (point-min)
23317 (org-element-property :contents-begin element)))
23318 (end (min (point-max)
23319 (org-element-property :contents-end element))))
23320 ;; Do nothing if point is at an affiliated keyword.
23321 (if (< (line-end-position) beg) t
23322 (when (derived-mode-p 'message-mode)
23323 ;; In `message-mode', do not fill following citation
23324 ;; in current paragraph nor text before message body.
23325 (let ((body-start (save-excursion (message-goto-body))))
23326 (when body-start (setq beg (max body-start beg))))
23327 (when (save-excursion
23328 (re-search-forward
23329 (concat "^" message-cite-prefix-regexp) end t))
23330 (setq end (match-beginning 0))))
23331 ;; Fill paragraph, taking line breaks into account.
23332 (save-excursion
23333 (goto-char beg)
23334 (let ((cuts (list beg)))
23335 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23336 (when (eq 'line-break
23337 (org-element-type
23338 (save-excursion (backward-char)
23339 (org-element-context))))
23340 (push (point) cuts)))
23341 (dolist (c (delq end cuts))
23342 (fill-region-as-paragraph c end justify)
23343 (setq end c))))
23344 t)))
23345 ;; Contents of `comment-block' type elements should be
23346 ;; filled as plain text, but only if point is within block
23347 ;; markers.
23348 (comment-block
23349 (let* ((case-fold-search t)
23350 (beg (save-excursion
23351 (goto-char (org-element-property :begin element))
23352 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23353 (forward-line)
23354 (point)))
23355 (end (save-excursion
23356 (goto-char (org-element-property :end element))
23357 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23358 (line-beginning-position))))
23359 (if (or (< (point) beg) (> (point) end)) t
23360 (fill-region-as-paragraph
23361 (save-excursion (end-of-line)
23362 (re-search-backward "^[ \t]*$" beg 'move)
23363 (line-beginning-position))
23364 (save-excursion (beginning-of-line)
23365 (re-search-forward "^[ \t]*$" end 'move)
23366 (line-beginning-position))
23367 justify))))
23368 ;; Fill comments.
23369 (comment
23370 (let ((begin (org-element-property :post-affiliated element))
23371 (end (org-element-property :end element)))
23372 (when (and (>= (point) begin) (<= (point) end))
23373 (let ((begin (save-excursion
23374 (end-of-line)
23375 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23376 (progn (forward-line) (point))
23377 begin)))
23378 (end (save-excursion
23379 (end-of-line)
23380 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23381 (1- (line-beginning-position))
23382 (skip-chars-backward " \r\t\n")
23383 (line-end-position)))))
23384 ;; Do not fill comments when at a blank line.
23385 (when (> end begin)
23386 (let ((fill-prefix
23387 (save-excursion
23388 (beginning-of-line)
23389 (looking-at "[ \t]*#")
23390 (let ((comment-prefix (match-string 0)))
23391 (goto-char (match-end 0))
23392 (if (looking-at adaptive-fill-regexp)
23393 (concat comment-prefix (match-string 0))
23394 (concat comment-prefix " "))))))
23395 (save-excursion
23396 (fill-region-as-paragraph begin end justify))))))
23398 ;; Ignore every other element.
23399 (otherwise t))))))
23401 (defun org-auto-fill-function ()
23402 "Auto-fill function."
23403 ;; Check if auto-filling is meaningful.
23404 (let ((fc (current-fill-column)))
23405 (when (and fc (> (current-column) fc))
23406 (let* ((fill-prefix (org-adaptive-fill-function))
23407 ;; Enforce empty fill prefix, if required. Otherwise, it
23408 ;; will be computed again.
23409 (adaptive-fill-mode (not (equal fill-prefix ""))))
23410 (when fill-prefix (do-auto-fill))))))
23412 (defun org-comment-line-break-function (&optional soft)
23413 "Break line at point and indent, continuing comment if within one.
23414 The inserted newline is marked hard if variable
23415 `use-hard-newlines' is true, unless optional argument SOFT is
23416 non-nil."
23417 (if soft (insert-and-inherit ?\n) (newline 1))
23418 (save-excursion (forward-char -1) (delete-horizontal-space))
23419 (delete-horizontal-space)
23420 (indent-to-left-margin)
23421 (insert-before-markers-and-inherit fill-prefix))
23424 ;;; Fixed Width Areas
23426 (defun org-toggle-fixed-width ()
23427 "Toggle fixed-width markup.
23429 Add or remove fixed-width markup on current line, whenever it
23430 makes sense. Return an error otherwise.
23432 If a region is active and if it contains only fixed-width areas
23433 or blank lines, remove all fixed-width markup in it. If the
23434 region contains anything else, convert all non-fixed-width lines
23435 to fixed-width ones.
23437 Blank lines at the end of the region are ignored unless the
23438 region only contains such lines."
23439 (interactive)
23440 (if (not (org-region-active-p))
23441 ;; No region:
23443 ;; Remove fixed width marker only in a fixed-with element.
23445 ;; Add fixed width maker in paragraphs, in blank lines after
23446 ;; elements or at the beginning of a headline or an inlinetask,
23447 ;; and before any one-line elements (e.g., a clock).
23448 (progn
23449 (beginning-of-line)
23450 (let* ((element (org-element-at-point))
23451 (type (org-element-type element)))
23452 (cond
23453 ((and (eq type 'fixed-width)
23454 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23455 (replace-match
23456 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23457 ((and (memq type '(babel-call clock comment diary-sexp headline
23458 horizontal-rule keyword paragraph
23459 planning))
23460 (<= (org-element-property :post-affiliated element) (point)))
23461 (skip-chars-forward " \t")
23462 (insert ": "))
23463 ((and (org-looking-at-p "[ \t]*$")
23464 (or (eq type 'inlinetask)
23465 (save-excursion
23466 (skip-chars-forward " \r\t\n")
23467 (<= (org-element-property :end element) (point)))))
23468 (delete-region (point) (line-end-position))
23469 (org-indent-line)
23470 (insert ": "))
23471 (t (user-error "Cannot insert a fixed-width line here")))))
23472 ;; Region active.
23473 (let* ((begin (save-excursion
23474 (goto-char (region-beginning))
23475 (line-beginning-position)))
23476 (end (copy-marker
23477 (save-excursion
23478 (goto-char (region-end))
23479 (unless (eolp) (beginning-of-line))
23480 (if (save-excursion (re-search-backward "\\S-" begin t))
23481 (progn (skip-chars-backward " \r\t\n") (point))
23482 (point)))))
23483 (all-fixed-width-p
23484 (catch 'not-all-p
23485 (save-excursion
23486 (goto-char begin)
23487 (skip-chars-forward " \r\t\n")
23488 (when (eobp) (throw 'not-all-p nil))
23489 (while (< (point) end)
23490 (let ((element (org-element-at-point)))
23491 (if (eq (org-element-type element) 'fixed-width)
23492 (goto-char (org-element-property :end element))
23493 (throw 'not-all-p nil))))
23494 t))))
23495 (if all-fixed-width-p
23496 (save-excursion
23497 (goto-char begin)
23498 (while (< (point) end)
23499 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23500 (replace-match
23501 "" nil nil nil
23502 (if (= (line-end-position) (match-end 0)) 0 1)))
23503 (forward-line)))
23504 (let ((min-ind (point-max)))
23505 ;; Find minimum indentation across all lines.
23506 (save-excursion
23507 (goto-char begin)
23508 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23509 (setq min-ind 0)
23510 (catch 'zerop
23511 (while (< (point) end)
23512 (unless (org-looking-at-p "[ \t]*$")
23513 (let ((ind (org-get-indentation)))
23514 (setq min-ind (min min-ind ind))
23515 (when (zerop ind) (throw 'zerop t))))
23516 (forward-line)))))
23517 ;; Loop over all lines and add fixed-width markup everywhere
23518 ;; but in fixed-width lines.
23519 (save-excursion
23520 (goto-char begin)
23521 (while (< (point) end)
23522 (cond
23523 ((org-at-heading-p)
23524 (insert ": ")
23525 (forward-line)
23526 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23527 (insert ":")
23528 (forward-line)))
23529 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23530 (let* ((element (org-element-at-point))
23531 (element-end (org-element-property :end element)))
23532 (if (eq (org-element-type element) 'fixed-width)
23533 (progn (goto-char element-end)
23534 (skip-chars-backward " \r\t\n")
23535 (forward-line))
23536 (let ((limit (min end element-end)))
23537 (while (< (point) limit)
23538 (org-move-to-column min-ind t)
23539 (insert ": ")
23540 (forward-line))))))
23542 (org-move-to-column min-ind t)
23543 (insert ": ")
23544 (forward-line)))))))
23545 (set-marker end nil))))
23548 ;;; Comments
23550 ;; Org comments syntax is quite complex. It requires the entire line
23551 ;; to be just a comment. Also, even with the right syntax at the
23552 ;; beginning of line, some some elements (i.e. verse-block or
23553 ;; example-block) don't accept comments. Usual Emacs comment commands
23554 ;; cannot cope with those requirements. Therefore, Org replaces them.
23556 ;; Org still relies on `comment-dwim', but cannot trust
23557 ;; `comment-only-p'. So, `comment-region-function' and
23558 ;; `uncomment-region-function' both point
23559 ;; to`org-comment-or-uncomment-region'. Eventually,
23560 ;; `org-insert-comment' takes care of insertion of comments at the
23561 ;; beginning of line.
23563 ;; `org-setup-comments-handling' install comments related variables
23564 ;; during `org-mode' initialization.
23566 (defun org-setup-comments-handling ()
23567 (interactive)
23568 (org-set-local 'comment-use-syntax nil)
23569 (org-set-local 'comment-start "# ")
23570 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23571 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23572 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23573 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23575 (defun org-insert-comment ()
23576 "Insert an empty comment above current line.
23577 If the line is empty, insert comment at its beginning. When
23578 point is within a source block, comment according to the related
23579 major mode."
23580 (if (let ((element (org-element-at-point)))
23581 (and (eq (org-element-type element) 'src-block)
23582 (< (save-excursion
23583 (goto-char (org-element-property :post-affiliated element))
23584 (line-end-position))
23585 (point))
23586 (> (save-excursion
23587 (goto-char (org-element-property :end element))
23588 (skip-chars-backward " \r\t\n")
23589 (line-beginning-position))
23590 (point))))
23591 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23592 (beginning-of-line)
23593 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23594 (open-line 1))
23595 (org-indent-line)
23596 (insert "# ")))
23598 (defvar comment-empty-lines) ; From newcomment.el.
23599 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23600 "Comment or uncomment each non-blank line in the region.
23601 Uncomment each non-blank line between BEG and END if it only
23602 contains commented lines. Otherwise, comment them. If region is
23603 strictly within a source block, use appropriate comment syntax."
23604 (if (let ((element (org-element-at-point)))
23605 (and (eq (org-element-type element) 'src-block)
23606 (< (save-excursion
23607 (goto-char (org-element-property :post-affiliated element))
23608 (line-end-position))
23609 beg)
23610 (>= (save-excursion
23611 (goto-char (org-element-property :end element))
23612 (skip-chars-backward " \r\t\n")
23613 (line-beginning-position))
23614 end)))
23615 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23616 (save-restriction
23617 ;; Restrict region
23618 (narrow-to-region (save-excursion (goto-char beg)
23619 (skip-chars-forward " \r\t\n" end)
23620 (line-beginning-position))
23621 (save-excursion (goto-char end)
23622 (skip-chars-backward " \r\t\n" beg)
23623 (line-end-position)))
23624 (let ((uncommentp
23625 ;; UNCOMMENTP is non-nil when every non blank line between
23626 ;; BEG and END is a comment.
23627 (save-excursion
23628 (goto-char (point-min))
23629 (while (and (not (eobp))
23630 (let ((element (org-element-at-point)))
23631 (and (eq (org-element-type element) 'comment)
23632 (goto-char (min (point-max)
23633 (org-element-property
23634 :end element)))))))
23635 (eobp))))
23636 (if uncommentp
23637 ;; Only blank lines and comments in region: uncomment it.
23638 (save-excursion
23639 (goto-char (point-min))
23640 (while (not (eobp))
23641 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23642 (replace-match "" nil nil nil 1))
23643 (forward-line)))
23644 ;; Comment each line in region.
23645 (let ((min-indent (point-max)))
23646 ;; First find the minimum indentation across all lines.
23647 (save-excursion
23648 (goto-char (point-min))
23649 (while (and (not (eobp)) (not (zerop min-indent)))
23650 (unless (looking-at "[ \t]*$")
23651 (setq min-indent (min min-indent (current-indentation))))
23652 (forward-line)))
23653 ;; Then loop over all lines.
23654 (save-excursion
23655 (goto-char (point-min))
23656 (while (not (eobp))
23657 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23658 ;; Don't get fooled by invisible text (e.g. link path)
23659 ;; when moving to column MIN-INDENT.
23660 (let ((buffer-invisibility-spec nil))
23661 (org-move-to-column min-indent t))
23662 (insert comment-start))
23663 (forward-line)))))))))
23665 (defun org-comment-dwim (arg)
23666 "Call `comment-dwim' within a source edit buffer if needed."
23667 (interactive "*P")
23668 (if (org-in-src-block-p)
23669 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23670 (call-interactively 'comment-dwim)))
23673 ;;; Timestamps API
23675 ;; This section contains tools to operate on timestamp objects, as
23676 ;; returned by, e.g. `org-element-context'.
23678 (defun org-timestamp--to-internal-time (timestamp &optional end)
23679 "Encode TIMESTAMP object into Emacs internal time.
23680 Use end of date range or time range when END is non-nil."
23681 (apply #'encode-time
23682 (cons 0
23683 (mapcar
23684 (lambda (prop) (or (org-element-property prop timestamp) 0))
23685 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23686 '(:minute-start :hour-start :day-start :month-start
23687 :year-start))))))
23689 (defun org-timestamp-has-time-p (timestamp)
23690 "Non-nil when TIMESTAMP has a time specified."
23691 (org-element-property :hour-start timestamp))
23693 (defun org-timestamp-format (timestamp format &optional end utc)
23694 "Format a TIMESTAMP object into a string.
23696 FORMAT is a format specifier to be passed to
23697 `format-time-string'.
23699 When optional argument END is non-nil, use end of date-range or
23700 time-range, if possible.
23702 When optional argument UTC is non-nil, time will be expressed as
23703 Universal Time."
23704 (format-time-string
23705 format (org-timestamp--to-internal-time timestamp end) utc))
23707 (defun org-timestamp-split-range (timestamp &optional end)
23708 "Extract a TIMESTAMP object from a date or time range.
23710 END, when non-nil, means extract the end of the range.
23711 Otherwise, extract its start.
23713 Return a new timestamp object."
23714 (let ((type (org-element-property :type timestamp)))
23715 (if (memq type '(active inactive diary)) timestamp
23716 (let ((split-ts (org-element-copy timestamp)))
23717 ;; Set new type.
23718 (org-element-put-property
23719 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23720 ;; Copy start properties over end properties if END is
23721 ;; non-nil. Otherwise, copy end properties over `start' ones.
23722 (let ((p-alist '((:minute-start . :minute-end)
23723 (:hour-start . :hour-end)
23724 (:day-start . :day-end)
23725 (:month-start . :month-end)
23726 (:year-start . :year-end))))
23727 (dolist (p-cell p-alist)
23728 (org-element-put-property
23729 split-ts
23730 (funcall (if end #'car #'cdr) p-cell)
23731 (org-element-property
23732 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23733 ;; Eventually refresh `:raw-value'.
23734 (org-element-put-property split-ts :raw-value nil)
23735 (org-element-put-property
23736 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23738 (defun org-timestamp-translate (timestamp &optional boundary)
23739 "Translate TIMESTAMP object to custom format.
23741 Format string is defined in `org-time-stamp-custom-formats',
23742 which see.
23744 When optional argument BOUNDARY is non-nil, it is either the
23745 symbol `start' or `end'. In this case, only translate the
23746 starting or ending part of TIMESTAMP if it is a date or time
23747 range. Otherwise, translate both parts.
23749 Return timestamp as-is if `org-display-custom-times' is nil or if
23750 it has a `diary' type."
23751 (let ((type (org-element-property :type timestamp)))
23752 (if (or (not org-display-custom-times) (eq type 'diary))
23753 (org-element-interpret-data timestamp)
23754 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23755 org-time-stamp-custom-formats)))
23756 (if (and (not boundary) (memq type '(active-range inactive-range)))
23757 (concat (org-timestamp-format timestamp fmt)
23758 "--"
23759 (org-timestamp-format timestamp fmt t))
23760 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23764 ;;; Other stuff.
23766 (defun org-reftex-citation ()
23767 "Use reftex-citation to insert a citation into the buffer.
23768 This looks for a line like
23770 #+BIBLIOGRAPHY: foo plain option:-d
23772 and derives from it that foo.bib is the bibliography file relevant
23773 for this document. It then installs the necessary environment for RefTeX
23774 to work in this buffer and calls `reftex-citation' to insert a citation
23775 into the buffer.
23777 Export of such citations to both LaTeX and HTML is handled by the contributed
23778 package ox-bibtex by Taru Karttunen."
23779 (interactive)
23780 (let ((reftex-docstruct-symbol 'rds)
23781 (reftex-cite-format "\\cite{%l}")
23782 rds bib)
23783 (save-excursion
23784 (save-restriction
23785 (widen)
23786 (let ((case-fold-search t)
23787 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23788 (if (not (save-excursion
23789 (or (re-search-forward re nil t)
23790 (re-search-backward re nil t))))
23791 (user-error "No bibliography defined in file")
23792 (setq bib (concat (match-string 1) ".bib")
23793 rds (list (list 'bib bib)))))))
23794 (call-interactively 'reftex-citation)))
23796 ;;;; Functions extending outline functionality
23798 (defun org-beginning-of-line (&optional arg)
23799 "Go to the beginning of the current line. If that is invisible, continue
23800 to a visible line beginning. This makes the function of C-a more intuitive.
23801 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23802 first attempt, and only move to after the tags when the cursor is already
23803 beyond the end of the headline."
23804 (interactive "P")
23805 (let ((pos (point))
23806 (special (if (consp org-special-ctrl-a/e)
23807 (car org-special-ctrl-a/e)
23808 org-special-ctrl-a/e))
23809 deactivate-mark refpos)
23810 (if (org-bound-and-true-p visual-line-mode)
23811 (beginning-of-visual-line 1)
23812 (beginning-of-line 1))
23813 (if (and arg (fboundp 'move-beginning-of-line))
23814 (call-interactively 'move-beginning-of-line)
23815 (if (bobp)
23817 (backward-char 1)
23818 (if (org-truely-invisible-p)
23819 (while (and (not (bobp)) (org-truely-invisible-p))
23820 (backward-char 1)
23821 (beginning-of-line 1))
23822 (forward-char 1))))
23823 (when special
23824 (cond
23825 ((and (looking-at org-complex-heading-regexp)
23826 (= (char-after (match-end 1)) ?\ ))
23827 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23828 (point-at-eol)))
23829 (goto-char
23830 (if (eq special t)
23831 (cond ((> pos refpos) refpos)
23832 ((= pos (point)) refpos)
23833 (t (point)))
23834 (cond ((> pos (point)) (point))
23835 ((not (eq last-command this-command)) (point))
23836 (t refpos)))))
23837 ((org-at-item-p)
23838 ;; Being at an item and not looking at an the item means point
23839 ;; was previously moved to beginning of a visual line, which
23840 ;; doesn't contain the item. Therefore, do nothing special,
23841 ;; just stay here.
23842 (when (looking-at org-list-full-item-re)
23843 ;; Set special position at first white space character after
23844 ;; bullet, and check-box, if any.
23845 (let ((after-bullet
23846 (let ((box (match-end 3)))
23847 (if (not box) (match-end 1)
23848 (let ((after (char-after box)))
23849 (if (and after (= after ? )) (1+ box) box))))))
23850 ;; Special case: Move point to special position when
23851 ;; currently after it or at beginning of line.
23852 (if (eq special t)
23853 (when (or (> pos after-bullet) (= (point) pos))
23854 (goto-char after-bullet))
23855 ;; Reversed case: Move point to special position when
23856 ;; point was already at beginning of line and command is
23857 ;; repeated.
23858 (when (and (= (point) pos) (eq last-command this-command))
23859 (goto-char after-bullet))))))))
23860 (org-no-warnings
23861 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23862 (setq disable-point-adjustment
23863 (or (not (invisible-p (point)))
23864 (not (invisible-p (max (point-min) (1- (point))))))))
23866 (defun org-end-of-line (&optional arg)
23867 "Go to the end of the line.
23868 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23869 tags on the first attempt, and only move to after the tags when
23870 the cursor is already beyond the end of the headline."
23871 (interactive "P")
23872 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23873 org-special-ctrl-a/e))
23874 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23875 'end-of-visual-line)
23876 ((fboundp 'move-end-of-line) 'move-end-of-line)
23877 (t 'end-of-line)))
23878 deactivate-mark)
23879 (if (or (not special) arg) (call-interactively move-fun)
23880 (let* ((element (save-excursion (beginning-of-line)
23881 (org-element-at-point)))
23882 (type (org-element-type element)))
23883 (cond
23884 ((memq type '(headline inlinetask))
23885 (let ((pos (point)))
23886 (beginning-of-line 1)
23887 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23888 (if (eq special t)
23889 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23890 (goto-char (match-beginning 1))
23891 (goto-char (match-end 0)))
23892 (if (or (< pos (match-end 0))
23893 (not (eq this-command last-command)))
23894 (goto-char (match-end 0))
23895 (goto-char (match-beginning 1))))
23896 (call-interactively move-fun))))
23897 ((outline-invisible-p (line-end-position))
23898 ;; If element is hidden, `move-end-of-line' would put point
23899 ;; after it. Use `end-of-line' to stay on current line.
23900 (call-interactively 'end-of-line))
23901 (t (call-interactively move-fun)))))
23902 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23903 (setq disable-point-adjustment
23904 (or (not (invisible-p (point)))
23905 (not (invisible-p (max (point-min) (1- (point))))))))
23907 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23908 (define-key org-mode-map "\C-e" 'org-end-of-line)
23910 (defun org-backward-sentence (&optional arg)
23911 "Go to beginning of sentence, or beginning of table field.
23912 This will call `backward-sentence' or `org-table-beginning-of-field',
23913 depending on context."
23914 (interactive "P")
23915 (let* ((element (org-element-at-point))
23916 (contents-begin (org-element-property :contents-begin element))
23917 (table (org-element-lineage element '(table) t)))
23918 (if (and table
23919 (> (point) contents-begin)
23920 (<= (point) (org-element-property :contents-end table)))
23921 (call-interactively #'org-table-beginning-of-field)
23922 (save-restriction
23923 (when (and contents-begin
23924 (< (point-min) contents-begin)
23925 (> (point) contents-begin))
23926 (narrow-to-region contents-begin
23927 (org-element-property :contents-end element)))
23928 (call-interactively #'backward-sentence)))))
23930 (defun org-forward-sentence (&optional arg)
23931 "Go to end of sentence, or end of table field.
23932 This will call `forward-sentence' or `org-table-end-of-field',
23933 depending on context."
23934 (interactive "P")
23935 (let* ((element (org-element-at-point))
23936 (contents-end (org-element-property :contents-end element))
23937 (table (org-element-lineage element '(table) t)))
23938 (if (and table
23939 (>= (point) (org-element-property :contents-begin table))
23940 (< (point) contents-end))
23941 (call-interactively #'org-table-end-of-field)
23942 (save-restriction
23943 (when (and contents-end
23944 (> (point-max) contents-end)
23945 ;; Skip blank lines between elements.
23946 (< (org-element-property :end element)
23947 (save-excursion (goto-char contents-end)
23948 (skip-chars-forward " \r\t\n"))))
23949 (narrow-to-region (org-element-property :contents-begin element)
23950 contents-end))
23951 (call-interactively #'forward-sentence)))))
23953 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23954 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23956 (defun org-kill-line (&optional arg)
23957 "Kill line, to tags or end of line."
23958 (interactive "P")
23959 (cond
23960 ((or (not org-special-ctrl-k)
23961 (bolp)
23962 (not (org-at-heading-p)))
23963 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23964 org-ctrl-k-protect-subtree)
23965 (if (or (eq org-ctrl-k-protect-subtree 'error)
23966 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23967 (user-error "C-k aborted as it would kill a hidden subtree")))
23968 (call-interactively
23969 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23970 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23971 (kill-region (point) (match-beginning 1))
23972 (org-set-tags nil t))
23973 (t (kill-region (point) (point-at-eol)))))
23975 (define-key org-mode-map "\C-k" 'org-kill-line)
23977 (defun org-yank (&optional arg)
23978 "Yank. If the kill is a subtree, treat it specially.
23979 This command will look at the current kill and check if is a single
23980 subtree, or a series of subtrees[1]. If it passes the test, and if the
23981 cursor is at the beginning of a line or after the stars of a currently
23982 empty headline, then the yank is handled specially. How exactly depends
23983 on the value of the following variables, both set by default.
23985 `org-yank-folded-subtrees'
23986 When set, the subtree(s) will be folded after insertion, but only
23987 if doing so would now swallow text after the yanked text.
23989 `org-yank-adjusted-subtrees'
23990 When set, the subtree will be promoted or demoted in order to
23991 fit into the local outline tree structure, which means that the
23992 level will be adjusted so that it becomes the smaller one of the
23993 two *visible* surrounding headings.
23995 Any prefix to this command will cause `yank' to be called directly with
23996 no special treatment. In particular, a simple \\[universal-argument] prefix \
23997 will just
23998 plainly yank the text as it is.
24000 \[1] The test checks if the first non-white line is a heading
24001 and if there are no other headings with fewer stars."
24002 (interactive "P")
24003 (org-yank-generic 'yank arg))
24005 (defun org-yank-generic (command arg)
24006 "Perform some yank-like command.
24008 This function implements the behavior described in the `org-yank'
24009 documentation. However, it has been generalized to work for any
24010 interactive command with similar behavior."
24012 ;; pretend to be command COMMAND
24013 (setq this-command command)
24015 (if arg
24016 (call-interactively command)
24018 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24019 (and (org-kill-is-subtree-p)
24020 (or (bolp)
24021 (and (looking-at "[ \t]*$")
24022 (string-match
24023 "\\`\\*+\\'"
24024 (buffer-substring (point-at-bol) (point)))))))
24025 swallowp)
24026 (cond
24027 ((and subtreep org-yank-folded-subtrees)
24028 (let ((beg (point))
24029 end)
24030 (if (and subtreep org-yank-adjusted-subtrees)
24031 (org-paste-subtree nil nil 'for-yank)
24032 (call-interactively command))
24034 (setq end (point))
24035 (goto-char beg)
24036 (when (and (bolp) subtreep
24037 (not (setq swallowp
24038 (org-yank-folding-would-swallow-text beg end))))
24039 (org-with-limited-levels
24040 (or (looking-at org-outline-regexp)
24041 (re-search-forward org-outline-regexp-bol end t))
24042 (while (and (< (point) end) (looking-at org-outline-regexp))
24043 (hide-subtree)
24044 (org-cycle-show-empty-lines 'folded)
24045 (condition-case nil
24046 (outline-forward-same-level 1)
24047 (error (goto-char end))))))
24048 (when swallowp
24049 (message
24050 "Inserted text not folded because that would swallow text"))
24052 (goto-char end)
24053 (skip-chars-forward " \t\n\r")
24054 (beginning-of-line 1)
24055 (push-mark beg 'nomsg)))
24056 ((and subtreep org-yank-adjusted-subtrees)
24057 (let ((beg (point-at-bol)))
24058 (org-paste-subtree nil nil 'for-yank)
24059 (push-mark beg 'nomsg)))
24061 (call-interactively command))))))
24063 (defun org-yank-folding-would-swallow-text (beg end)
24064 "Would hide-subtree at BEG swallow any text after END?"
24065 (let (level)
24066 (org-with-limited-levels
24067 (save-excursion
24068 (goto-char beg)
24069 (when (or (looking-at org-outline-regexp)
24070 (re-search-forward org-outline-regexp-bol end t))
24071 (setq level (org-outline-level)))
24072 (goto-char end)
24073 (skip-chars-forward " \t\r\n\v\f")
24074 (if (or (eobp)
24075 (and (bolp) (looking-at org-outline-regexp)
24076 (<= (org-outline-level) level)))
24077 nil ; Nothing would be swallowed
24078 t))))) ; something would swallow
24080 (define-key org-mode-map "\C-y" 'org-yank)
24082 (defun org-truely-invisible-p ()
24083 "Check if point is at a character currently not visible.
24084 This version does not only check the character property, but also
24085 `visible-mode'."
24086 ;; Early versions of noutline don't have `outline-invisible-p'.
24087 (if (org-bound-and-true-p visible-mode)
24089 (outline-invisible-p)))
24091 (defun org-invisible-p2 ()
24092 "Check if point is at a character currently not visible."
24093 (save-excursion
24094 (if (and (eolp) (not (bobp))) (backward-char 1))
24095 ;; Early versions of noutline don't have `outline-invisible-p'.
24096 (outline-invisible-p)))
24098 (defun org-back-to-heading (&optional invisible-ok)
24099 "Call `outline-back-to-heading', but provide a better error message."
24100 (condition-case nil
24101 (outline-back-to-heading invisible-ok)
24102 (error (error "Before first headline at position %d in buffer %s"
24103 (point) (current-buffer)))))
24105 (defun org-before-first-heading-p ()
24106 "Before first heading?"
24107 (save-excursion
24108 (end-of-line)
24109 (null (re-search-backward org-outline-regexp-bol nil t))))
24111 (defun org-at-heading-p (&optional ignored)
24112 (outline-on-heading-p t))
24113 ;; Compatibility alias with Org versions < 7.8.03
24114 (defalias 'org-on-heading-p 'org-at-heading-p)
24116 (defun org-in-commented-heading-p (&optional no-inheritance)
24117 "Non-nil if point is under a commented heading.
24118 This function also checks ancestors of the current headline,
24119 unless optional argument NO-INHERITANCE is non-nil."
24120 (cond
24121 ((org-before-first-heading-p) nil)
24122 ((let ((headline (nth 4 (org-heading-components))))
24123 (and headline
24124 (let ((case-fold-search nil))
24125 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24126 headline)))))
24127 (no-inheritance nil)
24129 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24131 (defun org-at-comment-p nil
24132 "Is cursor in a commented line?"
24133 (save-excursion
24134 (save-match-data
24135 (beginning-of-line)
24136 (looking-at "^[ \t]*# "))))
24138 (defun org-at-drawer-p nil
24139 "Is cursor at a drawer keyword?"
24140 (save-excursion
24141 (move-beginning-of-line 1)
24142 (looking-at org-drawer-regexp)))
24144 (defun org-at-block-p nil
24145 "Is cursor at a block keyword?"
24146 (save-excursion
24147 (move-beginning-of-line 1)
24148 (looking-at org-block-regexp)))
24150 (defun org-point-at-end-of-empty-headline ()
24151 "If point is at the end of an empty headline, return t, else nil.
24152 If the heading only contains a TODO keyword, it is still still considered
24153 empty."
24154 (and (looking-at "[ \t]*$")
24155 (when org-todo-line-regexp
24156 (save-excursion
24157 (beginning-of-line 1)
24158 (let ((case-fold-search nil))
24159 (looking-at org-todo-line-regexp)
24160 (string= (match-string 3) ""))))))
24162 (defun org-at-heading-or-item-p ()
24163 (or (org-at-heading-p) (org-at-item-p)))
24165 (defun org-at-target-p ()
24166 (or (org-in-regexp org-radio-target-regexp)
24167 (org-in-regexp org-target-regexp)))
24168 ;; Compatibility alias with Org versions < 7.8.03
24169 (defalias 'org-on-target-p 'org-at-target-p)
24171 (defun org-up-heading-all (arg)
24172 "Move to the heading line of which the present line is a subheading.
24173 This function considers both visible and invisible heading lines.
24174 With argument, move up ARG levels."
24175 (if (fboundp 'outline-up-heading-all)
24176 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24177 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24179 (defun org-up-heading-safe ()
24180 "Move to the heading line of which the present line is a subheading.
24181 This version will not throw an error. It will return the level of the
24182 headline found, or nil if no higher level is found.
24184 Also, this function will be a lot faster than `outline-up-heading',
24185 because it relies on stars being the outline starters. This can really
24186 make a significant difference in outlines with very many siblings."
24187 (when (ignore-errors (org-back-to-heading t))
24188 (let ((level-up (1- (funcall outline-level))))
24189 (and (> level-up 0)
24190 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24191 (funcall outline-level)))))
24193 (defun org-first-sibling-p ()
24194 "Is this heading the first child of its parents?"
24195 (interactive)
24196 (let ((re org-outline-regexp-bol)
24197 level l)
24198 (unless (org-at-heading-p t)
24199 (user-error "Not at a heading"))
24200 (setq level (funcall outline-level))
24201 (save-excursion
24202 (if (not (re-search-backward re nil t))
24204 (setq l (funcall outline-level))
24205 (< l level)))))
24207 (defun org-goto-sibling (&optional previous)
24208 "Goto the next sibling, even if it is invisible.
24209 When PREVIOUS is set, go to the previous sibling instead. Returns t
24210 when a sibling was found. When none is found, return nil and don't
24211 move point."
24212 (let ((fun (if previous 're-search-backward 're-search-forward))
24213 (pos (point))
24214 (re org-outline-regexp-bol)
24215 level l)
24216 (when (ignore-errors (org-back-to-heading t))
24217 (setq level (funcall outline-level))
24218 (catch 'exit
24219 (or previous (forward-char 1))
24220 (while (funcall fun re nil t)
24221 (setq l (funcall outline-level))
24222 (when (< l level) (goto-char pos) (throw 'exit nil))
24223 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24224 (goto-char pos)
24225 nil))))
24227 (defun org-show-siblings ()
24228 "Show all siblings of the current headline."
24229 (save-excursion
24230 (while (org-goto-sibling) (org-flag-heading nil)))
24231 (save-excursion
24232 (while (org-goto-sibling 'previous)
24233 (org-flag-heading nil))))
24235 (defun org-goto-first-child ()
24236 "Goto the first child, even if it is invisible.
24237 Return t when a child was found. Otherwise don't move point and
24238 return nil."
24239 (let (level (pos (point)) (re org-outline-regexp-bol))
24240 (when (ignore-errors (org-back-to-heading t))
24241 (setq level (outline-level))
24242 (forward-char 1)
24243 (if (and (re-search-forward re nil t) (> (outline-level) level))
24244 (progn (goto-char (match-beginning 0)) t)
24245 (goto-char pos) nil))))
24247 (defun org-show-hidden-entry ()
24248 "Show an entry where even the heading is hidden."
24249 (save-excursion
24250 (org-show-entry)))
24252 (defun org-flag-heading (flag &optional entry)
24253 "Flag the current heading. FLAG non-nil means make invisible.
24254 When ENTRY is non-nil, show the entire entry."
24255 (save-excursion
24256 (org-back-to-heading t)
24257 ;; Check if we should show the entire entry
24258 (if entry
24259 (progn
24260 (org-show-entry)
24261 (save-excursion
24262 (and (outline-next-heading)
24263 (org-flag-heading nil))))
24264 (outline-flag-region (max (point-min) (1- (point)))
24265 (save-excursion (outline-end-of-heading) (point))
24266 flag))))
24268 (defun org-get-next-sibling ()
24269 "Move to next heading of the same level, and return point.
24270 If there is no such heading, return nil.
24271 This is like outline-next-sibling, but invisible headings are ok."
24272 (let ((level (funcall outline-level)))
24273 (outline-next-heading)
24274 (while (and (not (eobp)) (> (funcall outline-level) level))
24275 (outline-next-heading))
24276 (if (or (eobp) (< (funcall outline-level) level))
24278 (point))))
24280 (defun org-get-last-sibling ()
24281 "Move to previous heading of the same level, and return point.
24282 If there is no such heading, return nil."
24283 (let ((opoint (point))
24284 (level (funcall outline-level)))
24285 (outline-previous-heading)
24286 (when (and (/= (point) opoint) (outline-on-heading-p t))
24287 (while (and (> (funcall outline-level) level)
24288 (not (bobp)))
24289 (outline-previous-heading))
24290 (if (< (funcall outline-level) level)
24292 (point)))))
24294 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24295 "Goto to the end of a subtree."
24296 ;; This contains an exact copy of the original function, but it uses
24297 ;; `org-back-to-heading', to make it work also in invisible
24298 ;; trees. And is uses an invisible-ok argument.
24299 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24300 ;; Furthermore, when used inside Org, finding the end of a large subtree
24301 ;; with many children and grandchildren etc, this can be much faster
24302 ;; than the outline version.
24303 (org-back-to-heading invisible-ok)
24304 (let ((first t)
24305 (level (funcall outline-level)))
24306 (if (and (derived-mode-p 'org-mode) (< level 1000))
24307 ;; A true heading (not a plain list item), in Org-mode
24308 ;; This means we can easily find the end by looking
24309 ;; only for the right number of stars. Using a regexp to do
24310 ;; this is so much faster than using a Lisp loop.
24311 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24312 (forward-char 1)
24313 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24314 ;; something else, do it the slow way
24315 (while (and (not (eobp))
24316 (or first (> (funcall outline-level) level)))
24317 (setq first nil)
24318 (outline-next-heading)))
24319 (unless to-heading
24320 (if (memq (preceding-char) '(?\n ?\^M))
24321 (progn
24322 ;; Go to end of line before heading
24323 (forward-char -1)
24324 (if (memq (preceding-char) '(?\n ?\^M))
24325 ;; leave blank line before heading
24326 (forward-char -1))))))
24327 (point))
24329 (defun org-end-of-meta-data (&optional full)
24330 "Skip planning line and properties drawer in current entry.
24331 When optional argument FULL is non-nil, also skip empty lines,
24332 clocking lines and regular drawers at the beginning of the
24333 entry."
24334 (org-back-to-heading t)
24335 (forward-line)
24336 (when (org-looking-at-p org-planning-line-re) (forward-line))
24337 (when (looking-at org-property-drawer-re)
24338 (goto-char (match-end 0))
24339 (forward-line))
24340 (when (and full (not (org-at-heading-p)))
24341 (catch 'exit
24342 (let ((end (save-excursion (outline-next-heading) (point)))
24343 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24344 (while (not (eobp))
24345 (cond ((org-looking-at-p org-drawer-regexp)
24346 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24347 (forward-line)
24348 (throw 'exit t)))
24349 ((org-looking-at-p re) (forward-line))
24350 (t (throw 'exit t))))))))
24352 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24353 "Move forward to the ARG'th subheading at same level as this one.
24354 Stop at the first and last subheadings of a superior heading.
24355 Normally this only looks at visible headings, but when INVISIBLE-OK is
24356 non-nil it will also look at invisible ones."
24357 (interactive "p")
24358 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24359 (if (and arg (< arg 0))
24360 (goto-char (point-min))
24361 (outline-next-heading))
24362 (org-at-heading-p)
24363 (let ((level (- (match-end 0) (match-beginning 0) 1))
24364 (f (if (and arg (< arg 0))
24365 're-search-backward
24366 're-search-forward))
24367 (count (if arg (abs arg) 1))
24368 (result (point)))
24369 (while (and (prog1 (> count 0)
24370 (forward-char (if (and arg (< arg 0)) -1 1)))
24371 (funcall f org-outline-regexp-bol nil 'move))
24372 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24373 (cond ((< l level) (setq count 0))
24374 ((and (= l level)
24375 (or invisible-ok
24376 (progn
24377 (goto-char (line-beginning-position))
24378 (not (outline-invisible-p)))))
24379 (setq count (1- count))
24380 (when (eq l level)
24381 (setq result (point)))))))
24382 (goto-char result))
24383 (beginning-of-line 1)))
24385 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24386 "Move backward to the ARG'th subheading at same level as this one.
24387 Stop at the first and last subheadings of a superior heading."
24388 (interactive "p")
24389 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24391 (defun org-next-visible-heading (arg)
24392 "Move to the next visible heading.
24394 This function wraps `outline-next-visible-heading' with
24395 `org-with-limited-levels' in order to skip over inline tasks and
24396 respect customization of `org-odd-levels-only'."
24397 (interactive "p")
24398 (org-with-limited-levels
24399 (outline-next-visible-heading arg)))
24401 (defun org-previous-visible-heading (arg)
24402 "Move to the next visible heading.
24404 This function wraps `outline-previous-visible-heading' with
24405 `org-with-limited-levels' in order to skip over inline tasks and
24406 respect customization of `org-odd-levels-only'."
24407 (interactive "p")
24408 (org-with-limited-levels
24409 (outline-previous-visible-heading arg)))
24411 (defun org-next-block (arg &optional backward block-regexp)
24412 "Jump to the next block.
24414 With a prefix argument ARG, jump forward ARG many blocks.
24416 When BACKWARD is non-nil, jump to the previous block.
24418 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24419 Match data is set according to this regexp when the function
24420 returns.
24422 Return point at beginning of the opening line of found block.
24423 Throw an error if no block is found."
24424 (interactive "p")
24425 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24426 (case-fold-search t)
24427 (search-fn (if backward #'re-search-backward #'re-search-forward))
24428 (count (or arg 1))
24429 (origin (point))
24430 last-element)
24431 (if backward (beginning-of-line) (end-of-line))
24432 (while (and (> count 0) (funcall search-fn re nil t))
24433 (let ((element (save-excursion
24434 (goto-char (match-beginning 0))
24435 (save-match-data (org-element-at-point)))))
24436 (when (and (memq (org-element-type element)
24437 '(center-block comment-block dynamic-block
24438 example-block export-block quote-block
24439 special-block src-block verse-block))
24440 (<= (match-beginning 0)
24441 (org-element-property :post-affiliated element)))
24442 (setq last-element element)
24443 (decf count))))
24444 (if (= count 0)
24445 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24446 (save-match-data (org-show-context)))
24447 (goto-char origin)
24448 (user-error "No %s code blocks" (if backward "previous" "further")))))
24450 (defun org-previous-block (arg &optional block-regexp)
24451 "Jump to the previous block.
24452 With a prefix argument ARG, jump backward ARG many source blocks.
24453 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24454 (interactive "p")
24455 (org-next-block arg t block-regexp))
24457 (defun org-forward-paragraph ()
24458 "Move forward to beginning of next paragraph or equivalent.
24460 The function moves point to the beginning of the next visible
24461 structural element, which can be a paragraph, a table, a list
24462 item, etc. It also provides some special moves for convenience:
24464 - On an affiliated keyword, jump to the beginning of the
24465 relative element.
24466 - On an item or a footnote definition, move to the second
24467 element inside, if any.
24468 - On a table or a property drawer, jump after it.
24469 - On a verse or source block, stop after blank lines."
24470 (interactive)
24471 (when (eobp) (user-error "Cannot move further down"))
24472 (let* ((deactivate-mark nil)
24473 (element (org-element-at-point))
24474 (type (org-element-type element))
24475 (post-affiliated (org-element-property :post-affiliated element))
24476 (contents-begin (org-element-property :contents-begin element))
24477 (contents-end (org-element-property :contents-end element))
24478 (end (let ((end (org-element-property :end element)) (parent element))
24479 (while (and (setq parent (org-element-property :parent parent))
24480 (= (org-element-property :contents-end parent) end))
24481 (setq end (org-element-property :end parent)))
24482 end)))
24483 (cond ((not element)
24484 (skip-chars-forward " \r\t\n")
24485 (or (eobp) (beginning-of-line)))
24486 ;; On affiliated keywords, move to element's beginning.
24487 ((< (point) post-affiliated)
24488 (goto-char post-affiliated))
24489 ;; At a table row, move to the end of the table. Similarly,
24490 ;; at a node property, move to the end of the property
24491 ;; drawer.
24492 ((memq type '(node-property table-row))
24493 (goto-char (org-element-property
24494 :end (org-element-property :parent element))))
24495 ((memq type '(property-drawer table)) (goto-char end))
24496 ;; Consider blank lines as separators in verse and source
24497 ;; blocks to ease editing.
24498 ((memq type '(src-block verse-block))
24499 (when (eq type 'src-block)
24500 (setq contents-end
24501 (save-excursion (goto-char end)
24502 (skip-chars-backward " \r\t\n")
24503 (line-beginning-position))))
24504 (beginning-of-line)
24505 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24506 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24507 (goto-char end)
24508 (skip-chars-forward " \r\t\n")
24509 (if (= (point) contents-end) (goto-char end)
24510 (beginning-of-line))))
24511 ;; With no contents, just skip element.
24512 ((not contents-begin) (goto-char end))
24513 ;; If contents are invisible, skip the element altogether.
24514 ((outline-invisible-p (line-end-position))
24515 (case type
24516 (headline
24517 (org-with-limited-levels (outline-next-visible-heading 1)))
24518 ;; At a plain list, make sure we move to the next item
24519 ;; instead of skipping the whole list.
24520 (plain-list (forward-char)
24521 (org-forward-paragraph))
24522 (otherwise (goto-char end))))
24523 ((>= (point) contents-end) (goto-char end))
24524 ((>= (point) contents-begin)
24525 ;; This can only happen on paragraphs and plain lists.
24526 (case type
24527 (paragraph (goto-char end))
24528 ;; At a plain list, try to move to second element in
24529 ;; first item, if possible.
24530 (plain-list (end-of-line)
24531 (org-forward-paragraph))))
24532 ;; When contents start on the middle of a line (e.g. in
24533 ;; items and footnote definitions), try to reach first
24534 ;; element starting after current line.
24535 ((> (line-end-position) contents-begin)
24536 (end-of-line)
24537 (org-forward-paragraph))
24538 (t (goto-char contents-begin)))))
24540 (defun org-backward-paragraph ()
24541 "Move backward to start of previous paragraph or equivalent.
24543 The function moves point to the beginning of the current
24544 structural element, which can be a paragraph, a table, a list
24545 item, etc., or to the beginning of the previous visible one if
24546 point is already there. It also provides some special moves for
24547 convenience:
24549 - On an affiliated keyword, jump to the first one.
24550 - On a table or a property drawer, move to its beginning.
24551 - On a verse or source block, stop before blank lines."
24552 (interactive)
24553 (when (bobp) (user-error "Cannot move further up"))
24554 (let* ((deactivate-mark nil)
24555 (element (org-element-at-point))
24556 (type (org-element-type element))
24557 (contents-begin (org-element-property :contents-begin element))
24558 (contents-end (org-element-property :contents-end element))
24559 (post-affiliated (org-element-property :post-affiliated element))
24560 (begin (org-element-property :begin element)))
24561 (cond
24562 ((not element) (goto-char (point-min)))
24563 ((= (point) begin)
24564 (backward-char)
24565 (org-backward-paragraph))
24566 ((<= (point) post-affiliated) (goto-char begin))
24567 ((memq type '(node-property table-row))
24568 (goto-char (org-element-property
24569 :post-affiliated (org-element-property :parent element))))
24570 ((memq type '(property-drawer table)) (goto-char begin))
24571 ((memq type '(src-block verse-block))
24572 (when (eq type 'src-block)
24573 (setq contents-begin
24574 (save-excursion (goto-char begin) (forward-line) (point))))
24575 (if (= (point) contents-begin) (goto-char post-affiliated)
24576 ;; Inside a verse block, see blank lines as paragraph
24577 ;; separators.
24578 (let ((origin (point)))
24579 (skip-chars-backward " \r\t\n" contents-begin)
24580 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24581 (skip-chars-forward " \r\t\n" origin)
24582 (if (= (point) origin) (goto-char contents-begin)
24583 (beginning-of-line))))))
24584 ((not contents-begin) (goto-char (or post-affiliated begin)))
24585 ((eq type 'paragraph)
24586 (goto-char contents-begin)
24587 ;; When at first paragraph in an item or a footnote definition,
24588 ;; move directly to beginning of line.
24589 (let ((parent-contents
24590 (org-element-property
24591 :contents-begin (org-element-property :parent element))))
24592 (when (and parent-contents (= parent-contents contents-begin))
24593 (beginning-of-line))))
24594 ;; At the end of a greater element, move to the beginning of the
24595 ;; last element within.
24596 ((>= (point) contents-end)
24597 (goto-char (1- contents-end))
24598 (org-backward-paragraph))
24599 (t (goto-char (or post-affiliated begin))))
24600 ;; Ensure we never leave point invisible.
24601 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24603 (defun org-forward-element ()
24604 "Move forward by one element.
24605 Move to the next element at the same level, when possible."
24606 (interactive)
24607 (cond ((eobp) (user-error "Cannot move further down"))
24608 ((org-with-limited-levels (org-at-heading-p))
24609 (let ((origin (point)))
24610 (goto-char (org-end-of-subtree nil t))
24611 (unless (org-with-limited-levels (org-at-heading-p))
24612 (goto-char origin)
24613 (user-error "Cannot move further down"))))
24615 (let* ((elem (org-element-at-point))
24616 (end (org-element-property :end elem))
24617 (parent (org-element-property :parent elem)))
24618 (cond ((and parent (= (org-element-property :contents-end parent) end))
24619 (goto-char (org-element-property :end parent)))
24620 ((integer-or-marker-p end) (goto-char end))
24621 (t (message "No element at point")))))))
24623 (defun org-backward-element ()
24624 "Move backward by one element.
24625 Move to the previous element at the same level, when possible."
24626 (interactive)
24627 (cond ((bobp) (user-error "Cannot move further up"))
24628 ((org-with-limited-levels (org-at-heading-p))
24629 ;; At a headline, move to the previous one, if any, or stay
24630 ;; here.
24631 (let ((origin (point)))
24632 (org-with-limited-levels (org-backward-heading-same-level 1))
24633 ;; When current headline has no sibling above, move to its
24634 ;; parent.
24635 (when (= (point) origin)
24636 (or (org-with-limited-levels (org-up-heading-safe))
24637 (progn (goto-char origin)
24638 (user-error "Cannot move further up"))))))
24640 (let* ((elem (org-element-at-point))
24641 (beg (org-element-property :begin elem)))
24642 (cond
24643 ;; Move to beginning of current element if point isn't
24644 ;; there already.
24645 ((null beg) (message "No element at point"))
24646 ((/= (point) beg) (goto-char beg))
24647 (t (goto-char beg)
24648 (skip-chars-backward " \r\t\n")
24649 (unless (bobp)
24650 (let ((prev (org-element-at-point)))
24651 (goto-char (org-element-property :begin prev))
24652 (while (and (setq prev (org-element-property :parent prev))
24653 (<= (org-element-property :end prev) beg))
24654 (goto-char (org-element-property :begin prev)))))))))))
24656 (defun org-up-element ()
24657 "Move to upper element."
24658 (interactive)
24659 (if (org-with-limited-levels (org-at-heading-p))
24660 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24661 (let* ((elem (org-element-at-point))
24662 (parent (org-element-property :parent elem)))
24663 (if parent (goto-char (org-element-property :begin parent))
24664 (if (org-with-limited-levels (org-before-first-heading-p))
24665 (user-error "No surrounding element")
24666 (org-with-limited-levels (org-back-to-heading)))))))
24668 (defvar org-element-greater-elements)
24669 (defun org-down-element ()
24670 "Move to inner element."
24671 (interactive)
24672 (let ((element (org-element-at-point)))
24673 (cond
24674 ((memq (org-element-type element) '(plain-list table))
24675 (goto-char (org-element-property :contents-begin element))
24676 (forward-char))
24677 ((memq (org-element-type element) org-element-greater-elements)
24678 ;; If contents are hidden, first disclose them.
24679 (when (outline-invisible-p (line-end-position)) (org-cycle))
24680 (goto-char (or (org-element-property :contents-begin element)
24681 (user-error "No content for this element"))))
24682 (t (user-error "No inner element")))))
24684 (defun org-drag-element-backward ()
24685 "Move backward element at point."
24686 (interactive)
24687 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24688 (let* ((elem (org-element-at-point))
24689 (prev-elem
24690 (save-excursion
24691 (goto-char (org-element-property :begin elem))
24692 (skip-chars-backward " \r\t\n")
24693 (unless (bobp)
24694 (let* ((beg (org-element-property :begin elem))
24695 (prev (org-element-at-point))
24696 (up prev))
24697 (while (and (setq up (org-element-property :parent up))
24698 (<= (org-element-property :end up) beg))
24699 (setq prev up))
24700 prev)))))
24701 ;; Error out if no previous element or previous element is
24702 ;; a parent of the current one.
24703 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24704 (user-error "Cannot drag element backward")
24705 (let ((pos (point)))
24706 (org-element-swap-A-B prev-elem elem)
24707 (goto-char (+ (org-element-property :begin prev-elem)
24708 (- pos (org-element-property :begin elem)))))))))
24710 (defun org-drag-element-forward ()
24711 "Move forward element at point."
24712 (interactive)
24713 (let* ((pos (point))
24714 (elem (org-element-at-point)))
24715 (when (= (point-max) (org-element-property :end elem))
24716 (user-error "Cannot drag element forward"))
24717 (goto-char (org-element-property :end elem))
24718 (let ((next-elem (org-element-at-point)))
24719 (when (or (org-element-nested-p elem next-elem)
24720 (and (eq (org-element-type next-elem) 'headline)
24721 (not (eq (org-element-type elem) 'headline))))
24722 (goto-char pos)
24723 (user-error "Cannot drag element forward"))
24724 ;; Compute new position of point: it's shifted by NEXT-ELEM
24725 ;; body's length (without final blanks) and by the length of
24726 ;; blanks between ELEM and NEXT-ELEM.
24727 (let ((size-next (- (save-excursion
24728 (goto-char (org-element-property :end next-elem))
24729 (skip-chars-backward " \r\t\n")
24730 (forward-line)
24731 ;; Small correction if buffer doesn't end
24732 ;; with a newline character.
24733 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24734 (org-element-property :begin next-elem)))
24735 (size-blank (- (org-element-property :end elem)
24736 (save-excursion
24737 (goto-char (org-element-property :end elem))
24738 (skip-chars-backward " \r\t\n")
24739 (forward-line)
24740 (point)))))
24741 (org-element-swap-A-B elem next-elem)
24742 (goto-char (+ pos size-next size-blank))))))
24744 (defun org-drag-line-forward (arg)
24745 "Drag the line at point ARG lines forward."
24746 (interactive "p")
24747 (dotimes (n (abs arg))
24748 (let ((c (current-column)))
24749 (if (< 0 arg)
24750 (progn
24751 (beginning-of-line 2)
24752 (transpose-lines 1)
24753 (beginning-of-line 0))
24754 (transpose-lines 1)
24755 (beginning-of-line -1))
24756 (org-move-to-column c))))
24758 (defun org-drag-line-backward (arg)
24759 "Drag the line at point ARG lines backward."
24760 (interactive "p")
24761 (org-drag-line-forward (- arg)))
24763 (defun org-mark-element ()
24764 "Put point at beginning of this element, mark at end.
24766 Interactively, if this command is repeated or (in Transient Mark
24767 mode) if the mark is active, it marks the next element after the
24768 ones already marked."
24769 (interactive)
24770 (let (deactivate-mark)
24771 (if (and (org-called-interactively-p 'any)
24772 (or (and (eq last-command this-command) (mark t))
24773 (and transient-mark-mode mark-active)))
24774 (set-mark
24775 (save-excursion
24776 (goto-char (mark))
24777 (goto-char (org-element-property :end (org-element-at-point)))))
24778 (let ((element (org-element-at-point)))
24779 (end-of-line)
24780 (push-mark (org-element-property :end element) t t)
24781 (goto-char (org-element-property :begin element))))))
24783 (defun org-narrow-to-element ()
24784 "Narrow buffer to current element."
24785 (interactive)
24786 (let ((elem (org-element-at-point)))
24787 (cond
24788 ((eq (car elem) 'headline)
24789 (narrow-to-region
24790 (org-element-property :begin elem)
24791 (org-element-property :end elem)))
24792 ((memq (car elem) org-element-greater-elements)
24793 (narrow-to-region
24794 (org-element-property :contents-begin elem)
24795 (org-element-property :contents-end elem)))
24797 (narrow-to-region
24798 (org-element-property :begin elem)
24799 (org-element-property :end elem))))))
24801 (defun org-transpose-element ()
24802 "Transpose current and previous elements, keeping blank lines between.
24803 Point is moved after both elements."
24804 (interactive)
24805 (org-skip-whitespace)
24806 (let ((end (org-element-property :end (org-element-at-point))))
24807 (org-drag-element-backward)
24808 (goto-char end)))
24810 (defun org-unindent-buffer ()
24811 "Un-indent the visible part of the buffer.
24812 Relative indentation (between items, inside blocks, etc.) isn't
24813 modified."
24814 (interactive)
24815 (unless (eq major-mode 'org-mode)
24816 (user-error "Cannot un-indent a buffer not in Org mode"))
24817 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24818 unindent-tree ; For byte-compiler.
24819 (unindent-tree
24820 (function
24821 (lambda (contents)
24822 (mapc
24823 (lambda (element)
24824 (if (memq (org-element-type element) '(headline section))
24825 (funcall unindent-tree (org-element-contents element))
24826 (save-excursion
24827 (save-restriction
24828 (narrow-to-region
24829 (org-element-property :begin element)
24830 (org-element-property :end element))
24831 (org-do-remove-indentation)))))
24832 (reverse contents))))))
24833 (funcall unindent-tree (org-element-contents parse-tree))))
24835 (defun org-show-subtree ()
24836 "Show everything after this heading at deeper levels."
24837 (interactive)
24838 (outline-flag-region
24839 (point)
24840 (save-excursion
24841 (org-end-of-subtree t t))
24842 nil))
24844 (defun org-show-entry ()
24845 "Show the body directly following this heading.
24846 Show the heading too, if it is currently invisible."
24847 (interactive)
24848 (save-excursion
24849 (ignore-errors
24850 (org-back-to-heading t)
24851 (outline-flag-region
24852 (max (point-min) (1- (point)))
24853 (save-excursion
24854 (if (re-search-forward
24855 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24856 (match-beginning 1)
24857 (point-max)))
24858 nil)
24859 (org-cycle-hide-drawers 'children))))
24861 (defun org-make-options-regexp (kwds &optional extra)
24862 "Make a regular expression for keyword lines.
24863 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24864 when non-nil, is a regexp matching keywords names."
24865 (concat "^[ \t]*#\\+\\("
24866 (regexp-opt kwds)
24867 (and extra (concat (and kwds "\\|") extra))
24868 "\\):[ \t]*\\(.*\\)"))
24870 ;; Make isearch reveal the necessary context
24871 (defun org-isearch-end ()
24872 "Reveal context after isearch exits."
24873 (when isearch-success ; only if search was successful
24874 (if (featurep 'xemacs)
24875 ;; Under XEmacs, the hook is run in the correct place,
24876 ;; we directly show the context.
24877 (org-show-context 'isearch)
24878 ;; In Emacs the hook runs *before* restoring the overlays.
24879 ;; So we have to use a one-time post-command-hook to do this.
24880 ;; (Emacs 22 has a special variable, see function `org-mode')
24881 (unless (and (boundp 'isearch-mode-end-hook-quit)
24882 isearch-mode-end-hook-quit)
24883 ;; Only when the isearch was not quitted.
24884 (org-add-hook 'post-command-hook 'org-isearch-post-command
24885 'append 'local)))))
24887 (defun org-isearch-post-command ()
24888 "Remove self from hook, and show context."
24889 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24890 (org-show-context 'isearch))
24893 ;;;; Integration with and fixes for other packages
24895 ;;; Imenu support
24897 (defvar org-imenu-markers nil
24898 "All markers currently used by Imenu.")
24899 (make-variable-buffer-local 'org-imenu-markers)
24901 (defun org-imenu-new-marker (&optional pos)
24902 "Return a new marker for use by Imenu, and remember the marker."
24903 (let ((m (make-marker)))
24904 (move-marker m (or pos (point)))
24905 (push m org-imenu-markers)
24908 (defun org-imenu-get-tree ()
24909 "Produce the index for Imenu."
24910 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24911 (setq org-imenu-markers nil)
24912 (let* ((n org-imenu-depth)
24913 (re (concat "^" (org-get-limited-outline-regexp)))
24914 (subs (make-vector (1+ n) nil))
24915 (last-level 0)
24916 m level head0 head)
24917 (save-excursion
24918 (save-restriction
24919 (widen)
24920 (goto-char (point-max))
24921 (while (re-search-backward re nil t)
24922 (setq level (org-reduced-level (funcall outline-level)))
24923 (when (and (<= level n)
24924 (looking-at org-complex-heading-regexp)
24925 (setq head0 (org-match-string-no-properties 4)))
24926 (setq head (org-link-display-format head0)
24927 m (org-imenu-new-marker))
24928 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24929 (if (>= level last-level)
24930 (push (cons head m) (aref subs level))
24931 (push (cons head (aref subs (1+ level))) (aref subs level))
24932 (loop for i from (1+ level) to n do (aset subs i nil)))
24933 (setq last-level level)))))
24934 (aref subs 1)))
24936 (eval-after-load "imenu"
24937 '(progn
24938 (add-hook 'imenu-after-jump-hook
24939 (lambda ()
24940 (if (derived-mode-p 'org-mode)
24941 (org-show-context 'org-goto))))))
24943 (defun org-link-display-format (link)
24944 "Replace a link with its the description.
24945 If there is no description, use the link target."
24946 (save-match-data
24947 (if (string-match org-bracket-link-analytic-regexp link)
24948 (replace-match (if (match-end 5)
24949 (match-string 5 link)
24950 (concat (match-string 1 link)
24951 (match-string 3 link)))
24952 nil t link)
24953 link)))
24955 (defun org-toggle-link-display ()
24956 "Toggle the literal or descriptive display of links."
24957 (interactive)
24958 (if org-descriptive-links
24959 (progn (org-remove-from-invisibility-spec '(org-link))
24960 (org-restart-font-lock)
24961 (setq org-descriptive-links nil))
24962 (progn (add-to-invisibility-spec '(org-link))
24963 (org-restart-font-lock)
24964 (setq org-descriptive-links t))))
24966 ;; Speedbar support
24968 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24969 "Overlay marking the agenda restriction line in speedbar.")
24970 (overlay-put org-speedbar-restriction-lock-overlay
24971 'face 'org-agenda-restriction-lock)
24972 (overlay-put org-speedbar-restriction-lock-overlay
24973 'help-echo "Agendas are currently limited to this item.")
24974 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24976 (defun org-speedbar-set-agenda-restriction ()
24977 "Restrict future agenda commands to the location at point in speedbar.
24978 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24979 (interactive)
24980 (require 'org-agenda)
24981 (let (p m tp np dir txt)
24982 (cond
24983 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24984 'org-imenu t))
24985 (setq m (get-text-property p 'org-imenu-marker))
24986 (with-current-buffer (marker-buffer m)
24987 (goto-char m)
24988 (org-agenda-set-restriction-lock 'subtree)))
24989 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24990 'speedbar-function 'speedbar-find-file))
24991 (setq tp (previous-single-property-change
24992 (1+ p) 'speedbar-function)
24993 np (next-single-property-change
24994 tp 'speedbar-function)
24995 dir (speedbar-line-directory)
24996 txt (buffer-substring-no-properties (or tp (point-min))
24997 (or np (point-max))))
24998 (with-current-buffer (find-file-noselect
24999 (let ((default-directory dir))
25000 (expand-file-name txt)))
25001 (unless (derived-mode-p 'org-mode)
25002 (user-error "Cannot restrict to non-Org-mode file"))
25003 (org-agenda-set-restriction-lock 'file)))
25004 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25005 (move-overlay org-speedbar-restriction-lock-overlay
25006 (point-at-bol) (point-at-eol))
25007 (setq current-prefix-arg nil)
25008 (org-agenda-maybe-redo)))
25010 (defvar speedbar-file-key-map)
25011 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25012 (eval-after-load "speedbar"
25013 '(progn
25014 (speedbar-add-supported-extension ".org")
25015 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25016 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25017 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25018 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25019 (add-hook 'speedbar-visiting-tag-hook
25020 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25022 ;;; Fixes and Hacks for problems with other packages
25024 (defun org--flyspell-object-check-p (element)
25025 "Non-nil when Flyspell can check object at point.
25026 ELEMENT is the element at point."
25027 (let ((object (save-excursion
25028 (when (org-looking-at-p "\\>") (backward-char))
25029 (org-element-context element))))
25030 (case (org-element-type object)
25031 ;; Prevent checks in links due to keybinding conflict with
25032 ;; Flyspell.
25033 ((code entity export-snippet inline-babel-call
25034 inline-src-block line-break latex-fragment link macro
25035 statistics-cookie target timestamp verbatim)
25036 nil)
25037 (footnote-reference
25038 ;; Only in inline footnotes, within the definition.
25039 (and (eq (org-element-property :type object) 'inline)
25040 (< (save-excursion
25041 (goto-char (org-element-property :begin object))
25042 (search-forward ":" nil t 2))
25043 (point))))
25044 (otherwise t))))
25046 (defun org-mode-flyspell-verify ()
25047 "Function used for `flyspell-generic-check-word-predicate'."
25048 (if (org-at-heading-p)
25049 ;; At a headline or an inlinetask, check title only. This is
25050 ;; faster than relying on `org-element-at-point'.
25051 (and (save-excursion (beginning-of-line)
25052 (and (let ((case-fold-search t))
25053 (not (looking-at "\\*+ END[ \t]*$")))
25054 (looking-at org-complex-heading-regexp)))
25055 (match-beginning 4)
25056 (>= (point) (match-beginning 4))
25057 (or (not (match-beginning 5))
25058 (< (point) (match-beginning 5))))
25059 (let* ((element (org-element-at-point))
25060 (post-affiliated (org-element-property :post-affiliated element)))
25061 (cond
25062 ;; Ignore checks in all affiliated keywords but captions.
25063 ((< (point) post-affiliated)
25064 (and (save-excursion
25065 (beginning-of-line)
25066 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25067 (> (point) (match-end 0))
25068 (org--flyspell-object-check-p element)))
25069 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25070 ((let ((log (org-log-into-drawer)))
25071 (and log
25072 (let ((drawer (org-element-lineage element '(drawer))))
25073 (and drawer
25074 (eq (compare-strings
25075 log nil nil
25076 (org-element-property :drawer-name drawer) nil nil t)
25077 t)))))
25078 nil)
25080 (case (org-element-type element)
25081 ((comment quote-section) t)
25082 (comment-block
25083 ;; Allow checks between block markers, not on them.
25084 (and (> (line-beginning-position) post-affiliated)
25085 (save-excursion
25086 (end-of-line)
25087 (skip-chars-forward " \r\t\n")
25088 (< (point) (org-element-property :end element)))))
25089 ;; Arbitrary list of keywords where checks are meaningful.
25090 ;; Make sure point is on the value part of the element.
25091 (keyword
25092 (and (member (org-element-property :key element)
25093 '("DESCRIPTION" "TITLE"))
25094 (save-excursion
25095 (search-backward ":" (line-beginning-position) t))))
25096 ;; Check is globally allowed in paragraphs verse blocks and
25097 ;; table rows (after affiliated keywords) but some objects
25098 ;; must not be affected.
25099 ((paragraph table-row verse-block)
25100 (let ((cbeg (org-element-property :contents-begin element))
25101 (cend (org-element-property :contents-end element)))
25102 (and cbeg (>= (point) cbeg) (< (point) cend)
25103 (org--flyspell-object-check-p element))))))))))
25104 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25106 (defun org-remove-flyspell-overlays-in (beg end)
25107 "Remove flyspell overlays in region."
25108 (and (org-bound-and-true-p flyspell-mode)
25109 (fboundp 'flyspell-delete-region-overlays)
25110 (flyspell-delete-region-overlays beg end)))
25112 (defvar flyspell-delayed-commands)
25113 (eval-after-load "flyspell"
25114 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25116 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25117 (eval-after-load "bookmark"
25118 '(if (boundp 'bookmark-after-jump-hook)
25119 ;; We can use the hook
25120 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25121 ;; Hook not available, use advice
25122 (defadvice bookmark-jump (after org-make-visible activate)
25123 "Make the position visible."
25124 (org-bookmark-jump-unhide))))
25126 ;; Make sure saveplace shows the location if it was hidden
25127 (eval-after-load "saveplace"
25128 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25129 "Make the position visible."
25130 (org-bookmark-jump-unhide)))
25132 ;; Make sure ecb shows the location if it was hidden
25133 (eval-after-load "ecb"
25134 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25135 "Make hierarchy visible when jumping into location from ECB tree buffer."
25136 (if (derived-mode-p 'org-mode)
25137 (org-show-context))))
25139 (defun org-bookmark-jump-unhide ()
25140 "Unhide the current position, to show the bookmark location."
25141 (and (derived-mode-p 'org-mode)
25142 (or (outline-invisible-p)
25143 (save-excursion (goto-char (max (point-min) (1- (point))))
25144 (outline-invisible-p)))
25145 (org-show-context 'bookmark-jump)))
25147 (defun org-mark-jump-unhide ()
25148 "Make the point visible with `org-show-context' after jumping to the mark."
25149 (when (and (derived-mode-p 'org-mode)
25150 (outline-invisible-p))
25151 (org-show-context 'mark-goto)))
25153 (eval-after-load "simple"
25154 '(defadvice pop-to-mark-command (after org-make-visible activate)
25155 "Make the point visible with `org-show-context'."
25156 (org-mark-jump-unhide)))
25158 (eval-after-load "simple"
25159 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25160 "Make the point visible with `org-show-context'."
25161 (org-mark-jump-unhide)))
25163 (eval-after-load "simple"
25164 '(defadvice pop-global-mark (after org-make-visible activate)
25165 "Make the point visible with `org-show-context'."
25166 (org-mark-jump-unhide)))
25168 ;; Make session.el ignore our circular variable
25169 (defvar session-globals-exclude)
25170 (eval-after-load "session"
25171 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25173 ;;;; Finish up
25175 (provide 'org)
25177 (run-hooks 'org-load-hook)
25179 ;;; org.el ends here