Fix c6d9a4ec
[org-mode.git] / lisp / org.el
blobe8b78a3fb98f72f251b210ef6ad04d6b1ec1f6d9
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: Bastien Guerry <bzg at gnu dot org>
8 ;; URL: http://orgmode.org
9 ;; Version: 8.3.1
10 ;; Keywords: outlines, hypermedia, calendar, wp
11 ;; Package-Requires: ((emacs "23.2"))
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;;; Commentary:
30 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
31 ;; project planning with a fast and effective plain-text system.
33 ;; Org-mode develops organizational tasks around NOTES files that contain
34 ;; information about projects as plain text. Org-mode is implemented on
35 ;; top of outline-mode, which makes it possible to keep the content of
36 ;; large files well structured. Visibility cycling and structure editing
37 ;; help to work with the tree. Tables are easily created with a built-in
38 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
39 ;; and scheduling. It dynamically compiles entries into an agenda that
40 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
41 ;; Plain text URL-like links connect to websites, emails, Usenet
42 ;; messages, BBDB entries, and any files related to the projects. For
43 ;; printing and sharing of notes, an Org-mode file can be exported as a
44 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
45 ;; iCalendar file. It can also serve as a publishing tool for a set of
46 ;; linked webpages.
48 ;; Installation and Activation
49 ;; ---------------------------
50 ;; See the corresponding sections in the manual at
52 ;; http://orgmode.org/org.html#Installation
54 ;; Documentation
55 ;; -------------
56 ;; The documentation of Org-mode can be found in the TeXInfo file. The
57 ;; distribution also contains a PDF version of it. At the homepage of
58 ;; Org-mode, you can read the same text online as HTML. There is also an
59 ;; excellent reference card made by Philip Rooke. This card can be found
60 ;; in the etc/ directory of Emacs 22.
62 ;; A list of recent changes can be found at
63 ;; http://orgmode.org/Changes.html
65 ;;; Code:
67 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
68 (defvar org-table-formula-constants-local nil
69 "Local version of `org-table-formula-constants'.")
70 (make-variable-buffer-local 'org-table-formula-constants-local)
72 ;;;; Require other packages
74 (eval-when-compile
75 (require 'cl)
76 (require 'gnus-sum))
78 (require 'calendar)
79 (require 'find-func)
80 (require 'format-spec)
82 (or (equal this-command 'eval-buffer)
83 (condition-case nil
84 (load (concat (file-name-directory load-file-name)
85 "org-loaddefs.el")
86 nil t t t)
87 (error
88 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
89 (sit-for 3)
90 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
91 (sit-for 3))))
93 (require 'org-macs)
94 (require 'org-compat)
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 cdlatex-environment "ext:cdlatex" (environment item))
126 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-agenda-entry-get-agenda-timestamp "org-agenda" (pom))
128 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
129 (declare-function org-agenda-redo "org-agenda" (&optional all))
130 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
131 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
132 (declare-function org-beamer-mode "ox-beamer" ())
133 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
134 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
135 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
136 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
137 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
138 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
139 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
140 (declare-function org-clock-update-time-maybe "org-clock" ())
141 (declare-function org-clocktable-shift "org-clock" (dir n))
142 (declare-function org-element-at-point "org-element" ())
143 (declare-function org-element-cache-refresh "org-element" (pos))
144 (declare-function org-element-cache-reset "org-element" (&optional all))
145 (declare-function org-element-contents "org-element" (element))
146 (declare-function org-element-context "org-element" (&optional element))
147 (declare-function org-element-copy "org-element" (datum))
148 (declare-function org-element-interpret-data "org-element" (data &optional parent))
149 (declare-function org-element-lineage "org-element" (blob &optional types with-self))
150 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
151 (declare-function org-element-parse-buffer "org-element" (&optional granularity visible-only))
152 (declare-function org-element-property "org-element" (property element))
153 (declare-function org-element-put-property "org-element" (element property value))
154 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
155 (declare-function org-element-type "org-element" (element))
156 (declare-function org-element-update-syntax "org-element" ())
157 (declare-function org-id-find-id-file "org-id" (id))
158 (declare-function org-id-get-create "org-id" (&optional force))
159 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
160 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
161 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
162 (declare-function org-plot/gnuplot "org-plot" (&optional params))
163 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
164 (declare-function org-table-align "org-table" ())
165 (declare-function org-table-begin "org-table" (&optional table-type))
166 (declare-function org-table-beginning-of-field "org-table" (&optional n))
167 (declare-function org-table-blank-field "org-table" ())
168 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
169 (declare-function org-table-edit-field "org-table" (arg))
170 (declare-function org-table-end "org-table" (&optional table-type))
171 (declare-function org-table-end-of-field "org-table" (&optional n))
172 (declare-function org-table-insert-row "org-table" (&optional arg))
173 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
174 (declare-function org-table-maybe-eval-formula "org-table" ())
175 (declare-function org-table-maybe-recalculate-line "org-table" ())
176 (declare-function org-table-next-row "org-table" ())
177 (declare-function org-table-paste-rectangle "org-table" ())
178 (declare-function org-table-wrap-region "org-table" (arg))
179 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
180 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
181 (declare-function orgtbl-mode "org-table" (&optional arg))
183 (defsubst org-uniquify (list)
184 "Non-destructively remove duplicate elements from LIST."
185 (let ((res (copy-sequence list))) (delete-dups res)))
187 (defsubst org-get-at-bol (property)
188 "Get text property PROPERTY at the beginning of line."
189 (get-text-property (point-at-bol) property))
191 (defsubst org-trim (s)
192 "Remove whitespace at the beginning and the end of string S."
193 (replace-regexp-in-string
194 "\\`[ \t\n\r]+" ""
195 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
197 ;; load languages based on value of `org-babel-load-languages'
198 (defvar org-babel-load-languages)
200 ;;;###autoload
201 (defun org-babel-do-load-languages (sym value)
202 "Load the languages defined in `org-babel-load-languages'."
203 (set-default sym value)
204 (mapc (lambda (pair)
205 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
206 (if active
207 (progn
208 (require (intern (concat "ob-" lang))))
209 (progn
210 (funcall 'fmakunbound
211 (intern (concat "org-babel-execute:" lang)))
212 (funcall 'fmakunbound
213 (intern (concat "org-babel-expand-body:" lang)))))))
214 org-babel-load-languages))
216 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
217 ;;;###autoload
218 (defun org-babel-load-file (file &optional compile)
219 "Load Emacs Lisp source code blocks in the Org-mode FILE.
220 This function exports the source code using `org-babel-tangle'
221 and then loads the resulting file using `load-file'. With prefix
222 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
223 file to byte-code before it is loaded."
224 (interactive "fFile to load: \nP")
225 (let* ((age (lambda (file)
226 (float-time
227 (time-subtract (current-time)
228 (nth 5 (or (file-attributes (file-truename file))
229 (file-attributes file)))))))
230 (base-name (file-name-sans-extension file))
231 (exported-file (concat base-name ".el")))
232 ;; tangle if the org-mode file is newer than the elisp file
233 (unless (and (file-exists-p exported-file)
234 (> (funcall age file) (funcall age exported-file)))
235 ;; Tangle-file traversal returns reversed list of tangled files
236 ;; and we want to evaluate the first target.
237 (setq exported-file
238 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
239 (message "%s %s"
240 (if compile
241 (progn (byte-compile-file exported-file 'load)
242 "Compiled and loaded")
243 (progn (load-file exported-file) "Loaded"))
244 exported-file)))
246 (defcustom org-babel-load-languages '((emacs-lisp . t))
247 "Languages which can be evaluated in Org-mode buffers.
248 This list can be used to load support for any of the languages
249 below, note that each language will depend on a different set of
250 system executables and/or Emacs modes. When a language is
251 \"loaded\", then code blocks in that language can be evaluated
252 with `org-babel-execute-src-block' bound by default to C-c
253 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
254 be set to remove code block evaluation from the C-c C-c
255 keybinding. By default only Emacs Lisp (which has no
256 requirements) is loaded."
257 :group 'org-babel
258 :set 'org-babel-do-load-languages
259 :version "24.1"
260 :type '(alist :tag "Babel Languages"
261 :key-type
262 (choice
263 (const :tag "Awk" awk)
264 (const :tag "C" C)
265 (const :tag "R" R)
266 (const :tag "Asymptote" asymptote)
267 (const :tag "Calc" calc)
268 (const :tag "Clojure" clojure)
269 (const :tag "CSS" css)
270 (const :tag "Ditaa" ditaa)
271 (const :tag "Dot" dot)
272 (const :tag "Emacs Lisp" emacs-lisp)
273 (const :tag "Forth" forth)
274 (const :tag "Fortran" fortran)
275 (const :tag "Gnuplot" gnuplot)
276 (const :tag "Haskell" haskell)
277 (const :tag "IO" io)
278 (const :tag "J" J)
279 (const :tag "Java" java)
280 (const :tag "Javascript" js)
281 (const :tag "LaTeX" latex)
282 (const :tag "Ledger" ledger)
283 (const :tag "Lilypond" lilypond)
284 (const :tag "Lisp" lisp)
285 (const :tag "Makefile" makefile)
286 (const :tag "Maxima" maxima)
287 (const :tag "Matlab" matlab)
288 (const :tag "Mscgen" mscgen)
289 (const :tag "Ocaml" ocaml)
290 (const :tag "Octave" octave)
291 (const :tag "Org" org)
292 (const :tag "Perl" perl)
293 (const :tag "Pico Lisp" picolisp)
294 (const :tag "PlantUML" plantuml)
295 (const :tag "Python" python)
296 (const :tag "Ruby" ruby)
297 (const :tag "Sass" sass)
298 (const :tag "Scala" scala)
299 (const :tag "Scheme" scheme)
300 (const :tag "Screen" screen)
301 (const :tag "Shell Script" shell)
302 (const :tag "Shen" shen)
303 (const :tag "Sql" sql)
304 (const :tag "Sqlite" sqlite)
305 (const :tag "ebnf2ps" ebnf2ps))
306 :value-type (boolean :tag "Activate" :value t)))
308 ;;;; Customization variables
309 (defcustom org-clone-delete-id nil
310 "Remove ID property of clones of a subtree.
311 When non-nil, clones of a subtree don't inherit the ID property.
312 Otherwise they inherit the ID property with a new unique
313 identifier."
314 :type 'boolean
315 :version "24.1"
316 :group 'org-id)
318 ;;; Version
319 (org-check-version)
321 ;;;###autoload
322 (defun org-version (&optional here full message)
323 "Show the org-mode version.
324 Interactively, or when MESSAGE is non-nil, show it in echo area.
325 With prefix argument, or when HERE is non-nil, insert it at point.
326 In non-interactive uses, a reduced version string is output unless
327 FULL is given."
328 (interactive (list current-prefix-arg t (not current-prefix-arg)))
329 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
330 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
331 (load-suffixes (list ".el"))
332 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
333 (org-trash (or
334 (and (fboundp 'org-release) (fboundp 'org-git-version))
335 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
336 (load-suffixes save-load-suffixes)
337 (org-version (org-release))
338 (git-version (org-git-version))
339 (version (format "Org-mode version %s (%s @ %s)"
340 org-version
341 git-version
342 (if org-install-dir
343 (if (string= org-dir org-install-dir)
344 org-install-dir
345 (concat "mixed installation! " org-install-dir " and " org-dir))
346 "org-loaddefs.el can not be found!")))
347 (version1 (if full version org-version)))
348 (when here (insert version1))
349 (when message (message "%s" version1))
350 version1))
352 (defconst org-version (org-version))
355 ;;; Syntax Constants
357 ;;;; Block
359 (defconst org-block-regexp
360 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
361 "Regular expression for hiding blocks.")
363 (defconst org-dblock-start-re
364 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
365 "Matches the start line of a dynamic block, with parameters.")
367 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
368 "Matches the end of a dynamic block.")
370 ;;;; Clock and Planning
372 (defconst org-clock-string "CLOCK:"
373 "String used as prefix for timestamps clocking work hours on an item.")
375 (defvar org-closed-string "CLOSED:"
376 "String used as the prefix for timestamps logging closing a TODO entry.")
378 (defvar org-deadline-string "DEADLINE:"
379 "String to mark deadline entries.
380 A deadline is this string, followed by a time stamp. Should be a word,
381 terminated by a colon. You can insert a schedule keyword and
382 a timestamp with \\[org-deadline].")
384 (defvar org-scheduled-string "SCHEDULED:"
385 "String to mark scheduled TODO entries.
386 A schedule is this string, followed by a time stamp. Should be a word,
387 terminated by a colon. You can insert a schedule keyword and
388 a timestamp with \\[org-schedule].")
390 (defconst org-ds-keyword-length
391 (+ 2
392 (apply #'max
393 (mapcar #'length
394 (list org-deadline-string org-scheduled-string
395 org-clock-string org-closed-string))))
396 "Maximum length of the DEADLINE and SCHEDULED keywords.")
398 (defconst org-planning-line-re
399 (concat "^[ \t]*"
400 (regexp-opt
401 (list org-closed-string org-deadline-string org-scheduled-string)
403 "Matches a line with planning info.
404 Matched keyword is in group 1.")
406 (defconst org-clock-line-re
407 (concat "^[ \t]*" org-clock-string)
408 "Matches a line with clock info.")
410 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
411 "Matches the DEADLINE keyword.")
413 (defconst org-deadline-time-regexp
414 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
415 "Matches the DEADLINE keyword together with a time stamp.")
417 (defconst org-deadline-time-hour-regexp
418 (concat "\\<" org-deadline-string
419 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
420 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
422 (defconst org-deadline-line-regexp
423 (concat "\\<\\(" org-deadline-string "\\).*")
424 "Matches the DEADLINE keyword and the rest of the line.")
426 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
427 "Matches the SCHEDULED keyword.")
429 (defconst org-scheduled-time-regexp
430 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
431 "Matches the SCHEDULED keyword together with a time stamp.")
433 (defconst org-scheduled-time-hour-regexp
434 (concat "\\<" org-scheduled-string
435 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
436 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
438 (defconst org-closed-time-regexp
439 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
440 "Matches the CLOSED keyword together with a time stamp.")
442 (defconst org-keyword-time-regexp
443 (concat "\\<"
444 (regexp-opt
445 (list org-scheduled-string org-deadline-string org-closed-string
446 org-clock-string)
448 " *[[<]\\([^]>]+\\)[]>]")
449 "Matches any of the 4 keywords, together with the time stamp.")
451 (defconst org-keyword-time-not-clock-regexp
452 (concat
453 "\\<"
454 (regexp-opt
455 (list org-scheduled-string org-deadline-string org-closed-string) t)
456 " *[[<]\\([^]>]+\\)[]>]")
457 "Matches any of the 3 keywords, together with the time stamp.")
459 (defconst org-maybe-keyword-time-regexp
460 (concat "\\(\\<"
461 (regexp-opt
462 (list org-scheduled-string org-deadline-string org-closed-string
463 org-clock-string)
465 "\\)?"
466 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
467 "\\|"
468 "<%%([^\r\n>]*>\\)")
469 "Matches a timestamp, possibly preceded by a keyword.")
471 (defconst org-all-time-keywords
472 (mapcar (lambda (w) (substring w 0 -1))
473 (list org-scheduled-string org-deadline-string
474 org-clock-string org-closed-string))
475 "List of time keywords.")
477 ;;;; Drawer
479 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
480 "Matches first or last line of a hidden block.
481 Group 1 contains drawer's name or \"END\".")
483 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
484 "Regular expression matching the first line of a property drawer.")
486 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
487 "Regular expression matching the last line of a property drawer.")
489 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
490 "Regular expression matching the first line of a clock drawer.")
492 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
493 "Regular expression matching the last line of a clock drawer.")
495 (defconst org-property-drawer-re
496 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
497 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
498 "[ \t]*:END:[ \t]*$")
499 "Matches an entire property drawer.")
501 (defconst org-clock-drawer-re
502 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
503 org-clock-drawer-end-re "\\)\n?")
504 "Matches an entire clock drawer.")
506 ;;;; Headline
508 (defconst org-heading-keyword-regexp-format
509 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
510 "Printf format for a regexp matching a headline with some keyword.
511 This regexp will match the headline of any node which has the
512 exact keyword that is put into the format. The keyword isn't in
513 any group by default, but the stars and the body are.")
515 (defconst org-heading-keyword-maybe-regexp-format
516 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
517 "Printf format for a regexp matching a headline, possibly with some keyword.
518 This regexp can match any headline with the specified keyword, or
519 without a keyword. The keyword isn't in any group by default,
520 but the stars and the body are.")
522 (defconst org-archive-tag "ARCHIVE"
523 "The tag that marks a subtree as archived.
524 An archived subtree does not open during visibility cycling, and does
525 not contribute to the agenda listings.")
527 (defconst org-comment-string "COMMENT"
528 "Entries starting with this keyword will never be exported.
529 An entry can be toggled between COMMENT and normal with
530 \\[org-toggle-comment].")
533 ;;;; LaTeX Environments and Fragments
535 (defconst org-latex-regexps
536 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
537 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
538 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
539 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
540 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
541 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
542 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
543 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
544 "Regular expressions for matching embedded LaTeX.")
546 ;;;; Node Property
548 (defconst org-effort-property "Effort"
549 "The property that is being used to keep track of effort estimates.
550 Effort estimates given in this property need to have the format H:MM.")
552 ;;;; Table
554 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
555 "Detect an org-type or table-type table.")
557 (defconst org-table-line-regexp "^[ \t]*|"
558 "Detect an org-type table line.")
560 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
561 "Detect an org-type table line.")
563 (defconst org-table-hline-regexp "^[ \t]*|-"
564 "Detect an org-type table hline.")
566 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
567 "Detect a table-type table hline.")
569 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
570 "Detect the first line outside a table when searching from within it.
571 This works for both table types.")
573 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
574 "Detect a #+TBLFM line.")
576 ;;;; Timestamp
578 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
579 "Regular expression for fast time stamp matching.")
581 (defconst org-ts-regexp-inactive
582 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
583 "Regular expression for fast inactive time stamp matching.")
585 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
586 "Regular expression for fast time stamp matching.")
588 (defconst org-ts-regexp0
589 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
590 "Regular expression matching time strings for analysis.
591 This one does not require the space after the date, so it can be used
592 on a string that terminates immediately after the date.")
594 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
595 "Regular expression matching time strings for analysis.")
597 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
598 "Regular expression matching time stamps, with groups.")
600 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
601 "Regular expression matching time stamps (also [..]), with groups.")
603 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
604 "Regular expression matching a time stamp range.")
606 (defconst org-tr-regexp-both
607 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
608 "Regular expression matching a time stamp range.")
610 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
611 org-ts-regexp "\\)?")
612 "Regular expression matching a time stamp or time stamp range.")
614 (defconst org-tsr-regexp-both
615 (concat org-ts-regexp-both "\\(--?-?"
616 org-ts-regexp-both "\\)?")
617 "Regular expression matching a time stamp or time stamp range.
618 The time stamps may be either active or inactive.")
620 (defconst org-repeat-re
621 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
622 "Regular expression for specifying repeated events.
623 After a match, group 1 contains the repeat expression.")
625 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
626 "Formats for `format-time-string' which are used for time stamps.")
629 ;;; The custom variables
631 (defgroup org nil
632 "Outline-based notes management and organizer."
633 :tag "Org"
634 :group 'outlines
635 :group 'calendar)
637 (defcustom org-mode-hook nil
638 "Mode hook for Org-mode, run after the mode was turned on."
639 :group 'org
640 :type 'hook)
642 (defcustom org-load-hook nil
643 "Hook that is run after org.el has been loaded."
644 :group 'org
645 :type 'hook)
647 (defcustom org-log-buffer-setup-hook nil
648 "Hook that is run after an Org log buffer is created."
649 :group 'org
650 :version "24.1"
651 :type 'hook)
653 (defvar org-modules) ; defined below
654 (defvar org-modules-loaded nil
655 "Have the modules been loaded already?")
657 (defun org-load-modules-maybe (&optional force)
658 "Load all extensions listed in `org-modules'."
659 (when (or force (not org-modules-loaded))
660 (mapc (lambda (ext)
661 (condition-case nil (require ext)
662 (error (message "Problems while trying to load feature `%s'" ext))))
663 org-modules)
664 (setq org-modules-loaded t)))
666 (defun org-set-modules (var value)
667 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
668 (set var value)
669 (when (featurep 'org)
670 (org-load-modules-maybe 'force)
671 (org-element-cache-reset 'all)))
673 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
674 "Modules that should always be loaded together with org.el.
676 If a description starts with <C>, the file is not part of Emacs
677 and loading it will require that you have downloaded and properly
678 installed the Org mode distribution.
680 You can also use this system to load external packages (i.e. neither Org
681 core modules, nor modules from the CONTRIB directory). Just add symbols
682 to the end of the list. If the package is called org-xyz.el, then you need
683 to add the symbol `xyz', and the package must have a call to:
685 \(provide 'org-xyz)
687 For export specific modules, see also `org-export-backends'."
688 :group 'org
689 :set 'org-set-modules
690 :version "24.4"
691 :package-version '(Org . "8.0")
692 :type
693 '(set :greedy t
694 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
695 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
696 (const :tag " crypt: Encryption of subtrees" org-crypt)
697 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
698 (const :tag " docview: Links to doc-view buffers" org-docview)
699 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
700 (const :tag " habit: Track your consistency with habits" org-habit)
701 (const :tag " id: Global IDs for identifying entries" org-id)
702 (const :tag " info: Links to Info nodes" org-info)
703 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
704 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
705 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
706 (const :tag " mouse: Additional mouse support" org-mouse)
707 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
708 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
709 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
711 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
712 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
713 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
714 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
715 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
716 (const :tag "C collector: Collect properties into tables" org-collector)
717 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
718 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
719 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
720 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
721 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
722 (const :tag "C eval: Include command output as text" org-eval)
723 (const :tag "C eww: Store link to url of eww" org-eww)
724 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
725 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
726 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
727 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
728 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
729 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
730 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
731 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
732 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
733 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
734 (const :tag "C mew: Links to Mew folders/messages" org-mew)
735 (const :tag "C mtags: Support for muse-like tags" org-mtags)
736 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
737 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
738 (const :tag "C registry: A registry for Org-mode links" org-registry)
739 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
740 (const :tag "C secretary: Team management with org-mode" org-secretary)
741 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
742 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
743 (const :tag "C track: Keep up with Org-mode development" org-track)
744 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
745 (const :tag "C vm: Links to VM folders/messages" org-vm)
746 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
747 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
748 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
750 (defvar org-export-registered-backends) ; From ox.el.
751 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
752 (declare-function org-export-backend-name "ox" (backend))
753 (defcustom org-export-backends '(ascii html icalendar latex)
754 "List of export back-ends that should be always available.
756 If a description starts with <C>, the file is not part of Emacs
757 and loading it will require that you have downloaded and properly
758 installed the Org mode distribution.
760 Unlike to `org-modules', libraries in this list will not be
761 loaded along with Org, but only once the export framework is
762 needed.
764 This variable needs to be set before org.el is loaded. If you
765 need to make a change while Emacs is running, use the customize
766 interface or run the following code, where VAL stands for the new
767 value of the variable, after updating it:
769 \(progn
770 \(setq org-export-registered-backends
771 \(org-remove-if-not
772 \(lambda (backend)
773 \(let ((name (org-export-backend-name backend)))
774 \(or (memq name val)
775 \(catch 'parentp
776 \(dolist (b val)
777 \(and (org-export-derived-backend-p b name)
778 \(throw 'parentp t)))))))
779 org-export-registered-backends))
780 \(let ((new-list (mapcar #'org-export-backend-name
781 org-export-registered-backends)))
782 \(dolist (backend val)
783 \(cond
784 \((not (load (format \"ox-%s\" backend) t t))
785 \(message \"Problems while trying to load export back-end `%s'\"
786 backend))
787 \((not (memq backend new-list)) (push backend new-list))))
788 \(set-default 'org-export-backends new-list)))
790 Adding a back-end to this list will also pull the back-end it
791 depends on, if any."
792 :group 'org
793 :group 'org-export
794 :version "24.4"
795 :package-version '(Org . "8.0")
796 :initialize 'custom-initialize-set
797 :set (lambda (var val)
798 (if (not (featurep 'ox)) (set-default var val)
799 ;; Any back-end not required anymore (not present in VAL and not
800 ;; a parent of any back-end in the new value) is removed from the
801 ;; list of registered back-ends.
802 (setq org-export-registered-backends
803 (org-remove-if-not
804 (lambda (backend)
805 (let ((name (org-export-backend-name backend)))
806 (or (memq name val)
807 (catch 'parentp
808 (dolist (b val)
809 (and (org-export-derived-backend-p b name)
810 (throw 'parentp t)))))))
811 org-export-registered-backends))
812 ;; Now build NEW-LIST of both new back-ends and required
813 ;; parents.
814 (let ((new-list (mapcar #'org-export-backend-name
815 org-export-registered-backends)))
816 (dolist (backend val)
817 (cond
818 ((not (load (format "ox-%s" backend) t t))
819 (message "Problems while trying to load export back-end `%s'"
820 backend))
821 ((not (memq backend new-list)) (push backend new-list))))
822 ;; Set VAR to that list with fixed dependencies.
823 (set-default var new-list))))
824 :type '(set :greedy t
825 (const :tag " ascii Export buffer to ASCII format" ascii)
826 (const :tag " beamer Export buffer to Beamer presentation" beamer)
827 (const :tag " html Export buffer to HTML format" html)
828 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
829 (const :tag " latex Export buffer to LaTeX format" latex)
830 (const :tag " man Export buffer to MAN format" man)
831 (const :tag " md Export buffer to Markdown format" md)
832 (const :tag " odt Export buffer to ODT format" odt)
833 (const :tag " org Export buffer to Org format" org)
834 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
835 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
836 (const :tag "C deck Export buffer to deck.js presentations" deck)
837 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
838 (const :tag "C groff Export buffer to Groff format" groff)
839 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
840 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
841 (const :tag "C s5 Export buffer to s5 presentations" s5)
842 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
844 (eval-after-load 'ox
845 '(mapc
846 (lambda (backend)
847 (condition-case nil (require (intern (format "ox-%s" backend)))
848 (error (message "Problems while trying to load export back-end `%s'"
849 backend))))
850 org-export-backends))
852 (defcustom org-support-shift-select nil
853 "Non-nil means make shift-cursor commands select text when possible.
855 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
856 start selecting a region, or enlarge regions started in this way.
857 In Org-mode, in special contexts, these same keys are used for
858 other purposes, important enough to compete with shift selection.
859 Org tries to balance these needs by supporting `shift-select-mode'
860 outside these special contexts, under control of this variable.
862 The default of this variable is nil, to avoid confusing behavior. Shifted
863 cursor keys will then execute Org commands in the following contexts:
864 - on a headline, changing TODO state (left/right) and priority (up/down)
865 - on a time stamp, changing the time
866 - in a plain list item, changing the bullet type
867 - in a property definition line, switching between allowed values
868 - in the BEGIN line of a clock table (changing the time block).
869 Outside these contexts, the commands will throw an error.
871 When this variable is t and the cursor is not in a special
872 context, Org-mode will support shift-selection for making and
873 enlarging regions. To make this more effective, the bullet
874 cycling will no longer happen anywhere in an item line, but only
875 if the cursor is exactly on the bullet.
877 If you set this variable to the symbol `always', then the keys
878 will not be special in headlines, property lines, and item lines,
879 to make shift selection work there as well. If this is what you
880 want, you can use the following alternative commands: `C-c C-t'
881 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
882 can be used to switch TODO sets, `C-c -' to cycle item bullet
883 types, and properties can be edited by hand or in column view.
885 However, when the cursor is on a timestamp, shift-cursor commands
886 will still edit the time stamp - this is just too good to give up.
888 XEmacs user should have this variable set to nil, because
889 `shift-select-mode' is in Emacs 23 or later only."
890 :group 'org
891 :type '(choice
892 (const :tag "Never" nil)
893 (const :tag "When outside special context" t)
894 (const :tag "Everywhere except timestamps" always)))
896 (defcustom org-loop-over-headlines-in-active-region nil
897 "Shall some commands act upon headlines in the active region?
899 When set to t, some commands will be performed in all headlines
900 within the active region.
902 When set to `start-level', some commands will be performed in all
903 headlines within the active region, provided that these headlines
904 are of the same level than the first one.
906 When set to a string, those commands will be performed on the
907 matching headlines within the active region. Such string must be
908 a tags/property/todo match as it is used in the agenda tags view.
910 The list of commands is: `org-schedule', `org-deadline',
911 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
912 `org-archive-to-archive-sibling'. The archiving commands skip
913 already archived entries."
914 :type '(choice (const :tag "Don't loop" nil)
915 (const :tag "All headlines in active region" t)
916 (const :tag "In active region, headlines at the same level than the first one" start-level)
917 (string :tag "Tags/Property/Todo matcher"))
918 :version "24.1"
919 :group 'org-todo
920 :group 'org-archive)
922 (defgroup org-startup nil
923 "Options concerning startup of Org-mode."
924 :tag "Org Startup"
925 :group 'org)
927 (defcustom org-startup-folded t
928 "Non-nil means entering Org-mode will switch to OVERVIEW.
929 This can also be configured on a per-file basis by adding one of
930 the following lines anywhere in the buffer:
932 #+STARTUP: fold (or `overview', this is equivalent)
933 #+STARTUP: nofold (or `showall', this is equivalent)
934 #+STARTUP: content
935 #+STARTUP: showeverything
937 By default, this option is ignored when Org opens agenda files
938 for the first time. If you want the agenda to honor the startup
939 option, set `org-agenda-inhibit-startup' to nil."
940 :group 'org-startup
941 :type '(choice
942 (const :tag "nofold: show all" nil)
943 (const :tag "fold: overview" t)
944 (const :tag "content: all headlines" content)
945 (const :tag "show everything, even drawers" showeverything)))
947 (defcustom org-startup-truncated t
948 "Non-nil means entering Org-mode will set `truncate-lines'.
949 This is useful since some lines containing links can be very long and
950 uninteresting. Also tables look terrible when wrapped."
951 :group 'org-startup
952 :type 'boolean)
954 (defcustom org-startup-indented nil
955 "Non-nil means turn on `org-indent-mode' on startup.
956 This can also be configured on a per-file basis by adding one of
957 the following lines anywhere in the buffer:
959 #+STARTUP: indent
960 #+STARTUP: noindent"
961 :group 'org-structure
962 :type '(choice
963 (const :tag "Not" nil)
964 (const :tag "Globally (slow on startup in large files)" t)))
966 (defcustom org-use-sub-superscripts t
967 "Non-nil means interpret \"_\" and \"^\" for display.
969 If you want to control how Org exports those characters, see
970 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
971 used to be an alias for `org-export-with-sub-superscripts' in
972 Org <8.0, it is not anymore.
974 When this option is turned on, you can use TeX-like syntax for
975 sub- and superscripts within the buffer. Several characters after
976 \"_\" or \"^\" will be considered as a single item - so grouping
977 with {} is normally not needed. For example, the following things
978 will be parsed as single sub- or superscripts:
980 10^24 or 10^tau several digits will be considered 1 item.
981 10^-12 or 10^-tau a leading sign with digits or a word
982 x^2-y^3 will be read as x^2 - y^3, because items are
983 terminated by almost any nonword/nondigit char.
984 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
986 Still, ambiguity is possible. So when in doubt, use {} to enclose
987 the sub/superscript. If you set this variable to the symbol `{}',
988 the braces are *required* in order to trigger interpretations as
989 sub/superscript. This can be helpful in documents that need \"_\"
990 frequently in plain text."
991 :group 'org-startup
992 :version "24.4"
993 :package-version '(Org . "8.0")
994 :type '(choice
995 (const :tag "Always interpret" t)
996 (const :tag "Only with braces" {})
997 (const :tag "Never interpret" nil)))
999 (defcustom org-startup-with-beamer-mode nil
1000 "Non-nil means turn on `org-beamer-mode' on startup.
1001 This can also be configured on a per-file basis by adding one of
1002 the following lines anywhere in the buffer:
1004 #+STARTUP: beamer"
1005 :group 'org-startup
1006 :version "24.1"
1007 :type 'boolean)
1009 (defcustom org-startup-align-all-tables nil
1010 "Non-nil means align all tables when visiting a file.
1011 This is useful when the column width in tables is forced with <N> cookies
1012 in table fields. Such tables will look correct only after the first re-align.
1013 This can also be configured on a per-file basis by adding one of
1014 the following lines anywhere in the buffer:
1015 #+STARTUP: align
1016 #+STARTUP: noalign"
1017 :group 'org-startup
1018 :type 'boolean)
1020 (defcustom org-startup-with-inline-images nil
1021 "Non-nil means show inline images when loading a new Org file.
1022 This can also be configured on a per-file basis by adding one of
1023 the following lines anywhere in the buffer:
1024 #+STARTUP: inlineimages
1025 #+STARTUP: noinlineimages"
1026 :group 'org-startup
1027 :version "24.1"
1028 :type 'boolean)
1030 (defcustom org-startup-with-latex-preview nil
1031 "Non-nil means preview LaTeX fragments when loading a new Org file.
1033 This can also be configured on a per-file basis by adding one of
1034 the following lines anywhere in the buffer:
1035 #+STARTUP: latexpreview
1036 #+STARTUP: nolatexpreview"
1037 :group 'org-startup
1038 :version "24.4"
1039 :package-version '(Org . "8.0")
1040 :type 'boolean)
1042 (defcustom org-insert-mode-line-in-empty-file nil
1043 "Non-nil means insert the first line setting Org-mode in empty files.
1044 When the function `org-mode' is called interactively in an empty file, this
1045 normally means that the file name does not automatically trigger Org-mode.
1046 To ensure that the file will always be in Org-mode in the future, a
1047 line enforcing Org-mode will be inserted into the buffer, if this option
1048 has been set."
1049 :group 'org-startup
1050 :type 'boolean)
1052 (defcustom org-replace-disputed-keys nil
1053 "Non-nil means use alternative key bindings for some keys.
1054 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1055 These keys are also used by other packages like shift-selection-mode'
1056 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1057 If you want to use Org-mode together with one of these other modes,
1058 or more generally if you would like to move some Org-mode commands to
1059 other keys, set this variable and configure the keys with the variable
1060 `org-disputed-keys'.
1062 This option is only relevant at load-time of Org-mode, and must be set
1063 *before* org.el is loaded. Changing it requires a restart of Emacs to
1064 become effective."
1065 :group 'org-startup
1066 :type 'boolean)
1068 (defcustom org-use-extra-keys nil
1069 "Non-nil means use extra key sequence definitions for certain commands.
1070 This happens automatically if you run XEmacs or if `window-system'
1071 is nil. This variable lets you do the same manually. You must
1072 set it before loading org.
1074 Example: on Carbon Emacs 22 running graphically, with an external
1075 keyboard on a Powerbook, the default way of setting M-left might
1076 not work for either Alt or ESC. Setting this variable will make
1077 it work for ESC."
1078 :group 'org-startup
1079 :type 'boolean)
1081 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1083 (defcustom org-disputed-keys
1084 '(([(shift up)] . [(meta p)])
1085 ([(shift down)] . [(meta n)])
1086 ([(shift left)] . [(meta -)])
1087 ([(shift right)] . [(meta +)])
1088 ([(control shift right)] . [(meta shift +)])
1089 ([(control shift left)] . [(meta shift -)]))
1090 "Keys for which Org-mode and other modes compete.
1091 This is an alist, cars are the default keys, second element specifies
1092 the alternative to use when `org-replace-disputed-keys' is t.
1094 Keys can be specified in any syntax supported by `define-key'.
1095 The value of this option takes effect only at Org-mode's startup,
1096 therefore you'll have to restart Emacs to apply it after changing."
1097 :group 'org-startup
1098 :type 'alist)
1100 (defun org-key (key)
1101 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1102 Or return the original if not disputed.
1103 Also apply the translations defined in `org-xemacs-key-equivalents'."
1104 (when org-replace-disputed-keys
1105 (let* ((nkey (key-description key))
1106 (x (org-find-if (lambda (x)
1107 (equal (key-description (car x)) nkey))
1108 org-disputed-keys)))
1109 (setq key (if x (cdr x) key))))
1110 (when (featurep 'xemacs)
1111 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1112 key)
1114 (defun org-find-if (predicate seq)
1115 (catch 'exit
1116 (while seq
1117 (if (funcall predicate (car seq))
1118 (throw 'exit (car seq))
1119 (pop seq)))))
1121 (defun org-defkey (keymap key def)
1122 "Define a key, possibly translated, as returned by `org-key'."
1123 (define-key keymap (org-key key) def))
1125 (defcustom org-ellipsis nil
1126 "The ellipsis to use in the Org-mode outline.
1127 When nil, just use the standard three dots.
1128 When a string, use that string instead.
1129 When a face, use the standard 3 dots, but with the specified face.
1130 The change affects only Org-mode (which will then use its own display table).
1131 Changing this requires executing \\[org-mode] in a buffer to become
1132 effective."
1133 :group 'org-startup
1134 :type '(choice (const :tag "Default" nil)
1135 (face :tag "Face" :value org-warning)
1136 (string :tag "String" :value "...#")))
1138 (defvar org-display-table nil
1139 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1141 (defgroup org-keywords nil
1142 "Keywords in Org-mode."
1143 :tag "Org Keywords"
1144 :group 'org)
1146 (defcustom org-closed-keep-when-no-todo nil
1147 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1148 :group 'org-todo
1149 :group 'org-keywords
1150 :version "24.4"
1151 :package-version '(Org . "8.0")
1152 :type 'boolean)
1154 (defgroup org-structure nil
1155 "Options concerning the general structure of Org-mode files."
1156 :tag "Org Structure"
1157 :group 'org)
1159 (defgroup org-reveal-location nil
1160 "Options about how to make context of a location visible."
1161 :tag "Org Reveal Location"
1162 :group 'org-structure)
1164 (defcustom org-show-context-detail '((isearch . lineage)
1165 (bookmark-jump . lineage)
1166 (default . ancestors))
1167 "Alist between context and visibility span when revealing a location.
1169 \\<org-mode-map>Some actions may move point into invisible
1170 locations. As a consequence, Org always expose a neighborhood
1171 around point. How much is shown depends on the initial action,
1172 or context. Valid contexts are
1174 agenda when exposing an entry from the agenda
1175 org-goto when using the command `org-goto' (\\[org-goto])
1176 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1177 tags-tree when constructing a sparse tree based on tags matches
1178 link-search when exposing search matches associated with a link
1179 mark-goto when exposing the jump goal of a mark
1180 bookmark-jump when exposing a bookmark location
1181 isearch when exiting from an incremental search
1182 default default for all contexts not set explicitly
1184 Allowed visibility spans are
1186 minimal show current headline; if point is not on headline,
1187 also show entry
1189 local show current headline, entry and next headline
1191 ancestors show current headline and its direct ancestors; if
1192 point is not on headline, also show entry
1194 lineage show current headline, its direct ancestors and all
1195 their children; if point is not on headline, also show
1196 entry and first child
1198 tree show current headline, its direct ancestors and all
1199 their children; if point is not on headline, also show
1200 entry and all children
1202 canonical show current headline, its direct ancestors along with
1203 their entries and children; if point is not located on
1204 the headline, also show current entry and all children
1206 As special cases, a nil or t value means show all contexts in
1207 `minimal' or `canonical' view, respectively.
1209 Some views can make displayed information very compact, but also
1210 make it harder to edit the location of the match. In such
1211 a case, use the command `org-reveal' (\\[org-reveal]) to show
1212 more context."
1213 :group 'org-reveal-location
1214 :version "25.1"
1215 :package-version '(Org . "8.3")
1216 :type '(choice
1217 (const :tag "Canonical" t)
1218 (const :tag "Minimal" nil)
1219 (repeat :greedy t :tag "Individual contexts"
1220 (cons
1221 (choice :tag "Context"
1222 (const agenda)
1223 (const org-goto)
1224 (const occur-tree)
1225 (const tags-tree)
1226 (const link-search)
1227 (const mark-goto)
1228 (const bookmark-jump)
1229 (const isearch)
1230 (const default))
1231 (choice :tag "Detail level"
1232 (const minimal)
1233 (const local)
1234 (const ancestors)
1235 (const lineage)
1236 (const tree)
1237 (const canonical))))))
1239 (defcustom org-indirect-buffer-display 'other-window
1240 "How should indirect tree buffers be displayed?
1241 This applies to indirect buffers created with the commands
1242 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1243 Valid values are:
1244 current-window Display in the current window
1245 other-window Just display in another window.
1246 dedicated-frame Create one new frame, and re-use it each time.
1247 new-frame Make a new frame each time. Note that in this case
1248 previously-made indirect buffers are kept, and you need to
1249 kill these buffers yourself."
1250 :group 'org-structure
1251 :group 'org-agenda-windows
1252 :type '(choice
1253 (const :tag "In current window" current-window)
1254 (const :tag "In current frame, other window" other-window)
1255 (const :tag "Each time a new frame" new-frame)
1256 (const :tag "One dedicated frame" dedicated-frame)))
1258 (defcustom org-use-speed-commands nil
1259 "Non-nil means activate single letter commands at beginning of a headline.
1260 This may also be a function to test for appropriate locations where speed
1261 commands should be active.
1263 For example, to activate speed commands when the point is on any
1264 star at the beginning of the headline, you can do this:
1266 (setq org-use-speed-commands
1267 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1268 :group 'org-structure
1269 :type '(choice
1270 (const :tag "Never" nil)
1271 (const :tag "At beginning of headline stars" t)
1272 (function)))
1274 (defcustom org-speed-commands-user nil
1275 "Alist of additional speed commands.
1276 This list will be checked before `org-speed-commands-default'
1277 when the variable `org-use-speed-commands' is non-nil
1278 and when the cursor is at the beginning of a headline.
1279 The car if each entry is a string with a single letter, which must
1280 be assigned to `self-insert-command' in the global map.
1281 The cdr is either a command to be called interactively, a function
1282 to be called, or a form to be evaluated.
1283 An entry that is just a list with a single string will be interpreted
1284 as a descriptive headline that will be added when listing the speed
1285 commands in the Help buffer using the `?' speed command."
1286 :group 'org-structure
1287 :type '(repeat :value ("k" . ignore)
1288 (choice :value ("k" . ignore)
1289 (list :tag "Descriptive Headline" (string :tag "Headline"))
1290 (cons :tag "Letter and Command"
1291 (string :tag "Command letter")
1292 (choice
1293 (function)
1294 (sexp))))))
1296 (defcustom org-bookmark-names-plist
1297 '(:last-capture "org-capture-last-stored"
1298 :last-refile "org-refile-last-stored"
1299 :last-capture-marker "org-capture-last-stored-marker")
1300 "Names for bookmarks automatically set by some Org commands.
1301 This can provide strings as names for a number of bookmarks Org sets
1302 automatically. The following keys are currently implemented:
1303 :last-capture
1304 :last-capture-marker
1305 :last-refile
1306 When a key does not show up in the property list, the corresponding bookmark
1307 is not set."
1308 :group 'org-structure
1309 :type 'plist)
1311 (defgroup org-cycle nil
1312 "Options concerning visibility cycling in Org-mode."
1313 :tag "Org Cycle"
1314 :group 'org-structure)
1316 (defcustom org-cycle-skip-children-state-if-no-children t
1317 "Non-nil means skip CHILDREN state in entries that don't have any."
1318 :group 'org-cycle
1319 :type 'boolean)
1321 (defcustom org-cycle-max-level nil
1322 "Maximum level which should still be subject to visibility cycling.
1323 Levels higher than this will, for cycling, be treated as text, not a headline.
1324 When `org-odd-levels-only' is set, a value of N in this variable actually
1325 means 2N-1 stars as the limiting headline.
1326 When nil, cycle all levels.
1327 Note that the limiting level of cycling is also influenced by
1328 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1329 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1330 than its value."
1331 :group 'org-cycle
1332 :type '(choice
1333 (const :tag "No limit" nil)
1334 (integer :tag "Maximum level")))
1336 (defcustom org-hide-block-startup nil
1337 "Non-nil means entering Org-mode will fold all blocks.
1338 This can also be set in on a per-file basis with
1340 #+STARTUP: hideblocks
1341 #+STARTUP: showblocks"
1342 :group 'org-startup
1343 :group 'org-cycle
1344 :type 'boolean)
1346 (defcustom org-cycle-global-at-bob nil
1347 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1348 This makes it possible to do global cycling without having to use S-TAB or
1349 \\[universal-argument] TAB. For this special case to work, the first line
1350 of the buffer must not be a headline -- it may be empty or some other text.
1351 When used in this way, `org-cycle-hook' is disabled temporarily to make
1352 sure the cursor stays at the beginning of the buffer. When this option is
1353 nil, don't do anything special at the beginning of the buffer."
1354 :group 'org-cycle
1355 :type 'boolean)
1357 (defcustom org-cycle-level-after-item/entry-creation t
1358 "Non-nil means cycle entry level or item indentation in new empty entries.
1360 When the cursor is at the end of an empty headline, i.e., with only stars
1361 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1362 and then all possible ancestor states, before returning to the original state.
1363 This makes data entry extremely fast: M-RET to create a new headline,
1364 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1366 When the cursor is at the end of an empty plain list item, one TAB will
1367 make it a subitem, two or more tabs will back up to make this an item
1368 higher up in the item hierarchy."
1369 :group 'org-cycle
1370 :type 'boolean)
1372 (defcustom org-cycle-emulate-tab t
1373 "Where should `org-cycle' emulate TAB.
1374 nil Never
1375 white Only in completely white lines
1376 whitestart Only at the beginning of lines, before the first non-white char
1377 t Everywhere except in headlines
1378 exc-hl-bol Everywhere except at the start of a headline
1379 If TAB is used in a place where it does not emulate TAB, the current subtree
1380 visibility is cycled."
1381 :group 'org-cycle
1382 :type '(choice (const :tag "Never" nil)
1383 (const :tag "Only in completely white lines" white)
1384 (const :tag "Before first char in a line" whitestart)
1385 (const :tag "Everywhere except in headlines" t)
1386 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1388 (defcustom org-cycle-separator-lines 2
1389 "Number of empty lines needed to keep an empty line between collapsed trees.
1390 If you leave an empty line between the end of a subtree and the following
1391 headline, this empty line is hidden when the subtree is folded.
1392 Org-mode will leave (exactly) one empty line visible if the number of
1393 empty lines is equal or larger to the number given in this variable.
1394 So the default 2 means at least 2 empty lines after the end of a subtree
1395 are needed to produce free space between a collapsed subtree and the
1396 following headline.
1398 If the number is negative, and the number of empty lines is at least -N,
1399 all empty lines are shown.
1401 Special case: when 0, never leave empty lines in collapsed view."
1402 :group 'org-cycle
1403 :type 'integer)
1404 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1406 (defcustom org-pre-cycle-hook nil
1407 "Hook that is run before visibility cycling is happening.
1408 The function(s) in this hook must accept a single argument which indicates
1409 the new state that will be set right after running this hook. The
1410 argument is a symbol. Before a global state change, it can have the values
1411 `overview', `content', or `all'. Before a local state change, it can have
1412 the values `folded', `children', or `subtree'."
1413 :group 'org-cycle
1414 :type 'hook)
1416 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1417 org-cycle-hide-drawers
1418 org-cycle-show-empty-lines
1419 org-optimize-window-after-visibility-change)
1420 "Hook that is run after `org-cycle' has changed the buffer visibility.
1421 The function(s) in this hook must accept a single argument which indicates
1422 the new state that was set by the most recent `org-cycle' command. The
1423 argument is a symbol. After a global state change, it can have the values
1424 `overview', `contents', or `all'. After a local state change, it can have
1425 the values `folded', `children', or `subtree'."
1426 :group 'org-cycle
1427 :type 'hook
1428 :version "25.1"
1429 :package-version '(Org . "8.3"))
1431 (defgroup org-edit-structure nil
1432 "Options concerning structure editing in Org-mode."
1433 :tag "Org Edit Structure"
1434 :group 'org-structure)
1436 (defcustom org-odd-levels-only nil
1437 "Non-nil means skip even levels and only use odd levels for the outline.
1438 This has the effect that two stars are being added/taken away in
1439 promotion/demotion commands. It also influences how levels are
1440 handled by the exporters.
1441 Changing it requires restart of `font-lock-mode' to become effective
1442 for fontification also in regions already fontified.
1443 You may also set this on a per-file basis by adding one of the following
1444 lines to the buffer:
1446 #+STARTUP: odd
1447 #+STARTUP: oddeven"
1448 :group 'org-edit-structure
1449 :group 'org-appearance
1450 :type 'boolean)
1452 (defcustom org-adapt-indentation t
1453 "Non-nil means adapt indentation to outline node level.
1455 When this variable is set, Org assumes that you write outlines by
1456 indenting text in each node to align with the headline (after the
1457 stars). The following issues are influenced by this variable:
1459 - The indentation is increased by one space in a demotion
1460 command, and decreased by one in a promotion command. However,
1461 in the latter case, if shifting some line in the entry body
1462 would alter document structure (e.g., insert a new headline),
1463 indentation is not changed at all.
1465 - Property drawers and planning information is inserted indented
1466 when this variable is set. When nil, they will not be indented.
1468 - TAB indents a line relative to current level. The lines below
1469 a headline will be indented when this variable is set.
1471 Note that this is all about true indentation, by adding and
1472 removing space characters. See also `org-indent.el' which does
1473 level-dependent indentation in a virtual way, i.e. at display
1474 time in Emacs."
1475 :group 'org-edit-structure
1476 :type 'boolean)
1478 (defcustom org-special-ctrl-a/e nil
1479 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1481 When t, `C-a' will bring back the cursor to the beginning of the
1482 headline text, i.e. after the stars and after a possible TODO
1483 keyword. In an item, this will be the position after bullet and
1484 check-box, if any. When the cursor is already at that position,
1485 another `C-a' will bring it to the beginning of the line.
1487 `C-e' will jump to the end of the headline, ignoring the presence
1488 of tags in the headline. A second `C-e' will then jump to the
1489 true end of the line, after any tags. This also means that, when
1490 this variable is non-nil, `C-e' also will never jump beyond the
1491 end of the heading of a folded section, i.e. not after the
1492 ellipses.
1494 When set to the symbol `reversed', the first `C-a' or `C-e' works
1495 normally, going to the true line boundary first. Only a directly
1496 following, identical keypress will bring the cursor to the
1497 special positions.
1499 This may also be a cons cell where the behavior for `C-a' and
1500 `C-e' is set separately."
1501 :group 'org-edit-structure
1502 :type '(choice
1503 (const :tag "off" nil)
1504 (const :tag "on: after stars/bullet and before tags first" t)
1505 (const :tag "reversed: true line boundary first" reversed)
1506 (cons :tag "Set C-a and C-e separately"
1507 (choice :tag "Special C-a"
1508 (const :tag "off" nil)
1509 (const :tag "on: after stars/bullet first" t)
1510 (const :tag "reversed: before stars/bullet first" reversed))
1511 (choice :tag "Special C-e"
1512 (const :tag "off" nil)
1513 (const :tag "on: before tags first" t)
1514 (const :tag "reversed: after tags first" reversed)))))
1515 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1517 (defcustom org-special-ctrl-k nil
1518 "Non-nil means `C-k' will behave specially in headlines.
1519 When nil, `C-k' will call the default `kill-line' command.
1520 When t, the following will happen while the cursor is in the headline:
1522 - When the cursor is at the beginning of a headline, kill the entire
1523 line and possible the folded subtree below the line.
1524 - When in the middle of the headline text, kill the headline up to the tags.
1525 - When after the headline text, kill the tags."
1526 :group 'org-edit-structure
1527 :type 'boolean)
1529 (defcustom org-ctrl-k-protect-subtree nil
1530 "Non-nil means, do not delete a hidden subtree with C-k.
1531 When set to the symbol `error', simply throw an error when C-k is
1532 used to kill (part-of) a headline that has hidden text behind it.
1533 Any other non-nil value will result in a query to the user, if it is
1534 OK to kill that hidden subtree. When nil, kill without remorse."
1535 :group 'org-edit-structure
1536 :version "24.1"
1537 :type '(choice
1538 (const :tag "Do not protect hidden subtrees" nil)
1539 (const :tag "Protect hidden subtrees with a security query" t)
1540 (const :tag "Never kill a hidden subtree with C-k" error)))
1542 (defcustom org-special-ctrl-o t
1543 "Non-nil means, make `C-o' insert a row in tables."
1544 :group 'org-edit-structure
1545 :type 'boolean)
1547 (defcustom org-catch-invisible-edits nil
1548 "Check if in invisible region before inserting or deleting a character.
1549 Valid values are:
1551 nil Do not check, so just do invisible edits.
1552 error Throw an error and do nothing.
1553 show Make point visible, and do the requested edit.
1554 show-and-error Make point visible, then throw an error and abort the edit.
1555 smart Make point visible, and do insertion/deletion if it is
1556 adjacent to visible text and the change feels predictable.
1557 Never delete a previously invisible character or add in the
1558 middle or right after an invisible region. Basically, this
1559 allows insertion and backward-delete right before ellipses.
1560 FIXME: maybe in this case we should not even show?"
1561 :group 'org-edit-structure
1562 :version "24.1"
1563 :type '(choice
1564 (const :tag "Do not check" nil)
1565 (const :tag "Throw error when trying to edit" error)
1566 (const :tag "Unhide, but do not do the edit" show-and-error)
1567 (const :tag "Show invisible part and do the edit" show)
1568 (const :tag "Be smart and do the right thing" smart)))
1570 (defcustom org-yank-folded-subtrees t
1571 "Non-nil means when yanking subtrees, fold them.
1572 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1573 it starts with a heading and all other headings in it are either children
1574 or siblings, then fold all the subtrees. However, do this only if no
1575 text after the yank would be swallowed into a folded tree by this action."
1576 :group 'org-edit-structure
1577 :type 'boolean)
1579 (defcustom org-yank-adjusted-subtrees nil
1580 "Non-nil means when yanking subtrees, adjust the level.
1581 With this setting, `org-paste-subtree' is used to insert the subtree, see
1582 this function for details."
1583 :group 'org-edit-structure
1584 :type 'boolean)
1586 (defcustom org-M-RET-may-split-line '((default . t))
1587 "Non-nil means M-RET will split the line at the cursor position.
1588 When nil, it will go to the end of the line before making a
1589 new line.
1590 You may also set this option in a different way for different
1591 contexts. Valid contexts are:
1593 headline when creating a new headline
1594 item when creating a new item
1595 table in a table field
1596 default the value to be used for all contexts not explicitly
1597 customized"
1598 :group 'org-structure
1599 :group 'org-table
1600 :type '(choice
1601 (const :tag "Always" t)
1602 (const :tag "Never" nil)
1603 (repeat :greedy t :tag "Individual contexts"
1604 (cons
1605 (choice :tag "Context"
1606 (const headline)
1607 (const item)
1608 (const table)
1609 (const default))
1610 (boolean)))))
1613 (defcustom org-insert-heading-respect-content nil
1614 "Non-nil means insert new headings after the current subtree.
1615 When nil, the new heading is created directly after the current line.
1616 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1617 this variable on for the duration of the command."
1618 :group 'org-structure
1619 :type 'boolean)
1621 (defcustom org-blank-before-new-entry '((heading . auto)
1622 (plain-list-item . auto))
1623 "Should `org-insert-heading' leave a blank line before new heading/item?
1624 The value is an alist, with `heading' and `plain-list-item' as CAR,
1625 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1626 which case Org will look at the surrounding headings/items and try to
1627 make an intelligent decision whether to insert a blank line or not.
1629 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1630 the setting here is ignored and no empty line is inserted to avoid breaking
1631 the list structure."
1632 :group 'org-edit-structure
1633 :type '(list
1634 (cons (const heading)
1635 (choice (const :tag "Never" nil)
1636 (const :tag "Always" t)
1637 (const :tag "Auto" auto)))
1638 (cons (const plain-list-item)
1639 (choice (const :tag "Never" nil)
1640 (const :tag "Always" t)
1641 (const :tag "Auto" auto)))))
1643 (defcustom org-insert-heading-hook nil
1644 "Hook being run after inserting a new heading."
1645 :group 'org-edit-structure
1646 :type 'hook)
1648 (defcustom org-enable-fixed-width-editor t
1649 "Non-nil means lines starting with \":\" are treated as fixed-width.
1650 This currently only means they are never auto-wrapped.
1651 When nil, such lines will be treated like ordinary lines."
1652 :group 'org-edit-structure
1653 :type 'boolean)
1655 (defcustom org-goto-auto-isearch t
1656 "Non-nil means typing characters in `org-goto' starts incremental search.
1657 When nil, you can use these keybindings to navigate the buffer:
1659 q Quit the org-goto interface
1660 n Go to the next visible heading
1661 p Go to the previous visible heading
1662 f Go one heading forward on same level
1663 b Go one heading backward on same level
1664 u Go one heading up"
1665 :group 'org-edit-structure
1666 :type 'boolean)
1668 (defgroup org-sparse-trees nil
1669 "Options concerning sparse trees in Org-mode."
1670 :tag "Org Sparse Trees"
1671 :group 'org-structure)
1673 (defcustom org-highlight-sparse-tree-matches t
1674 "Non-nil means highlight all matches that define a sparse tree.
1675 The highlights will automatically disappear the next time the buffer is
1676 changed by an edit command."
1677 :group 'org-sparse-trees
1678 :type 'boolean)
1680 (defcustom org-remove-highlights-with-change t
1681 "Non-nil means any change to the buffer will remove temporary highlights.
1682 Such highlights are created by `org-occur' and `org-clock-display'.
1683 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1684 The highlights created by `org-toggle-latex-fragment' always need
1685 `C-c C-x C-l' to be removed."
1686 :group 'org-sparse-trees
1687 :group 'org-time
1688 :type 'boolean)
1691 (defcustom org-occur-hook '(org-first-headline-recenter)
1692 "Hook that is run after `org-occur' has constructed a sparse tree.
1693 This can be used to recenter the window to show as much of the structure
1694 as possible."
1695 :group 'org-sparse-trees
1696 :type 'hook)
1698 (defgroup org-imenu-and-speedbar nil
1699 "Options concerning imenu and speedbar in Org-mode."
1700 :tag "Org Imenu and Speedbar"
1701 :group 'org-structure)
1703 (defcustom org-imenu-depth 2
1704 "The maximum level for Imenu access to Org-mode headlines.
1705 This also applied for speedbar access."
1706 :group 'org-imenu-and-speedbar
1707 :type 'integer)
1709 (defgroup org-table nil
1710 "Options concerning tables in Org-mode."
1711 :tag "Org Table"
1712 :group 'org)
1714 (defcustom org-enable-table-editor 'optimized
1715 "Non-nil means lines starting with \"|\" are handled by the table editor.
1716 When nil, such lines will be treated like ordinary lines.
1718 When equal to the symbol `optimized', the table editor will be optimized to
1719 do the following:
1720 - Automatic overwrite mode in front of whitespace in table fields.
1721 This makes the structure of the table stay in tact as long as the edited
1722 field does not exceed the column width.
1723 - Minimize the number of realigns. Normally, the table is aligned each time
1724 TAB or RET are pressed to move to another field. With optimization this
1725 happens only if changes to a field might have changed the column width.
1726 Optimization requires replacing the functions `self-insert-command',
1727 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1728 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1729 very good at guessing when a re-align will be necessary, but you can always
1730 force one with \\[org-ctrl-c-ctrl-c].
1732 If you would like to use the optimized version in Org-mode, but the
1733 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1735 This variable can be used to turn on and off the table editor during a session,
1736 but in order to toggle optimization, a restart is required.
1738 See also the variable `org-table-auto-blank-field'."
1739 :group 'org-table
1740 :type '(choice
1741 (const :tag "off" nil)
1742 (const :tag "on" t)
1743 (const :tag "on, optimized" optimized)))
1745 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1746 (version<= emacs-version "24.1"))
1747 "Non-nil means cluster self-insert commands for undo when possible.
1748 If this is set, then, like in the Emacs command loop, 20 consecutive
1749 characters will be undone together.
1750 This is configurable, because there is some impact on typing performance."
1751 :group 'org-table
1752 :type 'boolean)
1754 (defcustom org-table-tab-recognizes-table.el t
1755 "Non-nil means TAB will automatically notice a table.el table.
1756 When it sees such a table, it moves point into it and - if necessary -
1757 calls `table-recognize-table'."
1758 :group 'org-table-editing
1759 :type 'boolean)
1761 (defgroup org-link nil
1762 "Options concerning links in Org-mode."
1763 :tag "Org Link"
1764 :group 'org)
1766 (defvar org-link-abbrev-alist-local nil
1767 "Buffer-local version of `org-link-abbrev-alist', which see.
1768 The value of this is taken from the #+LINK lines.")
1769 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1771 (defcustom org-link-abbrev-alist nil
1772 "Alist of link abbreviations.
1773 The car of each element is a string, to be replaced at the start of a link.
1774 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1775 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1777 [[linkkey:tag][description]]
1779 The 'linkkey' must be a word word, starting with a letter, followed
1780 by letters, numbers, '-' or '_'.
1782 If REPLACE is a string, the tag will simply be appended to create the link.
1783 If the string contains \"%s\", the tag will be inserted there. If the string
1784 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1785 at that point (see the function `url-hexify-string'). If the string contains
1786 the specifier \"%(my-function)\", then the custom function `my-function' will
1787 be invoked: this function takes the tag as its only argument and must return
1788 a string.
1790 REPLACE may also be a function that will be called with the tag as the
1791 only argument to create the link, which should be returned as a string.
1793 See the manual for examples."
1794 :group 'org-link
1795 :type '(repeat
1796 (cons
1797 (string :tag "Protocol")
1798 (choice
1799 (string :tag "Format")
1800 (function)))))
1802 (defcustom org-descriptive-links t
1803 "Non-nil means Org will display descriptive links.
1804 E.g. [[http://orgmode.org][Org website]] will be displayed as
1805 \"Org Website\", hiding the link itself and just displaying its
1806 description. When set to nil, Org will display the full links
1807 literally.
1809 You can interactively set the value of this variable by calling
1810 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1811 :group 'org-link
1812 :type 'boolean)
1814 (defcustom org-link-file-path-type 'adaptive
1815 "How the path name in file links should be stored.
1816 Valid values are:
1818 relative Relative to the current directory, i.e. the directory of the file
1819 into which the link is being inserted.
1820 absolute Absolute path, if possible with ~ for home directory.
1821 noabbrev Absolute path, no abbreviation of home directory.
1822 adaptive Use relative path for files in the current directory and sub-
1823 directories of it. For other files, use an absolute path."
1824 :group 'org-link
1825 :type '(choice
1826 (const relative)
1827 (const absolute)
1828 (const noabbrev)
1829 (const adaptive)))
1831 (defvaralias 'org-activate-links 'org-highlight-links)
1832 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1833 "Types of links that should be highlighted in Org-mode files.
1835 This is a list of symbols, each one of them leading to the
1836 highlighting of a certain link type.
1838 You can still open links that are not highlighted.
1840 In principle, it does not hurt to turn on highlighting for all
1841 link types. There may be a small gain when turning off unused
1842 link types. The types are:
1844 bracket The recommended [[link][description]] or [[link]] links with hiding.
1845 angle Links in angular brackets that may contain whitespace like
1846 <bbdb:Carsten Dominik>.
1847 plain Plain links in normal text, no whitespace, like http://google.com.
1848 radio Text that is matched by a radio target, see manual for details.
1849 tag Tag settings in a headline (link to tag search).
1850 date Time stamps (link to calendar).
1851 footnote Footnote labels.
1853 If you set this variable during an Emacs session, use `org-mode-restart'
1854 in the Org buffer so that the change takes effect."
1855 :group 'org-link
1856 :group 'org-appearance
1857 :type '(set :greedy t
1858 (const :tag "Double bracket links" bracket)
1859 (const :tag "Angular bracket links" angle)
1860 (const :tag "Plain text links" plain)
1861 (const :tag "Radio target matches" radio)
1862 (const :tag "Tags" tag)
1863 (const :tag "Timestamps" date)
1864 (const :tag "Footnotes" footnote)))
1866 (defcustom org-make-link-description-function nil
1867 "Function to use for generating link descriptions from links.
1868 When nil, the link location will be used. This function must take
1869 two parameters: the first one is the link, the second one is the
1870 description generated by `org-insert-link'. The function should
1871 return the description to use."
1872 :group 'org-link
1873 :type '(choice (const nil) (function)))
1875 (defgroup org-link-store nil
1876 "Options concerning storing links in Org-mode."
1877 :tag "Org Store Link"
1878 :group 'org-link)
1880 (defcustom org-url-hexify-p t
1881 "When non-nil, hexify URL when creating a link."
1882 :type 'boolean
1883 :version "24.3"
1884 :group 'org-link-store)
1886 (defcustom org-email-link-description-format "Email %c: %.30s"
1887 "Format of the description part of a link to an email or usenet message.
1888 The following %-escapes will be replaced by corresponding information:
1890 %F full \"From\" field
1891 %f name, taken from \"From\" field, address if no name
1892 %T full \"To\" field
1893 %t first name in \"To\" field, address if no name
1894 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1895 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1896 %s subject
1897 %d date
1898 %m message-id.
1900 You may use normal field width specification between the % and the letter.
1901 This is for example useful to limit the length of the subject.
1903 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1904 :group 'org-link-store
1905 :type 'string)
1907 (defcustom org-from-is-user-regexp
1908 (let (r1 r2)
1909 (when (and user-mail-address (not (string= user-mail-address "")))
1910 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1911 (when (and user-full-name (not (string= user-full-name "")))
1912 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1913 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1914 "Regexp matched against the \"From:\" header of an email or usenet message.
1915 It should match if the message is from the user him/herself."
1916 :group 'org-link-store
1917 :type 'regexp)
1919 (defcustom org-context-in-file-links t
1920 "Non-nil means file links from `org-store-link' contain context.
1921 A search string will be added to the file name with :: as separator and
1922 used to find the context when the link is activated by the command
1923 `org-open-at-point'. When this option is t, the entire active region
1924 will be placed in the search string of the file link. If set to a
1925 positive integer, only the first n lines of context will be stored.
1927 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1928 negates this setting for the duration of the command."
1929 :group 'org-link-store
1930 :type '(choice boolean integer))
1932 (defcustom org-keep-stored-link-after-insertion nil
1933 "Non-nil means keep link in list for entire session.
1935 The command `org-store-link' adds a link pointing to the current
1936 location to an internal list. These links accumulate during a session.
1937 The command `org-insert-link' can be used to insert links into any
1938 Org-mode file (offering completion for all stored links). When this
1939 option is nil, every link which has been inserted once using \\[org-insert-link]
1940 will be removed from the list, to make completing the unused links
1941 more efficient."
1942 :group 'org-link-store
1943 :type 'boolean)
1945 (defgroup org-link-follow nil
1946 "Options concerning following links in Org-mode."
1947 :tag "Org Follow Link"
1948 :group 'org-link)
1950 (defcustom org-link-translation-function nil
1951 "Function to translate links with different syntax to Org syntax.
1952 This can be used to translate links created for example by the Planner
1953 or emacs-wiki packages to Org syntax.
1954 The function must accept two parameters, a TYPE containing the link
1955 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1956 which is everything after the link protocol. It should return a cons
1957 with possibly modified values of type and path.
1958 Org contains a function for this, so if you set this variable to
1959 `org-translate-link-from-planner', you should be able follow many
1960 links created by planner."
1961 :group 'org-link-follow
1962 :type '(choice (const nil) (function)))
1964 (defcustom org-follow-link-hook nil
1965 "Hook that is run after a link has been followed."
1966 :group 'org-link-follow
1967 :type 'hook)
1969 (defcustom org-tab-follows-link nil
1970 "Non-nil means on links TAB will follow the link.
1971 Needs to be set before org.el is loaded.
1972 This really should not be used, it does not make sense, and the
1973 implementation is bad."
1974 :group 'org-link-follow
1975 :type 'boolean)
1977 (defcustom org-return-follows-link nil
1978 "Non-nil means on links RET will follow the link.
1979 In tables, the special behavior of RET has precedence."
1980 :group 'org-link-follow
1981 :type 'boolean)
1983 (defcustom org-mouse-1-follows-link
1984 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1985 "Non-nil means mouse-1 on a link will follow the link.
1986 A longer mouse click will still set point. Does not work on XEmacs.
1987 Needs to be set before org.el is loaded."
1988 :group 'org-link-follow
1989 :version "24.4"
1990 :package-version '(Org . "8.3")
1991 :type '(choice
1992 (const :tag "A double click follows the link" double)
1993 (const :tag "Unconditionally follow the link with mouse-1" t)
1994 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
1996 (defcustom org-mark-ring-length 4
1997 "Number of different positions to be recorded in the ring.
1998 Changing this requires a restart of Emacs to work correctly."
1999 :group 'org-link-follow
2000 :type 'integer)
2002 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2003 "Non-nil means internal links in Org files must exactly match a headline.
2004 When nil, the link search tries to match a phrase with all words
2005 in the search text."
2006 :group 'org-link-follow
2007 :version "24.1"
2008 :type '(choice
2009 (const :tag "Use fuzzy text search" nil)
2010 (const :tag "Match only exact headline" t)
2011 (const :tag "Match exact headline or query to create it"
2012 query-to-create)))
2014 (defcustom org-link-frame-setup
2015 '((vm . vm-visit-folder-other-frame)
2016 (vm-imap . vm-visit-imap-folder-other-frame)
2017 (gnus . org-gnus-no-new-news)
2018 (file . find-file-other-window)
2019 (wl . wl-other-frame))
2020 "Setup the frame configuration for following links.
2021 When following a link with Emacs, it may often be useful to display
2022 this link in another window or frame. This variable can be used to
2023 set this up for the different types of links.
2024 For VM, use any of
2025 `vm-visit-folder'
2026 `vm-visit-folder-other-window'
2027 `vm-visit-folder-other-frame'
2028 For Gnus, use any of
2029 `gnus'
2030 `gnus-other-frame'
2031 `org-gnus-no-new-news'
2032 For FILE, use any of
2033 `find-file'
2034 `find-file-other-window'
2035 `find-file-other-frame'
2036 For Wanderlust use any of
2037 `wl'
2038 `wl-other-frame'
2039 For the calendar, use the variable `calendar-setup'.
2040 For BBDB, it is currently only possible to display the matches in
2041 another window."
2042 :group 'org-link-follow
2043 :type '(list
2044 (cons (const vm)
2045 (choice
2046 (const vm-visit-folder)
2047 (const vm-visit-folder-other-window)
2048 (const vm-visit-folder-other-frame)))
2049 (cons (const vm-imap)
2050 (choice
2051 (const vm-visit-imap-folder)
2052 (const vm-visit-imap-folder-other-window)
2053 (const vm-visit-imap-folder-other-frame)))
2054 (cons (const gnus)
2055 (choice
2056 (const gnus)
2057 (const gnus-other-frame)
2058 (const org-gnus-no-new-news)))
2059 (cons (const file)
2060 (choice
2061 (const find-file)
2062 (const find-file-other-window)
2063 (const find-file-other-frame)))
2064 (cons (const wl)
2065 (choice
2066 (const wl)
2067 (const wl-other-frame)))))
2069 (defcustom org-display-internal-link-with-indirect-buffer nil
2070 "Non-nil means use indirect buffer to display infile links.
2071 Activating internal links (from one location in a file to another location
2072 in the same file) normally just jumps to the location. When the link is
2073 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2074 is displayed in
2075 another window. When this option is set, the other window actually displays
2076 an indirect buffer clone of the current buffer, to avoid any visibility
2077 changes to the current buffer."
2078 :group 'org-link-follow
2079 :type 'boolean)
2081 (defcustom org-open-non-existing-files nil
2082 "Non-nil means `org-open-file' will open non-existing files.
2083 When nil, an error will be generated.
2084 This variable applies only to external applications because they
2085 might choke on non-existing files. If the link is to a file that
2086 will be opened in Emacs, the variable is ignored."
2087 :group 'org-link-follow
2088 :type 'boolean)
2090 (defcustom org-open-directory-means-index-dot-org nil
2091 "Non-nil means a link to a directory really means to index.org.
2092 When nil, following a directory link will run dired or open a finder/explorer
2093 window on that directory."
2094 :group 'org-link-follow
2095 :type 'boolean)
2097 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2098 "Non-nil means ask for confirmation before executing shell links.
2099 Shell links can be dangerous: just think about a link
2101 [[shell:rm -rf ~/*][Google Search]]
2103 This link would show up in your Org-mode document as \"Google Search\",
2104 but really it would remove your entire home directory.
2105 Therefore we advise against setting this variable to nil.
2106 Just change it to `y-or-n-p' if you want to confirm with a
2107 single keystroke rather than having to type \"yes\"."
2108 :group 'org-link-follow
2109 :type '(choice
2110 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2111 (const :tag "with y-or-n (faster)" y-or-n-p)
2112 (const :tag "no confirmation (dangerous)" nil)))
2113 (put 'org-confirm-shell-link-function
2114 'safe-local-variable
2115 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2117 (defcustom org-confirm-shell-link-not-regexp ""
2118 "A regexp to skip confirmation for shell links."
2119 :group 'org-link-follow
2120 :version "24.1"
2121 :type 'regexp)
2123 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2124 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2125 Elisp links can be dangerous: just think about a link
2127 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2129 This link would show up in your Org-mode document as \"Google Search\",
2130 but really it would remove your entire home directory.
2131 Therefore we advise against setting this variable to nil.
2132 Just change it to `y-or-n-p' if you want to confirm with a
2133 single keystroke rather than having to type \"yes\"."
2134 :group 'org-link-follow
2135 :type '(choice
2136 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2137 (const :tag "with y-or-n (faster)" y-or-n-p)
2138 (const :tag "no confirmation (dangerous)" nil)))
2139 (put 'org-confirm-shell-link-function
2140 'safe-local-variable
2141 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2143 (defcustom org-confirm-elisp-link-not-regexp ""
2144 "A regexp to skip confirmation for Elisp links."
2145 :group 'org-link-follow
2146 :version "24.1"
2147 :type 'regexp)
2149 (defconst org-file-apps-defaults-gnu
2150 '((remote . emacs)
2151 (system . mailcap)
2152 (t . mailcap))
2153 "Default file applications on a UNIX or GNU/Linux system.
2154 See `org-file-apps'.")
2156 (defconst org-file-apps-defaults-macosx
2157 '((remote . emacs)
2158 (t . "open %s")
2159 (system . "open %s")
2160 ("ps.gz" . "gv %s")
2161 ("eps.gz" . "gv %s")
2162 ("dvi" . "xdvi %s")
2163 ("fig" . "xfig %s"))
2164 "Default file applications on a MacOS X system.
2165 The system \"open\" is known as a default, but we use X11 applications
2166 for some files for which the OS does not have a good default.
2167 See `org-file-apps'.")
2169 (defconst org-file-apps-defaults-windowsnt
2170 (list
2171 '(remote . emacs)
2172 (cons t
2173 (list (if (featurep 'xemacs)
2174 'mswindows-shell-execute
2175 'w32-shell-execute)
2176 "open" 'file))
2177 (cons 'system
2178 (list (if (featurep 'xemacs)
2179 'mswindows-shell-execute
2180 'w32-shell-execute)
2181 "open" 'file)))
2182 "Default file applications on a Windows NT system.
2183 The system \"open\" is used for most files.
2184 See `org-file-apps'.")
2186 (defcustom org-file-apps
2187 '((auto-mode . emacs)
2188 ("\\.mm\\'" . default)
2189 ("\\.x?html?\\'" . default)
2190 ("\\.pdf\\'" . default))
2191 "External applications for opening `file:path' items in a document.
2192 Org-mode uses system defaults for different file types, but
2193 you can use this variable to set the application for a given file
2194 extension. The entries in this list are cons cells where the car identifies
2195 files and the cdr the corresponding command. Possible values for the
2196 file identifier are
2197 \"string\" A string as a file identifier can be interpreted in different
2198 ways, depending on its contents:
2200 - Alphanumeric characters only:
2201 Match links with this file extension.
2202 Example: (\"pdf\" . \"evince %s\")
2203 to open PDFs with evince.
2205 - Regular expression: Match links where the
2206 filename matches the regexp. If you want to
2207 use groups here, use shy groups.
2209 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2210 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2211 to open *.html and *.xhtml with firefox.
2213 - Regular expression which contains (non-shy) groups:
2214 Match links where the whole link, including \"::\", and
2215 anything after that, matches the regexp.
2216 In a custom command string, %1, %2, etc. are replaced with
2217 the parts of the link that were matched by the groups.
2218 For backwards compatibility, if a command string is given
2219 that does not use any of the group matches, this case is
2220 handled identically to the second one (i.e. match against
2221 file name only).
2222 In a custom lisp form, you can access the group matches with
2223 (match-string n link).
2225 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2226 to open [[file:document.pdf::5]] with evince at page 5.
2228 `directory' Matches a directory
2229 `remote' Matches a remote file, accessible through tramp or efs.
2230 Remote files most likely should be visited through Emacs
2231 because external applications cannot handle such paths.
2232 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2233 so all files Emacs knows how to handle. Using this with
2234 command `emacs' will open most files in Emacs. Beware that this
2235 will also open html files inside Emacs, unless you add
2236 (\"html\" . default) to the list as well.
2237 t Default for files not matched by any of the other options.
2238 `system' The system command to open files, like `open' on Windows
2239 and Mac OS X, and mailcap under GNU/Linux. This is the command
2240 that will be selected if you call `C-c C-o' with a double
2241 \\[universal-argument] \\[universal-argument] prefix.
2243 Possible values for the command are:
2244 `emacs' The file will be visited by the current Emacs process.
2245 `default' Use the default application for this file type, which is the
2246 association for t in the list, most likely in the system-specific
2247 part.
2248 This can be used to overrule an unwanted setting in the
2249 system-specific variable.
2250 `system' Use the system command for opening files, like \"open\".
2251 This command is specified by the entry whose car is `system'.
2252 Most likely, the system-specific version of this variable
2253 does define this command, but you can overrule/replace it
2254 here.
2255 string A command to be executed by a shell; %s will be replaced
2256 by the path to the file.
2257 sexp A Lisp form which will be evaluated. The file path will
2258 be available in the Lisp variable `file'.
2259 For more examples, see the system specific constants
2260 `org-file-apps-defaults-macosx'
2261 `org-file-apps-defaults-windowsnt'
2262 `org-file-apps-defaults-gnu'."
2263 :group 'org-link-follow
2264 :type '(repeat
2265 (cons (choice :value ""
2266 (string :tag "Extension")
2267 (const :tag "System command to open files" system)
2268 (const :tag "Default for unrecognized files" t)
2269 (const :tag "Remote file" remote)
2270 (const :tag "Links to a directory" directory)
2271 (const :tag "Any files that have Emacs modes"
2272 auto-mode))
2273 (choice :value ""
2274 (const :tag "Visit with Emacs" emacs)
2275 (const :tag "Use default" default)
2276 (const :tag "Use the system command" system)
2277 (string :tag "Command")
2278 (sexp :tag "Lisp form")))))
2280 (defcustom org-doi-server-url "http://dx.doi.org/"
2281 "The URL of the DOI server."
2282 :type 'string
2283 :version "24.3"
2284 :group 'org-link-follow)
2286 (defgroup org-refile nil
2287 "Options concerning refiling entries in Org-mode."
2288 :tag "Org Refile"
2289 :group 'org)
2291 (defcustom org-directory "~/org"
2292 "Directory with org files.
2293 This is just a default location to look for Org files. There is no need
2294 at all to put your files into this directory. It is only used in the
2295 following situations:
2297 1. When a capture template specifies a target file that is not an
2298 absolute path. The path will then be interpreted relative to
2299 `org-directory'
2300 2. When a capture note is filed away in an interactive way (when exiting the
2301 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2302 with `org-directory' as the default path."
2303 :group 'org-refile
2304 :group 'org-capture
2305 :type 'directory)
2307 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2308 "Default target for storing notes.
2309 Used as a fall back file for org-capture.el, for templates that
2310 do not specify a target file."
2311 :group 'org-refile
2312 :group 'org-capture
2313 :type 'file)
2315 (defcustom org-goto-interface 'outline
2316 "The default interface to be used for `org-goto'.
2317 Allowed values are:
2318 outline The interface shows an outline of the relevant file
2319 and the correct heading is found by moving through
2320 the outline or by searching with incremental search.
2321 outline-path-completion Headlines in the current buffer are offered via
2322 completion. This is the interface also used by
2323 the refile command."
2324 :group 'org-refile
2325 :type '(choice
2326 (const :tag "Outline" outline)
2327 (const :tag "Outline-path-completion" outline-path-completion)))
2329 (defcustom org-goto-max-level 5
2330 "Maximum target level when running `org-goto' with refile interface."
2331 :group 'org-refile
2332 :type 'integer)
2334 (defcustom org-reverse-note-order nil
2335 "Non-nil means store new notes at the beginning of a file or entry.
2336 When nil, new notes will be filed to the end of a file or entry.
2337 This can also be a list with cons cells of regular expressions that
2338 are matched against file names, and values."
2339 :group 'org-capture
2340 :group 'org-refile
2341 :type '(choice
2342 (const :tag "Reverse always" t)
2343 (const :tag "Reverse never" nil)
2344 (repeat :tag "By file name regexp"
2345 (cons regexp boolean))))
2347 (defcustom org-log-refile nil
2348 "Information to record when a task is refiled.
2350 Possible values are:
2352 nil Don't add anything
2353 time Add a time stamp to the task
2354 note Prompt for a note and add it with template `org-log-note-headings'
2356 This option can also be set with on a per-file-basis with
2358 #+STARTUP: nologrefile
2359 #+STARTUP: logrefile
2360 #+STARTUP: lognoterefile
2362 You can have local logging settings for a subtree by setting the LOGGING
2363 property to one or more of these keywords.
2365 When bulk-refiling from the agenda, the value `note' is forbidden and
2366 will temporarily be changed to `time'."
2367 :group 'org-refile
2368 :group 'org-progress
2369 :version "24.1"
2370 :type '(choice
2371 (const :tag "No logging" nil)
2372 (const :tag "Record timestamp" time)
2373 (const :tag "Record timestamp with note." note)))
2375 (defcustom org-refile-targets nil
2376 "Targets for refiling entries with \\[org-refile].
2377 This is a list of cons cells. Each cell contains:
2378 - a specification of the files to be considered, either a list of files,
2379 or a symbol whose function or variable value will be used to retrieve
2380 a file name or a list of file names. If you use `org-agenda-files' for
2381 that, all agenda files will be scanned for targets. Nil means consider
2382 headings in the current buffer.
2383 - A specification of how to find candidate refile targets. This may be
2384 any of:
2385 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2386 This tag has to be present in all target headlines, inheritance will
2387 not be considered.
2388 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2389 todo keyword.
2390 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2391 headlines that are refiling targets.
2392 - a cons cell (:level . N). Any headline of level N is considered a target.
2393 Note that, when `org-odd-levels-only' is set, level corresponds to
2394 order in hierarchy, not to the number of stars.
2395 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2396 Note that, when `org-odd-levels-only' is set, level corresponds to
2397 order in hierarchy, not to the number of stars.
2399 Each element of this list generates a set of possible targets.
2400 The union of these sets is presented (with completion) to
2401 the user by `org-refile'.
2403 You can set the variable `org-refile-target-verify-function' to a function
2404 to verify each headline found by the simple criteria above.
2406 When this variable is nil, all top-level headlines in the current buffer
2407 are used, equivalent to the value `((nil . (:level . 1))'."
2408 :group 'org-refile
2409 :type '(repeat
2410 (cons
2411 (choice :value org-agenda-files
2412 (const :tag "All agenda files" org-agenda-files)
2413 (const :tag "Current buffer" nil)
2414 (function) (variable) (file))
2415 (choice :tag "Identify target headline by"
2416 (cons :tag "Specific tag" (const :value :tag) (string))
2417 (cons :tag "TODO keyword" (const :value :todo) (string))
2418 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2419 (cons :tag "Level number" (const :value :level) (integer))
2420 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2422 (defcustom org-refile-target-verify-function nil
2423 "Function to verify if the headline at point should be a refile target.
2424 The function will be called without arguments, with point at the
2425 beginning of the headline. It should return t and leave point
2426 where it is if the headline is a valid target for refiling.
2428 If the target should not be selected, the function must return nil.
2429 In addition to this, it may move point to a place from where the search
2430 should be continued. For example, the function may decide that the entire
2431 subtree of the current entry should be excluded and move point to the end
2432 of the subtree."
2433 :group 'org-refile
2434 :type '(choice
2435 (const nil)
2436 (function)))
2438 (defcustom org-refile-use-cache nil
2439 "Non-nil means cache refile targets to speed up the process.
2440 The cache for a particular file will be updated automatically when
2441 the buffer has been killed, or when any of the marker used for flagging
2442 refile targets no longer points at a live buffer.
2443 If you have added new entries to a buffer that might themselves be targets,
2444 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2445 find that easier, `C-u C-u C-u C-c C-w'."
2446 :group 'org-refile
2447 :version "24.1"
2448 :type 'boolean)
2450 (defcustom org-refile-use-outline-path nil
2451 "Non-nil means provide refile targets as paths.
2452 So a level 3 headline will be available as level1/level2/level3.
2454 When the value is `file', also include the file name (without directory)
2455 into the path. In this case, you can also stop the completion after
2456 the file name, to get entries inserted as top level in the file.
2458 When `full-file-path', include the full file path."
2459 :group 'org-refile
2460 :type '(choice
2461 (const :tag "Not" nil)
2462 (const :tag "Yes" t)
2463 (const :tag "Start with file name" file)
2464 (const :tag "Start with full file path" full-file-path)))
2466 (defcustom org-outline-path-complete-in-steps t
2467 "Non-nil means complete the outline path in hierarchical steps.
2468 When Org-mode uses the refile interface to select an outline path
2469 \(see variable `org-refile-use-outline-path'), the completion of
2470 the path can be done in a single go, or it can be done in steps down
2471 the headline hierarchy. Going in steps is probably the best if you
2472 do not use a special completion package like `ido' or `icicles'.
2473 However, when using these packages, going in one step can be very
2474 fast, while still showing the whole path to the entry."
2475 :group 'org-refile
2476 :type 'boolean)
2478 (defcustom org-refile-allow-creating-parent-nodes nil
2479 "Non-nil means allow to create new nodes as refile targets.
2480 New nodes are then created by adding \"/new node name\" to the completion
2481 of an existing node. When the value of this variable is `confirm',
2482 new node creation must be confirmed by the user (recommended).
2483 When nil, the completion must match an existing entry.
2485 Note that, if the new heading is not seen by the criteria
2486 listed in `org-refile-targets', multiple instances of the same
2487 heading would be created by trying again to file under the new
2488 heading."
2489 :group 'org-refile
2490 :type '(choice
2491 (const :tag "Never" nil)
2492 (const :tag "Always" t)
2493 (const :tag "Prompt for confirmation" confirm)))
2495 (defcustom org-refile-active-region-within-subtree nil
2496 "Non-nil means also refile active region within a subtree.
2498 By default `org-refile' doesn't allow refiling regions if they
2499 don't contain a set of subtrees, but it might be convenient to
2500 do so sometimes: in that case, the first line of the region is
2501 converted to a headline before refiling."
2502 :group 'org-refile
2503 :version "24.1"
2504 :type 'boolean)
2506 (defgroup org-todo nil
2507 "Options concerning TODO items in Org-mode."
2508 :tag "Org TODO"
2509 :group 'org)
2511 (defgroup org-progress nil
2512 "Options concerning Progress logging in Org-mode."
2513 :tag "Org Progress"
2514 :group 'org-time)
2516 (defvar org-todo-interpretation-widgets
2517 '((:tag "Sequence (cycling hits every state)" sequence)
2518 (:tag "Type (cycling directly to DONE)" type))
2519 "The available interpretation symbols for customizing `org-todo-keywords'.
2520 Interested libraries should add to this list.")
2522 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2523 "List of TODO entry keyword sequences and their interpretation.
2524 \\<org-mode-map>This is a list of sequences.
2526 Each sequence starts with a symbol, either `sequence' or `type',
2527 indicating if the keywords should be interpreted as a sequence of
2528 action steps, or as different types of TODO items. The first
2529 keywords are states requiring action - these states will select a headline
2530 for inclusion into the global TODO list Org-mode produces. If one of
2531 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2532 signify that no further action is necessary. If \"|\" is not found,
2533 the last keyword is treated as the only DONE state of the sequence.
2535 The command \\[org-todo] cycles an entry through these states, and one
2536 additional state where no keyword is present. For details about this
2537 cycling, see the manual.
2539 TODO keywords and interpretation can also be set on a per-file basis with
2540 the special #+SEQ_TODO and #+TYP_TODO lines.
2542 Each keyword can optionally specify a character for fast state selection
2543 \(in combination with the variable `org-use-fast-todo-selection')
2544 and specifiers for state change logging, using the same syntax that
2545 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2546 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2547 indicates to record a time stamp each time this state is selected.
2549 Each keyword may also specify if a timestamp or a note should be
2550 recorded when entering or leaving the state, by adding additional
2551 characters in the parenthesis after the keyword. This looks like this:
2552 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2553 record only the time of the state change. With X and Y being either
2554 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2555 Y when leaving the state if and only if the *target* state does not
2556 define X. You may omit any of the fast-selection key or X or /Y,
2557 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2559 For backward compatibility, this variable may also be just a list
2560 of keywords. In this case the interpretation (sequence or type) will be
2561 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2562 :group 'org-todo
2563 :group 'org-keywords
2564 :type '(choice
2565 (repeat :tag "Old syntax, just keywords"
2566 (string :tag "Keyword"))
2567 (repeat :tag "New syntax"
2568 (cons
2569 (choice
2570 :tag "Interpretation"
2571 ;;Quick and dirty way to see
2572 ;;`org-todo-interpretations'. This takes the
2573 ;;place of item arguments
2574 :convert-widget
2575 (lambda (widget)
2576 (widget-put widget
2577 :args (mapcar
2578 (lambda (x)
2579 (widget-convert
2580 (cons 'const x)))
2581 org-todo-interpretation-widgets))
2582 widget))
2583 (repeat
2584 (string :tag "Keyword"))))))
2586 (defvar org-todo-keywords-1 nil
2587 "All TODO and DONE keywords active in a buffer.")
2588 (make-variable-buffer-local 'org-todo-keywords-1)
2589 (defvar org-todo-keywords-for-agenda nil)
2590 (defvar org-done-keywords-for-agenda nil)
2591 (defvar org-todo-keyword-alist-for-agenda nil)
2592 (defvar org-tag-alist-for-agenda nil
2593 "Alist of all tags from all agenda files.")
2594 (defvar org-tag-groups-alist-for-agenda nil
2595 "Alist of all groups tags from all current agenda files.")
2596 (defvar org-tag-groups-alist nil)
2597 (make-variable-buffer-local 'org-tag-groups-alist)
2598 (defvar org-agenda-contributing-files nil)
2599 (defvar org-not-done-keywords nil)
2600 (make-variable-buffer-local 'org-not-done-keywords)
2601 (defvar org-done-keywords nil)
2602 (make-variable-buffer-local 'org-done-keywords)
2603 (defvar org-todo-heads nil)
2604 (make-variable-buffer-local 'org-todo-heads)
2605 (defvar org-todo-sets nil)
2606 (make-variable-buffer-local 'org-todo-sets)
2607 (defvar org-todo-log-states nil)
2608 (make-variable-buffer-local 'org-todo-log-states)
2609 (defvar org-todo-kwd-alist nil)
2610 (make-variable-buffer-local 'org-todo-kwd-alist)
2611 (defvar org-todo-key-alist nil)
2612 (make-variable-buffer-local 'org-todo-key-alist)
2613 (defvar org-todo-key-trigger nil)
2614 (make-variable-buffer-local 'org-todo-key-trigger)
2616 (defcustom org-todo-interpretation 'sequence
2617 "Controls how TODO keywords are interpreted.
2618 This variable is in principle obsolete and is only used for
2619 backward compatibility, if the interpretation of todo keywords is
2620 not given already in `org-todo-keywords'. See that variable for
2621 more information."
2622 :group 'org-todo
2623 :group 'org-keywords
2624 :type '(choice (const sequence)
2625 (const type)))
2627 (defcustom org-use-fast-todo-selection t
2628 "Non-nil means use the fast todo selection scheme with C-c C-t.
2629 This variable describes if and under what circumstances the cycling
2630 mechanism for TODO keywords will be replaced by a single-key, direct
2631 selection scheme.
2633 When nil, fast selection is never used.
2635 When the symbol `prefix', it will be used when `org-todo' is called
2636 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2637 `C-u t' in an agenda buffer.
2639 When t, fast selection is used by default. In this case, the prefix
2640 argument forces cycling instead.
2642 In all cases, the special interface is only used if access keys have
2643 actually been assigned by the user, i.e. if keywords in the configuration
2644 are followed by a letter in parenthesis, like TODO(t)."
2645 :group 'org-todo
2646 :type '(choice
2647 (const :tag "Never" nil)
2648 (const :tag "By default" t)
2649 (const :tag "Only with C-u C-c C-t" prefix)))
2651 (defcustom org-provide-todo-statistics t
2652 "Non-nil means update todo statistics after insert and toggle.
2653 ALL-HEADLINES means update todo statistics by including headlines
2654 with no TODO keyword as well, counting them as not done.
2655 A list of TODO keywords means the same, but skip keywords that are
2656 not in this list.
2657 When set to a list of two lists, the first list contains keywords
2658 to consider as TODO keywords, the second list contains keywords
2659 to consider as DONE keywords.
2661 When this is set, todo statistics is updated in the parent of the
2662 current entry each time a todo state is changed."
2663 :group 'org-todo
2664 :type '(choice
2665 (const :tag "Yes, only for TODO entries" t)
2666 (const :tag "Yes, including all entries" all-headlines)
2667 (repeat :tag "Yes, for TODOs in this list"
2668 (string :tag "TODO keyword"))
2669 (list :tag "Yes, for TODOs and DONEs in these lists"
2670 (repeat (string :tag "TODO keyword"))
2671 (repeat (string :tag "DONE keyword")))
2672 (other :tag "No TODO statistics" nil)))
2674 (defcustom org-hierarchical-todo-statistics t
2675 "Non-nil means TODO statistics covers just direct children.
2676 When nil, all entries in the subtree are considered.
2677 This has only an effect if `org-provide-todo-statistics' is set.
2678 To set this to nil for only a single subtree, use a COOKIE_DATA
2679 property and include the word \"recursive\" into the value."
2680 :group 'org-todo
2681 :type 'boolean)
2683 (defcustom org-after-todo-state-change-hook nil
2684 "Hook which is run after the state of a TODO item was changed.
2685 The new state (a string with a TODO keyword, or nil) is available in the
2686 Lisp variable `org-state'."
2687 :group 'org-todo
2688 :type 'hook)
2690 (defvar org-blocker-hook nil
2691 "Hook for functions that are allowed to block a state change.
2693 Functions in this hook should not modify the buffer.
2694 Each function gets as its single argument a property list,
2695 see `org-trigger-hook' for more information about this list.
2697 If any of the functions in this hook returns nil, the state change
2698 is blocked.")
2700 (defvar org-trigger-hook nil
2701 "Hook for functions that are triggered by a state change.
2703 Each function gets as its single argument a property list with at
2704 least the following elements:
2706 (:type type-of-change :position pos-at-entry-start
2707 :from old-state :to new-state)
2709 Depending on the type, more properties may be present.
2711 This mechanism is currently implemented for:
2713 TODO state changes
2714 ------------------
2715 :type todo-state-change
2716 :from previous state (keyword as a string), or nil, or a symbol
2717 'todo' or 'done', to indicate the general type of state.
2718 :to new state, like in :from")
2720 (defcustom org-enforce-todo-dependencies nil
2721 "Non-nil means undone TODO entries will block switching the parent to DONE.
2722 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2723 be blocked if any prior sibling is not yet done.
2724 Finally, if the parent is blocked because of ordered siblings of its own,
2725 the child will also be blocked."
2726 :set (lambda (var val)
2727 (set var val)
2728 (if val
2729 (add-hook 'org-blocker-hook
2730 'org-block-todo-from-children-or-siblings-or-parent)
2731 (remove-hook 'org-blocker-hook
2732 'org-block-todo-from-children-or-siblings-or-parent)))
2733 :group 'org-todo
2734 :type 'boolean)
2736 (defcustom org-enforce-todo-checkbox-dependencies nil
2737 "Non-nil means unchecked boxes will block switching the parent to DONE.
2738 When this is nil, checkboxes have no influence on switching TODO states.
2739 When non-nil, you first need to check off all check boxes before the TODO
2740 entry can be switched to DONE.
2741 This variable needs to be set before org.el is loaded, and you need to
2742 restart Emacs after a change to make the change effective. The only way
2743 to change is while Emacs is running is through the customize interface."
2744 :set (lambda (var val)
2745 (set var val)
2746 (if val
2747 (add-hook 'org-blocker-hook
2748 'org-block-todo-from-checkboxes)
2749 (remove-hook 'org-blocker-hook
2750 'org-block-todo-from-checkboxes)))
2751 :group 'org-todo
2752 :type 'boolean)
2754 (defcustom org-treat-insert-todo-heading-as-state-change nil
2755 "Non-nil means inserting a TODO heading is treated as state change.
2756 So when the command \\[org-insert-todo-heading] is used, state change
2757 logging will apply if appropriate. When nil, the new TODO item will
2758 be inserted directly, and no logging will take place."
2759 :group 'org-todo
2760 :type 'boolean)
2762 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2763 "Non-nil means switching TODO states with S-cursor counts as state change.
2764 This is the default behavior. However, setting this to nil allows a
2765 convenient way to select a TODO state and bypass any logging associated
2766 with that."
2767 :group 'org-todo
2768 :type 'boolean)
2770 (defcustom org-todo-state-tags-triggers nil
2771 "Tag changes that should be triggered by TODO state changes.
2772 This is a list. Each entry is
2774 (state-change (tag . flag) .......)
2776 State-change can be a string with a state, and empty string to indicate the
2777 state that has no TODO keyword, or it can be one of the symbols `todo'
2778 or `done', meaning any not-done or done state, respectively."
2779 :group 'org-todo
2780 :group 'org-tags
2781 :type '(repeat
2782 (cons (choice :tag "When changing to"
2783 (const :tag "Not-done state" todo)
2784 (const :tag "Done state" done)
2785 (string :tag "State"))
2786 (repeat
2787 (cons :tag "Tag action"
2788 (string :tag "Tag")
2789 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2791 (defcustom org-log-done nil
2792 "Information to record when a task moves to the DONE state.
2794 Possible values are:
2796 nil Don't add anything, just change the keyword
2797 time Add a time stamp to the task
2798 note Prompt for a note and add it with template `org-log-note-headings'
2800 This option can also be set with on a per-file-basis with
2802 #+STARTUP: nologdone
2803 #+STARTUP: logdone
2804 #+STARTUP: lognotedone
2806 You can have local logging settings for a subtree by setting the LOGGING
2807 property to one or more of these keywords."
2808 :group 'org-todo
2809 :group 'org-progress
2810 :type '(choice
2811 (const :tag "No logging" nil)
2812 (const :tag "Record CLOSED timestamp" time)
2813 (const :tag "Record CLOSED timestamp with note." note)))
2815 ;; Normalize old uses of org-log-done.
2816 (cond
2817 ((eq org-log-done t) (setq org-log-done 'time))
2818 ((and (listp org-log-done) (memq 'done org-log-done))
2819 (setq org-log-done 'note)))
2821 (defcustom org-log-reschedule nil
2822 "Information to record when the scheduling date of a tasks is modified.
2824 Possible values are:
2826 nil Don't add anything, just change the date
2827 time Add a time stamp to the task
2828 note Prompt for a note and add it with template `org-log-note-headings'
2830 This option can also be set with on a per-file-basis with
2832 #+STARTUP: nologreschedule
2833 #+STARTUP: logreschedule
2834 #+STARTUP: lognotereschedule"
2835 :group 'org-todo
2836 :group 'org-progress
2837 :type '(choice
2838 (const :tag "No logging" nil)
2839 (const :tag "Record timestamp" time)
2840 (const :tag "Record timestamp with note." note)))
2842 (defcustom org-log-redeadline nil
2843 "Information to record when the deadline date of a tasks is modified.
2845 Possible values are:
2847 nil Don't add anything, just change the date
2848 time Add a time stamp to the task
2849 note Prompt for a note and add it with template `org-log-note-headings'
2851 This option can also be set with on a per-file-basis with
2853 #+STARTUP: nologredeadline
2854 #+STARTUP: logredeadline
2855 #+STARTUP: lognoteredeadline
2857 You can have local logging settings for a subtree by setting the LOGGING
2858 property to one or more of these keywords."
2859 :group 'org-todo
2860 :group 'org-progress
2861 :type '(choice
2862 (const :tag "No logging" nil)
2863 (const :tag "Record timestamp" time)
2864 (const :tag "Record timestamp with note." note)))
2866 (defcustom org-log-note-clock-out nil
2867 "Non-nil means record a note when clocking out of an item.
2868 This can also be configured on a per-file basis by adding one of
2869 the following lines anywhere in the buffer:
2871 #+STARTUP: lognoteclock-out
2872 #+STARTUP: nolognoteclock-out"
2873 :group 'org-todo
2874 :group 'org-progress
2875 :type 'boolean)
2877 (defcustom org-log-done-with-time t
2878 "Non-nil means the CLOSED time stamp will contain date and time.
2879 When nil, only the date will be recorded."
2880 :group 'org-progress
2881 :type 'boolean)
2883 (defcustom org-log-note-headings
2884 '((done . "CLOSING NOTE %t")
2885 (state . "State %-12s from %-12S %t")
2886 (note . "Note taken on %t")
2887 (reschedule . "Rescheduled from %S on %t")
2888 (delschedule . "Not scheduled, was %S on %t")
2889 (redeadline . "New deadline from %S on %t")
2890 (deldeadline . "Removed deadline, was %S on %t")
2891 (refile . "Refiled on %t")
2892 (clock-out . ""))
2893 "Headings for notes added to entries.
2895 The value is an alist, with the car being a symbol indicating the
2896 note context, and the cdr is the heading to be used. The heading
2897 may also be the empty string. The following placeholders can be
2898 used:
2900 %t a time stamp.
2901 %T an active time stamp instead the default inactive one
2902 %d a short-format time stamp.
2903 %D an active short-format time stamp.
2904 %s the new TODO state or time stamp (inactive), in double quotes.
2905 %S the old TODO state or time stamp (inactive), in double quotes.
2906 %u the user name.
2907 %U full user name.
2909 In fact, it is not a good idea to change the `state' entry,
2910 because Agenda Log mode depends on the format of these entries."
2911 :group 'org-todo
2912 :group 'org-progress
2913 :type '(list :greedy t
2914 (cons (const :tag "Heading when closing an item" done) string)
2915 (cons (const :tag
2916 "Heading when changing todo state (todo sequence only)"
2917 state) string)
2918 (cons (const :tag "Heading when just taking a note" note) string)
2919 (cons (const :tag "Heading when rescheduling" reschedule) string)
2920 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2921 (cons (const :tag "Heading when changing deadline" redeadline) string)
2922 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2923 (cons (const :tag "Heading when refiling" refile) string)
2924 (cons (const :tag "Heading when clocking out" clock-out) string)))
2926 (unless (assq 'note org-log-note-headings)
2927 (push '(note . "%t") org-log-note-headings))
2929 (defcustom org-log-into-drawer nil
2930 "Non-nil means insert state change notes and time stamps into a drawer.
2931 When nil, state changes notes will be inserted after the headline and
2932 any scheduling and clock lines, but not inside a drawer.
2934 The value of this variable should be the name of the drawer to use.
2935 LOGBOOK is proposed as the default drawer for this purpose, you can
2936 also set this to a string to define the drawer of your choice.
2938 A value of t is also allowed, representing \"LOGBOOK\".
2940 A value of t or nil can also be set with on a per-file-basis with
2942 #+STARTUP: logdrawer
2943 #+STARTUP: nologdrawer
2945 If this variable is set, `org-log-state-notes-insert-after-drawers'
2946 will be ignored.
2948 You can set the property LOG_INTO_DRAWER to overrule this setting for
2949 a subtree.
2951 Do not check directly this variable in a Lisp program. Call
2952 function `org-log-into-drawer' instead."
2953 :group 'org-todo
2954 :group 'org-progress
2955 :type '(choice
2956 (const :tag "Not into a drawer" nil)
2957 (const :tag "LOGBOOK" t)
2958 (string :tag "Other")))
2960 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2962 (defun org-log-into-drawer ()
2963 "Name of the log drawer, as a string, or nil.
2964 This is the value of `org-log-into-drawer'. However, if the
2965 current entry has or inherits a LOG_INTO_DRAWER property, it will
2966 be used instead of the default value."
2967 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2968 (cond ((equal p "nil") nil)
2969 ((equal p "t") "LOGBOOK")
2970 ((stringp p) p)
2971 (p "LOGBOOK")
2972 ((stringp org-log-into-drawer) org-log-into-drawer)
2973 (org-log-into-drawer "LOGBOOK"))))
2975 (defcustom org-log-state-notes-insert-after-drawers nil
2976 "Non-nil means insert state change notes after any drawers in entry.
2977 Only the drawers that *immediately* follow the headline and the
2978 deadline/scheduled line are skipped.
2979 When nil, insert notes right after the heading and perhaps the line
2980 with deadline/scheduling if present.
2982 This variable will have no effect if `org-log-into-drawer' is
2983 set."
2984 :group 'org-todo
2985 :group 'org-progress
2986 :type 'boolean)
2988 (defcustom org-log-states-order-reversed t
2989 "Non-nil means the latest state note will be directly after heading.
2990 When nil, the state change notes will be ordered according to time.
2992 This option can also be set with on a per-file-basis with
2994 #+STARTUP: logstatesreversed
2995 #+STARTUP: nologstatesreversed"
2996 :group 'org-todo
2997 :group 'org-progress
2998 :type 'boolean)
3000 (defcustom org-todo-repeat-to-state nil
3001 "The TODO state to which a repeater should return the repeating task.
3002 By default this is the first task in a TODO sequence, or the previous state
3003 in a TODO_TYP set. But you can specify another task here.
3004 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3005 :group 'org-todo
3006 :version "24.1"
3007 :type '(choice (const :tag "Head of sequence" nil)
3008 (string :tag "Specific state")))
3010 (defcustom org-log-repeat 'time
3011 "Non-nil means record moving through the DONE state when triggering repeat.
3012 An auto-repeating task is immediately switched back to TODO when
3013 marked DONE. If you are not logging state changes (by adding \"@\"
3014 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3015 record a closing note, there will be no record of the task moving
3016 through DONE. This variable forces taking a note anyway.
3018 nil Don't force a record
3019 time Record a time stamp
3020 note Prompt for a note and add it with template `org-log-note-headings'
3022 This option can also be set with on a per-file-basis with
3024 #+STARTUP: nologrepeat
3025 #+STARTUP: logrepeat
3026 #+STARTUP: lognoterepeat
3028 You can have local logging settings for a subtree by setting the LOGGING
3029 property to one or more of these keywords."
3030 :group 'org-todo
3031 :group 'org-progress
3032 :type '(choice
3033 (const :tag "Don't force a record" nil)
3034 (const :tag "Force recording the DONE state" time)
3035 (const :tag "Force recording a note with the DONE state" note)))
3038 (defgroup org-priorities nil
3039 "Priorities in Org-mode."
3040 :tag "Org Priorities"
3041 :group 'org-todo)
3043 (defcustom org-enable-priority-commands t
3044 "Non-nil means priority commands are active.
3045 When nil, these commands will be disabled, so that you never accidentally
3046 set a priority."
3047 :group 'org-priorities
3048 :type 'boolean)
3050 (defcustom org-highest-priority ?A
3051 "The highest priority of TODO items. A character like ?A, ?B etc.
3052 Must have a smaller ASCII number than `org-lowest-priority'."
3053 :group 'org-priorities
3054 :type 'character)
3056 (defcustom org-lowest-priority ?C
3057 "The lowest priority of TODO items. A character like ?A, ?B etc.
3058 Must have a larger ASCII number than `org-highest-priority'."
3059 :group 'org-priorities
3060 :type 'character)
3062 (defcustom org-default-priority ?B
3063 "The default priority of TODO items.
3064 This is the priority an item gets if no explicit priority is given.
3065 When starting to cycle on an empty priority the first step in the cycle
3066 depends on `org-priority-start-cycle-with-default'. The resulting first
3067 step priority must not exceed the range from `org-highest-priority' to
3068 `org-lowest-priority' which means that `org-default-priority' has to be
3069 in this range exclusive or inclusive the range boundaries. Else the
3070 first step refuses to set the default and the second will fall back
3071 to (depending on the command used) the highest or lowest priority."
3072 :group 'org-priorities
3073 :type 'character)
3075 (defcustom org-priority-start-cycle-with-default t
3076 "Non-nil means start with default priority when starting to cycle.
3077 When this is nil, the first step in the cycle will be (depending on the
3078 command used) one higher or lower than the default priority.
3079 See also `org-default-priority'."
3080 :group 'org-priorities
3081 :type 'boolean)
3083 (defcustom org-get-priority-function nil
3084 "Function to extract the priority from a string.
3085 The string is normally the headline. If this is nil Org computes the
3086 priority from the priority cookie like [#A] in the headline. It returns
3087 an integer, increasing by 1000 for each priority level.
3088 The user can set a different function here, which should take a string
3089 as an argument and return the numeric priority."
3090 :group 'org-priorities
3091 :version "24.1"
3092 :type '(choice
3093 (const nil)
3094 (function)))
3096 (defgroup org-time nil
3097 "Options concerning time stamps and deadlines in Org-mode."
3098 :tag "Org Time"
3099 :group 'org)
3101 (defcustom org-time-stamp-rounding-minutes '(0 5)
3102 "Number of minutes to round time stamps to.
3103 These are two values, the first applies when first creating a time stamp.
3104 The second applies when changing it with the commands `S-up' and `S-down'.
3105 When changing the time stamp, this means that it will change in steps
3106 of N minutes, as given by the second value.
3108 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3109 numbers should be factors of 60, so for example 5, 10, 15.
3111 When this is larger than 1, you can still force an exact time stamp by using
3112 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3113 and by using a prefix arg to `S-up/down' to specify the exact number
3114 of minutes to shift."
3115 :group 'org-time
3116 :get (lambda (var) ; Make sure both elements are there
3117 (if (integerp (default-value var))
3118 (list (default-value var) 5)
3119 (default-value var)))
3120 :type '(list
3121 (integer :tag "when inserting times")
3122 (integer :tag "when modifying times")))
3124 ;; Normalize old customizations of this variable.
3125 (when (integerp org-time-stamp-rounding-minutes)
3126 (setq org-time-stamp-rounding-minutes
3127 (list org-time-stamp-rounding-minutes
3128 org-time-stamp-rounding-minutes)))
3130 (defcustom org-display-custom-times nil
3131 "Non-nil means overlay custom formats over all time stamps.
3132 The formats are defined through the variable `org-time-stamp-custom-formats'.
3133 To turn this on on a per-file basis, insert anywhere in the file:
3134 #+STARTUP: customtime"
3135 :group 'org-time
3136 :set 'set-default
3137 :type 'sexp)
3138 (make-variable-buffer-local 'org-display-custom-times)
3140 (defcustom org-time-stamp-custom-formats
3141 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3142 "Custom formats for time stamps. See `format-time-string' for the syntax.
3143 These are overlaid over the default ISO format if the variable
3144 `org-display-custom-times' is set. Time like %H:%M should be at the
3145 end of the second format. The custom formats are also honored by export
3146 commands, if custom time display is turned on at the time of export."
3147 :group 'org-time
3148 :type 'sexp)
3150 (defun org-time-stamp-format (&optional long inactive)
3151 "Get the right format for a time string."
3152 (let ((f (if long (cdr org-time-stamp-formats)
3153 (car org-time-stamp-formats))))
3154 (if inactive
3155 (concat "[" (substring f 1 -1) "]")
3156 f)))
3158 (defcustom org-time-clocksum-format
3159 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3160 "The format string used when creating CLOCKSUM lines.
3161 This is also used when Org mode generates a time duration.
3163 The value can be a single format string containing two
3164 %-sequences, which will be filled with the number of hours and
3165 minutes in that order.
3167 Alternatively, the value can be a plist associating any of the
3168 keys :years, :months, :weeks, :days, :hours or :minutes with
3169 format strings. The time duration is formatted using only the
3170 time components that are needed and concatenating the results.
3171 If a time unit in absent, it falls back to the next smallest
3172 unit.
3174 The keys :require-years, :require-months, :require-days,
3175 :require-weeks, :require-hours, :require-minutes are also
3176 meaningful. A non-nil value for these keys indicates that the
3177 corresponding time component should always be included, even if
3178 its value is 0.
3181 For example,
3183 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3184 :require-minutes t)
3186 means durations longer than a day will be expressed in days,
3187 hours and minutes, and durations less than a day will always be
3188 expressed in hours and minutes (even for durations less than an
3189 hour).
3191 The value
3193 \(:days \"%dd\" :minutes \"%dm\")
3195 means durations longer than a day will be expressed in days and
3196 minutes, and durations less than a day will be expressed entirely
3197 in minutes (even for durations longer than an hour)."
3198 :group 'org-time
3199 :group 'org-clock
3200 :version "24.4"
3201 :package-version '(Org . "8.0")
3202 :type '(choice (string :tag "Format string")
3203 (set :tag "Plist"
3204 (group :inline t (const :tag "Years" :years)
3205 (string :tag "Format string"))
3206 (group :inline t
3207 (const :tag "Always show years" :require-years)
3208 (const t))
3209 (group :inline t (const :tag "Months" :months)
3210 (string :tag "Format string"))
3211 (group :inline t
3212 (const :tag "Always show months" :require-months)
3213 (const t))
3214 (group :inline t (const :tag "Weeks" :weeks)
3215 (string :tag "Format string"))
3216 (group :inline t
3217 (const :tag "Always show weeks" :require-weeks)
3218 (const t))
3219 (group :inline t (const :tag "Days" :days)
3220 (string :tag "Format string"))
3221 (group :inline t
3222 (const :tag "Always show days" :require-days)
3223 (const t))
3224 (group :inline t (const :tag "Hours" :hours)
3225 (string :tag "Format string"))
3226 (group :inline t
3227 (const :tag "Always show hours" :require-hours)
3228 (const t))
3229 (group :inline t (const :tag "Minutes" :minutes)
3230 (string :tag "Format string"))
3231 (group :inline t
3232 (const :tag "Always show minutes" :require-minutes)
3233 (const t)))))
3235 (defcustom org-time-clocksum-use-fractional nil
3236 "When non-nil, \\[org-clock-display] uses fractional times.
3237 See `org-time-clocksum-format' for more on time clock formats."
3238 :group 'org-time
3239 :group 'org-clock
3240 :version "24.3"
3241 :type 'boolean)
3243 (defcustom org-time-clocksum-use-effort-durations nil
3244 "When non-nil, \\[org-clock-display] uses effort durations.
3245 E.g. by default, one day is considered to be a 8 hours effort,
3246 so a task that has been clocked for 16 hours will be displayed
3247 as during 2 days in the clock display or in the clocktable.
3249 See `org-effort-durations' on how to set effort durations
3250 and `org-time-clocksum-format' for more on time clock formats."
3251 :group 'org-time
3252 :group 'org-clock
3253 :version "24.4"
3254 :package-version '(Org . "8.0")
3255 :type 'boolean)
3257 (defcustom org-time-clocksum-fractional-format "%.2f"
3258 "The format string used when creating CLOCKSUM lines,
3259 or when Org mode generates a time duration, if
3260 `org-time-clocksum-use-fractional' is enabled.
3262 The value can be a single format string containing one
3263 %-sequence, which will be filled with the number of hours as
3264 a float.
3266 Alternatively, the value can be a plist associating any of the
3267 keys :years, :months, :weeks, :days, :hours or :minutes with
3268 a format string. The time duration is formatted using the
3269 largest time unit which gives a non-zero integer part. If all
3270 specified formats have zero integer part, the smallest time unit
3271 is used."
3272 :group 'org-time
3273 :type '(choice (string :tag "Format string")
3274 (set (group :inline t (const :tag "Years" :years)
3275 (string :tag "Format string"))
3276 (group :inline t (const :tag "Months" :months)
3277 (string :tag "Format string"))
3278 (group :inline t (const :tag "Weeks" :weeks)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Days" :days)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Hours" :hours)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Minutes" :minutes)
3285 (string :tag "Format string")))))
3287 (defcustom org-deadline-warning-days 14
3288 "Number of days before expiration during which a deadline becomes active.
3289 This variable governs the display in sparse trees and in the agenda.
3290 When 0 or negative, it means use this number (the absolute value of it)
3291 even if a deadline has a different individual lead time specified.
3293 Custom commands can set this variable in the options section."
3294 :group 'org-time
3295 :group 'org-agenda-daily/weekly
3296 :type 'integer)
3298 (defcustom org-scheduled-delay-days 0
3299 "Number of days before a scheduled item becomes active.
3300 This variable governs the display in sparse trees and in the agenda.
3301 The default value (i.e. 0) means: don't delay scheduled item.
3302 When negative, it means use this number (the absolute value of it)
3303 even if a scheduled item has a different individual delay time
3304 specified.
3306 Custom commands can set this variable in the options section."
3307 :group 'org-time
3308 :group 'org-agenda-daily/weekly
3309 :version "24.4"
3310 :package-version '(Org . "8.0")
3311 :type 'integer)
3313 (defcustom org-read-date-prefer-future t
3314 "Non-nil means assume future for incomplete date input from user.
3315 This affects the following situations:
3316 1. The user gives a month but not a year.
3317 For example, if it is April and you enter \"feb 2\", this will be read
3318 as Feb 2, *next* year. \"May 5\", however, will be this year.
3319 2. The user gives a day, but no month.
3320 For example, if today is the 15th, and you enter \"3\", Org-mode will
3321 read this as the third of *next* month. However, if you enter \"17\",
3322 it will be considered as *this* month.
3324 If you set this variable to the symbol `time', then also the following
3325 will work:
3327 3. If the user gives a time.
3328 If the time is before now, it will be interpreted as tomorrow.
3330 Currently none of this works for ISO week specifications.
3332 When this option is nil, the current day, month and year will always be
3333 used as defaults.
3335 See also `org-agenda-jump-prefer-future'."
3336 :group 'org-time
3337 :type '(choice
3338 (const :tag "Never" nil)
3339 (const :tag "Check month and day" t)
3340 (const :tag "Check month, day, and time" time)))
3342 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3343 "Should the agenda jump command prefer the future for incomplete dates?
3344 The default is to do the same as configured in `org-read-date-prefer-future'.
3345 But you can also set a deviating value here.
3346 This may t or nil, or the symbol `org-read-date-prefer-future'."
3347 :group 'org-agenda
3348 :group 'org-time
3349 :version "24.1"
3350 :type '(choice
3351 (const :tag "Use org-read-date-prefer-future"
3352 org-read-date-prefer-future)
3353 (const :tag "Never" nil)
3354 (const :tag "Always" t)))
3356 (defcustom org-read-date-force-compatible-dates t
3357 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3359 Depending on the system Emacs is running on, certain dates cannot
3360 be represented with the type used internally to represent time.
3361 Dates between 1970-1-1 and 2038-1-1 can always be represented
3362 correctly. Some systems allow for earlier dates, some for later,
3363 some for both. One way to find out it to insert any date into an
3364 Org buffer, putting the cursor on the year and hitting S-up and
3365 S-down to test the range.
3367 When this variable is set to t, the date/time prompt will not let
3368 you specify dates outside the 1970-2037 range, so it is certain that
3369 these dates will work in whatever version of Emacs you are
3370 running, and also that you can move a file from one Emacs implementation
3371 to another. WHenever Org is forcing the year for you, it will display
3372 a message and beep.
3374 When this variable is nil, Org will check if the date is
3375 representable in the specific Emacs implementation you are using.
3376 If not, it will force a year, usually the current year, and beep
3377 to remind you. Currently this setting is not recommended because
3378 the likelihood that you will open your Org files in an Emacs that
3379 has limited date range is not negligible.
3381 A workaround for this problem is to use diary sexp dates for time
3382 stamps outside of this range."
3383 :group 'org-time
3384 :version "24.1"
3385 :type 'boolean)
3387 (defcustom org-read-date-display-live t
3388 "Non-nil means display current interpretation of date prompt live.
3389 This display will be in an overlay, in the minibuffer."
3390 :group 'org-time
3391 :type 'boolean)
3393 (defcustom org-read-date-popup-calendar t
3394 "Non-nil means pop up a calendar when prompting for a date.
3395 In the calendar, the date can be selected with mouse-1. However, the
3396 minibuffer will also be active, and you can simply enter the date as well.
3397 When nil, only the minibuffer will be available."
3398 :group 'org-time
3399 :type 'boolean)
3400 (org-defvaralias 'org-popup-calendar-for-date-prompt
3401 'org-read-date-popup-calendar)
3403 (make-obsolete-variable
3404 'org-read-date-minibuffer-setup-hook
3405 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3406 (defcustom org-read-date-minibuffer-setup-hook nil
3407 "Hook to be used to set up keys for the date/time interface.
3408 Add key definitions to `minibuffer-local-map', which will be a
3409 temporary copy.
3411 WARNING: This option is obsolete, you should use
3412 `org-read-date-minibuffer-local-map' to set up keys."
3413 :group 'org-time
3414 :type 'hook)
3416 (defcustom org-extend-today-until 0
3417 "The hour when your day really ends. Must be an integer.
3418 This has influence for the following applications:
3419 - When switching the agenda to \"today\". It it is still earlier than
3420 the time given here, the day recognized as TODAY is actually yesterday.
3421 - When a date is read from the user and it is still before the time given
3422 here, the current date and time will be assumed to be yesterday, 23:59.
3423 Also, timestamps inserted in capture templates follow this rule.
3425 IMPORTANT: This is a feature whose implementation is and likely will
3426 remain incomplete. Really, it is only here because past midnight seems to
3427 be the favorite working time of John Wiegley :-)"
3428 :group 'org-time
3429 :type 'integer)
3431 (defcustom org-use-effective-time nil
3432 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3433 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3434 \"effective time\" of any timestamps between midnight and 8am will be
3435 23:59 of the previous day."
3436 :group 'org-time
3437 :version "24.1"
3438 :type 'boolean)
3440 (defcustom org-use-last-clock-out-time-as-effective-time nil
3441 "When non-nil, use the last clock out time for `org-todo'.
3442 Note that this option has precedence over the combined use of
3443 `org-use-effective-time' and `org-extend-today-until'."
3444 :group 'org-time
3445 :version "24.4"
3446 :package-version '(Org . "8.0")
3447 :type 'boolean)
3449 (defcustom org-edit-timestamp-down-means-later nil
3450 "Non-nil means S-down will increase the time in a time stamp.
3451 When nil, S-up will increase."
3452 :group 'org-time
3453 :type 'boolean)
3455 (defcustom org-calendar-follow-timestamp-change t
3456 "Non-nil means make the calendar window follow timestamp changes.
3457 When a timestamp is modified and the calendar window is visible, it will be
3458 moved to the new date."
3459 :group 'org-time
3460 :type 'boolean)
3462 (defgroup org-tags nil
3463 "Options concerning tags in Org-mode."
3464 :tag "Org Tags"
3465 :group 'org)
3467 (defcustom org-tag-alist nil
3468 "List of tags allowed in Org-mode files.
3469 When this list is nil, Org-mode will base TAG input on what is already in the
3470 buffer.
3471 The value of this variable is an alist, the car of each entry must be a
3472 keyword as a string, the cdr may be a character that is used to select
3473 that tag through the fast-tag-selection interface.
3474 See the manual for details."
3475 :group 'org-tags
3476 :type '(repeat
3477 (choice
3478 (cons (string :tag "Tag name")
3479 (character :tag "Access char"))
3480 (list :tag "Start radio group"
3481 (const :startgroup)
3482 (option (string :tag "Group description")))
3483 (list :tag "Start tag group, non distinct"
3484 (const :startgrouptag)
3485 (option (string :tag "Group description")))
3486 (list :tag "Group tags delimiter"
3487 (const :grouptags))
3488 (list :tag "End radio group"
3489 (const :endgroup)
3490 (option (string :tag "Group description")))
3491 (list :tag "End tag group, non distinct"
3492 (const :endgrouptag)
3493 (option (string :tag "Group description")))
3494 (const :tag "New line" (:newline)))))
3496 (defcustom org-tag-persistent-alist nil
3497 "List of tags that will always appear in all Org-mode files.
3498 This is in addition to any in buffer settings or customizations
3499 of `org-tag-alist'.
3500 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3501 The value of this variable is an alist, the car of each entry must be a
3502 keyword as a string, the cdr may be a character that is used to select
3503 that tag through the fast-tag-selection interface.
3504 See the manual for details.
3505 To disable these tags on a per-file basis, insert anywhere in the file:
3506 #+STARTUP: noptag"
3507 :group 'org-tags
3508 :type '(repeat
3509 (choice
3510 (cons (string :tag "Tag name")
3511 (character :tag "Access char"))
3512 (const :tag "Start radio group" (:startgroup))
3513 (const :tag "Group tags delimiter" (:grouptags))
3514 (const :tag "End radio group" (:endgroup))
3515 (const :tag "New line" (:newline)))))
3517 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3518 "If non-nil, always offer completion for all tags of all agenda files.
3519 Instead of customizing this variable directly, you might want to
3520 set it locally for capture buffers, because there no list of
3521 tags in that file can be created dynamically (there are none).
3523 (add-hook 'org-capture-mode-hook
3524 (lambda ()
3525 (set (make-local-variable
3526 'org-complete-tags-always-offer-all-agenda-tags)
3527 t)))"
3528 :group 'org-tags
3529 :version "24.1"
3530 :type 'boolean)
3532 (defvar org-file-tags nil
3533 "List of tags that can be inherited by all entries in the file.
3534 The tags will be inherited if the variable `org-use-tag-inheritance'
3535 says they should be.
3536 This variable is populated from #+FILETAGS lines.")
3538 (defcustom org-use-fast-tag-selection 'auto
3539 "Non-nil means use fast tag selection scheme.
3540 This is a special interface to select and deselect tags with single keys.
3541 When nil, fast selection is never used.
3542 When the symbol `auto', fast selection is used if and only if selection
3543 characters for tags have been configured, either through the variable
3544 `org-tag-alist' or through a #+TAGS line in the buffer.
3545 When t, fast selection is always used and selection keys are assigned
3546 automatically if necessary."
3547 :group 'org-tags
3548 :type '(choice
3549 (const :tag "Always" t)
3550 (const :tag "Never" nil)
3551 (const :tag "When selection characters are configured" auto)))
3553 (defcustom org-fast-tag-selection-single-key nil
3554 "Non-nil means fast tag selection exits after first change.
3555 When nil, you have to press RET to exit it.
3556 During fast tag selection, you can toggle this flag with `C-c'.
3557 This variable can also have the value `expert'. In this case, the window
3558 displaying the tags menu is not even shown, until you press C-c again."
3559 :group 'org-tags
3560 :type '(choice
3561 (const :tag "No" nil)
3562 (const :tag "Yes" t)
3563 (const :tag "Expert" expert)))
3565 (defvar org-fast-tag-selection-include-todo nil
3566 "Non-nil means fast tags selection interface will also offer TODO states.
3567 This is an undocumented feature, you should not rely on it.")
3569 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3570 "The column to which tags should be indented in a headline.
3571 If this number is positive, it specifies the column. If it is negative,
3572 it means that the tags should be flushright to that column. For example,
3573 -80 works well for a normal 80 character screen.
3574 When 0, place tags directly after headline text, with only one space in
3575 between."
3576 :group 'org-tags
3577 :type 'integer)
3579 (defcustom org-auto-align-tags t
3580 "Non-nil keeps tags aligned when modifying headlines.
3581 Some operations (i.e. demoting) change the length of a headline and
3582 therefore shift the tags around. With this option turned on, after
3583 each such operation the tags are again aligned to `org-tags-column'."
3584 :group 'org-tags
3585 :type 'boolean)
3587 (defcustom org-use-tag-inheritance t
3588 "Non-nil means tags in levels apply also for sublevels.
3589 When nil, only the tags directly given in a specific line apply there.
3590 This may also be a list of tags that should be inherited, or a regexp that
3591 matches tags that should be inherited. Additional control is possible
3592 with the variable `org-tags-exclude-from-inheritance' which gives an
3593 explicit list of tags to be excluded from inheritance, even if the value of
3594 `org-use-tag-inheritance' would select it for inheritance.
3596 If this option is t, a match early-on in a tree can lead to a large
3597 number of matches in the subtree when constructing the agenda or creating
3598 a sparse tree. If you only want to see the first match in a tree during
3599 a search, check out the variable `org-tags-match-list-sublevels'."
3600 :group 'org-tags
3601 :type '(choice
3602 (const :tag "Not" nil)
3603 (const :tag "Always" t)
3604 (repeat :tag "Specific tags" (string :tag "Tag"))
3605 (regexp :tag "Tags matched by regexp")))
3607 (defcustom org-tags-exclude-from-inheritance nil
3608 "List of tags that should never be inherited.
3609 This is a way to exclude a few tags from inheritance. For way to do
3610 the opposite, to actively allow inheritance for selected tags,
3611 see the variable `org-use-tag-inheritance'."
3612 :group 'org-tags
3613 :type '(repeat (string :tag "Tag")))
3615 (defun org-tag-inherit-p (tag)
3616 "Check if TAG is one that should be inherited."
3617 (cond
3618 ((member tag org-tags-exclude-from-inheritance) nil)
3619 ((eq org-use-tag-inheritance t) t)
3620 ((not org-use-tag-inheritance) nil)
3621 ((stringp org-use-tag-inheritance)
3622 (string-match org-use-tag-inheritance tag))
3623 ((listp org-use-tag-inheritance)
3624 (member tag org-use-tag-inheritance))
3625 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3627 (defcustom org-tags-match-list-sublevels t
3628 "Non-nil means list also sublevels of headlines matching a search.
3629 This variable applies to tags/property searches, and also to stuck
3630 projects because this search is based on a tags match as well.
3632 When set to the symbol `indented', sublevels are indented with
3633 leading dots.
3635 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3636 the sublevels of a headline matching a tag search often also match
3637 the same search. Listing all of them can create very long lists.
3638 Setting this variable to nil causes subtrees of a match to be skipped.
3640 This variable is semi-obsolete and probably should always be true. It
3641 is better to limit inheritance to certain tags using the variables
3642 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3643 :group 'org-tags
3644 :type '(choice
3645 (const :tag "No, don't list them" nil)
3646 (const :tag "Yes, do list them" t)
3647 (const :tag "List them, indented with leading dots" indented)))
3649 (defcustom org-tags-sort-function nil
3650 "When set, tags are sorted using this function as a comparator."
3651 :group 'org-tags
3652 :type '(choice
3653 (const :tag "No sorting" nil)
3654 (const :tag "Alphabetical" string<)
3655 (const :tag "Reverse alphabetical" string>)
3656 (function :tag "Custom function" nil)))
3658 (defvar org-tags-history nil
3659 "History of minibuffer reads for tags.")
3660 (defvar org-last-tags-completion-table nil
3661 "The last used completion table for tags.")
3662 (defvar org-after-tags-change-hook nil
3663 "Hook that is run after the tags in a line have changed.")
3665 (defgroup org-properties nil
3666 "Options concerning properties in Org-mode."
3667 :tag "Org Properties"
3668 :group 'org)
3670 (defcustom org-property-format "%-10s %s"
3671 "How property key/value pairs should be formatted by `indent-line'.
3672 When `indent-line' hits a property definition, it will format the line
3673 according to this format, mainly to make sure that the values are
3674 lined-up with respect to each other."
3675 :group 'org-properties
3676 :type 'string)
3678 (defcustom org-properties-postprocess-alist nil
3679 "Alist of properties and functions to adjust inserted values.
3680 Elements of this alist must be of the form
3682 ([string] [function])
3684 where [string] must be a property name and [function] must be a
3685 lambda expression: this lambda expression must take one argument,
3686 the value to adjust, and return the new value as a string.
3688 For example, this element will allow the property \"Remaining\"
3689 to be updated wrt the relation between the \"Effort\" property
3690 and the clock summary:
3692 ((\"Remaining\" (lambda(value)
3693 (let ((clocksum (org-clock-sum-current-item))
3694 (effort (org-duration-string-to-minutes
3695 (org-entry-get (point) \"Effort\"))))
3696 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3697 :group 'org-properties
3698 :version "24.1"
3699 :type '(alist :key-type (string :tag "Property")
3700 :value-type (function :tag "Function")))
3702 (defcustom org-use-property-inheritance nil
3703 "Non-nil means properties apply also for sublevels.
3705 This setting is chiefly used during property searches. Turning it on can
3706 cause significant overhead when doing a search, which is why it is not
3707 on by default.
3709 When nil, only the properties directly given in the current entry count.
3710 When t, every property is inherited. The value may also be a list of
3711 properties that should have inheritance, or a regular expression matching
3712 properties that should be inherited.
3714 However, note that some special properties use inheritance under special
3715 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3716 and the properties ending in \"_ALL\" when they are used as descriptor
3717 for valid values of a property.
3719 Note for programmers:
3720 When querying an entry with `org-entry-get', you can control if inheritance
3721 should be used. By default, `org-entry-get' looks only at the local
3722 properties. You can request inheritance by setting the inherit argument
3723 to t (to force inheritance) or to `selective' (to respect the setting
3724 in this variable)."
3725 :group 'org-properties
3726 :type '(choice
3727 (const :tag "Not" nil)
3728 (const :tag "Always" t)
3729 (repeat :tag "Specific properties" (string :tag "Property"))
3730 (regexp :tag "Properties matched by regexp")))
3732 (defun org-property-inherit-p (property)
3733 "Check if PROPERTY is one that should be inherited."
3734 (cond
3735 ((eq org-use-property-inheritance t) t)
3736 ((not org-use-property-inheritance) nil)
3737 ((stringp org-use-property-inheritance)
3738 (string-match org-use-property-inheritance property))
3739 ((listp org-use-property-inheritance)
3740 (member property org-use-property-inheritance))
3741 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3743 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3744 "The default column format, if no other format has been defined.
3745 This variable can be set on the per-file basis by inserting a line
3747 #+COLUMNS: %25ITEM ....."
3748 :group 'org-properties
3749 :type 'string)
3751 (defcustom org-columns-ellipses ".."
3752 "The ellipses to be used when a field in column view is truncated.
3753 When this is the empty string, as many characters as possible are shown,
3754 but then there will be no visual indication that the field has been truncated.
3755 When this is a string of length N, the last N characters of a truncated
3756 field are replaced by this string. If the column is narrower than the
3757 ellipses string, only part of the ellipses string will be shown."
3758 :group 'org-properties
3759 :type 'string)
3761 (defcustom org-columns-modify-value-for-display-function nil
3762 "Function that modifies values for display in column view.
3763 For example, it can be used to cut out a certain part from a time stamp.
3764 The function must take 2 arguments:
3766 column-title The title of the column (*not* the property name)
3767 value The value that should be modified.
3769 The function should return the value that should be displayed,
3770 or nil if the normal value should be used."
3771 :group 'org-properties
3772 :type '(choice (const nil) (function)))
3774 (defconst org-global-properties-fixed
3775 '(("VISIBILITY_ALL" . "folded children content all")
3776 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3777 "List of property/value pairs that can be inherited by any entry.
3779 These are fixed values, for the preset properties. The user variable
3780 that can be used to add to this list is `org-global-properties'.
3782 The entries in this list are cons cells where the car is a property
3783 name and cdr is a string with the value. If the value represents
3784 multiple items like an \"_ALL\" property, separate the items by
3785 spaces.")
3787 (defcustom org-global-properties nil
3788 "List of property/value pairs that can be inherited by any entry.
3790 This list will be combined with the constant `org-global-properties-fixed'.
3792 The entries in this list are cons cells where the car is a property
3793 name and cdr is a string with the value.
3795 You can set buffer-local values for the same purpose in the variable
3796 `org-file-properties' this by adding lines like
3798 #+PROPERTY: NAME VALUE"
3799 :group 'org-properties
3800 :type '(repeat
3801 (cons (string :tag "Property")
3802 (string :tag "Value"))))
3804 (defvar org-file-properties nil
3805 "List of property/value pairs that can be inherited by any entry.
3806 Valid for the current buffer.
3807 This variable is populated from #+PROPERTY lines.")
3808 (make-variable-buffer-local 'org-file-properties)
3810 (defgroup org-agenda nil
3811 "Options concerning agenda views in Org-mode."
3812 :tag "Org Agenda"
3813 :group 'org)
3815 (defvar org-category nil
3816 "Variable used by org files to set a category for agenda display.
3817 Such files should use a file variable to set it, for example
3819 # -*- mode: org; org-category: \"ELisp\"
3821 or contain a special line
3823 #+CATEGORY: ELisp
3825 If the file does not specify a category, then file's base name
3826 is used instead.")
3827 (make-variable-buffer-local 'org-category)
3828 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3830 (defcustom org-agenda-files nil
3831 "The files to be used for agenda display.
3832 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3833 \\[org-remove-file]. You can also use customize to edit the list.
3835 If an entry is a directory, all files in that directory that are matched by
3836 `org-agenda-file-regexp' will be part of the file list.
3838 If the value of the variable is not a list but a single file name, then
3839 the list of agenda files is actually stored and maintained in that file, one
3840 agenda file per line. In this file paths can be given relative to
3841 `org-directory'. Tilde expansion and environment variable substitution
3842 are also made."
3843 :group 'org-agenda
3844 :type '(choice
3845 (repeat :tag "List of files and directories" file)
3846 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3848 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3849 "Regular expression to match files for `org-agenda-files'.
3850 If any element in the list in that variable contains a directory instead
3851 of a normal file, all files in that directory that are matched by this
3852 regular expression will be included."
3853 :group 'org-agenda
3854 :type 'regexp)
3856 (defcustom org-agenda-text-search-extra-files nil
3857 "List of extra files to be searched by text search commands.
3858 These files will be searched in addition to the agenda files by the
3859 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3860 Note that these files will only be searched for text search commands,
3861 not for the other agenda views like todo lists, tag searches or the weekly
3862 agenda. This variable is intended to list notes and possibly archive files
3863 that should also be searched by these two commands.
3864 In fact, if the first element in the list is the symbol `agenda-archives',
3865 then all archive files of all agenda files will be added to the search
3866 scope."
3867 :group 'org-agenda
3868 :type '(set :greedy t
3869 (const :tag "Agenda Archives" agenda-archives)
3870 (repeat :inline t (file))))
3872 (org-defvaralias 'org-agenda-multi-occur-extra-files
3873 'org-agenda-text-search-extra-files)
3875 (defcustom org-agenda-skip-unavailable-files nil
3876 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3877 A nil value means to remove them, after a query, from the list."
3878 :group 'org-agenda
3879 :type 'boolean)
3881 (defcustom org-calendar-to-agenda-key [?c]
3882 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3883 The command `org-calendar-goto-agenda' will be bound to this key. The
3884 default is the character `c' because then `c' can be used to switch back and
3885 forth between agenda and calendar."
3886 :group 'org-agenda
3887 :type 'sexp)
3889 (defcustom org-calendar-insert-diary-entry-key [?i]
3890 "The key to be installed in `calendar-mode-map' for adding diary entries.
3891 This option is irrelevant until `org-agenda-diary-file' has been configured
3892 to point to an Org-mode file. When that is the case, the command
3893 `org-agenda-diary-entry' will be bound to the key given here, by default
3894 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3895 if you want to continue doing this, you need to change this to a different
3896 key."
3897 :group 'org-agenda
3898 :type 'sexp)
3900 (defcustom org-agenda-diary-file 'diary-file
3901 "File to which to add new entries with the `i' key in agenda and calendar.
3902 When this is the symbol `diary-file', the functionality in the Emacs
3903 calendar will be used to add entries to the `diary-file'. But when this
3904 points to a file, `org-agenda-diary-entry' will be used instead."
3905 :group 'org-agenda
3906 :type '(choice
3907 (const :tag "The standard Emacs diary file" diary-file)
3908 (file :tag "Special Org file diary entries")))
3910 (eval-after-load "calendar"
3911 '(progn
3912 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3913 'org-calendar-goto-agenda)
3914 (add-hook 'calendar-mode-hook
3915 (lambda ()
3916 (unless (eq org-agenda-diary-file 'diary-file)
3917 (define-key calendar-mode-map
3918 org-calendar-insert-diary-entry-key
3919 'org-agenda-diary-entry))))))
3921 (defgroup org-latex nil
3922 "Options for embedding LaTeX code into Org-mode."
3923 :tag "Org LaTeX"
3924 :group 'org)
3926 (defcustom org-format-latex-options
3927 '(:foreground default :background default :scale 1.0
3928 :html-foreground "Black" :html-background "Transparent"
3929 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3930 "Options for creating images from LaTeX fragments.
3931 This is a property list with the following properties:
3932 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3933 `default' means use the foreground of the default face.
3934 `auto' means use the foreground from the text face.
3935 :background the background color, or \"Transparent\".
3936 `default' means use the background of the default face.
3937 `auto' means use the background from the text face.
3938 :scale a scaling factor for the size of the images, to get more pixels
3939 :html-foreground, :html-background, :html-scale
3940 the same numbers for HTML export.
3941 :matchers a list indicating which matchers should be used to
3942 find LaTeX fragments. Valid members of this list are:
3943 \"begin\" find environments
3944 \"$1\" find single characters surrounded by $.$
3945 \"$\" find math expressions surrounded by $...$
3946 \"$$\" find math expressions surrounded by $$....$$
3947 \"\\(\" find math expressions surrounded by \\(...\\)
3948 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3949 :group 'org-latex
3950 :type 'plist)
3952 (defcustom org-format-latex-signal-error t
3953 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3954 When nil, just push out a message."
3955 :group 'org-latex
3956 :version "24.1"
3957 :type 'boolean)
3959 (defcustom org-latex-to-mathml-jar-file nil
3960 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3961 Use this to specify additional executable file say a jar file.
3963 When using MathToWeb as the converter, specify the full-path to
3964 your mathtoweb.jar file."
3965 :group 'org-latex
3966 :version "24.1"
3967 :type '(choice
3968 (const :tag "None" nil)
3969 (file :tag "JAR file" :must-match t)))
3971 (defcustom org-latex-to-mathml-convert-command nil
3972 "Command to convert LaTeX fragments to MathML.
3973 Replace format-specifiers in the command as noted below and use
3974 `shell-command' to convert LaTeX to MathML.
3975 %j: Executable file in fully expanded form as specified by
3976 `org-latex-to-mathml-jar-file'.
3977 %I: Input LaTeX file in fully expanded form.
3978 %i: The latex fragment to be converted.
3979 %o: Output MathML file.
3981 This command is used by `org-create-math-formula'.
3983 When using MathToWeb as the converter, set this option to
3984 \"java -jar %j -unicode -force -df %o %I\".
3986 When using LaTeXML set this option to
3987 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3988 :group 'org-latex
3989 :version "24.1"
3990 :type '(choice
3991 (const :tag "None" nil)
3992 (string :tag "\nShell command")))
3994 (defcustom org-latex-create-formula-image-program 'dvipng
3995 "Program to convert LaTeX fragments with.
3997 dvipng Process the LaTeX fragments to dvi file, then convert
3998 dvi files to png files using dvipng.
3999 This will also include processing of non-math environments.
4000 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4001 to convert pdf files to png files"
4002 :group 'org-latex
4003 :version "24.1"
4004 :type '(choice
4005 (const :tag "dvipng" dvipng)
4006 (const :tag "imagemagick" imagemagick)))
4008 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4009 "Path to store latex preview images.
4010 A relative path here creates many directories relative to the
4011 processed org files paths. An absolute path puts all preview
4012 images at the same place."
4013 :group 'org-latex
4014 :version "24.3"
4015 :type 'string)
4017 (defun org-format-latex-mathml-available-p ()
4018 "Return t if `org-latex-to-mathml-convert-command' is usable."
4019 (save-match-data
4020 (when (and (boundp 'org-latex-to-mathml-convert-command)
4021 org-latex-to-mathml-convert-command)
4022 (let ((executable (car (split-string
4023 org-latex-to-mathml-convert-command))))
4024 (when (executable-find executable)
4025 (if (string-match
4026 "%j" org-latex-to-mathml-convert-command)
4027 (file-readable-p org-latex-to-mathml-jar-file)
4028 t))))))
4030 (defcustom org-format-latex-header "\\documentclass{article}
4031 \\usepackage[usenames]{color}
4032 \[PACKAGES]
4033 \[DEFAULT-PACKAGES]
4034 \\pagestyle{empty} % do not remove
4035 % The settings below are copied from fullpage.sty
4036 \\setlength{\\textwidth}{\\paperwidth}
4037 \\addtolength{\\textwidth}{-3cm}
4038 \\setlength{\\oddsidemargin}{1.5cm}
4039 \\addtolength{\\oddsidemargin}{-2.54cm}
4040 \\setlength{\\evensidemargin}{\\oddsidemargin}
4041 \\setlength{\\textheight}{\\paperheight}
4042 \\addtolength{\\textheight}{-\\headheight}
4043 \\addtolength{\\textheight}{-\\headsep}
4044 \\addtolength{\\textheight}{-\\footskip}
4045 \\addtolength{\\textheight}{-3cm}
4046 \\setlength{\\topmargin}{1.5cm}
4047 \\addtolength{\\topmargin}{-2.54cm}"
4048 "The document header used for processing LaTeX fragments.
4049 It is imperative that this header make sure that no page number
4050 appears on the page. The package defined in the variables
4051 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4052 will either replace the placeholder \"[PACKAGES]\" in this
4053 header, or they will be appended."
4054 :group 'org-latex
4055 :type 'string)
4057 (defun org-set-packages-alist (var val)
4058 "Set the packages alist and make sure it has 3 elements per entry."
4059 (set var (mapcar (lambda (x)
4060 (if (and (consp x) (= (length x) 2))
4061 (list (car x) (nth 1 x) t)
4063 val)))
4065 (defun org-get-packages-alist (var)
4066 "Get the packages alist and make sure it has 3 elements per entry."
4067 (mapcar (lambda (x)
4068 (if (and (consp x) (= (length x) 2))
4069 (list (car x) (nth 1 x) t)
4071 (default-value var)))
4073 (defcustom org-latex-default-packages-alist
4074 '(("AUTO" "inputenc" t)
4075 ("T1" "fontenc" t)
4076 ("" "fixltx2e" nil)
4077 ("" "graphicx" t)
4078 ("" "grffile" t)
4079 ("" "longtable" nil)
4080 ("" "wrapfig" nil)
4081 ("" "rotating" nil)
4082 ("normalem" "ulem" t)
4083 ("" "amsmath" t)
4084 ("" "textcomp" t)
4085 ("" "amssymb" t)
4086 ("" "capt-of" nil)
4087 ("" "hyperref" nil))
4088 "Alist of default packages to be inserted in the header.
4090 Change this only if one of the packages here causes an
4091 incompatibility with another package you are using.
4093 The packages in this list are needed by one part or another of
4094 Org mode to function properly:
4096 - inputenc, fontenc: for basic font and character selection
4097 - fixltx2e: Important patches of LaTeX itself
4098 - graphicx: for including images
4099 - grffile: allow periods and spaces in graphics file names
4100 - longtable: For multipage tables
4101 - wrapfig: for figure placement
4102 - rotating: for sideways figures and tables
4103 - ulem: for underline and strike-through
4104 - amsmath: for subscript and superscript and math environments
4105 - textcomp, amssymb: for various symbols used
4106 for interpreting the entities in `org-entities'. You can skip
4107 some of these packages if you don't use any of their symbols.
4108 - capt-of: for captions outside of floats
4109 - hyperref: for cross references
4111 Therefore you should not modify this variable unless you know
4112 what you are doing. The one reason to change it anyway is that
4113 you might be loading some other package that conflicts with one
4114 of the default packages. Each element is either a cell or
4115 a string.
4117 A cell is of the format
4119 \(\"options\" \"package\" SNIPPET-FLAG)
4121 If SNIPPET-FLAG is non-nil, the package also needs to be included
4122 when compiling LaTeX snippets into images for inclusion into
4123 non-LaTeX output.
4125 A string will be inserted as-is in the header of the document."
4126 :group 'org-latex
4127 :group 'org-export-latex
4128 :set 'org-set-packages-alist
4129 :get 'org-get-packages-alist
4130 :version "25.1"
4131 :package-version '(Org . "8.3")
4132 :type '(repeat
4133 (choice
4134 (list :tag "options/package pair"
4135 (string :tag "options")
4136 (string :tag "package")
4137 (boolean :tag "Snippet"))
4138 (string :tag "A line of LaTeX"))))
4140 (defcustom org-latex-packages-alist nil
4141 "Alist of packages to be inserted in every LaTeX header.
4143 These will be inserted after `org-latex-default-packages-alist'.
4144 Each element is either a cell or a string.
4146 A cell is of the format:
4148 \(\"options\" \"package\" SNIPPET-FLAG)
4150 SNIPPET-FLAG, when non-nil, indicates that this package is also
4151 needed when turning LaTeX snippets into images for inclusion into
4152 non-LaTeX output.
4154 A string will be inserted as-is in the header of the document.
4156 Make sure that you only list packages here which:
4158 - you want in every file;
4159 - do not conflict with the setup in `org-format-latex-header';
4160 - do not conflict with the default packages in
4161 `org-latex-default-packages-alist'."
4162 :group 'org-latex
4163 :group 'org-export-latex
4164 :set 'org-set-packages-alist
4165 :get 'org-get-packages-alist
4166 :type '(repeat
4167 (choice
4168 (list :tag "options/package pair"
4169 (string :tag "options")
4170 (string :tag "package")
4171 (boolean :tag "Snippet"))
4172 (string :tag "A line of LaTeX"))))
4174 (defgroup org-appearance nil
4175 "Settings for Org-mode appearance."
4176 :tag "Org Appearance"
4177 :group 'org)
4179 (defcustom org-level-color-stars-only nil
4180 "Non-nil means fontify only the stars in each headline.
4181 When nil, the entire headline is fontified.
4182 Changing it requires restart of `font-lock-mode' to become effective
4183 also in regions already fontified."
4184 :group 'org-appearance
4185 :type 'boolean)
4187 (defcustom org-hide-leading-stars nil
4188 "Non-nil means hide the first N-1 stars in a headline.
4189 This works by using the face `org-hide' for these stars. This
4190 face is white for a light background, and black for a dark
4191 background. You may have to customize the face `org-hide' to
4192 make this work.
4193 Changing it requires restart of `font-lock-mode' to become effective
4194 also in regions already fontified.
4195 You may also set this on a per-file basis by adding one of the following
4196 lines to the buffer:
4198 #+STARTUP: hidestars
4199 #+STARTUP: showstars"
4200 :group 'org-appearance
4201 :type 'boolean)
4203 (defcustom org-hidden-keywords nil
4204 "List of symbols corresponding to keywords to be hidden the org buffer.
4205 For example, a value '(title) for this list will make the document's title
4206 appear in the buffer without the initial #+TITLE: keyword."
4207 :group 'org-appearance
4208 :version "24.1"
4209 :type '(set (const :tag "#+AUTHOR" author)
4210 (const :tag "#+DATE" date)
4211 (const :tag "#+EMAIL" email)
4212 (const :tag "#+TITLE" title)))
4214 (defcustom org-custom-properties nil
4215 "List of properties (as strings) with a special meaning.
4216 The default use of these custom properties is to let the user
4217 hide them with `org-toggle-custom-properties-visibility'."
4218 :group 'org-properties
4219 :group 'org-appearance
4220 :version "24.3"
4221 :type '(repeat (string :tag "Property Name")))
4223 (defcustom org-fontify-done-headline nil
4224 "Non-nil means change the face of a headline if it is marked DONE.
4225 Normally, only the TODO/DONE keyword indicates the state of a headline.
4226 When this is non-nil, the headline after the keyword is set to the
4227 `org-headline-done' as an additional indication."
4228 :group 'org-appearance
4229 :type 'boolean)
4231 (defcustom org-fontify-emphasized-text t
4232 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4233 Changing this variable requires a restart of Emacs to take effect."
4234 :group 'org-appearance
4235 :type 'boolean)
4237 (defcustom org-fontify-whole-heading-line nil
4238 "Non-nil means fontify the whole line for headings.
4239 This is useful when setting a background color for the
4240 org-level-* faces."
4241 :group 'org-appearance
4242 :type 'boolean)
4244 (defcustom org-highlight-latex-and-related nil
4245 "Non-nil means highlight LaTeX related syntax in the buffer.
4246 When non nil, the value should be a list containing any of the
4247 following symbols:
4248 `latex' Highlight LaTeX snippets and environments.
4249 `script' Highlight subscript and superscript.
4250 `entities' Highlight entities."
4251 :group 'org-appearance
4252 :version "24.4"
4253 :package-version '(Org . "8.0")
4254 :type '(choice
4255 (const :tag "No highlighting" nil)
4256 (set :greedy t :tag "Highlight"
4257 (const :tag "LaTeX snippets and environments" latex)
4258 (const :tag "Subscript and superscript" script)
4259 (const :tag "Entities" entities))))
4261 (defcustom org-hide-emphasis-markers nil
4262 "Non-nil mean font-lock should hide the emphasis marker characters."
4263 :group 'org-appearance
4264 :type 'boolean)
4266 (defcustom org-hide-macro-markers nil
4267 "Non-nil mean font-lock should hide the brackets marking macro calls."
4268 :group 'org-appearance
4269 :type 'boolean)
4271 (defcustom org-pretty-entities nil
4272 "Non-nil means show entities as UTF8 characters.
4273 When nil, the \\name form remains in the buffer."
4274 :group 'org-appearance
4275 :version "24.1"
4276 :type 'boolean)
4278 (defcustom org-pretty-entities-include-sub-superscripts t
4279 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4280 :group 'org-appearance
4281 :version "24.1"
4282 :type 'boolean)
4284 (defvar org-emph-re nil
4285 "Regular expression for matching emphasis.
4286 After a match, the match groups contain these elements:
4287 0 The match of the full regular expression, including the characters
4288 before and after the proper match
4289 1 The character before the proper match, or empty at beginning of line
4290 2 The proper match, including the leading and trailing markers
4291 3 The leading marker like * or /, indicating the type of highlighting
4292 4 The text between the emphasis markers, not including the markers
4293 5 The character after the match, empty at the end of a line")
4294 (defvar org-verbatim-re nil
4295 "Regular expression for matching verbatim text.")
4296 (defvar org-emphasis-regexp-components) ; defined just below
4297 (defvar org-emphasis-alist) ; defined just below
4298 (defun org-set-emph-re (var val)
4299 "Set variable and compute the emphasis regular expression."
4300 (set var val)
4301 (when (and (boundp 'org-emphasis-alist)
4302 (boundp 'org-emphasis-regexp-components)
4303 org-emphasis-alist org-emphasis-regexp-components)
4304 (let* ((e org-emphasis-regexp-components)
4305 (pre (car e))
4306 (post (nth 1 e))
4307 (border (nth 2 e))
4308 (body (nth 3 e))
4309 (nl (nth 4 e))
4310 (body1 (concat body "*?"))
4311 (markers (mapconcat 'car org-emphasis-alist ""))
4312 (vmarkers (mapconcat
4313 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4314 org-emphasis-alist "")))
4315 ;; make sure special characters appear at the right position in the class
4316 (if (string-match "\\^" markers)
4317 (setq markers (concat (replace-match "" t t markers) "^")))
4318 (if (string-match "-" markers)
4319 (setq markers (concat (replace-match "" t t markers) "-")))
4320 (if (string-match "\\^" vmarkers)
4321 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4322 (if (string-match "-" vmarkers)
4323 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4324 (if (> nl 0)
4325 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4326 (int-to-string nl) "\\}")))
4327 ;; Make the regexp
4328 (setq org-emph-re
4329 (concat "\\([" pre "]\\|^\\)"
4330 "\\("
4331 "\\([" markers "]\\)"
4332 "\\("
4333 "[^" border "]\\|"
4334 "[^" border "]"
4335 body1
4336 "[^" border "]"
4337 "\\)"
4338 "\\3\\)"
4339 "\\([" post "]\\|$\\)"))
4340 (setq org-verbatim-re
4341 (concat "\\([" pre "]\\|^\\)"
4342 "\\("
4343 "\\([" vmarkers "]\\)"
4344 "\\("
4345 "[^" border "]\\|"
4346 "[^" border "]"
4347 body1
4348 "[^" border "]"
4349 "\\)"
4350 "\\3\\)"
4351 "\\([" post "]\\|$\\)")))))
4353 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4354 ;; set this option proved cumbersome. See this message/thread:
4355 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4356 (defvar org-emphasis-regexp-components
4357 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4358 "Components used to build the regular expression for emphasis.
4359 This is a list with five entries. Terminology: In an emphasis string
4360 like \" *strong word* \", we call the initial space PREMATCH, the final
4361 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4362 and \"trong wor\" is the body. The different components in this variable
4363 specify what is allowed/forbidden in each part:
4365 pre Chars allowed as prematch. Beginning of line will be allowed too.
4366 post Chars allowed as postmatch. End of line will be allowed too.
4367 border The chars *forbidden* as border characters.
4368 body-regexp A regexp like \".\" to match a body character. Don't use
4369 non-shy groups here, and don't allow newline here.
4370 newline The maximum number of newlines allowed in an emphasis exp.
4372 You need to reload Org or to restart Emacs after customizing this.")
4374 (defcustom org-emphasis-alist
4375 `(("*" bold)
4376 ("/" italic)
4377 ("_" underline)
4378 ("=" org-verbatim verbatim)
4379 ("~" org-code verbatim)
4380 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4381 "Alist of characters and faces to emphasize text.
4382 Text starting and ending with a special character will be emphasized,
4383 for example *bold*, _underlined_ and /italic/. This variable sets the
4384 marker characters and the face to be used by font-lock for highlighting
4385 in Org-mode Emacs buffers.
4387 You need to reload Org or to restart Emacs after customizing this."
4388 :group 'org-appearance
4389 :set 'org-set-emph-re
4390 :version "24.4"
4391 :package-version '(Org . "8.0")
4392 :type '(repeat
4393 (list
4394 (string :tag "Marker character")
4395 (choice
4396 (face :tag "Font-lock-face")
4397 (plist :tag "Face property list"))
4398 (option (const verbatim)))))
4400 (defvar org-protecting-blocks
4401 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4402 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4403 This is needed for font-lock setup.")
4405 ;;; Miscellaneous options
4407 (defgroup org-completion nil
4408 "Completion in Org-mode."
4409 :tag "Org Completion"
4410 :group 'org)
4412 (defcustom org-completion-use-ido nil
4413 "Non-nil means use ido completion wherever possible.
4414 Note that `ido-mode' must be active for this variable to be relevant.
4415 If you decide to turn this variable on, you might well want to turn off
4416 `org-outline-path-complete-in-steps'.
4417 See also `org-completion-use-iswitchb'."
4418 :group 'org-completion
4419 :type 'boolean)
4421 (defcustom org-completion-use-iswitchb nil
4422 "Non-nil means use iswitchb completion wherever possible.
4423 Note that `iswitchb-mode' must be active for this variable to be relevant.
4424 If you decide to turn this variable on, you might well want to turn off
4425 `org-outline-path-complete-in-steps'.
4426 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4427 :group 'org-completion
4428 :type 'boolean)
4430 (defcustom org-completion-fallback-command 'hippie-expand
4431 "The expansion command called by \\[pcomplete] in normal context.
4432 Normal means, no org-mode-specific context."
4433 :group 'org-completion
4434 :type 'function)
4436 ;;; Functions and variables from their packages
4437 ;; Declared here to avoid compiler warnings
4439 ;; XEmacs only
4440 (defvar outline-mode-menu-heading)
4441 (defvar outline-mode-menu-show)
4442 (defvar outline-mode-menu-hide)
4443 (defvar zmacs-regions) ; XEmacs regions
4445 ;; Emacs only
4446 (defvar mark-active)
4448 ;; Various packages
4449 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4450 (declare-function calendar-forward-day "cal-move" (arg))
4451 (declare-function calendar-goto-date "cal-move" (date))
4452 (declare-function calendar-goto-today "cal-move" ())
4453 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4454 (defvar calc-embedded-close-formula)
4455 (defvar calc-embedded-open-formula)
4456 (declare-function cdlatex-tab "ext:cdlatex" ())
4457 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4458 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4459 (defvar font-lock-unfontify-region-function)
4460 (declare-function iswitchb-read-buffer "iswitchb"
4461 (prompt &optional default require-match start matches-set))
4462 (defvar iswitchb-temp-buflist)
4463 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4464 (defvar org-agenda-tags-todo-honor-ignore-options)
4465 (declare-function org-agenda-skip "org-agenda" ())
4466 (declare-function
4467 org-agenda-format-item "org-agenda"
4468 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4469 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4470 (declare-function org-agenda-change-all-lines "org-agenda"
4471 (newhead hdmarker &optional fixface just-this))
4472 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4473 (declare-function org-agenda-maybe-redo "org-agenda" ())
4474 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4475 (beg end))
4476 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4477 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4478 "org-agenda" (&optional end))
4479 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4480 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4481 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4482 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4483 (declare-function org-indent-mode "org-indent" (&optional arg))
4484 (declare-function parse-time-string "parse-time" (string))
4485 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4486 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4487 (defvar remember-data-file)
4488 (defvar texmathp-why)
4489 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4490 (declare-function table--at-cell-p "table" (position &optional object at-column))
4491 (declare-function calc-eval "calc" (str &optional separator &rest args))
4493 ;;;###autoload
4494 (defun turn-on-orgtbl ()
4495 "Unconditionally turn on `orgtbl-mode'."
4496 (require 'org-table)
4497 (orgtbl-mode 1))
4499 (defun org-at-table-p (&optional table-type)
4500 "Non-nil if the cursor is inside an Org table.
4501 If TABLE-TYPE is non-nil, also check for table.el-type tables.
4502 If `org-enable-table-editor' is nil, return nil unconditionally."
4503 (and
4504 org-enable-table-editor
4505 (save-excursion
4506 (beginning-of-line)
4507 (org-looking-at-p (if table-type "[ \t]*[|+]" "[ \t]*|")))
4508 (or (not (derived-mode-p 'org-mode))
4509 (let ((e (org-element-lineage (org-element-at-point) '(table) t)))
4510 (and e (or table-type (eq (org-element-property :type e) 'org)))))))
4511 (defsubst org-table-p () (org-at-table-p))
4513 (defun org-at-table.el-p ()
4514 "Non-nil when point is at a table.el table."
4515 (and (save-excursion (beginning-of-line) (looking-at "[ \t]*[|+]"))
4516 (let ((element (org-element-at-point)))
4517 (and (eq (org-element-type element) 'table)
4518 (eq (org-element-property :type element) 'table.el)))))
4520 (defun org-table-recognize-table.el ()
4521 "If there is a table.el table nearby, recognize it and move into it."
4522 (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
4523 (beginning-of-line)
4524 (unless (or (looking-at org-table-dataline-regexp)
4525 (not (looking-at org-table1-hline-regexp)))
4526 (forward-line)
4527 (when (looking-at org-table-any-border-regexp)
4528 (forward-line -2)))
4529 (if (re-search-forward "|" (org-table-end t) t)
4530 (progn
4531 (require 'table)
4532 (if (table--at-cell-p (point)) t
4533 (message "recognizing table.el table...")
4534 (table-recognize-table)
4535 (message "recognizing table.el table...done")))
4536 (error "This should not happen"))))
4538 (defun org-at-table-hline-p ()
4539 "Non-nil when point is inside a hline in a table.
4540 Assume point is already in a table. If `org-enable-table-editor'
4541 is nil, return nil unconditionally."
4542 (and org-enable-table-editor
4543 (save-excursion
4544 (beginning-of-line)
4545 (looking-at org-table-hline-regexp))))
4547 (defun org-table-map-tables (function &optional quietly)
4548 "Apply FUNCTION to the start of all tables in the buffer."
4549 (save-excursion
4550 (save-restriction
4551 (widen)
4552 (goto-char (point-min))
4553 (while (re-search-forward org-table-any-line-regexp nil t)
4554 (unless quietly
4555 (message "Mapping tables: %d%%"
4556 (floor (* 100.0 (point)) (buffer-size))))
4557 (beginning-of-line 1)
4558 (when (and (looking-at org-table-line-regexp)
4559 ;; Exclude tables in src/example/verbatim/clocktable blocks
4560 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4561 (save-excursion (funcall function))
4562 (or (looking-at org-table-line-regexp)
4563 (forward-char 1)))
4564 (re-search-forward org-table-any-border-regexp nil 1))))
4565 (unless quietly (message "Mapping tables: done")))
4567 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4568 (declare-function org-clock-update-mode-line "org-clock" ())
4569 (declare-function org-resolve-clocks "org-clock"
4570 (&optional also-non-dangling-p prompt last-valid))
4572 (defun org-at-TBLFM-p (&optional pos)
4573 "Non-nil when point (or POS) is in #+TBLFM line."
4574 (save-excursion
4575 (goto-char (or pos (point)))
4576 (beginning-of-line)
4577 (and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
4578 (eq (org-element-type (org-element-at-point)) 'table))))
4580 (defvar org-clock-start-time)
4581 (defvar org-clock-marker (make-marker)
4582 "Marker recording the last clock-in.")
4583 (defvar org-clock-hd-marker (make-marker)
4584 "Marker recording the last clock-in, but the headline position.")
4585 (defvar org-clock-heading ""
4586 "The heading of the current clock entry.")
4587 (defun org-clock-is-active ()
4588 "Return the buffer where the clock is currently running.
4589 Return nil if no clock is running."
4590 (marker-buffer org-clock-marker))
4592 (defun org-check-running-clock ()
4593 "Check if the current buffer contains the running clock.
4594 If yes, offer to stop it and to save the buffer with the changes."
4595 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4596 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4597 (buffer-name))))
4598 (org-clock-out)
4599 (when (y-or-n-p "Save changed buffer?")
4600 (save-buffer))))
4602 (defun org-clocktable-try-shift (dir n)
4603 "Check if this line starts a clock table, if yes, shift the time block."
4604 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4605 (org-clocktable-shift dir n)))
4607 ;;;###autoload
4608 (defun org-clock-persistence-insinuate ()
4609 "Set up hooks for clock persistence."
4610 (require 'org-clock)
4611 (add-hook 'org-mode-hook 'org-clock-load)
4612 (add-hook 'kill-emacs-hook 'org-clock-save))
4614 (defgroup org-archive nil
4615 "Options concerning archiving in Org-mode."
4616 :tag "Org Archive"
4617 :group 'org-structure)
4619 (defcustom org-archive-location "%s_archive::"
4620 "The location where subtrees should be archived.
4622 The value of this variable is a string, consisting of two parts,
4623 separated by a double-colon. The first part is a filename and
4624 the second part is a headline.
4626 When the filename is omitted, archiving happens in the same file.
4627 %s in the filename will be replaced by the current file
4628 name (without the directory part). Archiving to a different file
4629 is useful to keep archived entries from contributing to the
4630 Org-mode Agenda.
4632 The archived entries will be filed as subtrees of the specified
4633 headline. When the headline is omitted, the subtrees are simply
4634 filed away at the end of the file, as top-level entries. Also in
4635 the heading you can use %s to represent the file name, this can be
4636 useful when using the same archive for a number of different files.
4638 Here are a few examples:
4639 \"%s_archive::\"
4640 If the current file is Projects.org, archive in file
4641 Projects.org_archive, as top-level trees. This is the default.
4643 \"::* Archived Tasks\"
4644 Archive in the current file, under the top-level headline
4645 \"* Archived Tasks\".
4647 \"~/org/archive.org::\"
4648 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4650 \"~/org/archive.org::* From %s\"
4651 Archive in file ~/org/archive.org (absolute path), under headlines
4652 \"From FILENAME\" where file name is the current file name.
4654 \"~/org/datetree.org::datetree/* Finished Tasks\"
4655 The \"datetree/\" string is special, signifying to archive
4656 items to the datetree. Items are placed in either the CLOSED
4657 date of the item, or the current date if there is no CLOSED date.
4658 The heading will be a subentry to the current date. There doesn't
4659 need to be a heading, but there always needs to be a slash after
4660 datetree. For example, to store archived items directly in the
4661 datetree, use \"~/org/datetree.org::datetree/\".
4663 \"basement::** Finished Tasks\"
4664 Archive in file ./basement (relative path), as level 3 trees
4665 below the level 2 heading \"** Finished Tasks\".
4667 You may set this option on a per-file basis by adding to the buffer a
4668 line like
4670 #+ARCHIVE: basement::** Finished Tasks
4672 You may also define it locally for a subtree by setting an ARCHIVE property
4673 in the entry. If such a property is found in an entry, or anywhere up
4674 the hierarchy, it will be used."
4675 :group 'org-archive
4676 :type 'string)
4678 (defcustom org-agenda-skip-archived-trees t
4679 "Non-nil means the agenda will skip any items located in archived trees.
4680 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4681 variable is no longer recommended, you should leave it at the value t.
4682 Instead, use the key `v' to cycle the archives-mode in the agenda."
4683 :group 'org-archive
4684 :group 'org-agenda-skip
4685 :type 'boolean)
4687 (defcustom org-columns-skip-archived-trees t
4688 "Non-nil means ignore archived trees when creating column view."
4689 :group 'org-archive
4690 :group 'org-properties
4691 :type 'boolean)
4693 (defcustom org-cycle-open-archived-trees nil
4694 "Non-nil means `org-cycle' will open archived trees.
4695 An archived tree is a tree marked with the tag ARCHIVE.
4696 When nil, archived trees will stay folded. You can still open them with
4697 normal outline commands like `show-all', but not with the cycling commands."
4698 :group 'org-archive
4699 :group 'org-cycle
4700 :type 'boolean)
4702 (defcustom org-sparse-tree-open-archived-trees nil
4703 "Non-nil means sparse tree construction shows matches in archived trees.
4704 When nil, matches in these trees are highlighted, but the trees are kept in
4705 collapsed state."
4706 :group 'org-archive
4707 :group 'org-sparse-trees
4708 :type 'boolean)
4710 (defcustom org-sparse-tree-default-date-type nil
4711 "The default date type when building a sparse tree.
4712 When this is nil, a date is a scheduled or a deadline timestamp.
4713 Otherwise, these types are allowed:
4715 all: all timestamps
4716 active: only active timestamps (<...>)
4717 inactive: only inactive timestamps ([...])
4718 scheduled: only scheduled timestamps
4719 deadline: only deadline timestamps"
4720 :type '(choice (const :tag "Scheduled or deadline" nil)
4721 (const :tag "All timestamps" all)
4722 (const :tag "Only active timestamps" active)
4723 (const :tag "Only inactive timestamps" inactive)
4724 (const :tag "Only scheduled timestamps" scheduled)
4725 (const :tag "Only deadline timestamps" deadline)
4726 (const :tag "Only closed timestamps" closed))
4727 :version "25.1"
4728 :package-version '(Org . "8.3")
4729 :group 'org-sparse-trees)
4731 (defun org-cycle-hide-archived-subtrees (state)
4732 "Re-hide all archived subtrees after a visibility state change."
4733 (when (and (not org-cycle-open-archived-trees)
4734 (not (memq state '(overview folded))))
4735 (save-excursion
4736 (let* ((globalp (memq state '(contents all)))
4737 (beg (if globalp (point-min) (point)))
4738 (end (if globalp (point-max) (org-end-of-subtree t))))
4739 (org-hide-archived-subtrees beg end)
4740 (goto-char beg)
4741 (if (looking-at (concat ".*:" org-archive-tag ":"))
4742 (message "%s" (substitute-command-keys
4743 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4745 (defun org-force-cycle-archived ()
4746 "Cycle subtree even if it is archived."
4747 (interactive)
4748 (setq this-command 'org-cycle)
4749 (let ((org-cycle-open-archived-trees t))
4750 (call-interactively 'org-cycle)))
4752 (defun org-hide-archived-subtrees (beg end)
4753 "Re-hide all archived subtrees after a visibility state change."
4754 (org-with-wide-buffer
4755 (let ((case-fold-search nil)
4756 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4757 (goto-char beg)
4758 (while (and (< (point) end) (re-search-forward re end t))
4759 (when (member org-archive-tag (org-get-tags))
4760 (org-flag-subtree t)
4761 (org-end-of-subtree t))))))
4763 (declare-function outline-end-of-heading "outline" ())
4764 (declare-function outline-flag-region "outline" (from to flag))
4765 (defun org-flag-subtree (flag)
4766 (save-excursion
4767 (org-back-to-heading t)
4768 (outline-end-of-heading)
4769 (outline-flag-region (point)
4770 (progn (org-end-of-subtree t) (point))
4771 flag)))
4773 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4775 ;; Declare Column View Code
4777 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4778 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4779 (declare-function org-columns-compute "org-colview" (property))
4781 ;; Declare ID code
4783 (declare-function org-id-store-link "org-id")
4784 (declare-function org-id-locations-load "org-id")
4785 (declare-function org-id-locations-save "org-id")
4786 (defvar org-id-track-globally)
4788 ;;; Variables for pre-computed regular expressions, all buffer local
4790 (defvar org-todo-regexp nil
4791 "Matches any of the TODO state keywords.")
4792 (make-variable-buffer-local 'org-todo-regexp)
4793 (defvar org-not-done-regexp nil
4794 "Matches any of the TODO state keywords except the last one.")
4795 (make-variable-buffer-local 'org-not-done-regexp)
4796 (defvar org-not-done-heading-regexp nil
4797 "Matches a TODO headline that is not done.")
4798 (make-variable-buffer-local 'org-not-done-heading-regexp)
4799 (defvar org-todo-line-regexp nil
4800 "Matches a headline and puts TODO state into group 2 if present.")
4801 (make-variable-buffer-local 'org-todo-line-regexp)
4802 (defvar org-complex-heading-regexp nil
4803 "Matches a headline and puts everything into groups:
4804 group 1: the stars
4805 group 2: The todo keyword, maybe
4806 group 3: Priority cookie
4807 group 4: True headline
4808 group 5: Tags")
4809 (make-variable-buffer-local 'org-complex-heading-regexp)
4810 (defvar org-complex-heading-regexp-format nil
4811 "Printf format to make regexp to match an exact headline.
4812 This regexp will match the headline of any node which has the
4813 exact headline text that is put into the format, but may have any
4814 TODO state, priority and tags.")
4815 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4816 (defvar org-todo-line-tags-regexp nil
4817 "Matches a headline and puts TODO state into group 2 if present.
4818 Also put tags into group 4 if tags are present.")
4819 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4821 (defconst org-plain-time-of-day-regexp
4822 (concat
4823 "\\(\\<[012]?[0-9]"
4824 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4825 "\\(--?"
4826 "\\(\\<[012]?[0-9]"
4827 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4828 "\\)?")
4829 "Regular expression to match a plain time or time range.
4830 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4831 groups carry important information:
4832 0 the full match
4833 1 the first time, range or not
4834 8 the second time, if it is a range.")
4836 (defconst org-plain-time-extension-regexp
4837 (concat
4838 "\\(\\<[012]?[0-9]"
4839 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4840 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4841 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4842 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4843 groups carry important information:
4844 0 the full match
4845 7 hours of duration
4846 9 minutes of duration")
4848 (defconst org-stamp-time-of-day-regexp
4849 (concat
4850 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4851 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4852 "\\(--?"
4853 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4854 "Regular expression to match a timestamp time or time range.
4855 After a match, the following groups carry important information:
4856 0 the full match
4857 1 date plus weekday, for back referencing to make sure both times are on the same day
4858 2 the first time, range or not
4859 4 the second time, if it is a range.")
4861 (defconst org-startup-options
4862 '(("fold" org-startup-folded t)
4863 ("overview" org-startup-folded t)
4864 ("nofold" org-startup-folded nil)
4865 ("showall" org-startup-folded nil)
4866 ("showeverything" org-startup-folded showeverything)
4867 ("content" org-startup-folded content)
4868 ("indent" org-startup-indented t)
4869 ("noindent" org-startup-indented nil)
4870 ("hidestars" org-hide-leading-stars t)
4871 ("showstars" org-hide-leading-stars nil)
4872 ("odd" org-odd-levels-only t)
4873 ("oddeven" org-odd-levels-only nil)
4874 ("align" org-startup-align-all-tables t)
4875 ("noalign" org-startup-align-all-tables nil)
4876 ("inlineimages" org-startup-with-inline-images t)
4877 ("noinlineimages" org-startup-with-inline-images nil)
4878 ("latexpreview" org-startup-with-latex-preview t)
4879 ("nolatexpreview" org-startup-with-latex-preview nil)
4880 ("customtime" org-display-custom-times t)
4881 ("logdone" org-log-done time)
4882 ("lognotedone" org-log-done note)
4883 ("nologdone" org-log-done nil)
4884 ("lognoteclock-out" org-log-note-clock-out t)
4885 ("nolognoteclock-out" org-log-note-clock-out nil)
4886 ("logrepeat" org-log-repeat state)
4887 ("lognoterepeat" org-log-repeat note)
4888 ("logdrawer" org-log-into-drawer t)
4889 ("nologdrawer" org-log-into-drawer nil)
4890 ("logstatesreversed" org-log-states-order-reversed t)
4891 ("nologstatesreversed" org-log-states-order-reversed nil)
4892 ("nologrepeat" org-log-repeat nil)
4893 ("logreschedule" org-log-reschedule time)
4894 ("lognotereschedule" org-log-reschedule note)
4895 ("nologreschedule" org-log-reschedule nil)
4896 ("logredeadline" org-log-redeadline time)
4897 ("lognoteredeadline" org-log-redeadline note)
4898 ("nologredeadline" org-log-redeadline nil)
4899 ("logrefile" org-log-refile time)
4900 ("lognoterefile" org-log-refile note)
4901 ("nologrefile" org-log-refile nil)
4902 ("fninline" org-footnote-define-inline t)
4903 ("nofninline" org-footnote-define-inline nil)
4904 ("fnlocal" org-footnote-section nil)
4905 ("fnauto" org-footnote-auto-label t)
4906 ("fnprompt" org-footnote-auto-label nil)
4907 ("fnconfirm" org-footnote-auto-label confirm)
4908 ("fnplain" org-footnote-auto-label plain)
4909 ("fnadjust" org-footnote-auto-adjust t)
4910 ("nofnadjust" org-footnote-auto-adjust nil)
4911 ("constcgs" constants-unit-system cgs)
4912 ("constSI" constants-unit-system SI)
4913 ("noptag" org-tag-persistent-alist nil)
4914 ("hideblocks" org-hide-block-startup t)
4915 ("nohideblocks" org-hide-block-startup nil)
4916 ("beamer" org-startup-with-beamer-mode t)
4917 ("entitiespretty" org-pretty-entities t)
4918 ("entitiesplain" org-pretty-entities nil))
4919 "Variable associated with STARTUP options for org-mode.
4920 Each element is a list of three items: the startup options (as written
4921 in the #+STARTUP line), the corresponding variable, and the value to set
4922 this variable to if the option is found. An optional forth element PUSH
4923 means to push this value onto the list in the variable.")
4925 (defcustom org-group-tags t
4926 "When non-nil (the default), use group tags.
4927 This can be turned on/off through `org-toggle-tags-groups'."
4928 :group 'org-tags
4929 :group 'org-startup
4930 :type 'boolean)
4932 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4934 (defun org-toggle-tags-groups ()
4935 "Toggle support for group tags.
4936 Support for group tags is controlled by the option
4937 `org-group-tags', which is non-nil by default."
4938 (interactive)
4939 (setq org-group-tags (not org-group-tags))
4940 (cond ((and (derived-mode-p 'org-agenda-mode)
4941 org-group-tags)
4942 (org-agenda-redo))
4943 ((derived-mode-p 'org-mode)
4944 (let ((org-inhibit-startup t)) (org-mode))))
4945 (message "Groups tags support has been turned %s"
4946 (if org-group-tags "on" "off")))
4948 (defun org-set-regexps-and-options (&optional tags-only)
4949 "Precompute regular expressions used in the current buffer.
4950 When optional argument TAGS-ONLY is non-nil, only compute tags
4951 related expressions."
4952 (when (derived-mode-p 'org-mode)
4953 (let ((alist (org--setup-collect-keywords
4954 (org-make-options-regexp
4955 (append '("FILETAGS" "TAGS" "SETUPFILE")
4956 (and (not tags-only)
4957 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4958 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4959 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4960 (org--setup-process-tags
4961 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4962 (unless tags-only
4963 ;; File properties.
4964 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4965 ;; Archive location.
4966 (let ((archive (cdr (assq 'archive alist))))
4967 (when archive (org-set-local 'org-archive-location archive)))
4968 ;; Category.
4969 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4970 (when cat
4971 (org-set-local 'org-category (intern cat))
4972 (org-set-local 'org-file-properties
4973 (org--update-property-plist
4974 "CATEGORY" cat org-file-properties))))
4975 ;; Columns.
4976 (let ((column (cdr (assq 'columns alist))))
4977 (when column (org-set-local 'org-columns-default-format column)))
4978 ;; Constants.
4979 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4980 ;; Link abbreviations.
4981 (let ((links (cdr (assq 'link alist))))
4982 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4983 ;; Priorities.
4984 (let ((priorities (cdr (assq 'priorities alist))))
4985 (when priorities
4986 (org-set-local 'org-highest-priority (nth 0 priorities))
4987 (org-set-local 'org-lowest-priority (nth 1 priorities))
4988 (org-set-local 'org-default-priority (nth 2 priorities))))
4989 ;; Scripts.
4990 (let ((scripts (assq 'scripts alist)))
4991 (when scripts
4992 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4993 ;; Startup options.
4994 (let ((startup (cdr (assq 'startup alist))))
4995 (dolist (option startup)
4996 (let ((entry (assoc-string option org-startup-options t)))
4997 (when entry
4998 (let ((var (nth 1 entry))
4999 (val (nth 2 entry)))
5000 (if (not (nth 3 entry)) (org-set-local var val)
5001 (unless (listp (symbol-value var))
5002 (org-set-local var nil))
5003 (add-to-list var val)))))))
5004 ;; TODO keywords.
5005 (org-set-local 'org-todo-kwd-alist nil)
5006 (org-set-local 'org-todo-key-alist nil)
5007 (org-set-local 'org-todo-key-trigger nil)
5008 (org-set-local 'org-todo-keywords-1 nil)
5009 (org-set-local 'org-done-keywords nil)
5010 (org-set-local 'org-todo-heads nil)
5011 (org-set-local 'org-todo-sets nil)
5012 (org-set-local 'org-todo-log-states nil)
5013 (let ((todo-sequences
5014 (or (nreverse (cdr (assq 'todo alist)))
5015 (let ((d (default-value 'org-todo-keywords)))
5016 (if (not (stringp (car d))) d
5017 ;; XXX: Backward compatibility code.
5018 (list (cons org-todo-interpretation d)))))))
5019 (dolist (sequence todo-sequences)
5020 (let* ((sequence (or (run-hook-with-args-until-success
5021 'org-todo-setup-filter-hook sequence)
5022 sequence))
5023 (sequence-type (car sequence))
5024 (keywords (cdr sequence))
5025 (sep (member "|" keywords))
5026 names alist)
5027 (dolist (k (remove "|" keywords))
5028 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5030 (error "Invalid TODO keyword %s" k))
5031 (let ((name (match-string 1 k))
5032 (key (match-string 2 k))
5033 (log (org-extract-log-state-settings k)))
5034 (push name names)
5035 (push (cons name (and key (string-to-char key))) alist)
5036 (when log (push log org-todo-log-states))))
5037 (let* ((names (nreverse names))
5038 (done (if sep (org-remove-keyword-keys (cdr sep))
5039 (last names)))
5040 (head (car names))
5041 (tail (list sequence-type head (car done) (org-last done))))
5042 (add-to-list 'org-todo-heads head 'append)
5043 (push names org-todo-sets)
5044 (setq org-done-keywords (append org-done-keywords done nil))
5045 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5046 (setq org-todo-key-alist
5047 (append org-todo-key-alist
5048 (and alist
5049 (append '((:startgroup))
5050 (nreverse alist)
5051 '((:endgroup))))))
5052 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5053 (setq org-todo-sets (nreverse org-todo-sets)
5054 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5055 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5056 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5057 ;; Compute the regular expressions and other local variables.
5058 ;; Using `org-outline-regexp-bol' would complicate them much,
5059 ;; because of the fixed white space at the end of that string.
5060 (if (not org-done-keywords)
5061 (setq org-done-keywords
5062 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5063 (setq org-not-done-keywords
5064 (org-delete-all org-done-keywords
5065 (copy-sequence org-todo-keywords-1))
5066 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5067 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5068 org-not-done-heading-regexp
5069 (format org-heading-keyword-regexp-format org-not-done-regexp)
5070 org-todo-line-regexp
5071 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5072 org-complex-heading-regexp
5073 (concat "^\\(\\*+\\)"
5074 "\\(?: +" org-todo-regexp "\\)?"
5075 "\\(?: +\\(\\[#.\\]\\)\\)?"
5076 "\\(?: +\\(.*?\\)\\)??"
5077 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5078 "[ \t]*$")
5079 org-complex-heading-regexp-format
5080 (concat "^\\(\\*+\\)"
5081 "\\(?: +" org-todo-regexp "\\)?"
5082 "\\(?: +\\(\\[#.\\]\\)\\)?"
5083 "\\(?: +"
5084 ;; Stats cookies can be stuck to body.
5085 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5086 "\\(%s\\)"
5087 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5088 "\\)"
5089 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5090 "[ \t]*$")
5091 org-todo-line-tags-regexp
5092 (concat "^\\(\\*+\\)"
5093 "\\(?: +" org-todo-regexp "\\)?"
5094 "\\(?: +\\(.*?\\)\\)??"
5095 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5096 "[ \t]*$"))
5097 (org-compute-latex-and-related-regexp)))))
5099 (defun org--setup-collect-keywords (regexp &optional files alist)
5100 "Return setup keywords values as an alist.
5102 REGEXP matches a subset of setup keywords. FILES is a list of
5103 file names already visited. It is used to avoid circular setup
5104 files. ALIST, when non-nil, is the alist computed so far.
5106 Return value contains the following keys: `archive', `category',
5107 `columns', `constants', `filetags', `link', `priorities',
5108 `property', `scripts', `startup', `tags' and `todo'."
5109 (org-with-wide-buffer
5110 (goto-char (point-min))
5111 (let ((case-fold-search t))
5112 (while (re-search-forward regexp nil t)
5113 (let ((element (org-element-at-point)))
5114 (when (eq (org-element-type element) 'keyword)
5115 (let ((key (org-element-property :key element))
5116 (value (org-element-property :value element)))
5117 (cond
5118 ((equal key "ARCHIVE")
5119 (when (org-string-nw-p value)
5120 (push (cons 'archive value) alist)))
5121 ((equal key "CATEGORY") (push (cons 'category value) alist))
5122 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5123 ((equal key "CONSTANTS")
5124 (let* ((constants (assq 'constants alist))
5125 (store (cdr constants)))
5126 (dolist (pair (org-split-string value))
5127 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5128 pair)
5129 (let* ((name (match-string 1 pair))
5130 (value (match-string 2 pair))
5131 (old (assoc name store)))
5132 (if old (setcdr old value)
5133 (push (cons name value) store)))))
5134 (if constants (setcdr constants store)
5135 (push (cons 'constants store) alist))))
5136 ((equal key "FILETAGS")
5137 (when (org-string-nw-p value)
5138 (let ((old (assq 'filetags alist))
5139 (new (apply #'nconc
5140 (mapcar (lambda (x) (org-split-string x ":"))
5141 (org-split-string value)))))
5142 (if old (setcdr old (append new (cdr old)))
5143 (push (cons 'filetags new) alist)))))
5144 ((equal key "LINK")
5145 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5146 (let ((links (assq 'link alist))
5147 (pair (cons (org-match-string-no-properties 1 value)
5148 (org-match-string-no-properties 2 value))))
5149 (if links (push pair (cdr links))
5150 (push (list 'link pair) alist)))))
5151 ((equal key "OPTIONS")
5152 (when (and (org-string-nw-p value)
5153 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5154 (push (cons 'scripts (read (match-string 1 value))) alist)))
5155 ((equal key "PRIORITIES")
5156 (push (cons 'priorities
5157 (let ((prio (org-split-string value)))
5158 (if (< (length prio) 3) '(?A ?C ?B)
5159 (mapcar #'string-to-char prio))))
5160 alist))
5161 ((equal key "PROPERTY")
5162 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5163 (let* ((property (assq 'property alist))
5164 (value (org--update-property-plist
5165 (org-match-string-no-properties 1 value)
5166 (org-match-string-no-properties 2 value)
5167 (cdr property))))
5168 (if property (setcdr property value)
5169 (push (cons 'property value) alist)))))
5170 ((equal key "STARTUP")
5171 (let ((startup (assq 'startup alist)))
5172 (if startup
5173 (setcdr startup
5174 (append (cdr startup) (org-split-string value)))
5175 (push (cons 'startup (org-split-string value)) alist))))
5176 ((equal key "TAGS")
5177 (let ((tag-cell (assq 'tags alist)))
5178 (if tag-cell
5179 (setcdr tag-cell
5180 (append (cdr tag-cell)
5181 '("\\n")
5182 (org-split-string value)))
5183 (push (cons 'tags (org-split-string value)) alist))))
5184 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5185 (let ((todo (assq 'todo alist))
5186 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5187 (org-split-string value))))
5188 (if todo (push value (cdr todo))
5189 (push (list 'todo value) alist))))
5190 ((equal key "SETUPFILE")
5191 (unless buffer-read-only ; Do not check in Gnus messages.
5192 (let ((f (and (org-string-nw-p value)
5193 (expand-file-name
5194 (org-remove-double-quotes value)))))
5195 (when (and f (file-readable-p f) (not (member f files)))
5196 (with-temp-buffer
5197 (insert-file-contents f)
5198 (setq alist
5199 ;; Fake Org mode to benefit from cache
5200 ;; without recurring needlessly.
5201 (let ((major-mode 'org-mode))
5202 (org--setup-collect-keywords
5203 regexp (cons f files) alist)))))))))))))))
5204 alist)
5206 (defun org--setup-process-tags (tags filetags)
5207 "Precompute variables used for tags.
5208 TAGS is a list of tags and tag group symbols, as strings.
5209 FILETAGS is a list of tags, as strings."
5210 ;; Process the file tags.
5211 (org-set-local 'org-file-tags
5212 (mapcar #'org-add-prop-inherited filetags))
5213 ;; Provide default tags if no local tags are found.
5214 (when (and (not tags) org-tag-alist)
5215 (setq tags
5216 (mapcar (lambda (tag)
5217 (case (car tag)
5218 (:startgroup "{")
5219 (:endgroup "}")
5220 (:startgrouptag "[")
5221 (:endgrouptag "]")
5222 (:grouptags ":")
5223 (:newline "\\n")
5224 (otherwise (concat (car tag)
5225 (and (characterp (cdr tag))
5226 (format "(%c)" (cdr tag)))))))
5227 org-tag-alist)))
5228 ;; Process the tags.
5229 (org-set-local 'org-tag-groups-alist nil)
5230 (org-set-local 'org-tag-alist nil)
5231 (let (group-flag)
5232 (while tags
5233 (let ((e (car tags)))
5234 (setq tags (cdr tags))
5235 (cond
5236 ((equal e "{")
5237 (push '(:startgroup) org-tag-alist)
5238 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5239 ((equal e "}")
5240 (push '(:endgroup) org-tag-alist)
5241 (setq group-flag nil))
5242 ((equal e "[")
5243 (push '(:startgrouptag) org-tag-alist)
5244 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5245 ((equal e "]")
5246 (push '(:endgrouptag) org-tag-alist)
5247 (setq group-flag nil))
5248 ((equal e ":")
5249 (push '(:grouptags) org-tag-alist)
5250 (setq group-flag 'append))
5251 ((equal e "\\n") (push '(:newline) org-tag-alist))
5252 ((string-match
5253 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5254 "\\|{.+?}\\)" ; regular expression
5255 "\\(?:(\\(.\\))\\)?\\'")) e)
5256 (let ((tag (match-string 1 e))
5257 (key (and (match-beginning 2)
5258 (string-to-char (match-string 2 e)))))
5259 (cond ((eq group-flag 'append)
5260 (setcar org-tag-groups-alist
5261 (append (car org-tag-groups-alist) (list tag))))
5262 (group-flag (push (list tag) org-tag-groups-alist)))
5263 ;; Push all tags in groups, no matter if they already exist.
5264 (unless (and (not group-flag) (assoc tag org-tag-alist))
5265 (push (cons tag key) org-tag-alist))))))))
5266 (setq org-tag-alist (nreverse org-tag-alist)))
5268 (defun org-file-contents (file &optional noerror)
5269 "Return the contents of FILE, as a string."
5270 (if (and file (file-readable-p file))
5271 (with-temp-buffer
5272 (insert-file-contents file)
5273 (buffer-string))
5274 (funcall (if noerror 'message 'error)
5275 "Cannot read file \"%s\"%s"
5276 file
5277 (let ((from (buffer-file-name (buffer-base-buffer))))
5278 (if from (concat " (referenced in file \"" from "\")") "")))))
5280 (defun org-extract-log-state-settings (x)
5281 "Extract the log state setting from a TODO keyword string.
5282 This will extract info from a string like \"WAIT(w@/!)\"."
5283 (let (kw key log1 log2)
5284 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5285 (setq kw (match-string 1 x)
5286 key (and (match-end 2) (match-string 2 x))
5287 log1 (and (match-end 3) (match-string 3 x))
5288 log2 (and (match-end 4) (match-string 4 x)))
5289 (and (or log1 log2)
5290 (list kw
5291 (and log1 (if (equal log1 "!") 'time 'note))
5292 (and log2 (if (equal log2 "!") 'time 'note)))))))
5294 (defun org-remove-keyword-keys (list)
5295 "Remove a pair of parenthesis at the end of each string in LIST."
5296 (mapcar (lambda (x)
5297 (if (string-match "(.*)$" x)
5298 (substring x 0 (match-beginning 0))
5300 list))
5302 (defun org-assign-fast-keys (alist)
5303 "Assign fast keys to a keyword-key alist.
5304 Respect keys that are already there."
5305 (let (new e (alt ?0))
5306 (while (setq e (pop alist))
5307 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5308 (cdr e)) ;; Key already assigned.
5309 (push e new)
5310 (let ((clist (string-to-list (downcase (car e))))
5311 (used (append new alist)))
5312 (when (= (car clist) ?@)
5313 (pop clist))
5314 (while (and clist (rassoc (car clist) used))
5315 (pop clist))
5316 (unless clist
5317 (while (rassoc alt used)
5318 (incf alt)))
5319 (push (cons (car e) (or (car clist) alt)) new))))
5320 (nreverse new)))
5322 ;;; Some variables used in various places
5324 (defvar org-window-configuration nil
5325 "Used in various places to store a window configuration.")
5326 (defvar org-selected-window nil
5327 "Used in various places to store a window configuration.")
5328 (defvar org-finish-function nil
5329 "Function to be called when `C-c C-c' is used.
5330 This is for getting out of special buffers like capture.")
5333 ;; FIXME: Occasionally check by commenting these, to make sure
5334 ;; no other functions uses these, forgetting to let-bind them.
5335 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5336 (defvar org-last-state)
5337 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5339 ;; Defined somewhere in this file, but used before definition.
5340 (defvar org-entities) ;; defined in org-entities.el
5341 (defvar org-struct-menu)
5342 (defvar org-org-menu)
5343 (defvar org-tbl-menu)
5345 ;;;; Define the Org-mode
5347 ;; We use a before-change function to check if a table might need
5348 ;; an update.
5349 (defvar org-table-may-need-update t
5350 "Indicates that a table might need an update.
5351 This variable is set by `org-before-change-function'.
5352 `org-table-align' sets it back to nil.")
5353 (defun org-before-change-function (beg end)
5354 "Every change indicates that a table might need an update."
5355 (setq org-table-may-need-update t))
5356 (defvar org-mode-map)
5357 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5358 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5359 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5360 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5361 (defvar org-table-buffer-is-an nil)
5363 (defvar bidi-paragraph-direction)
5364 (defvar buffer-face-mode-face)
5366 (require 'outline)
5367 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5368 (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"))
5369 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5371 ;; Other stuff we need.
5372 (require 'time-date)
5373 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5374 (require 'easymenu)
5375 (autoload 'easy-menu-add "easymenu")
5376 (require 'overlay)
5378 ;; (require 'org-macs) moved higher up in the file before it is first used
5379 (require 'org-entities)
5380 ;; (require 'org-compat) moved higher up in the file before it is first used
5381 (require 'org-faces)
5382 (require 'org-list)
5383 (require 'org-pcomplete)
5384 (require 'org-src)
5385 (require 'org-footnote)
5386 (require 'org-macro)
5388 ;; babel
5389 (require 'ob)
5391 ;;;###autoload
5392 (define-derived-mode org-mode outline-mode "Org"
5393 "Outline-based notes management and organizer, alias
5394 \"Carsten's outline-mode for keeping track of everything.\"
5396 Org-mode develops organizational tasks around a NOTES file which
5397 contains information about projects as plain text. Org-mode is
5398 implemented on top of outline-mode, which is ideal to keep the content
5399 of large files well structured. It supports ToDo items, deadlines and
5400 time stamps, which magically appear in the diary listing of the Emacs
5401 calendar. Tables are easily created with a built-in table editor.
5402 Plain text URL-like links connect to websites, emails (VM), Usenet
5403 messages (Gnus), BBDB entries, and any files related to the project.
5404 For printing and sharing of notes, an Org-mode file (or a part of it)
5405 can be exported as a structured ASCII or HTML file.
5407 The following commands are available:
5409 \\{org-mode-map}"
5411 ;; Get rid of Outline menus, they are not needed
5412 ;; Need to do this here because define-derived-mode sets up
5413 ;; the keymap so late. Still, it is a waste to call this each time
5414 ;; we switch another buffer into org-mode.
5415 (if (featurep 'xemacs)
5416 (when (boundp 'outline-mode-menu-heading)
5417 ;; Assume this is Greg's port, it uses easymenu
5418 (easy-menu-remove outline-mode-menu-heading)
5419 (easy-menu-remove outline-mode-menu-show)
5420 (easy-menu-remove outline-mode-menu-hide))
5421 (define-key org-mode-map [menu-bar headings] 'undefined)
5422 (define-key org-mode-map [menu-bar hide] 'undefined)
5423 (define-key org-mode-map [menu-bar show] 'undefined))
5425 (org-load-modules-maybe)
5426 (when (featurep 'xemacs)
5427 (easy-menu-add org-org-menu)
5428 (easy-menu-add org-tbl-menu))
5429 (org-install-agenda-files-menu)
5430 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5431 (add-to-invisibility-spec '(org-cwidth))
5432 (add-to-invisibility-spec '(org-hide-block . t))
5433 (when (featurep 'xemacs)
5434 (org-set-local 'line-move-ignore-invisible t))
5435 (org-set-local 'outline-regexp org-outline-regexp)
5436 (org-set-local 'outline-level 'org-outline-level)
5437 (setq bidi-paragraph-direction 'left-to-right)
5438 (when (and org-ellipsis
5439 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5440 (fboundp 'make-glyph-code))
5441 (unless org-display-table
5442 (setq org-display-table (make-display-table)))
5443 (set-display-table-slot
5444 org-display-table 4
5445 (vconcat (mapcar
5446 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5447 org-ellipsis)))
5448 (if (stringp org-ellipsis) org-ellipsis "..."))))
5449 (setq buffer-display-table org-display-table))
5450 (org-set-regexps-and-options)
5451 (org-set-font-lock-defaults)
5452 (when (and org-tag-faces (not org-tags-special-faces-re))
5453 ;; tag faces set outside customize.... force initialization.
5454 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5455 ;; Calc embedded
5456 (org-set-local 'calc-embedded-open-mode "# ")
5457 ;; Modify a few syntax entries
5458 (modify-syntax-entry ?@ "w")
5459 (modify-syntax-entry ?\" "\"")
5460 (modify-syntax-entry ?\\ "_")
5461 (modify-syntax-entry ?~ "_")
5462 (if org-startup-truncated (setq truncate-lines t))
5463 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5464 (org-set-local 'font-lock-unfontify-region-function
5465 'org-unfontify-region)
5466 ;; Activate before-change-function
5467 (org-set-local 'org-table-may-need-update t)
5468 (org-add-hook 'before-change-functions 'org-before-change-function nil
5469 'local)
5470 ;; Check for running clock before killing a buffer
5471 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5472 ;; Initialize macros templates.
5473 (org-macro-initialize-templates)
5474 ;; Initialize radio targets.
5475 (org-update-radio-target-regexp)
5476 ;; Indentation.
5477 (org-set-local 'indent-line-function 'org-indent-line)
5478 (org-set-local 'indent-region-function 'org-indent-region)
5479 ;; Filling and auto-filling.
5480 (org-setup-filling)
5481 ;; Comments.
5482 (org-setup-comments-handling)
5483 ;; Initialize cache.
5484 (org-element-cache-reset)
5485 ;; Beginning/end of defun
5486 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5487 (org-set-local 'end-of-defun-function
5488 (lambda ()
5489 (if (not (org-at-heading-p))
5490 (org-forward-element)
5491 (org-forward-element)
5492 (forward-char -1))))
5493 ;; Next error for sparse trees
5494 (org-set-local 'next-error-function 'org-occur-next-match)
5495 ;; Make sure dependence stuff works reliably, even for users who set it
5496 ;; too late :-(
5497 (if org-enforce-todo-dependencies
5498 (add-hook 'org-blocker-hook
5499 'org-block-todo-from-children-or-siblings-or-parent)
5500 (remove-hook 'org-blocker-hook
5501 'org-block-todo-from-children-or-siblings-or-parent))
5502 (if org-enforce-todo-checkbox-dependencies
5503 (add-hook 'org-blocker-hook
5504 'org-block-todo-from-checkboxes)
5505 (remove-hook 'org-blocker-hook
5506 'org-block-todo-from-checkboxes))
5508 ;; Align options lines
5509 (org-set-local
5510 'align-mode-rules-list
5511 '((org-in-buffer-settings
5512 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5513 (modes . '(org-mode)))))
5515 ;; Imenu
5516 (org-set-local 'imenu-create-index-function
5517 'org-imenu-get-tree)
5519 ;; Make isearch reveal context
5520 (if (or (featurep 'xemacs)
5521 (not (boundp 'outline-isearch-open-invisible-function)))
5522 ;; Emacs 21 and XEmacs make use of the hook
5523 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5524 ;; Emacs 22 deals with this through a special variable
5525 (org-set-local 'outline-isearch-open-invisible-function
5526 (lambda (&rest ignore) (org-show-context 'isearch))))
5528 ;; Setup the pcomplete hooks
5529 (set (make-local-variable 'pcomplete-command-completion-function)
5530 'org-pcomplete-initial)
5531 (set (make-local-variable 'pcomplete-command-name-function)
5532 'org-command-at-point)
5533 (set (make-local-variable 'pcomplete-default-completion-function)
5534 'ignore)
5535 (set (make-local-variable 'pcomplete-parse-arguments-function)
5536 'org-parse-arguments)
5537 (set (make-local-variable 'pcomplete-termination-string) "")
5538 (when (>= emacs-major-version 23)
5539 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5541 ;; If empty file that did not turn on org-mode automatically, make it to.
5542 (if (and org-insert-mode-line-in-empty-file
5543 (org-called-interactively-p 'any)
5544 (= (point-min) (point-max)))
5545 (insert "# -*- mode: org -*-\n\n"))
5546 (unless org-inhibit-startup
5547 (org-unmodified
5548 (and org-startup-with-beamer-mode (org-beamer-mode))
5549 (when org-startup-align-all-tables
5550 (org-table-map-tables 'org-table-align 'quietly))
5551 (when org-startup-with-inline-images
5552 (org-display-inline-images))
5553 (when org-startup-with-latex-preview
5554 (org-toggle-latex-fragment))
5555 (unless org-inhibit-startup-visibility-stuff
5556 (org-set-startup-visibility))
5557 (org-refresh-effort-properties)))
5558 ;; Try to set org-hide correctly
5559 (let ((foreground (org-find-invisible-foreground)))
5560 (if foreground
5561 (set-face-foreground 'org-hide foreground))))
5563 ;; Update `customize-package-emacs-version-alist'
5564 (add-to-list 'customize-package-emacs-version-alist
5565 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5566 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5567 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5569 (defvar org-mode-transpose-word-syntax-table
5570 (let ((st (make-syntax-table text-mode-syntax-table)))
5571 (mapc (lambda(c) (modify-syntax-entry
5572 (string-to-char (car c)) "w p" st))
5573 org-emphasis-alist)
5574 st))
5576 (when (fboundp 'abbrev-table-put)
5577 (abbrev-table-put org-mode-abbrev-table
5578 :parents (list text-mode-abbrev-table)))
5580 (defun org-find-invisible-foreground ()
5581 (let ((candidates (remove
5582 "unspecified-bg"
5583 (nconc
5584 (list (face-background 'default)
5585 (face-background 'org-default))
5586 (mapcar
5587 (lambda (alist)
5588 (when (boundp alist)
5589 (cdr (assoc 'background-color (symbol-value alist)))))
5590 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5591 (list (face-foreground 'org-hide))))))
5592 (car (remove nil candidates))))
5594 (defun org-current-time (&optional rounding-minutes past)
5595 "Current time, possibly rounded to ROUNDING-MINUTES.
5596 When ROUNDING-MINUTES is not an integer, fall back on the car of
5597 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5598 the rounding returns a past time."
5599 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5600 (car org-time-stamp-rounding-minutes)))
5601 (time (decode-time)) res)
5602 (if (< r 1)
5603 (current-time)
5604 (setq res
5605 (apply 'encode-time
5606 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5607 (nthcdr 2 time))))
5608 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5609 (seconds-to-time (- (org-float-time res) (* r 60)))
5610 res))))
5612 (defun org-today ()
5613 "Return today date, considering `org-extend-today-until'."
5614 (time-to-days
5615 (time-subtract (current-time)
5616 (list 0 (* 3600 org-extend-today-until) 0))))
5618 ;;;; Font-Lock stuff, including the activators
5620 (defvar org-mouse-map (make-sparse-keymap))
5621 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5622 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5623 (when org-mouse-1-follows-link
5624 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5625 (when org-tab-follows-link
5626 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5627 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5629 (require 'font-lock)
5631 (defconst org-non-link-chars "]\t\n\r<>")
5632 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5633 "file+sys" "news" "shell" "elisp" "doi" "message"
5634 "help"))
5635 (defvar org-link-types-re nil
5636 "Matches a link that has a url-like prefix like \"http:\"")
5637 (defvar org-link-re-with-space nil
5638 "Matches a link with spaces, optional angular brackets around it.")
5639 (defvar org-link-re-with-space2 nil
5640 "Matches a link with spaces, optional angular brackets around it.")
5641 (defvar org-link-re-with-space3 nil
5642 "Matches a link with spaces, only for internal part in bracket links.")
5643 (defvar org-angle-link-re nil
5644 "Matches link with angular brackets, spaces are allowed.")
5645 (defvar org-plain-link-re nil
5646 "Matches plain link, without spaces.")
5647 (defvar org-bracket-link-regexp nil
5648 "Matches a link in double brackets.")
5649 (defvar org-bracket-link-analytic-regexp nil
5650 "Regular expression used to analyze links.
5651 Here is what the match groups contain after a match:
5652 1: http:
5653 2: http
5654 3: path
5655 4: [desc]
5656 5: desc")
5657 (defvar org-bracket-link-analytic-regexp++ nil
5658 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5659 (defvar org-any-link-re nil
5660 "Regular expression matching any link.")
5662 (defconst org-match-sexp-depth 3
5663 "Number of stacked braces for sub/superscript matching.")
5665 (defun org-create-multibrace-regexp (left right n)
5666 "Create a regular expression which will match a balanced sexp.
5667 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5668 as single character strings.
5669 The regexp returned will match the entire expression including the
5670 delimiters. It will also define a single group which contains the
5671 match except for the outermost delimiters. The maximum depth of
5672 stacked delimiters is N. Escaping delimiters is not possible."
5673 (let* ((nothing (concat "[^" left right "]*?"))
5674 (or "\\|")
5675 (re nothing)
5676 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5677 (while (> n 1)
5678 (setq n (1- n)
5679 re (concat re or next)
5680 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5681 (concat left "\\(" re "\\)" right)))
5683 (defconst org-match-substring-regexp
5684 (concat
5685 "\\(\\S-\\)\\([_^]\\)\\("
5686 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5687 "\\|"
5688 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5689 "\\|"
5690 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5691 "The regular expression matching a sub- or superscript.")
5693 (defconst org-match-substring-with-braces-regexp
5694 (concat
5695 "\\(\\S-\\)\\([_^]\\)"
5696 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5697 "The regular expression matching a sub- or superscript, forcing braces.")
5699 (defun org-make-link-regexps ()
5700 "Update the link regular expressions.
5701 This should be called after the variable `org-link-types' has changed."
5702 (let ((types-re (regexp-opt org-link-types t)))
5703 (setq org-link-types-re
5704 (concat "\\`" types-re ":")
5705 org-link-re-with-space
5706 (concat "<?" types-re ":"
5707 "\\([^" org-non-link-chars " ]"
5708 "[^" org-non-link-chars "]*"
5709 "[^" org-non-link-chars " ]\\)>?")
5710 org-link-re-with-space2
5711 (concat "<?" types-re ":"
5712 "\\([^" org-non-link-chars " ]"
5713 "[^\t\n\r]*"
5714 "[^" org-non-link-chars " ]\\)>?")
5715 org-link-re-with-space3
5716 (concat "<?" types-re ":"
5717 "\\([^" org-non-link-chars " ]"
5718 "[^\t\n\r]*\\)")
5719 org-angle-link-re
5720 (format "<%s:\\([^>\n]*\\(?:\n[ \t]*[^> \t\n][^>\n]*\\)*\\)>"
5721 types-re)
5722 org-plain-link-re
5723 (concat
5724 "\\<" types-re ":"
5725 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5726 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5727 org-bracket-link-regexp
5728 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5729 org-bracket-link-analytic-regexp
5730 (concat
5731 "\\[\\["
5732 "\\(" types-re ":\\)?"
5733 "\\([^]]+\\)"
5734 "\\]"
5735 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5736 "\\]")
5737 org-bracket-link-analytic-regexp++
5738 (concat
5739 "\\[\\["
5740 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5741 "\\([^]]+\\)"
5742 "\\]"
5743 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5744 "\\]")
5745 org-any-link-re
5746 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5747 org-angle-link-re "\\)\\|\\("
5748 org-plain-link-re "\\)"))))
5750 (org-make-link-regexps)
5752 (defvar org-emph-face nil)
5754 (defun org-do-emphasis-faces (limit)
5755 "Run through the buffer and emphasize strings."
5756 (let (rtn a)
5757 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5758 (let* ((border (char-after (match-beginning 3)))
5759 (bre (regexp-quote (char-to-string border))))
5760 (if (and (not (= border (char-after (match-beginning 4))))
5761 (not (save-match-data
5762 (string-match (concat bre ".*" bre)
5763 (replace-regexp-in-string
5764 "\n" " "
5765 (substring (match-string 2) 1 -1))))))
5766 (progn
5767 (setq rtn t)
5768 (setq a (assoc (match-string 3) org-emphasis-alist))
5769 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5770 'face
5771 (nth 1 a))
5772 (and (nth 2 a)
5773 (org-remove-flyspell-overlays-in
5774 (match-beginning 0) (match-end 0)))
5775 (add-text-properties (match-beginning 2) (match-end 2)
5776 '(font-lock-multiline t org-emphasis t))
5777 (when org-hide-emphasis-markers
5778 (add-text-properties (match-end 4) (match-beginning 5)
5779 '(invisible org-link))
5780 (add-text-properties (match-beginning 3) (match-end 3)
5781 '(invisible org-link))))))
5782 (goto-char (1+ (match-beginning 0))))
5783 rtn))
5785 (defun org-emphasize (&optional char)
5786 "Insert or change an emphasis, i.e. a font like bold or italic.
5787 If there is an active region, change that region to a new emphasis.
5788 If there is no region, just insert the marker characters and position
5789 the cursor between them.
5790 CHAR should be the marker character. If it is a space, it means to
5791 remove the emphasis of the selected region.
5792 If CHAR is not given (for example in an interactive call) it will be
5793 prompted for."
5794 (interactive)
5795 (let ((erc org-emphasis-regexp-components)
5796 (prompt "")
5797 (string "") beg end move c s)
5798 (if (org-region-active-p)
5799 (setq beg (region-beginning) end (region-end)
5800 string (buffer-substring beg end))
5801 (setq move t))
5803 (unless char
5804 (message "Emphasis marker or tag: [%s]"
5805 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5806 (setq char (read-char-exclusive)))
5807 (if (equal char ?\ )
5808 (setq s "" move nil)
5809 (unless (assoc (char-to-string char) org-emphasis-alist)
5810 (user-error "No such emphasis marker: \"%c\"" char))
5811 (setq s (char-to-string char)))
5812 (while (and (> (length string) 1)
5813 (equal (substring string 0 1) (substring string -1))
5814 (assoc (substring string 0 1) org-emphasis-alist))
5815 (setq string (substring string 1 -1)))
5816 (setq string (concat s string s))
5817 (if beg (delete-region beg end))
5818 (unless (or (bolp)
5819 (string-match (concat "[" (nth 0 erc) "\n]")
5820 (char-to-string (char-before (point)))))
5821 (insert " "))
5822 (unless (or (eobp)
5823 (string-match (concat "[" (nth 1 erc) "\n]")
5824 (char-to-string (char-after (point)))))
5825 (insert " ") (backward-char 1))
5826 (insert string)
5827 (and move (backward-char 1))))
5829 (defconst org-nonsticky-props
5830 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5832 (defsubst org-rear-nonsticky-at (pos)
5833 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5835 (defun org-activate-plain-links (limit)
5836 "Add link properties for plain links."
5837 (let (f hl)
5838 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5839 (not (member 'org-tag
5840 (get-text-property (1- (match-beginning 0)) 'face)))
5841 (not (org-in-src-block-p)))
5842 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5843 (setq f (get-text-property (match-beginning 0) 'face))
5844 (setq hl (org-match-string-no-properties 0))
5845 (if (or (eq f 'org-tag)
5846 (and (listp f) (memq 'org-tag f)))
5848 (add-text-properties (match-beginning 0) (match-end 0)
5849 (list 'mouse-face 'highlight
5850 'face 'org-link
5851 'htmlize-link `(:uri ,hl)
5852 'keymap org-mouse-map))
5853 (org-rear-nonsticky-at (match-end 0)))
5854 t)))
5856 (defun org-activate-code (limit)
5857 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5858 (progn
5859 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5860 (remove-text-properties (match-beginning 0) (match-end 0)
5861 '(display t invisible t intangible t))
5862 t)))
5864 (defcustom org-src-fontify-natively t
5865 "When non-nil, fontify code in code blocks."
5866 :type 'boolean
5867 :version "24.4"
5868 :package-version '(Org . "8.3")
5869 :group 'org-appearance
5870 :group 'org-babel)
5872 (defcustom org-allow-promoting-top-level-subtree nil
5873 "When non-nil, allow promoting a top level subtree.
5874 The leading star of the top level headline will be replaced
5875 by a #."
5876 :type 'boolean
5877 :version "24.1"
5878 :group 'org-appearance)
5880 (defun org-fontify-meta-lines-and-blocks (limit)
5881 (condition-case nil
5882 (org-fontify-meta-lines-and-blocks-1 limit)
5883 (error (message "org-mode fontification error"))))
5885 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5886 "Fontify #+ lines and blocks."
5887 (let ((case-fold-search t))
5888 (if (re-search-forward
5889 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5890 limit t)
5891 (let ((beg (match-beginning 0))
5892 (block-start (match-end 0))
5893 (block-end nil)
5894 (lang (match-string 7))
5895 (beg1 (line-beginning-position 2))
5896 (dc1 (downcase (match-string 2)))
5897 (dc3 (downcase (match-string 3)))
5898 end end1 quoting block-type ovl)
5899 (cond
5900 ((and (match-end 4) (equal dc3 "+begin"))
5901 ;; Truly a block
5902 (setq block-type (downcase (match-string 5))
5903 quoting (member block-type org-protecting-blocks))
5904 (when (re-search-forward
5905 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5906 nil t) ;; on purpose, we look further than LIMIT
5907 (setq end (min (point-max) (match-end 0))
5908 end1 (min (point-max) (1- (match-beginning 0))))
5909 (setq block-end (match-beginning 0))
5910 (when quoting
5911 (org-remove-flyspell-overlays-in beg1 end1)
5912 (remove-text-properties beg end
5913 '(display t invisible t intangible t)))
5914 (add-text-properties
5915 beg end '(font-lock-fontified t font-lock-multiline t))
5916 (add-text-properties beg beg1 '(face org-meta-line))
5917 (org-remove-flyspell-overlays-in beg beg1)
5918 (add-text-properties ; For end_src
5919 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5920 (org-remove-flyspell-overlays-in end1 end)
5921 (cond
5922 ((and lang (not (string= lang "")) org-src-fontify-natively)
5923 (org-src-font-lock-fontify-block lang block-start block-end)
5924 (add-text-properties beg1 block-end '(src-block t)))
5925 (quoting
5926 (add-text-properties beg1 (min (point-max) (1+ end1))
5927 '(face org-block))) ; end of source block
5928 ((not org-fontify-quote-and-verse-blocks))
5929 ((string= block-type "quote")
5930 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5931 ((string= block-type "verse")
5932 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5933 (add-text-properties beg beg1 '(face org-block-begin-line))
5934 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5935 '(face org-block-end-line))
5937 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5938 (org-remove-flyspell-overlays-in
5939 (match-beginning 0)
5940 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5941 (add-text-properties
5942 beg (match-end 3)
5943 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5944 '(font-lock-fontified t invisible t)
5945 '(font-lock-fontified t face org-document-info-keyword)))
5946 (add-text-properties
5947 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5948 (if (string-equal dc1 "+title:")
5949 '(font-lock-fontified t face org-document-title)
5950 '(font-lock-fontified t face org-document-info))))
5951 ((equal dc1 "+caption:")
5952 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5953 (remove-text-properties (match-beginning 0) (match-end 0)
5954 '(display t invisible t intangible t))
5955 (add-text-properties (match-beginning 1) (match-end 3)
5956 '(font-lock-fontified t face org-meta-line))
5957 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5958 '(font-lock-fontified t face org-block))
5960 ((member dc3 '(" " ""))
5961 (org-remove-flyspell-overlays-in beg (match-end 0))
5962 (add-text-properties
5963 beg (match-end 0)
5964 '(font-lock-fontified t face font-lock-comment-face)))
5965 (t ;; just any other in-buffer setting, but not indented
5966 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5967 (remove-text-properties (match-beginning 0) (match-end 0)
5968 '(display t invisible t intangible t))
5969 (add-text-properties beg (match-end 0)
5970 '(font-lock-fontified t face org-meta-line))
5971 t))))))
5973 (defun org-fontify-drawers (limit)
5974 "Fontify drawers."
5975 (when (re-search-forward org-drawer-regexp limit t)
5976 (add-text-properties
5977 (match-beginning 0) (match-end 0)
5978 '(font-lock-fontified t face org-special-keyword))
5979 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5982 (defun org-fontify-macros (limit)
5983 "Fontify macros."
5984 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5985 (add-text-properties
5986 (match-beginning 0) (match-end 0)
5987 '(font-lock-fontified t face org-macro))
5988 (when org-hide-macro-markers
5989 (add-text-properties (match-end 2) (match-beginning 2)
5990 '(invisible t))
5991 (add-text-properties (match-beginning 1) (match-end 1)
5992 '(invisible t)))
5993 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5996 (defun org-activate-angle-links (limit)
5997 "Add text properties for angle links."
5998 (if (and (re-search-forward org-angle-link-re limit t)
5999 (not (org-in-src-block-p)))
6000 (progn
6001 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6002 (add-text-properties (match-beginning 0) (match-end 0)
6003 (list 'mouse-face 'highlight
6004 'keymap org-mouse-map
6005 'font-lock-multiline t))
6006 (org-rear-nonsticky-at (match-end 0))
6007 t)))
6009 (defun org-activate-footnote-links (limit)
6010 "Add text properties for footnotes."
6011 (let ((fn (org-footnote-next-reference-or-definition limit)))
6012 (when fn
6013 (let* ((beg (nth 1 fn))
6014 (end (nth 2 fn))
6015 (label (car fn))
6016 (referencep (/= (line-beginning-position) beg)))
6017 (when (and referencep (nth 3 fn))
6018 (save-excursion
6019 (goto-char beg)
6020 (search-forward (or label "fn:"))
6021 (org-remove-flyspell-overlays-in beg (match-end 0))))
6022 (add-text-properties beg end
6023 (list 'mouse-face 'highlight
6024 'keymap org-mouse-map
6025 'help-echo
6026 (if referencep "Footnote reference"
6027 "Footnote definition")
6028 'font-lock-fontified t
6029 'font-lock-multiline t
6030 'face 'org-footnote))))))
6032 (defun org-activate-bracket-links (limit)
6033 "Add text properties for bracketed links."
6034 (if (and (re-search-forward org-bracket-link-regexp limit t)
6035 (not (org-in-src-block-p)))
6036 (let* ((hl (org-match-string-no-properties 1))
6037 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6038 (ip (org-maybe-intangible
6039 (list 'invisible 'org-link
6040 'keymap org-mouse-map 'mouse-face 'highlight
6041 'font-lock-multiline t 'help-echo help
6042 'htmlize-link `(:uri ,hl))))
6043 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6044 'font-lock-multiline t 'help-echo help
6045 'htmlize-link `(:uri ,hl))))
6046 ;; We need to remove the invisible property here. Table narrowing
6047 ;; may have made some of this invisible.
6048 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6049 (remove-text-properties (match-beginning 0) (match-end 0)
6050 '(invisible nil))
6051 (if (match-end 3)
6052 (progn
6053 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6054 (org-rear-nonsticky-at (match-beginning 3))
6055 (add-text-properties (match-beginning 3) (match-end 3) vp)
6056 (org-rear-nonsticky-at (match-end 3))
6057 (add-text-properties (match-end 3) (match-end 0) ip)
6058 (org-rear-nonsticky-at (match-end 0)))
6059 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6060 (org-rear-nonsticky-at (match-beginning 1))
6061 (add-text-properties (match-beginning 1) (match-end 1) vp)
6062 (org-rear-nonsticky-at (match-end 1))
6063 (add-text-properties (match-end 1) (match-end 0) ip)
6064 (org-rear-nonsticky-at (match-end 0)))
6065 t)))
6067 (defun org-activate-dates (limit)
6068 "Add text properties for dates."
6069 (if (and (re-search-forward org-tsr-regexp-both limit t)
6070 (not (equal (char-before (match-beginning 0)) 91)))
6071 (progn
6072 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6073 (add-text-properties (match-beginning 0) (match-end 0)
6074 (list 'mouse-face 'highlight
6075 'keymap org-mouse-map))
6076 (org-rear-nonsticky-at (match-end 0))
6077 (when org-display-custom-times
6078 (if (match-end 3)
6079 (org-display-custom-time (match-beginning 3) (match-end 3)))
6080 (org-display-custom-time (match-beginning 1) (match-end 1)))
6081 t)))
6083 (defvar org-target-link-regexp nil
6084 "Regular expression matching radio targets in plain text.")
6085 (make-variable-buffer-local 'org-target-link-regexp)
6087 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6088 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6089 border border border))
6090 "Regular expression matching a link target.")
6092 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6093 "Regular expression matching a radio target.")
6095 (defconst org-any-target-regexp
6096 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6097 "Regular expression matching any target.")
6099 (defun org-activate-target-links (limit)
6100 "Add text properties for target matches."
6101 (when org-target-link-regexp
6102 (let ((case-fold-search t))
6103 (if (re-search-forward org-target-link-regexp limit t)
6104 (progn
6105 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6106 (add-text-properties (match-beginning 1) (match-end 1)
6107 (list 'mouse-face 'highlight
6108 'keymap org-mouse-map
6109 'help-echo "Radio target link"
6110 'org-linked-text t))
6111 (org-rear-nonsticky-at (match-end 1))
6112 t)))))
6114 (defun org-update-radio-target-regexp ()
6115 "Find all radio targets in this file and update the regular expression.
6116 Also refresh fontification if needed."
6117 (interactive)
6118 (let ((old-regexp org-target-link-regexp)
6119 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6120 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6121 (targets
6122 (org-with-wide-buffer
6123 (goto-char (point-min))
6124 (let (rtn)
6125 (while (re-search-forward org-radio-target-regexp nil t)
6126 ;; Make sure point is really within the object.
6127 (backward-char)
6128 (let ((obj (org-element-context)))
6129 (when (eq (org-element-type obj) 'radio-target)
6130 (add-to-list 'rtn (org-element-property :value obj)))))
6131 rtn))))
6132 (setq org-target-link-regexp
6133 (and targets
6134 (concat before-re
6135 (mapconcat
6136 (lambda (x)
6137 (replace-regexp-in-string
6138 " +" "\\s-+" (regexp-quote x) t t))
6139 targets
6140 "\\|")
6141 after-re)))
6142 (unless (equal old-regexp org-target-link-regexp)
6143 ;; Clean-up cache.
6144 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6145 ((not org-target-link-regexp) old-regexp)
6147 (concat before-re
6148 (mapconcat
6149 (lambda (re)
6150 (substring re (length before-re)
6151 (- (length after-re))))
6152 (list old-regexp org-target-link-regexp)
6153 "\\|")
6154 after-re)))))
6155 (org-with-wide-buffer
6156 (goto-char (point-min))
6157 (while (re-search-forward regexp nil t)
6158 (org-element-cache-refresh (match-beginning 1)))))
6159 ;; Re fontify buffer.
6160 (when (memq 'radio org-highlight-links)
6161 (org-restart-font-lock)))))
6163 (defun org-hide-wide-columns (limit)
6164 (let (s e)
6165 (setq s (text-property-any (point) (or limit (point-max))
6166 'org-cwidth t))
6167 (when s
6168 (setq e (next-single-property-change s 'org-cwidth))
6169 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6170 (goto-char e)
6171 t)))
6173 (defvar org-latex-and-related-regexp nil
6174 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6176 (defun org-compute-latex-and-related-regexp ()
6177 "Compute regular expression for LaTeX, entities and sub/superscript.
6178 Result depends on variable `org-highlight-latex-and-related'."
6179 (org-set-local
6180 'org-latex-and-related-regexp
6181 (let* ((re-sub
6182 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6183 ((eq org-use-sub-superscripts '{})
6184 (list org-match-substring-with-braces-regexp))
6185 (org-use-sub-superscripts (list org-match-substring-regexp))))
6186 (re-latex
6187 (when (memq 'latex org-highlight-latex-and-related)
6188 (let ((matchers (plist-get org-format-latex-options :matchers)))
6189 (delq nil
6190 (mapcar (lambda (x)
6191 (and (member (car x) matchers) (nth 1 x)))
6192 org-latex-regexps)))))
6193 (re-entities
6194 (when (memq 'entities org-highlight-latex-and-related)
6195 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6196 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6198 (defun org-do-latex-and-related (limit)
6199 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6200 LIMIT bounds the search for syntax to highlight. Stop at first
6201 highlighted object, if any. Return t if some highlighting was
6202 done, nil otherwise."
6203 (when (org-string-nw-p org-latex-and-related-regexp)
6204 (catch 'found
6205 (while (re-search-forward org-latex-and-related-regexp limit t)
6206 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6207 'face))
6208 '(org-code org-verbatim underline))
6209 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6210 '(?_ ?^))
6212 0)))
6213 (font-lock-prepend-text-property
6214 (+ offset (match-beginning 0)) (match-end 0)
6215 'face 'org-latex-and-related)
6216 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6217 '(font-lock-multiline t)))
6218 (throw 'found t)))
6219 nil)))
6221 (defun org-restart-font-lock ()
6222 "Restart `font-lock-mode', to force refontification."
6223 (when (and (boundp 'font-lock-mode) font-lock-mode)
6224 (font-lock-mode -1)
6225 (font-lock-mode 1)))
6227 (defun org-activate-tags (limit)
6228 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6229 (progn
6230 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6231 (add-text-properties (match-beginning 1) (match-end 1)
6232 (list 'mouse-face 'highlight
6233 'keymap org-mouse-map))
6234 (org-rear-nonsticky-at (match-end 1))
6235 t)))
6237 (defun org-outline-level ()
6238 "Compute the outline level of the heading at point.
6240 If this is called at a normal headline, the level is the number
6241 of stars. Use `org-reduced-level' to remove the effect of
6242 `org-odd-levels'. Unlike to `org-current-level', this function
6243 takes into consideration inlinetasks."
6244 (org-with-wide-buffer
6245 (end-of-line)
6246 (if (re-search-backward org-outline-regexp-bol nil t)
6247 (1- (- (match-end 0) (match-beginning 0)))
6248 0)))
6250 (defvar org-font-lock-keywords nil)
6252 (defsubst org-re-property (property &optional literal allow-null value)
6253 "Return a regexp matching a PROPERTY line.
6255 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6256 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6257 non-nil, match properties even without a value.
6259 Match group 3 is set to the value when it exists. If there is no
6260 value and ALLOW-NULL is non-nil, it is set to the empty string.
6262 With optional argument VALUE, match only property lines with
6263 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6264 unless LITERAL is non-nil."
6265 (concat
6266 "^\\(?4:[ \t]*\\)"
6267 (format "\\(?1::\\(?2:%s\\):\\)"
6268 (if literal property (regexp-quote property)))
6269 (cond (value
6270 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6271 (if literal value (regexp-quote value))))
6272 (allow-null
6273 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6275 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6277 (defconst org-property-re
6278 (org-re-property "\\S-+" 'literal t)
6279 "Regular expression matching a property line.
6280 There are four matching groups:
6281 1: :PROPKEY: including the leading and trailing colon,
6282 2: PROPKEY without the leading and trailing colon,
6283 3: PROPVAL without leading or trailing spaces,
6284 4: the indentation of the current line,
6285 5: trailing whitespace.")
6287 (defvar org-font-lock-hook nil
6288 "Functions to be called for special font lock stuff.")
6290 (defvar org-font-lock-set-keywords-hook nil
6291 "Functions that can manipulate `org-font-lock-extra-keywords'.
6292 This is called after `org-font-lock-extra-keywords' is defined, but before
6293 it is installed to be used by font lock. This can be useful if something
6294 needs to be inserted at a specific position in the font-lock sequence.")
6296 (defun org-font-lock-hook (limit)
6297 "Run `org-font-lock-hook' within LIMIT."
6298 (run-hook-with-args 'org-font-lock-hook limit))
6300 (defun org-set-font-lock-defaults ()
6301 "Set font lock defaults for the current buffer."
6302 (let* ((em org-fontify-emphasized-text)
6303 (lk org-highlight-links)
6304 (org-font-lock-extra-keywords
6305 (list
6306 ;; Call the hook
6307 '(org-font-lock-hook)
6308 ;; Headlines
6309 `(,(if org-fontify-whole-heading-line
6310 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6311 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6312 (1 (org-get-level-face 1))
6313 (2 (org-get-level-face 2))
6314 (3 (org-get-level-face 3)))
6315 ;; Table lines
6316 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6317 (1 'org-table t))
6318 ;; Table internals
6319 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6320 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6321 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6322 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6323 ;; Drawers
6324 '(org-fontify-drawers)
6325 ;; Properties
6326 (list org-property-re
6327 '(1 'org-special-keyword t)
6328 '(3 'org-property-value t))
6329 ;; Links
6330 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6331 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6332 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6333 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6334 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6335 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6336 (if (memq 'footnote lk) '(org-activate-footnote-links))
6337 ;; Targets.
6338 (list org-any-target-regexp '(0 'org-target t))
6339 ;; Diary sexps.
6340 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6341 ;; Macro
6342 '(org-fontify-macros)
6343 '(org-hide-wide-columns (0 nil append))
6344 ;; TODO keyword
6345 (list (format org-heading-keyword-regexp-format
6346 org-todo-regexp)
6347 '(2 (org-get-todo-face 2) t))
6348 ;; DONE
6349 (if org-fontify-done-headline
6350 (list (format org-heading-keyword-regexp-format
6351 (concat
6352 "\\(?:"
6353 (mapconcat 'regexp-quote org-done-keywords "\\|")
6354 "\\)"))
6355 '(2 'org-headline-done t))
6356 nil)
6357 ;; Priorities
6358 '(org-font-lock-add-priority-faces)
6359 ;; Tags
6360 '(org-font-lock-add-tag-faces)
6361 ;; Tags groups
6362 (if (and org-group-tags org-tag-groups-alist)
6363 (list (concat org-outline-regexp-bol ".+\\(:"
6364 (regexp-opt (mapcar 'car org-tag-groups-alist))
6365 ":\\).*$")
6366 '(1 'org-tag-group prepend)))
6367 ;; Special keywords
6368 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6369 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6370 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6371 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6372 ;; Emphasis
6373 (if em
6374 (if (featurep 'xemacs)
6375 '(org-do-emphasis-faces (0 nil append))
6376 '(org-do-emphasis-faces)))
6377 ;; Checkboxes
6378 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6379 1 'org-checkbox prepend)
6380 (if (cdr (assq 'checkbox org-list-automatic-rules))
6381 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6382 (0 (org-get-checkbox-statistics-face) t)))
6383 ;; Description list items
6384 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6385 1 'org-list-dt prepend)
6386 ;; ARCHIVEd headings
6387 (list (concat
6388 org-outline-regexp-bol
6389 "\\(.*:" org-archive-tag ":.*\\)")
6390 '(1 'org-archived prepend))
6391 ;; Specials
6392 '(org-do-latex-and-related)
6393 '(org-fontify-entities)
6394 '(org-raise-scripts)
6395 ;; Code
6396 '(org-activate-code (1 'org-code t))
6397 ;; COMMENT
6398 (list (format
6399 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6400 org-todo-regexp
6401 org-comment-string)
6402 '(9 'org-special-keyword t))
6403 ;; Blocks and meta lines
6404 '(org-fontify-meta-lines-and-blocks))))
6405 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6406 (run-hooks 'org-font-lock-set-keywords-hook)
6407 ;; Now set the full font-lock-keywords
6408 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6409 (org-set-local 'font-lock-defaults
6410 '(org-font-lock-keywords t nil nil backward-paragraph))
6411 (kill-local-variable 'font-lock-keywords) nil))
6413 (defun org-toggle-pretty-entities ()
6414 "Toggle the composition display of entities as UTF8 characters."
6415 (interactive)
6416 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6417 (org-restart-font-lock)
6418 (if org-pretty-entities
6419 (message "Entities are now displayed as UTF8 characters")
6420 (save-restriction
6421 (widen)
6422 (org-decompose-region (point-min) (point-max))
6423 (message "Entities are now displayed as plain text"))))
6425 (defvar org-custom-properties-overlays nil
6426 "List of overlays used for custom properties.")
6427 (make-variable-buffer-local 'org-custom-properties-overlays)
6429 (defun org-toggle-custom-properties-visibility ()
6430 "Display or hide properties in `org-custom-properties'."
6431 (interactive)
6432 (if org-custom-properties-overlays
6433 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6434 (setq org-custom-properties-overlays nil))
6435 (when org-custom-properties
6436 (org-with-wide-buffer
6437 (goto-char (point-min))
6438 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6439 (while (re-search-forward regexp nil t)
6440 (let ((end (cdr (save-match-data (org-get-property-block)))))
6441 (when (and end (< (point) end))
6442 ;; Hide first custom property in current drawer.
6443 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6444 (overlay-put o 'invisible t)
6445 (overlay-put o 'org-custom-property t)
6446 (push o org-custom-properties-overlays))
6447 ;; Hide additional custom properties in the same drawer.
6448 (while (re-search-forward regexp end t)
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 ;; Each entry is limited to a single property drawer.
6454 (outline-next-heading)))))))
6456 (defun org-fontify-entities (limit)
6457 "Find an entity to fontify."
6458 (let (ee)
6459 (when org-pretty-entities
6460 (catch 'match
6461 ;; "\_ "-family is left out on purpose. Only the first one,
6462 ;; i.e., "\_ ", could be fontified anyway, and it would be
6463 ;; confusing when adding a second white space character.
6464 (while (re-search-forward
6465 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6466 limit t)
6467 (if (and (not (org-at-comment-p))
6468 (setq ee (org-entity-get (match-string 1)))
6469 (= (length (nth 6 ee)) 1))
6470 (let*
6471 ((end (if (equal (match-string 2) "{}")
6472 (match-end 2)
6473 (match-end 1))))
6474 (add-text-properties
6475 (match-beginning 0) end
6476 (list 'font-lock-fontified t))
6477 (compose-region (match-beginning 0) end
6478 (nth 6 ee) nil)
6479 (backward-char 1)
6480 (throw 'match t))))
6481 nil))))
6483 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6484 "Fontify string S like in Org-mode."
6485 (with-temp-buffer
6486 (insert s)
6487 (let ((org-odd-levels-only odd-levels))
6488 (org-mode)
6489 (font-lock-ensure)
6490 (buffer-string))))
6492 (defvar org-m nil)
6493 (defvar org-l nil)
6494 (defvar org-f nil)
6495 (defun org-get-level-face (n)
6496 "Get the right face for match N in font-lock matching of headlines."
6497 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6498 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6499 (if org-cycle-level-faces
6500 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6501 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6502 (cond
6503 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6504 ((eq n 2) org-f)
6505 (t (if org-level-color-stars-only nil org-f))))
6507 (defun org-face-from-face-or-color (context inherit face-or-color)
6508 "Create a face list that inherits INHERIT, but sets the foreground color.
6509 When FACE-OR-COLOR is not a string, just return it."
6510 (if (stringp face-or-color)
6511 (list :inherit inherit
6512 (cdr (assoc context org-faces-easy-properties))
6513 face-or-color)
6514 face-or-color))
6516 (defun org-get-todo-face (kwd)
6517 "Get the right face for a TODO keyword KWD.
6518 If KWD is a number, get the corresponding match group."
6519 (if (numberp kwd) (setq kwd (match-string kwd)))
6520 (or (org-face-from-face-or-color
6521 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6522 (and (member kwd org-done-keywords) 'org-done)
6523 'org-todo))
6525 (defun org-get-priority-face (priority)
6526 "Get the right face for PRIORITY.
6527 PRIORITY is a character."
6528 (or (org-face-from-face-or-color
6529 'priority 'org-priority (cdr (assq priority org-priority-faces)))
6530 'org-priority))
6532 (defun org-get-tag-face (tag)
6533 "Get the right face for TAG.
6534 If TAG is a number, get the corresponding match group."
6535 (let ((tag (if (wholenump tag) (match-string tag) tag)))
6536 (or (org-face-from-face-or-color
6537 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
6538 'org-tag)))
6540 (defun org-font-lock-add-priority-faces (limit)
6541 "Add the special priority faces."
6542 (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
6543 (add-text-properties
6544 (match-beginning 1) (match-end 1)
6545 (list 'face (org-get-priority-face (string-to-char (match-string 2)))
6546 'font-lock-fontified t))))
6548 (defun org-font-lock-add-tag-faces (limit)
6549 "Add the special tag faces."
6550 (when (and org-tag-faces org-tags-special-faces-re)
6551 (while (re-search-forward org-tags-special-faces-re limit t)
6552 (add-text-properties (match-beginning 1) (match-end 1)
6553 (list 'face (org-get-tag-face 1)
6554 'font-lock-fontified t))
6555 (backward-char 1))))
6557 (defun org-unfontify-region (beg end &optional maybe_loudly)
6558 "Remove fontification and activation overlays from links."
6559 (font-lock-default-unfontify-region beg end)
6560 (let* ((buffer-undo-list t)
6561 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6562 (inhibit-modification-hooks t)
6563 deactivate-mark buffer-file-name buffer-file-truename)
6564 (org-decompose-region beg end)
6565 (remove-text-properties beg end
6566 '(mouse-face t keymap t org-linked-text t
6567 invisible t intangible t
6568 org-emphasis t))
6569 (org-remove-font-lock-display-properties beg end)))
6571 (defconst org-script-display '(((raise -0.3) (height 0.7))
6572 ((raise 0.3) (height 0.7))
6573 ((raise -0.5))
6574 ((raise 0.5)))
6575 "Display properties for showing superscripts and subscripts.")
6577 (defun org-remove-font-lock-display-properties (beg end)
6578 "Remove specific display properties that have been added by font lock.
6579 The will remove the raise properties that are used to show superscripts
6580 and subscripts."
6581 (let (next prop)
6582 (while (< beg end)
6583 (setq next (next-single-property-change beg 'display nil end)
6584 prop (get-text-property beg 'display))
6585 (if (member prop org-script-display)
6586 (put-text-property beg next 'display nil))
6587 (setq beg next))))
6589 (defun org-raise-scripts (limit)
6590 "Add raise properties to sub/superscripts."
6591 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6592 (if (re-search-forward
6593 (if (eq org-use-sub-superscripts t)
6594 org-match-substring-regexp
6595 org-match-substring-with-braces-regexp)
6596 limit t)
6597 (let* ((pos (point)) table-p comment-p
6598 (mpos (match-beginning 3))
6599 (emph-p (get-text-property mpos 'org-emphasis))
6600 (link-p (get-text-property mpos 'mouse-face))
6601 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6602 (goto-char (point-at-bol))
6603 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6604 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6605 (goto-char pos)
6606 ;; Handle a_b^c
6607 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6608 (if (or comment-p emph-p link-p keyw-p)
6610 (put-text-property (match-beginning 3) (match-end 0)
6611 'display
6612 (if (equal (char-after (match-beginning 2)) ?^)
6613 (nth (if table-p 3 1) org-script-display)
6614 (nth (if table-p 2 0) org-script-display)))
6615 (add-text-properties (match-beginning 2) (match-end 2)
6616 (list 'invisible t
6617 'org-dwidth t 'org-dwidth-n 1))
6618 (if (and (eq (char-after (match-beginning 3)) ?{)
6619 (eq (char-before (match-end 3)) ?}))
6620 (progn
6621 (add-text-properties
6622 (match-beginning 3) (1+ (match-beginning 3))
6623 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6624 (add-text-properties
6625 (1- (match-end 3)) (match-end 3)
6626 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6627 t)))))
6629 ;;;; Visibility cycling, including org-goto and indirect buffer
6631 ;;; Cycling
6633 (defvar org-cycle-global-status nil)
6634 (make-variable-buffer-local 'org-cycle-global-status)
6635 (put 'org-cycle-global-status 'org-state t)
6636 (defvar org-cycle-subtree-status nil)
6637 (make-variable-buffer-local 'org-cycle-subtree-status)
6638 (put 'org-cycle-subtree-status 'org-state t)
6640 (defvar org-inlinetask-min-level)
6642 (defun org-unlogged-message (&rest args)
6643 "Display a message, but avoid logging it in the *Messages* buffer."
6644 (let ((message-log-max nil))
6645 (apply 'message args)))
6647 ;;;###autoload
6648 (defun org-cycle (&optional arg)
6649 "TAB-action and visibility cycling for Org-mode.
6651 This is the command invoked in Org-mode by the TAB key. Its main purpose
6652 is outline visibility cycling, but it also invokes other actions
6653 in special contexts.
6655 - When this function is called with a prefix argument, rotate the entire
6656 buffer through 3 states (global cycling)
6657 1. OVERVIEW: Show only top-level headlines.
6658 2. CONTENTS: Show all headlines of all levels, but no body text.
6659 3. SHOW ALL: Show everything.
6660 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6661 determined by the variable `org-startup-folded', and by any VISIBILITY
6662 properties in the buffer.
6663 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6664 including any drawers.
6666 - When inside a table, re-align the table and move to the next field.
6668 - When point is at the beginning of a headline, rotate the subtree started
6669 by this line through 3 different states (local cycling)
6670 1. FOLDED: Only the main headline is shown.
6671 2. CHILDREN: The main headline and the direct children are shown.
6672 From this state, you can move to one of the children
6673 and zoom in further.
6674 3. SUBTREE: Show the entire subtree, including body text.
6675 If there is no subtree, switch directly from CHILDREN to FOLDED.
6677 - When point is at the beginning of an empty headline and the variable
6678 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6679 of the headline by demoting and promoting it to likely levels. This
6680 speeds up creation document structure by pressing TAB once or several
6681 times right after creating a new headline.
6683 - When there is a numeric prefix, go up to a heading with level ARG, do
6684 a `show-subtree' and return to the previous cursor position. If ARG
6685 is negative, go up that many levels.
6687 - When point is not at the beginning of a headline, execute the global
6688 binding for TAB, which is re-indenting the line. See the option
6689 `org-cycle-emulate-tab' for details.
6691 - Special case: if point is at the beginning of the buffer and there is
6692 no headline in line 1, this function will act as if called with prefix arg
6693 (C-u TAB, same as S-TAB) also when called without prefix arg.
6694 But only if also the variable `org-cycle-global-at-bob' is t."
6695 (interactive "P")
6696 (org-load-modules-maybe)
6697 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6698 (and org-cycle-level-after-item/entry-creation
6699 (or (org-cycle-level)
6700 (org-cycle-item-indentation))))
6701 (let* ((limit-level
6702 (or org-cycle-max-level
6703 (and (boundp 'org-inlinetask-min-level)
6704 org-inlinetask-min-level
6705 (1- org-inlinetask-min-level))))
6706 (nstars (and limit-level
6707 (if org-odd-levels-only
6708 (and limit-level (1- (* limit-level 2)))
6709 limit-level)))
6710 (org-outline-regexp
6711 (if (not (derived-mode-p 'org-mode))
6712 outline-regexp
6713 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6714 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6715 (not (looking-at org-outline-regexp))))
6716 (org-cycle-hook
6717 (if bob-special
6718 (delq 'org-optimize-window-after-visibility-change
6719 (copy-sequence org-cycle-hook))
6720 org-cycle-hook))
6721 (pos (point)))
6723 (if (or bob-special (equal arg '(4)))
6724 ;; special case: use global cycling
6725 (setq arg t))
6727 (cond
6729 ((equal arg '(16))
6730 (setq last-command 'dummy)
6731 (org-set-startup-visibility)
6732 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6734 ((equal arg '(64))
6735 (show-all)
6736 (org-unlogged-message "Entire buffer visible, including drawers"))
6738 ;; Try cdlatex TAB completion
6739 ((org-try-cdlatex-tab))
6741 ;; Table: enter it or move to the next field.
6742 ((org-at-table-p 'any)
6743 (if (org-at-table.el-p)
6744 (message "Use C-c ' to edit table.el tables")
6745 (if arg (org-table-edit-field t)
6746 (org-table-justify-field-maybe)
6747 (call-interactively 'org-table-next-field))))
6749 ((run-hook-with-args-until-success
6750 'org-tab-after-check-for-table-hook))
6752 ;; Global cycling: delegate to `org-cycle-internal-global'.
6753 ((eq arg t) (org-cycle-internal-global))
6755 ;; Drawers: delegate to `org-flag-drawer'.
6756 ((save-excursion
6757 (beginning-of-line 1)
6758 (looking-at org-drawer-regexp))
6759 (org-flag-drawer ; toggle block visibility
6760 (not (get-char-property (match-end 0) 'invisible))))
6762 ;; Show-subtree, ARG levels up from here.
6763 ((integerp arg)
6764 (save-excursion
6765 (org-back-to-heading)
6766 (outline-up-heading (if (< arg 0) (- arg)
6767 (- (funcall outline-level) arg)))
6768 (org-show-subtree)))
6770 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6771 ((and (featurep 'org-inlinetask)
6772 (org-inlinetask-at-task-p)
6773 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6774 (org-inlinetask-toggle-visibility))
6776 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6777 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6778 (save-excursion (move-beginning-of-line 1)
6779 (looking-at org-outline-regexp)))
6780 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6781 (org-cycle-internal-local))
6783 ;; From there: TAB emulation and template completion.
6784 (buffer-read-only (org-back-to-heading))
6786 ((run-hook-with-args-until-success
6787 'org-tab-after-check-for-cycling-hook))
6789 ((org-try-structure-completion))
6791 ((run-hook-with-args-until-success
6792 'org-tab-before-tab-emulation-hook))
6794 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6795 (or (not (bolp))
6796 (not (looking-at org-outline-regexp))))
6797 (call-interactively (global-key-binding "\t")))
6799 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6800 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6801 (or (and (eq org-cycle-emulate-tab 'white)
6802 (= (match-end 0) (point-at-eol)))
6803 (and (eq org-cycle-emulate-tab 'whitestart)
6804 (>= (match-end 0) pos))))
6806 (eq org-cycle-emulate-tab t))
6807 (call-interactively (global-key-binding "\t")))
6809 (t (save-excursion
6810 (org-back-to-heading)
6811 (org-cycle)))))))
6813 (defun org-cycle-internal-global ()
6814 "Do the global cycling action."
6815 ;; Hack to avoid display of messages for .org attachments in Gnus
6816 (let ((ga (string-match "\\*fontification" (buffer-name))))
6817 (cond
6818 ((and (eq last-command this-command)
6819 (eq org-cycle-global-status 'overview))
6820 ;; We just created the overview - now do table of contents
6821 ;; This can be slow in very large buffers, so indicate action
6822 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6823 (unless ga (org-unlogged-message "CONTENTS..."))
6824 (org-content)
6825 (unless ga (org-unlogged-message "CONTENTS...done"))
6826 (setq org-cycle-global-status 'contents)
6827 (run-hook-with-args 'org-cycle-hook 'contents))
6829 ((and (eq last-command this-command)
6830 (eq org-cycle-global-status 'contents))
6831 ;; We just showed the table of contents - now show everything
6832 (run-hook-with-args 'org-pre-cycle-hook 'all)
6833 (show-all)
6834 (unless ga (org-unlogged-message "SHOW ALL"))
6835 (setq org-cycle-global-status 'all)
6836 (run-hook-with-args 'org-cycle-hook 'all))
6839 ;; Default action: go to overview
6840 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6841 (org-overview)
6842 (unless ga (org-unlogged-message "OVERVIEW"))
6843 (setq org-cycle-global-status 'overview)
6844 (run-hook-with-args 'org-cycle-hook 'overview)))))
6846 (defvar org-called-with-limited-levels nil
6847 "Non-nil when `org-with-limited-levels' is currently active.")
6849 (defun org-cycle-internal-local ()
6850 "Do the local cycling action."
6851 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6852 ;; First, determine end of headline (EOH), end of subtree or item
6853 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6854 (save-excursion
6855 (if (org-at-item-p)
6856 (progn
6857 (beginning-of-line)
6858 (setq struct (org-list-struct))
6859 (setq eoh (point-at-eol))
6860 (setq eos (org-list-get-item-end-before-blank (point) struct))
6861 (setq has-children (org-list-has-child-p (point) struct)))
6862 (org-back-to-heading)
6863 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6864 (setq eos (save-excursion (org-end-of-subtree t t)
6865 (when (bolp) (backward-char)) (point)))
6866 (setq has-children
6867 (or (save-excursion
6868 (let ((level (funcall outline-level)))
6869 (outline-next-heading)
6870 (and (org-at-heading-p t)
6871 (> (funcall outline-level) level))))
6872 (save-excursion
6873 (org-list-search-forward (org-item-beginning-re) eos t)))))
6874 ;; Determine end invisible part of buffer (EOL)
6875 (beginning-of-line 2)
6876 ;; XEmacs doesn't have `next-single-char-property-change'
6877 (if (featurep 'xemacs)
6878 (while (and (not (eobp)) ;; this is like `next-line'
6879 (get-char-property (1- (point)) 'invisible))
6880 (beginning-of-line 2))
6881 (while (and (not (eobp)) ;; this is like `next-line'
6882 (get-char-property (1- (point)) 'invisible))
6883 (goto-char (next-single-char-property-change (point) 'invisible))
6884 (and (eolp) (beginning-of-line 2))))
6885 (setq eol (point)))
6886 ;; Find out what to do next and set `this-command'
6887 (cond
6888 ((= eos eoh)
6889 ;; Nothing is hidden behind this heading
6890 (unless (org-before-first-heading-p)
6891 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6892 (org-unlogged-message "EMPTY ENTRY")
6893 (setq org-cycle-subtree-status nil)
6894 (save-excursion
6895 (goto-char eos)
6896 (outline-next-heading)
6897 (if (outline-invisible-p) (org-flag-heading nil))))
6898 ((and (or (>= eol eos)
6899 (not (string-match "\\S-" (buffer-substring eol eos))))
6900 (or has-children
6901 (not (setq children-skipped
6902 org-cycle-skip-children-state-if-no-children))))
6903 ;; Entire subtree is hidden in one line: children view
6904 (unless (org-before-first-heading-p)
6905 (run-hook-with-args 'org-pre-cycle-hook 'children))
6906 (if (org-at-item-p)
6907 (org-list-set-item-visibility (point-at-bol) struct 'children)
6908 (org-show-entry)
6909 (org-with-limited-levels (show-children))
6910 ;; FIXME: This slows down the func way too much.
6911 ;; How keep drawers hidden in subtree anyway?
6912 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6913 ;; (org-cycle-hide-drawers 'subtree))
6915 ;; Fold every list in subtree to top-level items.
6916 (when (eq org-cycle-include-plain-lists 'integrate)
6917 (save-excursion
6918 (org-back-to-heading)
6919 (while (org-list-search-forward (org-item-beginning-re) eos t)
6920 (beginning-of-line 1)
6921 (let* ((struct (org-list-struct))
6922 (prevs (org-list-prevs-alist struct))
6923 (end (org-list-get-bottom-point struct)))
6924 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6925 (org-list-get-all-items (point) struct prevs))
6926 (goto-char (if (< end eos) end eos)))))))
6927 (org-unlogged-message "CHILDREN")
6928 (save-excursion
6929 (goto-char eos)
6930 (outline-next-heading)
6931 (if (outline-invisible-p) (org-flag-heading nil)))
6932 (setq org-cycle-subtree-status 'children)
6933 (unless (org-before-first-heading-p)
6934 (run-hook-with-args 'org-cycle-hook 'children)))
6935 ((or children-skipped
6936 (and (eq last-command this-command)
6937 (eq org-cycle-subtree-status 'children)))
6938 ;; We just showed the children, or no children are there,
6939 ;; now show everything.
6940 (unless (org-before-first-heading-p)
6941 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6942 (outline-flag-region eoh eos nil)
6943 (org-unlogged-message
6944 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6945 (setq org-cycle-subtree-status 'subtree)
6946 (unless (org-before-first-heading-p)
6947 (run-hook-with-args 'org-cycle-hook 'subtree)))
6949 ;; Default action: hide the subtree.
6950 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6951 (outline-flag-region eoh eos t)
6952 (org-unlogged-message "FOLDED")
6953 (setq org-cycle-subtree-status 'folded)
6954 (unless (org-before-first-heading-p)
6955 (run-hook-with-args 'org-cycle-hook 'folded))))))
6957 ;;;###autoload
6958 (defun org-global-cycle (&optional arg)
6959 "Cycle the global visibility. For details see `org-cycle'.
6960 With \\[universal-argument] prefix arg, switch to startup visibility.
6961 With a numeric prefix, show all headlines up to that level."
6962 (interactive "P")
6963 (let ((org-cycle-include-plain-lists
6964 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6965 (cond
6966 ((integerp arg)
6967 (show-all)
6968 (hide-sublevels arg)
6969 (setq org-cycle-global-status 'contents))
6970 ((equal arg '(4))
6971 (org-set-startup-visibility)
6972 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6974 (org-cycle '(4))))))
6976 (defun org-set-startup-visibility ()
6977 "Set the visibility required by startup options and properties."
6978 (cond
6979 ((eq org-startup-folded t)
6980 (org-overview))
6981 ((eq org-startup-folded 'content)
6982 (org-content))
6983 ((or (eq org-startup-folded 'showeverything)
6984 (eq org-startup-folded nil))
6985 (show-all)))
6986 (unless (eq org-startup-folded 'showeverything)
6987 (if org-hide-block-startup (org-hide-block-all))
6988 (org-set-visibility-according-to-property 'no-cleanup)
6989 (org-cycle-hide-archived-subtrees 'all)
6990 (org-cycle-hide-drawers 'all)
6991 (org-cycle-show-empty-lines t)))
6993 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6994 "Switch subtree visibilities according to :VISIBILITY: property."
6995 (interactive)
6996 (let (org-show-entry-below)
6997 (org-with-wide-buffer
6998 (goto-char (point-min))
6999 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7000 (if (not (org-at-property-p)) (outline-next-heading)
7001 (let ((state (match-string 3)))
7002 (save-excursion
7003 (org-back-to-heading t)
7004 (hide-subtree)
7005 (org-reveal)
7006 (cond
7007 ((equal state "folded")
7008 (hide-subtree))
7009 ((equal state "children")
7010 (org-show-hidden-entry)
7011 (show-children))
7012 ((equal state "content")
7013 (save-excursion
7014 (save-restriction
7015 (org-narrow-to-subtree)
7016 (org-content))))
7017 ((member state '("all" "showall"))
7018 (show-subtree)))))))
7019 (unless no-cleanup
7020 (org-cycle-hide-archived-subtrees 'all)
7021 (org-cycle-hide-drawers 'all)
7022 (org-cycle-show-empty-lines 'all)))))
7024 ;; This function uses outline-regexp instead of the more fundamental
7025 ;; org-outline-regexp so that org-cycle-global works outside of Org
7026 ;; buffers, where outline-regexp is needed.
7027 (defun org-overview ()
7028 "Switch to overview mode, showing only top-level headlines.
7029 This shows all headlines with a level equal or greater than the level
7030 of the first headline in the buffer. This is important, because if the
7031 first headline is not level one, then (hide-sublevels 1) gives confusing
7032 results."
7033 (interactive)
7034 (save-excursion
7035 (let ((level
7036 (save-excursion
7037 (goto-char (point-min))
7038 (if (re-search-forward (concat "^" outline-regexp) nil t)
7039 (progn
7040 (goto-char (match-beginning 0))
7041 (funcall outline-level))))))
7042 (and level (hide-sublevels level)))))
7044 (defun org-content (&optional arg)
7045 "Show all headlines in the buffer, like a table of contents.
7046 With numerical argument N, show content up to level N."
7047 (interactive "P")
7048 (org-overview)
7049 (save-excursion
7050 ;; Visit all headings and show their offspring
7051 (and (integerp arg) (org-overview))
7052 (goto-char (point-max))
7053 (catch 'exit
7054 (while (and (progn (condition-case nil
7055 (outline-previous-visible-heading 1)
7056 (error (goto-char (point-min))))
7058 (looking-at org-outline-regexp))
7059 (if (integerp arg)
7060 (show-children (1- arg))
7061 (show-branches))
7062 (if (bobp) (throw 'exit nil))))))
7064 (defun org-optimize-window-after-visibility-change (state)
7065 "Adjust the window after a change in outline visibility.
7066 This function is the default value of the hook `org-cycle-hook'."
7067 (when (get-buffer-window (current-buffer))
7068 (cond
7069 ((eq state 'content) nil)
7070 ((eq state 'all) nil)
7071 ((eq state 'folded) nil)
7072 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7073 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7075 (defun org-remove-empty-overlays-at (pos)
7076 "Remove outline overlays that do not contain non-white stuff."
7077 (mapc
7078 (lambda (o)
7079 (and (eq 'outline (overlay-get o 'invisible))
7080 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7081 (overlay-end o))))
7082 (delete-overlay o)))
7083 (overlays-at pos)))
7085 (defun org-clean-visibility-after-subtree-move ()
7086 "Fix visibility issues after moving a subtree."
7087 ;; First, find a reasonable region to look at:
7088 ;; Start two siblings above, end three below
7089 (let* ((beg (save-excursion
7090 (and (org-get-last-sibling)
7091 (org-get-last-sibling))
7092 (point)))
7093 (end (save-excursion
7094 (and (org-get-next-sibling)
7095 (org-get-next-sibling)
7096 (org-get-next-sibling))
7097 (if (org-at-heading-p)
7098 (point-at-eol)
7099 (point))))
7100 (level (looking-at "\\*+"))
7101 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7102 (save-excursion
7103 (save-restriction
7104 (narrow-to-region beg end)
7105 (when re
7106 ;; Properly fold already folded siblings
7107 (goto-char (point-min))
7108 (while (re-search-forward re nil t)
7109 (if (and (not (outline-invisible-p))
7110 (save-excursion
7111 (goto-char (point-at-eol)) (outline-invisible-p)))
7112 (hide-entry))))
7113 (org-cycle-show-empty-lines 'overview)
7114 (org-cycle-hide-drawers 'overview)))))
7116 (defun org-cycle-show-empty-lines (state)
7117 "Show empty lines above all visible headlines.
7118 The region to be covered depends on STATE when called through
7119 `org-cycle-hook'. Lisp program can use t for STATE to get the
7120 entire buffer covered. Note that an empty line is only shown if there
7121 are at least `org-cycle-separator-lines' empty lines before the headline."
7122 (when (/= org-cycle-separator-lines 0)
7123 (save-excursion
7124 (let* ((n (abs org-cycle-separator-lines))
7125 (re (cond
7126 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7127 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7128 (t (let ((ns (number-to-string (- n 2))))
7129 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7130 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7131 beg end)
7132 (cond
7133 ((memq state '(overview contents t))
7134 (setq beg (point-min) end (point-max)))
7135 ((memq state '(children folded))
7136 (setq beg (point)
7137 end (progn (org-end-of-subtree t t)
7138 (line-beginning-position 2)))))
7139 (when beg
7140 (goto-char beg)
7141 (while (re-search-forward re end t)
7142 (unless (get-char-property (match-end 1) 'invisible)
7143 (let ((e (match-end 1))
7144 (b (if (>= org-cycle-separator-lines 0)
7145 (match-beginning 1)
7146 (save-excursion
7147 (goto-char (match-beginning 0))
7148 (skip-chars-backward " \t\n")
7149 (line-end-position)))))
7150 (outline-flag-region b e nil))))))))
7151 ;; Never hide empty lines at the end of the file.
7152 (save-excursion
7153 (goto-char (point-max))
7154 (outline-previous-heading)
7155 (outline-end-of-heading)
7156 (if (and (looking-at "[ \t\n]+")
7157 (= (match-end 0) (point-max)))
7158 (outline-flag-region (point) (match-end 0) nil))))
7160 (defun org-show-empty-lines-in-parent ()
7161 "Move to the parent and re-show empty lines before visible headlines."
7162 (save-excursion
7163 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7164 (org-cycle-show-empty-lines context))))
7166 (defun org-files-list ()
7167 "Return `org-agenda-files' list, plus all open org-mode files.
7168 This is useful for operations that need to scan all of a user's
7169 open and agenda-wise Org files."
7170 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7171 (dolist (buf (buffer-list))
7172 (with-current-buffer buf
7173 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7174 (let ((file (expand-file-name (buffer-file-name))))
7175 (unless (member file files)
7176 (push file files))))))
7177 files))
7179 (defsubst org-entry-beginning-position ()
7180 "Return the beginning position of the current entry."
7181 (save-excursion (outline-back-to-heading t) (point)))
7183 (defsubst org-entry-end-position ()
7184 "Return the end position of the current entry."
7185 (save-excursion (outline-next-heading) (point)))
7187 (defun org-cycle-hide-drawers (state &optional exceptions)
7188 "Re-hide all drawers after a visibility state change.
7189 When non-nil, optional argument EXCEPTIONS is a list of strings
7190 specifying which drawers should not be hidden."
7191 (when (and (derived-mode-p 'org-mode)
7192 (not (memq state '(overview folded contents))))
7193 (save-excursion
7194 (let* ((globalp (memq state '(contents all)))
7195 (beg (if globalp (point-min) (point)))
7196 (end (if globalp (point-max)
7197 (if (eq state 'children)
7198 (save-excursion (outline-next-heading) (point))
7199 (org-end-of-subtree t)))))
7200 (goto-char beg)
7201 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7202 (unless (member-ignore-case (match-string 1) exceptions)
7203 (let ((drawer (org-element-at-point)))
7204 (when (memq (org-element-type drawer) '(drawer property-drawer))
7205 (org-flag-drawer t drawer)
7206 ;; Make sure to skip drawer entirely or we might flag
7207 ;; it another time when matching its ending line with
7208 ;; `org-drawer-regexp'.
7209 (goto-char (org-element-property :end drawer))))))))))
7211 (defun org-flag-drawer (flag &optional element)
7212 "When FLAG is non-nil, hide the drawer we are at.
7213 Otherwise make it visible. When optional argument ELEMENT is
7214 a parsed drawer, as returned by `org-element-at-point', hide or
7215 show that drawer instead."
7216 (when (save-excursion
7217 (beginning-of-line)
7218 (org-looking-at-p org-drawer-regexp))
7219 (let ((drawer (or element (org-element-at-point))))
7220 (when (memq (org-element-type drawer) '(drawer property-drawer))
7221 (let ((post (org-element-property :post-affiliated drawer)))
7222 (save-excursion
7223 (outline-flag-region
7224 (progn (goto-char post) (line-end-position))
7225 (progn (goto-char (org-element-property :end drawer))
7226 (skip-chars-backward " \r\t\n")
7227 (line-end-position))
7228 flag))
7229 ;; When the drawer is hidden away, make sure point lies in
7230 ;; a visible part of the buffer.
7231 (when (and flag (> (line-beginning-position) post))
7232 (goto-char post)))))))
7234 (defun org-subtree-end-visible-p ()
7235 "Is the end of the current subtree visible?"
7236 (pos-visible-in-window-p
7237 (save-excursion (org-end-of-subtree t) (point))))
7239 (defun org-first-headline-recenter ()
7240 "Move cursor to the first headline and recenter the headline."
7241 (goto-char (point-min))
7242 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7243 (set-window-start (selected-window) (point-at-bol))))
7245 ;;; Saving and restoring visibility
7247 (defun org-outline-overlay-data (&optional use-markers)
7248 "Return a list of the locations of all outline overlays.
7249 These are overlays with the `invisible' property value `outline'.
7250 The return value is a list of cons cells, with start and stop
7251 positions for each overlay.
7252 If USE-MARKERS is set, return the positions as markers."
7253 (let (beg end)
7254 (save-excursion
7255 (save-restriction
7256 (widen)
7257 (delq nil
7258 (mapcar (lambda (o)
7259 (when (eq (overlay-get o 'invisible) 'outline)
7260 (setq beg (overlay-start o)
7261 end (overlay-end o))
7262 (and beg end (> end beg)
7263 (if use-markers
7264 (cons (copy-marker beg)
7265 (copy-marker end t))
7266 (cons beg end)))))
7267 (overlays-in (point-min) (point-max))))))))
7269 (defun org-set-outline-overlay-data (data)
7270 "Create visibility overlays for all positions in DATA.
7271 DATA should have been made by `org-outline-overlay-data'."
7272 (let (o)
7273 (save-excursion
7274 (save-restriction
7275 (widen)
7276 (show-all)
7277 (mapc (lambda (c)
7278 (outline-flag-region (car c) (cdr c) t))
7279 data)))))
7281 ;;; Folding of blocks
7283 (defvar org-hide-block-overlays nil
7284 "Overlays hiding blocks.")
7285 (make-variable-buffer-local 'org-hide-block-overlays)
7287 (defun org-block-map (function &optional start end)
7288 "Call FUNCTION at the head of all source blocks in the current buffer.
7289 Optional arguments START and END can be used to limit the range."
7290 (let ((start (or start (point-min)))
7291 (end (or end (point-max))))
7292 (save-excursion
7293 (goto-char start)
7294 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7295 (save-excursion
7296 (save-match-data
7297 (goto-char (match-beginning 0))
7298 (funcall function)))))))
7300 (defun org-hide-block-toggle-all ()
7301 "Toggle the visibility of all blocks in the current buffer."
7302 (org-block-map 'org-hide-block-toggle))
7304 (defun org-hide-block-all ()
7305 "Fold all blocks in the current buffer."
7306 (interactive)
7307 (org-show-block-all)
7308 (org-block-map 'org-hide-block-toggle-maybe))
7310 (defun org-show-block-all ()
7311 "Unfold all blocks in the current buffer."
7312 (interactive)
7313 (mapc 'delete-overlay org-hide-block-overlays)
7314 (setq org-hide-block-overlays nil))
7316 (defun org-hide-block-toggle-maybe ()
7317 "Toggle visibility of block at point.
7318 Unlike to `org-hide-block-toggle', this function does not throw
7319 an error. Return a non-nil value when toggling is successful."
7320 (interactive)
7321 (ignore-errors (org-hide-block-toggle)))
7323 (defun org-hide-block-toggle (&optional force)
7324 "Toggle the visibility of the current block.
7325 When optional argument FORCE is `off', make block visible. If it
7326 is non-nil, hide it unconditionally. Throw an error when not at
7327 a block. Return a non-nil value when toggling is successful."
7328 (interactive)
7329 (let ((element (org-element-at-point)))
7330 (unless (memq (org-element-type element)
7331 '(center-block comment-block dynamic-block example-block
7332 export-block quote-block special-block
7333 src-block verse-block))
7334 (user-error "Not at a block"))
7335 (let* ((start (save-excursion
7336 (goto-char (org-element-property :post-affiliated element))
7337 (line-end-position)))
7338 (end (save-excursion
7339 (goto-char (org-element-property :end element))
7340 (skip-chars-backward " \r\t\n")
7341 (line-end-position)))
7342 (overlays (overlays-at start)))
7343 (cond
7344 ;; Do nothing when not before or at the block opening line or
7345 ;; at the block closing line.
7346 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7347 ((and (not (eq force 'off))
7348 (not (memq t (mapcar
7349 (lambda (o)
7350 (eq (overlay-get o 'invisible) 'org-hide-block))
7351 overlays))))
7352 (let ((ov (make-overlay start end)))
7353 (overlay-put ov 'invisible 'org-hide-block)
7354 ;; Make the block accessible to `isearch'.
7355 (overlay-put
7356 ov 'isearch-open-invisible
7357 (lambda (ov)
7358 (when (memq ov org-hide-block-overlays)
7359 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7360 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7361 (delete-overlay ov))))
7362 (push ov org-hide-block-overlays)
7363 ;; When the block is hidden away, make sure point is left in
7364 ;; a visible part of the buffer.
7365 (when (> (line-beginning-position) start)
7366 (goto-char start)
7367 (beginning-of-line))
7368 ;; Signal successful toggling.
7370 ((or (not force) (eq force 'off))
7371 (dolist (ov overlays t)
7372 (when (memq ov org-hide-block-overlays)
7373 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7374 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7375 (delete-overlay ov))))))))
7377 ;; org-tab-after-check-for-cycling-hook
7378 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7379 ;; Remove overlays when changing major mode
7380 (add-hook 'org-mode-hook
7381 (lambda () (org-add-hook 'change-major-mode-hook
7382 'org-show-block-all 'append 'local)))
7384 ;;; Org-goto
7386 (defvar org-goto-window-configuration nil)
7387 (defvar org-goto-marker nil)
7388 (defvar org-goto-map)
7389 (defun org-goto-map ()
7390 "Set the keymap `org-goto'."
7391 (setq org-goto-map
7392 (let ((map (make-sparse-keymap)))
7393 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7394 mouse-drag-region universal-argument org-occur)))
7395 (dolist (cmd cmds)
7396 (substitute-key-definition cmd cmd map global-map)))
7397 (suppress-keymap map)
7398 (org-defkey map "\C-m" 'org-goto-ret)
7399 (org-defkey map [(return)] 'org-goto-ret)
7400 (org-defkey map [(left)] 'org-goto-left)
7401 (org-defkey map [(right)] 'org-goto-right)
7402 (org-defkey map [(control ?g)] 'org-goto-quit)
7403 (org-defkey map "\C-i" 'org-cycle)
7404 (org-defkey map [(tab)] 'org-cycle)
7405 (org-defkey map [(down)] 'outline-next-visible-heading)
7406 (org-defkey map [(up)] 'outline-previous-visible-heading)
7407 (if org-goto-auto-isearch
7408 (if (fboundp 'define-key-after)
7409 (define-key-after map [t] 'org-goto-local-auto-isearch)
7410 nil)
7411 (org-defkey map "q" 'org-goto-quit)
7412 (org-defkey map "n" 'outline-next-visible-heading)
7413 (org-defkey map "p" 'outline-previous-visible-heading)
7414 (org-defkey map "f" 'outline-forward-same-level)
7415 (org-defkey map "b" 'outline-backward-same-level)
7416 (org-defkey map "u" 'outline-up-heading))
7417 (org-defkey map "/" 'org-occur)
7418 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7419 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7420 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7421 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7422 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7423 map)))
7425 (defconst org-goto-help
7426 "Browse buffer copy, to find location or copy text.%s
7427 RET=jump to location C-g=quit and return to previous location
7428 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7430 (defvar org-goto-start-pos) ; dynamically scoped parameter
7432 (defun org-goto (&optional alternative-interface)
7433 "Look up a different location in the current file, keeping current visibility.
7435 When you want look-up or go to a different location in a
7436 document, the fastest way is often to fold the entire buffer and
7437 then dive into the tree. This method has the disadvantage, that
7438 the previous location will be folded, which may not be what you
7439 want.
7441 This command works around this by showing a copy of the current
7442 buffer in an indirect buffer, in overview mode. You can dive
7443 into the tree in that copy, use org-occur and incremental search
7444 to find a location. When pressing RET or `Q', the command
7445 returns to the original buffer in which the visibility is still
7446 unchanged. After RET it will also jump to the location selected
7447 in the indirect buffer and expose the headline hierarchy above.
7449 With a prefix argument, use the alternative interface: e.g. if
7450 `org-goto-interface' is 'outline use 'outline-path-completion."
7451 (interactive "P")
7452 (org-goto-map)
7453 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7454 (org-refile-use-outline-path t)
7455 (org-refile-target-verify-function nil)
7456 (interface
7457 (if (not alternative-interface)
7458 org-goto-interface
7459 (if (eq org-goto-interface 'outline)
7460 'outline-path-completion
7461 'outline)))
7462 (org-goto-start-pos (point))
7463 (selected-point
7464 (if (eq interface 'outline)
7465 (car (org-get-location (current-buffer) org-goto-help))
7466 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7467 (org-refile-check-position pa)
7468 (nth 3 pa)))))
7469 (if selected-point
7470 (progn
7471 (org-mark-ring-push org-goto-start-pos)
7472 (goto-char selected-point)
7473 (if (or (outline-invisible-p) (org-invisible-p2))
7474 (org-show-context 'org-goto)))
7475 (message "Quit"))))
7477 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7478 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7479 (defvar org-goto-local-auto-isearch-map) ; defined below
7481 (defun org-get-location (buf help)
7482 "Let the user select a location in the Org-mode buffer BUF.
7483 This function uses a recursive edit. It returns the selected position
7484 or nil."
7485 (org-no-popups
7486 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7487 (isearch-hide-immediately nil)
7488 (isearch-search-fun-function
7489 (lambda () 'org-goto-local-search-headings))
7490 (org-goto-selected-point org-goto-exit-command))
7491 (save-excursion
7492 (save-window-excursion
7493 (delete-other-windows)
7494 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7495 (org-pop-to-buffer-same-window
7496 (condition-case nil
7497 (make-indirect-buffer (current-buffer) "*org-goto*")
7498 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7499 (with-output-to-temp-buffer "*Org Help*"
7500 (princ (format help (if org-goto-auto-isearch
7501 " Just type for auto-isearch."
7502 " n/p/f/b/u to navigate, q to quit."))))
7503 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7504 (setq buffer-read-only nil)
7505 (let ((org-startup-truncated t)
7506 (org-startup-folded nil)
7507 (org-startup-align-all-tables nil))
7508 (org-mode)
7509 (org-overview))
7510 (setq buffer-read-only t)
7511 (if (and (boundp 'org-goto-start-pos)
7512 (integer-or-marker-p org-goto-start-pos))
7513 (progn (goto-char org-goto-start-pos)
7514 (when (outline-invisible-p)
7515 (org-show-set-visibility 'lineage)))
7516 (goto-char (point-min)))
7517 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7518 (message "Select location and press RET")
7519 (use-local-map org-goto-map)
7520 (recursive-edit)))
7521 (kill-buffer "*org-goto*")
7522 (cons org-goto-selected-point org-goto-exit-command))))
7524 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7525 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7526 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7527 (if (fboundp 'isearch-other-control-char)
7528 (progn
7529 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7530 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7531 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7532 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7533 (define-key org-goto-local-auto-isearch-map [return] nil))
7535 (defun org-goto-local-search-headings (string bound noerror)
7536 "Search and make sure that any matches are in headlines."
7537 (catch 'return
7538 (while (if isearch-forward
7539 (search-forward string bound noerror)
7540 (search-backward string bound noerror))
7541 (when (save-match-data
7542 (and (save-excursion
7543 (beginning-of-line)
7544 (looking-at org-complex-heading-regexp))
7545 (or (not (match-beginning 5))
7546 (< (point) (match-beginning 5)))))
7547 (throw 'return (point))))))
7549 (defun org-goto-local-auto-isearch ()
7550 "Start isearch."
7551 (interactive)
7552 (goto-char (point-min))
7553 (let ((keys (this-command-keys)))
7554 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7555 (isearch-mode t)
7556 (isearch-process-search-char (string-to-char keys)))))
7558 (defun org-goto-ret (&optional arg)
7559 "Finish `org-goto' by going to the new location."
7560 (interactive "P")
7561 (setq org-goto-selected-point (point)
7562 org-goto-exit-command 'return)
7563 (throw 'exit nil))
7565 (defun org-goto-left ()
7566 "Finish `org-goto' by going to the new location."
7567 (interactive)
7568 (if (org-at-heading-p)
7569 (progn
7570 (beginning-of-line 1)
7571 (setq org-goto-selected-point (point)
7572 org-goto-exit-command 'left)
7573 (throw 'exit nil))
7574 (user-error "Not on a heading")))
7576 (defun org-goto-right ()
7577 "Finish `org-goto' by going to the new location."
7578 (interactive)
7579 (if (org-at-heading-p)
7580 (progn
7581 (setq org-goto-selected-point (point)
7582 org-goto-exit-command 'right)
7583 (throw 'exit nil))
7584 (user-error "Not on a heading")))
7586 (defun org-goto-quit ()
7587 "Finish `org-goto' without cursor motion."
7588 (interactive)
7589 (setq org-goto-selected-point nil)
7590 (setq org-goto-exit-command 'quit)
7591 (throw 'exit nil))
7593 ;;; Indirect buffer display of subtrees
7595 (defvar org-indirect-dedicated-frame nil
7596 "This is the frame being used for indirect tree display.")
7597 (defvar org-last-indirect-buffer nil)
7599 (defun org-tree-to-indirect-buffer (&optional arg)
7600 "Create indirect buffer and narrow it to current subtree.
7601 With a numerical prefix ARG, go up to this level and then take that tree.
7602 If ARG is negative, go up that many levels.
7604 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7605 indirect buffer previously made with this command, to avoid proliferation of
7606 indirect buffers. However, when you call the command with a \
7607 \\[universal-argument] prefix, or
7608 when `org-indirect-buffer-display' is `new-frame', the last buffer
7609 is kept so that you can work with several indirect buffers at the same time.
7610 If `org-indirect-buffer-display' is `dedicated-frame', the \
7611 \\[universal-argument] prefix also
7612 requests that a new frame be made for the new buffer, so that the dedicated
7613 frame is not changed."
7614 (interactive "P")
7615 (let ((cbuf (current-buffer))
7616 (cwin (selected-window))
7617 (pos (point))
7618 beg end level heading ibuf)
7619 (save-excursion
7620 (org-back-to-heading t)
7621 (when (numberp arg)
7622 (setq level (org-outline-level))
7623 (if (< arg 0) (setq arg (+ level arg)))
7624 (while (> (setq level (org-outline-level)) arg)
7625 (org-up-heading-safe)))
7626 (setq beg (point)
7627 heading (org-get-heading))
7628 (org-end-of-subtree t t)
7629 (if (org-at-heading-p) (backward-char 1))
7630 (setq end (point)))
7631 (if (and (buffer-live-p org-last-indirect-buffer)
7632 (not (eq org-indirect-buffer-display 'new-frame))
7633 (not arg))
7634 (kill-buffer org-last-indirect-buffer))
7635 (setq ibuf (org-get-indirect-buffer cbuf heading)
7636 org-last-indirect-buffer ibuf)
7637 (cond
7638 ((or (eq org-indirect-buffer-display 'new-frame)
7639 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7640 (select-frame (make-frame))
7641 (delete-other-windows)
7642 (org-pop-to-buffer-same-window ibuf)
7643 (org-set-frame-title heading))
7644 ((eq org-indirect-buffer-display 'dedicated-frame)
7645 (raise-frame
7646 (select-frame (or (and org-indirect-dedicated-frame
7647 (frame-live-p org-indirect-dedicated-frame)
7648 org-indirect-dedicated-frame)
7649 (setq org-indirect-dedicated-frame (make-frame)))))
7650 (delete-other-windows)
7651 (org-pop-to-buffer-same-window ibuf)
7652 (org-set-frame-title (concat "Indirect: " heading)))
7653 ((eq org-indirect-buffer-display 'current-window)
7654 (org-pop-to-buffer-same-window ibuf))
7655 ((eq org-indirect-buffer-display 'other-window)
7656 (pop-to-buffer ibuf))
7657 (t (error "Invalid value")))
7658 (if (featurep 'xemacs)
7659 (save-excursion (org-mode) (turn-on-font-lock)))
7660 (narrow-to-region beg end)
7661 (show-all)
7662 (goto-char pos)
7663 (run-hook-with-args 'org-cycle-hook 'all)
7664 (and (window-live-p cwin) (select-window cwin))))
7666 (defun org-get-indirect-buffer (&optional buffer heading)
7667 (setq buffer (or buffer (current-buffer)))
7668 (let ((n 1) (base (buffer-name buffer)) bname)
7669 (while (buffer-live-p
7670 (get-buffer
7671 (setq bname
7672 (concat base "-"
7673 (if heading (concat heading "-" (number-to-string n))
7674 (number-to-string n))))))
7675 (setq n (1+ n)))
7676 (condition-case nil
7677 (make-indirect-buffer buffer bname 'clone)
7678 (error (make-indirect-buffer buffer bname)))))
7680 (defun org-set-frame-title (title)
7681 "Set the title of the current frame to the string TITLE."
7682 ;; FIXME: how to name a single frame in XEmacs???
7683 (unless (featurep 'xemacs)
7684 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7686 ;;;; Structure editing
7688 ;;; Inserting headlines
7690 (defun org-previous-line-empty-p (&optional next)
7691 "Is the previous line a blank line?
7692 When NEXT is non-nil, check the next line instead."
7693 (save-excursion
7694 (and (not (bobp))
7695 (or (beginning-of-line (if next 2 0)) t)
7696 (save-match-data
7697 (looking-at "[ \t]*$")))))
7699 (defun org-insert-heading (&optional arg invisible-ok top-level)
7700 "Insert a new heading or an item with the same depth at point.
7702 If point is at the beginning of a heading or a list item, insert
7703 a new heading or a new item above the current one. If point is
7704 at the beginning of a normal line, turn the line into a heading.
7706 If point is in the middle of a headline or a list item, split the
7707 headline or the item and create a new headline/item with the text
7708 in the current line after point \(see `org-M-RET-may-split-line'
7709 on how to modify this behavior).
7711 With one universal prefix argument, set the user option
7712 `org-insert-heading-respect-content' to t for the duration of
7713 the command. This modifies the behavior described above in this
7714 ways: on list items and at the beginning of normal lines, force
7715 the insertion of a heading after the current subtree.
7717 With two universal prefix arguments, insert the heading at the
7718 end of the grandparent subtree. For example, if point is within
7719 a 2nd-level heading, then it will insert a 2nd-level heading at
7720 the end of the 1st-level parent heading.
7722 If point is at the beginning of a headline, insert a sibling
7723 before the current headline. If point is not at the beginning,
7724 split the line and create a new headline with the text in the
7725 current line after point \(see `org-M-RET-may-split-line' on how
7726 to modify this behavior).
7728 If point is at the beginning of a normal line, turn this line
7729 into a heading.
7731 When INVISIBLE-OK is set, stop at invisible headlines when going
7732 back. This is important for non-interactive uses of the
7733 command.
7735 When optional argument TOP-LEVEL is non-nil, insert a level 1
7736 heading, unconditionally."
7737 (interactive "P")
7738 (if (org-called-interactively-p 'any) (org-reveal))
7739 (let ((itemp (and (not top-level) (org-in-item-p)))
7740 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7741 (respect-content (or org-insert-heading-respect-content
7742 (equal arg '(4))))
7743 (initial-content ""))
7745 (cond
7747 ((or (= (buffer-size) 0)
7748 (and (not (save-excursion
7749 (and (ignore-errors (org-back-to-heading invisible-ok))
7750 (org-at-heading-p))))
7751 (or arg (not itemp))))
7752 ;; At beginning of buffer or so high up that only a heading
7753 ;; makes sense.
7754 (cond ((and (bolp) (not respect-content)) (insert "* "))
7755 ((not respect-content)
7756 (unless may-split (end-of-line))
7757 (insert "\n* "))
7758 ((re-search-forward org-outline-regexp-bol nil t)
7759 (beginning-of-line)
7760 (insert "* \n")
7761 (backward-char))
7762 (t (goto-char (point-max))
7763 (insert "\n* ")))
7764 (run-hooks 'org-insert-heading-hook))
7766 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7769 ;; Maybe move at the end of the subtree
7770 (when (equal arg '(16))
7771 (org-up-heading-safe)
7772 (org-end-of-subtree t))
7773 ;; Insert a heading
7774 (save-restriction
7775 (widen)
7776 (let* ((level nil)
7777 (on-heading (org-at-heading-p))
7778 (empty-line-p (if on-heading
7779 (org-previous-line-empty-p)
7780 ;; We will decide later
7781 nil))
7782 ;; Get a level string to fall back on.
7783 (fix-level
7784 (if (org-before-first-heading-p) "*"
7785 (save-excursion
7786 (org-back-to-heading t)
7787 (if (org-previous-line-empty-p) (setq empty-line-p t))
7788 (looking-at org-outline-regexp)
7789 (make-string (1- (length (match-string 0))) ?*))))
7790 (stars
7791 (save-excursion
7792 (condition-case nil
7793 (if top-level "* "
7794 (org-back-to-heading invisible-ok)
7795 (when (and (not on-heading)
7796 (featurep 'org-inlinetask)
7797 (integerp org-inlinetask-min-level)
7798 (>= (length (match-string 0))
7799 org-inlinetask-min-level))
7800 ;; Find a heading level before the inline
7801 ;; task.
7802 (while (and (setq level (org-up-heading-safe))
7803 (>= level org-inlinetask-min-level)))
7804 (if (org-at-heading-p)
7805 (org-back-to-heading invisible-ok)
7806 (error "This should not happen")))
7807 (unless (and (save-excursion
7808 (save-match-data
7809 (org-backward-heading-same-level
7810 1 invisible-ok))
7811 (= (point) (match-beginning 0)))
7812 (not (org-previous-line-empty-p t)))
7813 (setq empty-line-p (or empty-line-p
7814 (org-previous-line-empty-p))))
7815 (match-string 0))
7816 (error (or fix-level "* ")))))
7817 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7818 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7819 pos hide-previous previous-pos)
7821 ;; If we insert after content, move there and clean up
7822 ;; whitespace.
7823 (when (and respect-content
7824 (not (org-looking-at-p org-outline-regexp-bol)))
7825 (if (not (org-before-first-heading-p))
7826 (org-end-of-subtree nil t)
7827 (re-search-forward org-outline-regexp-bol)
7828 (beginning-of-line 0))
7829 (skip-chars-backward " \r\t\n")
7830 (and (not (looking-back "^\\*+" (line-beginning-position)))
7831 (looking-at "[ \t]+") (replace-match ""))
7832 (unless (eobp) (forward-char 1))
7833 (when (looking-at "^\\*")
7834 (unless (bobp) (backward-char 1))
7835 (insert "\n")))
7837 ;; If we are splitting, grab the text that should be moved
7838 ;; to the new headline.
7839 (when may-split
7840 (if (org-on-heading-p)
7841 ;; This is a heading: split intelligently (keeping
7842 ;; tags).
7843 (let ((pos (point)))
7844 (beginning-of-line)
7845 (unless (looking-at org-complex-heading-regexp)
7846 (error "This should not happen"))
7847 (when (and (match-beginning 4)
7848 (> pos (match-beginning 4))
7849 (< pos (match-end 4)))
7850 (setq initial-content (buffer-substring pos (match-end 4)))
7851 (goto-char pos)
7852 (delete-region (point) (match-end 4))
7853 (if (looking-at "[ \t]*$")
7854 (replace-match "")
7855 (insert (make-string (length initial-content) ?\s)))
7856 (setq initial-content (org-trim initial-content)))
7857 (goto-char pos))
7858 ;; A normal line.
7859 (setq initial-content
7860 (org-trim
7861 (delete-and-extract-region (point) (line-end-position))))))
7863 ;; If we are at the beginning of the line, insert before it.
7864 ;; Otherwise, after it.
7865 (cond
7866 ((and (bolp) (looking-at "[ \t]*$")))
7867 ((bolp) (save-excursion (insert "\n")))
7868 (t (end-of-line)
7869 (insert "\n")))
7871 ;; Insert the new heading
7872 (insert stars)
7873 (just-one-space)
7874 (insert initial-content)
7875 (unless (and blank (org-previous-line-empty-p))
7876 (org-N-empty-lines-before-current (if blank 1 0)))
7877 ;; Adjust visibility, which may be messed up if we removed
7878 ;; blank lines while previous entry was hidden.
7879 (let ((bol (line-beginning-position)))
7880 (dolist (o (overlays-at (1- bol)))
7881 (when (and (eq (overlay-get o 'invisible) 'outline)
7882 (eq (overlay-end o) bol))
7883 (move-overlay o (overlay-start o) (1- bol)))))
7884 (run-hooks 'org-insert-heading-hook)))))))
7886 (defun org-N-empty-lines-before-current (N)
7887 "Make the number of empty lines before current exactly N.
7888 So this will delete or add empty lines."
7889 (save-excursion
7890 (beginning-of-line)
7891 (let ((p (point)))
7892 (skip-chars-backward " \r\t\n")
7893 (unless (bolp) (forward-line))
7894 (delete-region (point) p))
7895 (when (> N 0) (insert (make-string N ?\n)))))
7897 (defun org-get-heading (&optional no-tags no-todo)
7898 "Return the heading of the current entry, without the stars.
7899 When NO-TAGS is non-nil, don't include tags.
7900 When NO-TODO is non-nil, don't include TODO keywords."
7901 (save-excursion
7902 (org-back-to-heading t)
7903 (cond
7904 ((and no-tags no-todo)
7905 (looking-at org-complex-heading-regexp)
7906 (match-string 4))
7907 (no-tags
7908 (looking-at (concat org-outline-regexp
7909 "\\(.*?\\)"
7910 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7911 (match-string 1))
7912 (no-todo
7913 (looking-at org-todo-line-regexp)
7914 (match-string 3))
7915 (t (looking-at org-heading-regexp)
7916 (match-string 2)))))
7918 (defvar orgstruct-mode) ; defined below
7920 (defun org-heading-components ()
7921 "Return the components of the current heading.
7922 This is a list with the following elements:
7923 - the level as an integer
7924 - the reduced level, different if `org-odd-levels-only' is set.
7925 - the TODO keyword, or nil
7926 - the priority character, like ?A, or nil if no priority is given
7927 - the headline text itself, or the tags string if no headline text
7928 - the tags string, or nil."
7929 (save-excursion
7930 (org-back-to-heading t)
7931 (if (let (case-fold-search)
7932 (looking-at
7933 (if orgstruct-mode
7934 org-heading-regexp
7935 org-complex-heading-regexp)))
7936 (if orgstruct-mode
7937 (list (length (match-string 1))
7938 (org-reduced-level (length (match-string 1)))
7941 (match-string 2)
7942 nil)
7943 (list (length (match-string 1))
7944 (org-reduced-level (length (match-string 1)))
7945 (org-match-string-no-properties 2)
7946 (and (match-end 3) (aref (match-string 3) 2))
7947 (org-match-string-no-properties 4)
7948 (org-match-string-no-properties 5))))))
7950 (defun org-get-entry ()
7951 "Get the entry text, after heading, entire subtree."
7952 (save-excursion
7953 (org-back-to-heading t)
7954 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7956 (defun org-insert-heading-after-current ()
7957 "Insert a new heading with same level as current, after current subtree."
7958 (interactive)
7959 (org-back-to-heading)
7960 (org-insert-heading)
7961 (org-move-subtree-down)
7962 (end-of-line 1))
7964 (defun org-insert-heading-respect-content (&optional invisible-ok)
7965 "Insert heading with `org-insert-heading-respect-content' set to t."
7966 (interactive)
7967 (org-insert-heading '(4) invisible-ok))
7969 (defun org-insert-todo-heading-respect-content (&optional force-state)
7970 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7971 (interactive)
7972 (org-insert-todo-heading force-state '(4)))
7974 (defun org-insert-todo-heading (arg &optional force-heading)
7975 "Insert a new heading with the same level and TODO state as current heading.
7976 If the heading has no TODO state, or if the state is DONE, use the first
7977 state (TODO by default). Also with one prefix arg, force first state. With
7978 two prefix args, force inserting at the end of the parent subtree."
7979 (interactive "P")
7980 (when (or force-heading (not (org-insert-item 'checkbox)))
7981 (org-insert-heading (or (and (equal arg '(16)) '(16))
7982 force-heading))
7983 (save-excursion
7984 (org-back-to-heading)
7985 (outline-previous-heading)
7986 (looking-at org-todo-line-regexp))
7987 (let*
7988 ((new-mark-x
7989 (if (or (equal arg '(4))
7990 (not (match-beginning 2))
7991 (member (match-string 2) org-done-keywords))
7992 (car org-todo-keywords-1)
7993 (match-string 2)))
7994 (new-mark
7996 (run-hook-with-args-until-success
7997 'org-todo-get-default-hook new-mark-x nil)
7998 new-mark-x)))
7999 (beginning-of-line 1)
8000 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8001 (if org-treat-insert-todo-heading-as-state-change
8002 (org-todo new-mark)
8003 (insert new-mark " "))))
8004 (when org-provide-todo-statistics
8005 (org-update-parent-todo-statistics))))
8007 (defun org-insert-subheading (arg)
8008 "Insert a new subheading and demote it.
8009 Works for outline headings and for plain lists alike."
8010 (interactive "P")
8011 (org-insert-heading arg)
8012 (cond
8013 ((org-at-heading-p) (org-do-demote))
8014 ((org-at-item-p) (org-indent-item))))
8016 (defun org-insert-todo-subheading (arg)
8017 "Insert a new subheading with TODO keyword or checkbox and demote it.
8018 Works for outline headings and for plain lists alike."
8019 (interactive "P")
8020 (org-insert-todo-heading arg)
8021 (cond
8022 ((org-at-heading-p) (org-do-demote))
8023 ((org-at-item-p) (org-indent-item))))
8025 ;;; Promotion and Demotion
8027 (defvar org-after-demote-entry-hook nil
8028 "Hook run after an entry has been demoted.
8029 The cursor will be at the beginning of the entry.
8030 When a subtree is being demoted, the hook will be called for each node.")
8032 (defvar org-after-promote-entry-hook nil
8033 "Hook run after an entry has been promoted.
8034 The cursor will be at the beginning of the entry.
8035 When a subtree is being promoted, the hook will be called for each node.")
8037 (defun org-promote-subtree ()
8038 "Promote the entire subtree.
8039 See also `org-promote'."
8040 (interactive)
8041 (save-excursion
8042 (org-with-limited-levels (org-map-tree 'org-promote)))
8043 (org-fix-position-after-promote))
8045 (defun org-demote-subtree ()
8046 "Demote the entire subtree. See `org-demote'.
8047 See also `org-promote'."
8048 (interactive)
8049 (save-excursion
8050 (org-with-limited-levels (org-map-tree 'org-demote)))
8051 (org-fix-position-after-promote))
8054 (defun org-do-promote ()
8055 "Promote the current heading higher up the tree.
8056 If the region is active in `transient-mark-mode', promote all headings
8057 in the region."
8058 (interactive)
8059 (save-excursion
8060 (if (org-region-active-p)
8061 (org-map-region 'org-promote (region-beginning) (region-end))
8062 (org-promote)))
8063 (org-fix-position-after-promote))
8065 (defun org-do-demote ()
8066 "Demote the current heading lower down the tree.
8067 If the region is active in `transient-mark-mode', demote all headings
8068 in the region."
8069 (interactive)
8070 (save-excursion
8071 (if (org-region-active-p)
8072 (org-map-region 'org-demote (region-beginning) (region-end))
8073 (org-demote)))
8074 (org-fix-position-after-promote))
8076 (defun org-fix-position-after-promote ()
8077 "Make sure that after pro/demotion cursor position is right."
8078 (let ((pos (point)))
8079 (when (save-excursion
8080 (beginning-of-line 1)
8081 (looking-at org-todo-line-regexp)
8082 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8083 (cond ((eobp) (insert " "))
8084 ((eolp) (insert " "))
8085 ((equal (char-after) ?\ ) (forward-char 1))))))
8087 (defun org-current-level ()
8088 "Return the level of the current entry, or nil if before the first headline.
8089 The level is the number of stars at the beginning of the
8090 headline. Use `org-reduced-level' to remove the effect of
8091 `org-odd-levels'. Unlike to `org-outline-level', this function
8092 ignores inlinetasks."
8093 (let ((level (org-with-limited-levels (org-outline-level))))
8094 (and (> level 0) level)))
8096 (defun org-get-previous-line-level ()
8097 "Return the outline depth of the last headline before the current line.
8098 Returns 0 for the first headline in the buffer, and nil if before the
8099 first headline."
8100 (and (org-current-level)
8101 (or (and (/= (line-beginning-position) (point-min))
8102 (save-excursion (beginning-of-line 0) (org-current-level)))
8103 0)))
8105 (defun org-reduced-level (l)
8106 "Compute the effective level of a heading.
8107 This takes into account the setting of `org-odd-levels-only'."
8108 (cond
8109 ((zerop l) 0)
8110 (org-odd-levels-only (1+ (floor (/ l 2))))
8111 (t l)))
8113 (defun org-level-increment ()
8114 "Return the number of stars that will be added or removed at a
8115 time to headlines when structure editing, based on the value of
8116 `org-odd-levels-only'."
8117 (if org-odd-levels-only 2 1))
8119 (defun org-get-valid-level (level &optional change)
8120 "Rectify a level change under the influence of `org-odd-levels-only'
8121 LEVEL is a current level, CHANGE is by how much the level should be
8122 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8123 even level numbers will become the next higher odd number."
8124 (if org-odd-levels-only
8125 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8126 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8127 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8128 (max 1 (+ level (or change 0)))))
8130 (if (boundp 'define-obsolete-function-alias)
8131 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8132 (define-obsolete-function-alias 'org-get-legal-level
8133 'org-get-valid-level)
8134 (define-obsolete-function-alias 'org-get-legal-level
8135 'org-get-valid-level "23.1")))
8137 (defun org-promote ()
8138 "Promote the current heading higher up the tree."
8139 (org-with-wide-buffer
8140 (org-back-to-heading t)
8141 (let* ((after-change-functions (remq 'flyspell-after-change-function
8142 after-change-functions))
8143 (level (save-match-data (funcall outline-level)))
8144 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8145 (diff (abs (- level (length up-head) -1))))
8146 (cond
8147 ((and (= level 1) org-allow-promoting-top-level-subtree)
8148 (replace-match "# " nil t))
8149 ((= level 1)
8150 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8151 (t (replace-match up-head nil t)))
8152 (unless (= level 1)
8153 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8154 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8155 (run-hooks 'org-after-promote-entry-hook))))
8157 (defun org-demote ()
8158 "Demote the current heading lower down the tree."
8159 (org-with-wide-buffer
8160 (org-back-to-heading t)
8161 (let* ((after-change-functions (remq 'flyspell-after-change-function
8162 after-change-functions))
8163 (level (save-match-data (funcall outline-level)))
8164 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8165 (diff (abs (- level (length down-head) -1))))
8166 (replace-match down-head nil t)
8167 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8168 (when org-adapt-indentation (org-fixup-indentation diff))
8169 (run-hooks 'org-after-demote-entry-hook))))
8171 (defun org-cycle-level ()
8172 "Cycle the level of an empty headline through possible states.
8173 This goes first to child, then to parent, level, then up the hierarchy.
8174 After top level, it switches back to sibling level."
8175 (interactive)
8176 (let ((org-adapt-indentation nil))
8177 (when (org-point-at-end-of-empty-headline)
8178 (setq this-command 'org-cycle-level) ; Only needed for caching
8179 (let ((cur-level (org-current-level))
8180 (prev-level (org-get-previous-line-level)))
8181 (cond
8182 ;; If first headline in file, promote to top-level.
8183 ((= prev-level 0)
8184 (loop repeat (/ (- cur-level 1) (org-level-increment))
8185 do (org-do-promote)))
8186 ;; If same level as prev, demote one.
8187 ((= prev-level cur-level)
8188 (org-do-demote))
8189 ;; If parent is top-level, promote to top level if not already.
8190 ((= prev-level 1)
8191 (loop repeat (/ (- cur-level 1) (org-level-increment))
8192 do (org-do-promote)))
8193 ;; If top-level, return to prev-level.
8194 ((= cur-level 1)
8195 (loop repeat (/ (- prev-level 1) (org-level-increment))
8196 do (org-do-demote)))
8197 ;; If less than prev-level, promote one.
8198 ((< cur-level prev-level)
8199 (org-do-promote))
8200 ;; If deeper than prev-level, promote until higher than
8201 ;; prev-level.
8202 ((> cur-level prev-level)
8203 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8204 do (org-do-promote))))
8205 t))))
8207 (defun org-map-tree (fun)
8208 "Call FUN for every heading underneath the current one."
8209 (org-back-to-heading)
8210 (let ((level (funcall outline-level)))
8211 (save-excursion
8212 (funcall fun)
8213 (while (and (progn
8214 (outline-next-heading)
8215 (> (funcall outline-level) level))
8216 (not (eobp)))
8217 (funcall fun)))))
8219 (defun org-map-region (fun beg end)
8220 "Call FUN for every heading between BEG and END."
8221 (let ((org-ignore-region t))
8222 (save-excursion
8223 (setq end (copy-marker end))
8224 (goto-char beg)
8225 (if (and (re-search-forward org-outline-regexp-bol nil t)
8226 (< (point) end))
8227 (funcall fun))
8228 (while (and (progn
8229 (outline-next-heading)
8230 (< (point) end))
8231 (not (eobp)))
8232 (funcall fun)))))
8234 (defun org-fixup-indentation (diff)
8235 "Change the indentation in the current entry by DIFF.
8237 DIFF is an integer. Indentation is done according to the
8238 following rules:
8240 - Planning information and property drawers are always indented
8241 according to the new level of the headline;
8243 - Footnote definitions and their contents are ignored;
8245 - Inlinetasks' boundaries are not shifted;
8247 - Empty lines are ignored;
8249 - Other lines' indentation are shifted by DIFF columns, unless
8250 it would introduce a structural change in the document, in
8251 which case no shifting is done at all.
8253 Assume point is at a heading or an inlinetask beginning."
8254 (org-with-wide-buffer
8255 (narrow-to-region (line-beginning-position)
8256 (save-excursion
8257 (if (org-with-limited-levels (org-at-heading-p))
8258 (org-with-limited-levels (outline-next-heading))
8259 (org-inlinetask-goto-end))
8260 (point)))
8261 (forward-line)
8262 ;; Indent properly planning info and property drawer.
8263 (when (org-looking-at-p org-planning-line-re)
8264 (org-indent-line)
8265 (forward-line))
8266 (when (looking-at org-property-drawer-re)
8267 (goto-char (match-end 0))
8268 (forward-line)
8269 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8270 (catch 'no-shift
8271 (when (zerop diff) (throw 'no-shift nil))
8272 ;; If DIFF is negative, first check if a shift is possible at all
8273 ;; (e.g., it doesn't break structure). This can only happen if
8274 ;; some contents are not properly indented.
8275 (let ((case-fold-search t))
8276 (when (< diff 0)
8277 (let ((diff (- diff))
8278 (forbidden-re (concat org-outline-regexp
8279 "\\|"
8280 (substring org-footnote-definition-re 1))))
8281 (save-excursion
8282 (while (not (eobp))
8283 (cond
8284 ((org-looking-at-p "[ \t]*$") (forward-line))
8285 ((and (org-looking-at-p org-footnote-definition-re)
8286 (let ((e (org-element-at-point)))
8287 (and (eq (org-element-type e) 'footnote-definition)
8288 (goto-char (org-element-property :end e))))))
8289 ((org-looking-at-p org-outline-regexp) (forward-line))
8290 ;; Give up if shifting would move before column 0 or
8291 ;; if it would introduce a headline or a footnote
8292 ;; definition.
8294 (skip-chars-forward " \t")
8295 (let ((ind (current-column)))
8296 (when (or (< ind diff)
8297 (and (= ind diff) (org-looking-at-p forbidden-re)))
8298 (throw 'no-shift nil)))
8299 ;; Ignore contents of example blocks and source
8300 ;; blocks if their indentation is meant to be
8301 ;; preserved. Jump to block's closing line.
8302 (beginning-of-line)
8303 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8304 (let ((e (org-element-at-point)))
8305 (and (memq (org-element-type e)
8306 '(example-block src-block))
8307 (or org-src-preserve-indentation
8308 (org-element-property :preserve-indent e))
8309 (goto-char (org-element-property :end e))
8310 (progn (skip-chars-backward " \r\t\n")
8311 (beginning-of-line)
8312 t))))
8313 (forward-line))))))))
8314 ;; Shift lines but footnote definitions, inlinetasks boundaries
8315 ;; by DIFF. Also skip contents of source or example blocks
8316 ;; when indentation is meant to be preserved.
8317 (while (not (eobp))
8318 (cond
8319 ((and (org-looking-at-p org-footnote-definition-re)
8320 (let ((e (org-element-at-point)))
8321 (and (eq (org-element-type e) 'footnote-definition)
8322 (goto-char (org-element-property :end e))))))
8323 ((org-looking-at-p org-outline-regexp) (forward-line))
8324 ((org-looking-at-p "[ \t]*$") (forward-line))
8326 (org-indent-line-to (+ (org-get-indentation) diff))
8327 (beginning-of-line)
8328 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8329 (let ((e (org-element-at-point)))
8330 (and (memq (org-element-type e)
8331 '(example-block src-block))
8332 (or org-src-preserve-indentation
8333 (org-element-property :preserve-indent e))
8334 (goto-char (org-element-property :end e))
8335 (progn (skip-chars-backward " \r\t\n")
8336 (beginning-of-line)
8337 t))))
8338 (forward-line)))))))))
8340 (defun org-convert-to-odd-levels ()
8341 "Convert an org-mode file with all levels allowed to one with odd levels.
8342 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8343 level 5 etc."
8344 (interactive)
8345 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8346 (let ((outline-level 'org-outline-level)
8347 (org-odd-levels-only nil) n)
8348 (save-excursion
8349 (goto-char (point-min))
8350 (while (re-search-forward "^\\*\\*+ " nil t)
8351 (setq n (- (length (match-string 0)) 2))
8352 (while (>= (setq n (1- n)) 0)
8353 (org-demote))
8354 (end-of-line 1))))))
8356 (defun org-convert-to-oddeven-levels ()
8357 "Convert an org-mode file with only odd levels to one with odd/even levels.
8358 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8359 file contains a section with an even level, conversion would
8360 destroy the structure of the file. An error is signaled in this
8361 case."
8362 (interactive)
8363 (goto-char (point-min))
8364 ;; First check if there are no even levels
8365 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8366 (org-show-set-visibility 'canonical)
8367 (error "Not all levels are odd in this file. Conversion not possible"))
8368 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8369 (let ((outline-regexp org-outline-regexp)
8370 (outline-level 'org-outline-level)
8371 (org-odd-levels-only nil) n)
8372 (save-excursion
8373 (goto-char (point-min))
8374 (while (re-search-forward "^\\*\\*+ " nil t)
8375 (setq n (/ (1- (length (match-string 0))) 2))
8376 (while (>= (setq n (1- n)) 0)
8377 (org-promote))
8378 (end-of-line 1))))))
8380 (defun org-tr-level (n)
8381 "Make N odd if required."
8382 (if org-odd-levels-only (1+ (/ n 2)) n))
8384 ;;; Vertical tree motion, cutting and pasting of subtrees
8386 (defun org-move-subtree-up (&optional arg)
8387 "Move the current subtree up past ARG headlines of the same level."
8388 (interactive "p")
8389 (org-move-subtree-down (- (prefix-numeric-value arg))))
8391 (defun org-move-subtree-down (&optional arg)
8392 "Move the current subtree down past ARG headlines of the same level."
8393 (interactive "p")
8394 (setq arg (prefix-numeric-value arg))
8395 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8396 'org-get-last-sibling))
8397 (ins-point (make-marker))
8398 (cnt (abs arg))
8399 (col (current-column))
8400 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8401 ;; Select the tree
8402 (org-back-to-heading)
8403 (setq beg0 (point))
8404 (save-excursion
8405 (setq ne-beg (org-back-over-empty-lines))
8406 (setq beg (point)))
8407 (save-match-data
8408 (save-excursion (outline-end-of-heading)
8409 (setq folded (outline-invisible-p)))
8410 (progn (org-end-of-subtree nil t)
8411 (unless (eobp) (backward-char))))
8412 (outline-next-heading)
8413 (setq ne-end (org-back-over-empty-lines))
8414 (setq end (point))
8415 (goto-char beg0)
8416 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8417 ;; include less whitespace
8418 (save-excursion
8419 (goto-char beg)
8420 (forward-line (- ne-beg ne-end))
8421 (setq beg (point))))
8422 ;; Find insertion point, with error handling
8423 (while (> cnt 0)
8424 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8425 (progn (goto-char beg0)
8426 (user-error "Cannot move past superior level or buffer limit")))
8427 (setq cnt (1- cnt)))
8428 (if (> arg 0)
8429 ;; Moving forward - still need to move over subtree
8430 (progn (org-end-of-subtree t t)
8431 (save-excursion
8432 (org-back-over-empty-lines)
8433 (or (bolp) (newline)))))
8434 (setq ne-ins (org-back-over-empty-lines))
8435 (move-marker ins-point (point))
8436 (setq txt (buffer-substring beg end))
8437 (org-save-markers-in-region beg end)
8438 (delete-region beg end)
8439 (org-remove-empty-overlays-at beg)
8440 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8441 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8442 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8443 (let ((bbb (point)))
8444 (insert-before-markers txt)
8445 (org-reinstall-markers-in-region bbb)
8446 (move-marker ins-point bbb))
8447 (or (bolp) (insert "\n"))
8448 (setq ins-end (point))
8449 (goto-char ins-point)
8450 (org-skip-whitespace)
8451 (when (and (< arg 0)
8452 (org-first-sibling-p)
8453 (> ne-ins ne-beg))
8454 ;; Move whitespace back to beginning
8455 (save-excursion
8456 (goto-char ins-end)
8457 (let ((kill-whole-line t))
8458 (kill-line (- ne-ins ne-beg)) (point)))
8459 (insert (make-string (- ne-ins ne-beg) ?\n)))
8460 (move-marker ins-point nil)
8461 (if folded
8462 (hide-subtree)
8463 (org-show-entry)
8464 (show-children)
8465 (org-cycle-hide-drawers 'children))
8466 (org-clean-visibility-after-subtree-move)
8467 ;; move back to the initial column we were at
8468 (move-to-column col)))
8470 (defvar org-subtree-clip ""
8471 "Clipboard for cut and paste of subtrees.
8472 This is actually only a copy of the kill, because we use the normal kill
8473 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8475 (defvar org-subtree-clip-folded nil
8476 "Was the last copied subtree folded?
8477 This is used to fold the tree back after pasting.")
8479 (defun org-cut-subtree (&optional n)
8480 "Cut the current subtree into the clipboard.
8481 With prefix arg N, cut this many sequential subtrees.
8482 This is a short-hand for marking the subtree and then cutting it."
8483 (interactive "p")
8484 (org-copy-subtree n 'cut))
8486 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8487 "Copy the current subtree it in the clipboard.
8488 With prefix arg N, copy this many sequential subtrees.
8489 This is a short-hand for marking the subtree and then copying it.
8490 If CUT is non-nil, actually cut the subtree.
8491 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8492 of some markers in the region, even if CUT is non-nil. This is
8493 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8494 (interactive "p")
8495 (let (beg end folded (beg0 (point)))
8496 (if (org-called-interactively-p 'any)
8497 (org-back-to-heading nil) ; take what looks like a subtree
8498 (org-back-to-heading t)) ; take what is really there
8499 (setq beg (point))
8500 (skip-chars-forward " \t\r\n")
8501 (save-match-data
8502 (if nosubtrees
8503 (outline-next-heading)
8504 (save-excursion (outline-end-of-heading)
8505 (setq folded (outline-invisible-p)))
8506 (ignore-errors (org-forward-heading-same-level (1- n) t))
8507 (org-end-of-subtree t t)))
8508 ;; Include the end of an inlinetask
8509 (when (and (featurep 'org-inlinetask)
8510 (looking-at-p (concat (org-inlinetask-outline-regexp)
8511 "END[ \t]*$")))
8512 (end-of-line))
8513 (setq end (point))
8514 (goto-char beg0)
8515 (when (> end beg)
8516 (setq org-subtree-clip-folded folded)
8517 (when (or cut force-store-markers)
8518 (org-save-markers-in-region beg end))
8519 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8520 (setq org-subtree-clip (current-kill 0))
8521 (message "%s: Subtree(s) with %d characters"
8522 (if cut "Cut" "Copied")
8523 (length org-subtree-clip)))))
8525 (defun org-paste-subtree (&optional level tree for-yank remove)
8526 "Paste the clipboard as a subtree, with modification of headline level.
8527 The entire subtree is promoted or demoted in order to match a new headline
8528 level.
8530 If the cursor is at the beginning of a headline, the same level as
8531 that headline is used to paste the tree.
8533 If not, the new level is derived from the *visible* headings
8534 before and after the insertion point, and taken to be the inferior headline
8535 level of the two. So if the previous visible heading is level 3 and the
8536 next is level 4 (or vice versa), level 4 will be used for insertion.
8537 This makes sure that the subtree remains an independent subtree and does
8538 not swallow low level entries.
8540 You can also force a different level, either by using a numeric prefix
8541 argument, or by inserting the heading marker by hand. For example, if the
8542 cursor is after \"*****\", then the tree will be shifted to level 5.
8544 If optional TREE is given, use this text instead of the kill ring.
8546 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8547 move back over whitespace before inserting, and move point to the end of
8548 the inserted text when done.
8550 When REMOVE is non-nil, remove the subtree from the clipboard."
8551 (interactive "P")
8552 (setq tree (or tree (and kill-ring (current-kill 0))))
8553 (unless (org-kill-is-subtree-p tree)
8554 (user-error "%s"
8555 (substitute-command-keys
8556 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8557 (org-with-limited-levels
8558 (let* ((visp (not (outline-invisible-p)))
8559 (txt tree)
8560 (^re_ "\\(\\*+\\)[ \t]*")
8561 (old-level (if (string-match org-outline-regexp-bol txt)
8562 (- (match-end 0) (match-beginning 0) 1)
8563 -1))
8564 (force-level (cond (level (prefix-numeric-value level))
8565 ((and (looking-at "[ \t]*$")
8566 (string-match
8567 "^\\*+$" (buffer-substring
8568 (point-at-bol) (point))))
8569 (- (match-end 0) (match-beginning 0)))
8570 ((and (bolp)
8571 (looking-at org-outline-regexp))
8572 (- (match-end 0) (point) 1))))
8573 (previous-level (save-excursion
8574 (condition-case nil
8575 (progn
8576 (outline-previous-visible-heading 1)
8577 (if (looking-at ^re_)
8578 (- (match-end 0) (match-beginning 0) 1)
8580 (error 1))))
8581 (next-level (save-excursion
8582 (condition-case nil
8583 (progn
8584 (or (looking-at org-outline-regexp)
8585 (outline-next-visible-heading 1))
8586 (if (looking-at ^re_)
8587 (- (match-end 0) (match-beginning 0) 1)
8589 (error 1))))
8590 (new-level (or force-level (max previous-level next-level)))
8591 (shift (if (or (= old-level -1)
8592 (= new-level -1)
8593 (= old-level new-level))
8595 (- new-level old-level)))
8596 (delta (if (> shift 0) -1 1))
8597 (func (if (> shift 0) 'org-demote 'org-promote))
8598 (org-odd-levels-only nil)
8599 beg end newend)
8600 ;; Remove the forced level indicator
8601 (if force-level
8602 (delete-region (point-at-bol) (point)))
8603 ;; Paste
8604 (beginning-of-line (if (bolp) 1 2))
8605 (setq beg (point))
8606 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8607 (insert-before-markers txt)
8608 (unless (string-match "\n\\'" txt) (insert "\n"))
8609 (setq newend (point))
8610 (org-reinstall-markers-in-region beg)
8611 (setq end (point))
8612 (goto-char beg)
8613 (skip-chars-forward " \t\n\r")
8614 (setq beg (point))
8615 (if (and (outline-invisible-p) visp)
8616 (save-excursion (outline-show-heading)))
8617 ;; Shift if necessary
8618 (unless (= shift 0)
8619 (save-restriction
8620 (narrow-to-region beg end)
8621 (while (not (= shift 0))
8622 (org-map-region func (point-min) (point-max))
8623 (setq shift (+ delta shift)))
8624 (goto-char (point-min))
8625 (setq newend (point-max))))
8626 (when (or (org-called-interactively-p 'interactive) for-yank)
8627 (message "Clipboard pasted as level %d subtree" new-level))
8628 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8629 kill-ring
8630 (eq org-subtree-clip (current-kill 0))
8631 org-subtree-clip-folded)
8632 ;; The tree was folded before it was killed/copied
8633 (hide-subtree))
8634 (and for-yank (goto-char newend))
8635 (and remove (setq kill-ring (cdr kill-ring))))))
8637 (defun org-kill-is-subtree-p (&optional txt)
8638 "Check if the current kill is an outline subtree, or a set of trees.
8639 Returns nil if kill does not start with a headline, or if the first
8640 headline level is not the largest headline level in the tree.
8641 So this will actually accept several entries of equal levels as well,
8642 which is OK for `org-paste-subtree'.
8643 If optional TXT is given, check this string instead of the current kill."
8644 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8645 (re (org-get-limited-outline-regexp))
8646 (^re (concat "^" re))
8647 (start-level (and kill
8648 (string-match
8649 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8650 kill)
8651 (- (match-end 2) (match-beginning 2) 1)))
8652 (start (1+ (or (match-beginning 2) -1))))
8653 (if (not start-level)
8654 (progn
8655 nil) ;; does not even start with a heading
8656 (catch 'exit
8657 (while (setq start (string-match ^re kill (1+ start)))
8658 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8659 (throw 'exit nil)))
8660 t))))
8662 (defvar org-markers-to-move nil
8663 "Markers that should be moved with a cut-and-paste operation.
8664 Those markers are stored together with their positions relative to
8665 the start of the region.")
8667 (defun org-save-markers-in-region (beg end)
8668 "Check markers in region.
8669 If these markers are between BEG and END, record their position relative
8670 to BEG, so that after moving the block of text, we can put the markers back
8671 into place.
8672 This function gets called just before an entry or tree gets cut from the
8673 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8674 called immediately, to move the markers with the entries."
8675 (setq org-markers-to-move nil)
8676 (when (featurep 'org-clock)
8677 (org-clock-save-markers-for-cut-and-paste beg end))
8678 (when (featurep 'org-agenda)
8679 (org-agenda-save-markers-for-cut-and-paste beg end)))
8681 (defun org-check-and-save-marker (marker beg end)
8682 "Check if MARKER is between BEG and END.
8683 If yes, remember the marker and the distance to BEG."
8684 (when (and (marker-buffer marker)
8685 (equal (marker-buffer marker) (current-buffer)))
8686 (if (and (>= marker beg) (< marker end))
8687 (push (cons marker (- marker beg)) org-markers-to-move))))
8689 (defun org-reinstall-markers-in-region (beg)
8690 "Move all remembered markers to their position relative to BEG."
8691 (mapc (lambda (x)
8692 (move-marker (car x) (+ beg (cdr x))))
8693 org-markers-to-move)
8694 (setq org-markers-to-move nil))
8696 (defun org-narrow-to-subtree ()
8697 "Narrow buffer to the current subtree."
8698 (interactive)
8699 (save-excursion
8700 (save-match-data
8701 (org-with-limited-levels
8702 (narrow-to-region
8703 (progn (org-back-to-heading t) (point))
8704 (progn (org-end-of-subtree t t)
8705 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8706 (point)))))))
8708 (defun org-narrow-to-block ()
8709 "Narrow buffer to the current block."
8710 (interactive)
8711 (let* ((case-fold-search t)
8712 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8713 "^[ \t]*#\\+end_.*")))
8714 (if blockp
8715 (narrow-to-region (car blockp) (cdr blockp))
8716 (user-error "Not in a block"))))
8718 (defun org-clone-subtree-with-time-shift (n &optional shift)
8719 "Clone the task (subtree) at point N times.
8720 The clones will be inserted as siblings.
8722 In interactive use, the user will be prompted for the number of
8723 clones to be produced. If the entry has a timestamp, the user
8724 will also be prompted for a time shift, which may be a repeater
8725 as used in time stamps, for example `+3d'. To disable this,
8726 you can call the function with a universal prefix argument.
8728 When a valid repeater is given and the entry contains any time
8729 stamps, the clones will become a sequence in time, with time
8730 stamps in the subtree shifted for each clone produced. If SHIFT
8731 is nil or the empty string, time stamps will be left alone. The
8732 ID property of the original subtree is removed.
8734 If the original subtree did contain time stamps with a repeater,
8735 the following will happen:
8736 - the repeater will be removed in each clone
8737 - an additional clone will be produced, with the current, unshifted
8738 date(s) in the entry.
8739 - the original entry will be placed *after* all the clones, with
8740 repeater intact.
8741 - the start days in the repeater in the original entry will be shifted
8742 to past the last clone.
8743 In this way you can spell out a number of instances of a repeating task,
8744 and still retain the repeater to cover future instances of the task.
8746 As described above, N+1 clones are produced when the original
8747 subtree has a repeater. Setting N to 0, then, can be used to
8748 remove the repeater from a subtree and create a shifted clone
8749 with the original repeater."
8750 (interactive "nNumber of clones to produce: ")
8751 (let ((shift
8752 (or shift
8753 (if (and (not (equal current-prefix-arg '(4)))
8754 (save-excursion
8755 (re-search-forward org-ts-regexp-both
8756 (save-excursion
8757 (org-end-of-subtree t)
8758 (point)) t)))
8759 (read-from-minibuffer
8760 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8761 ""))) ;; No time shift
8762 (n-no-remove -1)
8763 (drawer-re org-drawer-regexp)
8764 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8765 beg end template task idprop
8766 shift-n shift-what doshift nmin nmax)
8767 (unless (wholenump n)
8768 (user-error "Invalid number of replications %s" n))
8769 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8770 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8771 shift)))
8772 (user-error "Invalid shift specification %s" shift))
8773 (when doshift
8774 (setq shift-n (string-to-number (match-string 1 shift))
8775 shift-what (cdr (assoc (match-string 2 shift)
8776 '(("d" . day) ("w" . week)
8777 ("m" . month) ("y" . year))))))
8778 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8779 (setq nmin 1 nmax n)
8780 (org-back-to-heading t)
8781 (setq beg (point))
8782 (setq idprop (org-entry-get nil "ID"))
8783 (org-end-of-subtree t t)
8784 (or (bolp) (insert "\n"))
8785 (setq end (point))
8786 (setq template (buffer-substring beg end))
8787 (when (and doshift
8788 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8789 (delete-region beg end)
8790 (setq end beg)
8791 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8792 (goto-char end)
8793 (loop for n from nmin to nmax do
8794 ;; prepare clone
8795 (with-temp-buffer
8796 (insert template)
8797 (org-mode)
8798 (goto-char (point-min))
8799 (org-show-subtree)
8800 (and idprop (if org-clone-delete-id
8801 (org-entry-delete nil "ID")
8802 (org-id-get-create t)))
8803 (unless (= n 0)
8804 (while (re-search-forward org-clock-re nil t)
8805 (kill-whole-line))
8806 (goto-char (point-min))
8807 (while (re-search-forward drawer-re nil t)
8808 (org-remove-empty-drawer-at (point))))
8809 (goto-char (point-min))
8810 (when doshift
8811 (while (re-search-forward org-ts-regexp-both nil t)
8812 (org-timestamp-change (* n shift-n) shift-what))
8813 (unless (= n n-no-remove)
8814 (goto-char (point-min))
8815 (while (re-search-forward org-ts-regexp nil t)
8816 (save-excursion
8817 (goto-char (match-beginning 0))
8818 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8819 (delete-region (match-beginning 1) (match-end 1)))))))
8820 (setq task (buffer-string)))
8821 (insert task))
8822 (goto-char beg)))
8824 ;;; Outline Sorting
8826 (defun org-sort (with-case)
8827 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8828 Optional argument WITH-CASE means sort case-sensitively."
8829 (interactive "P")
8830 (cond
8831 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8832 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8834 (org-call-with-arg 'org-sort-entries with-case))))
8836 (defun org-sort-remove-invisible (s)
8837 "Remove invisible links from string S."
8838 (remove-text-properties 0 (length s) org-rm-props s)
8839 (while (string-match org-bracket-link-regexp s)
8840 (setq s (replace-match (if (match-end 2)
8841 (match-string 3 s)
8842 (match-string 1 s))
8843 t t s)))
8844 (let ((st (format " %s " s)))
8845 (while (string-match org-emph-re st)
8846 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8847 (setq s (substring st 1 -1)))
8850 (defvar org-priority-regexp) ; defined later in the file
8852 (defvar org-after-sorting-entries-or-items-hook nil
8853 "Hook that is run after a bunch of entries or items have been sorted.
8854 When children are sorted, the cursor is in the parent line when this
8855 hook gets called. When a region or a plain list is sorted, the cursor
8856 will be in the first entry of the sorted region/list.")
8858 (defun org-sort-entries
8859 (&optional with-case sorting-type getkey-func compare-func property)
8860 "Sort entries on a certain level of an outline tree.
8861 If there is an active region, the entries in the region are sorted.
8862 Else, if the cursor is before the first entry, sort the top-level items.
8863 Else, the children of the entry at point are sorted.
8865 Sorting can be alphabetically, numerically, by date/time as given by
8866 a time stamp, by a property, by priority order, or by a custom function.
8868 The command prompts for the sorting type unless it has been given to the
8869 function through the SORTING-TYPE argument, which needs to be a character,
8870 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8871 the precise meaning of each character:
8873 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8874 c By creation time, which is assumed to be the first inactive time stamp
8875 at the beginning of a line.
8876 d By deadline date/time.
8877 k By clocking time.
8878 n Numerically, by converting the beginning of the entry/item to a number.
8879 o By order of TODO keywords.
8880 p By priority according to the cookie.
8881 r By the value of a property.
8882 s By scheduled date/time.
8883 t By date/time, either the first active time stamp in the entry, or, if
8884 none exist, by the first inactive one.
8886 Capital letters will reverse the sort order.
8888 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8889 called with point at the beginning of the record. It must return either
8890 a string or a number that should serve as the sorting key for that record.
8892 Comparing entries ignores case by default. However, with an optional argument
8893 WITH-CASE, the sorting considers case as well.
8895 Sorting is done against the visible part of the headlines, it ignores hidden
8896 links.
8898 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8899 (interactive "P")
8900 (let ((case-func (if with-case 'identity 'downcase))
8901 (cmstr
8902 ;; The clock marker is lost when using `sort-subr', let's
8903 ;; store the clocking string.
8904 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8905 (save-excursion
8906 (goto-char org-clock-marker)
8907 (buffer-substring-no-properties (line-beginning-position)
8908 (point)))))
8909 start beg end stars re re2
8910 txt what tmp)
8911 ;; Find beginning and end of region to sort
8912 (cond
8913 ((org-region-active-p)
8914 ;; we will sort the region
8915 (setq end (region-end)
8916 what "region")
8917 (goto-char (region-beginning))
8918 (if (not (org-at-heading-p)) (outline-next-heading))
8919 (setq start (point)))
8920 ((or (org-at-heading-p)
8921 (ignore-errors (progn (org-back-to-heading) t)))
8922 ;; we will sort the children of the current headline
8923 (org-back-to-heading)
8924 (setq start (point)
8925 end (progn (org-end-of-subtree t t)
8926 (or (bolp) (insert "\n"))
8927 (when (>= (org-back-over-empty-lines) 1)
8928 (forward-line 1))
8929 (point))
8930 what "children")
8931 (goto-char start)
8932 (show-subtree)
8933 (outline-next-heading))
8935 ;; we will sort the top-level entries in this file
8936 (goto-char (point-min))
8937 (or (org-at-heading-p) (outline-next-heading))
8938 (setq start (point))
8939 (goto-char (point-max))
8940 (beginning-of-line 1)
8941 (when (looking-at ".*?\\S-")
8942 ;; File ends in a non-white line
8943 (end-of-line 1)
8944 (insert "\n"))
8945 (setq end (point-max))
8946 (setq what "top-level")
8947 (goto-char start)
8948 (show-all)))
8950 (setq beg (point))
8951 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8953 (looking-at "\\(\\*+\\)")
8954 (setq stars (match-string 1)
8955 re (concat "^" (regexp-quote stars) " +")
8956 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8957 txt (buffer-substring beg end))
8958 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8959 (if (and (not (equal stars "*")) (string-match re2 txt))
8960 (user-error "Region to sort contains a level above the first entry"))
8962 (unless sorting-type
8963 (message
8964 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8965 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8966 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8967 what)
8968 (setq sorting-type (read-char-exclusive))
8970 (unless getkey-func
8971 (and (= (downcase sorting-type) ?f)
8972 (setq getkey-func
8973 (org-icompleting-read "Sort using function: "
8974 obarray 'fboundp t nil nil))
8975 (setq getkey-func (intern getkey-func))))
8977 (and (= (downcase sorting-type) ?r)
8978 (not property)
8979 (setq property
8980 (org-icompleting-read "Property: "
8981 (mapcar 'list (org-buffer-property-keys t))
8982 nil t))))
8984 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8985 (message "Sorting entries...")
8987 (save-restriction
8988 (narrow-to-region start end)
8989 (let ((dcst (downcase sorting-type))
8990 (case-fold-search nil)
8991 (now (current-time)))
8992 (sort-subr
8993 (/= dcst sorting-type)
8994 ;; This function moves to the beginning character of the "record" to
8995 ;; be sorted.
8996 (lambda nil
8997 (if (re-search-forward re nil t)
8998 (goto-char (match-beginning 0))
8999 (goto-char (point-max))))
9000 ;; This function moves to the last character of the "record" being
9001 ;; sorted.
9002 (lambda nil
9003 (save-match-data
9004 (condition-case nil
9005 (outline-forward-same-level 1)
9006 (error
9007 (goto-char (point-max))))))
9008 ;; This function returns the value that gets sorted against.
9009 (lambda nil
9010 (cond
9011 ((= dcst ?n)
9012 (if (looking-at org-complex-heading-regexp)
9013 (string-to-number (org-sort-remove-invisible (match-string 4)))
9014 nil))
9015 ((= dcst ?a)
9016 (if (looking-at org-complex-heading-regexp)
9017 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9018 nil))
9019 ((= dcst ?k)
9020 (or (get-text-property (point) :org-clock-minutes) 0))
9021 ((= dcst ?t)
9022 (let ((end (save-excursion (outline-next-heading) (point))))
9023 (if (or (re-search-forward org-ts-regexp end t)
9024 (re-search-forward org-ts-regexp-both end t))
9025 (org-time-string-to-seconds (match-string 0))
9026 (org-float-time now))))
9027 ((= dcst ?c)
9028 (let ((end (save-excursion (outline-next-heading) (point))))
9029 (if (re-search-forward
9030 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9031 end t)
9032 (org-time-string-to-seconds (match-string 0))
9033 (org-float-time now))))
9034 ((= dcst ?s)
9035 (let ((end (save-excursion (outline-next-heading) (point))))
9036 (if (re-search-forward org-scheduled-time-regexp end t)
9037 (org-time-string-to-seconds (match-string 1))
9038 (org-float-time now))))
9039 ((= dcst ?d)
9040 (let ((end (save-excursion (outline-next-heading) (point))))
9041 (if (re-search-forward org-deadline-time-regexp end t)
9042 (org-time-string-to-seconds (match-string 1))
9043 (org-float-time now))))
9044 ((= dcst ?p)
9045 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9046 (string-to-char (match-string 2))
9047 org-default-priority))
9048 ((= dcst ?r)
9049 (or (org-entry-get nil property) ""))
9050 ((= dcst ?o)
9051 (if (looking-at org-complex-heading-regexp)
9052 (let* ((m (match-string 2))
9053 (s (if (member m org-done-keywords) '- '+)))
9054 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9055 ((= dcst ?f)
9056 (if getkey-func
9057 (progn
9058 (setq tmp (funcall getkey-func))
9059 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9060 tmp)
9061 (error "Invalid key function `%s'" getkey-func)))
9062 (t (error "Invalid sorting type `%c'" sorting-type))))
9064 (cond
9065 ((= dcst ?a) 'string<)
9066 ((= dcst ?f) compare-func)
9067 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9068 (run-hooks 'org-after-sorting-entries-or-items-hook)
9069 ;; Reset the clock marker if needed
9070 (when cmstr
9071 (save-excursion
9072 (goto-char start)
9073 (search-forward cmstr nil t)
9074 (move-marker org-clock-marker (point))))
9075 (message "Sorting entries...done")))
9077 ;;; The orgstruct minor mode
9079 ;; Define a minor mode which can be used in other modes in order to
9080 ;; integrate the org-mode structure editing commands.
9082 ;; This is really a hack, because the org-mode structure commands use
9083 ;; keys which normally belong to the major mode. Here is how it
9084 ;; works: The minor mode defines all the keys necessary to operate the
9085 ;; structure commands, but wraps the commands into a function which
9086 ;; tests if the cursor is currently at a headline or a plain list
9087 ;; item. If that is the case, the structure command is used,
9088 ;; temporarily setting many Org-mode variables like regular
9089 ;; expressions for filling etc. However, when any of those keys is
9090 ;; used at a different location, function uses `key-binding' to look
9091 ;; up if the key has an associated command in another currently active
9092 ;; keymap (minor modes, major mode, global), and executes that
9093 ;; command. There might be problems if any of the keys is otherwise
9094 ;; used as a prefix key.
9096 (defcustom orgstruct-heading-prefix-regexp ""
9097 "Regexp that matches the custom prefix of Org headlines in
9098 orgstruct(++)-mode."
9099 :group 'org
9100 :version "24.4"
9101 :package-version '(Org . "8.3")
9102 :type 'regexp)
9103 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9105 (defcustom orgstruct-setup-hook nil
9106 "Hook run after orgstruct-mode-map is filled."
9107 :group 'org
9108 :version "24.4"
9109 :package-version '(Org . "8.0")
9110 :type 'hook)
9112 (defvar orgstruct-initialized nil)
9114 (defvar org-local-vars nil
9115 "List of local variables, for use by `orgstruct-mode'.")
9117 ;;;###autoload
9118 (define-minor-mode orgstruct-mode
9119 "Toggle the minor mode `orgstruct-mode'.
9120 This mode is for using Org-mode structure commands in other
9121 modes. The following keys behave as if Org-mode were active, if
9122 the cursor is on a headline, or on a plain list item (both as
9123 defined by Org-mode)."
9124 nil " OrgStruct" (make-sparse-keymap)
9125 (funcall (if orgstruct-mode
9126 'add-to-invisibility-spec
9127 'remove-from-invisibility-spec)
9128 '(outline . t))
9129 (when orgstruct-mode
9130 (org-load-modules-maybe)
9131 (unless orgstruct-initialized
9132 (orgstruct-setup)
9133 (setq orgstruct-initialized t))))
9135 ;;;###autoload
9136 (defun turn-on-orgstruct ()
9137 "Unconditionally turn on `orgstruct-mode'."
9138 (orgstruct-mode 1))
9140 (defvar org-fb-vars nil)
9141 (make-variable-buffer-local 'org-fb-vars)
9142 (defun orgstruct++-mode (&optional arg)
9143 "Toggle `orgstruct-mode', the enhanced version of it.
9144 In addition to setting orgstruct-mode, this also exports all
9145 indentation and autofilling variables from org-mode into the
9146 buffer. It will also recognize item context in multiline items."
9147 (interactive "P")
9148 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9149 (if (< arg 1)
9150 (progn (orgstruct-mode -1)
9151 (mapc (lambda(v)
9152 (org-set-local (car v)
9153 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9154 org-fb-vars))
9155 (orgstruct-mode 1)
9156 (setq org-fb-vars nil)
9157 (unless org-local-vars
9158 (setq org-local-vars (org-get-local-variables)))
9159 (let (var val)
9160 (mapc
9161 (lambda (x)
9162 (when (string-match
9163 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9164 (symbol-name (car x)))
9165 (setq var (car x) val (nth 1 x))
9166 (push (list var `(quote ,(eval var))) org-fb-vars)
9167 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9168 org-local-vars)
9169 (org-set-local 'orgstruct-is-++ t))))
9171 (defvar orgstruct-is-++ nil
9172 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9173 (make-variable-buffer-local 'orgstruct-is-++)
9175 ;;;###autoload
9176 (defun turn-on-orgstruct++ ()
9177 "Unconditionally turn on `orgstruct++-mode'."
9178 (orgstruct++-mode 1))
9180 (defun orgstruct-error ()
9181 "Error when there is no default binding for a structure key."
9182 (interactive)
9183 (funcall (if (fboundp 'user-error)
9184 'user-error
9185 'error)
9186 "This key has no function outside structure elements"))
9188 (defun orgstruct-setup ()
9189 "Setup orgstruct keymap."
9190 (dolist (cell '((org-demote . t)
9191 (org-metaleft . t)
9192 (org-metaright . t)
9193 (org-promote . t)
9194 (org-shiftmetaleft . t)
9195 (org-shiftmetaright . t)
9196 org-backward-element
9197 org-backward-heading-same-level
9198 org-ctrl-c-ret
9199 org-ctrl-c-minus
9200 org-ctrl-c-star
9201 org-cycle
9202 org-forward-heading-same-level
9203 org-insert-heading
9204 org-insert-heading-respect-content
9205 org-kill-note-or-show-branches
9206 org-mark-subtree
9207 org-meta-return
9208 org-metadown
9209 org-metaup
9210 org-narrow-to-subtree
9211 org-promote-subtree
9212 org-reveal
9213 org-shiftdown
9214 org-shiftleft
9215 org-shiftmetadown
9216 org-shiftmetaup
9217 org-shiftright
9218 org-shifttab
9219 org-shifttab
9220 org-shiftup
9221 org-show-subtree
9222 org-sort
9223 org-up-element
9224 outline-demote
9225 outline-next-visible-heading
9226 outline-previous-visible-heading
9227 outline-promote
9228 outline-up-heading
9229 show-children))
9230 (let ((f (or (car-safe cell) cell))
9231 (disable-when-heading-prefix (cdr-safe cell)))
9232 (when (fboundp f)
9233 (let ((new-bindings))
9234 (dolist (binding (nconc (where-is-internal f org-mode-map)
9235 (where-is-internal f outline-mode-map)))
9236 (push binding new-bindings)
9237 ;; TODO use local-function-key-map
9238 (dolist (rep '(("<tab>" . "TAB")
9239 ("<return>" . "RET")
9240 ("<escape>" . "ESC")
9241 ("<delete>" . "DEL")))
9242 (setq binding (read-kbd-macro
9243 (let ((case-fold-search))
9244 (replace-regexp-in-string
9245 (regexp-quote (cdr rep))
9246 (car rep)
9247 (key-description binding)))))
9248 (pushnew binding new-bindings :test 'equal)))
9249 (dolist (binding new-bindings)
9250 (let ((key (lookup-key orgstruct-mode-map binding)))
9251 (when (or (not key) (numberp key))
9252 (ignore-errors
9253 (org-defkey orgstruct-mode-map
9254 binding
9255 (orgstruct-make-binding
9256 f binding disable-when-heading-prefix))))))))))
9257 (run-hooks 'orgstruct-setup-hook))
9259 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9260 "Create a function for binding in the structure minor mode.
9261 FUN is the command to call inside a table. KEY is the key that
9262 should be checked in for a command to execute outside of tables.
9263 Non-nil `disable-when-heading-prefix' means to disable the command
9264 if `orgstruct-heading-prefix-regexp' is not empty."
9265 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9266 (let ((nname name)
9267 (i 0))
9268 (while (fboundp (intern nname))
9269 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9270 (setq name (intern nname)))
9271 (eval
9272 (let ((bindings '((org-heading-regexp
9273 (concat "^"
9274 orgstruct-heading-prefix-regexp
9275 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9276 (org-outline-regexp
9277 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9278 (org-outline-regexp-bol
9279 (concat "^" org-outline-regexp))
9280 (outline-regexp org-outline-regexp)
9281 (outline-heading-end-regexp "\n")
9282 (outline-level 'org-outline-level)
9283 (outline-heading-alist))))
9284 `(defun ,name (arg)
9285 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9286 "Outside of structure, run the binding of `"
9287 (key-description key) "'."
9288 (when disable-when-heading-prefix
9289 (concat
9290 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9291 "back to the default binding due to limitations of Org's implementation of\n"
9292 "`" (symbol-name fun) "'.")))
9293 (interactive "p")
9294 (let* ((disable
9295 ,(and disable-when-heading-prefix
9296 '(not (string= orgstruct-heading-prefix-regexp ""))))
9297 (fallback
9298 (or disable
9299 (not
9300 (let* ,bindings
9301 (org-context-p 'headline 'item
9302 ,(when (memq fun
9303 '(org-insert-heading
9304 org-insert-heading-respect-content
9305 org-meta-return))
9306 '(when orgstruct-is-++
9307 'item-body))))))))
9308 (if fallback
9309 (let* ((orgstruct-mode)
9310 (binding
9311 (let ((key ,key))
9312 (catch 'exit
9313 (dolist
9314 (rep
9315 '(nil
9316 ("<\\([^>]*\\)tab>" . "\\1TAB")
9317 ("<\\([^>]*\\)return>" . "\\1RET")
9318 ("<\\([^>]*\\)escape>" . "\\1ESC")
9319 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9320 nil)
9321 (when rep
9322 (setq key (read-kbd-macro
9323 (let ((case-fold-search))
9324 (replace-regexp-in-string
9325 (car rep)
9326 (cdr rep)
9327 (key-description key))))))
9328 (when (key-binding key)
9329 (throw 'exit (key-binding key))))))))
9330 (if (keymapp binding)
9331 (org-set-transient-map binding)
9332 (let ((func (or binding
9333 (unless disable
9334 'orgstruct-error))))
9335 (when func
9336 (call-interactively func)))))
9337 (org-run-like-in-org-mode
9338 (lambda ()
9339 (interactive)
9340 (let* ,bindings
9341 (call-interactively ',fun)))))))))
9342 name))
9344 (defun org-contextualize-keys (alist contexts)
9345 "Return valid elements in ALIST depending on CONTEXTS.
9347 `org-agenda-custom-commands' or `org-capture-templates' are the
9348 values used for ALIST, and `org-agenda-custom-commands-contexts'
9349 or `org-capture-templates-contexts' are the associated contexts
9350 definitions."
9351 (let ((contexts
9352 ;; normalize contexts
9353 (mapcar
9354 (lambda(c) (cond ((listp (cadr c))
9355 (list (car c) (car c) (cadr c)))
9356 ((string= "" (cadr c))
9357 (list (car c) (car c) (caddr c)))
9358 (t c)))
9359 contexts))
9360 (a alist) r s)
9361 ;; loop over all commands or templates
9362 (dolist (c a)
9363 (let (vrules repl)
9364 (cond
9365 ((not (assoc (car c) contexts))
9366 (push c r))
9367 ((and (assoc (car c) contexts)
9368 (setq vrules (org-contextualize-validate-key
9369 (car c) contexts)))
9370 (mapc (lambda (vr)
9371 (when (not (equal (car vr) (cadr vr)))
9372 (setq repl vr)))
9373 vrules)
9374 (if (not repl) (push c r)
9375 (push (cadr repl) s)
9376 (push
9377 (cons (car c)
9378 (cdr (or (assoc (cadr repl) alist)
9379 (error "Undefined key `%s' as contextual replacement for `%s'"
9380 (cadr repl) (car c)))))
9381 r))))))
9382 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9383 (delq
9385 (delete-dups
9386 (mapcar (lambda (x)
9387 (let ((tpl (car x)))
9388 (when (not (delq
9390 (mapcar (lambda (y)
9391 (equal y tpl))
9392 s)))
9393 x)))
9394 (reverse r))))))
9396 (defun org-contextualize-validate-key (key contexts)
9397 "Check CONTEXTS for agenda or capture KEY."
9398 (let (rr res)
9399 (dolist (r contexts)
9400 (mapc
9401 (lambda (rr)
9402 (when
9403 (and (equal key (car r))
9404 (if (functionp rr) (funcall rr)
9405 (or (and (eq (car rr) 'in-file)
9406 (buffer-file-name)
9407 (string-match (cdr rr) (buffer-file-name)))
9408 (and (eq (car rr) 'in-mode)
9409 (string-match (cdr rr) (symbol-name major-mode)))
9410 (and (eq (car rr) 'in-buffer)
9411 (string-match (cdr rr) (buffer-name)))
9412 (when (and (eq (car rr) 'not-in-file)
9413 (buffer-file-name))
9414 (not (string-match (cdr rr) (buffer-file-name))))
9415 (when (eq (car rr) 'not-in-mode)
9416 (not (string-match (cdr rr) (symbol-name major-mode))))
9417 (when (eq (car rr) 'not-in-buffer)
9418 (not (string-match (cdr rr) (buffer-name)))))))
9419 (push r res)))
9420 (car (last r))))
9421 (delete-dups (delq nil res))))
9423 (defun org-context-p (&rest contexts)
9424 "Check if local context is any of CONTEXTS.
9425 Possible values in the list of contexts are `table', `headline', and `item'."
9426 (let ((pos (point)))
9427 (goto-char (point-at-bol))
9428 (prog1 (or (and (memq 'table contexts)
9429 (looking-at "[ \t]*|"))
9430 (and (memq 'headline contexts)
9431 (looking-at org-outline-regexp))
9432 (and (memq 'item contexts)
9433 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9434 (and (memq 'item-body contexts)
9435 (org-in-item-p)))
9436 (goto-char pos))))
9438 (defun org-get-local-variables ()
9439 "Return a list of all local variables in an Org mode buffer."
9440 (let (varlist)
9441 (with-current-buffer (get-buffer-create "*Org tmp*")
9442 (erase-buffer)
9443 (org-mode)
9444 (setq varlist (buffer-local-variables)))
9445 (kill-buffer "*Org tmp*")
9446 (delq nil
9447 (mapcar
9448 (lambda (x)
9449 (setq x
9450 (if (symbolp x)
9451 (list x)
9452 (list (car x) (cdr x))))
9453 (if (and (not (get (car x) 'org-state))
9454 (string-match
9455 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9456 (symbol-name (car x))))
9457 x nil))
9458 varlist))))
9460 (defun org-clone-local-variables (from-buffer &optional regexp)
9461 "Clone local variables from FROM-BUFFER.
9462 Optional argument REGEXP selects variables to clone."
9463 (mapc
9464 (lambda (pair)
9465 (and (symbolp (car pair))
9466 (or (null regexp)
9467 (string-match regexp (symbol-name (car pair))))
9468 (set (make-local-variable (car pair))
9469 (cdr pair))))
9470 (buffer-local-variables from-buffer)))
9472 ;;;###autoload
9473 (defun org-run-like-in-org-mode (cmd)
9474 "Run a command, pretending that the current buffer is in Org-mode.
9475 This will temporarily bind local variables that are typically bound in
9476 Org-mode to the values they have in Org-mode, and then interactively
9477 call CMD."
9478 (org-load-modules-maybe)
9479 (unless org-local-vars
9480 (setq org-local-vars (org-get-local-variables)))
9481 (let (binds)
9482 (dolist (var org-local-vars)
9483 (when (or (not (boundp (car var)))
9484 (eq (symbol-value (car var))
9485 (default-value (car var))))
9486 (push (list (car var) `(quote ,(cadr var))) binds)))
9487 (eval `(let ,binds
9488 (call-interactively (quote ,cmd))))))
9490 (defun org-get-category (&optional pos force-refresh)
9491 "Get the category applying to position POS."
9492 (save-match-data
9493 (if force-refresh (org-refresh-category-properties))
9494 (let ((pos (or pos (point))))
9495 (or (get-text-property pos 'org-category)
9496 (progn (org-refresh-category-properties)
9497 (get-text-property pos 'org-category))))))
9499 ;;; Refresh properties
9501 (defun org-refresh-properties (dprop tprop)
9502 "Refresh buffer text properties.
9503 DPROP is the drawer property and TPROP is either the
9504 corresponding text property to set, or an alist with each element
9505 being a text property (as a symbol) and a function to apply to
9506 the value of the drawer property."
9507 (let ((case-fold-search t)
9508 (inhibit-read-only t))
9509 (org-with-silent-modifications
9510 (save-excursion
9511 (save-restriction
9512 (widen)
9513 (goto-char (point-min))
9514 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9515 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9517 (defun org-refresh-property (tprop p)
9518 "Refresh the buffer text property TPROP from the drawer property P.
9519 The refresh happens only for the current tree (not subtree)."
9520 (unless (org-before-first-heading-p)
9521 (save-excursion
9522 (org-back-to-heading t)
9523 (if (symbolp tprop)
9524 ;; TPROP is a text property symbol
9525 (put-text-property
9526 (point) (or (outline-next-heading) (point-max)) tprop p)
9527 ;; TPROP is an alist with (properties . function) elements
9528 (dolist (al tprop)
9529 (save-excursion
9530 (put-text-property
9531 (line-beginning-position) (or (outline-next-heading) (point-max))
9532 (car al)
9533 (funcall (cdr al) p))))))))
9535 (defun org-refresh-category-properties ()
9536 "Refresh category text properties in the buffer."
9537 (let ((case-fold-search t)
9538 (inhibit-read-only t)
9539 (default-category
9540 (cond ((null org-category)
9541 (if buffer-file-name
9542 (file-name-sans-extension
9543 (file-name-nondirectory buffer-file-name))
9544 "???"))
9545 ((symbolp org-category) (symbol-name org-category))
9546 (t org-category))))
9547 (org-with-silent-modifications
9548 (org-with-wide-buffer
9549 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9550 ;; This is the default category for the buffer. If none is
9551 ;; found, fall-back to `org-category' or buffer file name.
9552 (put-text-property
9553 (point-min) (point-max)
9554 'org-category
9555 (catch 'buffer-category
9556 (goto-char (point-max))
9557 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9558 (let ((element (org-element-at-point)))
9559 (when (eq (org-element-type element) 'keyword)
9560 (throw 'buffer-category
9561 (org-element-property :value element)))))
9562 default-category))
9563 ;; Set sub-tree specific categories.
9564 (goto-char (point-min))
9565 (let ((regexp (org-re-property "CATEGORY")))
9566 (while (re-search-forward regexp nil t)
9567 (let ((value (org-match-string-no-properties 3)))
9568 (when (org-at-property-p)
9569 (put-text-property
9570 (save-excursion (org-back-to-heading t) (point))
9571 (save-excursion (org-end-of-subtree t t) (point))
9572 'org-category
9573 value)))))))))
9575 (defun org-refresh-stats-properties ()
9576 "Refresh stats text properties in the buffer."
9577 (let (stats)
9578 (org-with-silent-modifications
9579 (save-excursion
9580 (save-restriction
9581 (widen)
9582 (goto-char (point-min))
9583 (while (re-search-forward
9584 (concat org-outline-regexp-bol ".*"
9585 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9586 nil t)
9587 (setq stats (cond ((equal (match-string 3) "0") 0)
9588 ((match-string 2)
9589 (/ (* (string-to-number (match-string 2)) 100)
9590 (string-to-number (match-string 3))))
9591 (t (string-to-number (match-string 1)))))
9592 (org-back-to-heading t)
9593 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9594 'org-stats stats)))))))
9596 (defun org-refresh-effort-properties ()
9597 "Refresh effort properties"
9598 (org-refresh-properties
9599 org-effort-property
9600 '((effort . identity)
9601 (effort-minutes . org-duration-string-to-minutes))))
9603 ;;;; Link Stuff
9605 ;;; Link abbreviations
9607 (defun org-link-expand-abbrev (link)
9608 "Apply replacements as defined in `org-link-abbrev-alist'."
9609 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9610 (let* ((key (match-string 1 link))
9611 (as (or (assoc key org-link-abbrev-alist-local)
9612 (assoc key org-link-abbrev-alist)))
9613 (tag (and (match-end 2) (match-string 3 link)))
9614 rpl)
9615 (if (not as)
9616 link
9617 (setq rpl (cdr as))
9618 (cond
9619 ((symbolp rpl) (funcall rpl tag))
9620 ((string-match "%(\\([^)]+\\))" rpl)
9621 (replace-match
9622 (save-match-data
9623 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9624 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9625 ((string-match "%h" rpl)
9626 (replace-match (url-hexify-string (or tag "")) t t rpl))
9627 (t (concat rpl tag)))))
9628 link))
9630 ;;; Storing and inserting links
9632 (defvar org-insert-link-history nil
9633 "Minibuffer history for links inserted with `org-insert-link'.")
9635 (defvar org-stored-links nil
9636 "Contains the links stored with `org-store-link'.")
9638 (defvar org-store-link-plist nil
9639 "Plist with info about the most recently link created with `org-store-link'.")
9641 (defvar org-link-protocols nil
9642 "Link protocols added to Org-mode using `org-add-link-type'.")
9644 (defvar org-store-link-functions nil
9645 "List of functions that are called to create and store a link.
9646 Each function will be called in turn until one returns a non-nil
9647 value. Each function should check if it is responsible for creating
9648 this link (for example by looking at the major mode).
9649 If not, it must exit and return nil.
9650 If yes, it should return a non-nil value after a calling
9651 `org-store-link-props' with a list of properties and values.
9652 Special properties are:
9654 :type The link prefix, like \"http\". This must be given.
9655 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9656 This is obligatory as well.
9657 :description Optional default description for the second pair
9658 of brackets in an Org-mode link. The user can still change
9659 this when inserting this link into an Org-mode buffer.
9661 In addition to these, any additional properties can be specified
9662 and then used in capture templates.")
9664 (defun org-add-link-type (type &optional follow export)
9665 "Add TYPE to the list of `org-link-types'.
9666 Re-compute all regular expressions depending on `org-link-types'
9668 FOLLOW and EXPORT are two functions.
9670 FOLLOW should take the link path as the single argument and do whatever
9671 is necessary to follow the link, for example find a file or display
9672 a mail message.
9674 EXPORT should format the link path for export to one of the export formats.
9675 It should be a function accepting three arguments:
9677 path the path of the link, the text after the prefix (like \"http:\")
9678 desc the description of the link, if any
9679 format the export format, a symbol like `html' or `latex' or `ascii'.
9681 The function may use the FORMAT information to return different values
9682 depending on the format. The return value will be put literally into
9683 the exported file. If the return value is nil, this means Org should
9684 do what it normally does with links which do not have EXPORT defined.
9686 Org mode has a built-in default for exporting links. If you are happy with
9687 this default, there is no need to define an export function for the link
9688 type. For a simple example of an export function, see `org-bbdb.el'."
9689 (add-to-list 'org-link-types type t)
9690 (org-make-link-regexps)
9691 (org-element-update-syntax)
9692 (if (assoc type org-link-protocols)
9693 (setcdr (assoc type org-link-protocols) (list follow export))
9694 (push (list type follow export) org-link-protocols)))
9696 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9697 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9699 ;;;###autoload
9700 (defun org-store-link (arg)
9701 "\\<org-mode-map>Store an org-link to the current location.
9702 This link is added to `org-stored-links' and can later be inserted
9703 into an Org buffer with \\[org-insert-link].
9705 For some link types, a prefix ARG is interpreted.
9706 For links to Usenet articles, ARG negates `org-gnus-prefer-web-links'.
9707 For file links, ARG negates `org-context-in-file-links'.
9709 A double prefix ARG force skipping storing functions that are not
9710 part of Org's core.
9712 A triple prefix ARG force storing a link for each line in the
9713 active region."
9714 (interactive "P")
9715 (org-load-modules-maybe)
9716 (if (and (equal arg '(64)) (org-region-active-p))
9717 (save-excursion
9718 (let ((end (region-end)))
9719 (goto-char (region-beginning))
9720 (set-mark (point))
9721 (while (< (point-at-eol) end)
9722 (move-end-of-line 1) (activate-mark)
9723 (let (current-prefix-arg)
9724 (call-interactively 'org-store-link))
9725 (move-beginning-of-line 2)
9726 (set-mark (point)))))
9727 (org-with-limited-levels
9728 (setq org-store-link-plist nil)
9729 (let (link cpltxt desc description search
9730 txt custom-id agenda-link sfuns sfunsn)
9731 (cond
9733 ;; Store a link using an external link type
9734 ((and (not (equal arg '(16)))
9735 (setq sfuns
9736 (delq
9737 nil (mapcar (lambda (f)
9738 (let (fs) (if (funcall f) (push f fs))))
9739 org-store-link-functions))
9740 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9741 (or (and (cdr sfuns)
9742 (funcall (intern
9743 (completing-read
9744 "Which function for creating the link? "
9745 sfunsn nil t (car sfunsn)))))
9746 (funcall (caar sfuns)))
9747 (setq link (plist-get org-store-link-plist :link)
9748 desc (or (plist-get org-store-link-plist
9749 :description)
9750 link))))
9752 ;; Store a link from a source code buffer.
9753 ((org-src-edit-buffer-p)
9754 (cond
9755 ((save-excursion
9756 (beginning-of-line)
9757 (looking-at (concat (format org-coderef-label-format "\\(.*?\\)")
9758 "[ \t]*$")))
9759 (setq link (format "(%s)" (org-match-string-no-properties 1))))
9760 ((org-called-interactively-p 'any)
9761 (let (label)
9762 (while (or (not label)
9763 (org-with-wide-buffer
9764 (goto-char (point-min))
9765 (re-search-forward
9766 (regexp-quote (format org-coderef-label-format label))
9767 nil t)))
9768 (when label (message "Label exists already") (sit-for 2))
9769 (setq label (read-string "Code line label: " label)))
9770 (end-of-line)
9771 (setq link (format org-coderef-label-format label))
9772 (let ((gc (- 79 (length link))))
9773 (if (< (current-column) gc) (org-move-to-column gc t)
9774 (insert " ")))
9775 (insert link)
9776 (setq link (concat "(" label ")") desc nil)))
9777 (t (setq link nil))))
9779 ;; We are in the agenda, link to referenced location
9780 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9781 (let ((m (or (get-text-property (point) 'org-hd-marker)
9782 (get-text-property (point) 'org-marker))))
9783 (when m
9784 (org-with-point-at m
9785 (setq agenda-link
9786 (if (org-called-interactively-p 'any)
9787 (call-interactively 'org-store-link)
9788 (org-store-link nil)))))))
9790 ((eq major-mode 'calendar-mode)
9791 (let ((cd (calendar-cursor-to-date)))
9792 (setq link
9793 (format-time-string
9794 (car org-time-stamp-formats)
9795 (apply 'encode-time
9796 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9797 nil nil nil))))
9798 (org-store-link-props :type "calendar" :date cd)))
9800 ((eq major-mode 'help-mode)
9801 (setq link (concat "help:" (save-excursion
9802 (goto-char (point-min))
9803 (looking-at "^[^ ]+")
9804 (match-string 0))))
9805 (org-store-link-props :type "help"))
9807 ((eq major-mode 'w3-mode)
9808 (setq cpltxt (if (and (buffer-name)
9809 (not (string-match "Untitled" (buffer-name))))
9810 (buffer-name)
9811 (url-view-url t))
9812 link (url-view-url t))
9813 (org-store-link-props :type "w3" :url (url-view-url t)))
9815 ((eq major-mode 'image-mode)
9816 (setq cpltxt (concat "file:"
9817 (abbreviate-file-name buffer-file-name))
9818 link cpltxt)
9819 (org-store-link-props :type "image" :file buffer-file-name))
9821 ;; In dired, store a link to the file of the current line
9822 ((derived-mode-p 'dired-mode)
9823 (let ((file (dired-get-filename nil t)))
9824 (setq file (if file
9825 (abbreviate-file-name
9826 (expand-file-name (dired-get-filename nil t)))
9827 ;; otherwise, no file so use current directory.
9828 default-directory))
9829 (setq cpltxt (concat "file:" file)
9830 link cpltxt)))
9832 ((setq search (run-hook-with-args-until-success
9833 'org-create-file-search-functions))
9834 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9835 "::" search))
9836 (setq cpltxt (or description link)))
9838 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9839 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9840 (cond
9841 ;; Store a link using the target at point
9842 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9843 (setq cpltxt
9844 (concat "file:"
9845 (abbreviate-file-name
9846 (buffer-file-name (buffer-base-buffer)))
9847 "::" (match-string 1))
9848 link cpltxt))
9849 ((and (featurep 'org-id)
9850 (or (eq org-id-link-to-org-use-id t)
9851 (and (org-called-interactively-p 'any)
9852 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9853 (and (eq org-id-link-to-org-use-id
9854 'create-if-interactive-and-no-custom-id)
9855 (not custom-id))))
9856 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9857 ;; Store a link using the ID at point
9858 (setq link (condition-case nil
9859 (prog1 (org-id-store-link)
9860 (setq desc (or (plist-get org-store-link-plist
9861 :description)
9862 "")))
9863 (error
9864 ;; Probably before first headline, link only to file
9865 (concat "file:"
9866 (abbreviate-file-name
9867 (buffer-file-name (buffer-base-buffer))))))))
9869 ;; Just link to current headline
9870 (setq cpltxt (concat "file:"
9871 (abbreviate-file-name
9872 (buffer-file-name (buffer-base-buffer)))))
9873 ;; Add a context search string
9874 (when (org-xor org-context-in-file-links arg)
9875 (let* ((ee (org-element-at-point))
9876 (et (org-element-type ee))
9877 (ev (plist-get (cadr ee) :value))
9878 (ek (plist-get (cadr ee) :key))
9879 (eok (and (stringp ek) (string-match "name" ek))))
9880 (setq txt (cond
9881 ((org-at-heading-p) nil)
9882 ((and (eq et 'keyword) eok) ev)
9883 ((org-region-active-p)
9884 (buffer-substring (region-beginning) (region-end)))))
9885 (when (or (null txt) (string-match "\\S-" txt))
9886 (setq cpltxt
9887 (concat cpltxt "::"
9888 (condition-case nil
9889 (org-make-org-heading-search-string txt)
9890 (error "")))
9891 desc (or (and (eq et 'keyword) eok ev)
9892 (nth 4 (ignore-errors (org-heading-components)))
9893 "NONE")))))
9894 (if (string-match "::\\'" cpltxt)
9895 (setq cpltxt (substring cpltxt 0 -2)))
9896 (setq link cpltxt))))
9898 ((buffer-file-name (buffer-base-buffer))
9899 ;; Just link to this file here.
9900 (setq cpltxt (concat "file:"
9901 (abbreviate-file-name
9902 (buffer-file-name (buffer-base-buffer)))))
9903 ;; Add a context string.
9904 (when (org-xor org-context-in-file-links arg)
9905 (setq txt (if (org-region-active-p)
9906 (buffer-substring (region-beginning) (region-end))
9907 (buffer-substring (point-at-bol) (point-at-eol))))
9908 ;; Only use search option if there is some text.
9909 (when (string-match "\\S-" txt)
9910 (setq cpltxt
9911 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9912 desc "NONE")))
9913 (setq link cpltxt))
9915 ((org-called-interactively-p 'interactive)
9916 (user-error "No method for storing a link from this buffer"))
9918 (t (setq link nil)))
9920 ;; We're done setting link and desc, clean up
9921 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9922 (setq link (or link cpltxt)
9923 desc (or desc cpltxt))
9924 (cond ((equal desc "NONE") (setq desc nil))
9925 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9926 (let ((d0 (match-string 3 desc))
9927 (p0 (match-string 5 desc)))
9928 (setq desc
9929 (replace-regexp-in-string
9930 org-bracket-link-regexp
9931 (concat (or p0 d0)
9932 (if (equal (length (match-string 0 desc))
9933 (length desc)) "*" "")) desc)))))
9935 ;; Return the link
9936 (if (not (and (or (org-called-interactively-p 'any)
9937 executing-kbd-macro)
9938 link))
9939 (or agenda-link (and link (org-make-link-string link desc)))
9940 (push (list link desc) org-stored-links)
9941 (message "Stored: %s" (or desc link))
9942 (when custom-id
9943 (setq link (concat "file:" (abbreviate-file-name
9944 (buffer-file-name)) "::#" custom-id))
9945 (push (list link desc) org-stored-links))
9946 (car org-stored-links))))))
9948 (defun org-store-link-props (&rest plist)
9949 "Store link properties, extract names and addresses."
9950 (let (x adr)
9951 (when (setq x (plist-get plist :from))
9952 (setq adr (mail-extract-address-components x))
9953 (setq plist (plist-put plist :fromname (car adr)))
9954 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9955 (when (setq x (plist-get plist :to))
9956 (setq adr (mail-extract-address-components x))
9957 (setq plist (plist-put plist :toname (car adr)))
9958 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9959 (let ((from (plist-get plist :from))
9960 (to (plist-get plist :to)))
9961 (when (and from to org-from-is-user-regexp)
9962 (setq plist
9963 (plist-put plist :fromto
9964 (if (string-match org-from-is-user-regexp from)
9965 (concat "to %t")
9966 (concat "from %f"))))))
9967 (setq org-store-link-plist plist))
9969 (defun org-add-link-props (&rest plist)
9970 "Add these properties to the link property list."
9971 (let (key value)
9972 (while plist
9973 (setq key (pop plist) value (pop plist))
9974 (setq org-store-link-plist
9975 (plist-put org-store-link-plist key value)))))
9977 (defun org-email-link-description (&optional fmt)
9978 "Return the description part of an email link.
9979 This takes information from `org-store-link-plist' and formats it
9980 according to FMT (default from `org-email-link-description-format')."
9981 (setq fmt (or fmt org-email-link-description-format))
9982 (let* ((p org-store-link-plist)
9983 (to (plist-get p :toaddress))
9984 (from (plist-get p :fromaddress))
9985 (table
9986 (list
9987 (cons "%c" (plist-get p :fromto))
9988 (cons "%F" (plist-get p :from))
9989 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9990 (cons "%T" (plist-get p :to))
9991 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9992 (cons "%s" (plist-get p :subject))
9993 (cons "%d" (plist-get p :date))
9994 (cons "%m" (plist-get p :message-id)))))
9995 (when (string-match "%c" fmt)
9996 ;; Check if the user wrote this message
9997 (if (and org-from-is-user-regexp from to
9998 (save-match-data (string-match org-from-is-user-regexp from)))
9999 (setq fmt (replace-match "to %t" t t fmt))
10000 (setq fmt (replace-match "from %f" t t fmt))))
10001 (org-replace-escapes fmt table)))
10003 (defun org-make-org-heading-search-string (&optional string)
10004 "Make search string for the current headline or STRING."
10005 (let ((s (or string
10006 (and (derived-mode-p 'org-mode)
10007 (save-excursion
10008 (org-back-to-heading t)
10009 (org-element-property :raw-value (org-element-at-point))))))
10010 (lines org-context-in-file-links))
10011 (or string (setq s (concat "*" s))) ; Add * for headlines
10012 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10013 (when (and string (integerp lines) (> lines 0))
10014 (let ((slines (org-split-string s "\n")))
10015 (when (< lines (length slines))
10016 (setq s (mapconcat
10017 'identity
10018 (reverse (nthcdr (- (length slines) lines)
10019 (reverse slines))) "\n")))))
10020 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10022 (defun org-make-link-string (link &optional description)
10023 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10024 (unless (org-string-nw-p link) (error "Empty link"))
10025 (let ((uri (cond ((string-match org-link-types-re link)
10026 (concat (match-string 1 link)
10027 (org-link-escape (substring link (match-end 1)))))
10028 ;; For readability, url-encode internal links only
10029 ;; when absolutely needed (i.e, when they contain
10030 ;; square brackets). File links however, are
10031 ;; encoded since, e.g., spaces are significant.
10032 ((or (file-name-absolute-p link)
10033 (org-string-match-p "\\`\\.\\.?/\\|[][]" link))
10034 (org-link-escape link))
10035 (t link)))
10036 (description
10037 (and (org-string-nw-p description)
10038 ;; Remove brackets from description, as they are fatal.
10039 (replace-regexp-in-string
10040 "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
10041 (org-trim description)))))
10042 (format "[[%s]%s]"
10044 (if description (format "[%s]" description) ""))))
10046 (defconst org-link-escape-chars
10047 ;;%20 %5B %5D %25
10048 '(?\s ?\[ ?\] ?%)
10049 "List of characters that should be escaped in a link when stored to Org.
10050 This is the list that is used for internal purposes.")
10052 (defconst org-link-escape-chars-browser
10053 ;;%20 %22
10054 '(?\s ?\")
10055 "List of characters to be escaped before handing over to the browser.
10056 If you consider using this constant then you probably want to use
10057 the function `org-link-escape-browser' instead. See there why
10058 this constant is a candidate to be removed once Org drops support
10059 for Emacs 24.1 and 24.2.")
10061 (defun org-link-escape (text &optional table merge)
10062 "Return percent escaped representation of TEXT.
10063 TEXT is a string with the text to escape.
10064 Optional argument TABLE is a list with characters that should be
10065 escaped. When nil, `org-link-escape-chars' is used.
10066 If optional argument MERGE is set, merge TABLE into
10067 `org-link-escape-chars'."
10068 (let ((characters-to-encode
10069 (cond ((null table) org-link-escape-chars)
10070 (merge (append org-link-escape-chars table))
10071 (t table))))
10072 (mapconcat
10073 (lambda (c)
10074 (if (or (memq c characters-to-encode)
10075 (and org-url-hexify-p (or (< c 32) (> c 126))))
10076 (mapconcat (lambda (e) (format "%%%.2X" e))
10077 (or (encode-coding-char c 'utf-8)
10078 (error "Unable to percent escape character: %c" c))
10080 (char-to-string c)))
10081 text "")))
10083 (defun org-link-escape-browser (text)
10084 "Escape some characters before handing over to the browser.
10085 This function is a candidate to be removed together with the
10086 constant `org-link-escape-chars-browser' once Org drops support
10087 for Emacs 24.1 and 24.2. All calls to this function will have to
10088 be replaced with `url-encode-url' which is available since Emacs
10089 24.3.1."
10090 ;; Example with the Org link
10091 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10092 ;; to open the browser with +subject:"Release 8.2" filled into the
10093 ;; query field: In this case the variable TEXT contains the
10094 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10095 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10096 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10097 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10098 (if (fboundp 'url-encode-url)
10099 (url-encode-url text)
10100 (if (org-string-match-p
10101 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10102 text)
10103 (org-link-escape text org-link-escape-chars-browser)
10104 text)))
10106 (defun org-link-unescape (str)
10107 "Unhex hexified Unicode parts in string STR.
10108 E.g. `%C3%B6' becomes the german o-Umlaut. This is the
10109 reciprocal of `org-link-escape', which see."
10110 (if (org-string-nw-p str)
10111 (replace-regexp-in-string
10112 "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
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 args)))))
10515 ;;; Opening/following a link
10517 (defvar org-link-search-failed nil)
10519 (defvar org-open-link-functions nil
10520 "Hook for functions finding a plain text link.
10521 These functions must take a single argument, the link content.
10522 They will be called for links that look like [[link text][description]]
10523 when LINK TEXT does not have a protocol like \"http:\" and does not look
10524 like a filename (e.g. \"./blue.png\").
10526 These functions will be called *before* Org attempts to resolve the
10527 link by doing text searches in the current buffer - so if you want a
10528 link \"[[target]]\" to still find \"<<target>>\", your function should
10529 handle this as a special case.
10531 When the function does handle the link, it must return a non-nil value.
10532 If it decides that it is not responsible for this link, it must return
10533 nil to indicate that that Org-mode can continue with other options
10534 like exact and fuzzy text search.")
10536 (defun org-next-link (&optional search-backward)
10537 "Move forward to the next link.
10538 If the link is in hidden text, expose it."
10539 (interactive "P")
10540 (when (and org-link-search-failed (eq this-command last-command))
10541 (goto-char (point-min))
10542 (message "Link search wrapped back to beginning of buffer"))
10543 (setq org-link-search-failed nil)
10544 (let* ((pos (point))
10545 (ct (org-context))
10546 (a (assoc :link ct))
10547 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10548 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10549 ((looking-at org-any-link-re)
10550 ;; Don't stay stuck at link without an org-link face
10551 (forward-char (if search-backward -1 1))))
10552 (if (funcall srch-fun org-any-link-re nil t)
10553 (progn
10554 (goto-char (match-beginning 0))
10555 (if (outline-invisible-p) (org-show-context)))
10556 (goto-char pos)
10557 (setq org-link-search-failed t)
10558 (message "No further link found"))))
10560 (defun org-previous-link ()
10561 "Move backward to the previous link.
10562 If the link is in hidden text, expose it."
10563 (interactive)
10564 (funcall 'org-next-link t))
10566 (defun org-translate-link (s)
10567 "Translate a link string if a translation function has been defined."
10568 (if (and org-link-translation-function
10569 (fboundp org-link-translation-function)
10570 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10571 (progn
10572 (setq s (funcall org-link-translation-function
10573 (match-string 1 s) (match-string 2 s)))
10574 (concat (car s) ":" (cdr s)))
10577 (defun org-translate-link-from-planner (type path)
10578 "Translate a link from Emacs Planner syntax so that Org can follow it.
10579 This is still an experimental function, your mileage may vary."
10580 (cond
10581 ((member type '("http" "https" "news" "ftp"))
10582 ;; standard Internet links are the same.
10583 nil)
10584 ((and (equal type "irc") (string-match "^//" path))
10585 ;; Planner has two / at the beginning of an irc link, we have 1.
10586 ;; We should have zero, actually....
10587 (setq path (substring path 1)))
10588 ((and (equal type "lisp") (string-match "^/" path))
10589 ;; Planner has a slash, we do not.
10590 (setq type "elisp" path (substring path 1)))
10591 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10592 ;; A typical message link. Planner has the id after the final slash,
10593 ;; we separate it with a hash mark
10594 (setq path (concat (match-string 1 path) "#"
10595 (org-remove-angle-brackets (match-string 2 path))))))
10596 (cons type path))
10598 (defun org-find-file-at-mouse (ev)
10599 "Open file link or URL at mouse."
10600 (interactive "e")
10601 (mouse-set-point ev)
10602 (org-open-at-point 'in-emacs))
10604 (defun org-open-at-mouse (ev)
10605 "Open file link or URL at mouse.
10606 See the docstring of `org-open-file' for details."
10607 (interactive "e")
10608 (mouse-set-point ev)
10609 (if (eq major-mode 'org-agenda-mode)
10610 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10611 (org-open-at-point))
10613 (defvar org-window-config-before-follow-link nil
10614 "The window configuration before following a link.
10615 This is saved in case the need arises to restore it.")
10617 ;;;###autoload
10618 (defun org-open-at-point-global ()
10619 "Follow a link like Org-mode does.
10620 This command can be called in any mode to follow a link that has
10621 Org-mode syntax."
10622 (interactive)
10623 (org-run-like-in-org-mode 'org-open-at-point))
10625 ;;;###autoload
10626 (defun org-open-link-from-string (s &optional arg reference-buffer)
10627 "Open a link in the string S, as if it was in Org-mode."
10628 (interactive "sLink: \nP")
10629 (let ((reference-buffer (or reference-buffer (current-buffer))))
10630 (with-temp-buffer
10631 (let ((org-inhibit-startup (not reference-buffer)))
10632 (org-mode)
10633 (insert s)
10634 (goto-char (point-min))
10635 (when reference-buffer
10636 (setq org-link-abbrev-alist-local
10637 (with-current-buffer reference-buffer
10638 org-link-abbrev-alist-local)))
10639 (org-open-at-point arg reference-buffer)))))
10641 (defvar org-open-at-point-functions nil
10642 "Hook that is run when following a link at point.
10644 Functions in this hook must return t if they identify and follow
10645 a link at point. If they don't find anything interesting at point,
10646 they must return nil.")
10648 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10649 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10650 (defun org-open-at-point (&optional arg reference-buffer)
10651 "Open link, timestamp, footnote or tags at point.
10653 When point is on a link, follow it. Normally, files will be
10654 opened by an appropriate application. If the optional prefix
10655 argument ARG is non-nil, Emacs will visit the file. With
10656 a double prefix argument, try to open outside of Emacs, in the
10657 application the system uses for this file type.
10659 When point is on a timestamp, open the agenda at the day
10660 specified.
10662 When point is a footnote definition, move to the first reference
10663 found. If it is on a reference, move to the associated
10664 definition.
10666 When point is on a headline, display a list of every link in the
10667 entry, so it is possible to pick one, or all, of them. If point
10668 is on a tag, call `org-tags-view' instead.
10670 When optional argument REFERENCE-BUFFER is non-nil, it should
10671 specify a buffer from where the link search should happen. This
10672 is used internally by `org-open-link-from-string'.
10674 On top of syntactically correct links, this function will open
10675 the link at point in comments or comment blocks and the first
10676 link in a property drawer line."
10677 (interactive "P")
10678 ;; On a code block, open block's results.
10679 (unless (call-interactively 'org-babel-open-src-block-result)
10680 (org-load-modules-maybe)
10681 (setq org-window-config-before-follow-link (current-window-configuration))
10682 (org-remove-occur-highlights nil nil t)
10683 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10684 (let* ((context
10685 ;; Only consider supported types, even if they are not
10686 ;; the closest one.
10687 (org-element-lineage
10688 (org-element-context)
10689 '(clock comment comment-block footnote-definition
10690 footnote-reference headline inlinetask keyword link
10691 node-property timestamp)
10693 (type (org-element-type context))
10694 (value (org-element-property :value context)))
10695 (cond
10696 ((not context) (user-error "No link found"))
10697 ;; Exception: open timestamps and links in properties
10698 ;; drawers, keywords and comments.
10699 ((memq type '(comment comment-block keyword node-property))
10700 (cond ((org-in-regexp org-any-link-re)
10701 (org-open-link-from-string (match-string-no-properties 0)))
10702 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10703 (org-follow-timestamp-link))
10704 (t (user-error "No link found"))))
10705 ;; On a headline or an inlinetask, but not on a timestamp,
10706 ;; a link, a footnote reference or on tags.
10707 ((and (memq type '(headline inlinetask))
10708 ;; Not on tags.
10709 (progn (save-excursion (beginning-of-line)
10710 (looking-at org-complex-heading-regexp))
10711 (or (not (match-beginning 5))
10712 (< (point) (match-beginning 5)))))
10713 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10714 (links (car data))
10715 (links-end (cdr data)))
10716 (if links
10717 (dolist (link (if (stringp links) (list links) links))
10718 (search-forward link nil links-end)
10719 (goto-char (match-beginning 0))
10720 (org-open-at-point))
10721 (require 'org-attach)
10722 (org-attach-reveal 'if-exists))))
10723 ;; On a clock line, make sure point is on the timestamp
10724 ;; before opening it.
10725 ((and (eq type 'clock)
10726 value
10727 (>= (point) (org-element-property :begin value))
10728 (<= (point) (org-element-property :end value)))
10729 (org-follow-timestamp-link))
10730 ;; Do nothing on white spaces after an object, unless point
10731 ;; is right after it.
10732 ((> (point)
10733 (save-excursion
10734 (goto-char (org-element-property :end context))
10735 (skip-chars-backward " \t")
10736 (point)))
10737 (user-error "No link found"))
10738 ((eq type 'timestamp) (org-follow-timestamp-link))
10739 ;; On tags within a headline or an inlinetask.
10740 ((and (memq type '(headline inlinetask))
10741 (progn (save-excursion (beginning-of-line)
10742 (looking-at org-complex-heading-regexp))
10743 (and (match-beginning 5)
10744 (>= (point) (match-beginning 5)))))
10745 (org-tags-view arg (substring (match-string 5) 0 -1)))
10746 ((eq type 'link)
10747 ;; When link is located within the description of another
10748 ;; link (e.g., an inline image), always open the parent
10749 ;; link.
10750 (let*((link (let ((up (org-element-property :parent context)))
10751 (if (eq (org-element-type up) 'link) up context)))
10752 (type (org-element-property :type link))
10753 (path (org-link-unescape (org-element-property :path link))))
10754 ;; Switch back to REFERENCE-BUFFER needed when called in
10755 ;; a temporary buffer through `org-open-link-from-string'.
10756 (with-current-buffer (or reference-buffer (current-buffer))
10757 (cond
10758 ((equal type "file")
10759 (if (string-match "[*?{]" (file-name-nondirectory path))
10760 (dired path)
10761 ;; Look into `org-link-protocols' in order to find
10762 ;; a DEDICATED-FUNCTION to open file. The function
10763 ;; will be applied on raw link instead of parsed
10764 ;; link due to the limitation in `org-add-link-type'
10765 ;; ("open" function called with a single argument).
10766 ;; If no such function is found, fallback to
10767 ;; `org-open-file'.
10769 ;; Note : "file+emacs" and "file+sys" types are
10770 ;; hard-coded in order to escape the previous
10771 ;; limitation.
10772 (let* ((option (org-element-property :search-option link))
10773 (app (org-element-property :application link))
10774 (dedicated-function
10775 (nth 1 (assoc app org-link-protocols))))
10776 (if dedicated-function
10777 (funcall dedicated-function
10778 (concat path
10779 (and option (concat "::" option))))
10780 (apply #'org-open-file
10781 path
10782 (cond (arg)
10783 ((equal app "emacs") 'emacs)
10784 ((equal app "sys") 'system))
10785 (cond ((not option) nil)
10786 ((org-string-match-p "\\`[0-9]+\\'" option)
10787 (list (string-to-number option)))
10788 (t (list nil
10789 (org-link-unescape option)))))))))
10790 ((assoc type org-link-protocols)
10791 (funcall (nth 1 (assoc type org-link-protocols)) path))
10792 ((equal type "help")
10793 (let ((f-or-v (intern path)))
10794 (cond ((fboundp f-or-v) (describe-function f-or-v))
10795 ((boundp f-or-v) (describe-variable f-or-v))
10796 (t (error "Not a known function or variable")))))
10797 ((member type '("http" "https" "ftp" "mailto" "news"))
10798 (browse-url (org-link-escape-browser (concat type ":" path))))
10799 ((equal type "doi")
10800 (browse-url
10801 (org-link-escape-browser (concat org-doi-server-url path))))
10802 ((equal type "message") (browse-url (concat type ":" path)))
10803 ((equal type "shell")
10804 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10805 (cmd path))
10806 (if (or (and (org-string-nw-p
10807 org-confirm-shell-link-not-regexp)
10808 (string-match
10809 org-confirm-shell-link-not-regexp cmd))
10810 (not org-confirm-shell-link-function)
10811 (funcall org-confirm-shell-link-function
10812 (format "Execute \"%s\" in shell? "
10813 (org-add-props cmd nil
10814 'face 'org-warning))))
10815 (progn
10816 (message "Executing %s" cmd)
10817 (shell-command cmd buf)
10818 (when (featurep 'midnight)
10819 (setq clean-buffer-list-kill-buffer-names
10820 (cons (buffer-name buf)
10821 clean-buffer-list-kill-buffer-names))))
10822 (user-error "Abort"))))
10823 ((equal type "elisp")
10824 (let ((cmd path))
10825 (if (or (and (org-string-nw-p
10826 org-confirm-elisp-link-not-regexp)
10827 (org-string-match-p
10828 org-confirm-elisp-link-not-regexp cmd))
10829 (not org-confirm-elisp-link-function)
10830 (funcall org-confirm-elisp-link-function
10831 (format "Execute \"%s\" as elisp? "
10832 (org-add-props cmd nil
10833 'face 'org-warning))))
10834 (message "%s => %s" cmd
10835 (if (eq (string-to-char cmd) ?\()
10836 (eval (read cmd))
10837 (call-interactively (read cmd))))
10838 (user-error "Abort"))))
10839 ((equal type "id")
10840 (require 'ord-id)
10841 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10842 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10843 (unless (run-hook-with-args-until-success
10844 'org-open-link-functions path)
10845 (if (not arg) (org-mark-ring-push)
10846 (switch-to-buffer-other-window
10847 (org-get-buffer-for-internal-link (current-buffer))))
10848 (let ((destination
10849 (org-with-wide-buffer
10850 (if (equal type "radio")
10851 (org-search-radio-target
10852 (org-element-property :path link))
10853 (org-link-search
10854 (if (member type '("custom-id" "coderef"))
10855 (org-element-property :raw-link link)
10856 path)
10857 ;; Prevent fuzzy links from matching
10858 ;; themselves.
10859 (and (equal type "fuzzy")
10860 (+ 2 (org-element-property :begin link)))))
10861 (point))))
10862 (unless (and (<= (point-min) destination)
10863 (>= (point-max) destination))
10864 (widen))
10865 (goto-char destination))))
10866 (t (browse-url-at-point))))))
10867 ;; On a footnote reference or at a footnote definition's label.
10868 ((or (eq type 'footnote-reference)
10869 (and (eq type 'footnote-definition)
10870 (save-excursion
10871 ;; Do not validate action when point is on the
10872 ;; spaces right after the footnote label, in
10873 ;; order to be on par with behaviour on links.
10874 (skip-chars-forward " \t")
10875 (let ((begin
10876 (org-element-property :contents-begin context)))
10877 (if begin (< (point) begin)
10878 (= (org-element-property :post-affiliated context)
10879 (line-beginning-position)))))))
10880 (org-footnote-action))
10881 (t (user-error "No link found")))))
10882 (run-hook-with-args 'org-follow-link-hook)))
10884 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10885 "Offer links in the current entry and return the selected link.
10886 If there is only one link, return it.
10887 If NTH is an integer, return the NTH link found.
10888 If ZERO is a string, check also this string for a link, and if
10889 there is one, return it."
10890 (with-current-buffer buffer
10891 (save-excursion
10892 (save-restriction
10893 (widen)
10894 (goto-char marker)
10895 (let ((cnt ?0)
10896 (in-emacs (if (integerp nth) nil nth))
10897 have-zero end links link c)
10898 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10899 (push (match-string 0 zero) links)
10900 (setq cnt (1- cnt) have-zero t))
10901 (save-excursion
10902 (org-back-to-heading t)
10903 (setq end (save-excursion (outline-next-heading) (point)))
10904 (while (re-search-forward org-any-link-re end t)
10905 (push (match-string 0) links))
10906 (setq links (org-uniquify (reverse links))))
10907 (cond
10908 ((null links)
10909 (message "No links"))
10910 ((equal (length links) 1)
10911 (setq link (car links)))
10912 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10913 (setq link (nth (if have-zero nth (1- nth)) links)))
10914 (t ; we have to select a link
10915 (save-excursion
10916 (save-window-excursion
10917 (delete-other-windows)
10918 (with-output-to-temp-buffer "*Select Link*"
10919 (mapc (lambda (l)
10920 (if (not (string-match org-bracket-link-regexp l))
10921 (princ (format "[%c] %s\n" (incf cnt)
10922 (org-remove-angle-brackets l)))
10923 (if (match-end 3)
10924 (princ (format "[%c] %s (%s)\n" (incf cnt)
10925 (match-string 3 l) (match-string 1 l)))
10926 (princ (format "[%c] %s\n" (incf cnt)
10927 (match-string 1 l))))))
10928 links))
10929 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10930 (message "Select link to open, RET to open all:")
10931 (setq c (read-char-exclusive))
10932 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10933 (when (equal c ?q) (user-error "Abort"))
10934 (if (equal c ?\C-m)
10935 (setq link links)
10936 (setq nth (- c ?0))
10937 (if have-zero (setq nth (1+ nth)))
10938 (unless (and (integerp nth) (>= (length links) nth))
10939 (user-error "Invalid link selection"))
10940 (setq link (nth (1- nth) links)))))
10941 (cons link end))))))
10943 ;; TODO: These functions are deprecated since `org-open-at-point'
10944 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10945 (defun org-open-file-with-system (path)
10946 "Open file at PATH using the system way of opening it."
10947 (org-open-file path 'system))
10948 (defun org-open-file-with-emacs (path)
10949 "Open file at PATH in Emacs."
10950 (org-open-file path 'emacs))
10953 ;;; File search
10955 (defvar org-create-file-search-functions nil
10956 "List of functions to construct the right search string for a file link.
10957 These functions are called in turn with point at the location to
10958 which the link should point.
10960 A function in the hook should first test if it would like to
10961 handle this file type, for example by checking the `major-mode'
10962 or the file extension. If it decides not to handle this file, it
10963 should just return nil to give other functions a chance. If it
10964 does handle the file, it must return the search string to be used
10965 when following the link. The search string will be part of the
10966 file link, given after a double colon, and `org-open-at-point'
10967 will automatically search for it. If special measures must be
10968 taken to make the search successful, another function should be
10969 added to the companion hook `org-execute-file-search-functions',
10970 which see.
10972 A function in this hook may also use `setq' to set the variable
10973 `description' to provide a suggestion for the descriptive text to
10974 be used for this link when it gets inserted into an Org-mode
10975 buffer with \\[org-insert-link].")
10977 (defvar org-execute-file-search-functions nil
10978 "List of functions to execute a file search triggered by a link.
10980 Functions added to this hook must accept a single argument, the
10981 search string that was part of the file link, the part after the
10982 double colon. The function must first check if it would like to
10983 handle this search, for example by checking the `major-mode' or
10984 the file extension. If it decides not to handle this search, it
10985 should just return nil to give other functions a chance. If it
10986 does handle the search, it must return a non-nil value to keep
10987 other functions from trying.
10989 Each function can access the current prefix argument through the
10990 variable `current-prefix-arg'. Note that a single prefix is used
10991 to force opening a link in Emacs, so it may be good to only use a
10992 numeric or double prefix to guide the search function.
10994 In case this is needed, a function in this hook can also restore
10995 the window configuration before `org-open-at-point' was called using:
10997 (set-window-configuration org-window-config-before-follow-link)")
10999 (defun org-search-radio-target (target)
11000 "Search a radio target matching TARGET in current buffer.
11001 White spaces are not significant."
11002 (let ((re (format "<<<%s>>>"
11003 (mapconcat #'regexp-quote
11004 (org-split-string target "[ \t\n]+")
11005 "[ \t]+\\(?:\n[ \t]*\\)?")))
11006 (origin (point)))
11007 (goto-char (point-min))
11008 (catch :radio-match
11009 (while (re-search-forward re nil t)
11010 (backward-char)
11011 (let ((object (org-element-context)))
11012 (when (eq (org-element-type object) 'radio-target)
11013 (goto-char (org-element-property :begin object))
11014 (org-show-context 'link-search)
11015 (throw :radio-match nil))))
11016 (goto-char origin)
11017 (user-error "No match for radio target: %s" target))))
11019 (defun org-link-search (s &optional avoid-pos stealth)
11020 "Search for a search string S.
11022 If S starts with \"#\", it triggers a custom ID search.
11024 If S is enclosed within parenthesis, it initiates a coderef
11025 search.
11027 If S is surrounded by forward slashes, it is interpreted as
11028 a regular expression. In Org mode files, this will create an
11029 `org-occur' sparse tree. In ordinary files, `occur' will be used
11030 to list matches. If the current buffer is in `dired-mode', grep
11031 will be used to search in all files.
11033 When AVOID-POS is given, ignore matches near that position.
11035 When optional argument STEALTH is non-nil, do not modify
11036 visibility around point, thus ignoring `org-show-context-detail'
11037 variable.
11039 Search is case-insensitive and ignores white spaces. Return type
11040 of matched result, with is either `dedicated' or `fuzzy'."
11041 (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
11042 (let* ((case-fold-search t)
11043 (origin (point))
11044 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
11045 (words (org-split-string s "[ \t\n]+"))
11046 (s-multi-re (mapconcat #'regexp-quote words "[ \t]+\\(?:\n[ \t]*\\)?"))
11047 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
11048 type)
11049 (cond
11050 ;; Check if there are any special search functions.
11051 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11052 ((eq (string-to-char s) ?#)
11053 ;; Look for a custom ID S if S starts with "#".
11054 (let* ((id (substring normalized 1))
11055 (match (org-find-property "CUSTOM_ID" id)))
11056 (if match (progn (goto-char match) (setf type 'dedicated))
11057 (error "No match for custom ID: %s" id))))
11058 ((string-match "\\`(\\(.*\\))\\'" normalized)
11059 ;; Look for coderef targets if S is enclosed within parenthesis.
11060 (let ((coderef (match-string-no-properties 1 normalized))
11061 (re (substring s-single-re 1 -1)))
11062 (goto-char (point-min))
11063 (catch :coderef-match
11064 (while (re-search-forward re nil t)
11065 (let ((element (org-element-at-point)))
11066 (when (and (memq (org-element-type element)
11067 '(example-block src-block))
11068 ;; Build proper regexp according to current
11069 ;; block's label format.
11070 (let ((label-fmt
11071 (regexp-quote
11072 (or (org-element-property :label-fmt element)
11073 org-coderef-label-format))))
11074 (save-excursion
11075 (beginning-of-line)
11076 (looking-at (format ".*?\\(%s\\)[ \t]*$"
11077 (format label-fmt coderef))))))
11078 (setq type 'dedicated)
11079 (goto-char (match-beginning 1))
11080 (throw :coderef-match nil))))
11081 (goto-char origin)
11082 (error "No match for coderef: %s" coderef))))
11083 ((string-match "\\`/\\(.*\\)/\\'" normalized)
11084 ;; Look for a regular expression.
11085 (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
11086 (match-string 1 s)))
11087 ;; Fuzzy links.
11089 (let* ((starred (eq (string-to-char normalized) ?*))
11090 (headline-search (and (derived-mode-p 'org-mode)
11091 (or org-link-search-must-match-exact-headline
11092 starred))))
11093 (cond
11094 ;; Look for targets, only if not in a headline search.
11095 ((and (not starred)
11096 (let ((target (format "<<%s>>" s-multi-re)))
11097 (catch :target-match
11098 (goto-char (point-min))
11099 (while (re-search-forward target nil t)
11100 (backward-char)
11101 (let ((context (org-element-context)))
11102 (when (eq (org-element-type context) 'target)
11103 (setq type 'dedicated)
11104 (goto-char (org-element-property :begin context))
11105 (throw :target-match t))))
11106 nil))))
11107 ;; Look for elements named after S, only if not in a headline
11108 ;; search.
11109 ((and (not starred)
11110 (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
11111 (catch :name-match
11112 (goto-char (point-min))
11113 (while (re-search-forward name nil t)
11114 (let ((element (org-element-at-point)))
11115 (when (equal (org-split-string
11116 (org-element-property :name element)
11117 "[ \t]+")
11118 words)
11119 (setq type 'dedicated)
11120 (beginning-of-line)
11121 (throw :name-match t))))
11122 nil))))
11123 ;; Regular text search. Prefer headlines in Org mode
11124 ;; buffers.
11125 ((and (derived-mode-p 'org-mode)
11126 (let* ((wspace "[ \t]")
11127 (wspaceopt (concat wspace "*"))
11128 (cookie (concat "\\(?:"
11129 wspaceopt
11130 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11131 wspaceopt
11132 "\\)"))
11133 (sep (concat "\\(?:\\(?:" wspace "\\|" cookie "\\)+\\)"))
11134 (re (concat
11135 org-outline-regexp-bol
11136 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11137 "\\(?:\\[#.\\][ \t]+\\)?"
11138 "\\(?:" org-comment-string "[ \t]+\\)?"
11139 sep "?"
11140 (let ((title (mapconcat #'regexp-quote
11141 words
11142 sep)))
11143 (if starred (substring title 1) title))
11144 sep "?"
11145 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11146 "[ \t]*$")))
11147 (goto-char (point-min))
11148 (re-search-forward re nil t)))
11149 (goto-char (match-beginning 0))
11150 (setq type 'dedicated))
11151 ;; Offer to create non-existent headline depending on
11152 ;; `org-link-search-must-match-exact-headline'.
11153 ((and (derived-mode-p 'org-mode)
11154 (not org-link-search-inhibit-query)
11155 (eq org-link-search-must-match-exact-headline 'query-to-create)
11156 (yes-or-no-p "No match - create this as a new heading? "))
11157 (goto-char (point-max))
11158 (unless (bolp) (newline))
11159 (org-insert-heading nil t t)
11160 (insert s "\n")
11161 (beginning-of-line 0))
11162 ;; Only headlines are looked after. No need to process
11163 ;; further: throw an error.
11164 ((and (derived-mode-p 'org-mode)
11165 (or starred org-link-search-must-match-exact-headline))
11166 (goto-char origin)
11167 (error "No match for fuzzy expression: %s" normalized))
11168 ;; Regular text search.
11169 ((catch :fuzzy-match
11170 (goto-char (point-min))
11171 (while (re-search-forward s-multi-re nil t)
11172 ;; Skip match if it contains AVOID-POS or it is included
11173 ;; in a link with a description but outside the
11174 ;; description.
11175 (unless (or (and avoid-pos
11176 (<= (match-beginning 0) avoid-pos)
11177 (> (match-end 0) avoid-pos))
11178 (and (save-match-data
11179 (org-in-regexp org-bracket-link-regexp))
11180 (match-beginning 3)
11181 (or (> (match-beginning 3) (point))
11182 (<= (match-end 3) (point)))
11183 (org-element-lineage
11184 (save-match-data (org-element-context))
11185 '(link) t)))
11186 (goto-char (match-beginning 0))
11187 (setq type 'fuzzy)
11188 (throw :fuzzy-match t)))
11189 nil))
11190 ;; All failed. Throw an error.
11191 (t (goto-char origin)
11192 (error "No match for fuzzy expression: %s" normalized))))))
11193 ;; Disclose surroundings of match, if appropriate.
11194 (when (and (derived-mode-p 'org-mode) (not stealth))
11195 (org-show-context 'link-search))
11196 type))
11198 (defun org-get-buffer-for-internal-link (buffer)
11199 "Return a buffer to be used for displaying the link target of internal links."
11200 (cond
11201 ((not org-display-internal-link-with-indirect-buffer)
11202 buffer)
11203 ((string-match "(Clone)$" (buffer-name buffer))
11204 (message "Buffer is already a clone, not making another one")
11205 ;; we also do not modify visibility in this case
11206 buffer)
11207 (t ; make a new indirect buffer for displaying the link
11208 (let* ((bn (buffer-name buffer))
11209 (ibn (concat bn "(Clone)"))
11210 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11211 (with-current-buffer ib (org-overview))
11212 ib))))
11214 (defun org-do-occur (regexp &optional cleanup)
11215 "Call the Emacs command `occur'.
11216 If CLEANUP is non-nil, remove the printout of the regular expression
11217 in the *Occur* buffer. This is useful if the regex is long and not useful
11218 to read."
11219 (occur regexp)
11220 (when cleanup
11221 (let ((cwin (selected-window)) win beg end)
11222 (when (setq win (get-buffer-window "*Occur*"))
11223 (select-window win))
11224 (goto-char (point-min))
11225 (when (re-search-forward "match[a-z]+" nil t)
11226 (setq beg (match-end 0))
11227 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11228 (setq end (1- (match-beginning 0)))))
11229 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11230 (goto-char (point-min))
11231 (select-window cwin))))
11233 ;;; The mark ring for links jumps
11235 (defvar org-mark-ring nil
11236 "Mark ring for positions before jumps in Org-mode.")
11237 (defvar org-mark-ring-last-goto nil
11238 "Last position in the mark ring used to go back.")
11239 ;; Fill and close the ring
11240 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11241 (loop for i from 1 to org-mark-ring-length do
11242 (push (make-marker) org-mark-ring))
11243 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11244 org-mark-ring)
11246 (defun org-mark-ring-push (&optional pos buffer)
11247 "Put the current position or POS into the mark ring and rotate it."
11248 (interactive)
11249 (setq pos (or pos (point)))
11250 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11251 (move-marker (car org-mark-ring)
11252 (or pos (point))
11253 (or buffer (current-buffer)))
11254 (message "%s"
11255 (substitute-command-keys
11256 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11258 (defun org-mark-ring-goto (&optional n)
11259 "Jump to the previous position in the mark ring.
11260 With prefix arg N, jump back that many stored positions. When
11261 called several times in succession, walk through the entire ring.
11262 Org-mode commands jumping to a different position in the current file,
11263 or to another Org-mode file, automatically push the old position
11264 onto the ring."
11265 (interactive "p")
11266 (let (p m)
11267 (if (eq last-command this-command)
11268 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11269 (setq p org-mark-ring))
11270 (setq org-mark-ring-last-goto p)
11271 (setq m (car p))
11272 (org-pop-to-buffer-same-window (marker-buffer m))
11273 (goto-char m)
11274 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11276 (defun org-remove-angle-brackets (s)
11277 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11278 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11280 (defun org-add-angle-brackets (s)
11281 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11282 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11284 (defun org-remove-double-quotes (s)
11285 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11286 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11289 ;;; Following specific links
11291 (defun org-follow-timestamp-link ()
11292 "Open an agenda view for the time-stamp date/range at point."
11293 (cond
11294 ((org-at-date-range-p t)
11295 (let ((org-agenda-start-on-weekday)
11296 (t1 (match-string 1))
11297 (t2 (match-string 2)) tt1 tt2)
11298 (setq tt1 (time-to-days (org-time-string-to-time t1))
11299 tt2 (time-to-days (org-time-string-to-time t2)))
11300 (let ((org-agenda-buffer-tmp-name
11301 (format "*Org Agenda(a:%s)"
11302 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11303 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11304 ((org-at-timestamp-p t)
11305 (let ((org-agenda-buffer-tmp-name
11306 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11307 (org-agenda-list nil (time-to-days (org-time-string-to-time
11308 (substring (match-string 1) 0 10)))
11309 1)))
11310 (t (error "This should not happen"))))
11313 ;;; Following file links
11314 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11315 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11316 (declare-function mailcap-mime-info
11317 "mailcap" (string &optional request no-decode))
11318 (defvar org-wait nil)
11319 (defun org-open-file (path &optional in-emacs line search)
11320 "Open the file at PATH.
11321 First, this expands any special file name abbreviations. Then the
11322 configuration variable `org-file-apps' is checked if it contains an
11323 entry for this file type, and if yes, the corresponding command is launched.
11325 If no application is found, Emacs simply visits the file.
11327 With optional prefix argument IN-EMACS, Emacs will visit the file.
11328 With a double \\[universal-argument] \\[universal-argument] \
11329 prefix arg, Org tries to avoid opening in Emacs
11330 and to use an external application to visit the file.
11332 Optional LINE specifies a line to go to, optional SEARCH a string
11333 to search for. If LINE or SEARCH is given, the file will be
11334 opened in Emacs, unless an entry from org-file-apps that makes
11335 use of groups in a regexp matches.
11337 If you want to change the way frames are used when following a
11338 link, please customize `org-link-frame-setup'.
11340 If the file does not exist, an error is thrown."
11341 (let* ((file (if (equal path "")
11342 buffer-file-name
11343 (substitute-in-file-name (expand-file-name path))))
11344 (file-apps (append org-file-apps (org-default-apps)))
11345 (apps (org-remove-if
11346 'org-file-apps-entry-match-against-dlink-p file-apps))
11347 (apps-dlink (org-remove-if-not
11348 'org-file-apps-entry-match-against-dlink-p file-apps))
11349 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11350 (dirp (if remp nil (file-directory-p file)))
11351 (file (if (and dirp org-open-directory-means-index-dot-org)
11352 (concat (file-name-as-directory file) "index.org")
11353 file))
11354 (a-m-a-p (assq 'auto-mode apps))
11355 (dfile (downcase file))
11356 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11357 (link (cond ((and (eq line nil)
11358 (eq search nil))
11359 file)
11360 (line
11361 (concat file "::" (number-to-string line)))
11362 (search
11363 (concat file "::" search))))
11364 (dlink (downcase link))
11365 (old-buffer (current-buffer))
11366 (old-pos (point))
11367 (old-mode major-mode)
11368 ext cmd link-match-data)
11369 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11370 (setq ext (match-string 1 dfile))
11371 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11372 (setq ext (match-string 1 dfile))))
11373 (cond
11374 ((member in-emacs '((16) system))
11375 (setq cmd (cdr (assoc 'system apps))))
11376 (in-emacs (setq cmd 'emacs))
11378 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11379 (and dirp (cdr (assoc 'directory apps)))
11380 ; first, try matching against apps-dlink
11381 ; if we get a match here, store the match data for later
11382 (let ((match (assoc-default dlink apps-dlink
11383 'string-match)))
11384 (if match
11385 (progn (setq link-match-data (match-data))
11386 match)
11387 (progn (setq in-emacs (or in-emacs line search))
11388 nil))) ; if we have no match in apps-dlink,
11389 ; always open the file in emacs if line or search
11390 ; is given (for backwards compatibility)
11391 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11392 'string-match)
11393 (cdr (assoc ext apps))
11394 (cdr (assoc t apps))))))
11395 (when (eq cmd 'system)
11396 (setq cmd (cdr (assoc 'system apps))))
11397 (when (eq cmd 'default)
11398 (setq cmd (cdr (assoc t apps))))
11399 (when (eq cmd 'mailcap)
11400 (require 'mailcap)
11401 (mailcap-parse-mailcaps)
11402 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11403 (command (mailcap-mime-info mime-type)))
11404 (if (stringp command)
11405 (setq cmd command)
11406 (setq cmd 'emacs))))
11407 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11408 (not (file-exists-p file))
11409 (not org-open-non-existing-files))
11410 (user-error "No such file: %s" file))
11411 (cond
11412 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11413 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11414 (while (string-match "['\"]%s['\"]" cmd)
11415 (setq cmd (replace-match "%s" t t cmd)))
11416 (while (string-match "%s" cmd)
11417 (setq cmd (replace-match
11418 (save-match-data
11419 (shell-quote-argument
11420 (convert-standard-filename file)))
11421 t t cmd)))
11423 ;; Replace "%1", "%2" etc. in command with group matches from regex
11424 (save-match-data
11425 (let ((match-index 1)
11426 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11427 (set-match-data link-match-data)
11428 (while (<= match-index number-of-groups)
11429 (let ((regex (concat "%" (number-to-string match-index)))
11430 (replace-with (match-string match-index dlink)))
11431 (while (string-match regex cmd)
11432 (setq cmd (replace-match replace-with t t cmd))))
11433 (setq match-index (+ match-index 1)))))
11435 (save-window-excursion
11436 (message "Running %s...done" cmd)
11437 (start-process-shell-command cmd nil cmd)
11438 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11439 ((or (stringp cmd)
11440 (eq cmd 'emacs))
11441 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11442 (widen)
11443 (if line (progn (org-goto-line line)
11444 (if (derived-mode-p 'org-mode)
11445 (org-reveal)))
11446 (if search (org-link-search search))))
11447 ((consp cmd)
11448 (let ((file (convert-standard-filename file)))
11449 (save-match-data
11450 (set-match-data link-match-data)
11451 (eval cmd))))
11452 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11453 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11454 (or (not (equal old-buffer (current-buffer)))
11455 (not (equal old-pos (point))))
11456 (org-mark-ring-push old-pos old-buffer))))
11458 (defun org-file-apps-entry-match-against-dlink-p (entry)
11459 "This function returns non-nil if `entry' uses a regular
11460 expression which should be matched against the whole link by
11461 org-open-file.
11463 It assumes that is the case when the entry uses a regular
11464 expression which has at least one grouping construct and the
11465 action is either a lisp form or a command string containing
11466 '%1', i.e. using at least one subexpression match as a
11467 parameter."
11468 (let ((selector (car entry))
11469 (action (cdr entry)))
11470 (if (stringp selector)
11471 (and (> (regexp-opt-depth selector) 0)
11472 (or (and (stringp action)
11473 (string-match "%[0-9]" action))
11474 (consp action)))
11475 nil)))
11477 (defun org-default-apps ()
11478 "Return the default applications for this operating system."
11479 (cond
11480 ((eq system-type 'darwin)
11481 org-file-apps-defaults-macosx)
11482 ((eq system-type 'windows-nt)
11483 org-file-apps-defaults-windowsnt)
11484 (t org-file-apps-defaults-gnu)))
11486 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11487 "Convert extensions to regular expressions in the cars of LIST.
11488 Also, weed out any non-string entries, because the return value is used
11489 only for regexp matching.
11490 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11491 point to the symbol `emacs', indicating that the file should
11492 be opened in Emacs."
11493 (append
11494 (delq nil
11495 (mapcar (lambda (x)
11496 (if (not (stringp (car x)))
11498 (if (string-match "\\W" (car x))
11500 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11501 list))
11502 (if add-auto-mode
11503 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11505 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11506 (defun org-file-remote-p (file)
11507 "Test whether FILE specifies a location on a remote system.
11508 Return non-nil if the location is indeed remote.
11510 For example, the filename \"/user@host:/foo\" specifies a location
11511 on the system \"/user@host:\"."
11512 (cond ((fboundp 'file-remote-p)
11513 (file-remote-p file))
11514 ((fboundp 'tramp-handle-file-remote-p)
11515 (tramp-handle-file-remote-p file))
11516 ((and (boundp 'ange-ftp-name-format)
11517 (string-match (car ange-ftp-name-format) file))
11518 t)))
11521 ;;;; Refiling
11523 (defun org-get-org-file ()
11524 "Read a filename, with default directory `org-directory'."
11525 (let ((default (or org-default-notes-file remember-data-file)))
11526 (read-file-name (format "File name [%s]: " default)
11527 (file-name-as-directory org-directory)
11528 default)))
11530 (defun org-notes-order-reversed-p ()
11531 "Check if the current file should receive notes in reversed order."
11532 (cond
11533 ((not org-reverse-note-order) nil)
11534 ((eq t org-reverse-note-order) t)
11535 ((not (listp org-reverse-note-order)) nil)
11536 (t (catch 'exit
11537 (dolist (entry org-reverse-note-order)
11538 (if (string-match (car entry) buffer-file-name)
11539 (throw 'exit (cdr entry))))))))
11541 (defvar org-refile-target-table nil
11542 "The list of refile targets, created by `org-refile'.")
11544 (defvar org-agenda-new-buffers nil
11545 "Buffers created to visit agenda files.")
11547 (defvar org-refile-cache nil
11548 "Cache for refile targets.")
11550 (defvar org-refile-markers nil
11551 "All the markers used for caching refile locations.")
11553 (defun org-refile-marker (pos)
11554 "Get a new refile marker, but only if caching is in use."
11555 (if (not org-refile-use-cache)
11557 (let ((m (make-marker)))
11558 (move-marker m pos)
11559 (push m org-refile-markers)
11560 m)))
11562 (defun org-refile-cache-clear ()
11563 "Clear the refile cache and disable all the markers."
11564 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11565 (setq org-refile-markers nil)
11566 (setq org-refile-cache nil)
11567 (message "Refile cache has been cleared"))
11569 (defun org-refile-cache-check-set (set)
11570 "Check if all the markers in the cache still have live buffers."
11571 (let (marker)
11572 (catch 'exit
11573 (while (and set (setq marker (nth 3 (pop set))))
11574 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11575 (when (and marker (null (marker-buffer marker)))
11576 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11577 (sit-for 3)
11578 (throw 'exit nil)))
11579 t)))
11581 (defun org-refile-cache-put (set &rest identifiers)
11582 "Push the refile targets SET into the cache, under IDENTIFIERS."
11583 (let* ((key (sha1 (prin1-to-string identifiers)))
11584 (entry (assoc key org-refile-cache)))
11585 (if entry
11586 (setcdr entry set)
11587 (push (cons key set) org-refile-cache))))
11589 (defun org-refile-cache-get (&rest identifiers)
11590 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11591 (cond
11592 ((not org-refile-cache) nil)
11593 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11595 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11596 org-refile-cache))))
11597 (and set (org-refile-cache-check-set set) set)))))
11599 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11600 "Produce a table with refile targets."
11601 (let ((case-fold-search nil)
11602 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11603 (entries (or org-refile-targets '((nil . (:level . 1)))))
11604 targets tgs txt re files desc descre fast-path-p level pos0)
11605 (message "Getting targets...")
11606 (with-current-buffer (or default-buffer (current-buffer))
11607 (dolist (entry entries)
11608 (setq files (car entry) desc (cdr entry))
11609 (setq fast-path-p nil)
11610 (cond
11611 ((null files) (setq files (list (current-buffer))))
11612 ((eq files 'org-agenda-files)
11613 (setq files (org-agenda-files 'unrestricted)))
11614 ((and (symbolp files) (fboundp files))
11615 (setq files (funcall files)))
11616 ((and (symbolp files) (boundp files))
11617 (setq files (symbol-value files))))
11618 (if (stringp files) (setq files (list files)))
11619 (cond
11620 ((eq (car desc) :tag)
11621 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11622 ((eq (car desc) :todo)
11623 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11624 ((eq (car desc) :regexp)
11625 (setq descre (cdr desc)))
11626 ((eq (car desc) :level)
11627 (setq descre (concat "^\\*\\{" (number-to-string
11628 (if org-odd-levels-only
11629 (1- (* 2 (cdr desc)))
11630 (cdr desc)))
11631 "\\}[ \t]")))
11632 ((eq (car desc) :maxlevel)
11633 (setq fast-path-p t)
11634 (setq descre (concat "^\\*\\{1," (number-to-string
11635 (if org-odd-levels-only
11636 (1- (* 2 (cdr desc)))
11637 (cdr desc)))
11638 "\\}[ \t]")))
11639 (t (error "Bad refiling target description %s" desc)))
11640 (dolist (f files)
11641 (with-current-buffer
11642 (if (bufferp f) f (org-get-agenda-file-buffer f))
11644 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11645 (progn
11646 (if (bufferp f) (setq f (buffer-file-name
11647 (buffer-base-buffer f))))
11648 (setq f (and f (expand-file-name f)))
11649 (if (eq org-refile-use-outline-path 'file)
11650 (push (list (file-name-nondirectory f) f nil nil) tgs))
11651 (save-excursion
11652 (save-restriction
11653 (widen)
11654 (goto-char (point-min))
11655 (while (re-search-forward descre nil t)
11656 (goto-char (setq pos0 (point-at-bol)))
11657 (catch 'next
11658 (when org-refile-target-verify-function
11659 (save-match-data
11660 (or (funcall org-refile-target-verify-function)
11661 (throw 'next t))))
11662 (when (and (looking-at org-complex-heading-regexp)
11663 (not (member (match-string 4) excluded-entries))
11664 (match-string 4))
11665 (setq level (org-reduced-level
11666 (- (match-end 1) (match-beginning 1)))
11667 txt (org-link-display-format (match-string 4))
11668 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11669 re (format org-complex-heading-regexp-format
11670 (regexp-quote (match-string 4))))
11671 (when org-refile-use-outline-path
11672 (setq txt (mapconcat
11673 'org-protect-slash
11674 (append
11675 (if (eq org-refile-use-outline-path
11676 'file)
11677 (list (file-name-nondirectory
11678 (buffer-file-name
11679 (buffer-base-buffer))))
11680 (if (eq org-refile-use-outline-path
11681 'full-file-path)
11682 (list (buffer-file-name
11683 (buffer-base-buffer)))))
11684 (org-get-outline-path fast-path-p
11685 level txt)
11686 (list txt))
11687 "/")))
11688 (push (list txt f re (org-refile-marker (point)))
11689 tgs)))
11690 (when (= (point) pos0)
11691 ;; verification function has not moved point
11692 (goto-char (point-at-eol))))))))
11693 (when org-refile-use-cache
11694 (org-refile-cache-put tgs (buffer-file-name) descre))
11695 (setq targets (append tgs targets))))))
11696 (message "Getting targets...done")
11697 (nreverse targets)))
11699 (defun org-protect-slash (s)
11700 (while (string-match "/" s)
11701 (setq s (replace-match "\\" t t s)))
11704 (defvar org-olpa (make-vector 20 nil))
11706 (defun org-get-outline-path (&optional fastp level heading)
11707 "Return the outline path to the current entry, as a list.
11709 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11710 routine which makes outline path derivations for an entire file,
11711 avoiding backtracing. Refile target collection makes use of that."
11712 (if fastp
11713 (progn
11714 (if (> level 19)
11715 (error "Outline path failure, more than 19 levels"))
11716 (loop for i from level upto 19 do
11717 (aset org-olpa i nil))
11718 (prog1
11719 (delq nil (append org-olpa nil))
11720 (aset org-olpa level heading)))
11721 (let (rtn case-fold-search)
11722 (save-excursion
11723 (save-restriction
11724 (widen)
11725 (while (org-up-heading-safe)
11726 (when (looking-at org-complex-heading-regexp)
11727 (push (org-trim
11728 (replace-regexp-in-string
11729 ;; Remove statistical/checkboxes cookies
11730 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11731 (org-match-string-no-properties 4)))
11732 rtn)))
11733 rtn)))))
11735 (defun org-format-outline-path (path &optional width prefix separator)
11736 "Format the outline path PATH for display.
11737 WIDTH is the maximum number of characters that is available.
11738 PREFIX is a prefix to be included in the returned string,
11739 such as the file name.
11740 SEPARATOR is inserted between the different parts of the path,
11741 the default is \"/\"."
11742 (setq width (or width 79))
11743 (if prefix (setq width (- width (length prefix))))
11744 (if (not path)
11745 (or prefix "")
11746 (let* ((nsteps (length path))
11747 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11748 (maxwidth (if (<= total-width width)
11749 10000 ;; everything fits
11750 ;; we need to shorten the level headings
11751 (/ (- width nsteps) nsteps)))
11752 (org-odd-levels-only nil)
11753 (n 0)
11754 (total (1+ (length prefix))))
11755 (setq maxwidth (max maxwidth 10))
11756 (concat prefix
11757 (if prefix (or separator "/"))
11758 (mapconcat
11759 (lambda (h)
11760 (setq n (1+ n))
11761 (if (and (= n nsteps) (< maxwidth 10000))
11762 (setq maxwidth (- total-width total)))
11763 (if (< (length h) maxwidth)
11764 (progn (setq total (+ total (length h) 1)) h)
11765 (setq h (substring h 0 (- maxwidth 2))
11766 total (+ total maxwidth 1))
11767 (if (string-match "[ \t]+\\'" h)
11768 (setq h (substring h 0 (match-beginning 0))))
11769 (setq h (concat h "..")))
11770 (org-add-props h nil 'face
11771 (nth (% (1- n) org-n-level-faces)
11772 org-level-faces))
11774 path (or separator "/"))))))
11776 (defun org-display-outline-path (&optional file current separator just-return-string)
11777 "Display the current outline path in the echo area.
11779 If FILE is non-nil, prepend the output with the file name.
11780 If CURRENT is non-nil, append the current heading to the output.
11781 SEPARATOR is passed through to `org-format-outline-path'. It separates
11782 the different parts of the path and defaults to \"/\".
11783 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11784 (interactive "P")
11785 (let* (case-fold-search
11786 (bfn (buffer-file-name (buffer-base-buffer)))
11787 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11788 res)
11789 (if current (setq path (append path
11790 (save-excursion
11791 (org-back-to-heading t)
11792 (if (looking-at org-complex-heading-regexp)
11793 (list (match-string 4)))))))
11794 (setq res
11795 (org-format-outline-path
11796 path
11797 (1- (frame-width))
11798 (and file bfn (concat (file-name-nondirectory bfn) separator))
11799 separator))
11800 (if just-return-string
11801 (org-no-properties res)
11802 (org-unlogged-message "%s" res))))
11804 (defvar org-refile-history nil
11805 "History for refiling operations.")
11807 (defvar org-after-refile-insert-hook nil
11808 "Hook run after `org-refile' has inserted its stuff at the new location.
11809 Note that this is still *before* the stuff will be removed from
11810 the *old* location.")
11812 (defvar org-capture-last-stored-marker)
11813 (defvar org-refile-keep nil
11814 "Non-nil means `org-refile' will copy instead of refile.")
11816 (defun org-copy ()
11817 "Like `org-refile', but copy."
11818 (interactive)
11819 (let ((org-refile-keep t))
11820 (funcall 'org-refile nil nil nil "Copy")))
11822 (defun org-refile (&optional arg default-buffer rfloc msg)
11823 "Move the entry or entries at point to another heading.
11824 The list of target headings is compiled using the information in
11825 `org-refile-targets', which see.
11827 At the target location, the entry is filed as a subitem of the
11828 target heading. Depending on `org-reverse-note-order', the new
11829 subitem will either be the first or the last subitem.
11831 If there is an active region, all entries in that region will be
11832 refiled. However, the region must fulfill the requirement that
11833 the first heading sets the top-level of the moved text.
11835 With prefix arg ARG, the command will only visit the target
11836 location and not actually move anything.
11838 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11839 refiling operation has put the subtree.
11841 With a numeric prefix argument of `2', refile to the running clock.
11843 With a numeric prefix argument of `3', emulate `org-refile-keep'
11844 being set to t and copy to the target location, don't move it.
11845 Beware that keeping refiled entries may result in duplicated ID
11846 properties.
11848 RFLOC can be a refile location obtained in a different way.
11850 MSG is a string to replace \"Refile\" in the default prompt with
11851 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11853 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11855 If you are using target caching (see `org-refile-use-cache'), you
11856 have to clear the target cache in order to find new targets.
11857 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11858 prefix argument (`C-u C-u C-u C-c C-w')."
11859 (interactive "P")
11860 (if (member arg '(0 (64)))
11861 (org-refile-cache-clear)
11862 (let* ((actionmsg (cond (msg msg)
11863 ((equal arg 3) "Refile (and keep)")
11864 (t "Refile")))
11865 (cbuf (current-buffer))
11866 (regionp (org-region-active-p))
11867 (region-start (and regionp (region-beginning)))
11868 (region-end (and regionp (region-end)))
11869 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11870 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11871 pos it nbuf file re level reversed)
11872 (setq last-command nil)
11873 (when regionp
11874 (goto-char region-start)
11875 (or (bolp) (goto-char (point-at-bol)))
11876 (setq region-start (point))
11877 (unless (or (org-kill-is-subtree-p
11878 (buffer-substring region-start region-end))
11879 (prog1 org-refile-active-region-within-subtree
11880 (let ((s (point-at-eol)))
11881 (org-toggle-heading)
11882 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11883 (user-error "The region is not a (sequence of) subtree(s)")))
11884 (if (equal arg '(16))
11885 (org-refile-goto-last-stored)
11886 (when (or
11887 (and (equal arg 2)
11888 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11889 (prog1
11890 (setq it (list (or org-clock-heading "running clock")
11891 (buffer-file-name
11892 (marker-buffer org-clock-hd-marker))
11894 (marker-position org-clock-hd-marker)))
11895 (setq arg nil)))
11896 (setq it (or rfloc
11897 (let (heading-text)
11898 (save-excursion
11899 (unless (and arg (listp arg))
11900 (org-back-to-heading t)
11901 (setq heading-text
11902 (replace-regexp-in-string
11903 org-bracket-link-regexp
11904 "\\3"
11905 (nth 4 (org-heading-components)))))
11906 (org-refile-get-location
11907 (cond ((and arg (listp arg)) "Goto")
11908 (regionp (concat actionmsg " region to"))
11909 (t (concat actionmsg " subtree \""
11910 heading-text "\" to")))
11911 default-buffer
11912 (and (not (equal '(4) arg))
11913 org-refile-allow-creating-parent-nodes)
11914 arg))))))
11915 (setq file (nth 1 it)
11916 re (nth 2 it)
11917 pos (nth 3 it))
11918 (if (and (not arg)
11920 (equal (buffer-file-name) file)
11921 (if regionp
11922 (and (>= pos region-start)
11923 (<= pos region-end))
11924 (and (>= pos (point))
11925 (< pos (save-excursion
11926 (org-end-of-subtree t t))))))
11927 (error "Cannot refile to position inside the tree or region"))
11928 (setq nbuf (or (find-buffer-visiting file)
11929 (find-file-noselect file)))
11930 (if (and arg (not (equal arg 3)))
11931 (progn
11932 (org-pop-to-buffer-same-window nbuf)
11933 (goto-char pos)
11934 (org-show-context 'org-goto))
11935 (if regionp
11936 (progn
11937 (org-kill-new (buffer-substring region-start region-end))
11938 (org-save-markers-in-region region-start region-end))
11939 (org-copy-subtree 1 nil t))
11940 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11941 (find-file-noselect file)))
11942 (setq reversed (org-notes-order-reversed-p))
11943 (save-excursion
11944 (save-restriction
11945 (widen)
11946 (if pos
11947 (progn
11948 (goto-char pos)
11949 (looking-at org-outline-regexp)
11950 (setq level (org-get-valid-level (funcall outline-level) 1))
11951 (goto-char
11952 (if reversed
11953 (or (outline-next-heading) (point-max))
11954 (or (save-excursion (org-get-next-sibling))
11955 (org-end-of-subtree t t)
11956 (point-max)))))
11957 (setq level 1)
11958 (if (not reversed)
11959 (goto-char (point-max))
11960 (goto-char (point-min))
11961 (or (outline-next-heading) (goto-char (point-max)))))
11962 (if (not (bolp)) (newline))
11963 (org-paste-subtree level nil nil t)
11964 (when org-log-refile
11965 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11966 (unless (eq org-log-refile 'note)
11967 (save-excursion (org-add-log-note))))
11968 (and org-auto-align-tags
11969 (let ((org-loop-over-headlines-in-active-region nil))
11970 (org-set-tags nil t)))
11971 (let ((bookmark-name (plist-get org-bookmark-names-plist
11972 :last-refile)))
11973 (when bookmark-name
11974 (with-demoted-errors
11975 (bookmark-set bookmark-name))))
11976 ;; If we are refiling for capture, make sure that the
11977 ;; last-capture pointers point here
11978 (when (org-bound-and-true-p org-refile-for-capture)
11979 (let ((bookmark-name (plist-get org-bookmark-names-plist
11980 :last-capture-marker)))
11981 (when bookmark-name
11982 (with-demoted-errors
11983 (bookmark-set bookmark-name))))
11984 (move-marker org-capture-last-stored-marker (point)))
11985 (if (fboundp 'deactivate-mark) (deactivate-mark))
11986 (run-hooks 'org-after-refile-insert-hook))))
11987 (unless org-refile-keep
11988 (if regionp
11989 (delete-region (point) (+ (point) (- region-end region-start)))
11990 (delete-region
11991 (and (org-back-to-heading t) (point))
11992 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11993 (when (featurep 'org-inlinetask)
11994 (org-inlinetask-remove-END-maybe))
11995 (setq org-markers-to-move nil)
11996 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11998 (defun org-refile-goto-last-stored ()
11999 "Go to the location where the last refile was stored."
12000 (interactive)
12001 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12002 (message "This is the location of the last refile"))
12004 (defun org-refile--get-location (refloc tbl)
12005 "When user refile to REFLOC, find the associated target in TBL.
12006 Also check `org-refile-target-table'."
12007 (car (delq
12009 (mapcar
12010 (lambda (r) (or (assoc r tbl)
12011 (assoc r org-refile-target-table)))
12012 (list (replace-regexp-in-string "/$" "" refloc)
12013 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12015 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12016 no-exclude)
12017 "Prompt the user for a refile location, using PROMPT.
12018 PROMPT should not be suffixed with a colon and a space, because
12019 this function appends the default value from
12020 `org-refile-history' automatically, if that is not empty.
12021 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12022 this is used for the GOTO interface."
12023 (let ((org-refile-targets org-refile-targets)
12024 (org-refile-use-outline-path org-refile-use-outline-path)
12025 excluded-entries)
12026 (when (and (derived-mode-p 'org-mode)
12027 (not org-refile-use-cache)
12028 (not no-exclude))
12029 (org-map-tree
12030 (lambda()
12031 (setq excluded-entries
12032 (append excluded-entries (list (org-get-heading t t)))))))
12033 (setq org-refile-target-table
12034 (org-refile-get-targets default-buffer excluded-entries)))
12035 (unless org-refile-target-table
12036 (user-error "No refile targets"))
12037 (let* ((cbuf (current-buffer))
12038 (partial-completion-mode nil)
12039 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12040 (cfunc (if (and org-refile-use-outline-path
12041 org-outline-path-complete-in-steps)
12042 'org-olpath-completing-read
12043 'org-icompleting-read))
12044 (extra (if org-refile-use-outline-path "/" ""))
12045 (cbnex (concat (buffer-name) extra))
12046 (filename (and cfn (expand-file-name cfn)))
12047 (tbl (mapcar
12048 (lambda (x)
12049 (if (and (not (member org-refile-use-outline-path
12050 '(file full-file-path)))
12051 (not (equal filename (nth 1 x))))
12052 (cons (concat (car x) extra " ("
12053 (file-name-nondirectory (nth 1 x)) ")")
12054 (cdr x))
12055 (cons (concat (car x) extra) (cdr x))))
12056 org-refile-target-table))
12057 (completion-ignore-case t)
12058 cdef
12059 (prompt (concat prompt
12060 (or (and (car org-refile-history)
12061 (concat " (default " (car org-refile-history) ")"))
12062 (and (assoc cbnex tbl) (setq cdef cbnex)
12063 (concat " (default " cbnex ")"))) ": "))
12064 pa answ parent-target child parent old-hist)
12065 (setq old-hist org-refile-history)
12066 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12067 nil 'org-refile-history (or cdef (car org-refile-history))))
12068 (if (setq pa (org-refile--get-location answ tbl))
12069 (progn
12070 (org-refile-check-position pa)
12071 (when (or (not org-refile-history)
12072 (not (eq old-hist org-refile-history))
12073 (not (equal (car pa) (car org-refile-history))))
12074 (setq org-refile-history
12075 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12076 org-refile-history
12077 (cdr org-refile-history))))
12078 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12079 (pop org-refile-history)))
12081 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12082 (progn
12083 (setq parent (match-string 1 answ)
12084 child (match-string 2 answ))
12085 (setq parent-target (org-refile--get-location parent tbl))
12086 (when (and parent-target
12087 (or (eq new-nodes t)
12088 (and (eq new-nodes 'confirm)
12089 (y-or-n-p (format "Create new node \"%s\"? "
12090 child)))))
12091 (org-refile-new-child parent-target child)))
12092 (user-error "Invalid target location")))))
12094 (declare-function org-string-nw-p "org-macs" (s))
12095 (defun org-refile-check-position (refile-pointer)
12096 "Check if the refile pointer matches the headline to which it points."
12097 (let* ((file (nth 1 refile-pointer))
12098 (re (nth 2 refile-pointer))
12099 (pos (nth 3 refile-pointer))
12100 buffer)
12101 (if (and (not (markerp pos)) (not file))
12102 (user-error "Please indicate a target file in the refile path")
12103 (when (org-string-nw-p re)
12104 (setq buffer (if (markerp pos)
12105 (marker-buffer pos)
12106 (or (find-buffer-visiting file)
12107 (find-file-noselect file))))
12108 (with-current-buffer buffer
12109 (save-excursion
12110 (save-restriction
12111 (widen)
12112 (goto-char pos)
12113 (beginning-of-line 1)
12114 (unless (org-looking-at-p re)
12115 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12117 (defun org-refile-new-child (parent-target child)
12118 "Use refile target PARENT-TARGET to add new CHILD below it."
12119 (unless parent-target
12120 (error "Cannot find parent for new node"))
12121 (let ((file (nth 1 parent-target))
12122 (pos (nth 3 parent-target))
12123 level)
12124 (with-current-buffer (or (find-buffer-visiting file)
12125 (find-file-noselect file))
12126 (save-excursion
12127 (save-restriction
12128 (widen)
12129 (if pos
12130 (goto-char pos)
12131 (goto-char (point-max))
12132 (if (not (bolp)) (newline)))
12133 (when (looking-at org-outline-regexp)
12134 (setq level (funcall outline-level))
12135 (org-end-of-subtree t t))
12136 (org-back-over-empty-lines)
12137 (insert "\n" (make-string
12138 (if pos (org-get-valid-level level 1) 1) ?*)
12139 " " child "\n")
12140 (beginning-of-line 0)
12141 (list (concat (car parent-target) "/" child) file "" (point)))))))
12143 (defun org-olpath-completing-read (prompt collection &rest args)
12144 "Read an outline path like a file name."
12145 (let ((thetable collection)
12146 (org-completion-use-ido nil) ; does not work with ido.
12147 (org-completion-use-iswitchb nil)) ; or iswitchb
12148 (apply #'org-icompleting-read
12149 prompt
12150 (lambda (string predicate &optional flag)
12151 (cond
12152 ((eq flag nil) (try-completion string thetable))
12153 ((eq flag t)
12154 (let ((l (length string)))
12155 (mapcar (lambda (x)
12156 (let ((r (substring x l))
12157 (f (if (string-match " ([^)]*)$" x)
12158 (match-string 0 x)
12159 "")))
12160 (if (string-match "/" r)
12161 (concat string (substring r 0 (match-end 0)) f)
12162 x)))
12163 (all-completions string thetable predicate))))
12164 ;; Exact match?
12165 ((eq flag 'lambda) (assoc string thetable))))
12166 args)))
12168 ;;;; Dynamic blocks
12170 (defun org-find-dblock (name)
12171 "Find the first dynamic block with name NAME in the buffer.
12172 If not found, stay at current position and return nil."
12173 (let ((case-fold-search t) pos)
12174 (save-excursion
12175 (goto-char (point-min))
12176 (setq pos (and (re-search-forward
12177 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12178 (match-beginning 0))))
12179 (if pos (goto-char pos))
12180 pos))
12182 (defun org-create-dblock (plist)
12183 "Create a dynamic block section, with parameters taken from PLIST.
12184 PLIST must contain a :name entry which is used as the name of the block."
12185 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12186 (end-of-line 1)
12187 (newline))
12188 (let ((col (current-column))
12189 (name (plist-get plist :name)))
12190 (insert "#+BEGIN: " name)
12191 (while plist
12192 (if (eq (car plist) :name)
12193 (setq plist (cddr plist))
12194 (insert " " (prin1-to-string (pop plist)))))
12195 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12196 (beginning-of-line -2)))
12198 (defun org-prepare-dblock ()
12199 "Prepare dynamic block for refresh.
12200 This empties the block, puts the cursor at the insert position and returns
12201 the property list including an extra property :name with the block name."
12202 (unless (looking-at org-dblock-start-re)
12203 (user-error "Not at a dynamic block"))
12204 (let* ((begdel (1+ (match-end 0)))
12205 (name (org-no-properties (match-string 1)))
12206 (params (append (list :name name)
12207 (read (concat "(" (match-string 3) ")")))))
12208 (save-excursion
12209 (beginning-of-line 1)
12210 (skip-chars-forward " \t")
12211 (setq params (plist-put params :indentation-column (current-column))))
12212 (unless (re-search-forward org-dblock-end-re nil t)
12213 (error "Dynamic block not terminated"))
12214 (setq params
12215 (append params
12216 (list :content (buffer-substring
12217 begdel (match-beginning 0)))))
12218 (delete-region begdel (match-beginning 0))
12219 (goto-char begdel)
12220 (open-line 1)
12221 params))
12223 (defun org-map-dblocks (&optional command)
12224 "Apply COMMAND to all dynamic blocks in the current buffer.
12225 If COMMAND is not given, use `org-update-dblock'."
12226 (let ((cmd (or command 'org-update-dblock)))
12227 (save-excursion
12228 (goto-char (point-min))
12229 (while (re-search-forward org-dblock-start-re nil t)
12230 (goto-char (match-beginning 0))
12231 (save-excursion
12232 (condition-case nil
12233 (funcall cmd)
12234 (error (message "Error during update of dynamic block"))))
12235 (unless (re-search-forward org-dblock-end-re nil t)
12236 (error "Dynamic block not terminated"))))))
12238 (defun org-dblock-update (&optional arg)
12239 "User command for updating dynamic blocks.
12240 Update the dynamic block at point. With prefix ARG, update all dynamic
12241 blocks in the buffer."
12242 (interactive "P")
12243 (if arg
12244 (org-update-all-dblocks)
12245 (or (looking-at org-dblock-start-re)
12246 (org-beginning-of-dblock))
12247 (org-update-dblock)))
12249 (defun org-update-dblock ()
12250 "Update the dynamic block at point.
12251 This means to empty the block, parse for parameters and then call
12252 the correct writing function."
12253 (interactive)
12254 (save-excursion
12255 (let* ((win (selected-window))
12256 (pos (point))
12257 (line (org-current-line))
12258 (params (org-prepare-dblock))
12259 (name (plist-get params :name))
12260 (indent (plist-get params :indentation-column))
12261 (cmd (intern (concat "org-dblock-write:" name))))
12262 (message "Updating dynamic block `%s' at line %d..." name line)
12263 (funcall cmd params)
12264 (message "Updating dynamic block `%s' at line %d...done" name line)
12265 (goto-char pos)
12266 (when (and indent (> indent 0))
12267 (setq indent (make-string indent ?\ ))
12268 (save-excursion
12269 (select-window win)
12270 (org-beginning-of-dblock)
12271 (forward-line 1)
12272 (while (not (looking-at org-dblock-end-re))
12273 (insert indent)
12274 (beginning-of-line 2))
12275 (when (looking-at org-dblock-end-re)
12276 (and (looking-at "[ \t]+")
12277 (replace-match ""))
12278 (insert indent)))))))
12280 (defun org-beginning-of-dblock ()
12281 "Find the beginning of the dynamic block at point.
12282 Error if there is no such block at point."
12283 (let ((pos (point))
12284 beg)
12285 (end-of-line 1)
12286 (if (and (re-search-backward org-dblock-start-re nil t)
12287 (setq beg (match-beginning 0))
12288 (re-search-forward org-dblock-end-re nil t)
12289 (> (match-end 0) pos))
12290 (goto-char beg)
12291 (goto-char pos)
12292 (error "Not in a dynamic block"))))
12294 (defun org-update-all-dblocks ()
12295 "Update all dynamic blocks in the buffer.
12296 This function can be used in a hook."
12297 (interactive)
12298 (when (derived-mode-p 'org-mode)
12299 (org-map-dblocks 'org-update-dblock)))
12302 ;;;; Completion
12304 (declare-function org-export-backend-name "org-export" (cl-x))
12305 (declare-function org-export-backend-options "org-export" (cl-x))
12306 (defun org-get-export-keywords ()
12307 "Return a list of all currently understood export keywords.
12308 Export keywords include options, block names, attributes and
12309 keywords relative to each registered export back-end."
12310 (let (keywords)
12311 (dolist (backend
12312 (org-bound-and-true-p org-export-registered-backends)
12313 (delq nil keywords))
12314 ;; Back-end name (for keywords, like #+LATEX:)
12315 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12316 (dolist (option-entry (org-export-backend-options backend))
12317 ;; Back-end options.
12318 (push (nth 1 option-entry) keywords)))))
12320 (defconst org-options-keywords
12321 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12322 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12323 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12324 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12325 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12327 (defcustom org-structure-template-alist
12328 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12329 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12330 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12331 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12332 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12333 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12334 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12335 ("L" "#+LaTeX: ")
12336 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12337 ("H" "#+HTML: ")
12338 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12339 ("A" "#+ASCII: ")
12340 ("i" "#+INDEX: ?")
12341 ("I" "#+INCLUDE: %file ?"))
12342 "Structure completion elements.
12343 This is a list of abbreviation keys and values. The value gets inserted
12344 if you type `<' followed by the key and then press the completion key,
12345 usually `TAB'. %file will be replaced by a file name after prompting
12346 for the file using completion. The cursor will be placed at the position
12347 of the `?' in the template.
12348 There are two templates for each key, the first uses the original Org syntax,
12349 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12350 the default when the /org-mtags.el/ module has been loaded. See also the
12351 variable `org-mtags-prefer-muse-templates'."
12352 :group 'org-completion
12353 :type '(repeat
12354 (list
12355 (string :tag "Key")
12356 (string :tag "Template")))
12357 :version "25.1"
12358 :package-version '(Org . "8.3"))
12360 (defun org-try-structure-completion ()
12361 "Try to complete a structure template before point.
12362 This looks for strings like \"<e\" on an otherwise empty line and
12363 expands them."
12364 (let ((l (buffer-substring (point-at-bol) (point)))
12366 (when (and (looking-at "[ \t]*$")
12367 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12368 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12369 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12370 (match-beginning 1)) a)
12371 t)))
12373 (defun org-complete-expand-structure-template (start cell)
12374 "Expand a structure template."
12375 (let ((rpl (nth 1 cell))
12376 (ind ""))
12377 (delete-region start (point))
12378 (when (string-match "\\`[ \t]*#\\+" rpl)
12379 (cond
12380 ((bolp))
12381 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12382 (setq ind (buffer-substring (point-at-bol) (point))))
12383 (t (newline))))
12384 (setq start (point))
12385 (if (string-match "%file" rpl)
12386 (setq rpl (replace-match
12387 (concat
12388 "\""
12389 (save-match-data
12390 (abbreviate-file-name (read-file-name "Include file: ")))
12391 "\"")
12392 t t rpl)))
12393 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12394 (concat "\n" ind)))
12395 (insert rpl)
12396 (if (re-search-backward "\\?" start t) (delete-char 1))))
12398 ;;;; TODO, DEADLINE, Comments
12400 (defun org-toggle-comment ()
12401 "Change the COMMENT state of an entry."
12402 (interactive)
12403 (save-excursion
12404 (org-back-to-heading)
12405 (looking-at org-complex-heading-regexp)
12406 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12407 (skip-chars-forward " \t")
12408 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12409 (if (org-in-commented-heading-p t)
12410 (delete-region (point)
12411 (progn (search-forward " " (line-end-position) 'move)
12412 (skip-chars-forward " \t")
12413 (point)))
12414 (insert org-comment-string)
12415 (unless (eolp) (insert " ")))))
12417 (defvar org-last-todo-state-is-todo nil
12418 "This is non-nil when the last TODO state change led to a TODO state.
12419 If the last change removed the TODO tag or switched to DONE, then
12420 this is nil.")
12422 (defvar org-setting-tags nil) ; dynamically skipped
12424 (defvar org-todo-setup-filter-hook nil
12425 "Hook for functions that pre-filter todo specs.
12426 Each function takes a todo spec and returns either nil or the spec
12427 transformed into canonical form." )
12429 (defvar org-todo-get-default-hook nil
12430 "Hook for functions that get a default item for todo.
12431 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12432 nil or a string to be used for the todo mark." )
12434 (defvar org-agenda-headline-snapshot-before-repeat)
12436 (defun org-current-effective-time ()
12437 "Return current time adjusted for `org-extend-today-until' variable."
12438 (let* ((ct (org-current-time))
12439 (dct (decode-time ct))
12440 (ct1
12441 (cond
12442 (org-use-last-clock-out-time-as-effective-time
12443 (or (org-clock-get-last-clock-out-time) ct))
12444 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12445 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12446 (t ct))))
12447 ct1))
12449 (defun org-todo-yesterday (&optional arg)
12450 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12451 (interactive "P")
12452 (if (eq major-mode 'org-agenda-mode)
12453 (apply 'org-agenda-todo-yesterday arg)
12454 (let* ((org-use-effective-time t)
12455 (hour (third (decode-time
12456 (org-current-time))))
12457 (org-extend-today-until (1+ hour)))
12458 (org-todo arg))))
12460 (defvar org-block-entry-blocking ""
12461 "First entry preventing the TODO state change.")
12463 (defun org-cancel-repeater ()
12464 "Cancel a repeater by setting its numeric value to zero."
12465 (interactive)
12466 (save-excursion
12467 (org-back-to-heading t)
12468 (let ((bound1 (point))
12469 (bound0 (save-excursion (outline-next-heading) (point))))
12470 (when (re-search-forward
12471 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12472 org-deadline-time-regexp "\\)\\|\\("
12473 org-ts-regexp "\\)")
12474 bound0 t)
12475 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12476 (replace-match "0" t nil nil 1))))))
12478 (defun org-todo (&optional arg)
12479 "Change the TODO state of an item.
12480 The state of an item is given by a keyword at the start of the heading,
12481 like
12482 *** TODO Write paper
12483 *** DONE Call mom
12485 The different keywords are specified in the variable `org-todo-keywords'.
12486 By default the available states are \"TODO\" and \"DONE\".
12487 So for this example: when the item starts with TODO, it is changed to DONE.
12488 When it starts with DONE, the DONE is removed. And when neither TODO nor
12489 DONE are present, add TODO at the beginning of the heading.
12491 With \\[universal-argument] prefix arg, use completion to determine the new \
12492 state.
12493 With numeric prefix arg, switch to that state.
12494 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12495 keywords (nextset).
12496 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12497 With a numeric prefix arg of 0, inhibit note taking for the change.
12498 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12500 When called through ELisp, arg is also interpreted in the following way:
12501 'none -> empty state
12502 \"\"(empty string) -> switch to empty state
12503 'done -> switch to DONE
12504 'nextset -> switch to the next set of keywords
12505 'previousset -> switch to the previous set of keywords
12506 \"WAITING\" -> switch to the specified keyword, but only if it
12507 really is a member of `org-todo-keywords'."
12508 (interactive "P")
12509 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12510 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12511 'region-start-level 'region))
12512 org-loop-over-headlines-in-active-region)
12513 (org-map-entries
12514 `(org-todo ,arg)
12515 org-loop-over-headlines-in-active-region
12516 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12517 (if (equal arg '(16)) (setq arg 'nextset))
12518 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12519 (let ((org-blocker-hook org-blocker-hook)
12520 commentp
12521 case-fold-search)
12522 (when (equal arg '(64))
12523 (setq arg nil org-blocker-hook nil))
12524 (when (and org-blocker-hook
12525 (or org-inhibit-blocking
12526 (org-entry-get nil "NOBLOCKING")))
12527 (setq org-blocker-hook nil))
12528 (save-excursion
12529 (catch 'exit
12530 (org-back-to-heading t)
12531 (when (org-in-commented-heading-p t)
12532 (org-toggle-comment)
12533 (setq commentp t))
12534 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12535 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12536 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12537 (let* ((match-data (match-data))
12538 (startpos (point-at-bol))
12539 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12540 (org-log-done org-log-done)
12541 (org-log-repeat org-log-repeat)
12542 (org-todo-log-states org-todo-log-states)
12543 (org-inhibit-logging
12544 (if (equal arg 0)
12545 (progn (setq arg nil) 'note) org-inhibit-logging))
12546 (this (match-string 1))
12547 (hl-pos (match-beginning 0))
12548 (head (org-get-todo-sequence-head this))
12549 (ass (assoc head org-todo-kwd-alist))
12550 (interpret (nth 1 ass))
12551 (done-word (nth 3 ass))
12552 (final-done-word (nth 4 ass))
12553 (org-last-state (or this ""))
12554 (completion-ignore-case t)
12555 (member (member this org-todo-keywords-1))
12556 (tail (cdr member))
12557 (org-state (cond
12558 ((and org-todo-key-trigger
12559 (or (and (equal arg '(4))
12560 (eq org-use-fast-todo-selection 'prefix))
12561 (and (not arg) org-use-fast-todo-selection
12562 (not (eq org-use-fast-todo-selection
12563 'prefix)))))
12564 ;; Use fast selection
12565 (org-fast-todo-selection))
12566 ((and (equal arg '(4))
12567 (or (not org-use-fast-todo-selection)
12568 (not org-todo-key-trigger)))
12569 ;; Read a state with completion
12570 (org-icompleting-read
12571 "State: " (mapcar 'list org-todo-keywords-1)
12572 nil t))
12573 ((eq arg 'right)
12574 (if this
12575 (if tail (car tail) nil)
12576 (car org-todo-keywords-1)))
12577 ((eq arg 'left)
12578 (if (equal member org-todo-keywords-1)
12580 (if this
12581 (nth (- (length org-todo-keywords-1)
12582 (length tail) 2)
12583 org-todo-keywords-1)
12584 (org-last org-todo-keywords-1))))
12585 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12586 (setq arg nil))) ; hack to fall back to cycling
12587 (arg
12588 ;; user or caller requests a specific state
12589 (cond
12590 ((equal arg "") nil)
12591 ((eq arg 'none) nil)
12592 ((eq arg 'done) (or done-word (car org-done-keywords)))
12593 ((eq arg 'nextset)
12594 (or (car (cdr (member head org-todo-heads)))
12595 (car org-todo-heads)))
12596 ((eq arg 'previousset)
12597 (let ((org-todo-heads (reverse org-todo-heads)))
12598 (or (car (cdr (member head org-todo-heads)))
12599 (car org-todo-heads))))
12600 ((car (member arg org-todo-keywords-1)))
12601 ((stringp arg)
12602 (user-error "State `%s' not valid in this file" arg))
12603 ((nth (1- (prefix-numeric-value arg))
12604 org-todo-keywords-1))))
12605 ((null member) (or head (car org-todo-keywords-1)))
12606 ((equal this final-done-word) nil) ;; -> make empty
12607 ((null tail) nil) ;; -> first entry
12608 ((memq interpret '(type priority))
12609 (if (eq this-command last-command)
12610 (car tail)
12611 (if (> (length tail) 0)
12612 (or done-word (car org-done-keywords))
12613 nil)))
12615 (car tail))))
12616 (org-state (or
12617 (run-hook-with-args-until-success
12618 'org-todo-get-default-hook org-state org-last-state)
12619 org-state))
12620 (next (if org-state (concat " " org-state " ") " "))
12621 (change-plist (list :type 'todo-state-change :from this :to org-state
12622 :position startpos))
12623 dolog now-done-p)
12624 (when org-blocker-hook
12625 (setq org-last-todo-state-is-todo
12626 (not (member this org-done-keywords)))
12627 (unless (save-excursion
12628 (save-match-data
12629 (org-with-wide-buffer
12630 (run-hook-with-args-until-failure
12631 'org-blocker-hook change-plist))))
12632 (if (org-called-interactively-p 'interactive)
12633 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12634 this org-state org-block-entry-blocking)
12635 ;; fail silently
12636 (message "TODO state change from %s to %s blocked (by \"%s\")"
12637 this org-state org-block-entry-blocking)
12638 (throw 'exit nil))))
12639 (store-match-data match-data)
12640 (replace-match next t t)
12641 (cond ((equal this org-state)
12642 (message "TODO state was already %s" (org-trim next)))
12643 ((pos-visible-in-window-p hl-pos)
12644 (message "TODO state changed to %s" (org-trim next))))
12645 (unless head
12646 (setq head (org-get-todo-sequence-head org-state)
12647 ass (assoc head org-todo-kwd-alist)
12648 interpret (nth 1 ass)
12649 done-word (nth 3 ass)
12650 final-done-word (nth 4 ass)))
12651 (when (memq arg '(nextset previousset))
12652 (message "Keyword-Set %d/%d: %s"
12653 (- (length org-todo-sets) -1
12654 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12655 (length org-todo-sets)
12656 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12657 (setq org-last-todo-state-is-todo
12658 (not (member org-state org-done-keywords)))
12659 (setq now-done-p (and (member org-state org-done-keywords)
12660 (not (member this org-done-keywords))))
12661 (and logging (org-local-logging logging))
12662 (when (and (or org-todo-log-states org-log-done)
12663 (not (eq org-inhibit-logging t))
12664 (not (memq arg '(nextset previousset))))
12665 ;; we need to look at recording a time and note
12666 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12667 (nth 2 (assoc this org-todo-log-states))))
12668 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12669 (setq dolog 'time))
12670 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12671 (and org-state
12672 (member org-state org-not-done-keywords)
12673 (not (member this org-not-done-keywords))))
12674 ;; This is now a todo state and was not one before
12675 ;; If there was a CLOSED time stamp, get rid of it.
12676 (org-add-planning-info nil nil 'closed))
12677 (when (and now-done-p org-log-done)
12678 ;; It is now done, and it was not done before
12679 (org-add-planning-info 'closed (org-current-effective-time))
12680 (if (and (not dolog) (eq 'note org-log-done))
12681 (org-add-log-setup 'done org-state this 'findpos 'note)))
12682 (when (and org-state dolog)
12683 ;; This is a non-nil state, and we need to log it
12684 (org-add-log-setup 'state org-state this 'findpos dolog)))
12685 ;; Fixup tag positioning
12686 (org-todo-trigger-tag-changes org-state)
12687 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12688 (when org-provide-todo-statistics
12689 (org-update-parent-todo-statistics))
12690 (run-hooks 'org-after-todo-state-change-hook)
12691 (if (and arg (not (member org-state org-done-keywords)))
12692 (setq head (org-get-todo-sequence-head org-state)))
12693 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12694 ;; Do we need to trigger a repeat?
12695 (when now-done-p
12696 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12697 ;; This is for the agenda, take a snapshot of the headline.
12698 (save-match-data
12699 (setq org-agenda-headline-snapshot-before-repeat
12700 (org-get-heading))))
12701 (org-auto-repeat-maybe org-state))
12702 ;; Fixup cursor location if close to the keyword
12703 (if (and (outline-on-heading-p)
12704 (not (bolp))
12705 (save-excursion (beginning-of-line 1)
12706 (looking-at org-todo-line-regexp))
12707 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12708 (progn
12709 (goto-char (or (match-end 2) (match-end 1)))
12710 (and (looking-at " ") (just-one-space))))
12711 (when org-trigger-hook
12712 (save-excursion
12713 (run-hook-with-args 'org-trigger-hook change-plist)))
12714 (when commentp (org-toggle-comment))))))))
12716 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12717 "Block turning an entry into a TODO, using the hierarchy.
12718 This checks whether the current task should be blocked from state
12719 changes. Such blocking occurs when:
12721 1. The task has children which are not all in a completed state.
12723 2. A task has a parent with the property :ORDERED:, and there
12724 are siblings prior to the current task with incomplete
12725 status.
12727 3. The parent of the task is blocked because it has siblings that should
12728 be done first, or is child of a block grandparent TODO entry."
12730 (if (not org-enforce-todo-dependencies)
12731 t ; if locally turned off don't block
12732 (catch 'dont-block
12733 ;; If this is not a todo state change, or if this entry is already DONE,
12734 ;; do not block
12735 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12736 (member (plist-get change-plist :from)
12737 (cons 'done org-done-keywords))
12738 (member (plist-get change-plist :to)
12739 (cons 'todo org-not-done-keywords))
12740 (not (plist-get change-plist :to)))
12741 (throw 'dont-block t))
12742 ;; If this task has children, and any are undone, it's blocked
12743 (save-excursion
12744 (org-back-to-heading t)
12745 (let ((this-level (funcall outline-level)))
12746 (outline-next-heading)
12747 (let ((child-level (funcall outline-level)))
12748 (while (and (not (eobp))
12749 (> child-level this-level))
12750 ;; this todo has children, check whether they are all
12751 ;; completed
12752 (if (and (not (org-entry-is-done-p))
12753 (org-entry-is-todo-p))
12754 (progn (setq org-block-entry-blocking (org-get-heading))
12755 (throw 'dont-block nil)))
12756 (outline-next-heading)
12757 (setq child-level (funcall outline-level))))))
12758 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12759 ;; any previous siblings are undone, it's blocked
12760 (save-excursion
12761 (org-back-to-heading t)
12762 (let* ((pos (point))
12763 (parent-pos (and (org-up-heading-safe) (point))))
12764 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12765 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12766 (forward-line 1)
12767 (re-search-forward org-not-done-heading-regexp pos t))
12768 (setq org-block-entry-blocking (match-string 0))
12769 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12770 ;; Search further up the hierarchy, to see if an ancestor is blocked
12771 (while t
12772 (goto-char parent-pos)
12773 (if (not (looking-at org-not-done-heading-regexp))
12774 (throw 'dont-block t)) ; do not block, parent is not a TODO
12775 (setq pos (point))
12776 (setq parent-pos (and (org-up-heading-safe) (point)))
12777 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12778 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12779 (forward-line 1)
12780 (re-search-forward org-not-done-heading-regexp pos t)
12781 (setq org-block-entry-blocking (org-get-heading)))
12782 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12784 (defcustom org-track-ordered-property-with-tag nil
12785 "Should the ORDERED property also be shown as a tag?
12786 The ORDERED property decides if an entry should require subtasks to be
12787 completed in sequence. Since a property is not very visible, setting
12788 this option means that toggling the ORDERED property with the command
12789 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12790 not relevant for the behavior, but it makes things more visible.
12792 Note that toggling the tag with tags commands will not change the property
12793 and therefore not influence behavior!
12795 This can be t, meaning the tag ORDERED should be used, It can also be a
12796 string to select a different tag for this task."
12797 :group 'org-todo
12798 :type '(choice
12799 (const :tag "No tracking" nil)
12800 (const :tag "Track with ORDERED tag" t)
12801 (string :tag "Use other tag")))
12803 (defun org-toggle-ordered-property ()
12804 "Toggle the ORDERED property of the current entry.
12805 For better visibility, you can track the value of this property with a tag.
12806 See variable `org-track-ordered-property-with-tag'."
12807 (interactive)
12808 (let* ((t1 org-track-ordered-property-with-tag)
12809 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12810 (save-excursion
12811 (org-back-to-heading)
12812 (if (org-entry-get nil "ORDERED")
12813 (progn
12814 (org-delete-property "ORDERED")
12815 (and tag (org-toggle-tag tag 'off))
12816 (message "Subtasks can be completed in arbitrary order"))
12817 (org-entry-put nil "ORDERED" "t")
12818 (and tag (org-toggle-tag tag 'on))
12819 (message "Subtasks must be completed in sequence")))))
12821 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12822 (defun org-block-todo-from-checkboxes (change-plist)
12823 "Block turning an entry into a TODO, using checkboxes.
12824 This checks whether the current task should be blocked from state
12825 changes because there are unchecked boxes in this entry."
12826 (if (not org-enforce-todo-checkbox-dependencies)
12827 t ; if locally turned off don't block
12828 (catch 'dont-block
12829 ;; If this is not a todo state change, or if this entry is already DONE,
12830 ;; do not block
12831 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12832 (member (plist-get change-plist :from)
12833 (cons 'done org-done-keywords))
12834 (member (plist-get change-plist :to)
12835 (cons 'todo org-not-done-keywords))
12836 (not (plist-get change-plist :to)))
12837 (throw 'dont-block t))
12838 ;; If this task has checkboxes that are not checked, it's blocked
12839 (save-excursion
12840 (org-back-to-heading t)
12841 (let ((beg (point)) end)
12842 (outline-next-heading)
12843 (setq end (point))
12844 (goto-char beg)
12845 (if (org-list-search-forward
12846 (concat (org-item-beginning-re)
12847 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12848 "\\[[- ]\\]")
12849 end t)
12850 (progn
12851 (if (boundp 'org-blocked-by-checkboxes)
12852 (setq org-blocked-by-checkboxes t))
12853 (throw 'dont-block nil)))))
12854 t))) ; do not block
12856 (defun org-entry-blocked-p ()
12857 "Non-nil if entry at point is blocked."
12858 (and (not (org-entry-get nil "NOBLOCKING"))
12859 (member (org-entry-get nil "TODO") org-not-done-keywords)
12860 (not (run-hook-with-args-until-failure
12861 'org-blocker-hook
12862 (list :type 'todo-state-change
12863 :position (point)
12864 :from 'todo
12865 :to 'done)))))
12867 (defun org-update-statistics-cookies (all)
12868 "Update the statistics cookie, either from TODO or from checkboxes.
12869 This should be called with the cursor in a line with a statistics cookie."
12870 (interactive "P")
12871 (if all
12872 (progn
12873 (org-update-checkbox-count 'all)
12874 (org-map-entries 'org-update-parent-todo-statistics))
12875 (if (not (org-at-heading-p))
12876 (org-update-checkbox-count)
12877 (let ((pos (point-marker))
12878 end l1 l2)
12879 (ignore-errors (org-back-to-heading t))
12880 (if (not (org-at-heading-p))
12881 (org-update-checkbox-count)
12882 (setq l1 (org-outline-level))
12883 (setq end (save-excursion
12884 (outline-next-heading)
12885 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12886 (point)))
12887 (if (and (save-excursion
12888 (re-search-forward
12889 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12890 (not (save-excursion (re-search-forward
12891 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12892 (org-update-checkbox-count)
12893 (if (and l2 (> l2 l1))
12894 (progn
12895 (goto-char end)
12896 (org-update-parent-todo-statistics))
12897 (goto-char pos)
12898 (beginning-of-line 1)
12899 (while (re-search-forward
12900 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12901 (point-at-eol) t)
12902 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12903 (goto-char pos)
12904 (move-marker pos nil)))))
12906 (defvar org-entry-property-inherited-from) ;; defined below
12907 (defun org-update-parent-todo-statistics ()
12908 "Update any statistics cookie in the parent of the current headline.
12909 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12910 the entire subtree and this will travel up the hierarchy and update
12911 statistics everywhere."
12912 (let* ((prop (save-excursion (org-up-heading-safe)
12913 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12914 (recursive (or (not org-hierarchical-todo-statistics)
12915 (and prop (string-match "\\<recursive\\>" prop))))
12916 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12918 (first t)
12919 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12920 level ltoggle l1 new ndel
12921 (cnt-all 0) (cnt-done 0) is-percent kwd
12922 checkbox-beg ov ovs ove cookie-present)
12923 (catch 'exit
12924 (save-excursion
12925 (beginning-of-line 1)
12926 (setq ltoggle (funcall outline-level))
12927 ;; Three situations are to consider:
12929 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12930 ;; to the top-level ancestor on the headline;
12932 ;; 2. If parent has "recursive" property, repeat up to the
12933 ;; headline setting that property, taking inheritance into
12934 ;; account;
12936 ;; 3. Else, move up to direct parent and proceed only once.
12937 (while (and (setq level (org-up-heading-safe))
12938 (or recursive first)
12939 (>= (point) lim))
12940 (setq first nil cookie-present nil)
12941 (unless (and level
12942 (not (string-match
12943 "\\<checkbox\\>"
12944 (downcase (or (org-entry-get nil "COOKIE_DATA")
12945 "")))))
12946 (throw 'exit nil))
12947 (while (re-search-forward box-re (point-at-eol) t)
12948 (setq cnt-all 0 cnt-done 0 cookie-present t)
12949 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12950 (save-match-data
12951 (unless (outline-next-heading) (throw 'exit nil))
12952 (while (and (looking-at org-complex-heading-regexp)
12953 (> (setq l1 (length (match-string 1))) level))
12954 (setq kwd (and (or recursive (= l1 ltoggle))
12955 (match-string 2)))
12956 (if (or (eq org-provide-todo-statistics 'all-headlines)
12957 (and (eq org-provide-todo-statistics t)
12958 (or (member kwd org-done-keywords)))
12959 (and (listp org-provide-todo-statistics)
12960 (stringp (car org-provide-todo-statistics))
12961 (or (member kwd org-provide-todo-statistics)
12962 (member kwd org-done-keywords)))
12963 (and (listp org-provide-todo-statistics)
12964 (listp (car org-provide-todo-statistics))
12965 (or (member kwd (car org-provide-todo-statistics))
12966 (and (member kwd org-done-keywords)
12967 (member kwd (cadr org-provide-todo-statistics))))))
12968 (setq cnt-all (1+ cnt-all))
12969 (if (eq org-provide-todo-statistics t)
12970 (and kwd (setq cnt-all (1+ cnt-all)))))
12971 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12972 (member kwd org-done-keywords))
12973 (and (listp org-provide-todo-statistics)
12974 (listp (car org-provide-todo-statistics))
12975 (member kwd org-done-keywords)
12976 (member kwd (cadr org-provide-todo-statistics)))
12977 (and (listp org-provide-todo-statistics)
12978 (stringp (car org-provide-todo-statistics))
12979 (member kwd org-done-keywords)))
12980 (setq cnt-done (1+ cnt-done)))
12981 (outline-next-heading)))
12982 (setq new
12983 (if is-percent
12984 (format "[%d%%]" (floor (* 100.0 cnt-done)
12985 (max 1 cnt-all)))
12986 (format "[%d/%d]" cnt-done cnt-all))
12987 ndel (- (match-end 0) checkbox-beg))
12988 ;; handle overlays when updating cookie from column view
12989 (when (setq ov (car (overlays-at checkbox-beg)))
12990 (setq ovs (overlay-start ov) ove (overlay-end ov))
12991 (delete-overlay ov))
12992 (goto-char checkbox-beg)
12993 (insert new)
12994 (delete-region (point) (+ (point) ndel))
12995 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12996 (when ov (move-overlay ov ovs ove)))
12997 (when cookie-present
12998 (run-hook-with-args 'org-after-todo-statistics-hook
12999 cnt-done (- cnt-all cnt-done))))))
13000 (run-hooks 'org-todo-statistics-hook)))
13002 (defvar org-after-todo-statistics-hook nil
13003 "Hook that is called after a TODO statistics cookie has been updated.
13004 Each function is called with two arguments: the number of not-done entries
13005 and the number of done entries.
13007 For example, the following function, when added to this hook, will switch
13008 an entry to DONE when all children are done, and back to TODO when new
13009 entries are set to a TODO status. Note that this hook is only called
13010 when there is a statistics cookie in the headline!
13012 (defun org-summary-todo (n-done n-not-done)
13013 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13014 (let (org-log-done org-log-states) ; turn off logging
13015 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13018 (defvar org-todo-statistics-hook nil
13019 "Hook that is run whenever Org thinks TODO statistics should be updated.
13020 This hook runs even if there is no statistics cookie present, in which case
13021 `org-after-todo-statistics-hook' would not run.")
13023 (defun org-todo-trigger-tag-changes (state)
13024 "Apply the changes defined in `org-todo-state-tags-triggers'."
13025 (let ((l org-todo-state-tags-triggers)
13026 changes)
13027 (when (or (not state) (equal state ""))
13028 (setq changes (append changes (cdr (assoc "" l)))))
13029 (when (and (stringp state) (> (length state) 0))
13030 (setq changes (append changes (cdr (assoc state l)))))
13031 (when (member state org-not-done-keywords)
13032 (setq changes (append changes (cdr (assoc 'todo l)))))
13033 (when (member state org-done-keywords)
13034 (setq changes (append changes (cdr (assoc 'done l)))))
13035 (dolist (c changes)
13036 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13038 (defun org-local-logging (value)
13039 "Get logging settings from a property VALUE."
13040 ;; Directly set the variables, they are already local.
13041 (setq org-log-done nil
13042 org-log-repeat nil
13043 org-todo-log-states nil)
13044 (dolist (w (org-split-string value))
13045 (let (a)
13046 (cond
13047 ((setq a (assoc w org-startup-options))
13048 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13049 (set (nth 1 a) (nth 2 a))))
13050 ((setq a (org-extract-log-state-settings w))
13051 (and (member (car a) org-todo-keywords-1)
13052 (push a org-todo-log-states)))))))
13054 (defun org-get-todo-sequence-head (kwd)
13055 "Return the head of the TODO sequence to which KWD belongs.
13056 If KWD is not set, check if there is a text property remembering the
13057 right sequence."
13058 (let (p)
13059 (cond
13060 ((not kwd)
13061 (or (get-text-property (point-at-bol) 'org-todo-head)
13062 (progn
13063 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13064 nil (point-at-eol)))
13065 (get-text-property p 'org-todo-head))))
13066 ((not (member kwd org-todo-keywords-1))
13067 (car org-todo-keywords-1))
13068 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13070 (defun org-fast-todo-selection ()
13071 "Fast TODO keyword selection with single keys.
13072 Returns the new TODO keyword, or nil if no state change should occur."
13073 (let* ((fulltable org-todo-key-alist)
13074 (done-keywords org-done-keywords) ;; needed for the faces.
13075 (maxlen (apply 'max (mapcar
13076 (lambda (x)
13077 (if (stringp (car x)) (string-width (car x)) 0))
13078 fulltable)))
13079 (expert nil)
13080 (fwidth (+ maxlen 3 1 3))
13081 (ncol (/ (- (window-width) 4) fwidth))
13082 tg cnt e c tbl
13083 groups ingroup)
13084 (save-excursion
13085 (save-window-excursion
13086 (if expert
13087 (set-buffer (get-buffer-create " *Org todo*"))
13088 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13089 (erase-buffer)
13090 (org-set-local 'org-done-keywords done-keywords)
13091 (setq tbl fulltable cnt 0)
13092 (while (setq e (pop tbl))
13093 (cond
13094 ((equal e '(:startgroup))
13095 (push '() groups) (setq ingroup t)
13096 (when (not (= cnt 0))
13097 (setq cnt 0)
13098 (insert "\n"))
13099 (insert "{ "))
13100 ((equal e '(:endgroup))
13101 (setq ingroup nil cnt 0)
13102 (insert "}\n"))
13103 ((equal e '(:newline))
13104 (when (not (= cnt 0))
13105 (setq cnt 0)
13106 (insert "\n")
13107 (setq e (car tbl))
13108 (while (equal (car tbl) '(:newline))
13109 (insert "\n")
13110 (setq tbl (cdr tbl)))))
13112 (setq tg (car e) c (cdr e))
13113 (if ingroup (push tg (car groups)))
13114 (setq tg (org-add-props tg nil 'face
13115 (org-get-todo-face tg)))
13116 (if (and (= cnt 0) (not ingroup)) (insert " "))
13117 (insert "[" c "] " tg (make-string
13118 (- fwidth 4 (length tg)) ?\ ))
13119 (when (= (setq cnt (1+ cnt)) ncol)
13120 (insert "\n")
13121 (if ingroup (insert " "))
13122 (setq cnt 0)))))
13123 (insert "\n")
13124 (goto-char (point-min))
13125 (if (not expert) (org-fit-window-to-buffer))
13126 (message "[a-z..]:Set [SPC]:clear")
13127 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13128 (cond
13129 ((or (= c ?\C-g)
13130 (and (= c ?q) (not (rassoc c fulltable))))
13131 (setq quit-flag t))
13132 ((= c ?\ ) nil)
13133 ((setq e (rassoc c fulltable) tg (car e))
13135 (t (setq quit-flag t)))))))
13137 (defun org-entry-is-todo-p ()
13138 (member (org-get-todo-state) org-not-done-keywords))
13140 (defun org-entry-is-done-p ()
13141 (member (org-get-todo-state) org-done-keywords))
13143 (defun org-get-todo-state ()
13144 "Return the TODO keyword of the current subtree."
13145 (save-excursion
13146 (org-back-to-heading t)
13147 (and (looking-at org-todo-line-regexp)
13148 (match-end 2)
13149 (match-string 2))))
13151 (defun org-at-date-range-p (&optional inactive-ok)
13152 "Non-nil if point is inside a date range.
13154 When optional argument INACTIVE-OK is non-nil, also consider
13155 inactive time ranges.
13157 When this function returns a non-nil value, match data is set
13158 according to `org-tr-regexp-both' or `org-tr-regexp', depending
13159 on INACTIVE-OK."
13160 (interactive)
13161 (save-excursion
13162 (catch 'exit
13163 (let ((pos (point)))
13164 (skip-chars-backward "^[<\r\n")
13165 (skip-chars-backward "<[")
13166 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13167 (>= (match-end 0) pos)
13168 (throw 'exit t))
13169 (skip-chars-backward "^<[\r\n")
13170 (skip-chars-backward "<[")
13171 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13172 (>= (match-end 0) pos)
13173 (throw 'exit t)))
13174 nil)))
13176 (defun org-get-repeat (&optional tagline)
13177 "Check if there is a deadline/schedule with repeater in this entry."
13178 (save-match-data
13179 (save-excursion
13180 (org-back-to-heading t)
13181 (and (re-search-forward (if tagline
13182 (concat tagline "\\s-*" org-repeat-re)
13183 org-repeat-re)
13184 (org-entry-end-position) t)
13185 (match-string-no-properties 1)))))
13187 (defvar org-last-changed-timestamp)
13188 (defvar org-last-inserted-timestamp)
13189 (defvar org-log-post-message)
13190 (defvar org-log-note-purpose)
13191 (defvar org-log-note-how nil)
13192 (defvar org-log-note-extra)
13193 (defun org-auto-repeat-maybe (done-word)
13194 "Check if the current headline contains a repeated deadline/schedule.
13195 If yes, set TODO state back to what it was and change the base date
13196 of repeating deadline/scheduled time stamps to new date.
13197 This function is run automatically after each state change to a DONE state."
13198 ;; last-state is dynamically scoped into this function
13199 (let* ((repeat (org-get-repeat))
13200 (aa (assoc org-last-state org-todo-kwd-alist))
13201 (interpret (nth 1 aa))
13202 (head (nth 2 aa))
13203 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13204 (msg "Entry repeats: ")
13205 (org-log-done nil)
13206 (org-todo-log-states nil)
13207 re type n what ts time to-state)
13208 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13209 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13210 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13211 org-todo-repeat-to-state))
13212 (unless (and to-state (member to-state org-todo-keywords-1))
13213 (setq to-state (if (eq interpret 'type) org-last-state head)))
13214 (org-todo to-state)
13215 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13216 (org-entry-put nil "LAST_REPEAT" (format-time-string
13217 (org-time-stamp-format t t))))
13218 (when org-log-repeat
13219 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13220 (memq 'org-add-log-note post-command-hook))
13221 ;; OK, we are already setup for some record
13222 (if (eq org-log-repeat 'note)
13223 ;; make sure we take a note, not only a time stamp
13224 (setq org-log-note-how 'note))
13225 ;; Set up for taking a record
13226 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13227 org-last-state
13228 'findpos org-log-repeat)))
13229 (org-back-to-heading t)
13230 (org-add-planning-info nil nil 'closed)
13231 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13232 org-deadline-time-regexp "\\)\\|\\("
13233 org-ts-regexp "\\)"))
13234 (while (re-search-forward
13235 re (save-excursion (outline-next-heading) (point)) t)
13236 (setq type (if (match-end 1) org-scheduled-string
13237 (if (match-end 3) org-deadline-string "Plain:"))
13238 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13239 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13240 (setq n (string-to-number (match-string 2 ts))
13241 what (match-string 3 ts))
13242 (if (equal what "w") (setq n (* n 7) what "d"))
13243 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13244 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13245 ;; Preparation, see if we need to modify the start date for the change
13246 (when (match-end 1)
13247 (setq time (save-match-data (org-time-string-to-time ts)))
13248 (cond
13249 ((equal (match-string 1 ts) ".")
13250 ;; Shift starting date to today
13251 (org-timestamp-change
13252 (- (org-today) (time-to-days time))
13253 'day))
13254 ((equal (match-string 1 ts) "+")
13255 (let ((nshiftmax 10) (nshift 0))
13256 (while (or (= nshift 0)
13257 (<= (time-to-days time)
13258 (time-to-days (current-time))))
13259 (when (= (incf nshift) nshiftmax)
13260 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13261 (user-error "Abort")))
13262 (org-timestamp-change n (cdr (assoc what whata)))
13263 (org-at-timestamp-p t)
13264 (setq ts (match-string 1))
13265 (setq time (save-match-data (org-time-string-to-time ts)))))
13266 (org-timestamp-change (- n) (cdr (assoc what whata)))
13267 ;; rematch, so that we have everything in place for the real shift
13268 (org-at-timestamp-p t)
13269 (setq ts (match-string 1))
13270 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13271 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13272 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13273 (setq org-log-post-message msg)
13274 (message "%s" msg))))
13276 (defun org-show-todo-tree (arg)
13277 "Make a compact tree which shows all headlines marked with TODO.
13278 The tree will show the lines where the regexp matches, and all higher
13279 headlines above the match.
13280 With a \\[universal-argument] prefix, prompt for a regexp to match.
13281 With a numeric prefix N, construct a sparse tree for the Nth element
13282 of `org-todo-keywords-1'."
13283 (interactive "P")
13284 (let ((case-fold-search nil)
13285 (kwd-re
13286 (cond ((null arg) org-not-done-regexp)
13287 ((equal arg '(4))
13288 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13289 (mapcar 'list org-todo-keywords-1))))
13290 (concat "\\("
13291 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13292 "\\)\\>")))
13293 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13294 (regexp-quote (nth (1- (prefix-numeric-value arg))
13295 org-todo-keywords-1)))
13296 (t (user-error "Invalid prefix argument: %s" arg)))))
13297 (message "%d TODO entries found"
13298 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13300 (defun org-deadline (arg &optional time)
13301 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13302 With one universal prefix argument, remove any deadline from the item.
13303 With two universal prefix arguments, prompt for a warning delay.
13304 With argument TIME, set the deadline at the corresponding date. TIME
13305 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13306 (interactive "P")
13307 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13308 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13309 'region-start-level 'region))
13310 org-loop-over-headlines-in-active-region)
13311 (org-map-entries
13312 `(org-deadline ',arg ,time)
13313 org-loop-over-headlines-in-active-region
13314 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13315 (let* ((old-date (org-entry-get nil "DEADLINE"))
13316 (old-date-time (if old-date (org-time-string-to-time old-date)))
13317 (repeater (and old-date
13318 (string-match
13319 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13320 old-date)
13321 (match-string 1 old-date))))
13322 (cond
13323 ((equal arg '(4))
13324 (when (and old-date org-log-redeadline)
13325 (org-add-log-setup 'deldeadline nil old-date 'findpos
13326 org-log-redeadline))
13327 (org-remove-timestamp-with-keyword org-deadline-string)
13328 (message "Item no longer has a deadline."))
13329 ((equal arg '(16))
13330 (save-excursion
13331 (org-back-to-heading t)
13332 (if (re-search-forward
13333 org-deadline-time-regexp
13334 (save-excursion (outline-next-heading) (point)) t)
13335 (let* ((rpl0 (match-string 1))
13336 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13337 (replace-match
13338 (concat org-deadline-string
13339 " <" rpl
13340 (format " -%dd"
13341 (abs
13342 (- (time-to-days
13343 (save-match-data
13344 (org-read-date nil t nil "Warn starting from" old-date-time)))
13345 (time-to-days old-date-time))))
13346 ">") t t))
13347 (user-error "No deadline information to update"))))
13349 (org-add-planning-info 'deadline time 'closed)
13350 (when (and old-date org-log-redeadline
13351 (not (equal old-date
13352 (substring org-last-inserted-timestamp 1 -1))))
13353 (org-add-log-setup 'redeadline nil old-date 'findpos
13354 org-log-redeadline))
13355 (when repeater
13356 (save-excursion
13357 (org-back-to-heading t)
13358 (when (re-search-forward (concat org-deadline-string " "
13359 org-last-inserted-timestamp)
13360 (save-excursion
13361 (outline-next-heading) (point)) t)
13362 (goto-char (1- (match-end 0)))
13363 (insert " " repeater)
13364 (setq org-last-inserted-timestamp
13365 (concat (substring org-last-inserted-timestamp 0 -1)
13366 " " repeater
13367 (substring org-last-inserted-timestamp -1))))))
13368 (message "Deadline on %s" org-last-inserted-timestamp))))))
13370 (defun org-schedule (arg &optional time)
13371 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13372 With one universal prefix argument, remove any scheduling date from the item.
13373 With two universal prefix arguments, prompt for a delay cookie.
13374 With argument TIME, scheduled at the corresponding date. TIME can
13375 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13376 (interactive "P")
13377 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13378 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13379 'region-start-level 'region))
13380 org-loop-over-headlines-in-active-region)
13381 (org-map-entries
13382 `(org-schedule ',arg ,time)
13383 org-loop-over-headlines-in-active-region
13384 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13385 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13386 (old-date-time (if old-date (org-time-string-to-time old-date)))
13387 (repeater (and old-date
13388 (string-match
13389 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13390 old-date)
13391 (match-string 1 old-date))))
13392 (cond
13393 ((equal arg '(4))
13394 (progn
13395 (when (and old-date org-log-reschedule)
13396 (org-add-log-setup 'delschedule nil old-date 'findpos
13397 org-log-reschedule))
13398 (org-remove-timestamp-with-keyword org-scheduled-string)
13399 (message "Item is no longer scheduled.")))
13400 ((equal arg '(16))
13401 (save-excursion
13402 (org-back-to-heading t)
13403 (if (re-search-forward
13404 org-scheduled-time-regexp
13405 (save-excursion (outline-next-heading) (point)) t)
13406 (let* ((rpl0 (match-string 1))
13407 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13408 (replace-match
13409 (concat org-scheduled-string
13410 " <" rpl
13411 (format " -%dd"
13412 (abs
13413 (- (time-to-days
13414 (save-match-data
13415 (org-read-date nil t nil "Delay until" old-date-time)))
13416 (time-to-days old-date-time))))
13417 ">") t t))
13418 (user-error "No scheduled information to update"))))
13420 (org-add-planning-info 'scheduled time 'closed)
13421 (when (and old-date org-log-reschedule
13422 (not (equal old-date
13423 (substring org-last-inserted-timestamp 1 -1))))
13424 (org-add-log-setup 'reschedule nil old-date 'findpos
13425 org-log-reschedule))
13426 (when repeater
13427 (save-excursion
13428 (org-back-to-heading t)
13429 (when (re-search-forward (concat org-scheduled-string " "
13430 org-last-inserted-timestamp)
13431 (save-excursion
13432 (outline-next-heading) (point)) t)
13433 (goto-char (1- (match-end 0)))
13434 (insert " " repeater)
13435 (setq org-last-inserted-timestamp
13436 (concat (substring org-last-inserted-timestamp 0 -1)
13437 " " repeater
13438 (substring org-last-inserted-timestamp -1))))))
13439 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13441 (defun org-get-scheduled-time (pom &optional inherit)
13442 "Get the scheduled time as a time tuple, of a format suitable
13443 for calling org-schedule with, or if there is no scheduling,
13444 returns nil."
13445 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13446 (when time
13447 (apply 'encode-time (org-parse-time-string time)))))
13449 (defun org-get-deadline-time (pom &optional inherit)
13450 "Get the deadline as a time tuple, of a format suitable for
13451 calling org-deadline with, or if there is no scheduling, returns
13452 nil."
13453 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13454 (when time
13455 (apply 'encode-time (org-parse-time-string time)))))
13457 (defun org-remove-timestamp-with-keyword (keyword)
13458 "Remove all time stamps with KEYWORD in the current entry."
13459 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13460 beg)
13461 (save-excursion
13462 (org-back-to-heading t)
13463 (setq beg (point))
13464 (outline-next-heading)
13465 (while (re-search-backward re beg t)
13466 (replace-match "")
13467 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13468 (equal (char-before) ?\ ))
13469 (backward-delete-char 1)
13470 (if (string-match "^[ \t]*$" (buffer-substring
13471 (point-at-bol) (point-at-eol)))
13472 (delete-region (point-at-bol)
13473 (min (point-max) (1+ (point-at-eol))))))))))
13475 (defvar org-time-was-given) ; dynamically scoped parameter
13476 (defvar org-end-time-was-given) ; dynamically scoped parameter
13478 (defun org-at-planning-p ()
13479 "Non-nil when point is on a planning info line."
13480 ;; This is as accurate and faster than `org-element-at-point' since
13481 ;; planning info location is fixed in the section.
13482 (org-with-wide-buffer
13483 (beginning-of-line)
13484 (and (org-looking-at-p org-planning-line-re)
13485 (eq (point)
13486 (ignore-errors
13487 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13488 (org-back-to-heading t)
13489 (org-with-limited-levels (org-back-to-heading t)))
13490 (line-beginning-position 2))))))
13492 (defun org-add-planning-info (what &optional time &rest remove)
13493 "Insert new timestamp with keyword in the planning line.
13494 WHAT indicates what kind of time stamp to add. It is a symbol
13495 among `closed', `deadline', `scheduled' and nil. TIME indicates
13496 the time to use. If none is given, the user is prompted for
13497 a date. REMOVE indicates what kind of entries to remove. An old
13498 WHAT entry will also be removed."
13499 (let (org-time-was-given org-end-time-was-given default-time default-input)
13500 (catch 'exit
13501 (when (and (memq what '(scheduled deadline))
13502 (or (not time)
13503 (and (stringp time)
13504 (string-match "^[-+]+[0-9]" time))))
13505 ;; Try to get a default date/time from existing timestamp
13506 (save-excursion
13507 (org-back-to-heading t)
13508 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13509 (when (re-search-forward (if (eq what 'scheduled)
13510 org-scheduled-time-regexp
13511 org-deadline-time-regexp)
13512 end t)
13513 (setq ts (match-string 1)
13514 default-time (apply 'encode-time (org-parse-time-string ts))
13515 default-input (and ts (org-get-compact-tod ts)))))))
13516 (when what
13517 (setq time
13518 (if (stringp time)
13519 ;; This is a string (relative or absolute), set
13520 ;; proper date.
13521 (apply #'encode-time
13522 (org-read-date-analyze
13523 time default-time (decode-time default-time)))
13524 ;; If necessary, get the time from the user
13525 (or time (org-read-date nil 'to-time nil nil
13526 default-time default-input)))))
13528 (org-with-wide-buffer
13529 (org-back-to-heading t)
13530 (forward-line)
13531 (unless (bolp) (insert "\n"))
13532 (cond ((org-looking-at-p org-planning-line-re)
13533 ;; Move to current indentation.
13534 (skip-chars-forward " \t")
13535 ;; Check if we have to remove something.
13536 (dolist (type (if what (cons what remove) remove))
13537 (save-excursion
13538 (when (re-search-forward
13539 (concat
13540 " *"
13541 (case type
13542 (closed org-closed-time-regexp)
13543 (deadline org-deadline-time-regexp)
13544 (scheduled org-scheduled-time-regexp)
13545 (otherwise
13546 (error "Invalid planning type: %s" type))))
13547 (line-end-position) t)
13548 (replace-match "")
13549 (when (looking-at "--+<[^>]+>") (replace-match ""))
13550 (when (and (not what) (eq type 'closed))
13551 (save-excursion
13552 (beginning-of-line)
13553 (when (looking-at "[ \t]*$")
13554 (delete-region (point)
13555 (line-beginning-position 2)))))))
13556 ;; Remove leading white spaces.
13557 (when (looking-at "[ \t]+") (replace-match ""))))
13558 ((not what) (throw 'exit nil)) ; Nothing to do.
13559 (t (insert-before-markers "\n")
13560 (backward-char 1)
13561 (when org-adapt-indentation
13562 (org-indent-to-column (1+ (org-outline-level))))))
13563 (when what
13564 ;; Insert planning keyword.
13565 (insert (case what
13566 (closed org-closed-string)
13567 (deadline org-deadline-string)
13568 (scheduled org-scheduled-string)
13569 (otherwise (error "Invalid planning type: %s" what)))
13570 " ")
13571 ;; Insert associated timestamp.
13572 (let ((ts (org-insert-time-stamp
13573 time
13574 (or org-time-was-given
13575 (and (eq what 'closed) org-log-done-with-time))
13576 (eq what 'closed)
13577 nil nil (list org-end-time-was-given))))
13578 (unless (eolp) (insert " "))
13579 ts))))))
13581 (defvar org-log-note-marker (make-marker))
13582 (defvar org-log-note-purpose nil)
13583 (defvar org-log-note-state nil)
13584 (defvar org-log-note-previous-state nil)
13585 (defvar org-log-note-extra nil)
13586 (defvar org-log-note-window-configuration nil)
13587 (defvar org-log-note-return-to (make-marker))
13588 (defvar org-log-note-effective-time nil
13589 "Remembered current time so that dynamically scoped
13590 `org-extend-today-until' affects tha timestamps in state change
13591 log")
13593 (defvar org-log-post-message nil
13594 "Message to be displayed after a log note has been stored.
13595 The auto-repeater uses this.")
13597 (defun org-add-note ()
13598 "Add a note to the current entry.
13599 This is done in the same way as adding a state change note."
13600 (interactive)
13601 (org-add-log-setup 'note nil nil 'findpos nil))
13603 (defun org-log-beginning (&optional create)
13604 "Return expected start of log notes in current entry.
13605 When optional argument CREATE is non-nil, the function creates
13606 a drawer to store notes, if necessary. Returned position ignores
13607 narrowing."
13608 (org-with-wide-buffer
13609 (org-end-of-meta-data)
13610 (let ((end (if (org-at-heading-p) (point)
13611 (save-excursion (outline-next-heading) (point))))
13612 (drawer (org-log-into-drawer)))
13613 (cond
13614 (drawer
13615 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13616 (case-fold-search t))
13617 (catch 'exit
13618 ;; Try to find existing drawer.
13619 (while (re-search-forward regexp end t)
13620 (let ((element (org-element-at-point)))
13621 (when (eq (org-element-type element) 'drawer)
13622 (let ((cend (org-element-property :contents-end element)))
13623 (when (and (not org-log-states-order-reversed) cend)
13624 (goto-char cend)))
13625 (throw 'exit nil))))
13626 ;; No drawer found. Create one, if permitted.
13627 (when create
13628 (unless (bolp) (insert "\n"))
13629 (let ((beg (point)))
13630 (insert ":" drawer ":\n:END:\n")
13631 (org-indent-region beg (point)))
13632 (end-of-line -1)))))
13633 (org-log-state-notes-insert-after-drawers
13634 (while (and (looking-at org-drawer-regexp)
13635 (progn (goto-char (match-end 0))
13636 (re-search-forward org-property-end-re end t)))
13637 (forward-line)))))
13638 (if (bolp) (point) (line-beginning-position 2))))
13640 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13641 "Set up the post command hook to take a note.
13642 If this is about to TODO state change, the new state is expected in STATE.
13643 When FINDPOS is non-nil, find the correct position for the note in
13644 the current entry. If not, assume that it can be inserted at point.
13645 HOW is an indicator what kind of note should be created.
13646 EXTRA is additional text that will be inserted into the notes buffer."
13647 (org-with-wide-buffer
13648 (when findpos
13649 (goto-char (org-log-beginning t))
13650 (unless org-log-states-order-reversed
13651 (org-skip-over-state-notes)
13652 (skip-chars-backward " \t\n\r")
13653 (forward-line)))
13654 (move-marker org-log-note-marker (point))
13655 ;; Preserve position even if a property drawer is inserted in the
13656 ;; process.
13657 (set-marker-insertion-type org-log-note-marker t)
13658 (setq org-log-note-purpose purpose
13659 org-log-note-state state
13660 org-log-note-previous-state prev-state
13661 org-log-note-how how
13662 org-log-note-extra extra
13663 org-log-note-effective-time (org-current-effective-time))
13664 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13666 (defun org-skip-over-state-notes ()
13667 "Skip past the list of State notes in an entry."
13668 (when (ignore-errors (goto-char (org-in-item-p)))
13669 (let* ((struct (org-list-struct))
13670 (prevs (org-list-prevs-alist struct))
13671 (regexp
13672 (concat "[ \t]*- +"
13673 (replace-regexp-in-string
13674 " +" " +"
13675 (org-replace-escapes
13676 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13677 `(("%d" . ,org-ts-regexp-inactive)
13678 ("%D" . ,org-ts-regexp)
13679 ("%s" . "\"\\S-+\"")
13680 ("%S" . "\"\\S-+\"")
13681 ("%t" . ,org-ts-regexp-inactive)
13682 ("%T" . ,org-ts-regexp)
13683 ("%u" . ".*?")
13684 ("%U" . ".*?")))))))
13685 (while (org-looking-at-p regexp)
13686 (goto-char (or (org-list-get-next-item (point) struct prevs)
13687 (org-list-get-item-end (point) struct)))))))
13689 (defun org-add-log-note (&optional purpose)
13690 "Pop up a window for taking a note, and add this note later at point."
13691 (remove-hook 'post-command-hook 'org-add-log-note)
13692 (setq org-log-note-window-configuration (current-window-configuration))
13693 (delete-other-windows)
13694 (move-marker org-log-note-return-to (point))
13695 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13696 (goto-char org-log-note-marker)
13697 (org-switch-to-buffer-other-window "*Org Note*")
13698 (erase-buffer)
13699 (if (memq org-log-note-how '(time state))
13700 (let (current-prefix-arg) (org-store-log-note))
13701 (let ((org-inhibit-startup t)) (org-mode))
13702 (insert (format "# Insert note for %s.
13703 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13704 (cond
13705 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13706 ((eq org-log-note-purpose 'done) "closed todo item")
13707 ((eq org-log-note-purpose 'state)
13708 (format "state change from \"%s\" to \"%s\""
13709 (or org-log-note-previous-state "")
13710 (or org-log-note-state "")))
13711 ((eq org-log-note-purpose 'reschedule)
13712 "rescheduling")
13713 ((eq org-log-note-purpose 'delschedule)
13714 "no longer scheduled")
13715 ((eq org-log-note-purpose 'redeadline)
13716 "changing deadline")
13717 ((eq org-log-note-purpose 'deldeadline)
13718 "removing deadline")
13719 ((eq org-log-note-purpose 'refile)
13720 "refiling")
13721 ((eq org-log-note-purpose 'note)
13722 "this entry")
13723 (t (error "This should not happen")))))
13724 (if org-log-note-extra (insert org-log-note-extra))
13725 (org-set-local 'org-finish-function 'org-store-log-note)
13726 (run-hooks 'org-log-buffer-setup-hook)))
13728 (defvar org-note-abort nil) ; dynamically scoped
13729 (defun org-store-log-note ()
13730 "Finish taking a log note, and insert it to where it belongs."
13731 (let ((txt (buffer-string)))
13732 (kill-buffer (current-buffer))
13733 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13734 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13735 (setq txt (replace-match "" t t txt)))
13736 (if (string-match "\\s-+\\'" txt)
13737 (setq txt (replace-match "" t t txt)))
13738 (setq lines (org-split-string txt "\n"))
13739 (when (and note (string-match "\\S-" note))
13740 (setq note
13741 (org-replace-escapes
13742 note
13743 (list (cons "%u" (user-login-name))
13744 (cons "%U" user-full-name)
13745 (cons "%t" (format-time-string
13746 (org-time-stamp-format 'long 'inactive)
13747 org-log-note-effective-time))
13748 (cons "%T" (format-time-string
13749 (org-time-stamp-format 'long nil)
13750 org-log-note-effective-time))
13751 (cons "%d" (format-time-string
13752 (org-time-stamp-format nil 'inactive)
13753 org-log-note-effective-time))
13754 (cons "%D" (format-time-string
13755 (org-time-stamp-format nil nil)
13756 org-log-note-effective-time))
13757 (cons "%s" (cond
13758 ((not org-log-note-state) "")
13759 ((org-string-match-p org-ts-regexp
13760 org-log-note-state)
13761 (format "\"[%s]\""
13762 (substring org-log-note-state 1 -1)))
13763 (t (format "\"%s\"" org-log-note-state))))
13764 (cons "%S"
13765 (cond
13766 ((not org-log-note-previous-state) "")
13767 ((org-string-match-p org-ts-regexp
13768 org-log-note-previous-state)
13769 (format "\"[%s]\""
13770 (substring
13771 org-log-note-previous-state 1 -1)))
13772 (t (format "\"%s\""
13773 org-log-note-previous-state)))))))
13774 (when lines (setq note (concat note " \\\\")))
13775 (push note lines))
13776 (when (or current-prefix-arg org-note-abort)
13777 (when (org-log-into-drawer)
13778 (org-remove-empty-drawer-at org-log-note-marker))
13779 (setq lines nil))
13780 (when lines
13781 (with-current-buffer (marker-buffer org-log-note-marker)
13782 (org-with-wide-buffer
13783 (goto-char org-log-note-marker)
13784 (move-marker org-log-note-marker nil)
13785 ;; Make sure point is at the beginning of an empty line.
13786 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13787 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13788 ;; In an existing list, add a new item at the top level.
13789 ;; Otherwise, indent line like a regular one.
13790 (let ((itemp (org-in-item-p)))
13791 (if itemp
13792 (org-indent-line-to
13793 (let ((struct (save-excursion
13794 (goto-char itemp) (org-list-struct))))
13795 (org-list-get-ind (org-list-get-top-point struct) struct)))
13796 (org-indent-line)))
13797 (insert (org-list-bullet-string "-") (pop lines))
13798 (let ((ind (org-list-item-body-column (line-beginning-position))))
13799 (dolist (line lines)
13800 (insert "\n")
13801 (org-indent-line-to ind)
13802 (insert line)))
13803 (message "Note stored")
13804 (org-back-to-heading t)
13805 (org-cycle-hide-drawers 'children))
13806 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13807 ;; from within `org-add-log-note' because `buffer-undo-list'
13808 ;; is then modified outside of `org-with-remote-undo'.
13809 (when (eq this-command 'org-agenda-todo)
13810 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13811 ;; Don't add undo information when called from `org-agenda-todo'
13812 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13813 (set-window-configuration org-log-note-window-configuration)
13814 (with-current-buffer (marker-buffer org-log-note-return-to)
13815 (goto-char org-log-note-return-to))
13816 (move-marker org-log-note-return-to nil)
13817 (and org-log-post-message (message "%s" org-log-post-message))))
13819 (defun org-remove-empty-drawer-at (pos)
13820 "Remove an empty drawer at position POS.
13821 POS may also be a marker."
13822 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13823 (org-with-wide-buffer
13824 (goto-char pos)
13825 (let ((drawer (org-element-at-point)))
13826 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13827 (not (org-element-property :contents-begin drawer)))
13828 (delete-region (org-element-property :begin drawer)
13829 (progn (goto-char (org-element-property :end drawer))
13830 (skip-chars-backward " \r\t\n")
13831 (forward-line)
13832 (point))))))))
13834 (defvar org-ts-type nil)
13835 (defun org-sparse-tree (&optional arg type)
13836 "Create a sparse tree, prompt for the details.
13837 This command can create sparse trees. You first need to select the type
13838 of match used to create the tree:
13840 t Show all TODO entries.
13841 T Show entries with a specific TODO keyword.
13842 m Show entries selected by a tags/property match.
13843 p Enter a property name and its value (both with completion on existing
13844 names/values) and show entries with that property.
13845 r Show entries matching a regular expression (`/' can be used as well).
13846 b Show deadlines and scheduled items before a date.
13847 a Show deadlines and scheduled items after a date.
13848 d Show deadlines due within `org-deadline-warning-days'.
13849 D Show deadlines and scheduled items between a date range."
13850 (interactive "P")
13851 (setq type (or type org-sparse-tree-default-date-type))
13852 (setq org-ts-type type)
13853 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13854 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13855 [c]ycle through date types: %s"
13856 (case type
13857 (all "all timestamps")
13858 (scheduled "only scheduled")
13859 (deadline "only deadline")
13860 (active "only active timestamps")
13861 (inactive "only inactive timestamps")
13862 (closed "with a closed time-stamp")
13863 (otherwise "scheduled/deadline")))
13864 (let ((answer (read-char-exclusive)))
13865 (case answer
13867 (org-sparse-tree
13869 (cadr
13870 (memq type '(nil all scheduled deadline active inactive closed)))))
13871 (?d (call-interactively 'org-check-deadlines))
13872 (?b (call-interactively 'org-check-before-date))
13873 (?a (call-interactively 'org-check-after-date))
13874 (?D (call-interactively 'org-check-dates-range))
13875 (?t (call-interactively 'org-show-todo-tree))
13876 (?T (org-show-todo-tree '(4)))
13877 (?m (call-interactively 'org-match-sparse-tree))
13878 ((?p ?P)
13879 (let* ((kwd (org-icompleting-read
13880 "Property: " (mapcar 'list (org-buffer-property-keys))))
13881 (value (org-icompleting-read
13882 "Value: " (mapcar 'list (org-property-values kwd)))))
13883 (unless (string-match "\\`{.*}\\'" value)
13884 (setq value (concat "\"" value "\"")))
13885 (org-match-sparse-tree arg (concat kwd "=" value))))
13886 ((?r ?R ?/) (call-interactively 'org-occur))
13887 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13889 (defvar org-occur-highlights nil
13890 "List of overlays used for occur matches.")
13891 (make-variable-buffer-local 'org-occur-highlights)
13892 (defvar org-occur-parameters nil
13893 "Parameters of the active org-occur calls.
13894 This is a list, each call to org-occur pushes as cons cell,
13895 containing the regular expression and the callback, onto the list.
13896 The list can contain several entries if `org-occur' has been called
13897 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13898 will only contain one set of parameters. When the highlights are
13899 removed (for example with `C-c C-c', or with the next edit (depending
13900 on `org-remove-highlights-with-change'), this variable is emptied
13901 as well.")
13902 (make-variable-buffer-local 'org-occur-parameters)
13904 (defun org-occur (regexp &optional keep-previous callback)
13905 "Make a compact tree which shows all matches of REGEXP.
13906 The tree will show the lines where the regexp matches, and all higher
13907 headlines above the match. It will also show the heading after the match,
13908 to make sure editing the matching entry is easy.
13909 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13910 call to `org-occur' will be kept, to allow stacking of calls to this
13911 command.
13912 If CALLBACK is non-nil, it is a function which is called to confirm
13913 that the match should indeed be shown."
13914 (interactive "sRegexp: \nP")
13915 (when (equal regexp "")
13916 (user-error "Regexp cannot be empty"))
13917 (unless keep-previous
13918 (org-remove-occur-highlights nil nil t))
13919 (push (cons regexp callback) org-occur-parameters)
13920 (let ((cnt 0))
13921 (save-excursion
13922 (goto-char (point-min))
13923 (if (or (not keep-previous) ; do not want to keep
13924 (not org-occur-highlights)) ; no previous matches
13925 ;; hide everything
13926 (org-overview))
13927 (while (re-search-forward regexp nil t)
13928 (when (or (not callback)
13929 (save-match-data (funcall callback)))
13930 (setq cnt (1+ cnt))
13931 (when org-highlight-sparse-tree-matches
13932 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13933 (org-show-context 'occur-tree))))
13934 (when org-remove-highlights-with-change
13935 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13936 nil 'local))
13937 (unless org-sparse-tree-open-archived-trees
13938 (org-hide-archived-subtrees (point-min) (point-max)))
13939 (run-hooks 'org-occur-hook)
13940 (if (org-called-interactively-p 'interactive)
13941 (message "%d match(es) for regexp %s" cnt regexp))
13942 cnt))
13944 (defun org-occur-next-match (&optional n reset)
13945 "Function for `next-error-function' to find sparse tree matches.
13946 N is the number of matches to move, when negative move backwards.
13947 RESET is entirely ignored - this function always goes back to the
13948 starting point when no match is found."
13949 (let* ((limit (if (< n 0) (point-min) (point-max)))
13950 (search-func (if (< n 0)
13951 'previous-single-char-property-change
13952 'next-single-char-property-change))
13953 (n (abs n))
13954 (pos (point))
13956 (catch 'exit
13957 (while (setq p1 (funcall search-func (point) 'org-type))
13958 (when (equal p1 limit)
13959 (goto-char pos)
13960 (user-error "No more matches"))
13961 (when (equal (get-char-property p1 'org-type) 'org-occur)
13962 (setq n (1- n))
13963 (when (= n 0)
13964 (goto-char p1)
13965 (throw 'exit (point))))
13966 (goto-char p1))
13967 (goto-char p1)
13968 (user-error "No more matches"))))
13970 (defun org-show-context (&optional key)
13971 "Make sure point and context are visible.
13972 Optional argument KEY, when non-nil, is a symbol. See
13973 `org-show-context-detail' for allowed values and how much is to
13974 be shown."
13975 (org-show-set-visibility
13976 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13977 ((cdr (assq key org-show-context-detail)))
13978 (t (cdr (assq 'default org-show-context-detail))))))
13980 (defun org-show-set-visibility (detail)
13981 "Set visibility around point according to DETAIL.
13982 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13983 `tree', `canonical' or t. See `org-show-context-detail' for more
13984 information."
13985 (unless (org-before-first-heading-p)
13986 ;; Show current heading and possibly its entry, following headline
13987 ;; or all children.
13988 (if (and (org-at-heading-p) (not (eq detail 'local)))
13989 (org-flag-heading nil)
13990 (org-show-entry)
13991 (org-with-limited-levels
13992 (case detail
13993 ((tree canonical t) (show-children))
13994 ((nil minimal ancestors))
13995 (t (save-excursion
13996 (outline-next-heading)
13997 (org-flag-heading nil))))))
13998 ;; Show all siblings.
13999 (when (eq detail 'lineage) (org-show-siblings))
14000 ;; Show ancestors, possibly with their children.
14001 (when (memq detail '(ancestors lineage tree canonical t))
14002 (save-excursion
14003 (while (org-up-heading-safe)
14004 (org-flag-heading nil)
14005 (when (memq detail '(canonical t)) (org-show-entry))
14006 (when (memq detail '(tree canonical t)) (show-children)))))))
14008 (defvar org-reveal-start-hook nil
14009 "Hook run before revealing a location.")
14011 (defun org-reveal (&optional siblings)
14012 "Show current entry, hierarchy above it, and the following headline.
14014 This can be used to show a consistent set of context around
14015 locations exposed with `org-show-context'.
14017 With optional argument SIBLINGS, on each level of the hierarchy all
14018 siblings are shown. This repairs the tree structure to what it would
14019 look like when opened with hierarchical calls to `org-cycle'.
14021 With double optional argument \\[universal-argument] \\[universal-argument], \
14022 go to the parent and show the
14023 entire tree."
14024 (interactive "P")
14025 (run-hooks 'org-reveal-start-hook)
14026 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
14027 ((equal siblings '(16))
14028 (save-excursion
14029 (when (org-up-heading-safe)
14030 (org-show-subtree)
14031 (run-hook-with-args 'org-cycle-hook 'subtree))))
14032 (t (org-show-set-visibility 'lineage))))
14034 (defun org-highlight-new-match (beg end)
14035 "Highlight from BEG to END and mark the highlight is an occur headline."
14036 (let ((ov (make-overlay beg end)))
14037 (overlay-put ov 'face 'secondary-selection)
14038 (overlay-put ov 'org-type 'org-occur)
14039 (push ov org-occur-highlights)))
14041 (defun org-remove-occur-highlights (&optional beg end noremove)
14042 "Remove the occur highlights from the buffer.
14043 BEG and END are ignored. If NOREMOVE is nil, remove this function
14044 from the `before-change-functions' in the current buffer."
14045 (interactive)
14046 (unless org-inhibit-highlight-removal
14047 (mapc 'delete-overlay org-occur-highlights)
14048 (setq org-occur-highlights nil)
14049 (setq org-occur-parameters nil)
14050 (unless noremove
14051 (remove-hook 'before-change-functions
14052 'org-remove-occur-highlights 'local))))
14054 ;;;; Priorities
14056 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14057 "Regular expression matching the priority indicator.")
14059 (defvar org-remove-priority-next-time nil)
14061 (defun org-priority-up ()
14062 "Increase the priority of the current item."
14063 (interactive)
14064 (org-priority 'up))
14066 (defun org-priority-down ()
14067 "Decrease the priority of the current item."
14068 (interactive)
14069 (org-priority 'down))
14071 (defun org-priority (&optional action show)
14072 "Change the priority of an item.
14073 ACTION can be `set', `up', `down', or a character."
14074 (interactive "P")
14075 (if (equal action '(4))
14076 (org-show-priority)
14077 (unless org-enable-priority-commands
14078 (user-error "Priority commands are disabled"))
14079 (setq action (or action 'set))
14080 (let (current new news have remove)
14081 (save-excursion
14082 (org-back-to-heading t)
14083 (if (looking-at org-priority-regexp)
14084 (setq current (string-to-char (match-string 2))
14085 have t))
14086 (cond
14087 ((eq action 'remove)
14088 (setq remove t new ?\ ))
14089 ((or (eq action 'set)
14090 (if (featurep 'xemacs) (characterp action) (integerp action)))
14091 (if (not (eq action 'set))
14092 (setq new action)
14093 (message "Priority %c-%c, SPC to remove: "
14094 org-highest-priority org-lowest-priority)
14095 (save-match-data
14096 (setq new (read-char-exclusive))))
14097 (if (and (= (upcase org-highest-priority) org-highest-priority)
14098 (= (upcase org-lowest-priority) org-lowest-priority))
14099 (setq new (upcase new)))
14100 (cond ((equal new ?\ ) (setq remove t))
14101 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14102 (user-error "Priority must be between `%c' and `%c'"
14103 org-highest-priority org-lowest-priority))))
14104 ((eq action 'up)
14105 (setq new (if have
14106 (1- current) ; normal cycling
14107 ;; last priority was empty
14108 (if (eq last-command this-command)
14109 org-lowest-priority ; wrap around empty to lowest
14110 ;; default
14111 (if org-priority-start-cycle-with-default
14112 org-default-priority
14113 (1- org-default-priority))))))
14114 ((eq action 'down)
14115 (setq new (if have
14116 (1+ current) ; normal cycling
14117 ;; last priority was empty
14118 (if (eq last-command this-command)
14119 org-highest-priority ; wrap around empty to highest
14120 ;; default
14121 (if org-priority-start-cycle-with-default
14122 org-default-priority
14123 (1+ org-default-priority))))))
14124 (t (user-error "Invalid action")))
14125 (if (or (< (upcase new) org-highest-priority)
14126 (> (upcase new) org-lowest-priority))
14127 (if (and (memq action '(up down))
14128 (not have) (not (eq last-command this-command)))
14129 ;; `new' is from default priority
14130 (error
14131 "The default can not be set, see `org-default-priority' why")
14132 ;; normal cycling: `new' is beyond highest/lowest priority
14133 ;; and is wrapped around to the empty priority
14134 (setq remove t)))
14135 (setq news (format "%c" new))
14136 (if have
14137 (if remove
14138 (replace-match "" t t nil 1)
14139 (replace-match news t t nil 2))
14140 (if remove
14141 (user-error "No priority cookie found in line")
14142 (let ((case-fold-search nil))
14143 (looking-at org-todo-line-regexp))
14144 (if (match-end 2)
14145 (progn
14146 (goto-char (match-end 2))
14147 (insert " [#" news "]"))
14148 (goto-char (match-beginning 3))
14149 (insert "[#" news "] "))))
14150 (org-set-tags nil 'align))
14151 (if remove
14152 (message "Priority removed")
14153 (message "Priority of current item set to %s" news)))))
14155 (defun org-show-priority ()
14156 "Show the priority of the current item.
14157 This priority is composed of the main priority given with the [#A] cookies,
14158 and by additional input from the age of a schedules or deadline entry."
14159 (interactive)
14160 (let ((pri (if (eq major-mode 'org-agenda-mode)
14161 (org-get-at-bol 'priority)
14162 (save-excursion
14163 (save-match-data
14164 (beginning-of-line)
14165 (and (looking-at org-heading-regexp)
14166 (org-get-priority (match-string 0))))))))
14167 (message "Priority is %d" (if pri pri -1000))))
14169 (defun org-get-priority (s)
14170 "Find priority cookie and return priority."
14171 (save-match-data
14172 (if (functionp org-get-priority-function)
14173 (funcall org-get-priority-function)
14174 (if (not (string-match org-priority-regexp s))
14175 (* 1000 (- org-lowest-priority org-default-priority))
14176 (* 1000 (- org-lowest-priority
14177 (string-to-char (match-string 2 s))))))))
14179 ;;;; Tags
14181 (defvar org-agenda-archives-mode)
14182 (defvar org-map-continue-from nil
14183 "Position from where mapping should continue.
14184 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14186 (defvar org-scanner-tags nil
14187 "The current tag list while the tags scanner is running.")
14188 (defvar org-trust-scanner-tags nil
14189 "Should `org-get-tags-at' use the tags for the scanner.
14190 This is for internal dynamical scoping only.
14191 When this is non-nil, the function `org-get-tags-at' will return the value
14192 of `org-scanner-tags' instead of building the list by itself. This
14193 can lead to large speed-ups when the tags scanner is used in a file with
14194 many entries, and when the list of tags is retrieved, for example to
14195 obtain a list of properties. Building the tags list for each entry in such
14196 a file becomes an N^2 operation - but with this variable set, it scales
14197 as N.")
14199 (defun org-scan-tags (action matcher todo-only &optional start-level)
14200 "Scan headline tags with inheritance and produce output ACTION.
14202 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14203 or `agenda' to produce an entry list for an agenda view. It can also be
14204 a Lisp form or a function that should be called at each matched headline, in
14205 this case the return value is a list of all return values from these calls.
14207 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14208 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14209 only lines with a not-done TODO keyword are included in the output.
14210 This should be the same variable that was scoped into
14211 and set by `org-make-tags-matcher' when it constructed MATCHER.
14213 START-LEVEL can be a string with asterisks, reducing the scope to
14214 headlines matching this string."
14215 (require 'org-agenda)
14216 (let* ((re (concat "^"
14217 (if start-level
14218 ;; Get the correct level to match
14219 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14220 org-outline-regexp)
14221 " *\\(\\<\\("
14222 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14223 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14224 (props (list 'face 'default
14225 'done-face 'org-agenda-done
14226 'undone-face 'default
14227 'mouse-face 'highlight
14228 'org-not-done-regexp org-not-done-regexp
14229 'org-todo-regexp org-todo-regexp
14230 'org-complex-heading-regexp org-complex-heading-regexp
14231 'help-echo
14232 (format "mouse-2 or RET jump to org file %s"
14233 (abbreviate-file-name
14234 (or (buffer-file-name (buffer-base-buffer))
14235 (buffer-name (buffer-base-buffer)))))))
14236 (org-map-continue-from nil)
14237 lspos tags tags-list
14238 (tags-alist (list (cons 0 org-file-tags)))
14239 (llast 0) rtn rtn1 level category i txt
14240 todo marker entry priority
14241 ts-date ts-date-type ts-date-pair)
14242 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14243 (setq action (list 'lambda nil action)))
14244 (save-excursion
14245 (goto-char (point-min))
14246 (when (eq action 'sparse-tree)
14247 (org-overview)
14248 (org-remove-occur-highlights))
14249 (while (let (case-fold-search)
14250 (re-search-forward re nil t))
14251 (setq org-map-continue-from nil)
14252 (catch :skip
14253 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14254 tags (if (match-end 4) (org-match-string-no-properties 4)))
14255 (goto-char (setq lspos (match-beginning 0)))
14256 (setq level (org-reduced-level (org-outline-level))
14257 category (org-get-category))
14258 (when (eq action 'agenda)
14259 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14260 ts-date (car ts-date-pair)
14261 ts-date-type (cdr ts-date-pair)))
14262 (setq i llast llast level)
14263 ;; remove tag lists from same and sublevels
14264 (while (>= i level)
14265 (when (setq entry (assoc i tags-alist))
14266 (setq tags-alist (delete entry tags-alist)))
14267 (setq i (1- i)))
14268 ;; add the next tags
14269 (when tags
14270 (setq tags (org-split-string tags ":")
14271 tags-alist
14272 (cons (cons level tags) tags-alist)))
14273 ;; compile tags for current headline
14274 (setq tags-list
14275 (if org-use-tag-inheritance
14276 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14277 tags)
14278 org-scanner-tags tags-list)
14279 (when org-use-tag-inheritance
14280 (setcdr (car tags-alist)
14281 (mapcar (lambda (x)
14282 (setq x (copy-sequence x))
14283 (org-add-prop-inherited x))
14284 (cdar tags-alist))))
14285 (when (and tags org-use-tag-inheritance
14286 (or (not (eq t org-use-tag-inheritance))
14287 org-tags-exclude-from-inheritance))
14288 ;; selective inheritance, remove uninherited ones
14289 (setcdr (car tags-alist)
14290 (org-remove-uninherited-tags (cdar tags-alist))))
14291 (when (and
14293 ;; eval matcher only when the todo condition is OK
14294 (and (or (not todo-only) (member todo org-not-done-keywords))
14295 (let ((case-fold-search t) (org-trust-scanner-tags t))
14296 (eval matcher)))
14298 ;; Call the skipper, but return t if it does not skip,
14299 ;; so that the `and' form continues evaluating
14300 (progn
14301 (unless (eq action 'sparse-tree) (org-agenda-skip))
14304 ;; Check if timestamps are deselecting this entry
14305 (or (not todo-only)
14306 (and (member todo org-not-done-keywords)
14307 (or (not org-agenda-tags-todo-honor-ignore-options)
14308 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14310 ;; select this headline
14311 (cond
14312 ((eq action 'sparse-tree)
14313 (and org-highlight-sparse-tree-matches
14314 (org-get-heading) (match-end 0)
14315 (org-highlight-new-match
14316 (match-beginning 1) (match-end 1)))
14317 (org-show-context 'tags-tree))
14318 ((eq action 'agenda)
14319 (setq txt (org-agenda-format-item
14321 (concat
14322 (if (eq org-tags-match-list-sublevels 'indented)
14323 (make-string (1- level) ?.) "")
14324 (org-get-heading))
14325 (make-string level ?\s)
14326 category
14327 tags-list)
14328 priority (org-get-priority txt))
14329 (goto-char lspos)
14330 (setq marker (org-agenda-new-marker))
14331 (org-add-props txt props
14332 'org-marker marker 'org-hd-marker marker 'org-category category
14333 'todo-state todo
14334 'ts-date ts-date
14335 'priority priority
14336 'type (concat "tagsmatch" ts-date-type))
14337 (push txt rtn))
14338 ((functionp action)
14339 (setq org-map-continue-from nil)
14340 (save-excursion
14341 (setq rtn1 (funcall action))
14342 (push rtn1 rtn)))
14343 (t (user-error "Invalid action")))
14345 ;; if we are to skip sublevels, jump to end of subtree
14346 (unless org-tags-match-list-sublevels
14347 (org-end-of-subtree t)
14348 (backward-char 1))))
14349 ;; Get the correct position from where to continue
14350 (if org-map-continue-from
14351 (goto-char org-map-continue-from)
14352 (and (= (point) lspos) (end-of-line 1)))))
14353 (when (and (eq action 'sparse-tree)
14354 (not org-sparse-tree-open-archived-trees))
14355 (org-hide-archived-subtrees (point-min) (point-max)))
14356 (nreverse rtn)))
14358 (defun org-remove-uninherited-tags (tags)
14359 "Remove all tags that are not inherited from the list TAGS."
14360 (cond
14361 ((eq org-use-tag-inheritance t)
14362 (if org-tags-exclude-from-inheritance
14363 (org-delete-all org-tags-exclude-from-inheritance tags)
14364 tags))
14365 ((not org-use-tag-inheritance) nil)
14366 ((stringp org-use-tag-inheritance)
14367 (delq nil (mapcar
14368 (lambda (x)
14369 (if (and (string-match org-use-tag-inheritance x)
14370 (not (member x org-tags-exclude-from-inheritance)))
14371 x nil))
14372 tags)))
14373 ((listp org-use-tag-inheritance)
14374 (delq nil (mapcar
14375 (lambda (x)
14376 (if (member x org-use-tag-inheritance) x nil))
14377 tags)))))
14379 (defun org-match-sparse-tree (&optional todo-only match)
14380 "Create a sparse tree according to tags string MATCH.
14381 MATCH can contain positive and negative selection of tags, like
14382 \"+WORK+URGENT-WITHBOSS\".
14383 If optional argument TODO-ONLY is non-nil, only select lines that are
14384 also TODO lines."
14385 (interactive "P")
14386 (org-agenda-prepare-buffers (list (current-buffer)))
14387 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14389 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14391 (defvar org-cached-props nil)
14392 (defun org-cached-entry-get (pom property)
14393 (if (or (eq t org-use-property-inheritance)
14394 (and (stringp org-use-property-inheritance)
14395 (let ((case-fold-search t))
14396 (org-string-match-p org-use-property-inheritance property)))
14397 (and (listp org-use-property-inheritance)
14398 (member-ignore-case property org-use-property-inheritance)))
14399 ;; Caching is not possible, check it directly.
14400 (org-entry-get pom property 'inherit)
14401 ;; Get all properties, so we can do complicated checks easily.
14402 (cdr (assoc-string property
14403 (or org-cached-props
14404 (setq org-cached-props (org-entry-properties pom)))
14405 t))))
14407 (defun org-global-tags-completion-table (&optional files)
14408 "Return the list of all tags in all agenda buffer/files.
14409 Optional FILES argument is a list of files which can be used
14410 instead of the agenda files."
14411 (save-excursion
14412 (org-uniquify
14413 (delq nil
14414 (apply 'append
14415 (mapcar
14416 (lambda (file)
14417 (set-buffer (find-file-noselect file))
14418 (append (org-get-buffer-tags)
14419 (mapcar (lambda (x) (if (stringp (car-safe x))
14420 (list (car-safe x)) nil))
14421 org-tag-alist)))
14422 (if (and files (car files))
14423 files
14424 (org-agenda-files))))))))
14426 (defun org-make-tags-matcher (match)
14427 "Create the TAGS/TODO matcher form for the selection string MATCH.
14429 The variable `todo-only' is scoped dynamically into this function.
14430 It will be set to t if the matcher restricts matching to TODO entries,
14431 otherwise will not be touched.
14433 Returns a cons of the selection string MATCH and the constructed
14434 lisp form implementing the matcher. The matcher is to be evaluated
14435 at an Org entry, with point on the headline, and returns t if the
14436 entry matches the selection string MATCH. The returned lisp form
14437 references two variables with information about the entry, which
14438 must be bound around the form's evaluation: todo, the TODO keyword
14439 at the entry (or nil of none); and tags-list, the list of all tags
14440 at the entry including inherited ones. Additionally, the category
14441 of the entry (if any) must be specified as the text property
14442 'org-category on the headline.
14444 See also `org-scan-tags'.
14446 (declare (special todo-only))
14447 (unless (boundp 'todo-only)
14448 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14449 (unless match
14450 ;; Get a new match request, with completion against the global
14451 ;; tags table and the local tags in current buffer
14452 (let ((org-last-tags-completion-table
14453 (org-uniquify
14454 (delq nil (append (org-get-buffer-tags)
14455 (org-global-tags-completion-table))))))
14456 (setq match (org-completing-read-no-i
14457 "Match: " 'org-tags-completion-function nil nil nil
14458 'org-tags-history))))
14460 ;; Parse the string and create a lisp form
14461 (let ((match0 match)
14462 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14463 minus tag mm
14464 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14465 orterms term orlist re-p str-p level-p level-op time-p
14466 prop-p pn pv po gv rest (start 0) (ss 0))
14467 ;; Expand group tags
14468 (setq match (org-tags-expand match))
14470 ;; Check if there is a TODO part of this match, which would be the
14471 ;; part after a "/". TO make sure that this slash is not part of
14472 ;; a property value to be matched against, we also check that there
14473 ;; is no " after that slash.
14474 ;; First, find the last slash
14475 (while (string-match "/+" match ss)
14476 (setq start (match-beginning 0) ss (match-end 0)))
14477 (if (and (string-match "/+" match start)
14478 (not (save-match-data (string-match "\"" match start))))
14479 ;; match contains also a todo-matching request
14480 (progn
14481 (setq tagsmatch (substring match 0 (match-beginning 0))
14482 todomatch (substring match (match-end 0)))
14483 (if (string-match "^!" todomatch)
14484 (setq todo-only t todomatch (substring todomatch 1)))
14485 (if (string-match "^\\s-*$" todomatch)
14486 (setq todomatch nil)))
14487 ;; only matching tags
14488 (setq tagsmatch match todomatch nil))
14490 ;; Make the tags matcher
14491 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14492 (setq tagsmatcher t)
14493 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14494 (while (setq term (pop orterms))
14495 (while (and (equal (substring term -1) "\\") orterms)
14496 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14497 (while (string-match re term)
14498 (setq rest (substring term (match-end 0))
14499 minus (and (match-end 1)
14500 (equal (match-string 1 term) "-"))
14501 tag (save-match-data (replace-regexp-in-string
14502 "\\\\-" "-"
14503 (match-string 2 term)))
14504 re-p (equal (string-to-char tag) ?{)
14505 level-p (match-end 4)
14506 prop-p (match-end 5)
14507 mm (cond
14508 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14509 (level-p
14510 (setq level-op (org-op-to-function (match-string 3 term)))
14511 `(,level-op level ,(string-to-number
14512 (match-string 4 term))))
14513 (prop-p
14514 (setq pn (match-string 5 term)
14515 po (match-string 6 term)
14516 pv (match-string 7 term)
14517 re-p (equal (string-to-char pv) ?{)
14518 str-p (equal (string-to-char pv) ?\")
14519 time-p (save-match-data
14520 (string-match "^\"[[<].*[]>]\"$" pv))
14521 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14522 (if time-p (setq pv (org-matcher-time pv)))
14523 (setq po (org-op-to-function po (if time-p 'time str-p)))
14524 (cond
14525 ((equal pn "CATEGORY")
14526 (setq gv '(get-text-property (point) 'org-category)))
14527 ((equal pn "TODO")
14528 (setq gv 'todo))
14530 (setq gv `(org-cached-entry-get nil ,pn))))
14531 (if re-p
14532 (if (eq po 'org<>)
14533 `(not (string-match ,pv (or ,gv "")))
14534 `(string-match ,pv (or ,gv "")))
14535 (if str-p
14536 `(,po (or ,gv "") ,pv)
14537 `(,po (string-to-number (or ,gv ""))
14538 ,(string-to-number pv) ))))
14539 (t `(member ,tag tags-list)))
14540 mm (if minus (list 'not mm) mm)
14541 term rest)
14542 (push mm tagsmatcher))
14543 (push (if (> (length tagsmatcher) 1)
14544 (cons 'and tagsmatcher)
14545 (car tagsmatcher))
14546 orlist)
14547 (setq tagsmatcher nil))
14548 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14549 (setq tagsmatcher
14550 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14551 ;; Make the todo matcher
14552 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14553 (setq todomatcher t)
14554 (setq orterms (org-split-string todomatch "|") orlist nil)
14555 (dolist (term orterms)
14556 (while (string-match re term)
14557 (setq minus (and (match-end 1)
14558 (equal (match-string 1 term) "-"))
14559 kwd (match-string 2 term)
14560 re-p (equal (string-to-char kwd) ?{)
14561 term (substring term (match-end 0))
14562 mm (if re-p
14563 `(string-match ,(substring kwd 1 -1) todo)
14564 (list 'equal 'todo kwd))
14565 mm (if minus (list 'not mm) mm))
14566 (push mm todomatcher))
14567 (push (if (> (length todomatcher) 1)
14568 (cons 'and todomatcher)
14569 (car todomatcher))
14570 orlist)
14571 (setq todomatcher nil))
14572 (setq todomatcher (if (> (length orlist) 1)
14573 (cons 'or orlist) (car orlist))))
14575 ;; Return the string and lisp forms of the matcher
14576 (setq matcher (if todomatcher
14577 (list 'and tagsmatcher todomatcher)
14578 tagsmatcher))
14579 (when todo-only
14580 (setq matcher (list 'and '(member todo org-not-done-keywords)
14581 matcher)))
14582 (cons match0 matcher)))
14584 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14585 "Expand group tags in MATCH.
14587 This replaces every group tag in MATCH with a regexp tag search.
14588 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14589 will be replaced like this:
14591 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14592 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14593 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14595 Replacing by a regexp preserves the structure of the match.
14596 E.g., this expansion
14598 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14600 will match anything tagged with \"Lab\" and \"Home\", or tagged
14601 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14603 A group tag in MATCH can contain regular expressions of its own.
14604 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14605 will be replaced like this:
14607 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14609 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14610 assumed to be a single group tag, and the function will return
14611 the list of tags in this group.
14613 When DOWNCASE is non-nil, expand downcased TAGS."
14614 (if org-group-tags
14615 (let* ((case-fold-search t)
14616 (stable org-mode-syntax-table)
14617 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14618 (taggroups (if downcased
14619 (mapcar (lambda (tg) (mapcar #'downcase tg))
14620 taggroups)
14621 taggroups))
14622 (taggroups-keys (mapcar #'car taggroups))
14623 (return-match (if downcased (downcase match) match))
14624 (count 0)
14625 (work-already-expanded tags-already-expanded)
14626 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14627 ;; @ and _ are allowed as word-components in tags.
14628 (modify-syntax-entry ?@ "w" stable)
14629 (modify-syntax-entry ?_ "w" stable)
14630 ;; Temporarily replace regexp-expressions in the match-expression.
14631 (while (string-match "{.+?}" return-match)
14632 (incf count)
14633 (push (match-string 0 return-match) regexps-in-match)
14634 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14635 (while (and taggroups-keys
14636 (with-syntax-table stable
14637 (string-match
14638 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14639 (regexp-opt taggroups-keys) "\\>\\)")
14640 return-match)))
14641 (let* ((dir (match-string 1 return-match))
14642 (tag (match-string 2 return-match))
14643 (tag (if downcased (downcase tag) tag)))
14644 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14645 (member tag work-already-expanded))
14646 (setq tags-in-group (assoc tag taggroups))
14647 (push tag work-already-expanded)
14648 ;; Recursively expand each tag in the group, if the tag hasn't
14649 ;; already been expanded. Restore the match-data after all recursive calls.
14650 (save-match-data
14651 (let (tags-expanded)
14652 (dolist (x (cdr tags-in-group))
14653 (if (and (member x taggroups-keys)
14654 (not (member x work-already-expanded)))
14655 (setq tags-expanded
14656 (delete-dups
14657 (append
14658 (org-tags-expand x t downcased
14659 work-already-expanded)
14660 tags-expanded)))
14661 (setq tags-expanded
14662 (append (list x) tags-expanded)))
14663 (setq work-already-expanded
14664 (delete-dups
14665 (append tags-expanded
14666 work-already-expanded))))
14667 (setq tags-in-group
14668 (delete-dups (cons (car tags-in-group)
14669 tags-expanded)))))
14670 ;; Filter tag-regexps from tags.
14671 (setq regexp-in-group-escaped
14672 (delq nil (mapcar (lambda (x)
14673 (if (stringp x)
14674 (and (equal "{" (substring x 0 1))
14675 (equal "}" (substring x -1))
14678 tags-in-group))
14679 regexp-in-group
14680 (mapcar (lambda (x)
14681 (substring x 1 -1))
14682 regexp-in-group-escaped)
14683 tags-in-group
14684 (delq nil (mapcar (lambda (x)
14685 (if (stringp x)
14686 (and (not (equal "{" (substring x 0 1)))
14687 (not (equal "}" (substring x -1)))
14690 tags-in-group)))
14691 ;; If single-as-list, do no more in the while-loop.
14692 (if (not single-as-list)
14693 (progn
14694 (when regexp-in-group
14695 (setq regexp-in-group
14696 (concat "\\|"
14697 (mapconcat 'identity regexp-in-group
14698 "\\|"))))
14699 (setq tags-in-group
14700 (concat dir
14701 "{\\<"
14702 (regexp-opt tags-in-group)
14703 "\\>"
14704 regexp-in-group
14705 "}"))
14706 (when (stringp tags-in-group)
14707 (org-add-props tags-in-group '(grouptag t)))
14708 (setq return-match
14709 (replace-match tags-in-group t t return-match)))
14710 (setq tags-in-group
14711 (append regexp-in-group-escaped tags-in-group))))
14712 (setq taggroups-keys (delete tag taggroups-keys))))
14713 ;; Add the regular expressions back into the match-expression again.
14714 (while regexps-in-match
14715 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14716 (pop regexps-in-match)
14717 return-match t t))
14718 (decf count))
14719 (if single-as-list
14720 (if tags-in-group tags-in-group (list return-match))
14721 return-match))
14722 (if single-as-list
14723 (list (if downcased (downcase match) match))
14724 match)))
14726 (defun org-op-to-function (op &optional stringp)
14727 "Turn an operator into the appropriate function."
14728 (setq op
14729 (cond
14730 ((equal op "<" ) '(< string< org-time<))
14731 ((equal op ">" ) '(> org-string> org-time>))
14732 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14733 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14734 ((member op '("=" "==")) '(= string= org-time=))
14735 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14736 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14738 (defun org<> (a b) (not (= a b)))
14739 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14740 (defun org-string>= (a b) (not (string< a b)))
14741 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14742 (defun org-string<> (a b) (not (string= a b)))
14743 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14744 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14745 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14746 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14747 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14748 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14749 (defun org-2ft (s)
14750 "Convert S to a floating point time.
14751 If S is already a number, just return it. If it is a string, parse
14752 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14753 (cond
14754 ((numberp s) s)
14755 ((stringp s)
14756 (condition-case nil
14757 (float-time (apply 'encode-time (org-parse-time-string s)))
14758 (error 0.)))
14759 (t 0.)))
14761 (defun org-time-today ()
14762 "Time in seconds today at 0:00.
14763 Returns the float number of seconds since the beginning of the
14764 epoch to the beginning of today (00:00)."
14765 (float-time (apply 'encode-time
14766 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14768 (defun org-matcher-time (s)
14769 "Interpret a time comparison value."
14770 (save-match-data
14771 (cond
14772 ((string= s "<now>") (float-time))
14773 ((string= s "<today>") (org-time-today))
14774 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14775 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14776 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14777 (+ (org-time-today)
14778 (* (string-to-number (match-string 1 s))
14779 (cdr (assoc (match-string 2 s)
14780 '(("d" . 86400.0) ("w" . 604800.0)
14781 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14782 (t (org-2ft s)))))
14784 (defun org-match-any-p (re list)
14785 "Does re match any element of list?"
14786 (setq list (mapcar (lambda (x) (string-match re x)) list))
14787 (delq nil list))
14789 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14790 (defvar org-tags-overlay (make-overlay 1 1))
14791 (org-detach-overlay org-tags-overlay)
14793 (defun org-get-local-tags-at (&optional pos)
14794 "Get a list of tags defined in the current headline."
14795 (org-get-tags-at pos 'local))
14797 (defun org-get-local-tags ()
14798 "Get a list of tags defined in the current headline."
14799 (org-get-tags-at nil 'local))
14801 (defun org-get-tags-at (&optional pos local)
14802 "Get a list of all headline tags applicable at POS.
14803 POS defaults to point. If tags are inherited, the list contains
14804 the targets in the same sequence as the headlines appear, i.e.
14805 the tags of the current headline come last.
14806 When LOCAL is non-nil, only return tags from the current headline,
14807 ignore inherited ones."
14808 (interactive)
14809 (if (and org-trust-scanner-tags
14810 (or (not pos) (equal pos (point)))
14811 (not local))
14812 org-scanner-tags
14813 (let (tags ltags lastpos parent)
14814 (save-excursion
14815 (save-restriction
14816 (widen)
14817 (goto-char (or pos (point)))
14818 (save-match-data
14819 (catch 'done
14820 (condition-case nil
14821 (progn
14822 (org-back-to-heading t)
14823 (while (not (equal lastpos (point)))
14824 (setq lastpos (point))
14825 (when (looking-at
14826 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14827 (setq ltags (org-split-string
14828 (org-match-string-no-properties 1) ":"))
14829 (when parent
14830 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14831 (setq tags (append
14832 (if parent
14833 (org-remove-uninherited-tags ltags)
14834 ltags)
14835 tags)))
14836 (or org-use-tag-inheritance (throw 'done t))
14837 (if local (throw 'done t))
14838 (or (org-up-heading-safe) (error nil))
14839 (setq parent t)))
14840 (error nil)))))
14841 (if local
14842 tags
14843 (reverse (delete-dups
14844 (reverse (append
14845 (org-remove-uninherited-tags
14846 org-file-tags)
14847 tags)))))))))
14849 (defun org-add-prop-inherited (s)
14850 (add-text-properties 0 (length s) '(inherited t) s)
14853 (defun org-toggle-tag (tag &optional onoff)
14854 "Toggle the tag TAG for the current line.
14855 If ONOFF is `on' or `off', don't toggle but set to this state."
14856 (let (res current)
14857 (save-excursion
14858 (org-back-to-heading t)
14859 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14860 (point-at-eol) t)
14861 (progn
14862 (setq current (match-string 1))
14863 (replace-match ""))
14864 (setq current ""))
14865 (setq current (nreverse (org-split-string current ":")))
14866 (cond
14867 ((eq onoff 'on)
14868 (setq res t)
14869 (or (member tag current) (push tag current)))
14870 ((eq onoff 'off)
14871 (or (not (member tag current)) (setq current (delete tag current))))
14872 (t (if (member tag current)
14873 (setq current (delete tag current))
14874 (setq res t)
14875 (push tag current))))
14876 (end-of-line 1)
14877 (if current
14878 (progn
14879 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14880 (org-set-tags nil t))
14881 (delete-horizontal-space))
14882 (run-hooks 'org-after-tags-change-hook))
14883 res))
14885 (defun org-align-tags-here (to-col)
14886 ;; Assumes that this is a headline
14887 "Align tags on the current headline to TO-COL."
14888 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14889 (beginning-of-line 1)
14890 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14891 (< pos (match-beginning 2)))
14892 (progn
14893 (setq tags-l (- (match-end 2) (match-beginning 2)))
14894 (goto-char (match-beginning 1))
14895 (insert " ")
14896 (delete-region (point) (1+ (match-beginning 2)))
14897 (setq ncol (max (current-column)
14898 (1+ col)
14899 (if (> to-col 0)
14900 to-col
14901 (- (abs to-col) tags-l))))
14902 (setq p (point))
14903 (insert (make-string (- ncol (current-column)) ?\ ))
14904 (setq ncol (current-column))
14905 (when indent-tabs-mode (tabify p (point-at-eol)))
14906 (org-move-to-column (min ncol col)))
14907 (goto-char pos))))
14909 (defun org-set-tags-command (&optional arg just-align)
14910 "Call the set-tags command for the current entry."
14911 (interactive "P")
14912 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14913 (org-set-tags arg just-align)
14914 (save-excursion
14915 (unless (and (org-region-active-p)
14916 org-loop-over-headlines-in-active-region)
14917 (org-back-to-heading t))
14918 (org-set-tags arg just-align))))
14920 (defun org-set-tags-to (data)
14921 "Set the tags of the current entry to DATA, replacing the current tags.
14922 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14923 If DATA is nil or the empty string, any tags will be removed."
14924 (interactive "sTags: ")
14925 (setq data
14926 (cond
14927 ((eq data nil) "")
14928 ((equal data "") "")
14929 ((stringp data)
14930 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14931 ":"))
14932 ((listp data)
14933 (concat ":" (mapconcat 'identity data ":") ":"))))
14934 (when data
14935 (save-excursion
14936 (org-back-to-heading t)
14937 (when (looking-at org-complex-heading-regexp)
14938 (if (match-end 5)
14939 (progn
14940 (goto-char (match-beginning 5))
14941 (insert data)
14942 (delete-region (point) (point-at-eol))
14943 (org-set-tags nil 'align))
14944 (goto-char (point-at-eol))
14945 (insert " " data)
14946 (org-set-tags nil 'align)))
14947 (beginning-of-line 1)
14948 (if (looking-at ".*?\\([ \t]+\\)$")
14949 (delete-region (match-beginning 1) (match-end 1))))))
14951 (defun org-align-all-tags ()
14952 "Align the tags i all headings."
14953 (interactive)
14954 (save-excursion
14955 (or (ignore-errors (org-back-to-heading t))
14956 (outline-next-heading))
14957 (if (org-at-heading-p)
14958 (org-set-tags t)
14959 (message "No headings"))))
14961 (defvar org-indent-indentation-per-level)
14962 (defun org-set-tags (&optional arg just-align)
14963 "Set the tags for the current headline.
14964 With prefix ARG, realign all tags in headings in the current buffer.
14965 When JUST-ALIGN is non-nil, only align tags."
14966 (interactive "P")
14967 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14968 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14969 'region-start-level
14970 'region))
14971 org-loop-over-headlines-in-active-region)
14972 (org-map-entries
14973 ;; We don't use ARG and JUST-ALIGN here because these args
14974 ;; are not useful when looping over headlines.
14975 #'org-set-tags
14976 org-loop-over-headlines-in-active-region
14978 '(when (outline-invisible-p) (org-end-of-subtree nil t))))
14979 (let ((org-setting-tags t))
14980 (if arg
14981 (save-excursion
14982 (goto-char (point-min))
14983 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14984 (while (re-search-forward org-outline-regexp-bol nil t)
14985 (org-set-tags nil t)
14986 (end-of-line)))
14987 (message "All tags realigned to column %d" org-tags-column))
14988 (let* ((current (org-get-tags-string))
14989 (col (current-column))
14990 (tags
14991 (if just-align current
14992 ;; Get a new set of tags from the user.
14993 (save-excursion
14994 (let* ((table
14995 (setq
14996 org-last-tags-completion-table
14997 (append
14998 org-tag-persistent-alist
14999 (or org-tag-alist (org-get-buffer-tags))
15000 (and
15001 org-complete-tags-always-offer-all-agenda-tags
15002 (org-global-tags-completion-table
15003 (org-agenda-files))))))
15004 (current-tags (org-split-string current ":"))
15005 (inherited-tags
15006 (nreverse (nthcdr (length current-tags)
15007 (nreverse (org-get-tags-at))))))
15008 (replace-regexp-in-string
15009 "\\([-+&]+\\|,\\)"
15011 (if (or (eq t org-use-fast-tag-selection)
15012 (and org-use-fast-tag-selection
15013 (delq nil (mapcar #'cdr table))))
15014 (org-fast-tag-selection
15015 current-tags inherited-tags table
15016 (and org-fast-tag-selection-include-todo
15017 org-todo-key-alist))
15018 (let ((org-add-colon-after-tag-completion
15019 (< 1 (length table))))
15020 (org-trim
15021 (completing-read
15022 "Tags: "
15023 #'org-tags-completion-function
15024 nil nil current 'org-tags-history))))))))))
15026 (when org-tags-sort-function
15027 (setq tags
15028 (mapconcat
15029 #'identity
15030 (sort (org-split-string tags (org-re "[^[:alnum:]_@#%]+"))
15031 org-tags-sort-function)
15032 ":")))
15034 (if (not (org-string-nw-p tags)) (setq tags "")
15035 (unless (string-match ":\\'" tags) (setq tags (concat tags ":")))
15036 (unless (string-match "\\`:" tags) (setq tags (concat ":" tags))))
15038 ;; Insert new tags at the correct column
15039 (beginning-of-line)
15040 (let ((level (if (looking-at org-outline-regexp)
15041 (- (match-end 0) (point) 1)
15042 1)))
15043 (cond
15044 ((and (equal current "") (equal tags "")))
15045 ((re-search-forward
15046 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15047 (line-end-position)
15049 (if (equal tags "") (replace-match "" t t)
15050 (goto-char (match-beginning 0))
15051 (let* ((c0 (current-column))
15052 ;; Compute offset for the case of org-indent-mode
15053 ;; active.
15054 (di (if (org-bound-and-true-p org-indent-mode)
15055 (* (1- org-indent-indentation-per-level)
15056 (1- level))
15058 (p0 (if (eq (char-before) ?*) (1+ (point)) (point)))
15059 (tc (+ org-tags-column
15060 (if (> org-tags-column 0) (- di) di)))
15061 (c1 (max (1+ c0)
15062 (if (> tc 0) tc
15063 (- (- tc) (string-width tags)))))
15064 (rpl (concat (make-string (max 0 (- c1 c0)) ?\s) tags)))
15065 (replace-match rpl t t)
15066 (when (and (not (featurep 'xemacs)) indent-tabs-mode)
15067 (tabify p0 (point))))))
15068 (t (error "Tags alignment failed"))))
15069 (org-move-to-column col))
15070 (unless just-align (run-hooks 'org-after-tags-change-hook))))))
15072 (defun org-change-tag-in-region (beg end tag off)
15073 "Add or remove TAG for each entry in the region.
15074 This works in the agenda, and also in an org-mode buffer."
15075 (interactive
15076 (list (region-beginning) (region-end)
15077 (let ((org-last-tags-completion-table
15078 (if (derived-mode-p 'org-mode)
15079 (org-uniquify
15080 (delq nil (append (org-get-buffer-tags)
15081 (org-global-tags-completion-table))))
15082 (org-global-tags-completion-table))))
15083 (org-icompleting-read
15084 "Tag: " 'org-tags-completion-function nil nil nil
15085 'org-tags-history))
15086 (progn
15087 (message "[s]et or [r]emove? ")
15088 (equal (read-char-exclusive) ?r))))
15089 (if (fboundp 'deactivate-mark) (deactivate-mark))
15090 (let ((agendap (equal major-mode 'org-agenda-mode))
15091 l1 l2 m buf pos newhead (cnt 0))
15092 (goto-char end)
15093 (setq l2 (1- (org-current-line)))
15094 (goto-char beg)
15095 (setq l1 (org-current-line))
15096 (loop for l from l1 to l2 do
15097 (org-goto-line l)
15098 (setq m (get-text-property (point) 'org-hd-marker))
15099 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15100 (and agendap m))
15101 (setq buf (if agendap (marker-buffer m) (current-buffer))
15102 pos (if agendap m (point)))
15103 (with-current-buffer buf
15104 (save-excursion
15105 (save-restriction
15106 (goto-char pos)
15107 (setq cnt (1+ cnt))
15108 (org-toggle-tag tag (if off 'off 'on))
15109 (setq newhead (org-get-heading)))))
15110 (and agendap (org-agenda-change-all-lines newhead m))))
15111 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15113 (defun org-tags-completion-function (string predicate &optional flag)
15114 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15115 (confirm (lambda (x) (stringp (car x)))))
15116 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15117 (setq s1 (match-string 1 string)
15118 s2 (match-string 2 string))
15119 (setq s1 "" s2 string))
15120 (cond
15121 ((eq flag nil)
15122 ;; try completion
15123 (setq rtn (try-completion s2 ctable confirm))
15124 (if (stringp rtn)
15125 (setq rtn
15126 (concat s1 s2 (substring rtn (length s2))
15127 (if (and org-add-colon-after-tag-completion
15128 (assoc rtn ctable))
15129 ":" ""))))
15130 rtn)
15131 ((eq flag t)
15132 ;; all-completions
15133 (all-completions s2 ctable confirm))
15134 ((eq flag 'lambda)
15135 ;; exact match?
15136 (assoc s2 ctable)))))
15138 (defun org-fast-tag-insert (kwd tags face &optional end)
15139 "Insert KDW, and the TAGS, the latter with face FACE.
15140 Also insert END."
15141 (insert (format "%-12s" (concat kwd ":"))
15142 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15143 (or end "")))
15145 (defun org-fast-tag-show-exit (flag)
15146 (save-excursion
15147 (org-goto-line 3)
15148 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15149 (replace-match ""))
15150 (when flag
15151 (end-of-line 1)
15152 (org-move-to-column (- (window-width) 19) t)
15153 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15155 (defun org-set-current-tags-overlay (current prefix)
15156 "Add an overlay to CURRENT tag with PREFIX."
15157 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15158 (if (featurep 'xemacs)
15159 (org-overlay-display org-tags-overlay (concat prefix s)
15160 'secondary-selection)
15161 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15162 (org-overlay-display org-tags-overlay (concat prefix s)))))
15164 (defvar org-last-tag-selection-key nil)
15165 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15166 "Fast tag selection with single keys.
15167 CURRENT is the current list of tags in the headline, INHERITED is the
15168 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15169 possibly with grouping information. TODO-TABLE is a similar table with
15170 TODO keywords, should these have keys assigned to them.
15171 If the keys are nil, a-z are automatically assigned.
15172 Returns the new tags string, or nil to not change the current settings."
15173 (let* ((fulltable (append table todo-table))
15174 (maxlen (apply 'max (mapcar
15175 (lambda (x)
15176 (if (stringp (car x)) (string-width (car x)) 0))
15177 fulltable)))
15178 (buf (current-buffer))
15179 (expert (eq org-fast-tag-selection-single-key 'expert))
15180 (buffer-tags nil)
15181 (fwidth (+ maxlen 3 1 3))
15182 (ncol (/ (- (window-width) 4) fwidth))
15183 (i-face 'org-done)
15184 (c-face 'org-todo)
15185 tg cnt e c char c1 c2 ntable tbl rtn
15186 ov-start ov-end ov-prefix
15187 (exit-after-next org-fast-tag-selection-single-key)
15188 (done-keywords org-done-keywords)
15189 groups ingroup intaggroup)
15190 (save-excursion
15191 (beginning-of-line 1)
15192 (if (looking-at
15193 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15194 (setq ov-start (match-beginning 1)
15195 ov-end (match-end 1)
15196 ov-prefix "")
15197 (setq ov-start (1- (point-at-eol))
15198 ov-end (1+ ov-start))
15199 (skip-chars-forward "^\n\r")
15200 (setq ov-prefix
15201 (concat
15202 (buffer-substring (1- (point)) (point))
15203 (if (> (current-column) org-tags-column)
15205 (make-string (- org-tags-column (current-column)) ?\ ))))))
15206 (move-overlay org-tags-overlay ov-start ov-end)
15207 (save-window-excursion
15208 (if expert
15209 (set-buffer (get-buffer-create " *Org tags*"))
15210 (delete-other-windows)
15211 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15212 (org-switch-to-buffer-other-window " *Org tags*"))
15213 (erase-buffer)
15214 (org-set-local 'org-done-keywords done-keywords)
15215 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15216 (org-fast-tag-insert "Current" current c-face "\n\n")
15217 (org-fast-tag-show-exit exit-after-next)
15218 (org-set-current-tags-overlay current ov-prefix)
15219 (setq tbl fulltable char ?a cnt 0)
15220 (while (setq e (pop tbl))
15221 (cond
15222 ((eq (car e) :startgroup)
15223 (push '() groups) (setq ingroup t)
15224 (unless (zerop cnt)
15225 (setq cnt 0)
15226 (insert "\n"))
15227 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15228 ((eq (car e) :endgroup)
15229 (setq ingroup nil cnt 0)
15230 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15231 ((eq (car e) :startgrouptag)
15232 (setq intaggroup t)
15233 (unless (zerop cnt)
15234 (setq cnt 0)
15235 (insert "\n"))
15236 (insert "[ "))
15237 ((eq (car e) :endgrouptag)
15238 (setq intaggroup nil cnt 0)
15239 (insert "]\n"))
15240 ((equal e '(:newline))
15241 (unless (zerop cnt)
15242 (setq cnt 0)
15243 (insert "\n")
15244 (setq e (car tbl))
15245 (while (equal (car tbl) '(:newline))
15246 (insert "\n")
15247 (setq tbl (cdr tbl)))))
15248 ((equal e '(:grouptags)) (insert " : "))
15250 (setq tg (copy-sequence (car e)) c2 nil)
15251 (if (cdr e)
15252 (setq c (cdr e))
15253 ;; automatically assign a character.
15254 (setq c1 (string-to-char
15255 (downcase (substring
15256 tg (if (= (string-to-char tg) ?@) 1 0)))))
15257 (if (or (rassoc c1 ntable) (rassoc c1 table))
15258 (while (or (rassoc char ntable) (rassoc char table))
15259 (setq char (1+ char)))
15260 (setq c2 c1))
15261 (setq c (or c2 char)))
15262 (when ingroup (push tg (car groups)))
15263 (setq tg (org-add-props tg nil 'face
15264 (cond
15265 ((not (assoc tg table))
15266 (org-get-todo-face tg))
15267 ((member tg current) c-face)
15268 ((member tg inherited) i-face))))
15269 (when (equal (caar tbl) :grouptags)
15270 (org-add-props tg nil 'face 'org-tag-group))
15271 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15272 (insert "[" c "] " tg (make-string
15273 (- fwidth 4 (length tg)) ?\ ))
15274 (push (cons tg c) ntable)
15275 (when (= (incf cnt) ncol)
15276 (insert "\n")
15277 (when (or ingroup intaggroup) (insert " "))
15278 (setq cnt 0)))))
15279 (setq ntable (nreverse ntable))
15280 (insert "\n")
15281 (goto-char (point-min))
15282 (unless expert (org-fit-window-to-buffer))
15283 (setq rtn
15284 (catch 'exit
15285 (while t
15286 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15287 (if (not groups) "no " "")
15288 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15289 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15290 (setq org-last-tag-selection-key c)
15291 (cond
15292 ((= c ?\r) (throw 'exit t))
15293 ((= c ?!)
15294 (setq groups (not groups))
15295 (goto-char (point-min))
15296 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15297 ((= c ?\C-c)
15298 (if (not expert)
15299 (org-fast-tag-show-exit
15300 (setq exit-after-next (not exit-after-next)))
15301 (setq expert nil)
15302 (delete-other-windows)
15303 (set-window-buffer (split-window-vertically) " *Org tags*")
15304 (org-switch-to-buffer-other-window " *Org tags*")
15305 (org-fit-window-to-buffer)))
15306 ((or (= c ?\C-g)
15307 (and (= c ?q) (not (rassoc c ntable))))
15308 (org-detach-overlay org-tags-overlay)
15309 (setq quit-flag t))
15310 ((= c ?\ )
15311 (setq current nil)
15312 (when exit-after-next (setq exit-after-next 'now)))
15313 ((= c ?\t)
15314 (condition-case nil
15315 (setq tg (org-icompleting-read
15316 "Tag: "
15317 (or buffer-tags
15318 (with-current-buffer buf
15319 (setq buffer-tags
15320 (org-get-buffer-tags))))))
15321 (quit (setq tg "")))
15322 (when (string-match "\\S-" tg)
15323 (add-to-list 'buffer-tags (list tg))
15324 (if (member tg current)
15325 (setq current (delete tg current))
15326 (push tg current)))
15327 (when exit-after-next (setq exit-after-next 'now)))
15328 ((setq e (rassoc c todo-table) tg (car e))
15329 (with-current-buffer buf
15330 (save-excursion (org-todo tg)))
15331 (when exit-after-next (setq exit-after-next 'now)))
15332 ((setq e (rassoc c ntable) tg (car e))
15333 (if (member tg current)
15334 (setq current (delete tg current))
15335 (loop for g in groups do
15336 (when (member tg g)
15337 (dolist (x g) (setq current (delete x current)))))
15338 (push tg current))
15339 (when exit-after-next (setq exit-after-next 'now))))
15341 ;; Create a sorted list
15342 (setq current
15343 (sort current
15344 (lambda (a b)
15345 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15346 (when (eq exit-after-next 'now) (throw 'exit t))
15347 (goto-char (point-min))
15348 (beginning-of-line 2)
15349 (delete-region (point) (point-at-eol))
15350 (org-fast-tag-insert "Current" current c-face)
15351 (org-set-current-tags-overlay current ov-prefix)
15352 (while (re-search-forward
15353 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15354 (setq tg (match-string 1))
15355 (add-text-properties
15356 (match-beginning 1) (match-end 1)
15357 (list 'face
15358 (cond
15359 ((member tg current) c-face)
15360 ((member tg inherited) i-face)
15361 (t (get-text-property (match-beginning 1) 'face))))))
15362 (goto-char (point-min)))))
15363 (org-detach-overlay org-tags-overlay)
15364 (if rtn
15365 (mapconcat 'identity current ":")
15366 nil))))
15368 (defun org-get-tags-string ()
15369 "Get the TAGS string in the current headline."
15370 (unless (org-at-heading-p t)
15371 (user-error "Not on a heading"))
15372 (save-excursion
15373 (beginning-of-line 1)
15374 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15375 (org-match-string-no-properties 1)
15376 "")))
15378 (defun org-get-tags ()
15379 "Get the list of tags specified in the current headline."
15380 (org-split-string (org-get-tags-string) ":"))
15382 (defun org-get-buffer-tags ()
15383 "Get a table of all tags used in the buffer, for completion."
15384 (org-with-wide-buffer
15385 (goto-char (point-min))
15386 (let ((tag-re (concat org-outline-regexp-bol
15387 "\\(?:.*?[ \t]\\)?"
15388 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15389 tags)
15390 (while (re-search-forward tag-re nil t)
15391 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15392 (push tag tags)))
15393 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15395 ;;;; The mapping API
15397 (defun org-map-entries (func &optional match scope &rest skip)
15398 "Call FUNC at each headline selected by MATCH in SCOPE.
15400 FUNC is a function or a lisp form. The function will be called without
15401 arguments, with the cursor positioned at the beginning of the headline.
15402 The return values of all calls to the function will be collected and
15403 returned as a list.
15405 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15406 does not need to preserve point. After evaluation, the cursor will be
15407 moved to the end of the line (presumably of the headline of the
15408 processed entry) and search continues from there. Under some
15409 circumstances, this may not produce the wanted results. For example,
15410 if you have removed (e.g. archived) the current (sub)tree it could
15411 mean that the next entry will be skipped entirely. In such cases, you
15412 can specify the position from where search should continue by making
15413 FUNC set the variable `org-map-continue-from' to the desired buffer
15414 position.
15416 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15417 Only headlines that are matched by this query will be considered during
15418 the iteration. When MATCH is nil or t, all headlines will be
15419 visited by the iteration.
15421 SCOPE determines the scope of this command. It can be any of:
15423 nil The current buffer, respecting the restriction if any
15424 tree The subtree started with the entry at point
15425 region The entries within the active region, if any
15426 region-start-level
15427 The entries within the active region, but only those at
15428 the same level than the first one.
15429 file The current buffer, without restriction
15430 file-with-archives
15431 The current buffer, and any archives associated with it
15432 agenda All agenda files
15433 agenda-with-archives
15434 All agenda files with any archive files associated with them
15435 \(file1 file2 ...)
15436 If this is a list, all files in the list will be scanned
15438 The remaining args are treated as settings for the skipping facilities of
15439 the scanner. The following items can be given here:
15441 archive skip trees with the archive tag
15442 comment skip trees with the COMMENT keyword
15443 function or Emacs Lisp form:
15444 will be used as value for `org-agenda-skip-function', so
15445 whenever the function returns a position, FUNC will not be
15446 called for that entry and search will continue from the
15447 position returned
15449 If your function needs to retrieve the tags including inherited tags
15450 at the *current* entry, you can use the value of the variable
15451 `org-scanner-tags' which will be much faster than getting the value
15452 with `org-get-tags-at'. If your function gets properties with
15453 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15454 to t around the call to `org-entry-properties' to get the same speedup.
15455 Note that if your function moves around to retrieve tags and properties at
15456 a *different* entry, you cannot use these techniques."
15457 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15458 (not (org-region-active-p)))
15459 (let* ((org-agenda-archives-mode nil) ; just to make sure
15460 (org-agenda-skip-archived-trees (memq 'archive skip))
15461 (org-agenda-skip-comment-trees (memq 'comment skip))
15462 (org-agenda-skip-function
15463 (car (org-delete-all '(comment archive) skip)))
15464 (org-tags-match-list-sublevels t)
15465 (start-level (eq scope 'region-start-level))
15466 matcher file res
15467 org-todo-keywords-for-agenda
15468 org-done-keywords-for-agenda
15469 org-todo-keyword-alist-for-agenda
15470 org-tag-alist-for-agenda
15471 todo-only)
15473 (cond
15474 ((eq match t) (setq matcher t))
15475 ((eq match nil) (setq matcher t))
15476 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15478 (save-excursion
15479 (save-restriction
15480 (cond ((eq scope 'tree)
15481 (org-back-to-heading t)
15482 (org-narrow-to-subtree)
15483 (setq scope nil))
15484 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15485 (org-region-active-p))
15486 ;; If needed, set start-level to a string like "2"
15487 (when start-level
15488 (save-excursion
15489 (goto-char (region-beginning))
15490 (unless (org-at-heading-p) (outline-next-heading))
15491 (setq start-level (org-current-level))))
15492 (narrow-to-region (region-beginning)
15493 (save-excursion
15494 (goto-char (region-end))
15495 (unless (and (bolp) (org-at-heading-p))
15496 (outline-next-heading))
15497 (point)))
15498 (setq scope nil)))
15500 (if (not scope)
15501 (progn
15502 (org-agenda-prepare-buffers
15503 (and buffer-file-name (list buffer-file-name)))
15504 (setq res (org-scan-tags func matcher todo-only start-level)))
15505 ;; Get the right scope
15506 (cond
15507 ((and scope (listp scope) (symbolp (car scope)))
15508 (setq scope (eval scope)))
15509 ((eq scope 'agenda)
15510 (setq scope (org-agenda-files t)))
15511 ((eq scope 'agenda-with-archives)
15512 (setq scope (org-agenda-files t))
15513 (setq scope (org-add-archive-files scope)))
15514 ((eq scope 'file)
15515 (setq scope (and buffer-file-name (list buffer-file-name))))
15516 ((eq scope 'file-with-archives)
15517 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15518 (org-agenda-prepare-buffers scope)
15519 (dolist (file scope)
15520 (with-current-buffer (org-find-base-buffer-visiting file)
15521 (save-excursion
15522 (save-restriction
15523 (widen)
15524 (goto-char (point-min))
15525 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15526 res)))
15528 ;;; Properties API
15530 (defconst org-special-properties
15531 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15532 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15533 "The special properties valid in Org mode.
15534 These are properties that are not defined in the property drawer,
15535 but in some other way.")
15537 (defconst org-default-properties
15538 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15539 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15540 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15541 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15542 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15543 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15544 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15545 "Some properties that are used by Org mode for various purposes.
15546 Being in this list makes sure that they are offered for completion.")
15548 (defun org--update-property-plist (key val props)
15549 "Associate KEY to VAL in alist PROPS.
15550 Modifications are made by side-effect. Return new alist."
15551 (let* ((appending (string= (substring key -1) "+"))
15552 (key (if appending (substring key 0 -1) key))
15553 (old (assoc-string key props t)))
15554 (if (not old) (cons (cons key val) props)
15555 (setcdr old (if appending (concat (cdr old) " " val) val))
15556 props)))
15558 (defun org-get-property-block (&optional beg force)
15559 "Return the (beg . end) range of the body of the property drawer.
15560 BEG is the beginning of the current subtree, or of the part
15561 before the first headline. If it is not given, it will be found.
15562 If the drawer does not exist, create it if FORCE is non-nil, or
15563 return nil."
15564 (org-with-wide-buffer
15565 (when beg (goto-char beg))
15566 (unless (org-before-first-heading-p)
15567 (let ((beg (cond (beg)
15568 ((or (not (featurep 'org-inlinetask))
15569 (org-inlinetask-in-task-p))
15570 (org-back-to-heading t))
15571 (t (org-with-limited-levels (org-back-to-heading t))))))
15572 (forward-line)
15573 (when (org-looking-at-p org-planning-line-re) (forward-line))
15574 (cond ((looking-at org-property-drawer-re)
15575 (forward-line)
15576 (cons (point) (progn (goto-char (match-end 0))
15577 (line-beginning-position))))
15578 (force
15579 (goto-char beg)
15580 (org-insert-property-drawer)
15581 (let ((pos (save-excursion (search-forward ":END:")
15582 (line-beginning-position))))
15583 (cons pos pos))))))))
15585 (defun org-at-property-p ()
15586 "Non-nil when point is inside a property drawer.
15587 See `org-property-re' for match data, if applicable."
15588 (save-excursion
15589 (beginning-of-line)
15590 (and (looking-at org-property-re)
15591 (let ((property-drawer (save-match-data (org-get-property-block))))
15592 (and property-drawer
15593 (>= (point) (car property-drawer))
15594 (< (point) (cdr property-drawer)))))))
15596 (defun org-property-action ()
15597 "Do an action on properties."
15598 (interactive)
15599 (unless (org-at-property-p) (user-error "Not at a property"))
15600 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15601 (let ((c (read-char-exclusive)))
15602 (case c
15603 (?s (call-interactively #'org-set-property))
15604 (?d (call-interactively #'org-delete-property))
15605 (?D (call-interactively #'org-delete-property-globally))
15606 (?c (call-interactively #'org-compute-property-at-point))
15607 (otherwise (user-error "No such property action %c" c)))))
15609 (defun org-inc-effort ()
15610 "Increment the value of the effort property in the current entry."
15611 (interactive)
15612 (org-set-effort nil t))
15614 (defvar org-clock-effort) ; Defined in org-clock.el.
15615 (defvar org-clock-current-task) ; Defined in org-clock.el.
15616 (defun org-set-effort (&optional value increment)
15617 "Set the effort property of the current entry.
15618 With numerical prefix arg, use the nth allowed value, 0 stands for the
15619 10th allowed value.
15621 When INCREMENT is non-nil, set the property to the next allowed value."
15622 (interactive "P")
15623 (if (equal value 0) (setq value 10))
15624 (let* ((completion-ignore-case t)
15625 (prop org-effort-property)
15626 (cur (org-entry-get nil prop))
15627 (allowed (org-property-get-allowed-values nil prop 'table))
15628 (existing (mapcar 'list (org-property-values prop)))
15629 (heading (nth 4 (org-heading-components)))
15631 (val (cond
15632 ((stringp value) value)
15633 ((and allowed (integerp value))
15634 (or (car (nth (1- value) allowed))
15635 (car (org-last allowed))))
15636 ((and allowed increment)
15637 (or (caadr (member (list cur) allowed))
15638 (user-error "Allowed effort values are not set")))
15639 (allowed
15640 (message "Select 1-9,0, [RET%s]: %s"
15641 (if cur (concat "=" cur) "")
15642 (mapconcat 'car allowed " "))
15643 (setq rpl (read-char-exclusive))
15644 (if (equal rpl ?\r)
15646 (setq rpl (- rpl ?0))
15647 (if (equal rpl 0) (setq rpl 10))
15648 (if (and (> rpl 0) (<= rpl (length allowed)))
15649 (car (nth (1- rpl) allowed))
15650 (org-completing-read "Effort: " allowed nil))))
15652 (let (org-completion-use-ido org-completion-use-iswitchb)
15653 (org-completing-read
15654 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15655 (concat "[" cur "]") "")
15656 ": ")
15657 existing nil nil "" nil cur))))))
15658 (unless (equal (org-entry-get nil prop) val)
15659 (org-entry-put nil prop val))
15660 (org-refresh-property
15661 '((effort . identity)
15662 (effort-minutes . org-duration-string-to-minutes))
15663 val)
15664 (when (string= heading org-clock-current-task)
15665 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15666 (org-clock-update-mode-line))
15667 (message "%s is now %s" prop val)))
15669 (defun org-entry-properties (&optional pom which)
15670 "Get all properties of the current entry.
15672 When POM is a buffer position, get all properties from the entry
15673 there instead.
15675 This includes the TODO keyword, the tags, time strings for
15676 deadline, scheduled, and clocking, and any additional properties
15677 defined in the entry.
15679 If WHICH is nil or `all', get all properties. If WHICH is
15680 `special' or `standard', only get that subclass. If WHICH is
15681 a string, only get that property.
15683 Return value is an alist. Keys are properties, as upcased
15684 strings."
15685 (org-with-point-at pom
15686 (when (and (derived-mode-p 'org-mode)
15687 (ignore-errors (org-back-to-heading t)))
15688 (catch 'exit
15689 (let* ((beg (point))
15690 (specific (and (stringp which) (upcase which)))
15691 (which (cond ((not specific) which)
15692 ((member specific org-special-properties) 'special)
15693 (t 'standard)))
15694 props)
15695 ;; Get the special properties, like TODO and TAGS.
15696 (when (memq which '(nil all special))
15697 (when (or (not specific) (string= specific "CLOCKSUM"))
15698 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15699 (when clocksum
15700 (push (cons "CLOCKSUM"
15701 (org-columns-number-to-string
15702 (/ (float clocksum) 60.) 'add_times))
15703 props)))
15704 (when specific (throw 'exit props)))
15705 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15706 (let ((clocksumt (get-text-property (point)
15707 :org-clock-minutes-today)))
15708 (when clocksumt
15709 (push (cons "CLOCKSUM_T"
15710 (org-columns-number-to-string
15711 (/ (float clocksumt) 60.) 'add_times))
15712 props)))
15713 (when specific (throw 'exit props)))
15714 (when (or (not specific) (string= specific "ITEM"))
15715 (when (looking-at org-complex-heading-regexp)
15716 (push (cons "ITEM"
15717 (concat
15718 (org-match-string-no-properties 1)
15719 (let ((title (org-match-string-no-properties 4)))
15720 (when (org-string-nw-p title)
15721 (concat " " (org-remove-tabs title))))))
15722 props))
15723 (when specific (throw 'exit props)))
15724 (when (or (not specific) (string= specific "TODO"))
15725 (let ((case-fold-search nil))
15726 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15727 (push (cons "TODO" (org-match-string-no-properties 2)) props)))
15728 (when specific (throw 'exit props)))
15729 (when (or (not specific) (string= specific "PRIORITY"))
15730 (when (looking-at org-priority-regexp)
15731 (push (cons "PRIORITY" (org-match-string-no-properties 2))
15732 props))
15733 (when specific (throw 'exit props)))
15734 (when (or (not specific) (string= specific "FILE"))
15735 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15736 props)
15737 (when specific (throw 'exit props)))
15738 (when (or (not specific) (string= specific "TAGS"))
15739 (let ((value (org-string-nw-p (org-get-tags-string))))
15740 (when value (push (cons "TAGS" value) props)))
15741 (when specific (throw 'exit props)))
15742 (when (or (not specific) (string= specific "ALLTAGS"))
15743 (let ((value (org-get-tags-at)))
15744 (when value
15745 (push (cons "ALLTAGS"
15746 (format ":%s:" (mapconcat #'identity value ":")))
15747 props)))
15748 (when specific (throw 'exit props)))
15749 (when (or (not specific) (string= specific "BLOCKED"))
15750 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15751 (when specific (throw 'exit props)))
15752 (when (or (not specific)
15753 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15754 (forward-line)
15755 (when (org-looking-at-p org-planning-line-re)
15756 (end-of-line)
15757 (let ((bol (line-beginning-position))
15758 ;; Backward compatibility: time keywords used to
15759 ;; be configurable (before 8.3). Make sure we
15760 ;; get the correct keyword.
15761 (key-assoc `(("CLOSED" . ,org-closed-string)
15762 ("DEADLINE" . ,org-deadline-string)
15763 ("SCHEDULED" . ,org-scheduled-string))))
15764 (dolist (pair (if specific (list (assoc specific key-assoc))
15765 key-assoc))
15766 (save-excursion
15767 (when (search-backward (cdr pair) bol t)
15768 (goto-char (match-end 0))
15769 (skip-chars-forward " \t")
15770 (and (looking-at org-ts-regexp-both)
15771 (push (cons (car pair)
15772 (org-match-string-no-properties 0))
15773 props)))))))
15774 (when specific (throw 'exit props)))
15775 (when (or (not specific)
15776 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15777 (let ((find-ts
15778 (lambda (end ts)
15779 (let ((regexp (cond
15780 ((string= specific "TIMESTAMP")
15781 org-ts-regexp)
15782 ((string= specific "TIMESTAMP_IA")
15783 org-ts-regexp-inactive)
15784 ((assoc "TIMESTAMP_IA" ts)
15785 org-ts-regexp)
15786 ((assoc "TIMESTAMP" ts)
15787 org-ts-regexp-inactive)
15788 (t org-ts-regexp-both))))
15789 (catch 'next
15790 (while (re-search-forward regexp end t)
15791 (backward-char)
15792 (let ((object (org-element-context)))
15793 ;; Accept to match timestamps in node
15794 ;; properties, too.
15795 (when (memq (org-element-type object)
15796 '(node-property timestamp))
15797 (let ((type
15798 (org-element-property :type object)))
15799 (cond
15800 ((and (memq type '(active active-range))
15801 (not (equal specific "TIMESTAMP_IA")))
15802 (unless (assoc "TIMESTAMP" ts)
15803 (push (cons "TIMESTAMP"
15804 (org-element-property
15805 :raw-value object))
15807 (when specific (throw 'exit ts))))
15808 ((and (memq type '(inactive inactive-range))
15809 (not (string= specific "TIMESTAMP")))
15810 (unless (assoc "TIMESTAMP_IA" ts)
15811 (push (cons "TIMESTAMP_IA"
15812 (org-element-property
15813 :raw-value object))
15815 (when specific (throw 'exit ts))))))
15816 ;; Both timestamp types are found,
15817 ;; move to next part.
15818 (when (= (length ts) 2) (throw 'next ts)))))
15819 ts)))))
15820 (goto-char beg)
15821 ;; First look for timestamps within headline.
15822 (let ((ts (funcall find-ts (line-end-position) nil)))
15823 (if (= (length ts) 2) (setq props (nconc ts props))
15824 (forward-line)
15825 ;; Then find timestamps in the section, skipping
15826 ;; planning line.
15827 (when (org-looking-at-p org-planning-line-re)
15828 (forward-line))
15829 (let ((end (save-excursion (outline-next-heading))))
15830 (setq props (nconc (funcall find-ts end ts) props))))))))
15831 ;; Get the standard properties, like :PROP:.
15832 (when (memq which '(nil all standard))
15833 ;; If we are looking after a specific property, delegate
15834 ;; to `org-entry-get', which is faster. However, make an
15835 ;; exception for "CATEGORY", since it can be also set
15836 ;; through keywords (i.e. #+CATEGORY).
15837 (if (and specific (not (equal specific "CATEGORY")))
15838 (let ((value (org-entry-get beg specific nil t)))
15839 (throw 'exit (and value (list (cons specific value)))))
15840 (let ((range (org-get-property-block beg)))
15841 (when range
15842 (let ((end (cdr range)) seen-base)
15843 (goto-char (car range))
15844 ;; Unlike to `org--update-property-plist', we
15845 ;; handle the case where base values is found
15846 ;; after its extension. We also forbid standard
15847 ;; properties to be named as special properties.
15848 (while (re-search-forward org-property-re end t)
15849 (let* ((key (upcase (org-match-string-no-properties 2)))
15850 (extendp (org-string-match-p "\\+\\'" key))
15851 (key-base (if extendp (substring key 0 -1) key))
15852 (value (org-match-string-no-properties 3)))
15853 (cond
15854 ((member-ignore-case key-base org-special-properties))
15855 (extendp
15856 (setq props
15857 (org--update-property-plist key value props)))
15858 ((member key seen-base))
15859 (t (push key seen-base)
15860 (let ((p (assoc-string key props t)))
15861 (if p (setcdr p (concat value " " (cdr p)))
15862 (push (cons key value) props))))))))))))
15863 (unless (assoc "CATEGORY" props)
15864 (push (cons "CATEGORY" (org-get-category beg)) props)
15865 (when (string= specific "CATEGORY") (throw 'exit props)))
15866 ;; Return value.
15867 props)))))
15869 (defun org-property--local-values (property literal-nil)
15870 "Return value for PROPERTY in current entry.
15871 Value is a list whose care is the base value for PROPERTY and cdr
15872 a list of accumulated values. Return nil if neither is found in
15873 the entry. Also return nil when PROPERTY is set to \"nil\",
15874 unless LITERAL-NIL is non-nil."
15875 (let ((range (org-get-property-block)))
15876 (when range
15877 (goto-char (car range))
15878 (let* ((case-fold-search t)
15879 (end (cdr range))
15880 (value
15881 ;; Base value.
15882 (save-excursion
15883 (let ((v (and (re-search-forward
15884 (org-re-property property nil t) end t)
15885 (org-match-string-no-properties 3))))
15886 (list (if literal-nil v (org-not-nil v)))))))
15887 ;; Find additional values.
15888 (let* ((property+ (org-re-property (concat property "+") nil t)))
15889 (while (re-search-forward property+ end t)
15890 (push (org-match-string-no-properties 3) value)))
15891 ;; Return final values.
15892 (and (not (equal value '(nil))) (nreverse value))))))
15894 (defun org-entry-get (pom property &optional inherit literal-nil)
15895 "Get value of PROPERTY for entry or content at point-or-marker POM.
15897 If INHERIT is non-nil and the entry does not have the property,
15898 then also check higher levels of the hierarchy. If INHERIT is
15899 the symbol `selective', use inheritance only if the setting in
15900 `org-use-property-inheritance' selects PROPERTY for inheritance.
15902 If the property is present but empty, the return value is the
15903 empty string. If the property is not present at all, nil is
15904 returned. In any other case, return the value as a string.
15905 Search is case-insensitive.
15907 If LITERAL-NIL is set, return the string value \"nil\" as
15908 a string, do not interpret it as the list atom nil. This is used
15909 for inheritance when a \"nil\" value can supersede a non-nil
15910 value higher up the hierarchy."
15911 (org-with-point-at pom
15912 (cond
15913 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15914 ;; We need a special property. Use `org-entry-properties' to
15915 ;; retrieve it, but specify the wanted property.
15916 (cdr (assoc-string property (org-entry-properties nil property))))
15917 ((and inherit
15918 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15919 (org-entry-get-with-inheritance property literal-nil))
15921 (let* ((local (org-property--local-values property literal-nil))
15922 (value (and local (mapconcat #'identity (delq nil local) " "))))
15923 (if literal-nil value (org-not-nil value)))))))
15925 (defun org-property-or-variable-value (var &optional inherit)
15926 "Check if there is a property fixing the value of VAR.
15927 If yes, return this value. If not, return the current value of the variable."
15928 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15929 (if (and prop (stringp prop) (string-match "\\S-" prop))
15930 (read prop)
15931 (symbol-value var))))
15933 (defun org-entry-delete (pom property)
15934 "Delete PROPERTY from entry at point-or-marker POM.
15935 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15936 non-nil when a property was removed."
15937 (unless (member property org-special-properties)
15938 (org-with-point-at pom
15939 (let ((range (org-get-property-block)))
15940 (when range
15941 (let* ((begin (car range))
15942 (origin (cdr range))
15943 (end (copy-marker origin))
15944 (re (org-re-property
15945 (concat (regexp-quote property) "\\+?") t t)))
15946 (goto-char begin)
15947 (while (re-search-forward re end t)
15948 (delete-region (match-beginning 0) (line-beginning-position 2)))
15949 ;; If drawer is empty, remove it altogether.
15950 (when (= begin end)
15951 (delete-region (line-beginning-position 0)
15952 (line-beginning-position 2)))
15953 ;; Return non-nil if some property was removed.
15954 (prog1 (/= end origin) (set-marker end nil))))))))
15956 ;; Multi-values properties are properties that contain multiple values
15957 ;; These values are assumed to be single words, separated by whitespace.
15958 (defun org-entry-add-to-multivalued-property (pom property value)
15959 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15960 (let* ((old (org-entry-get pom property))
15961 (values (and old (org-split-string old "[ \t]"))))
15962 (setq value (org-entry-protect-space value))
15963 (unless (member value values)
15964 (setq values (append values (list value)))
15965 (org-entry-put pom property
15966 (mapconcat 'identity values " ")))))
15968 (defun org-entry-remove-from-multivalued-property (pom property value)
15969 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15970 (let* ((old (org-entry-get pom property))
15971 (values (and old (org-split-string old "[ \t]"))))
15972 (setq value (org-entry-protect-space value))
15973 (when (member value values)
15974 (setq values (delete value values))
15975 (org-entry-put pom property
15976 (mapconcat 'identity values " ")))))
15978 (defun org-entry-member-in-multivalued-property (pom property value)
15979 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15980 (let* ((old (org-entry-get pom property))
15981 (values (and old (org-split-string old "[ \t]"))))
15982 (setq value (org-entry-protect-space value))
15983 (member value values)))
15985 (defun org-entry-get-multivalued-property (pom property)
15986 "Return a list of values in a multivalued property."
15987 (let* ((value (org-entry-get pom property))
15988 (values (and value (org-split-string value "[ \t]"))))
15989 (mapcar 'org-entry-restore-space values)))
15991 (defun org-entry-put-multivalued-property (pom property &rest values)
15992 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15993 VALUES should be a list of strings. Spaces will be protected."
15994 (org-entry-put pom property
15995 (mapconcat 'org-entry-protect-space values " "))
15996 (let* ((value (org-entry-get pom property))
15997 (values (and value (org-split-string value "[ \t]"))))
15998 (mapcar 'org-entry-restore-space values)))
16000 (defun org-entry-protect-space (s)
16001 "Protect spaces and newline in string S."
16002 (while (string-match " " s)
16003 (setq s (replace-match "%20" t t s)))
16004 (while (string-match "\n" s)
16005 (setq s (replace-match "%0A" t t s)))
16008 (defun org-entry-restore-space (s)
16009 "Restore spaces and newline in string S."
16010 (while (string-match "%20" s)
16011 (setq s (replace-match " " t t s)))
16012 (while (string-match "%0A" s)
16013 (setq s (replace-match "\n" t t s)))
16016 (defvar org-entry-property-inherited-from (make-marker)
16017 "Marker pointing to the entry from where a property was inherited.
16018 Each call to `org-entry-get-with-inheritance' will set this marker to the
16019 location of the entry where the inheritance search matched. If there was
16020 no match, the marker will point nowhere.
16021 Note that also `org-entry-get' calls this function, if the INHERIT flag
16022 is set.")
16024 (defun org-entry-get-with-inheritance (property &optional literal-nil)
16025 "Get PROPERTY of entry or content at point, search higher levels if needed.
16026 The search will stop at the first ancestor which has the property defined.
16027 If the value found is \"nil\", return nil to show that the property
16028 should be considered as undefined (this is the meaning of nil here).
16029 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
16030 (move-marker org-entry-property-inherited-from nil)
16031 (org-with-wide-buffer
16032 (let (value)
16033 (catch 'exit
16034 (while t
16035 (let ((v (org-property--local-values property literal-nil)))
16036 (when v
16037 (setq value
16038 (concat (mapconcat #'identity (delq nil v) " ")
16039 (and value " ")
16040 value)))
16041 (cond
16042 ((car v)
16043 (org-back-to-heading t)
16044 (move-marker org-entry-property-inherited-from (point))
16045 (throw 'exit nil))
16046 ((org-up-heading-safe))
16048 (let ((global
16049 (cdr (or (assoc-string property org-file-properties t)
16050 (assoc-string property org-global-properties t)
16051 (assoc-string property org-global-properties-fixed t)))))
16052 (cond ((not global))
16053 (value (setq value (concat global " " value)))
16054 (t (setq value global))))
16055 (throw 'exit nil))))))
16056 (if literal-nil value (org-not-nil value)))))
16058 (defvar org-property-changed-functions nil
16059 "Hook called when the value of a property has changed.
16060 Each hook function should accept two arguments, the name of the property
16061 and the new value.")
16063 (defun org-entry-put (pom property value)
16064 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16066 If the value is nil, it is converted to the empty string. If
16067 it is not a string, an error is raised.
16069 PROPERTY can be any regular property (see
16070 `org-special-properties'). It can also be \"TODO\",
16071 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16073 For the last two properties, VALUE may have any of the special
16074 values \"earlier\" and \"later\". The function then increases or
16075 decreases scheduled or deadline date by one day."
16076 (cond ((null value) (setq value ""))
16077 ((not (stringp value)) (error "Properties values should be strings")))
16078 (org-with-point-at pom
16079 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16080 (org-back-to-heading t)
16081 (org-with-limited-levels (org-back-to-heading t)))
16082 (let ((beg (point)))
16083 (cond
16084 ((equal property "TODO")
16085 (cond ((not (org-string-nw-p value)) (setq value 'none))
16086 ((not (member value org-todo-keywords-1))
16087 (user-error "\"%s\" is not a valid TODO state" value)))
16088 (org-todo value)
16089 (org-set-tags nil 'align))
16090 ((equal property "PRIORITY")
16091 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16092 (org-set-tags nil 'align))
16093 ((equal property "SCHEDULED")
16094 (forward-line)
16095 (if (and (org-looking-at-p org-planning-line-re)
16096 (re-search-forward
16097 org-scheduled-time-regexp (line-end-position) t))
16098 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16099 ((string= value "later") (org-timestamp-change 1 'day))
16100 ((string= value "") (org-schedule '(4)))
16101 (t (org-schedule nil value)))
16102 (if (member value '("earlier" "later" ""))
16103 (call-interactively #'org-schedule)
16104 (org-schedule nil value))))
16105 ((equal property "DEADLINE")
16106 (forward-line)
16107 (if (and (org-looking-at-p org-planning-line-re)
16108 (re-search-forward
16109 org-deadline-time-regexp (line-end-position) t))
16110 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16111 ((string= value "later") (org-timestamp-change 1 'day))
16112 ((string= value "") (org-deadline '(4)))
16113 (t (org-deadline nil value)))
16114 (if (member value '("earlier" "later" ""))
16115 (call-interactively #'org-deadline)
16116 (org-deadline nil value))))
16117 ((member property org-special-properties)
16118 (error "The %s property cannot be set with `org-entry-put'" property))
16120 (let* ((range (org-get-property-block beg 'force))
16121 (end (cdr range))
16122 (case-fold-search t))
16123 (goto-char (car range))
16124 (if (re-search-forward (org-re-property property nil t) end t)
16125 (progn (delete-region (match-beginning 0) (match-end 0))
16126 (goto-char (match-beginning 0)))
16127 (goto-char end)
16128 (insert "\n")
16129 (backward-char))
16130 (insert ":" property ":")
16131 (when value (insert " " value))
16132 (org-indent-line)))))
16133 (run-hook-with-args 'org-property-changed-functions property value)))
16135 (defun org-buffer-property-keys (&optional specials defaults columns)
16136 "Get all property keys in the current buffer.
16138 When SPECIALS is non-nil, also list the special properties that
16139 reflect things like tags and TODO state.
16141 When DEFAULTS is non-nil, also include properties that has
16142 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16143 DESCRIPTION, LOCATION, and LOGGING and others.
16145 When COLUMNS in non-nil, also include property names given in
16146 COLUMN formats in the current buffer."
16147 (let ((case-fold-search t)
16148 (props (append
16149 (and specials org-special-properties)
16150 (and defaults (cons org-effort-property org-default-properties))
16151 nil)))
16152 (org-with-wide-buffer
16153 (goto-char (point-min))
16154 (while (re-search-forward org-property-start-re nil t)
16155 (let ((range (org-get-property-block)))
16156 (catch 'skip
16157 (unless range
16158 (when (and (not (org-before-first-heading-p))
16159 (y-or-n-p (format "Malformed drawer at %d, repair?"
16160 (line-beginning-position))))
16161 (org-get-property-block nil t))
16162 (throw 'skip nil))
16163 (goto-char (car range))
16164 (let ((begin (car range))
16165 (end (cdr range)))
16166 ;; Make sure that found property block is not located
16167 ;; before current point, as it would generate an infloop.
16168 ;; It can happen, for example, in the following
16169 ;; situation:
16171 ;; * Headline
16172 ;; :PROPERTIES:
16173 ;; ...
16174 ;; :END:
16175 ;; *************** Inlinetask
16176 ;; #+BEGIN_EXAMPLE
16177 ;; :PROPERTIES:
16178 ;; #+END_EXAMPLE
16180 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16181 (while (< (point) end)
16182 (let ((p (progn (looking-at org-property-re)
16183 (org-match-string-no-properties 2))))
16184 ;; Only add true property name, not extension symbol.
16185 (add-to-list 'props
16186 (if (not (org-string-match-p "\\+\\'" p)) p
16187 (substring p 0 -1))))
16188 (forward-line))))
16189 (outline-next-heading)))
16190 (when columns
16191 (goto-char (point-min))
16192 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16193 (let ((element (org-element-at-point)))
16194 (when (memq (org-element-type element) '(keyword node-property))
16195 (let ((value (org-element-property :value element))
16196 (start 0))
16197 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16198 (setq start (match-end 0))
16199 (let ((p (org-match-string-no-properties 1 value)))
16200 (unless (member-ignore-case p org-special-properties)
16201 (add-to-list 'props p))))))))))
16202 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16204 (defun org-property-values (key)
16205 "List all non-nil values of property KEY in current buffer."
16206 (org-with-wide-buffer
16207 (goto-char (point-min))
16208 (let ((case-fold-search t)
16209 (re (org-re-property key))
16210 values)
16211 (while (re-search-forward re nil t)
16212 (add-to-list 'values (org-entry-get (point) key)))
16213 values)))
16215 (defun org-insert-property-drawer ()
16216 "Insert a property drawer into the current entry."
16217 (org-with-wide-buffer
16218 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16219 (org-back-to-heading t)
16220 (org-with-limited-levels (org-back-to-heading t)))
16221 (forward-line)
16222 (when (org-looking-at-p org-planning-line-re) (forward-line))
16223 (unless (org-looking-at-p org-property-drawer-re)
16224 (let ((inhibit-read-only t))
16225 (unless (bolp) (insert "\n"))
16226 (let ((begin (point)))
16227 (insert ":PROPERTIES:\n:END:\n")
16228 (org-indent-region begin (point)))))))
16230 (defun org-insert-drawer (&optional arg drawer)
16231 "Insert a drawer at point.
16233 When optional argument ARG is non-nil, insert a property drawer.
16235 Optional argument DRAWER, when non-nil, is a string representing
16236 drawer's name. Otherwise, the user is prompted for a name.
16238 If a region is active, insert the drawer around that region
16239 instead.
16241 Point is left between drawer's boundaries."
16242 (interactive "P")
16243 (let* ((drawer (if arg "PROPERTIES"
16244 (or drawer (read-from-minibuffer "Drawer: ")))))
16245 (cond
16246 ;; With C-u, fall back on `org-insert-property-drawer'
16247 (arg (org-insert-property-drawer))
16248 ;; Check validity of suggested drawer's name.
16249 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16250 (user-error "Invalid drawer name"))
16251 ;; With an active region, insert a drawer at point.
16252 ((not (org-region-active-p))
16253 (progn
16254 (unless (bolp) (insert "\n"))
16255 (insert (format ":%s:\n\n:END:\n" drawer))
16256 (forward-line -2)))
16257 ;; Otherwise, insert the drawer at point
16259 (let ((rbeg (region-beginning))
16260 (rend (copy-marker (region-end))))
16261 (unwind-protect
16262 (progn
16263 (goto-char rbeg)
16264 (beginning-of-line)
16265 (when (save-excursion
16266 (re-search-forward org-outline-regexp-bol rend t))
16267 (user-error "Drawers cannot contain headlines"))
16268 ;; Position point at the beginning of the first
16269 ;; non-blank line in region. Insert drawer's opening
16270 ;; there, then indent it.
16271 (org-skip-whitespace)
16272 (beginning-of-line)
16273 (insert ":" drawer ":\n")
16274 (forward-line -1)
16275 (indent-for-tab-command)
16276 ;; Move point to the beginning of the first blank line
16277 ;; after the last non-blank line in region. Insert
16278 ;; drawer's closing, then indent it.
16279 (goto-char rend)
16280 (skip-chars-backward " \r\t\n")
16281 (insert "\n:END:")
16282 (deactivate-mark t)
16283 (indent-for-tab-command)
16284 (unless (eolp) (insert "\n")))
16285 ;; Clear marker, whatever the outcome of insertion is.
16286 (set-marker rend nil)))))))
16288 (defvar org-property-set-functions-alist nil
16289 "Property set function alist.
16290 Each entry should have the following format:
16292 (PROPERTY . READ-FUNCTION)
16294 The read function will be called with the same argument as
16295 `org-completing-read'.")
16297 (defun org-set-property-function (property)
16298 "Get the function that should be used to set PROPERTY.
16299 This is computed according to `org-property-set-functions-alist'."
16300 (or (cdr (assoc property org-property-set-functions-alist))
16301 'org-completing-read))
16303 (defun org-read-property-value (property)
16304 "Read PROPERTY value from user."
16305 (let* ((completion-ignore-case t)
16306 (allowed (org-property-get-allowed-values nil property 'table))
16307 (cur (org-entry-get nil property))
16308 (prompt (concat property " value"
16309 (if (and cur (string-match "\\S-" cur))
16310 (concat " [" cur "]") "") ": "))
16311 (set-function (org-set-property-function property))
16312 (val (if allowed
16313 (funcall set-function prompt allowed nil
16314 (not (get-text-property 0 'org-unrestricted
16315 (caar allowed))))
16316 (let (org-completion-use-ido org-completion-use-iswitchb)
16317 (funcall set-function prompt
16318 (mapcar 'list (org-property-values property))
16319 nil nil "" nil cur)))))
16320 (org-trim val)))
16322 (defvar org-last-set-property nil)
16323 (defvar org-last-set-property-value nil)
16324 (defun org-read-property-name ()
16325 "Read a property name."
16326 (let ((completion-ignore-case t)
16327 (default-prop (or (and (org-at-property-p)
16328 (org-match-string-no-properties 2))
16329 org-last-set-property)))
16330 (org-completing-read
16331 (concat "Property"
16332 (if default-prop (concat " [" default-prop "]") "")
16333 ": ")
16334 (mapcar #'list (org-buffer-property-keys nil t t))
16335 nil nil nil nil default-prop)))
16337 (defun org-set-property-and-value (use-last)
16338 "Allow to set [PROPERTY]: [value] direction from prompt.
16339 When use-default, don't even ask, just use the last
16340 \"[PROPERTY]: [value]\" string from the history."
16341 (interactive "P")
16342 (let* ((completion-ignore-case t)
16343 (pv (or (and use-last org-last-set-property-value)
16344 (org-completing-read
16345 "Enter a \"[Property]: [value]\" pair: "
16346 nil nil nil nil nil
16347 org-last-set-property-value)))
16348 prop val)
16349 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16350 (setq prop (match-string 1 pv)
16351 val (match-string 2 pv))
16352 (org-set-property prop val))))
16354 (defun org-set-property (property value)
16355 "In the current entry, set PROPERTY to VALUE.
16356 When called interactively, this will prompt for a property name, offering
16357 completion on existing and default properties. And then it will prompt
16358 for a value, offering completion either on allowed values (via an inherited
16359 xxx_ALL property) or on existing values in other instances of this property
16360 in the current file."
16361 (interactive (list nil nil))
16362 (let* ((property (or property (org-read-property-name)))
16363 (value (or value (org-read-property-value property)))
16364 (fn (cdr (assoc property org-properties-postprocess-alist))))
16365 (setq org-last-set-property property)
16366 (setq org-last-set-property-value (concat property ": " value))
16367 ;; Possibly postprocess the inserted value:
16368 (when fn (setq value (funcall fn value)))
16369 (unless (equal (org-entry-get nil property) value)
16370 (org-entry-put nil property value))))
16372 (defun org-find-property (property &optional value)
16373 "Find first entry in buffer that sets PROPERTY.
16375 When optional argument VALUE is non-nil, only consider an entry
16376 if it contains PROPERTY set to this value. If PROPERTY should be
16377 explicitly set to nil, use string \"nil\" for VALUE.
16379 Return position where the entry begins, or nil if there is no
16380 such entry. If narrowing is in effect, only search the visible
16381 part of the buffer."
16382 (save-excursion
16383 (goto-char (point-min))
16384 (let ((case-fold-search t)
16385 (re (org-re-property property nil (not value) value)))
16386 (catch 'exit
16387 (while (re-search-forward re nil t)
16388 (when (if value (org-at-property-p)
16389 (org-entry-get (point) property nil t))
16390 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16392 (defun org-delete-property (property)
16393 "In the current entry, delete PROPERTY."
16394 (interactive
16395 (let* ((completion-ignore-case t)
16396 (cat (org-entry-get (point) "CATEGORY"))
16397 (props0 (org-entry-properties nil 'standard))
16398 (props (if cat props0
16399 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16400 (prop (if (< 1 (length props))
16401 (org-icompleting-read "Property: " props nil t)
16402 (caar props))))
16403 (list prop)))
16404 (if (not property)
16405 (message "No property to delete in this entry")
16406 (org-entry-delete nil property)
16407 (message "Property \"%s\" deleted" property)))
16409 (defun org-delete-property-globally (property)
16410 "Remove PROPERTY globally, from all entries.
16411 This function ignores narrowing, if any."
16412 (interactive
16413 (let* ((completion-ignore-case t)
16414 (prop (org-icompleting-read
16415 "Globally remove property: "
16416 (mapcar #'list (org-buffer-property-keys)))))
16417 (list prop)))
16418 (org-with-wide-buffer
16419 (goto-char (point-min))
16420 (let ((count 0)
16421 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16422 (while (re-search-forward re nil t)
16423 (when (org-entry-delete (point) property) (incf count)))
16424 (message "Property \"%s\" removed from %d entries" property count))))
16426 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16428 (defun org-compute-property-at-point ()
16429 "Compute the property at point.
16430 This looks for an enclosing column format, extracts the operator and
16431 then applies it to the property in the column format's scope."
16432 (interactive)
16433 (unless (org-at-property-p)
16434 (user-error "Not at a property"))
16435 (let ((prop (org-match-string-no-properties 2)))
16436 (org-columns-get-format-and-top-level)
16437 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16438 (user-error "No operator defined for property %s" prop))
16439 (org-columns-compute prop)))
16441 (defvar org-property-allowed-value-functions nil
16442 "Hook for functions supplying allowed values for a specific property.
16443 The functions must take a single argument, the name of the property, and
16444 return a flat list of allowed values. If \":ETC\" is one of
16445 the values, this means that these values are intended as defaults for
16446 completion, but that other values should be allowed too.
16447 The functions must return nil if they are not responsible for this
16448 property.")
16450 (defun org-property-get-allowed-values (pom property &optional table)
16451 "Get allowed values for the property PROPERTY.
16452 When TABLE is non-nil, return an alist that can directly be used for
16453 completion."
16454 (let (vals)
16455 (cond
16456 ((equal property "TODO")
16457 (setq vals (org-with-point-at pom
16458 (append org-todo-keywords-1 '("")))))
16459 ((equal property "PRIORITY")
16460 (let ((n org-lowest-priority))
16461 (while (>= n org-highest-priority)
16462 (push (char-to-string n) vals)
16463 (setq n (1- n)))))
16464 ((equal property "CATEGORY"))
16465 ((member property org-special-properties))
16466 ((setq vals (run-hook-with-args-until-success
16467 'org-property-allowed-value-functions property)))
16469 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16470 (when (and vals (string-match "\\S-" vals))
16471 (setq vals (car (read-from-string (concat "(" vals ")"))))
16472 (setq vals (mapcar (lambda (x)
16473 (cond ((stringp x) x)
16474 ((numberp x) (number-to-string x))
16475 ((symbolp x) (symbol-name x))
16476 (t "???")))
16477 vals)))))
16478 (when (member ":ETC" vals)
16479 (setq vals (remove ":ETC" vals))
16480 (org-add-props (car vals) '(org-unrestricted t)))
16481 (if table (mapcar 'list vals) vals)))
16483 (defun org-property-previous-allowed-value (&optional previous)
16484 "Switch to the next allowed value for this property."
16485 (interactive)
16486 (org-property-next-allowed-value t))
16488 (defun org-property-next-allowed-value (&optional previous)
16489 "Switch to the next allowed value for this property."
16490 (interactive)
16491 (unless (org-at-property-p)
16492 (user-error "Not at a property"))
16493 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16494 (key (match-string 2))
16495 (value (match-string 3))
16496 (allowed (or (org-property-get-allowed-values (point) key)
16497 (and (member value '("[ ]" "[-]" "[X]"))
16498 '("[ ]" "[X]"))))
16499 (heading (save-match-data (nth 4 (org-heading-components))))
16500 nval)
16501 (unless allowed
16502 (user-error "Allowed values for this property have not been defined"))
16503 (if previous (setq allowed (reverse allowed)))
16504 (if (member value allowed)
16505 (setq nval (car (cdr (member value allowed)))))
16506 (setq nval (or nval (car allowed)))
16507 (if (equal nval value)
16508 (user-error "Only one allowed value for this property"))
16509 (org-at-property-p)
16510 (replace-match (concat " :" key ": " nval) t t)
16511 (org-indent-line)
16512 (beginning-of-line 1)
16513 (skip-chars-forward " \t")
16514 (when (equal prop org-effort-property)
16515 (org-refresh-property
16516 '((effort . identity)
16517 (effort-minutes . org-duration-string-to-minutes))
16518 nval)
16519 (when (string= org-clock-current-task heading)
16520 (setq org-clock-effort nval)
16521 (org-clock-update-mode-line)))
16522 (run-hook-with-args 'org-property-changed-functions key nval)))
16524 (defun org-find-olp (path &optional this-buffer)
16525 "Return a marker pointing to the entry at outline path OLP.
16526 If anything goes wrong, throw an error.
16527 You can wrap this call to catch the error like this:
16529 (condition-case msg
16530 (org-mobile-locate-entry (match-string 4))
16531 (error (nth 1 msg)))
16533 The return value will then be either a string with the error message,
16534 or a marker if everything is OK.
16536 If THIS-BUFFER is set, the outline path does not contain a file,
16537 only headings."
16538 (let* ((file (if this-buffer buffer-file-name (pop path)))
16539 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16540 (level 1)
16541 (lmin 1)
16542 (lmax 1)
16543 limit re end found pos heading cnt flevel)
16544 (unless buffer (error "File not found :%s" file))
16545 (with-current-buffer buffer
16546 (save-excursion
16547 (save-restriction
16548 (widen)
16549 (setq limit (point-max))
16550 (goto-char (point-min))
16551 (dolist (heading path)
16552 (setq re (format org-complex-heading-regexp-format
16553 (regexp-quote heading)))
16554 (setq cnt 0 pos (point))
16555 (while (re-search-forward re end t)
16556 (setq level (- (match-end 1) (match-beginning 1)))
16557 (if (and (>= level lmin) (<= level lmax))
16558 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16559 (when (= cnt 0) (error "Heading not found on level %d: %s"
16560 lmax heading))
16561 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16562 lmax heading))
16563 (goto-char found)
16564 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16565 (setq end (save-excursion (org-end-of-subtree t t))))
16566 (when (org-at-heading-p)
16567 (point-marker)))))))
16569 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16570 "Find node HEADING in BUFFER.
16571 Return a marker to the heading if it was found, or nil if not.
16572 If POS-ONLY is set, return just the position instead of a marker.
16574 The heading text must match exact, but it may have a TODO keyword,
16575 a priority cookie and tags in the standard locations."
16576 (with-current-buffer (or buffer (current-buffer))
16577 (save-excursion
16578 (save-restriction
16579 (widen)
16580 (goto-char (point-min))
16581 (let (case-fold-search)
16582 (if (re-search-forward
16583 (format org-complex-heading-regexp-format
16584 (regexp-quote heading)) nil t)
16585 (if pos-only
16586 (match-beginning 0)
16587 (move-marker (make-marker) (match-beginning 0)))))))))
16589 (defun org-find-exact-heading-in-directory (heading &optional dir)
16590 "Find Org node headline HEADING in all .org files in directory DIR.
16591 When the target headline is found, return a marker to this location."
16592 (let ((files (directory-files (or dir default-directory)
16593 t "\\`[^.#].*\\.org\\'"))
16594 visiting m buffer)
16595 (catch 'found
16596 (dolist (file files)
16597 (message "trying %s" file)
16598 (setq visiting (org-find-base-buffer-visiting file))
16599 (setq buffer (or visiting (find-file-noselect file)))
16600 (setq m (org-find-exact-headline-in-buffer
16601 heading buffer))
16602 (when (and (not m) (not visiting)) (kill-buffer buffer))
16603 (and m (throw 'found m))))))
16605 (defun org-find-entry-with-id (ident)
16606 "Locate the entry that contains the ID property with exact value IDENT.
16607 IDENT can be a string, a symbol or a number, this function will search for
16608 the string representation of it.
16609 Return the position where this entry starts, or nil if there is no such entry."
16610 (interactive "sID: ")
16611 (let ((id (cond
16612 ((stringp ident) ident)
16613 ((symbolp ident) (symbol-name ident))
16614 ((numberp ident) (number-to-string ident))
16615 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16616 (org-with-wide-buffer (org-find-property "ID" id))))
16618 ;;;; Timestamps
16620 (defvar org-last-changed-timestamp nil)
16621 (defvar org-last-inserted-timestamp nil
16622 "The last time stamp inserted with `org-insert-time-stamp'.")
16623 (defvar org-ts-what) ; dynamically scoped parameter
16625 (defun org-time-stamp (arg &optional inactive)
16626 "Prompt for a date/time and insert a time stamp.
16628 If the user specifies a time like HH:MM or if this command is
16629 called with at least one prefix argument, the time stamp contains
16630 the date and the time. Otherwise, only the date is included.
16632 All parts of a date not specified by the user are filled in from
16633 the timestamp at point, if any, or the current date/time
16634 otherwise.
16636 If there is already a timestamp at the cursor, it is replaced.
16638 With two universal prefix arguments, insert an active timestamp
16639 with the current time without prompting the user.
16641 When called from lisp, the timestamp is inactive if INACTIVE is
16642 non-nil."
16643 (interactive "P")
16644 (let* ((ts (cond
16645 ((org-at-date-range-p t)
16646 (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
16647 ((org-at-timestamp-p t) (match-string 0))))
16648 ;; Default time is either the timestamp at point or today.
16649 ;; When entering a range, only the range start is considered.
16650 (default-time (if (not ts) (current-time)
16651 (apply #'encode-time (org-parse-time-string ts))))
16652 (default-input (and ts (org-get-compact-tod ts)))
16653 (repeater (and ts
16654 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16655 (match-string 0 ts)))
16656 org-time-was-given
16657 org-end-time-was-given
16658 (time
16659 (and (if (equal arg '(16)) (current-time)
16660 ;; Preserve `this-command' and `last-command'.
16661 (let ((this-command this-command)
16662 (last-command last-command))
16663 (org-read-date
16664 arg 'totime nil nil default-time default-input
16665 inactive))))))
16666 (cond
16667 ((and ts
16668 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16669 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16670 (insert "--")
16671 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16673 ;; Make sure we're on a timestamp. When in the middle of a date
16674 ;; range, move arbitrarily to range end.
16675 (unless (org-at-timestamp-p t)
16676 (skip-chars-forward "-")
16677 (org-at-timestamp-p t))
16678 (replace-match "")
16679 (setq org-last-changed-timestamp
16680 (org-insert-time-stamp
16681 time (or org-time-was-given arg)
16682 inactive nil nil (list org-end-time-was-given)))
16683 (when repeater
16684 (backward-char)
16685 (insert " " repeater)
16686 (setq org-last-changed-timestamp
16687 (concat (substring org-last-inserted-timestamp 0 -1)
16688 " " repeater ">")))
16689 (message "Timestamp updated"))
16690 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16691 (t (org-insert-time-stamp
16692 time (or org-time-was-given arg) inactive nil nil
16693 (list org-end-time-was-given))))))
16695 ;; FIXME: can we use this for something else, like computing time differences?
16696 (defun org-get-compact-tod (s)
16697 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16698 (let* ((t1 (match-string 1 s))
16699 (h1 (string-to-number (match-string 2 s)))
16700 (m1 (string-to-number (match-string 3 s)))
16701 (t2 (and (match-end 4) (match-string 5 s)))
16702 (h2 (and t2 (string-to-number (match-string 6 s))))
16703 (m2 (and t2 (string-to-number (match-string 7 s))))
16704 dh dm)
16705 (if (not t2)
16707 (setq dh (- h2 h1) dm (- m2 m1))
16708 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16709 (concat t1 "+" (number-to-string dh)
16710 (and (/= 0 dm) (format ":%02d" dm)))))))
16712 (defun org-time-stamp-inactive (&optional arg)
16713 "Insert an inactive time stamp.
16714 An inactive time stamp is enclosed in square brackets instead of angle
16715 brackets. It is inactive in the sense that it does not trigger agenda entries,
16716 does not link to the calendar and cannot be changed with the S-cursor keys.
16717 So these are more for recording a certain time/date."
16718 (interactive "P")
16719 (org-time-stamp arg 'inactive))
16721 (defvar org-date-ovl (make-overlay 1 1))
16722 (overlay-put org-date-ovl 'face 'org-date-selected)
16723 (org-detach-overlay org-date-ovl)
16725 (defvar org-ans1) ; dynamically scoped parameter
16726 (defvar org-ans2) ; dynamically scoped parameter
16728 (defvar org-plain-time-of-day-regexp) ; defined below
16730 (defvar org-overriding-default-time nil) ; dynamically scoped
16731 (defvar org-read-date-overlay nil)
16732 (defvar org-dcst nil) ; dynamically scoped
16733 (defvar org-read-date-history nil)
16734 (defvar org-read-date-final-answer nil)
16735 (defvar org-read-date-analyze-futurep nil)
16736 (defvar org-read-date-analyze-forced-year nil)
16737 (defvar org-read-date-inactive)
16739 (defvar org-read-date-minibuffer-local-map
16740 (let* ((map (make-sparse-keymap)))
16741 (set-keymap-parent map minibuffer-local-map)
16742 (org-defkey map (kbd ".")
16743 (lambda () (interactive)
16744 ;; Are we at the beginning of the prompt?
16745 (if (looking-back "^[^:]+: ")
16746 (org-eval-in-calendar '(calendar-goto-today))
16747 (insert "."))))
16748 (org-defkey map (kbd "C-.")
16749 (lambda () (interactive)
16750 (org-eval-in-calendar '(calendar-goto-today))))
16751 (org-defkey map [(meta shift left)]
16752 (lambda () (interactive)
16753 (org-eval-in-calendar '(calendar-backward-month 1))))
16754 (org-defkey map [(meta shift right)]
16755 (lambda () (interactive)
16756 (org-eval-in-calendar '(calendar-forward-month 1))))
16757 (org-defkey map [(meta shift up)]
16758 (lambda () (interactive)
16759 (org-eval-in-calendar '(calendar-backward-year 1))))
16760 (org-defkey map [(meta shift down)]
16761 (lambda () (interactive)
16762 (org-eval-in-calendar '(calendar-forward-year 1))))
16763 (org-defkey map [?\e (shift left)]
16764 (lambda () (interactive)
16765 (org-eval-in-calendar '(calendar-backward-month 1))))
16766 (org-defkey map [?\e (shift right)]
16767 (lambda () (interactive)
16768 (org-eval-in-calendar '(calendar-forward-month 1))))
16769 (org-defkey map [?\e (shift up)]
16770 (lambda () (interactive)
16771 (org-eval-in-calendar '(calendar-backward-year 1))))
16772 (org-defkey map [?\e (shift down)]
16773 (lambda () (interactive)
16774 (org-eval-in-calendar '(calendar-forward-year 1))))
16775 (org-defkey map [(shift up)]
16776 (lambda () (interactive)
16777 (org-eval-in-calendar '(calendar-backward-week 1))))
16778 (org-defkey map [(shift down)]
16779 (lambda () (interactive)
16780 (org-eval-in-calendar '(calendar-forward-week 1))))
16781 (org-defkey map [(shift left)]
16782 (lambda () (interactive)
16783 (org-eval-in-calendar '(calendar-backward-day 1))))
16784 (org-defkey map [(shift right)]
16785 (lambda () (interactive)
16786 (org-eval-in-calendar '(calendar-forward-day 1))))
16787 (org-defkey map "!"
16788 (lambda () (interactive)
16789 (org-eval-in-calendar '(diary-view-entries))
16790 (message "")))
16791 (org-defkey map ">"
16792 (lambda () (interactive)
16793 (org-eval-in-calendar '(calendar-scroll-left 1))))
16794 (org-defkey map "<"
16795 (lambda () (interactive)
16796 (org-eval-in-calendar '(calendar-scroll-right 1))))
16797 (org-defkey map "\C-v"
16798 (lambda () (interactive)
16799 (org-eval-in-calendar
16800 '(calendar-scroll-left-three-months 1))))
16801 (org-defkey map "\M-v"
16802 (lambda () (interactive)
16803 (org-eval-in-calendar
16804 '(calendar-scroll-right-three-months 1))))
16805 map)
16806 "Keymap for minibuffer commands when using `org-read-date'.")
16808 (defvar org-def)
16809 (defvar org-defdecode)
16810 (defvar org-with-time)
16812 (defun org-read-date (&optional org-with-time to-time from-string prompt
16813 default-time default-input inactive)
16814 "Read a date, possibly a time, and make things smooth for the user.
16815 The prompt will suggest to enter an ISO date, but you can also enter anything
16816 which will at least partially be understood by `parse-time-string'.
16817 Unrecognized parts of the date will default to the current day, month, year,
16818 hour and minute. If this command is called to replace a timestamp at point,
16819 or to enter the second timestamp of a range, the default time is taken
16820 from the existing stamp. Furthermore, the command prefers the future,
16821 so if you are giving a date where the year is not given, and the day-month
16822 combination is already past in the current year, it will assume you
16823 mean next year. For details, see the manual. A few examples:
16825 3-2-5 --> 2003-02-05
16826 feb 15 --> currentyear-02-15
16827 2/15 --> currentyear-02-15
16828 sep 12 9 --> 2009-09-12
16829 12:45 --> today 12:45
16830 22 sept 0:34 --> currentyear-09-22 0:34
16831 12 --> currentyear-currentmonth-12
16832 Fri --> nearest Friday after today
16833 -Tue --> last Tuesday
16834 etc.
16836 Furthermore you can specify a relative date by giving, as the *first* thing
16837 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16838 change in days weeks, months, years.
16839 With a single plus or minus, the date is relative to today. With a double
16840 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16841 +4d --> four days from today
16842 +4 --> same as above
16843 +2w --> two weeks from today
16844 ++5 --> five days from default date
16846 The function understands only English month and weekday abbreviations.
16848 While prompting, a calendar is popped up - you can also select the
16849 date with the mouse (button 1). The calendar shows a period of three
16850 months. To scroll it to other months, use the keys `>' and `<'.
16851 If you don't like the calendar, turn it off with
16852 \(setq org-read-date-popup-calendar nil)
16854 With optional argument TO-TIME, the date will immediately be converted
16855 to an internal time.
16856 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16857 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16858 still enter a time, and this function will inform the calling routine
16859 about this change. The calling routine may then choose to change the
16860 format used to insert the time stamp into the buffer to include the time.
16861 With optional argument FROM-STRING, read from this string instead from
16862 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16863 the time/date that is used for everything that is not specified by the
16864 user."
16865 (require 'parse-time)
16866 (let* ((org-time-stamp-rounding-minutes
16867 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16868 (org-dcst org-display-custom-times)
16869 (ct (org-current-time))
16870 (org-def (or org-overriding-default-time default-time ct))
16871 (org-defdecode (decode-time org-def))
16872 (dummy (progn
16873 (when (< (nth 2 org-defdecode) org-extend-today-until)
16874 (setcar (nthcdr 2 org-defdecode) -1)
16875 (setcar (nthcdr 1 org-defdecode) 59)
16876 (setq org-def (apply 'encode-time org-defdecode)
16877 org-defdecode (decode-time org-def)))))
16878 (cur-frame (selected-frame))
16879 (mouse-autoselect-window nil) ; Don't let the mouse jump
16880 (calendar-frame-setup nil)
16881 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16882 (calendar-move-hook nil)
16883 (calendar-view-diary-initially-flag nil)
16884 (calendar-view-holidays-initially-flag nil)
16885 (timestr (format-time-string
16886 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16887 (prompt (concat (if prompt (concat prompt " ") "")
16888 (format "Date+time [%s]: " timestr)))
16889 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16891 (cond
16892 (from-string (setq ans from-string))
16893 (org-read-date-popup-calendar
16894 (save-excursion
16895 (save-window-excursion
16896 (calendar)
16897 (when (eq calendar-setup 'calendar-only)
16898 (setq cal-frame
16899 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16900 (select-frame cal-frame))
16901 (org-eval-in-calendar '(setq cursor-type nil) t)
16902 (unwind-protect
16903 (progn
16904 (calendar-forward-day (- (time-to-days org-def)
16905 (calendar-absolute-from-gregorian
16906 (calendar-current-date))))
16907 (org-eval-in-calendar nil t)
16908 (let* ((old-map (current-local-map))
16909 (map (copy-keymap calendar-mode-map))
16910 (minibuffer-local-map
16911 (copy-keymap org-read-date-minibuffer-local-map)))
16912 (org-defkey map (kbd "RET") 'org-calendar-select)
16913 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16914 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16915 (unwind-protect
16916 (progn
16917 (use-local-map map)
16918 (setq org-read-date-inactive inactive)
16919 (add-hook 'post-command-hook 'org-read-date-display)
16920 (setq org-ans0 (read-string prompt default-input
16921 'org-read-date-history nil))
16922 ;; org-ans0: from prompt
16923 ;; org-ans1: from mouse click
16924 ;; org-ans2: from calendar motion
16925 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16926 (remove-hook 'post-command-hook 'org-read-date-display)
16927 (use-local-map old-map)
16928 (when org-read-date-overlay
16929 (delete-overlay org-read-date-overlay)
16930 (setq org-read-date-overlay nil)))))
16931 (bury-buffer "*Calendar*")
16932 (when cal-frame
16933 (delete-frame cal-frame)
16934 (select-frame-set-input-focus cur-frame))))))
16936 (t ; Naked prompt only
16937 (unwind-protect
16938 (setq ans (read-string prompt default-input
16939 'org-read-date-history timestr))
16940 (when org-read-date-overlay
16941 (delete-overlay org-read-date-overlay)
16942 (setq org-read-date-overlay nil)))))
16944 (setq final (org-read-date-analyze ans org-def org-defdecode))
16946 (when org-read-date-analyze-forced-year
16947 (message "Year was forced into %s"
16948 (if org-read-date-force-compatible-dates
16949 "compatible range (1970-2037)"
16950 "range representable on this machine"))
16951 (ding))
16953 ;; One round trip to get rid of 34th of August and stuff like that....
16954 (setq final (decode-time (apply 'encode-time final)))
16956 (setq org-read-date-final-answer ans)
16958 (if to-time
16959 (apply 'encode-time final)
16960 (if (and (boundp 'org-time-was-given) org-time-was-given)
16961 (format "%04d-%02d-%02d %02d:%02d"
16962 (nth 5 final) (nth 4 final) (nth 3 final)
16963 (nth 2 final) (nth 1 final))
16964 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16966 (defun org-read-date-display ()
16967 "Display the current date prompt interpretation in the minibuffer."
16968 (when org-read-date-display-live
16969 (when org-read-date-overlay
16970 (delete-overlay org-read-date-overlay))
16971 (when (minibufferp (current-buffer))
16972 (save-excursion
16973 (end-of-line 1)
16974 (while (not (equal (buffer-substring
16975 (max (point-min) (- (point) 4)) (point))
16976 " "))
16977 (insert " ")))
16978 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16979 " " (or org-ans1 org-ans2)))
16980 (org-end-time-was-given nil)
16981 (f (org-read-date-analyze ans org-def org-defdecode))
16982 (fmts (if org-dcst
16983 org-time-stamp-custom-formats
16984 org-time-stamp-formats))
16985 (fmt (if (or org-with-time
16986 (and (boundp 'org-time-was-given) org-time-was-given))
16987 (cdr fmts)
16988 (car fmts)))
16989 (txt (format-time-string fmt (apply 'encode-time f)))
16990 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16991 (txt (concat "=> " txt)))
16992 (when (and org-end-time-was-given
16993 (string-match org-plain-time-of-day-regexp txt))
16994 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16995 org-end-time-was-given
16996 (substring txt (match-end 0)))))
16997 (when org-read-date-analyze-futurep
16998 (setq txt (concat txt " (=>F)")))
16999 (setq org-read-date-overlay
17000 (make-overlay (1- (point-at-eol)) (point-at-eol)))
17001 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
17003 (defun org-read-date-analyze (ans org-def org-defdecode)
17004 "Analyze the combined answer of the date prompt."
17005 ;; FIXME: cleanup and comment
17006 ;; Pass `current-time' result to `decode-time' (instead of calling
17007 ;; without arguments) so that only `current-time' has to be
17008 ;; overriden in tests.
17009 (let ((nowdecode (decode-time (current-time)))
17010 delta deltan deltaw deltadef year month day
17011 hour minute second wday pm h2 m2 tl wday1
17012 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
17013 (setq org-read-date-analyze-futurep nil
17014 org-read-date-analyze-forced-year nil)
17015 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
17016 (setq ans "+0"))
17018 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
17019 (setq ans (replace-match "" t t ans)
17020 deltan (car delta)
17021 deltaw (nth 1 delta)
17022 deltadef (nth 2 delta)))
17024 ;; Check if there is an iso week date in there. If yes, store the
17025 ;; info and postpone interpreting it until the rest of the parsing
17026 ;; is done.
17027 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
17028 (setq iso-year (if (match-end 1)
17029 (org-small-year-to-year
17030 (string-to-number (match-string 1 ans))))
17031 iso-weekday (if (match-end 3)
17032 (string-to-number (match-string 3 ans)))
17033 iso-week (string-to-number (match-string 2 ans)))
17034 (setq ans (replace-match "" t t ans)))
17036 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
17037 (when (string-match
17038 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
17039 (setq year (if (match-end 2)
17040 (string-to-number (match-string 2 ans))
17041 (progn (setq kill-year t)
17042 (string-to-number (format-time-string "%Y"))))
17043 month (string-to-number (match-string 3 ans))
17044 day (string-to-number (match-string 4 ans)))
17045 (if (< year 100) (setq year (+ 2000 year)))
17046 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17047 t nil ans)))
17049 ;; Help matching dotted european dates
17050 (when (string-match
17051 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
17052 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
17053 (setq kill-year t)
17054 (string-to-number (format-time-string "%Y")))
17055 day (string-to-number (match-string 1 ans))
17056 month (string-to-number (match-string 2 ans))
17057 ans (replace-match (format "%04d-%02d-%02d" year month day)
17058 t nil ans)))
17060 ;; Help matching american dates, like 5/30 or 5/30/7
17061 (when (string-match
17062 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17063 (setq year (if (match-end 4)
17064 (string-to-number (match-string 4 ans))
17065 (progn (setq kill-year t)
17066 (string-to-number (format-time-string "%Y"))))
17067 month (string-to-number (match-string 1 ans))
17068 day (string-to-number (match-string 2 ans)))
17069 (if (< year 100) (setq year (+ 2000 year)))
17070 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17071 t nil ans)))
17072 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17073 ;; If there is a time with am/pm, and *no* time without it, we convert
17074 ;; so that matching will be successful.
17075 (loop for i from 1 to 2 do ; twice, for end time as well
17076 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17077 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17078 (setq hour (string-to-number (match-string 1 ans))
17079 minute (if (match-end 3)
17080 (string-to-number (match-string 3 ans))
17082 pm (equal ?p
17083 (string-to-char (downcase (match-string 4 ans)))))
17084 (if (and (= hour 12) (not pm))
17085 (setq hour 0)
17086 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17087 (setq ans (replace-match (format "%02d:%02d" hour minute)
17088 t t ans))))
17090 ;; Check if a time range is given as a duration
17091 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17092 (setq hour (string-to-number (match-string 1 ans))
17093 h2 (+ hour (string-to-number (match-string 3 ans)))
17094 minute (string-to-number (match-string 2 ans))
17095 m2 (+ minute (if (match-end 5) (string-to-number
17096 (match-string 5 ans))0)))
17097 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17098 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17099 t t ans)))
17101 ;; Check if there is a time range
17102 (when (boundp 'org-end-time-was-given)
17103 (setq org-time-was-given nil)
17104 (when (and (string-match org-plain-time-of-day-regexp ans)
17105 (match-end 8))
17106 (setq org-end-time-was-given (match-string 8 ans))
17107 (setq ans (concat (substring ans 0 (match-beginning 7))
17108 (substring ans (match-end 7))))))
17110 (setq tl (parse-time-string ans)
17111 day (or (nth 3 tl) (nth 3 org-defdecode))
17112 month
17113 (cond ((nth 4 tl))
17114 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17115 ;; Day was specified. Make sure DAY+MONTH
17116 ;; combination happens in the future.
17117 ((nth 3 tl)
17118 (setq futurep t)
17119 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17120 (nth 4 nowdecode)))
17121 (t (nth 4 org-defdecode)))
17122 year
17123 (cond ((and (not kill-year) (nth 5 tl)))
17124 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17125 ;; Month was guessed in the future and is at least
17126 ;; equal to NOWDECODE's. Fix year accordingly.
17127 (futurep
17128 (if (or (> month (nth 4 nowdecode))
17129 (>= day (nth 3 nowdecode)))
17130 (nth 5 nowdecode)
17131 (1+ (nth 5 nowdecode))))
17132 ;; Month was specified. Make sure MONTH+YEAR
17133 ;; combination happens in the future.
17134 ((nth 4 tl)
17135 (setq futurep t)
17136 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17137 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17138 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17139 (t (nth 5 nowdecode))))
17140 (t (nth 5 org-defdecode)))
17141 hour (or (nth 2 tl) (nth 2 org-defdecode))
17142 minute (or (nth 1 tl) (nth 1 org-defdecode))
17143 second (or (nth 0 tl) 0)
17144 wday (nth 6 tl))
17146 (when (and (eq org-read-date-prefer-future 'time)
17147 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17148 (equal day (nth 3 nowdecode))
17149 (equal month (nth 4 nowdecode))
17150 (equal year (nth 5 nowdecode))
17151 (nth 2 tl)
17152 (or (< (nth 2 tl) (nth 2 nowdecode))
17153 (and (= (nth 2 tl) (nth 2 nowdecode))
17154 (nth 1 tl)
17155 (< (nth 1 tl) (nth 1 nowdecode)))))
17156 (setq day (1+ day)
17157 futurep t))
17159 ;; Special date definitions below
17160 (cond
17161 (iso-week
17162 ;; There was an iso week
17163 (require 'cal-iso)
17164 (setq futurep nil)
17165 (setq year (or iso-year year)
17166 day (or iso-weekday wday 1)
17167 wday nil ; to make sure that the trigger below does not match
17168 iso-date (calendar-gregorian-from-absolute
17169 (calendar-iso-to-absolute
17170 (list iso-week day year))))
17171 ; FIXME: Should we also push ISO weeks into the future?
17172 ; (when (and org-read-date-prefer-future
17173 ; (not iso-year)
17174 ; (< (calendar-absolute-from-gregorian iso-date)
17175 ; (time-to-days (current-time))))
17176 ; (setq year (1+ year)
17177 ; iso-date (calendar-gregorian-from-absolute
17178 ; (calendar-iso-to-absolute
17179 ; (list iso-week day year)))))
17180 (setq month (car iso-date)
17181 year (nth 2 iso-date)
17182 day (nth 1 iso-date)))
17183 (deltan
17184 (setq futurep nil)
17185 (unless deltadef
17186 ;; Pass `current-time' result to `decode-time' (instead of
17187 ;; calling without arguments) so that only `current-time' has
17188 ;; to be overriden in tests.
17189 (let ((now (decode-time (current-time))))
17190 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17191 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17192 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17193 ((equal deltaw "m") (setq month (+ month deltan)))
17194 ((equal deltaw "y") (setq year (+ year deltan)))))
17195 ((and wday (not (nth 3 tl)))
17196 ;; Weekday was given, but no day, so pick that day in the week
17197 ;; on or after the derived date.
17198 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17199 (unless (equal wday wday1)
17200 (setq day (+ day (% (- wday wday1 -7) 7))))))
17201 (if (and (boundp 'org-time-was-given)
17202 (nth 2 tl))
17203 (setq org-time-was-given t))
17204 (if (< year 100) (setq year (+ 2000 year)))
17205 ;; Check of the date is representable
17206 (if org-read-date-force-compatible-dates
17207 (progn
17208 (if (< year 1970)
17209 (setq year 1970 org-read-date-analyze-forced-year t))
17210 (if (> year 2037)
17211 (setq year 2037 org-read-date-analyze-forced-year t)))
17212 (condition-case nil
17213 (ignore (encode-time second minute hour day month year))
17214 (error
17215 (setq year (nth 5 org-defdecode))
17216 (setq org-read-date-analyze-forced-year t))))
17217 (setq org-read-date-analyze-futurep futurep)
17218 (list second minute hour day month year)))
17220 (defvar parse-time-weekdays)
17221 (defun org-read-date-get-relative (s today default)
17222 "Check string S for special relative date string.
17223 TODAY and DEFAULT are internal times, for today and for a default.
17224 Return shift list (N what def-flag)
17225 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17226 N is the number of WHATs to shift.
17227 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17228 the DEFAULT date rather than TODAY."
17229 (require 'parse-time)
17230 (when (and
17231 (string-match
17232 (concat
17233 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17234 "\\([0-9]+\\)?"
17235 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17236 "\\([ \t]\\|$\\)") s)
17237 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17238 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17239 (string-to-char (substring (match-string 1 s) -1))
17240 ?+))
17241 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17242 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17243 (what (if (match-end 3) (match-string 3 s) "d"))
17244 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17245 (date (if rel default today))
17246 (wday (nth 6 (decode-time date)))
17247 delta)
17248 (if wday1
17249 (progn
17250 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17251 (if (= delta 0) (setq delta 7))
17252 (if (= dir ?-)
17253 (progn
17254 (setq delta (- delta 7))
17255 (if (= delta 0) (setq delta -7))))
17256 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17257 (list delta "d" rel))
17258 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17260 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17261 "Turn a user-specified date into the internal representation.
17262 The internal representation needed by the calendar is (month day year).
17263 This is a wrapper to handle the brain-dead convention in calendar that
17264 user function argument order change dependent on argument order."
17265 (if (boundp 'calendar-date-style)
17266 (cond
17267 ((eq calendar-date-style 'american)
17268 (list arg1 arg2 arg3))
17269 ((eq calendar-date-style 'european)
17270 (list arg2 arg1 arg3))
17271 ((eq calendar-date-style 'iso)
17272 (list arg2 arg3 arg1)))
17273 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17274 (if (org-bound-and-true-p european-calendar-style)
17275 (list arg2 arg1 arg3)
17276 (list arg1 arg2 arg3)))))
17278 (defun org-eval-in-calendar (form &optional keepdate)
17279 "Eval FORM in the calendar window and return to current window.
17280 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17281 otherwise stick to the current value of `org-ans2'."
17282 (let ((sf (selected-frame))
17283 (sw (selected-window)))
17284 (select-window (get-buffer-window "*Calendar*" t))
17285 (eval form)
17286 (when (and (not keepdate) (calendar-cursor-to-date))
17287 (let* ((date (calendar-cursor-to-date))
17288 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17289 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17290 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17291 (select-window sw)
17292 (org-select-frame-set-input-focus sf)))
17294 (defun org-calendar-select ()
17295 "Return to `org-read-date' with the date currently selected.
17296 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17297 (interactive)
17298 (when (calendar-cursor-to-date)
17299 (let* ((date (calendar-cursor-to-date))
17300 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17301 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17302 (if (active-minibuffer-window) (exit-minibuffer))))
17304 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17305 "Insert a date stamp for the date given by the internal TIME.
17306 See `format-time-string' for the format of TIME.
17307 WITH-HM means use the stamp format that includes the time of the day.
17308 INACTIVE means use square brackets instead of angular ones, so that the
17309 stamp will not contribute to the agenda.
17310 PRE and POST are optional strings to be inserted before and after the
17311 stamp.
17312 The command returns the inserted time stamp."
17313 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17314 stamp)
17315 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17316 (insert-before-markers (or pre ""))
17317 (when (listp extra)
17318 (setq extra (car extra))
17319 (if (and (stringp extra)
17320 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17321 (setq extra (format "-%02d:%02d"
17322 (string-to-number (match-string 1 extra))
17323 (string-to-number (match-string 2 extra))))
17324 (setq extra nil)))
17325 (when extra
17326 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17327 (insert-before-markers (setq stamp (format-time-string fmt time)))
17328 (insert-before-markers (or post ""))
17329 (setq org-last-inserted-timestamp stamp)))
17331 (defun org-toggle-time-stamp-overlays ()
17332 "Toggle the use of custom time stamp formats."
17333 (interactive)
17334 (setq org-display-custom-times (not org-display-custom-times))
17335 (unless org-display-custom-times
17336 (let ((p (point-min)) (bmp (buffer-modified-p)))
17337 (while (setq p (next-single-property-change p 'display))
17338 (if (and (get-text-property p 'display)
17339 (eq (get-text-property p 'face) 'org-date))
17340 (remove-text-properties
17341 p (setq p (next-single-property-change p 'display))
17342 '(display t))))
17343 (set-buffer-modified-p bmp)))
17344 (if (featurep 'xemacs)
17345 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17346 (org-restart-font-lock)
17347 (setq org-table-may-need-update t)
17348 (if org-display-custom-times
17349 (message "Time stamps are overlaid with custom format")
17350 (message "Time stamp overlays removed")))
17352 (defun org-display-custom-time (beg end)
17353 "Overlay modified time stamp format over timestamp between BEG and END."
17354 (let* ((ts (buffer-substring beg end))
17355 t1 w1 with-hm tf time str w2 (off 0))
17356 (save-match-data
17357 (setq t1 (org-parse-time-string ts t))
17358 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17359 (setq off (- (match-end 0) (match-beginning 0)))))
17360 (setq end (- end off))
17361 (setq w1 (- end beg)
17362 with-hm (and (nth 1 t1) (nth 2 t1))
17363 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17364 time (org-fix-decoded-time t1)
17365 str (org-add-props
17366 (format-time-string
17367 (substring tf 1 -1) (apply 'encode-time time))
17368 nil 'mouse-face 'highlight)
17369 w2 (length str))
17370 (if (not (= w2 w1))
17371 (add-text-properties (1+ beg) (+ 2 beg)
17372 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17373 (if (featurep 'xemacs)
17374 (progn
17375 (put-text-property beg end 'invisible t)
17376 (put-text-property beg end 'end-glyph (make-glyph str)))
17377 (put-text-property beg end 'display str))))
17379 (defun org-fix-decoded-time (time)
17380 "Set 0 instead of nil for the first 6 elements of time.
17381 Don't touch the rest."
17382 (let ((n 0))
17383 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17385 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17387 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17388 "Difference between TIMESTAMP-STRING and now in days.
17389 If SECONDS is non-nil, return the difference in seconds."
17390 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17391 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17392 (funcall fdiff (current-time)))))
17394 (defun org-deadline-close (timestamp-string &optional ndays)
17395 "Is the time in TIMESTAMP-STRING close to the current date?"
17396 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17397 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17398 (not (org-entry-is-done-p))))
17400 (defun org-get-wdays (ts &optional delay zero-delay)
17401 "Get the deadline lead time appropriate for timestring TS.
17402 When DELAY is non-nil, get the delay time for scheduled items
17403 instead of the deadline lead time. When ZERO-DELAY is non-nil
17404 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17405 don't try to find the delay cookie in the scheduled timestamp."
17406 (let ((tv (if delay org-scheduled-delay-days
17407 org-deadline-warning-days)))
17408 (cond
17409 ((or (and delay (< tv 0))
17410 (and delay zero-delay (<= tv 0))
17411 (and (not delay) (<= tv 0)))
17412 ;; Enforce this value no matter what
17413 (- tv))
17414 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17415 ;; lead time is specified.
17416 (floor (* (string-to-number (match-string 1 ts))
17417 (cdr (assoc (match-string 2 ts)
17418 '(("d" . 1) ("w" . 7)
17419 ("m" . 30.4) ("y" . 365.25)
17420 ("h" . 0.041667)))))))
17421 ;; go for the default.
17422 (t tv))))
17424 (defun org-calendar-select-mouse (ev)
17425 "Return to `org-read-date' with the date currently selected.
17426 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17427 (interactive "e")
17428 (mouse-set-point ev)
17429 (when (calendar-cursor-to-date)
17430 (let* ((date (calendar-cursor-to-date))
17431 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17432 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17433 (if (active-minibuffer-window) (exit-minibuffer))))
17435 (defun org-check-deadlines (ndays)
17436 "Check if there are any deadlines due or past due.
17437 A deadline is considered due if it happens within `org-deadline-warning-days'
17438 days from today's date. If the deadline appears in an entry marked DONE,
17439 it is not shown. The prefix arg NDAYS can be used to test that many
17440 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17441 (interactive "P")
17442 (let* ((org-warn-days
17443 (cond
17444 ((equal ndays '(4)) 100000)
17445 (ndays (prefix-numeric-value ndays))
17446 (t (abs org-deadline-warning-days))))
17447 (case-fold-search nil)
17448 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17449 (callback
17450 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17452 (message "%d deadlines past-due or due within %d days"
17453 (org-occur regexp nil callback)
17454 org-warn-days)))
17456 (defsubst org-re-timestamp (type)
17457 "Return a regexp for timestamp TYPE.
17458 Allowed values for TYPE are:
17460 all: all timestamps
17461 active: only active timestamps (<...>)
17462 inactive: only inactive timestamps ([...])
17463 scheduled: only scheduled timestamps
17464 deadline: only deadline timestamps
17465 closed: only closed time-stamps
17467 When TYPE is nil, fall back on returning a regexp that matches
17468 both scheduled and deadline timestamps."
17469 (case type
17470 (all org-ts-regexp-both)
17471 (active org-ts-regexp)
17472 (inactive org-ts-regexp-inactive)
17473 (scheduled org-scheduled-time-regexp)
17474 (deadline org-deadline-time-regexp)
17475 (closed org-closed-time-regexp)
17476 (otherwise
17477 (concat "\\<"
17478 (regexp-opt (list org-deadline-string org-scheduled-string))
17479 " *<\\([^>]+\\)>"))))
17481 (defun org-check-before-date (date)
17482 "Check if there are deadlines or scheduled entries before DATE."
17483 (interactive (list (org-read-date)))
17484 (let ((case-fold-search nil)
17485 (regexp (org-re-timestamp org-ts-type))
17486 (callback
17487 `(lambda ()
17488 (let ((match (match-string 1)))
17489 (and ,(if (memq org-ts-type '(active inactive all))
17490 '(eq (org-element-type (org-element-context)) 'timestamp)
17491 '(org-at-planning-p))
17492 (time-less-p
17493 (org-time-string-to-time match)
17494 (org-time-string-to-time date)))))))
17495 (message "%d entries before %s"
17496 (org-occur regexp nil callback) date)))
17498 (defun org-check-after-date (date)
17499 "Check if there are deadlines or scheduled entries after DATE."
17500 (interactive (list (org-read-date)))
17501 (let ((case-fold-search nil)
17502 (regexp (org-re-timestamp org-ts-type))
17503 (callback
17504 `(lambda ()
17505 (let ((match (match-string 1)))
17506 (and ,(if (memq org-ts-type '(active inactive all))
17507 '(eq (org-element-type (org-element-context)) 'timestamp)
17508 '(org-at-planning-p))
17509 (not (time-less-p
17510 (org-time-string-to-time match)
17511 (org-time-string-to-time date))))))))
17512 (message "%d entries after %s"
17513 (org-occur regexp nil callback) date)))
17515 (defun org-check-dates-range (start-date end-date)
17516 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17517 (interactive (list (org-read-date nil nil nil "Range starts")
17518 (org-read-date nil nil nil "Range end")))
17519 (let ((case-fold-search nil)
17520 (regexp (org-re-timestamp org-ts-type))
17521 (callback
17522 `(lambda ()
17523 (let ((match (match-string 1)))
17524 (and
17525 ,(if (memq org-ts-type '(active inactive all))
17526 '(eq (org-element-type (org-element-context)) 'timestamp)
17527 '(org-at-planning-p))
17528 (not (time-less-p
17529 (org-time-string-to-time match)
17530 (org-time-string-to-time start-date)))
17531 (time-less-p
17532 (org-time-string-to-time match)
17533 (org-time-string-to-time end-date)))))))
17534 (message "%d entries between %s and %s"
17535 (org-occur regexp nil callback) start-date end-date)))
17537 (defun org-evaluate-time-range (&optional to-buffer)
17538 "Evaluate a time range by computing the difference between start and end.
17539 Normally the result is just printed in the echo area, but with prefix arg
17540 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17541 If the time range is actually in a table, the result is inserted into the
17542 next column.
17543 For time difference computation, a year is assumed to be exactly 365
17544 days in order to avoid rounding problems."
17545 (interactive "P")
17547 (org-clock-update-time-maybe)
17548 (save-excursion
17549 (unless (org-at-date-range-p t)
17550 (goto-char (point-at-bol))
17551 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17552 (if (not (org-at-date-range-p t))
17553 (user-error "Not at a time-stamp range, and none found in current line")))
17554 (let* ((ts1 (match-string 1))
17555 (ts2 (match-string 2))
17556 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17557 (match-end (match-end 0))
17558 (time1 (org-time-string-to-time ts1))
17559 (time2 (org-time-string-to-time ts2))
17560 (t1 (org-float-time time1))
17561 (t2 (org-float-time time2))
17562 (diff (abs (- t2 t1)))
17563 (negative (< (- t2 t1) 0))
17564 ;; (ys (floor (* 365 24 60 60)))
17565 (ds (* 24 60 60))
17566 (hs (* 60 60))
17567 (fy "%dy %dd %02d:%02d")
17568 (fy1 "%dy %dd")
17569 (fd "%dd %02d:%02d")
17570 (fd1 "%dd")
17571 (fh "%02d:%02d")
17572 y d h m align)
17573 (if havetime
17574 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17576 d (floor (/ diff ds)) diff (mod diff ds)
17577 h (floor (/ diff hs)) diff (mod diff hs)
17578 m (floor (/ diff 60)))
17579 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17581 d (floor (+ (/ diff ds) 0.5))
17582 h 0 m 0))
17583 (if (not to-buffer)
17584 (message "%s" (org-make-tdiff-string y d h m))
17585 (if (org-at-table-p)
17586 (progn
17587 (goto-char match-end)
17588 (setq align t)
17589 (and (looking-at " *|") (goto-char (match-end 0))))
17590 (goto-char match-end))
17591 (if (looking-at
17592 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17593 (replace-match ""))
17594 (if negative (insert " -"))
17595 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17596 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17597 (insert " " (format fh h m))))
17598 (if align (org-table-align))
17599 (message "Time difference inserted")))))
17601 (defun org-make-tdiff-string (y d h m)
17602 (let ((fmt "")
17603 (l nil))
17604 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17605 l (push y l)))
17606 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17607 l (push d l)))
17608 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17609 l (push h l)))
17610 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17611 l (push m l)))
17612 (apply 'format fmt (nreverse l))))
17614 (defun org-time-string-to-time (s &optional buffer pos)
17615 "Convert a timestamp string into internal time."
17616 (condition-case errdata
17617 (apply 'encode-time (org-parse-time-string s))
17618 (error (error "Bad timestamp `%s'%s\nError was: %s"
17619 s (if (not (and buffer pos))
17621 (format " at %d in buffer `%s'" pos buffer))
17622 (cdr errdata)))))
17624 (defun org-time-string-to-seconds (s)
17625 "Convert a timestamp string to a number of seconds."
17626 (org-float-time (org-time-string-to-time s)))
17628 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17629 "Convert a time stamp to an absolute day number.
17630 If there is a specifier for a cyclic time stamp, get the closest
17631 date to DAYNR.
17632 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17633 The variable `date' is bound by the calendar when this is called."
17634 (cond
17635 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17636 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17637 daynr
17638 (+ daynr 1000)))
17639 ((and daynr (string-match "\\+\\([0-9]+\\)[hdwmy]" s)
17640 (> (string-to-number (match-string 1 s)) 0))
17641 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17642 (time-to-days (current-time))) (match-string 0 s)
17643 prefer show-all))
17644 (t (time-to-days
17645 (condition-case errdata
17646 (apply 'encode-time (org-parse-time-string s))
17647 (error (error "Bad timestamp `%s'%s\nError was: %s"
17648 s (if (not (and buffer pos))
17650 (format " at %d in buffer `%s'" pos buffer))
17651 (cdr errdata))))))))
17653 (defun org-days-to-iso-week (days)
17654 "Return the iso week number."
17655 (require 'cal-iso)
17656 (car (calendar-iso-from-absolute days)))
17658 (defun org-small-year-to-year (year)
17659 "Convert 2-digit years into 4-digit years.
17660 YEAR is expanded into one of the 30 next years, if possible, or
17661 into a past one. Any year larger than 99 is returned unchanged."
17662 (if (>= year 100) year
17663 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17664 (century (/ current 100))
17665 (offset (- year (% current 100))))
17666 (cond ((> offset 30) (+ (* (1- century) 100) year))
17667 ((> offset -70) (+ (* century 100) year))
17668 (t (+ (* (1+ century) 100) year))))))
17670 (defun org-time-from-absolute (d)
17671 "Return the time corresponding to date D.
17672 D may be an absolute day number, or a calendar-type list (month day year)."
17673 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17674 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17676 (defun org-calendar-holiday ()
17677 "List of holidays, for Diary display in Org-mode."
17678 (require 'holidays)
17679 (let ((hl (funcall
17680 (if (fboundp 'calendar-check-holidays)
17681 'calendar-check-holidays 'check-calendar-holidays) date)))
17682 (if hl (mapconcat 'identity hl "; "))))
17684 (defun org-diary-sexp-entry (sexp entry date)
17685 "Process a SEXP diary ENTRY for DATE."
17686 (require 'diary-lib)
17687 (let ((result (if calendar-debug-sexp
17688 (let ((stack-trace-on-error t))
17689 (eval (car (read-from-string sexp))))
17690 (condition-case nil
17691 (eval (car (read-from-string sexp)))
17692 (error
17693 (beep)
17694 (message "Bad sexp at line %d in %s: %s"
17695 (org-current-line)
17696 (buffer-file-name) sexp)
17697 (sleep-for 2))))))
17698 (cond ((stringp result) (split-string result "; "))
17699 ((and (consp result)
17700 (not (consp (cdr result)))
17701 (stringp (cdr result))) (cdr result))
17702 ((and (consp result)
17703 (stringp (car result))) result)
17704 (result entry))))
17706 (defun org-diary-to-ical-string (frombuf)
17707 "Get iCalendar entries from diary entries in buffer FROMBUF.
17708 This uses the icalendar.el library."
17709 (let* ((tmpdir (if (featurep 'xemacs)
17710 (temp-directory)
17711 temporary-file-directory))
17712 (tmpfile (make-temp-name
17713 (expand-file-name "orgics" tmpdir)))
17714 buf rtn b e)
17715 (with-current-buffer frombuf
17716 (icalendar-export-region (point-min) (point-max) tmpfile)
17717 (setq buf (find-buffer-visiting tmpfile))
17718 (set-buffer buf)
17719 (goto-char (point-min))
17720 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17721 (setq b (match-beginning 0)))
17722 (goto-char (point-max))
17723 (if (re-search-backward "^END:VEVENT" nil t)
17724 (setq e (match-end 0)))
17725 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17726 (kill-buffer buf)
17727 (delete-file tmpfile)
17728 rtn))
17730 (defun org-closest-date (start current change prefer show-all)
17731 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17732 When PREFER is `past', return a date that is either CURRENT or past.
17733 When PREFER is `future', return a date that is either CURRENT or future.
17734 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17735 ;; Make the proper lists from the dates
17736 (catch 'exit
17737 (let ((a1 '(("h" . hour)
17738 ("d" . day)
17739 ("w" . week)
17740 ("m" . month)
17741 ("y" . year)))
17742 (shour (nth 2 (org-parse-time-string start)))
17743 dn dw sday cday n1 n2 n0
17744 d m y y1 y2 date1 date2 nmonths nm ny m2)
17746 (setq start (org-date-to-gregorian start)
17747 current (org-date-to-gregorian
17748 (if show-all
17749 current
17750 (time-to-days (current-time))))
17751 sday (calendar-absolute-from-gregorian start)
17752 cday (calendar-absolute-from-gregorian current))
17754 (if (<= cday sday) (throw 'exit sday))
17756 (when (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17757 (setq dn (string-to-number (match-string 1 change))
17758 dw (cdr (assoc (match-string 2 change) a1))))
17759 (unless (and dn (> dn 0))
17760 (user-error "Invalid change specifier: %s" change))
17761 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17762 (cond
17763 ((eq dw 'hour)
17764 (let ((missing-hours
17765 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17766 dn)))
17767 (setq n1 (if (zerop missing-hours) cday
17768 (- cday (1+ (floor (/ missing-hours 24)))))
17769 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17770 ((eq dw 'day)
17771 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17772 n2 (+ n1 dn)))
17773 ((eq dw 'year)
17774 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17775 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17776 (setq date1 (list m d y1)
17777 n1 (calendar-absolute-from-gregorian date1)
17778 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17779 n2 (calendar-absolute-from-gregorian date2)))
17780 ((eq dw 'month)
17781 ;; approx number of month between the two dates
17782 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17783 ;; How often does dn fit in there?
17784 (setq d (nth 1 start) m (car start) y (nth 2 start)
17785 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17786 m (+ m nm)
17787 ny (floor (/ m 12))
17788 y (+ y ny)
17789 m (- m (* ny 12)))
17790 (while (> m 12) (setq m (- m 12) y (1+ y)))
17791 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17792 (setq m2 (+ m dn) y2 y)
17793 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17794 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17795 (while (<= n2 cday)
17796 (setq n1 n2 m m2 y y2)
17797 (setq m2 (+ m dn) y2 y)
17798 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17799 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17800 ;; Make sure n1 is the earlier date
17801 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17802 (if show-all
17803 (cond
17804 ((eq prefer 'past) (if (= cday n2) n2 n1))
17805 ((eq prefer 'future) (if (= cday n1) n1 n2))
17806 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17807 (cond
17808 ((eq prefer 'past) (if (= cday n2) n2 n1))
17809 ((eq prefer 'future) (if (= cday n1) n1 n2))
17810 (t (if (= cday n1) n1 n2)))))))
17812 (defun org-date-to-gregorian (date)
17813 "Turn any specification of DATE into a Gregorian date for the calendar."
17814 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17815 ((and (listp date) (= (length date) 3)) date)
17816 ((stringp date)
17817 (setq date (org-parse-time-string date))
17818 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17819 ((listp date)
17820 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17822 (defun org-parse-time-string (s &optional nodefault)
17823 "Parse the standard Org-mode time string.
17824 This should be a lot faster than the normal `parse-time-string'.
17825 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17826 hour and minute fields will be nil if not given."
17827 (cond ((string-match org-ts-regexp0 s)
17828 (list 0
17829 (if (or (match-beginning 8) (not nodefault))
17830 (string-to-number (or (match-string 8 s) "0")))
17831 (if (or (match-beginning 7) (not nodefault))
17832 (string-to-number (or (match-string 7 s) "0")))
17833 (string-to-number (match-string 4 s))
17834 (string-to-number (match-string 3 s))
17835 (string-to-number (match-string 2 s))
17836 nil nil nil))
17837 ((string-match "^<[^>]+>$" s)
17838 (decode-time (seconds-to-time (org-matcher-time s))))
17839 (t (error "Not a standard Org-mode time string: %s" s))))
17841 (defun org-timestamp-up (&optional arg)
17842 "Increase the date item at the cursor by one.
17843 If the cursor is on the year, change the year. If it is on the month,
17844 the day or the time, change that.
17845 With prefix ARG, change by that many units."
17846 (interactive "p")
17847 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17849 (defun org-timestamp-down (&optional arg)
17850 "Decrease the date item at the cursor by one.
17851 If the cursor is on the year, change the year. If it is on the month,
17852 the day or the time, change that.
17853 With prefix ARG, change by that many units."
17854 (interactive "p")
17855 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17857 (defun org-timestamp-up-day (&optional arg)
17858 "Increase the date in the time stamp by one day.
17859 With prefix ARG, change that many days."
17860 (interactive "p")
17861 (if (and (not (org-at-timestamp-p t))
17862 (org-at-heading-p))
17863 (org-todo 'up)
17864 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17866 (defun org-timestamp-down-day (&optional arg)
17867 "Decrease the date in the time stamp by one day.
17868 With prefix ARG, change that many days."
17869 (interactive "p")
17870 (if (and (not (org-at-timestamp-p t))
17871 (org-at-heading-p))
17872 (org-todo 'down)
17873 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17875 (defun org-at-timestamp-p (&optional inactive-ok)
17876 "Non-nil if point is inside a timestamp.
17878 When optional argument INACTIVE-OK is non-nil, also consider
17879 inactive timestamps.
17881 When this function returns a non-nil value, match data is set
17882 according to `org-ts-regexp3' or `org-ts-regexp2', depending on
17883 INACTIVE-OK."
17884 (interactive)
17885 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17886 (pos (point))
17887 (ans (or (looking-at tsr)
17888 (save-excursion
17889 (skip-chars-backward "^[<\n\r\t")
17890 (if (> (point) (point-min)) (backward-char 1))
17891 (and (looking-at tsr)
17892 (> (- (match-end 0) pos) -1))))))
17893 (and ans
17894 (boundp 'org-ts-what)
17895 (setq org-ts-what
17896 (cond
17897 ((= pos (match-beginning 0)) 'bracket)
17898 ;; Point is considered to be "on the bracket" whether
17899 ;; it's really on it or right after it.
17900 ((= pos (1- (match-end 0))) 'bracket)
17901 ((= pos (match-end 0)) 'after)
17902 ((org-pos-in-match-range pos 2) 'year)
17903 ((org-pos-in-match-range pos 3) 'month)
17904 ((org-pos-in-match-range pos 7) 'hour)
17905 ((org-pos-in-match-range pos 8) 'minute)
17906 ((or (org-pos-in-match-range pos 4)
17907 (org-pos-in-match-range pos 5)) 'day)
17908 ((and (> pos (or (match-end 8) (match-end 5)))
17909 (< pos (match-end 0)))
17910 (- pos (or (match-end 8) (match-end 5))))
17911 (t 'day))))
17912 ans))
17914 (defun org-toggle-timestamp-type ()
17915 "Toggle the type (<active> or [inactive]) of a time stamp."
17916 (interactive)
17917 (when (org-at-timestamp-p t)
17918 (let ((beg (match-beginning 0)) (end (match-end 0))
17919 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17920 (save-excursion
17921 (goto-char beg)
17922 (while (re-search-forward "[][<>]" end t)
17923 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17924 t t)))
17925 (message "Timestamp is now %sactive"
17926 (if (equal (char-after beg) ?<) "" "in")))))
17928 (defun org-at-clock-log-p nil
17929 "Is the cursor on the clock log line?"
17930 (save-excursion
17931 (move-beginning-of-line 1)
17932 (looking-at org-clock-line-re)))
17934 (defvar org-clock-history) ; defined in org-clock.el
17935 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17936 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17937 "Change the date in the time stamp at point.
17938 The date will be changed by N times WHAT. WHAT can be `day', `month',
17939 `year', `minute', `second'. If WHAT is not given, the cursor position
17940 in the timestamp determines what will be changed.
17941 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17942 (let ((origin (point)) origin-cat
17943 with-hm inactive
17944 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17945 org-ts-what
17946 extra rem
17947 ts time time0 fixnext clrgx)
17948 (if (not (org-at-timestamp-p t))
17949 (user-error "Not at a timestamp"))
17950 (if (and (not what) (eq org-ts-what 'bracket))
17951 (org-toggle-timestamp-type)
17952 ;; Point isn't on brackets. Remember the part of the time-stamp
17953 ;; the point was in. Indeed, size of time-stamps may change,
17954 ;; but point must be kept in the same category nonetheless.
17955 (setq origin-cat org-ts-what)
17956 (if (and (not what) (not (eq org-ts-what 'day))
17957 org-display-custom-times
17958 (get-text-property (point) 'display)
17959 (not (get-text-property (1- (point)) 'display)))
17960 (setq org-ts-what 'day))
17961 (setq org-ts-what (or what org-ts-what)
17962 inactive (= (char-after (match-beginning 0)) ?\[)
17963 ts (match-string 0))
17964 (replace-match "")
17965 (when (string-match
17966 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17968 (setq extra (match-string 1 ts))
17969 (if suppress-tmp-delay
17970 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17971 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17972 (setq with-hm t))
17973 (setq time0 (org-parse-time-string ts))
17974 (when (and updown
17975 (eq org-ts-what 'minute)
17976 (not current-prefix-arg))
17977 ;; This looks like s-up and s-down. Change by one rounding step.
17978 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17979 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17980 (setcar (cdr time0) (+ (nth 1 time0)
17981 (if (> n 0) (- rem) (- dm rem))))))
17982 (setq time
17983 (encode-time (or (car time0) 0)
17984 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17985 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17986 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17987 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17988 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17989 (nthcdr 6 time0)))
17990 (when (and (member org-ts-what '(hour minute))
17991 extra
17992 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17993 (setq extra (org-modify-ts-extra
17994 extra
17995 (if (eq org-ts-what 'hour) 2 5)
17996 n dm)))
17997 (when (integerp org-ts-what)
17998 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17999 (if (eq what 'calendar)
18000 (let ((cal-date (org-get-date-from-calendar)))
18001 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
18002 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
18003 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
18004 (setcar time0 (or (car time0) 0))
18005 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
18006 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
18007 (setq time (apply 'encode-time time0))))
18008 ;; Insert the new time-stamp, and ensure point stays in the same
18009 ;; category as before (i.e. not after the last position in that
18010 ;; category).
18011 (let ((pos (point)))
18012 ;; Stay before inserted string. `save-excursion' is of no use.
18013 (setq org-last-changed-timestamp
18014 (org-insert-time-stamp time with-hm inactive nil nil extra))
18015 (goto-char pos))
18016 (save-match-data
18017 (looking-at org-ts-regexp3)
18018 (goto-char (cond
18019 ;; `day' category ends before `hour' if any, or at
18020 ;; the end of the day name.
18021 ((eq origin-cat 'day)
18022 (min (or (match-beginning 7) (1- (match-end 5))) origin))
18023 ((eq origin-cat 'hour) (min (match-end 7) origin))
18024 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
18025 ((integerp origin-cat) (min (1- (match-end 0)) origin))
18026 ;; `year' and `month' have both fixed size: point
18027 ;; couldn't have moved into another part.
18028 (t origin))))
18029 ;; Update clock if on a CLOCK line.
18030 (org-clock-update-time-maybe)
18031 ;; Maybe adjust the closest clock in `org-clock-history'
18032 (when org-clock-adjust-closest
18033 (if (not (and (org-at-clock-log-p)
18034 (< 1 (length (delq nil (mapcar 'marker-position
18035 org-clock-history))))))
18036 (message "No clock to adjust")
18037 (cond ((save-excursion ; fix previous clock?
18038 (re-search-backward org-ts-regexp0 nil t)
18039 (org-looking-back (concat org-clock-string " \\[")))
18040 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
18041 ((save-excursion ; fix next clock?
18042 (re-search-backward org-ts-regexp0 nil t)
18043 (looking-at (concat org-ts-regexp0 "\\] =>")))
18044 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
18045 (save-window-excursion
18046 ;; Find closest clock to point, adjust the previous/next one in history
18047 (let* ((p (save-excursion (org-back-to-heading t)))
18048 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
18049 (clfixnth
18050 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
18051 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
18052 (if (not clfixpos)
18053 (message "No clock to adjust")
18054 (save-excursion
18055 (org-goto-marker-or-bmk clfixpos)
18056 (org-show-subtree)
18057 (when (re-search-forward clrgx nil t)
18058 (goto-char (match-beginning 1))
18059 (let (org-clock-adjust-closest)
18060 (org-timestamp-change n org-ts-what updown))
18061 (message "Clock adjusted in %s for heading: %s"
18062 (file-name-nondirectory (buffer-file-name))
18063 (org-get-heading t t)))))))))
18064 ;; Try to recenter the calendar window, if any.
18065 (if (and org-calendar-follow-timestamp-change
18066 (get-buffer-window "*Calendar*" t)
18067 (memq org-ts-what '(day month year)))
18068 (org-recenter-calendar (time-to-days time))))))
18070 (defun org-modify-ts-extra (s pos n dm)
18071 "Change the different parts of the lead-time and repeat fields in timestamp."
18072 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18073 ng h m new rem)
18074 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18075 (cond
18076 ((or (org-pos-in-match-range pos 2)
18077 (org-pos-in-match-range pos 3))
18078 (setq m (string-to-number (match-string 3 s))
18079 h (string-to-number (match-string 2 s)))
18080 (if (org-pos-in-match-range pos 2)
18081 (setq h (+ h n))
18082 (setq n (* dm (org-no-warnings (signum n))))
18083 (when (not (= 0 (setq rem (% m dm))))
18084 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18085 (setq m (+ m n)))
18086 (if (< m 0) (setq m (+ m 60) h (1- h)))
18087 (if (> m 59) (setq m (- m 60) h (1+ h)))
18088 (setq h (min 24 (max 0 h)))
18089 (setq ng 1 new (format "-%02d:%02d" h m)))
18090 ((org-pos-in-match-range pos 6)
18091 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18092 ((org-pos-in-match-range pos 5)
18093 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18095 ((org-pos-in-match-range pos 9)
18096 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18097 ((org-pos-in-match-range pos 8)
18098 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18100 (when ng
18101 (setq s (concat
18102 (substring s 0 (match-beginning ng))
18104 (substring s (match-end ng))))))
18107 (defun org-recenter-calendar (date)
18108 "If the calendar is visible, recenter it to DATE."
18109 (let ((cwin (get-buffer-window "*Calendar*" t)))
18110 (when cwin
18111 (let ((calendar-move-hook nil))
18112 (with-selected-window cwin
18113 (calendar-goto-date (if (listp date) date
18114 (calendar-gregorian-from-absolute date))))))))
18116 (defun org-goto-calendar (&optional arg)
18117 "Go to the Emacs calendar at the current date.
18118 If there is a time stamp in the current line, go to that date.
18119 A prefix ARG can be used to force the current date."
18120 (interactive "P")
18121 (let ((tsr org-ts-regexp) diff
18122 (calendar-move-hook nil)
18123 (calendar-view-holidays-initially-flag nil)
18124 (calendar-view-diary-initially-flag nil))
18125 (if (or (org-at-timestamp-p)
18126 (save-excursion
18127 (beginning-of-line 1)
18128 (looking-at (concat ".*" tsr))))
18129 (let ((d1 (time-to-days (current-time)))
18130 (d2 (time-to-days
18131 (org-time-string-to-time (match-string 1)))))
18132 (setq diff (- d2 d1))))
18133 (calendar)
18134 (calendar-goto-today)
18135 (if (and diff (not arg)) (calendar-forward-day diff))))
18137 (defun org-get-date-from-calendar ()
18138 "Return a list (month day year) of date at point in calendar."
18139 (with-current-buffer "*Calendar*"
18140 (save-match-data
18141 (calendar-cursor-to-date))))
18143 (defun org-date-from-calendar ()
18144 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18145 If there is already a time stamp at the cursor position, update it."
18146 (interactive)
18147 (if (org-at-timestamp-p t)
18148 (org-timestamp-change 0 'calendar)
18149 (let ((cal-date (org-get-date-from-calendar)))
18150 (org-insert-time-stamp
18151 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18153 (defcustom org-effort-durations
18154 `(("min" . 1)
18155 ("h" . 60)
18156 ("d" . ,(* 60 8))
18157 ("w" . ,(* 60 8 5))
18158 ("m" . ,(* 60 8 5 4))
18159 ("y" . ,(* 60 8 5 40)))
18160 "Conversion factor to minutes for an effort modifier.
18162 Each entry has the form (MODIFIER . MINUTES).
18164 In an effort string, a number followed by MODIFIER is multiplied
18165 by the specified number of MINUTES to obtain an effort in
18166 minutes.
18168 For example, if the value of this variable is ((\"hours\" . 60)), then an
18169 effort string \"2hours\" is equivalent to 120 minutes."
18170 :group 'org-agenda
18171 :version "25.1"
18172 :package-version '(Org . "8.3")
18173 :type '(alist :key-type (string :tag "Modifier")
18174 :value-type (number :tag "Minutes")))
18176 (defun org-minutes-to-clocksum-string (m)
18177 "Format number of minutes as a clocksum string.
18178 The format is determined by `org-time-clocksum-format',
18179 `org-time-clocksum-use-fractional' and
18180 `org-time-clocksum-fractional-format' and
18181 `org-time-clocksum-use-effort-durations'."
18182 (let ((clocksum "")
18183 (m (round m)) ; Don't allow fractions of minutes
18184 h d w mo y fmt n)
18185 (setq h (if org-time-clocksum-use-effort-durations
18186 (cdr (assoc "h" org-effort-durations)) 60)
18187 d (if org-time-clocksum-use-effort-durations
18188 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18189 w (if org-time-clocksum-use-effort-durations
18190 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18191 mo (if org-time-clocksum-use-effort-durations
18192 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18193 y (if org-time-clocksum-use-effort-durations
18194 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18195 ;; fractional format
18196 (if org-time-clocksum-use-fractional
18197 (cond
18198 ;; single format string
18199 ((stringp org-time-clocksum-fractional-format)
18200 (format org-time-clocksum-fractional-format (/ m (float h))))
18201 ;; choice of fractional formats for different time units
18202 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18203 (> (/ (truncate m) (* y d h)) 0))
18204 (format fmt (/ m (* y d (float h)))))
18205 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18206 (> (/ (truncate m) (* mo d h)) 0))
18207 (format fmt (/ m (* mo d (float h)))))
18208 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18209 (> (/ (truncate m) (* w d h)) 0))
18210 (format fmt (/ m (* w d (float h)))))
18211 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18212 (> (/ (truncate m) (* d h)) 0))
18213 (format fmt (/ m (* d (float h)))))
18214 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18215 (> (/ (truncate m) h) 0))
18216 (format fmt (/ m (float h))))
18217 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18218 (format fmt m))
18219 ;; fall back to smallest time unit with a format
18220 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18221 (format fmt (/ m (float h))))
18222 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18223 (format fmt (/ m (* d (float h)))))
18224 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18225 (format fmt (/ m (* w d (float h)))))
18226 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18227 (format fmt (/ m (* mo d (float h)))))
18228 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18229 (format fmt (/ m (* y d (float h))))))
18230 ;; standard (non-fractional) format, with single format string
18231 (if (stringp org-time-clocksum-format)
18232 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18233 ;; separate formats components
18234 (and (setq fmt (plist-get org-time-clocksum-format :years))
18235 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18236 (plist-get org-time-clocksum-format :require-years))
18237 (setq clocksum (concat clocksum (format fmt n))
18238 m (- m (* n y d h))))
18239 (and (setq fmt (plist-get org-time-clocksum-format :months))
18240 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18241 (plist-get org-time-clocksum-format :require-months))
18242 (setq clocksum (concat clocksum (format fmt n))
18243 m (- m (* n mo d h))))
18244 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18245 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18246 (plist-get org-time-clocksum-format :require-weeks))
18247 (setq clocksum (concat clocksum (format fmt n))
18248 m (- m (* n w d h))))
18249 (and (setq fmt (plist-get org-time-clocksum-format :days))
18250 (or (> (setq n (/ (truncate m) (* d h))) 0)
18251 (plist-get org-time-clocksum-format :require-days))
18252 (setq clocksum (concat clocksum (format fmt n))
18253 m (- m (* n d h))))
18254 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18255 (or (> (setq n (/ (truncate m) h)) 0)
18256 (plist-get org-time-clocksum-format :require-hours))
18257 (setq clocksum (concat clocksum (format fmt n))
18258 m (- m (* n h))))
18259 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18260 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18261 (setq clocksum (concat clocksum (format fmt m))))
18262 ;; return formatted time duration
18263 clocksum))))
18265 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18266 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18267 "Org mode version 8.0")
18269 (defun org-hours-to-clocksum-string (n)
18270 (org-minutes-to-clocksum-string (* n 60)))
18272 (defun org-hh:mm-string-to-minutes (s)
18273 "Convert a string H:MM to a number of minutes.
18274 If the string is just a number, interpret it as minutes.
18275 In fact, the first hh:mm or number in the string will be taken,
18276 there can be extra stuff in the string.
18277 If no number is found, the return value is 0."
18278 (cond
18279 ((integerp s) s)
18280 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18281 (+ (* (string-to-number (match-string 1 s)) 60)
18282 (string-to-number (match-string 2 s))))
18283 ((string-match "\\([0-9]+\\)" s)
18284 (string-to-number (match-string 1 s)))
18285 (t 0)))
18287 (defcustom org-image-actual-width t
18288 "Should we use the actual width of images when inlining them?
18290 When set to t, always use the image width.
18292 When set to a number, use imagemagick (when available) to set
18293 the image's width to this value.
18295 When set to a number in a list, try to get the width from any
18296 #+ATTR.* keyword if it matches a width specification like
18298 #+ATTR_HTML: :width 300px
18300 and fall back on that number if none is found.
18302 When set to nil, try to get the width from an #+ATTR.* keyword
18303 and fall back on the original width if none is found.
18305 This requires Emacs >= 24.1, build with imagemagick support."
18306 :group 'org-appearance
18307 :version "24.4"
18308 :package-version '(Org . "8.0")
18309 :type '(choice
18310 (const :tag "Use the image width" t)
18311 (integer :tag "Use a number of pixels")
18312 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18313 (const :tag "Use #+ATTR* or don't resize" nil)))
18315 (defcustom org-agenda-inhibit-startup nil
18316 "Inhibit startup when preparing agenda buffers.
18317 When this variable is t, the initialization of the Org agenda
18318 buffers is inhibited: e.g. the visibility state is not set, the
18319 tables are not re-aligned, etc."
18320 :type 'boolean
18321 :version "24.3"
18322 :group 'org-agenda)
18324 (define-obsolete-variable-alias
18325 'org-agenda-ignore-drawer-properties
18326 'org-agenda-ignore-properties "25.1")
18328 (defcustom org-agenda-ignore-properties nil
18329 "Avoid updating text properties when building the agenda.
18330 Properties are used to prepare buffers for effort estimates,
18331 appointments, statistics and subtree-local categories.
18332 If you don't use these in the agenda, you can add them to this
18333 list and agenda building will be a bit faster.
18334 The value is a list, with zero or more of the symbols `effort', `appt',
18335 `stats' or `category'."
18336 :type '(set :greedy t
18337 (const effort)
18338 (const appt)
18339 (const stats)
18340 (const category))
18341 :version "25.1"
18342 :package-version '(Org . "8.3")
18343 :group 'org-agenda)
18345 (defun org-duration-string-to-minutes (s &optional output-to-string)
18346 "Convert a duration string S to minutes.
18348 A bare number is interpreted as minutes, modifiers can be set by
18349 customizing `org-effort-durations' (which see).
18351 Entries containing a colon are interpreted as H:MM by
18352 `org-hh:mm-string-to-minutes'."
18353 (let ((result 0)
18354 (re (concat "\\([0-9.]+\\) *\\("
18355 (regexp-opt (mapcar 'car org-effort-durations))
18356 "\\)")))
18357 (while (string-match re s)
18358 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18359 (string-to-number (match-string 1 s))))
18360 (setq s (replace-match "" nil t s)))
18361 (setq result (floor result))
18362 (incf result (org-hh:mm-string-to-minutes s))
18363 (if output-to-string (number-to-string result) result)))
18365 ;;;; Files
18367 (defun org-save-all-org-buffers ()
18368 "Save all Org-mode buffers without user confirmation."
18369 (interactive)
18370 (message "Saving all Org-mode buffers...")
18371 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18372 (when (featurep 'org-id) (org-id-locations-save))
18373 (message "Saving all Org-mode buffers... done"))
18375 (defun org-revert-all-org-buffers ()
18376 "Revert all Org-mode buffers.
18377 Prompt for confirmation when there are unsaved changes.
18378 Be sure you know what you are doing before letting this function
18379 overwrite your changes.
18381 This function is useful in a setup where one tracks org files
18382 with a version control system, to revert on one machine after pulling
18383 changes from another. I believe the procedure must be like this:
18385 1. M-x org-save-all-org-buffers
18386 2. Pull changes from the other machine, resolve conflicts
18387 3. M-x org-revert-all-org-buffers"
18388 (interactive)
18389 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18390 (user-error "Abort"))
18391 (save-excursion
18392 (save-window-excursion
18393 (mapc
18394 (lambda (b)
18395 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18396 (with-current-buffer b buffer-file-name))
18397 (org-pop-to-buffer-same-window b)
18398 (revert-buffer t 'no-confirm)))
18399 (buffer-list))
18400 (when (and (featurep 'org-id) org-id-track-globally)
18401 (org-id-locations-load)))))
18403 ;;;; Agenda files
18405 ;;;###autoload
18406 (defun org-switchb (&optional arg)
18407 "Switch between Org buffers.
18408 With one prefix argument, restrict available buffers to files.
18409 With two prefix arguments, restrict available buffers to agenda files.
18411 Defaults to `iswitchb' for buffer name completion.
18412 Set `org-completion-use-ido' to make it use ido instead."
18413 (interactive "P")
18414 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18415 ((equal arg '(16)) (org-buffer-list 'agenda))
18416 (t (org-buffer-list))))
18417 (org-completion-use-iswitchb org-completion-use-iswitchb)
18418 (org-completion-use-ido org-completion-use-ido))
18419 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18420 (setq org-completion-use-iswitchb t))
18421 (org-pop-to-buffer-same-window
18422 (org-icompleting-read "Org buffer: "
18423 (mapcar 'list (mapcar 'buffer-name blist))
18424 nil t))))
18426 ;;; Define some older names previously used for this functionality
18427 ;;;###autoload
18428 (defalias 'org-ido-switchb 'org-switchb)
18429 ;;;###autoload
18430 (defalias 'org-iswitchb 'org-switchb)
18432 (defun org-buffer-list (&optional predicate exclude-tmp)
18433 "Return a list of Org buffers.
18434 PREDICATE can be `export', `files' or `agenda'.
18436 export restrict the list to Export buffers.
18437 files restrict the list to buffers visiting Org files.
18438 agenda restrict the list to buffers visiting agenda files.
18440 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18441 (let* ((bfn nil)
18442 (agenda-files (and (eq predicate 'agenda)
18443 (mapcar 'file-truename (org-agenda-files t))))
18444 (filter
18445 (cond
18446 ((eq predicate 'files)
18447 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18448 ((eq predicate 'export)
18449 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18450 ((eq predicate 'agenda)
18451 (lambda (b)
18452 (with-current-buffer b
18453 (and (derived-mode-p 'org-mode)
18454 (setq bfn (buffer-file-name b))
18455 (member (file-truename bfn) agenda-files)))))
18456 (t (lambda (b) (with-current-buffer b
18457 (or (derived-mode-p 'org-mode)
18458 (string-match "\*Org .*Export"
18459 (buffer-name b)))))))))
18460 (delq nil
18461 (mapcar
18462 (lambda(b)
18463 (if (and (funcall filter b)
18464 (or (not exclude-tmp)
18465 (not (string-match "tmp" (buffer-name b)))))
18467 nil))
18468 (buffer-list)))))
18470 (defun org-agenda-files (&optional unrestricted archives)
18471 "Get the list of agenda files.
18472 Optional UNRESTRICTED means return the full list even if a restriction
18473 is currently in place.
18474 When ARCHIVES is t, include all archive files that are really being
18475 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18476 `org-agenda-archives-mode' is t."
18477 (let ((files
18478 (cond
18479 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18480 ((stringp org-agenda-files) (org-read-agenda-file-list))
18481 ((listp org-agenda-files) org-agenda-files)
18482 (t (error "Invalid value of `org-agenda-files'")))))
18483 (setq files (apply 'append
18484 (mapcar (lambda (f)
18485 (if (file-directory-p f)
18486 (directory-files
18487 f t org-agenda-file-regexp)
18488 (list f)))
18489 files)))
18490 (when org-agenda-skip-unavailable-files
18491 (setq files (delq nil
18492 (mapcar (function
18493 (lambda (file)
18494 (and (file-readable-p file) file)))
18495 files))))
18496 (when (or (eq archives t)
18497 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18498 (setq files (org-add-archive-files files)))
18499 files))
18501 (defun org-agenda-file-p (&optional file)
18502 "Return non-nil, if FILE is an agenda file.
18503 If FILE is omitted, use the file associated with the current
18504 buffer."
18505 (let ((fname (or file (buffer-file-name))))
18506 (and fname
18507 (member (file-truename fname)
18508 (mapcar #'file-truename (org-agenda-files t))))))
18510 (defun org-edit-agenda-file-list ()
18511 "Edit the list of agenda files.
18512 Depending on setup, this either uses customize to edit the variable
18513 `org-agenda-files', or it visits the file that is holding the list. In the
18514 latter case, the buffer is set up in a way that saving it automatically kills
18515 the buffer and restores the previous window configuration."
18516 (interactive)
18517 (if (stringp org-agenda-files)
18518 (let ((cw (current-window-configuration)))
18519 (find-file org-agenda-files)
18520 (org-set-local 'org-window-configuration cw)
18521 (org-add-hook 'after-save-hook
18522 (lambda ()
18523 (set-window-configuration
18524 (prog1 org-window-configuration
18525 (kill-buffer (current-buffer))))
18526 (org-install-agenda-files-menu)
18527 (message "New agenda file list installed"))
18528 nil 'local)
18529 (message "%s" (substitute-command-keys
18530 "Edit list and finish with \\[save-buffer]")))
18531 (customize-variable 'org-agenda-files)))
18533 (defun org-store-new-agenda-file-list (list)
18534 "Set new value for the agenda file list and save it correctly."
18535 (if (stringp org-agenda-files)
18536 (let ((fe (org-read-agenda-file-list t)) b u)
18537 (while (setq b (find-buffer-visiting org-agenda-files))
18538 (kill-buffer b))
18539 (with-temp-file org-agenda-files
18540 (insert
18541 (mapconcat
18542 (lambda (f) ;; Keep un-expanded entries.
18543 (if (setq u (assoc f fe))
18544 (cdr u)
18546 list "\n")
18547 "\n")))
18548 (let ((org-mode-hook nil) (org-inhibit-startup t)
18549 (org-insert-mode-line-in-empty-file nil))
18550 (setq org-agenda-files list)
18551 (customize-save-variable 'org-agenda-files org-agenda-files))))
18553 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18554 "Read the list of agenda files from a file.
18555 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18556 filenames, used by `org-store-new-agenda-file-list' to write back
18557 un-expanded file names."
18558 (when (file-directory-p org-agenda-files)
18559 (error "`org-agenda-files' cannot be a single directory"))
18560 (when (stringp org-agenda-files)
18561 (with-temp-buffer
18562 (insert-file-contents org-agenda-files)
18563 (mapcar
18564 (lambda (f)
18565 (let ((e (expand-file-name (substitute-in-file-name f)
18566 org-directory)))
18567 (if pair-with-expansion
18568 (cons e f)
18569 e)))
18570 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18572 ;;;###autoload
18573 (defun org-cycle-agenda-files ()
18574 "Cycle through the files in `org-agenda-files'.
18575 If the current buffer visits an agenda file, find the next one in the list.
18576 If the current buffer does not, find the first agenda file."
18577 (interactive)
18578 (let* ((fs (or (org-agenda-files t)
18579 (user-error "No agenda files")))
18580 (files (copy-sequence fs))
18581 (tcf (and buffer-file-name (file-truename buffer-file-name)))
18582 file)
18583 (when tcf
18584 (while (and (setq file (pop files))
18585 (not (equal (file-truename file) tcf)))))
18586 (find-file (car (or files fs)))
18587 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18589 (defun org-agenda-file-to-front (&optional to-end)
18590 "Move/add the current file to the top of the agenda file list.
18591 If the file is not present in the list, it is added to the front. If it is
18592 present, it is moved there. With optional argument TO-END, add/move to the
18593 end of the list."
18594 (interactive "P")
18595 (let ((org-agenda-skip-unavailable-files nil)
18596 (file-alist (mapcar (lambda (x)
18597 (cons (file-truename x) x))
18598 (org-agenda-files t)))
18599 (ctf (file-truename
18600 (or buffer-file-name
18601 (user-error "Please save the current buffer to a file"))))
18602 x had)
18603 (setq x (assoc ctf file-alist) had x)
18605 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18606 (if to-end
18607 (setq file-alist (append (delq x file-alist) (list x)))
18608 (setq file-alist (cons x (delq x file-alist))))
18609 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18610 (org-install-agenda-files-menu)
18611 (message "File %s to %s of agenda file list"
18612 (if had "moved" "added") (if to-end "end" "front"))))
18614 (defun org-remove-file (&optional file)
18615 "Remove current file from the list of files in variable `org-agenda-files'.
18616 These are the files which are being checked for agenda entries.
18617 Optional argument FILE means use this file instead of the current."
18618 (interactive)
18619 (let* ((org-agenda-skip-unavailable-files nil)
18620 (file (or file buffer-file-name
18621 (user-error "Current buffer does not visit a file")))
18622 (true-file (file-truename file))
18623 (afile (abbreviate-file-name file))
18624 (files (delq nil (mapcar
18625 (lambda (x)
18626 (if (equal true-file
18627 (file-truename x))
18628 nil x))
18629 (org-agenda-files t)))))
18630 (if (not (= (length files) (length (org-agenda-files t))))
18631 (progn
18632 (org-store-new-agenda-file-list files)
18633 (org-install-agenda-files-menu)
18634 (message "Removed from Org Agenda list: %s" afile))
18635 (message "File was not in list: %s (not removed)" afile))))
18637 (defun org-file-menu-entry (file)
18638 (vector file (list 'find-file file) t))
18640 (defun org-check-agenda-file (file)
18641 "Make sure FILE exists. If not, ask user what to do."
18642 (when (not (file-exists-p file))
18643 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18644 (abbreviate-file-name file))
18645 (let ((r (downcase (read-char-exclusive))))
18646 (cond
18647 ((equal r ?r)
18648 (org-remove-file file)
18649 (throw 'nextfile t))
18650 (t (user-error "Abort"))))))
18652 (defun org-get-agenda-file-buffer (file)
18653 "Get an agenda buffer visiting FILE.
18654 If the buffer needs to be created, add it to the list of buffers
18655 which might be released later."
18656 (let ((buf (org-find-base-buffer-visiting file)))
18657 (if buf
18658 buf ; just return it
18659 ;; Make a new buffer and remember it
18660 (setq buf (find-file-noselect file))
18661 (if buf (push buf org-agenda-new-buffers))
18662 buf)))
18664 (defun org-release-buffers (blist)
18665 "Release all buffers in list, asking the user for confirmation when needed.
18666 When a buffer is unmodified, it is just killed. When modified, it is saved
18667 \(if the user agrees) and then killed."
18668 (let (file)
18669 (dolist (buf blist)
18670 (setq file (buffer-file-name buf))
18671 (when (and (buffer-modified-p buf)
18672 file
18673 (y-or-n-p (format "Save file %s? " file)))
18674 (with-current-buffer buf (save-buffer)))
18675 (kill-buffer buf))))
18677 (defun org-agenda-prepare-buffers (files)
18678 "Create buffers for all agenda files, protect archived trees and comments."
18679 (interactive)
18680 (let ((pa '(:org-archived t))
18681 (pc '(:org-comment t))
18682 (pall '(:org-archived t :org-comment t))
18683 (inhibit-read-only t)
18684 (org-inhibit-startup org-agenda-inhibit-startup)
18685 (rea (concat ":" org-archive-tag ":"))
18686 file re pos)
18687 (setq org-tag-alist-for-agenda nil
18688 org-tag-groups-alist-for-agenda nil)
18689 (save-excursion
18690 (save-restriction
18691 (dolist (file files)
18692 (catch 'nextfile
18693 (if (bufferp file)
18694 (set-buffer file)
18695 (org-check-agenda-file file)
18696 (set-buffer (org-get-agenda-file-buffer file)))
18697 (widen)
18698 (org-set-regexps-and-options 'tags-only)
18699 (setq pos (point))
18700 (or (memq 'category org-agenda-ignore-properties)
18701 (org-refresh-category-properties))
18702 (or (memq 'stats org-agenda-ignore-properties)
18703 (org-refresh-stats-properties))
18704 (or (memq 'effort org-agenda-ignore-properties)
18705 (org-refresh-effort-properties))
18706 (or (memq 'appt org-agenda-ignore-properties)
18707 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18708 (setq org-todo-keywords-for-agenda
18709 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18710 (setq org-done-keywords-for-agenda
18711 (append org-done-keywords-for-agenda org-done-keywords))
18712 (setq org-todo-keyword-alist-for-agenda
18713 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18714 (setq org-tag-alist-for-agenda
18715 (org-uniquify
18716 (append org-tag-alist-for-agenda
18717 org-tag-alist
18718 org-tag-persistent-alist)))
18719 (if org-group-tags
18720 (setq org-tag-groups-alist-for-agenda
18721 (org-uniquify-alist
18722 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18723 (org-with-silent-modifications
18724 (save-excursion
18725 (remove-text-properties (point-min) (point-max) pall)
18726 (when org-agenda-skip-archived-trees
18727 (goto-char (point-min))
18728 (while (re-search-forward rea nil t)
18729 (if (org-at-heading-p t)
18730 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18731 (goto-char (point-min))
18732 (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
18733 (while (re-search-forward re nil t)
18734 (when (save-match-data (org-in-commented-heading-p t))
18735 (add-text-properties
18736 (match-beginning 0) (org-end-of-subtree t) pc)))))
18737 (goto-char pos)))))
18738 (setq org-todo-keywords-for-agenda
18739 (org-uniquify org-todo-keywords-for-agenda))
18740 (setq org-todo-keyword-alist-for-agenda
18741 (org-uniquify org-todo-keyword-alist-for-agenda))))
18744 ;;;; CDLaTeX minor mode
18746 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18747 "Keymap for the minor `org-cdlatex-mode'.")
18749 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18750 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18751 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18752 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18753 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18755 (defvar org-cdlatex-texmathp-advice-is-done nil
18756 "Flag remembering if we have applied the advice to texmathp already.")
18758 (define-minor-mode org-cdlatex-mode
18759 "Toggle the minor `org-cdlatex-mode'.
18760 This mode supports entering LaTeX environment and math in LaTeX fragments
18761 in Org-mode.
18762 \\{org-cdlatex-mode-map}"
18763 nil " OCDL" nil
18764 (when org-cdlatex-mode
18765 (require 'cdlatex)
18766 (run-hooks 'cdlatex-mode-hook)
18767 (cdlatex-compute-tables))
18768 (unless org-cdlatex-texmathp-advice-is-done
18769 (setq org-cdlatex-texmathp-advice-is-done t)
18770 (defadvice texmathp (around org-math-always-on activate)
18771 "Always return t in org-mode buffers.
18772 This is because we want to insert math symbols without dollars even outside
18773 the LaTeX math segments. If Orgmode thinks that point is actually inside
18774 an embedded LaTeX fragment, let texmathp do its job.
18775 \\[org-cdlatex-mode-map]"
18776 (interactive)
18777 (let (p)
18778 (cond
18779 ((not (derived-mode-p 'org-mode)) ad-do-it)
18780 ((eq this-command 'cdlatex-math-symbol)
18781 (setq ad-return-value t
18782 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18784 (let ((p (org-inside-LaTeX-fragment-p)))
18785 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18786 (setq ad-return-value t
18787 texmathp-why '("Org-mode embedded math" . 0))
18788 (if p ad-do-it)))))))))
18790 (defun turn-on-org-cdlatex ()
18791 "Unconditionally turn on `org-cdlatex-mode'."
18792 (org-cdlatex-mode 1))
18794 (defun org-try-cdlatex-tab ()
18795 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18796 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18797 - inside a LaTeX fragment, or
18798 - after the first word in a line, where an abbreviation expansion could
18799 insert a LaTeX environment."
18800 (when org-cdlatex-mode
18801 (cond
18802 ;; Before any word on the line: No expansion possible.
18803 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18804 ;; Just after first word on the line: Expand it. Make sure it
18805 ;; cannot happen on headlines, though.
18806 ((save-excursion
18807 (skip-chars-backward "a-zA-Z0-9*")
18808 (skip-chars-backward " \t")
18809 (and (bolp) (not (org-at-heading-p))))
18810 (cdlatex-tab) t)
18811 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18813 (defun org-cdlatex-underscore-caret (&optional arg)
18814 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18815 Revert to the normal definition outside of these fragments."
18816 (interactive "P")
18817 (if (org-inside-LaTeX-fragment-p)
18818 (call-interactively 'cdlatex-sub-superscript)
18819 (let (org-cdlatex-mode)
18820 (call-interactively (key-binding (vector last-input-event))))))
18822 (defun org-cdlatex-math-modify (&optional arg)
18823 "Execute `cdlatex-math-modify' in LaTeX fragments.
18824 Revert to the normal definition outside of these fragments."
18825 (interactive "P")
18826 (if (org-inside-LaTeX-fragment-p)
18827 (call-interactively 'cdlatex-math-modify)
18828 (let (org-cdlatex-mode)
18829 (call-interactively (key-binding (vector last-input-event))))))
18831 (defun org-cdlatex-environment-indent (&optional environment item)
18832 "Execute `cdlatex-environment' and indent the inserted environment.
18834 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18836 The inserted environment is indented to current indentation
18837 unless point is at the beginning of the line, in which the
18838 environment remains unintended."
18839 (interactive)
18840 ;; cdlatex-environment always return nil. Therefore, capture output
18841 ;; first and determine if an environment was selected.
18842 (let* ((beg (point-marker))
18843 (end (copy-marker (point) t))
18844 (inserted (progn
18845 (ignore-errors (cdlatex-environment environment item))
18846 (< beg end)))
18847 ;; Figure out how many lines to move forward after the
18848 ;; environment has been inserted.
18849 (lines (when inserted
18850 (save-excursion
18851 (- (loop while (< beg (point))
18852 with x = 0
18853 do (forward-line -1)
18854 (incf x)
18855 finally return x)
18856 (if (progn (goto-char beg)
18857 (and (progn (skip-chars-forward " \t") (eolp))
18858 (progn (skip-chars-backward " \t") (bolp))))
18859 1 0)))))
18860 (env (org-trim (delete-and-extract-region beg end))))
18861 (when inserted
18862 ;; Get indentation of next line unless at column 0.
18863 (let ((ind (if (bolp) 0
18864 (save-excursion
18865 (org-return-indent)
18866 (prog1 (org-get-indentation)
18867 (when (progn (skip-chars-forward " \t") (eolp))
18868 (delete-region beg (point)))))))
18869 (bol (progn (skip-chars-backward " \t") (bolp))))
18870 ;; Insert a newline before environment unless at column zero
18871 ;; to "escape" the current line. Insert a newline if
18872 ;; something is one the same line as \end{ENVIRONMENT}.
18873 (insert
18874 (concat (unless bol "\n") env
18875 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18876 (unless (zerop ind)
18877 (save-excursion
18878 (goto-char beg)
18879 (while (< (point) end)
18880 (unless (eolp) (org-indent-line-to ind))
18881 (forward-line))))
18882 (goto-char beg)
18883 (forward-line lines)
18884 (org-indent-line-to ind)))
18885 (set-marker beg nil)
18886 (set-marker end nil)))
18889 ;;;; LaTeX fragments
18891 (defun org-inside-LaTeX-fragment-p ()
18892 "Test if point is inside a LaTeX fragment.
18893 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18894 sequence appearing also before point.
18895 Even though the matchers for math are configurable, this function assumes
18896 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18897 delimiters are skipped when they have been removed by customization.
18898 The return value is nil, or a cons cell with the delimiter and the
18899 position of this delimiter.
18901 This function does a reasonably good job, but can locally be fooled by
18902 for example currency specifications. For example it will assume being in
18903 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18904 fragments that are properly closed, but during editing, we have to live
18905 with the uncertainty caused by missing closing delimiters. This function
18906 looks only before point, not after."
18907 (catch 'exit
18908 (let ((pos (point))
18909 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18910 (lim (progn
18911 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18912 (point)))
18913 dd-on str (start 0) m re)
18914 (goto-char pos)
18915 (when dodollar
18916 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18917 re (nth 1 (assoc "$" org-latex-regexps)))
18918 (while (string-match re str start)
18919 (cond
18920 ((= (match-end 0) (length str))
18921 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18922 ((= (match-end 0) (- (length str) 5))
18923 (throw 'exit nil))
18924 (t (setq start (match-end 0))))))
18925 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18926 (goto-char pos)
18927 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18928 (and (match-beginning 2) (throw 'exit nil))
18929 ;; count $$
18930 (while (re-search-backward "\\$\\$" lim t)
18931 (setq dd-on (not dd-on)))
18932 (goto-char pos)
18933 (if dd-on (cons "$$" m))))))
18935 (defun org-inside-latex-macro-p ()
18936 "Is point inside a LaTeX macro or its arguments?"
18937 (save-match-data
18938 (org-in-regexp
18939 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18941 (defvar org-latex-fragment-image-overlays nil
18942 "List of overlays carrying the images of latex fragments.")
18943 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18945 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18946 "Remove all overlays with LaTeX fragment images in current buffer.
18947 When optional arguments BEG and END are non-nil, remove all
18948 overlays between them instead. Return t when some overlays were
18949 removed, nil otherwise."
18950 (let (removedp)
18951 (setq org-latex-fragment-image-overlays
18952 (let ((beg (or beg (point-min)))
18953 (end (or end (point-max))))
18954 (org-remove-if
18955 (lambda (o)
18956 (and (>= (overlay-start o) beg)
18957 (<= (overlay-end o) end)
18958 (progn (delete-overlay o)
18959 (or removedp (setq removedp t)))))
18960 org-latex-fragment-image-overlays)))
18961 removedp))
18963 (define-obsolete-function-alias
18964 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18965 (defun org-toggle-latex-fragment (&optional arg)
18966 "Preview the LaTeX fragment at point, or all locally or globally.
18968 If the cursor is on a LaTeX fragment, create the image and overlay
18969 it over the source code, if there is none. Remove it otherwise.
18970 If there is no fragment at point, display all fragments in the
18971 current section.
18973 With prefix ARG, preview or clear image for all fragments in the
18974 current subtree or in the whole buffer when used before the first
18975 headline. With a double prefix ARG \\[universal-argument] \
18976 \\[universal-argument] preview or clear images
18977 for all fragments in the buffer."
18978 (interactive "P")
18979 (unless (buffer-file-name (buffer-base-buffer))
18980 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18981 (when (display-graphic-p)
18982 (catch 'exit
18983 (save-excursion
18984 (let ((window-start (window-start)) msg)
18985 (save-restriction
18986 (cond
18987 ((or (equal arg '(16))
18988 (and (equal arg '(4))
18989 (org-with-limited-levels (org-before-first-heading-p))))
18990 (if (org-remove-latex-fragment-image-overlays)
18991 (progn (message "LaTeX fragments images removed from buffer")
18992 (throw 'exit nil))
18993 (setq msg "Creating images for buffer...")))
18994 ((equal arg '(4))
18995 (org-with-limited-levels (org-back-to-heading t))
18996 (let ((beg (point))
18997 (end (progn (org-end-of-subtree t) (point))))
18998 (if (org-remove-latex-fragment-image-overlays beg end)
18999 (progn
19000 (message "LaTeX fragment images removed from subtree")
19001 (throw 'exit nil))
19002 (setq msg "Creating images for subtree...")
19003 (narrow-to-region beg end))))
19004 ((let ((datum (org-element-context)))
19005 (when (memq (org-element-type datum)
19006 '(latex-environment latex-fragment))
19007 (let* ((beg (org-element-property :begin datum))
19008 (end (org-element-property :end datum)))
19009 (if (org-remove-latex-fragment-image-overlays beg end)
19010 (progn (message "LaTeX fragment image removed")
19011 (throw 'exit nil))
19012 (narrow-to-region beg end)
19013 (setq msg "Creating image..."))))))
19015 (org-with-limited-levels
19016 (let ((beg (if (org-at-heading-p) (line-beginning-position)
19017 (outline-previous-heading)
19018 (point)))
19019 (end (progn (outline-next-heading) (point))))
19020 (if (org-remove-latex-fragment-image-overlays beg end)
19021 (progn
19022 (message "LaTeX fragment images removed from section")
19023 (throw 'exit nil))
19024 (setq msg "Creating images for section...")
19025 (narrow-to-region beg end))))))
19026 (let ((file (buffer-file-name (buffer-base-buffer))))
19027 (org-format-latex
19028 (concat org-latex-preview-ltxpng-directory
19029 (file-name-sans-extension (file-name-nondirectory file)))
19030 ;; Emacs cannot overlay images from remote hosts.
19031 ;; Create it in `temporary-file-directory' instead.
19032 (if (file-remote-p file) temporary-file-directory
19033 default-directory)
19034 'overlays msg 'forbuffer
19035 org-latex-create-formula-image-program)))
19036 ;; Work around a bug that doesn't restore window's start
19037 ;; when widening back the buffer.
19038 (set-window-start nil window-start)
19039 (message (concat msg "done")))))))
19041 (defun org-format-latex
19042 (prefix &optional dir overlays msg forbuffer processing-type)
19043 "Replace LaTeX fragments with links to an image, and produce images.
19045 When optional argument OVERLAYS is non-nil, display the image on
19046 top of the fragment instead of replacing it.
19048 PROCESSING-TYPE is the conversion method to use, as a symbol.
19050 Some of the options can be changed using the variable
19051 `org-format-latex-options', which see."
19052 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
19053 (unless (eq processing-type 'verbatim)
19054 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
19055 (cnt 0)
19056 checkdir-flag)
19057 (goto-char (point-min))
19058 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
19059 (when (and overlays (memq processing-type '(dvipng imagemagick)))
19060 (overlay-recenter (point-max)))
19061 (while (re-search-forward math-regexp nil t)
19062 (unless (and overlays
19063 (eq (get-char-property (point) 'org-overlay-type)
19064 'org-latex-overlay))
19065 (let* ((context (org-element-context))
19066 (type (org-element-type context)))
19067 (when (memq type '(latex-environment latex-fragment))
19068 (let ((block-type (eq type 'latex-environment))
19069 (value (org-element-property :value context))
19070 (beg (org-element-property :begin context))
19071 (end (save-excursion
19072 (goto-char (org-element-property :end context))
19073 (skip-chars-backward " \r\t\n")
19074 (point))))
19075 (case processing-type
19076 (mathjax
19077 ;; Prepare for MathJax processing.
19078 (if (eq (char-after beg) ?$)
19079 (save-excursion
19080 (delete-region beg end)
19081 (insert "\\(" (substring value 1 -1) "\\)"))
19082 (goto-char end)))
19083 ((dvipng imagemagick)
19084 ;; Process to an image.
19085 (incf cnt)
19086 (goto-char beg)
19087 (let* ((face (face-at-point))
19088 ;; Get the colors from the face at point.
19090 (let ((color (plist-get org-format-latex-options
19091 :foreground)))
19092 (if (and forbuffer (eq color 'auto))
19093 (face-attribute face :foreground nil 'default)
19094 color)))
19096 (let ((color (plist-get org-format-latex-options
19097 :background)))
19098 (if (and forbuffer (eq color 'auto))
19099 (face-attribute face :background nil 'default)
19100 color)))
19101 (hash (sha1 (prin1-to-string
19102 (list org-format-latex-header
19103 org-latex-default-packages-alist
19104 org-latex-packages-alist
19105 org-format-latex-options
19106 forbuffer value fg bg))))
19107 (absprefix (expand-file-name prefix dir))
19108 (linkfile (format "%s_%s.png" prefix hash))
19109 (movefile (format "%s_%s.png" absprefix hash))
19110 (sep (and block-type "\n\n"))
19111 (link (concat sep "[[file:" linkfile "]]" sep))
19112 (options
19113 (org-combine-plists
19114 org-format-latex-options
19115 `(:foreground ,fg :background ,bg))))
19116 (when msg (message msg cnt))
19117 (unless checkdir-flag ; Ensure the directory exists.
19118 (setq checkdir-flag t)
19119 (let ((todir (file-name-directory absprefix)))
19120 (unless (file-directory-p todir)
19121 (make-directory todir t))))
19122 (unless (file-exists-p movefile)
19123 (org-create-formula-image
19124 value movefile options forbuffer processing-type))
19125 (if overlays
19126 (progn
19127 (dolist (o (overlays-in beg end))
19128 (when (eq (overlay-get o 'org-overlay-type)
19129 'org-latex-overlay)
19130 (delete-overlay o)))
19131 (let ((ov (make-overlay beg end)))
19132 (overlay-put ov
19133 'org-overlay-type
19134 'org-latex-overlay)
19135 (overlay-put ov 'evaporate t)
19136 (if (featurep 'xemacs)
19137 (progn
19138 (overlay-put ov 'invisible t)
19139 (overlay-put
19140 ov 'end-glyph
19141 (make-glyph
19142 (vector 'png :file movefile))))
19143 (overlay-put
19144 ov 'display
19145 (list 'image
19146 :type 'png
19147 :file movefile
19148 :ascent 'center)))
19149 (push ov org-latex-fragment-image-overlays))
19150 (goto-char end))
19151 (delete-region beg end)
19152 (insert
19153 (org-add-props link
19154 (list 'org-latex-src
19155 (replace-regexp-in-string "\"" "" value)
19156 'org-latex-src-embed-type
19157 (if block-type 'paragraph 'character)))))))
19158 (mathml
19159 ;; Process to MathML.
19160 (unless (org-format-latex-mathml-available-p)
19161 (user-error "LaTeX to MathML converter not configured"))
19162 (incf cnt)
19163 (when msg (message msg cnt))
19164 (goto-char beg)
19165 (delete-region beg end)
19166 (insert (org-format-latex-as-mathml
19167 value block-type prefix dir)))
19168 (otherwise
19169 (error "Unknown conversion type %s for LaTeX fragments"
19170 processing-type)))))))))))
19172 (defun org-create-math-formula (latex-frag &optional mathml-file)
19173 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19174 Use `org-latex-to-mathml-convert-command'. If the conversion is
19175 sucessful, return the portion between \"<math...> </math>\"
19176 elements otherwise return nil. When MATHML-FILE is specified,
19177 write the results in to that file. When invoked as an
19178 interactive command, prompt for LATEX-FRAG, with initial value
19179 set to the current active region and echo the results for user
19180 inspection."
19181 (interactive (list (let ((frag (when (org-region-active-p)
19182 (buffer-substring-no-properties
19183 (region-beginning) (region-end)))))
19184 (read-string "LaTeX Fragment: " frag nil frag))))
19185 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19186 (let* ((tmp-in-file (file-relative-name
19187 (make-temp-name (expand-file-name "ltxmathml-in"))))
19188 (ignore (write-region latex-frag nil tmp-in-file))
19189 (tmp-out-file (file-relative-name
19190 (make-temp-name (expand-file-name "ltxmathml-out"))))
19191 (cmd (format-spec
19192 org-latex-to-mathml-convert-command
19193 `((?j . ,(and org-latex-to-mathml-jar-file
19194 (shell-quote-argument
19195 (expand-file-name
19196 org-latex-to-mathml-jar-file))))
19197 (?I . ,(shell-quote-argument tmp-in-file))
19198 (?i . ,latex-frag)
19199 (?o . ,(shell-quote-argument tmp-out-file)))))
19200 mathml shell-command-output)
19201 (when (org-called-interactively-p 'any)
19202 (unless (org-format-latex-mathml-available-p)
19203 (user-error "LaTeX to MathML converter not configured")))
19204 (message "Running %s" cmd)
19205 (setq shell-command-output (shell-command-to-string cmd))
19206 (setq mathml
19207 (when (file-readable-p tmp-out-file)
19208 (with-current-buffer (find-file-noselect tmp-out-file t)
19209 (goto-char (point-min))
19210 (when (re-search-forward
19211 (concat
19212 (regexp-quote
19213 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19214 "[^>]*?>"
19215 "\\(.\\|\n\\)*"
19216 "</math>")
19217 nil t)
19218 (prog1 (match-string 0) (kill-buffer))))))
19219 (cond
19220 (mathml
19221 (setq mathml
19222 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19223 (when mathml-file
19224 (write-region mathml nil mathml-file))
19225 (when (org-called-interactively-p 'any)
19226 (message mathml)))
19227 ((message "LaTeX to MathML conversion failed")
19228 (message shell-command-output)))
19229 (delete-file tmp-in-file)
19230 (when (file-exists-p tmp-out-file)
19231 (delete-file tmp-out-file))
19232 mathml))
19234 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19235 prefix &optional dir)
19236 "Use `org-create-math-formula' but check local cache first."
19237 (let* ((absprefix (expand-file-name prefix dir))
19238 (print-length nil) (print-level nil)
19239 (formula-id (concat
19240 "formula-"
19241 (sha1
19242 (prin1-to-string
19243 (list latex-frag
19244 org-latex-to-mathml-convert-command)))))
19245 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19246 (formula-cache-dir (file-name-directory formula-cache)))
19248 (unless (file-directory-p formula-cache-dir)
19249 (make-directory formula-cache-dir t))
19251 (unless (file-exists-p formula-cache)
19252 (org-create-math-formula latex-frag formula-cache))
19254 (if (file-exists-p formula-cache)
19255 ;; Successful conversion. Return the link to MathML file.
19256 (org-add-props
19257 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19258 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19259 'org-latex-src-embed-type (if latex-frag-type
19260 'paragraph 'character)))
19261 ;; Failed conversion. Return the LaTeX fragment verbatim
19262 latex-frag)))
19264 (defun org-create-formula-image (string tofile options buffer &optional type)
19265 "Create an image from LaTeX source using dvipng or convert.
19266 This function calls either `org-create-formula-image-with-dvipng'
19267 or `org-create-formula-image-with-imagemagick' depending on the
19268 value of `org-latex-create-formula-image-program' or on the value
19269 of the optional TYPE variable.
19271 Note: ultimately these two function should be combined as they
19272 share a good deal of logic."
19273 (org-check-external-command
19274 "latex" "needed to convert LaTeX fragments to images")
19275 (funcall
19276 (case (or type org-latex-create-formula-image-program)
19277 (dvipng
19278 (org-check-external-command
19279 "dvipng" "needed to convert LaTeX fragments to images")
19280 #'org-create-formula-image-with-dvipng)
19281 (imagemagick
19282 (org-check-external-command
19283 "convert" "you need to install imagemagick")
19284 #'org-create-formula-image-with-imagemagick)
19285 (t (error
19286 "Invalid value of `org-latex-create-formula-image-program'")))
19287 string tofile options buffer))
19289 (declare-function org-export-get-backend "ox" (name))
19290 (declare-function org-export--get-global-options "ox" (&optional backend))
19291 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19292 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19293 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19294 (defun org-create-formula--latex-header ()
19295 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19296 (let ((info (org-combine-plists (org-export--get-global-options
19297 (org-export-get-backend 'latex))
19298 (org-export--get-inbuffer-options
19299 (org-export-get-backend 'latex)))))
19300 (org-latex-guess-babel-language
19301 (org-latex-guess-inputenc
19302 (org-splice-latex-header
19303 org-format-latex-header
19304 org-latex-default-packages-alist
19305 org-latex-packages-alist t
19306 (plist-get info :latex-header)))
19307 info)))
19309 (defun org--get-display-dpi ()
19310 "Get the DPI of the display.
19312 Assumes that the display has the same pixel width in the
19313 horizontal and vertical directions."
19314 (if (display-graphic-p)
19315 (round (/ (display-pixel-height)
19316 (/ (display-mm-height) 25.4)))
19317 (error "Attempt to calculate the dpi of a non-graphic display")))
19319 ;; This function borrows from Ganesh Swami's latex2png.el
19320 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19321 "This calls dvipng."
19322 (require 'ox-latex)
19323 (let* ((tmpdir (if (featurep 'xemacs)
19324 (temp-directory)
19325 temporary-file-directory))
19326 (texfilebase (make-temp-name
19327 (expand-file-name "orgtex" tmpdir)))
19328 (texfile (concat texfilebase ".tex"))
19329 (dvifile (concat texfilebase ".dvi"))
19330 (pngfile (concat texfilebase ".png"))
19331 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19332 ;; This assumes that the display has the same pixel width in
19333 ;; the horizontal and vertical directions
19334 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19335 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19336 "Black"))
19337 (bg (or (plist-get options (if buffer :background :html-background))
19338 "Transparent")))
19339 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19340 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19341 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19342 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19343 (let ((latex-header (org-create-formula--latex-header)))
19344 (with-temp-file texfile
19345 (insert latex-header)
19346 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19347 (let ((dir default-directory))
19348 (ignore-errors
19349 (cd tmpdir)
19350 (call-process "latex" nil nil nil texfile))
19351 (cd dir))
19352 (if (not (file-exists-p dvifile))
19353 (progn (message "Failed to create dvi file from %s" texfile) nil)
19354 (ignore-errors
19355 (if (featurep 'xemacs)
19356 (call-process "dvipng" nil nil nil
19357 "-fg" fg "-bg" bg
19358 "-T" "tight"
19359 "-o" pngfile
19360 dvifile)
19361 (call-process "dvipng" nil nil nil
19362 "-fg" fg "-bg" bg
19363 "-D" dpi
19364 ;;"-x" scale "-y" scale
19365 "-T" "tight"
19366 "-o" pngfile
19367 dvifile)))
19368 (if (not (file-exists-p pngfile))
19369 (if org-format-latex-signal-error
19370 (error "Failed to create png file from %s" texfile)
19371 (message "Failed to create png file from %s" texfile)
19372 nil)
19373 ;; Use the requested file name and clean up
19374 (copy-file pngfile tofile 'replace)
19375 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19376 (if (file-exists-p (concat texfilebase e))
19377 (delete-file (concat texfilebase e))))
19378 pngfile))))
19380 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19381 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19382 "This calls convert, which is included into imagemagick."
19383 (require 'ox-latex)
19384 (let* ((tmpdir (if (featurep 'xemacs)
19385 (temp-directory)
19386 temporary-file-directory))
19387 (texfilebase (make-temp-name
19388 (expand-file-name "orgtex" tmpdir)))
19389 (texfile (concat texfilebase ".tex"))
19390 (pdffile (concat texfilebase ".pdf"))
19391 (pngfile (concat texfilebase ".png"))
19392 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19393 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19394 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19395 "black"))
19396 (bg (or (plist-get options (if buffer :background :html-background))
19397 "white")))
19398 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19399 (setq fg (org-latex-color-format fg)))
19400 (if (eq bg 'default) (setq bg (org-latex-color :background))
19401 (setq bg (org-latex-color-format
19402 (if (string= bg "Transparent") "white" bg))))
19403 (let ((latex-header (org-create-formula--latex-header)))
19404 (with-temp-file texfile
19405 (insert latex-header)
19406 (insert "\n\\begin{document}\n"
19407 "\\definecolor{fg}{rgb}{" fg "}\n"
19408 "\\definecolor{bg}{rgb}{" bg "}\n"
19409 "\n\\pagecolor{bg}\n"
19410 "\n{\\color{fg}\n"
19411 string
19412 "\n}\n"
19413 "\n\\end{document}\n")))
19414 (org-latex-compile texfile t)
19415 (if (not (file-exists-p pdffile))
19416 (progn (message "Failed to create pdf file from %s" texfile) nil)
19417 (ignore-errors
19418 (if (featurep 'xemacs)
19419 (call-process "convert" nil nil nil
19420 "-density" "96"
19421 "-trim"
19422 "-antialias"
19423 pdffile
19424 "-quality" "100"
19425 ;; "-sharpen" "0x1.0"
19426 pngfile)
19427 (call-process "convert" nil nil nil
19428 "-density" dpi
19429 "-trim"
19430 "-antialias"
19431 pdffile
19432 "-quality" "100"
19433 ;; "-sharpen" "0x1.0"
19434 pngfile)))
19435 (if (not (file-exists-p pngfile))
19436 (if org-format-latex-signal-error
19437 (error "Failed to create png file from %s" texfile)
19438 (message "Failed to create png file from %s" texfile)
19439 nil)
19440 ;; Use the requested file name and clean up
19441 (copy-file pngfile tofile 'replace)
19442 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19443 (if (file-exists-p (concat texfilebase e))
19444 (delete-file (concat texfilebase e))))
19445 pngfile))))
19447 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19448 "Fill a LaTeX header template TPL.
19449 In the template, the following place holders will be recognized:
19451 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19452 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19453 [PACKAGES] \\usepackage statements for PKG
19454 [NO-PACKAGES] do not include PKG
19455 [EXTRA] the string EXTRA
19456 [NO-EXTRA] do not include EXTRA
19458 For backward compatibility, if both the positive and the negative place
19459 holder is missing, the positive one (without the \"NO-\") will be
19460 assumed to be present at the end of the template.
19461 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19462 EXTRA is a string.
19463 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19464 (let (rpl (end ""))
19465 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19466 (setq rpl (if (or (match-end 1) (not def-pkg))
19467 "" (org-latex-packages-to-string def-pkg snippets-p t))
19468 tpl (replace-match rpl t t tpl))
19469 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19471 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19472 (setq rpl (if (or (match-end 1) (not pkg))
19473 "" (org-latex-packages-to-string pkg snippets-p t))
19474 tpl (replace-match rpl t t tpl))
19475 (if pkg (setq end
19476 (concat end "\n"
19477 (org-latex-packages-to-string pkg snippets-p)))))
19479 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19480 (setq rpl (if (or (match-end 1) (not extra))
19481 "" (concat extra "\n"))
19482 tpl (replace-match rpl t t tpl))
19483 (if (and extra (string-match "\\S-" extra))
19484 (setq end (concat end "\n" extra))))
19486 (if (string-match "\\S-" end)
19487 (concat tpl "\n" end)
19488 tpl)))
19490 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19491 "Turn an alist of packages into a string with the \\usepackage macros."
19492 (setq pkg (mapconcat (lambda(p)
19493 (cond
19494 ((stringp p) p)
19495 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19496 (format "%% Package %s omitted" (cadr p)))
19497 ((equal "" (car p))
19498 (format "\\usepackage{%s}" (cadr p)))
19500 (format "\\usepackage[%s]{%s}"
19501 (car p) (cadr p)))))
19503 "\n"))
19504 (if newline (concat pkg "\n") pkg))
19506 (defun org-dvipng-color (attr)
19507 "Return a RGB color specification for dvipng."
19508 (apply 'format "rgb %s %s %s"
19509 (mapcar 'org-normalize-color
19510 (if (featurep 'xemacs)
19511 (color-rgb-components
19512 (face-property 'default
19513 (cond ((eq attr :foreground) 'foreground)
19514 ((eq attr :background) 'background))))
19515 (color-values (face-attribute 'default attr nil))))))
19517 (defun org-dvipng-color-format (color-name)
19518 "Convert COLOR-NAME to a RGB color value for dvipng."
19519 (apply 'format "rgb %s %s %s"
19520 (mapcar 'org-normalize-color
19521 (color-values color-name))))
19523 (defun org-latex-color (attr)
19524 "Return a RGB color for the LaTeX color package."
19525 (apply 'format "%s,%s,%s"
19526 (mapcar 'org-normalize-color
19527 (if (featurep 'xemacs)
19528 (color-rgb-components
19529 (face-property 'default
19530 (cond ((eq attr :foreground) 'foreground)
19531 ((eq attr :background) 'background))))
19532 (color-values (face-attribute 'default attr nil))))))
19534 (defun org-latex-color-format (color-name)
19535 "Convert COLOR-NAME to a RGB color value."
19536 (apply 'format "%s,%s,%s"
19537 (mapcar 'org-normalize-color
19538 (color-values color-name))))
19540 (defun org-normalize-color (value)
19541 "Return string to be used as color value for an RGB component."
19542 (format "%g" (/ value 65535.0)))
19546 ;; Image display
19548 (defvar org-inline-image-overlays nil)
19549 (make-variable-buffer-local 'org-inline-image-overlays)
19551 (defun org-toggle-inline-images (&optional include-linked)
19552 "Toggle the display of inline images.
19553 INCLUDE-LINKED is passed to `org-display-inline-images'."
19554 (interactive "P")
19555 (if org-inline-image-overlays
19556 (progn
19557 (org-remove-inline-images)
19558 (when (org-called-interactively-p 'interactive)
19559 (message "Inline image display turned off")))
19560 (org-display-inline-images include-linked)
19561 (when (org-called-interactively-p 'interactive)
19562 (message (if org-inline-image-overlays
19563 (format "%d images displayed inline"
19564 (length org-inline-image-overlays))
19565 "No images to display inline")))))
19567 (defun org-redisplay-inline-images ()
19568 "Refresh the display of inline images."
19569 (interactive)
19570 (if (not org-inline-image-overlays)
19571 (org-toggle-inline-images)
19572 (org-toggle-inline-images)
19573 (org-toggle-inline-images)))
19575 (defun org-display-inline-images (&optional include-linked refresh beg end)
19576 "Display inline images.
19578 An inline image is a link which follows either of these
19579 conventions:
19581 1. Its path is a file with an extension matching return value
19582 from `image-file-name-regexp' and it has no contents.
19584 2. Its description consists in a single link of the previous
19585 type.
19587 When optional argument INCLUDE-LINKED is non-nil, also links with
19588 a text description part will be inlined. This can be nice for
19589 a quick look at those images, but it does not reflect what
19590 exported files will look like.
19592 When optional argument REFRESH is non-nil, refresh existing
19593 images between BEG and END. This will create new image displays
19594 only if necessary. BEG and END default to the buffer
19595 boundaries."
19596 (interactive "P")
19597 (when (display-graphic-p)
19598 (unless refresh
19599 (org-remove-inline-images)
19600 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19601 (org-with-wide-buffer
19602 (goto-char (or beg (point-min)))
19603 (let ((case-fold-search t)
19604 (file-extension-re (org-image-file-name-regexp)))
19605 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19606 (let ((link (save-match-data (org-element-context))))
19607 ;; Check if we're at an inline image.
19608 (when (and (equal (org-element-property :type link) "file")
19609 (or include-linked
19610 (not (org-element-property :contents-begin link)))
19611 (let ((parent (org-element-property :parent link)))
19612 (or (not (eq (org-element-type parent) 'link))
19613 (not (cdr (org-element-contents parent)))))
19614 (org-string-match-p file-extension-re
19615 (org-element-property :path link)))
19616 (let ((file (expand-file-name
19617 (org-link-unescape
19618 (org-element-property :path link)))))
19619 (when (file-exists-p file)
19620 (let ((width
19621 ;; Apply `org-image-actual-width' specifications.
19622 (cond
19623 ((not (image-type-available-p 'imagemagick)) nil)
19624 ((eq org-image-actual-width t) nil)
19625 ((listp org-image-actual-width)
19627 ;; First try to find a width among
19628 ;; attributes associated to the paragraph
19629 ;; containing link.
19630 (let ((paragraph
19631 (let ((e link))
19632 (while (and (setq e (org-element-property
19633 :parent e))
19634 (not (eq (org-element-type e)
19635 'paragraph))))
19636 e)))
19637 (when paragraph
19638 (save-excursion
19639 (goto-char (org-element-property :begin paragraph))
19640 (when
19641 (re-search-forward
19642 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19643 (org-element-property
19644 :post-affiliated paragraph)
19646 (string-to-number (match-string 1))))))
19647 ;; Otherwise, fall-back to provided number.
19648 (car org-image-actual-width)))
19649 ((numberp org-image-actual-width)
19650 org-image-actual-width)))
19651 (old (get-char-property-and-overlay
19652 (org-element-property :begin link)
19653 'org-image-overlay)))
19654 (if (and (car-safe old) refresh)
19655 (image-refresh (overlay-get (cdr old) 'display))
19656 (let ((image (create-image file
19657 (and width 'imagemagick)
19659 :width width)))
19660 (when image
19661 (let* ((link
19662 ;; If inline image is the description
19663 ;; of another link, be sure to
19664 ;; consider the latter as the one to
19665 ;; apply the overlay on.
19666 (let ((parent
19667 (org-element-property :parent link)))
19668 (if (eq (org-element-type parent) 'link)
19669 parent
19670 link)))
19671 (ov (make-overlay
19672 (org-element-property :begin link)
19673 (progn
19674 (goto-char
19675 (org-element-property :end link))
19676 (skip-chars-backward " \t")
19677 (point)))))
19678 (overlay-put ov 'display image)
19679 (overlay-put ov 'face 'default)
19680 (overlay-put ov 'org-image-overlay t)
19681 (overlay-put
19682 ov 'modification-hooks
19683 (list 'org-display-inline-remove-overlay))
19684 (push ov org-inline-image-overlays)))))))))))))))
19686 (define-obsolete-function-alias
19687 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19689 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19690 "Remove inline-display overlay if a corresponding region is modified."
19691 (let ((inhibit-modification-hooks t))
19692 (when (and ov after)
19693 (delete ov org-inline-image-overlays)
19694 (delete-overlay ov))))
19696 (defun org-remove-inline-images ()
19697 "Remove inline display of images."
19698 (interactive)
19699 (mapc 'delete-overlay org-inline-image-overlays)
19700 (setq org-inline-image-overlays nil))
19702 ;;;; Key bindings
19704 ;; Outline functions from `outline-mode-prefix-map'
19705 ;; that can be remapped in Org:
19706 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19707 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19708 (define-key org-mode-map [remap outline-forward-same-level]
19709 'org-forward-heading-same-level)
19710 (define-key org-mode-map [remap outline-backward-same-level]
19711 'org-backward-heading-same-level)
19712 (define-key org-mode-map [remap show-branches]
19713 'org-kill-note-or-show-branches)
19714 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19715 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19716 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19717 (define-key org-mode-map [remap outline-next-visible-heading]
19718 'org-next-visible-heading)
19719 (define-key org-mode-map [remap outline-previous-visible-heading]
19720 'org-previous-visible-heading)
19722 ;; Outline functions from `outline-mode-prefix-map' that can not
19723 ;; be remapped in Org:
19725 ;; - the column "key binding" shows whether the Outline function is still
19726 ;; available in Org mode on the same key that it has been bound to in
19727 ;; Outline mode:
19728 ;; - "overridden": key used for a different functionality in Org mode
19729 ;; - else: key still bound to the same Outline function in Org mode
19731 ;; | Outline function | key binding | Org replacement |
19732 ;; |------------------------------------+-------------+--------------------------|
19733 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19734 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19735 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19736 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19737 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19738 ;; | `show-entry' | overridden | no replacement |
19739 ;; | `show-children' | `C-c C-i' | visibility cycling |
19740 ;; | `show-branches' | `C-c C-k' | still same function |
19741 ;; | `show-subtree' | overridden | visibility cycling |
19742 ;; | `show-all' | overridden | no replacement |
19743 ;; | `hide-subtree' | overridden | visibility cycling |
19744 ;; | `hide-body' | overridden | no replacement |
19745 ;; | `hide-entry' | overridden | visibility cycling |
19746 ;; | `hide-leaves' | overridden | no replacement |
19747 ;; | `hide-sublevels' | overridden | no replacement |
19748 ;; | `hide-other' | overridden | no replacement |
19750 ;; Make `C-c C-x' a prefix key
19751 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19753 ;; TAB key with modifiers
19754 (org-defkey org-mode-map "\C-i" 'org-cycle)
19755 (org-defkey org-mode-map [(tab)] 'org-cycle)
19756 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19757 (org-defkey org-mode-map "\M-\t" #'pcomplete)
19758 ;; The following line is necessary under Suse GNU/Linux
19759 (unless (featurep 'xemacs)
19760 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19761 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19762 (define-key org-mode-map [backtab] 'org-shifttab)
19764 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19765 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19766 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19768 ;; Cursor keys with modifiers
19769 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19770 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19771 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19772 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19774 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19775 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19776 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19777 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19778 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19779 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19781 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19782 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19783 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19784 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19786 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19787 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19788 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19789 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19791 ;; Babel keys
19792 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19793 (mapc (lambda (pair)
19794 (define-key org-babel-map (car pair) (cdr pair)))
19795 org-babel-key-bindings)
19797 ;;; Extra keys for tty access.
19798 ;; We only set them when really needed because otherwise the
19799 ;; menus don't show the simple keys
19801 (when (or org-use-extra-keys
19802 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19803 (not window-system))
19804 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19805 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19806 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19807 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19808 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19809 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19810 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19811 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19812 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19813 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19814 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19815 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19816 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19817 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19818 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19819 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19820 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19821 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19822 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19823 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19824 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19825 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19826 (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
19827 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19828 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19829 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19830 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19831 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19833 ;; All the other keys
19835 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19836 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19837 (if (boundp 'narrow-map)
19838 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19839 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19840 (if (boundp 'narrow-map)
19841 (org-defkey narrow-map "b" 'org-narrow-to-block)
19842 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19843 (if (boundp 'narrow-map)
19844 (org-defkey narrow-map "e" 'org-narrow-to-element)
19845 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19846 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19847 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19848 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19849 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19850 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19851 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19852 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19853 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19854 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19855 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19856 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
19857 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19858 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19859 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19860 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19861 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19862 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19863 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19864 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19865 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19866 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19867 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19868 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19869 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19870 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19871 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19872 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19873 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19874 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19875 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19876 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19877 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19878 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19879 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19880 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19881 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19882 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19883 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19884 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19885 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19886 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19887 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19888 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19889 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19890 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19891 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19892 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19893 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19894 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19895 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19896 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19897 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19898 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19899 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19900 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19901 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19902 (org-defkey org-mode-map "\C-c^" 'org-sort)
19903 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19904 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19905 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19906 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19907 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19908 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19909 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19910 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19911 (org-defkey org-mode-map "\C-m" 'org-return)
19912 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19913 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19914 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19915 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19916 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19917 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19918 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19919 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19920 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19921 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19922 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19923 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19924 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19925 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19926 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19927 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19928 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19929 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19930 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19931 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19932 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19933 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19934 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19935 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19936 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19938 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19939 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19940 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19942 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19943 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19944 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19945 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19946 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19947 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19948 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19949 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19950 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19951 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19952 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19953 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19954 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19955 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19956 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19957 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19958 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19959 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19960 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19961 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19962 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19963 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19965 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19966 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19967 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19968 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19969 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19971 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19973 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19975 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19976 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19978 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19981 (when (featurep 'xemacs)
19982 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19985 (defconst org-speed-commands-default
19987 ("Outline Navigation")
19988 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19989 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19990 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19991 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19992 ("F" . org-next-block)
19993 ("B" . org-previous-block)
19994 ("u" . (org-speed-move-safe 'outline-up-heading))
19995 ("j" . org-goto)
19996 ("g" . (org-refile t))
19997 ("Outline Visibility")
19998 ("c" . org-cycle)
19999 ("C" . org-shifttab)
20000 (" " . org-display-outline-path)
20001 ("s" . org-narrow-to-subtree)
20002 ("=" . org-columns)
20003 ("Outline Structure Editing")
20004 ("U" . org-metaup)
20005 ("D" . org-metadown)
20006 ("r" . org-metaright)
20007 ("l" . org-metaleft)
20008 ("R" . org-shiftmetaright)
20009 ("L" . org-shiftmetaleft)
20010 ("i" . (progn (forward-char 1) (call-interactively
20011 'org-insert-heading-respect-content)))
20012 ("^" . org-sort)
20013 ("w" . org-refile)
20014 ("a" . org-archive-subtree-default-with-confirmation)
20015 ("@" . org-mark-subtree)
20016 ("#" . org-toggle-comment)
20017 ("Clock Commands")
20018 ("I" . org-clock-in)
20019 ("O" . org-clock-out)
20020 ("Meta Data Editing")
20021 ("t" . org-todo)
20022 ("," . (org-priority))
20023 ("0" . (org-priority ?\ ))
20024 ("1" . (org-priority ?A))
20025 ("2" . (org-priority ?B))
20026 ("3" . (org-priority ?C))
20027 (":" . org-set-tags-command)
20028 ("e" . org-set-effort)
20029 ("E" . org-inc-effort)
20030 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
20031 (org-entry-put (point) "APPT_WARNTIME" m)))
20032 ("Agenda Views etc")
20033 ("v" . org-agenda)
20034 ("/" . org-sparse-tree)
20035 ("Misc")
20036 ("o" . org-open-at-point)
20037 ("?" . org-speed-command-help)
20038 ("<" . (org-agenda-set-restriction-lock 'subtree))
20039 (">" . (org-agenda-remove-restriction-lock))
20041 "The default speed commands.")
20043 (defun org-print-speed-command (e)
20044 (if (> (length (car e)) 1)
20045 (progn
20046 (princ "\n")
20047 (princ (car e))
20048 (princ "\n")
20049 (princ (make-string (length (car e)) ?-))
20050 (princ "\n"))
20051 (princ (car e))
20052 (princ " ")
20053 (if (symbolp (cdr e))
20054 (princ (symbol-name (cdr e)))
20055 (prin1 (cdr e)))
20056 (princ "\n")))
20058 (defun org-speed-command-help ()
20059 "Show the available speed commands."
20060 (interactive)
20061 (if (not org-use-speed-commands)
20062 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
20063 (with-output-to-temp-buffer "*Help*"
20064 (princ "User-defined Speed commands\n===========================\n")
20065 (mapc 'org-print-speed-command org-speed-commands-user)
20066 (princ "\n")
20067 (princ "Built-in Speed commands\n=======================\n")
20068 (mapc 'org-print-speed-command org-speed-commands-default))
20069 (with-current-buffer "*Help*"
20070 (setq truncate-lines t))))
20072 (defun org-speed-move-safe (cmd)
20073 "Execute CMD, but make sure that the cursor always ends up in a headline.
20074 If not, return to the original position and throw an error."
20075 (interactive)
20076 (let ((pos (point)))
20077 (call-interactively cmd)
20078 (unless (and (bolp) (org-at-heading-p))
20079 (goto-char pos)
20080 (error "Boundary reached while executing %s" cmd))))
20082 (defvar org-self-insert-command-undo-counter 0)
20084 (defvar org-table-auto-blank-field) ; defined in org-table.el
20085 (defvar org-speed-command nil)
20087 (define-obsolete-function-alias
20088 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20090 (defun org-speed-command-activate (keys)
20091 "Hook for activating single-letter speed commands.
20092 `org-speed-commands-default' specifies a minimal command set.
20093 Use `org-speed-commands-user' for further customization."
20094 (when (or (and (bolp) (looking-at org-outline-regexp))
20095 (and (functionp org-use-speed-commands)
20096 (funcall org-use-speed-commands)))
20097 (cdr (assoc keys (append org-speed-commands-user
20098 org-speed-commands-default)))))
20100 (define-obsolete-function-alias
20101 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20103 (defun org-babel-speed-command-activate (keys)
20104 "Hook for activating single-letter code block commands."
20105 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20106 (cdr (assoc keys org-babel-key-bindings))))
20108 (defcustom org-speed-command-hook
20109 '(org-speed-command-default-hook org-babel-speed-command-hook)
20110 "Hook for activating speed commands at strategic locations.
20111 Hook functions are called in sequence until a valid handler is
20112 found.
20114 Each hook takes a single argument, a user-pressed command key
20115 which is also a `self-insert-command' from the global map.
20117 Within the hook, examine the cursor position and the command key
20118 and return nil or a valid handler as appropriate. Handler could
20119 be one of an interactive command, a function, or a form.
20121 Set `org-use-speed-commands' to non-nil value to enable this
20122 hook. The default setting is `org-speed-command-activate'."
20123 :group 'org-structure
20124 :version "24.1"
20125 :type 'hook)
20127 (defun org-self-insert-command (N)
20128 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20129 If the cursor is in a table looking at whitespace, the whitespace is
20130 overwritten, and the table is not marked as requiring realignment."
20131 (interactive "p")
20132 (org-check-before-invisible-edit 'insert)
20133 (cond
20134 ((and org-use-speed-commands
20135 (let ((kv (this-command-keys-vector)))
20136 (setq org-speed-command
20137 (run-hook-with-args-until-success
20138 'org-speed-command-hook
20139 (make-string 1 (aref kv (1- (length kv))))))))
20140 (cond
20141 ((commandp org-speed-command)
20142 (setq this-command org-speed-command)
20143 (call-interactively org-speed-command))
20144 ((functionp org-speed-command)
20145 (funcall org-speed-command))
20146 ((and org-speed-command (listp org-speed-command))
20147 (eval org-speed-command))
20148 (t (let (org-use-speed-commands)
20149 (call-interactively 'org-self-insert-command)))))
20150 ((and
20151 (org-table-p)
20152 (progn
20153 ;; check if we blank the field, and if that triggers align
20154 (and (featurep 'org-table) org-table-auto-blank-field
20155 (memq last-command
20156 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20157 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
20158 ;; got extra space, this field does not determine column width
20159 (let (org-table-may-need-update) (org-table-blank-field))
20160 ;; no extra space, this field may determine column width
20161 (org-table-blank-field)))
20163 (eq N 1)
20164 (looking-at "[^|\n]* |"))
20165 (let (org-table-may-need-update)
20166 (goto-char (1- (match-end 0)))
20167 (backward-delete-char 1)
20168 (goto-char (match-beginning 0))
20169 (self-insert-command N)))
20171 (setq org-table-may-need-update t)
20172 (self-insert-command N)
20173 (org-fix-tags-on-the-fly)
20174 (if org-self-insert-cluster-for-undo
20175 (if (not (eq last-command 'org-self-insert-command))
20176 (setq org-self-insert-command-undo-counter 1)
20177 (if (>= org-self-insert-command-undo-counter 20)
20178 (setq org-self-insert-command-undo-counter 1)
20179 (and (> org-self-insert-command-undo-counter 0)
20180 buffer-undo-list (listp buffer-undo-list)
20181 (not (cadr buffer-undo-list)) ; remove nil entry
20182 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20183 (setq org-self-insert-command-undo-counter
20184 (1+ org-self-insert-command-undo-counter))))))))
20186 (defun org-check-before-invisible-edit (kind)
20187 "Check is editing if kind KIND would be dangerous with invisible text around.
20188 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20189 ;; First, try to get out of here as quickly as possible, to reduce overhead
20190 (if (and org-catch-invisible-edits
20191 (or (not (boundp 'visible-mode)) (not visible-mode))
20192 (or (get-char-property (point) 'invisible)
20193 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20194 ;; OK, we need to take a closer look
20195 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20196 (invisible-before-point (if (bobp) nil (get-char-property
20197 (1- (point)) 'invisible)))
20198 (border-and-ok-direction
20200 ;; Check if we are acting predictably before invisible text
20201 (and invisible-at-point (not invisible-before-point)
20202 (memq kind '(insert delete-backward)))
20203 ;; Check if we are acting predictably after invisible text
20204 ;; This works not well, and I have turned it off. It seems
20205 ;; better to always show and stop after invisible text.
20206 ;; (and (not invisible-at-point) invisible-before-point
20207 ;; (memq kind '(insert delete)))
20209 (when (or (memq invisible-at-point '(outline org-hide-block t))
20210 (memq invisible-before-point '(outline org-hide-block t)))
20211 (if (eq org-catch-invisible-edits 'error)
20212 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20213 (if (and org-custom-properties-overlays
20214 (y-or-n-p "Display invisible properties in this buffer? "))
20215 (org-toggle-custom-properties-visibility)
20216 ;; Make the area visible
20217 (save-excursion
20218 (if invisible-before-point
20219 (goto-char (previous-single-char-property-change
20220 (point) 'invisible)))
20221 (show-subtree))
20222 (cond
20223 ((eq org-catch-invisible-edits 'show)
20224 ;; That's it, we do the edit after showing
20225 (message
20226 "Unfolding invisible region around point before editing")
20227 (sit-for 1))
20228 ((and (eq org-catch-invisible-edits 'smart)
20229 border-and-ok-direction)
20230 (message "Unfolding invisible region around point before editing"))
20232 ;; Don't do the edit, make the user repeat it in full visibility
20233 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20235 (defun org-fix-tags-on-the-fly ()
20236 (when (and (equal (char-after (point-at-bol)) ?*)
20237 (org-at-heading-p))
20238 (org-align-tags-here org-tags-column)))
20240 (defun org-delete-backward-char (N)
20241 "Like `delete-backward-char', insert whitespace at field end in tables.
20242 When deleting backwards, in tables this function will insert whitespace in
20243 front of the next \"|\" separator, to keep the table aligned. The table will
20244 still be marked for re-alignment if the field did fill the entire column,
20245 because, in this case the deletion might narrow the column."
20246 (interactive "p")
20247 (save-match-data
20248 (org-check-before-invisible-edit 'delete-backward)
20249 (if (and (org-table-p)
20250 (eq N 1)
20251 (string-match "|" (buffer-substring (point-at-bol) (point)))
20252 (looking-at ".*?|"))
20253 (let ((pos (point))
20254 (noalign (looking-at "[^|\n\r]* |"))
20255 (c org-table-may-need-update))
20256 (backward-delete-char N)
20257 (if (not overwrite-mode)
20258 (progn
20259 (skip-chars-forward "^|")
20260 (insert " ")
20261 (goto-char (1- pos))))
20262 ;; noalign: if there were two spaces at the end, this field
20263 ;; does not determine the width of the column.
20264 (if noalign (setq org-table-may-need-update c)))
20265 (backward-delete-char N)
20266 (org-fix-tags-on-the-fly))))
20268 (defun org-delete-char (N)
20269 "Like `delete-char', but insert whitespace at field end in tables.
20270 When deleting characters, in tables this function will insert whitespace in
20271 front of the next \"|\" separator, to keep the table aligned. The table will
20272 still be marked for re-alignment if the field did fill the entire column,
20273 because, in this case the deletion might narrow the column."
20274 (interactive "p")
20275 (save-match-data
20276 (org-check-before-invisible-edit 'delete)
20277 (if (and (org-table-p)
20278 (not (bolp))
20279 (not (= (char-after) ?|))
20280 (eq N 1))
20281 (if (looking-at ".*?|")
20282 (let ((pos (point))
20283 (noalign (looking-at "[^|\n\r]* |"))
20284 (c org-table-may-need-update))
20285 (replace-match
20286 (concat (substring (match-string 0) 1 -1) " |") nil t)
20287 (goto-char pos)
20288 ;; noalign: if there were two spaces at the end, this field
20289 ;; does not determine the width of the column.
20290 (if noalign (setq org-table-may-need-update c)))
20291 (delete-char N))
20292 (delete-char N)
20293 (org-fix-tags-on-the-fly))))
20295 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20296 (put 'org-self-insert-command 'delete-selection
20297 (lambda ()
20298 (not (run-hook-with-args-until-success
20299 'self-insert-uses-region-functions))))
20300 (put 'orgtbl-self-insert-command 'delete-selection
20301 (lambda ()
20302 (not (run-hook-with-args-until-success
20303 'self-insert-uses-region-functions))))
20304 (put 'org-delete-char 'delete-selection 'supersede)
20305 (put 'org-delete-backward-char 'delete-selection 'supersede)
20306 (put 'org-yank 'delete-selection 'yank)
20308 ;; Make `flyspell-mode' delay after some commands
20309 (put 'org-self-insert-command 'flyspell-delayed t)
20310 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20311 (put 'org-delete-char 'flyspell-delayed t)
20312 (put 'org-delete-backward-char 'flyspell-delayed t)
20314 ;; Make pabbrev-mode expand after org-mode commands
20315 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20316 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20318 (defun org-remap (map &rest commands)
20319 "In MAP, remap the functions given in COMMANDS.
20320 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20321 (let (new old)
20322 (while commands
20323 (setq old (pop commands) new (pop commands))
20324 (if (fboundp 'command-remapping)
20325 (org-defkey map (vector 'remap old) new)
20326 (substitute-key-definition old new map global-map)))))
20328 (defun org-transpose-words ()
20329 "Transpose words for Org.
20330 This uses the `org-mode-transpose-word-syntax-table' syntax
20331 table, which interprets characters in `org-emphasis-alist' as
20332 word constituents."
20333 (interactive)
20334 (with-syntax-table org-mode-transpose-word-syntax-table
20335 (call-interactively 'transpose-words)))
20336 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20338 (when (eq org-enable-table-editor 'optimized)
20339 ;; If the user wants maximum table support, we need to hijack
20340 ;; some standard editing functions
20341 (org-remap org-mode-map
20342 'self-insert-command 'org-self-insert-command
20343 'delete-char 'org-delete-char
20344 'delete-backward-char 'org-delete-backward-char)
20345 (org-defkey org-mode-map "|" 'org-force-self-insert))
20347 (defvar org-ctrl-c-ctrl-c-hook nil
20348 "Hook for functions attaching themselves to `C-c C-c'.
20350 This can be used to add additional functionality to the C-c C-c
20351 key which executes context-dependent commands. This hook is run
20352 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20353 run after the last test.
20355 Each function will be called with no arguments. The function
20356 must check if the context is appropriate for it to act. If yes,
20357 it should do its thing and then return a non-nil value. If the
20358 context is wrong, just do nothing and return nil.")
20360 (defvar org-ctrl-c-ctrl-c-final-hook nil
20361 "Hook for functions attaching themselves to `C-c C-c'.
20363 This can be used to add additional functionality to the C-c C-c
20364 key which executes context-dependent commands. This hook is run
20365 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20366 before the first test.
20368 Each function will be called with no arguments. The function
20369 must check if the context is appropriate for it to act. If yes,
20370 it should do its thing and then return a non-nil value. If the
20371 context is wrong, just do nothing and return nil.")
20373 (defvar org-tab-first-hook nil
20374 "Hook for functions to attach themselves to TAB.
20375 See `org-ctrl-c-ctrl-c-hook' for more information.
20376 This hook runs as the first action when TAB is pressed, even before
20377 `org-cycle' messes around with the `outline-regexp' to cater for
20378 inline tasks and plain list item folding.
20379 If any function in this hook returns t, any other actions that
20380 would have been caused by TAB (such as table field motion or visibility
20381 cycling) will not occur.")
20383 (defvar org-tab-after-check-for-table-hook nil
20384 "Hook for functions to attach themselves to TAB.
20385 See `org-ctrl-c-ctrl-c-hook' for more information.
20386 This hook runs after it has been established that the cursor is not in a
20387 table, but before checking if the cursor is in a headline or if global cycling
20388 should be done.
20389 If any function in this hook returns t, not other actions like visibility
20390 cycling will be done.")
20392 (defvar org-tab-after-check-for-cycling-hook nil
20393 "Hook for functions to attach themselves to TAB.
20394 See `org-ctrl-c-ctrl-c-hook' for more information.
20395 This hook runs after it has been established that not table field motion and
20396 not visibility should be done because of current context. This is probably
20397 the place where a package like yasnippets can hook in.")
20399 (defvar org-tab-before-tab-emulation-hook nil
20400 "Hook for functions to attach themselves to TAB.
20401 See `org-ctrl-c-ctrl-c-hook' for more information.
20402 This hook runs after every other options for TAB have been exhausted, but
20403 before indentation and \t insertion takes place.")
20405 (defvar org-metaleft-hook nil
20406 "Hook for functions attaching themselves to `M-left'.
20407 See `org-ctrl-c-ctrl-c-hook' for more information.")
20408 (defvar org-metaright-hook nil
20409 "Hook for functions attaching themselves to `M-right'.
20410 See `org-ctrl-c-ctrl-c-hook' for more information.")
20411 (defvar org-metaup-hook nil
20412 "Hook for functions attaching themselves to `M-up'.
20413 See `org-ctrl-c-ctrl-c-hook' for more information.")
20414 (defvar org-metadown-hook nil
20415 "Hook for functions attaching themselves to `M-down'.
20416 See `org-ctrl-c-ctrl-c-hook' for more information.")
20417 (defvar org-shiftmetaleft-hook nil
20418 "Hook for functions attaching themselves to `M-S-left'.
20419 See `org-ctrl-c-ctrl-c-hook' for more information.")
20420 (defvar org-shiftmetaright-hook nil
20421 "Hook for functions attaching themselves to `M-S-right'.
20422 See `org-ctrl-c-ctrl-c-hook' for more information.")
20423 (defvar org-shiftmetaup-hook nil
20424 "Hook for functions attaching themselves to `M-S-up'.
20425 See `org-ctrl-c-ctrl-c-hook' for more information.")
20426 (defvar org-shiftmetadown-hook nil
20427 "Hook for functions attaching themselves to `M-S-down'.
20428 See `org-ctrl-c-ctrl-c-hook' for more information.")
20429 (defvar org-metareturn-hook nil
20430 "Hook for functions attaching themselves to `M-RET'.
20431 See `org-ctrl-c-ctrl-c-hook' for more information.")
20432 (defvar org-shiftup-hook nil
20433 "Hook for functions attaching themselves to `S-up'.
20434 See `org-ctrl-c-ctrl-c-hook' for more information.")
20435 (defvar org-shiftup-final-hook nil
20436 "Hook for functions attaching themselves to `S-up'.
20437 This one runs after all other options except shift-select have been excluded.
20438 See `org-ctrl-c-ctrl-c-hook' for more information.")
20439 (defvar org-shiftdown-hook nil
20440 "Hook for functions attaching themselves to `S-down'.
20441 See `org-ctrl-c-ctrl-c-hook' for more information.")
20442 (defvar org-shiftdown-final-hook nil
20443 "Hook for functions attaching themselves to `S-down'.
20444 This one runs after all other options except shift-select have been excluded.
20445 See `org-ctrl-c-ctrl-c-hook' for more information.")
20446 (defvar org-shiftleft-hook nil
20447 "Hook for functions attaching themselves to `S-left'.
20448 See `org-ctrl-c-ctrl-c-hook' for more information.")
20449 (defvar org-shiftleft-final-hook nil
20450 "Hook for functions attaching themselves to `S-left'.
20451 This one runs after all other options except shift-select have been excluded.
20452 See `org-ctrl-c-ctrl-c-hook' for more information.")
20453 (defvar org-shiftright-hook nil
20454 "Hook for functions attaching themselves to `S-right'.
20455 See `org-ctrl-c-ctrl-c-hook' for more information.")
20456 (defvar org-shiftright-final-hook nil
20457 "Hook for functions attaching themselves to `S-right'.
20458 This one runs after all other options except shift-select have been excluded.
20459 See `org-ctrl-c-ctrl-c-hook' for more information.")
20461 (defun org-modifier-cursor-error ()
20462 "Throw an error, a modified cursor command was applied in wrong context."
20463 (user-error "This command is active in special context like tables, headlines or items"))
20465 (defun org-shiftselect-error ()
20466 "Throw an error because Shift-Cursor command was applied in wrong context."
20467 (if (and (boundp 'shift-select-mode) shift-select-mode)
20468 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20469 (user-error "This command works only in special context like headlines or timestamps")))
20471 (defun org-call-for-shift-select (cmd)
20472 (let ((this-command-keys-shift-translated t))
20473 (call-interactively cmd)))
20475 (defun org-shifttab (&optional arg)
20476 "Global visibility cycling or move to previous table field.
20477 Call `org-table-previous-field' within a table.
20478 When ARG is nil, cycle globally through visibility states.
20479 When ARG is a numeric prefix, show contents of this level."
20480 (interactive "P")
20481 (cond
20482 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20483 ((integerp arg)
20484 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20485 (message "Content view to level: %d" arg)
20486 (org-content (prefix-numeric-value arg2))
20487 (org-cycle-show-empty-lines t)
20488 (setq org-cycle-global-status 'overview)))
20489 (t (call-interactively 'org-global-cycle))))
20491 (defun org-shiftmetaleft ()
20492 "Promote subtree or delete table column.
20493 Calls `org-promote-subtree', `org-outdent-item-tree', or
20494 `org-table-delete-column', depending on context. See the
20495 individual commands for more information."
20496 (interactive)
20497 (cond
20498 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20499 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20500 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20501 ((if (not (org-region-active-p)) (org-at-item-p)
20502 (save-excursion (goto-char (region-beginning))
20503 (org-at-item-p)))
20504 (call-interactively 'org-outdent-item-tree))
20505 (t (org-modifier-cursor-error))))
20507 (defun org-shiftmetaright ()
20508 "Demote subtree or insert table column.
20509 Calls `org-demote-subtree', `org-indent-item-tree', or
20510 `org-table-insert-column', depending on context. See the
20511 individual commands for more information."
20512 (interactive)
20513 (cond
20514 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20515 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20516 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20517 ((if (not (org-region-active-p)) (org-at-item-p)
20518 (save-excursion (goto-char (region-beginning))
20519 (org-at-item-p)))
20520 (call-interactively 'org-indent-item-tree))
20521 (t (org-modifier-cursor-error))))
20523 (defun org-shiftmetaup (&optional arg)
20524 "Drag the line at point up.
20525 In a table, kill the current row.
20526 On a clock timestamp, update the value of the timestamp like `S-<up>'
20527 but also adjust the previous clocked item in the clock history.
20528 Everywhere else, drag the line at point up."
20529 (interactive "P")
20530 (cond
20531 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20532 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20533 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20534 (call-interactively 'org-timestamp-up)))
20535 (t (call-interactively 'org-drag-line-backward))))
20537 (defun org-shiftmetadown (&optional arg)
20538 "Drag the line at point down.
20539 In a table, insert an empty row at the current line.
20540 On a clock timestamp, update the value of the timestamp like `S-<down>'
20541 but also adjust the previous clocked item in the clock history.
20542 Everywhere else, drag the line at point down."
20543 (interactive "P")
20544 (cond
20545 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20546 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20547 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20548 (call-interactively 'org-timestamp-down)))
20549 (t (call-interactively 'org-drag-line-forward))))
20551 (defsubst org-hidden-tree-error ()
20552 (user-error
20553 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20555 (defun org-metaleft (&optional arg)
20556 "Promote heading, list item at point or move table column left.
20558 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20559 depending on context. With no specific context, calls the Emacs
20560 default `backward-word'. See the individual commands for more
20561 information.
20563 This function runs the hook `org-metaleft-hook' as a first step,
20564 and returns at first non-nil value."
20565 (interactive "P")
20566 (cond
20567 ((run-hook-with-args-until-success 'org-metaleft-hook))
20568 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20569 ((org-with-limited-levels
20570 (or (org-at-heading-p)
20571 (and (org-region-active-p)
20572 (save-excursion
20573 (goto-char (region-beginning))
20574 (org-at-heading-p)))))
20575 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20576 (call-interactively 'org-do-promote))
20577 ;; At an inline task.
20578 ((org-at-heading-p)
20579 (call-interactively 'org-inlinetask-promote))
20580 ((or (org-at-item-p)
20581 (and (org-region-active-p)
20582 (save-excursion
20583 (goto-char (region-beginning))
20584 (org-at-item-p))))
20585 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20586 (call-interactively 'org-outdent-item))
20587 (t (call-interactively 'backward-word))))
20589 (defun org-metaright (&optional arg)
20590 "Demote heading, list item at point or move table column right.
20592 In front of a drawer or a block keyword, indent it correctly.
20594 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20595 `org-indnet-drawer' or `org-indent-block' depending on context.
20596 With no specific context, calls the Emacs default `forward-word'.
20597 See the individual commands for more information.
20599 This function runs the hook `org-metaright-hook' as a first step,
20600 and returns at first non-nil value."
20601 (interactive "P")
20602 (cond
20603 ((run-hook-with-args-until-success 'org-metaright-hook))
20604 ((org-at-table-p) (call-interactively 'org-table-move-column))
20605 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20606 ((org-at-block-p) (call-interactively 'org-indent-block))
20607 ((org-with-limited-levels
20608 (or (org-at-heading-p)
20609 (and (org-region-active-p)
20610 (save-excursion
20611 (goto-char (region-beginning))
20612 (org-at-heading-p)))))
20613 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20614 (call-interactively 'org-do-demote))
20615 ;; At an inline task.
20616 ((org-at-heading-p)
20617 (call-interactively 'org-inlinetask-demote))
20618 ((or (org-at-item-p)
20619 (and (org-region-active-p)
20620 (save-excursion
20621 (goto-char (region-beginning))
20622 (org-at-item-p))))
20623 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20624 (call-interactively 'org-indent-item))
20625 (t (call-interactively 'forward-word))))
20627 (defun org-check-for-hidden (what)
20628 "Check if there are hidden headlines/items in the current visual line.
20629 WHAT can be either `headlines' or `items'. If the current line is
20630 an outline or item heading and it has a folded subtree below it,
20631 this function returns t, nil otherwise."
20632 (let ((re (cond
20633 ((eq what 'headlines) org-outline-regexp-bol)
20634 ((eq what 'items) (org-item-beginning-re))
20635 (t (error "This should not happen"))))
20636 beg end)
20637 (save-excursion
20638 (catch 'exit
20639 (unless (org-region-active-p)
20640 (setq beg (point-at-bol))
20641 (beginning-of-line 2)
20642 (while (and (not (eobp)) ;; this is like `next-line'
20643 (get-char-property (1- (point)) 'invisible))
20644 (beginning-of-line 2))
20645 (setq end (point))
20646 (goto-char beg)
20647 (goto-char (point-at-eol))
20648 (setq end (max end (point)))
20649 (while (re-search-forward re end t)
20650 (if (get-char-property (match-beginning 0) 'invisible)
20651 (throw 'exit t))))
20652 nil))))
20654 (defun org-metaup (&optional arg)
20655 "Move subtree up or move table row up.
20656 Calls `org-move-subtree-up' or `org-table-move-row' or
20657 `org-move-item-up', depending on context. See the individual commands
20658 for more information."
20659 (interactive "P")
20660 (cond
20661 ((run-hook-with-args-until-success 'org-metaup-hook))
20662 ((org-region-active-p)
20663 (let* ((a (min (region-beginning) (region-end)))
20664 (b (1- (max (region-beginning) (region-end))))
20665 (c (save-excursion (goto-char a)
20666 (move-beginning-of-line 0)))
20667 (d (save-excursion (goto-char a)
20668 (move-end-of-line 0) (point))))
20669 (transpose-regions a b c d)
20670 (goto-char c)))
20671 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20672 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20673 ((org-at-item-p) (call-interactively 'org-move-item-up))
20674 (t (org-drag-element-backward))))
20676 (defun org-metadown (&optional arg)
20677 "Move subtree down or move table row down.
20678 Calls `org-move-subtree-down' or `org-table-move-row' or
20679 `org-move-item-down', depending on context. See the individual
20680 commands for more information."
20681 (interactive "P")
20682 (cond
20683 ((run-hook-with-args-until-success 'org-metadown-hook))
20684 ((org-region-active-p)
20685 (let* ((a (min (region-beginning) (region-end)))
20686 (b (max (region-beginning) (region-end)))
20687 (c (save-excursion (goto-char b)
20688 (move-beginning-of-line 1)))
20689 (d (save-excursion (goto-char b)
20690 (move-end-of-line 1) (1+ (point)))))
20691 (transpose-regions a b c d)
20692 (goto-char d)))
20693 ((org-at-table-p) (call-interactively 'org-table-move-row))
20694 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20695 ((org-at-item-p) (call-interactively 'org-move-item-down))
20696 (t (org-drag-element-forward))))
20698 (defun org-shiftup (&optional arg)
20699 "Increase item in timestamp or increase priority of current headline.
20700 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20701 depending on context. See the individual commands for more information."
20702 (interactive "P")
20703 (cond
20704 ((run-hook-with-args-until-success 'org-shiftup-hook))
20705 ((and org-support-shift-select (org-region-active-p))
20706 (org-call-for-shift-select 'previous-line))
20707 ((org-at-timestamp-p t)
20708 (call-interactively (if org-edit-timestamp-down-means-later
20709 'org-timestamp-down 'org-timestamp-up)))
20710 ((and (not (eq org-support-shift-select 'always))
20711 org-enable-priority-commands
20712 (org-at-heading-p))
20713 (call-interactively 'org-priority-up))
20714 ((and (not org-support-shift-select) (org-at-item-p))
20715 (call-interactively 'org-previous-item))
20716 ((org-clocktable-try-shift 'up arg))
20717 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20718 (org-support-shift-select
20719 (org-call-for-shift-select 'previous-line))
20720 (t (org-shiftselect-error))))
20722 (defun org-shiftdown (&optional arg)
20723 "Decrease item in timestamp or decrease priority of current headline.
20724 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20725 depending on context. See the individual commands for more information."
20726 (interactive "P")
20727 (cond
20728 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20729 ((and org-support-shift-select (org-region-active-p))
20730 (org-call-for-shift-select 'next-line))
20731 ((org-at-timestamp-p t)
20732 (call-interactively (if org-edit-timestamp-down-means-later
20733 'org-timestamp-up 'org-timestamp-down)))
20734 ((and (not (eq org-support-shift-select 'always))
20735 org-enable-priority-commands
20736 (org-at-heading-p))
20737 (call-interactively 'org-priority-down))
20738 ((and (not org-support-shift-select) (org-at-item-p))
20739 (call-interactively 'org-next-item))
20740 ((org-clocktable-try-shift 'down arg))
20741 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20742 (org-support-shift-select
20743 (org-call-for-shift-select 'next-line))
20744 (t (org-shiftselect-error))))
20746 (defun org-shiftright (&optional arg)
20747 "Cycle the thing at point or in the current line, depending on context.
20748 Depending on context, this does one of the following:
20750 - switch a timestamp at point one day into the future
20751 - on a headline, switch to the next TODO keyword.
20752 - on an item, switch entire list to the next bullet type
20753 - on a property line, switch to the next allowed value
20754 - on a clocktable definition line, move time block into the future"
20755 (interactive "P")
20756 (cond
20757 ((run-hook-with-args-until-success 'org-shiftright-hook))
20758 ((and org-support-shift-select (org-region-active-p))
20759 (org-call-for-shift-select 'forward-char))
20760 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20761 ((and (not (eq org-support-shift-select 'always))
20762 (org-at-heading-p))
20763 (let ((org-inhibit-logging
20764 (not org-treat-S-cursor-todo-selection-as-state-change))
20765 (org-inhibit-blocking
20766 (not org-treat-S-cursor-todo-selection-as-state-change)))
20767 (org-call-with-arg 'org-todo 'right)))
20768 ((or (and org-support-shift-select
20769 (not (eq org-support-shift-select 'always))
20770 (org-at-item-bullet-p))
20771 (and (not org-support-shift-select) (org-at-item-p)))
20772 (org-call-with-arg 'org-cycle-list-bullet nil))
20773 ((and (not (eq org-support-shift-select 'always))
20774 (org-at-property-p))
20775 (call-interactively 'org-property-next-allowed-value))
20776 ((org-clocktable-try-shift 'right arg))
20777 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20778 (org-support-shift-select
20779 (org-call-for-shift-select 'forward-char))
20780 (t (org-shiftselect-error))))
20782 (defun org-shiftleft (&optional arg)
20783 "Cycle the thing at point or in the current line, depending on context.
20784 Depending on context, this does one of the following:
20786 - switch a timestamp at point one day into the past
20787 - on a headline, switch to the previous TODO keyword.
20788 - on an item, switch entire list to the previous bullet type
20789 - on a property line, switch to the previous allowed value
20790 - on a clocktable definition line, move time block into the past"
20791 (interactive "P")
20792 (cond
20793 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20794 ((and org-support-shift-select (org-region-active-p))
20795 (org-call-for-shift-select 'backward-char))
20796 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20797 ((and (not (eq org-support-shift-select 'always))
20798 (org-at-heading-p))
20799 (let ((org-inhibit-logging
20800 (not org-treat-S-cursor-todo-selection-as-state-change))
20801 (org-inhibit-blocking
20802 (not org-treat-S-cursor-todo-selection-as-state-change)))
20803 (org-call-with-arg 'org-todo 'left)))
20804 ((or (and org-support-shift-select
20805 (not (eq org-support-shift-select 'always))
20806 (org-at-item-bullet-p))
20807 (and (not org-support-shift-select) (org-at-item-p)))
20808 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20809 ((and (not (eq org-support-shift-select 'always))
20810 (org-at-property-p))
20811 (call-interactively 'org-property-previous-allowed-value))
20812 ((org-clocktable-try-shift 'left arg))
20813 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20814 (org-support-shift-select
20815 (org-call-for-shift-select 'backward-char))
20816 (t (org-shiftselect-error))))
20818 (defun org-shiftcontrolright ()
20819 "Switch to next TODO set."
20820 (interactive)
20821 (cond
20822 ((and org-support-shift-select (org-region-active-p))
20823 (org-call-for-shift-select 'forward-word))
20824 ((and (not (eq org-support-shift-select 'always))
20825 (org-at-heading-p))
20826 (org-call-with-arg 'org-todo 'nextset))
20827 (org-support-shift-select
20828 (org-call-for-shift-select 'forward-word))
20829 (t (org-shiftselect-error))))
20831 (defun org-shiftcontrolleft ()
20832 "Switch to previous TODO set."
20833 (interactive)
20834 (cond
20835 ((and org-support-shift-select (org-region-active-p))
20836 (org-call-for-shift-select 'backward-word))
20837 ((and (not (eq org-support-shift-select 'always))
20838 (org-at-heading-p))
20839 (org-call-with-arg 'org-todo 'previousset))
20840 (org-support-shift-select
20841 (org-call-for-shift-select 'backward-word))
20842 (t (org-shiftselect-error))))
20844 (defun org-shiftcontrolup (&optional n)
20845 "Change timestamps synchronously up in CLOCK log lines.
20846 Optional argument N tells to change by that many units."
20847 (interactive "P")
20848 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20849 (let (org-support-shift-select)
20850 (org-clock-timestamps-up n))
20851 (user-error "Not at a clock log")))
20853 (defun org-shiftcontroldown (&optional n)
20854 "Change timestamps synchronously down in CLOCK log lines.
20855 Optional argument N tells to change by that many units."
20856 (interactive "P")
20857 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20858 (let (org-support-shift-select)
20859 (org-clock-timestamps-down n))
20860 (user-error "Not at a clock log")))
20862 (defun org-increase-number-at-point (&optional inc)
20863 "Increment the number at point.
20864 With an optional prefix numeric argument INC, increment using
20865 this numeric value."
20866 (interactive "p")
20867 (if (not (number-at-point))
20868 (user-error "Not on a number")
20869 (unless inc (setq inc 1))
20870 (let ((pos (point))
20871 (beg (skip-chars-backward "-+^/*0-9eE."))
20872 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20873 (setq nap (buffer-substring-no-properties
20874 (+ pos beg) (+ pos beg end)))
20875 (delete-region (+ pos beg) (+ pos beg end))
20876 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20877 (when (org-at-table-p)
20878 (org-table-align)
20879 (org-table-end-of-field 1))))
20881 (defun org-decrease-number-at-point (&optional inc)
20882 "Decrement the number at point.
20883 With an optional prefix numeric argument INC, decrement using
20884 this numeric value."
20885 (interactive "p")
20886 (org-increase-number-at-point (- (or inc 1))))
20888 (defun org-ctrl-c-ret ()
20889 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20890 (interactive)
20891 (cond
20892 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20893 (t (call-interactively 'org-insert-heading))))
20895 (defun org-find-visible ()
20896 (let ((s (point)))
20897 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20898 (get-char-property s 'invisible)))
20900 (defun org-find-invisible ()
20901 (let ((s (point)))
20902 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20903 (not (get-char-property s 'invisible))))
20906 (defun org-copy-visible (beg end)
20907 "Copy the visible parts of the region."
20908 (interactive "r")
20909 (let (snippets s)
20910 (save-excursion
20911 (save-restriction
20912 (narrow-to-region beg end)
20913 (setq s (goto-char (point-min)))
20914 (while (not (= (point) (point-max)))
20915 (goto-char (org-find-invisible))
20916 (push (buffer-substring s (point)) snippets)
20917 (setq s (goto-char (org-find-visible))))))
20918 (kill-new (apply 'concat (nreverse snippets)))))
20920 (defun org-copy-special ()
20921 "Copy region in table or copy current subtree.
20922 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20923 See the individual commands for more information."
20924 (interactive)
20925 (call-interactively
20926 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20928 (defun org-cut-special ()
20929 "Cut region in table or cut current subtree.
20930 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20931 See the individual commands for more information."
20932 (interactive)
20933 (call-interactively
20934 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20936 (defun org-paste-special (arg)
20937 "Paste rectangular region into table, or past subtree relative to level.
20938 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20939 See the individual commands for more information."
20940 (interactive "P")
20941 (if (org-at-table-p)
20942 (org-table-paste-rectangle)
20943 (org-paste-subtree arg)))
20945 (defsubst org-in-fixed-width-region-p ()
20946 "Is point in a fixed-width region?"
20947 (save-match-data
20948 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20950 (defun org-edit-special (&optional arg)
20951 "Call a special editor for the element at point.
20952 When at a table, call the formula editor with `org-table-edit-formulas'.
20953 When in a source code block, call `org-edit-src-code'.
20954 When in a fixed-width region, call `org-edit-fixed-width-region'.
20955 When in an export block, call `org-edit-export-block'.
20956 When at an #+INCLUDE keyword, visit the included file.
20957 When at a footnote reference, call `org-edit-footnote-reference'
20958 On a link, call `ffap' to visit the link at point.
20959 Otherwise, return a user error."
20960 (interactive "P")
20961 (let ((element (org-element-at-point)))
20962 (assert (not buffer-read-only) nil
20963 "Buffer is read-only: %s" (buffer-name))
20964 (case (org-element-type element)
20965 (src-block
20966 (if (not arg) (org-edit-src-code)
20967 (let* ((info (org-babel-get-src-block-info))
20968 (lang (nth 0 info))
20969 (params (nth 2 info))
20970 (session (cdr (assq :session params))))
20971 (if (not session) (org-edit-src-code)
20972 ;; At a src-block with a session and function called with
20973 ;; an ARG: switch to the buffer related to the inferior
20974 ;; process.
20975 (switch-to-buffer
20976 (funcall (intern (concat "org-babel-prep-session:" lang))
20977 session params))))))
20978 (keyword
20979 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20980 (org-open-link-from-string
20981 (format "[[%s]]"
20982 (expand-file-name
20983 (let ((value (org-element-property :value element)))
20984 (cond ((not (org-string-nw-p value))
20985 (user-error "No file to edit"))
20986 ((string-match "\\`\"\\(.*?\\)\"" value)
20987 (match-string 1 value))
20988 ((string-match "\\`[^ \t\"]\\S-*" value)
20989 (match-string 0 value))
20990 (t (user-error "No valid file specified")))))))
20991 (user-error "No special environment to edit here")))
20992 (table
20993 (if (eq (org-element-property :type element) 'table.el)
20994 (org-edit-table.el)
20995 (call-interactively 'org-table-edit-formulas)))
20996 ;; Only Org tables contain `table-row' type elements.
20997 (table-row (call-interactively 'org-table-edit-formulas))
20998 (example-block (org-edit-src-code))
20999 (export-block (org-edit-export-block))
21000 (fixed-width (org-edit-fixed-width-region))
21001 (otherwise
21002 ;; No notable element at point. Though, we may be at a link or
21003 ;; a footnote reference, which are objects. Thus, scan deeper.
21004 (let ((context (org-element-context element)))
21005 (case (org-element-type context)
21006 (link (call-interactively #'ffap))
21007 (footnote-reference (org-edit-footnote-reference))
21008 (t (user-error "No special environment to edit here"))))))))
21010 (defvar org-table-coordinate-overlays) ; defined in org-table.el
21011 (defun org-ctrl-c-ctrl-c (&optional arg)
21012 "Set tags in headline, or update according to changed information at point.
21014 This command does many different things, depending on context:
21016 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
21017 this is what we do.
21019 - If the cursor is on a statistics cookie, update it.
21021 - If the cursor is in a headline, prompt for tags and insert them
21022 into the current line, aligned to `org-tags-column'. When called
21023 with prefix arg, realign all tags in the current buffer.
21025 - If the cursor is in one of the special #+KEYWORD lines, this
21026 triggers scanning the buffer for these lines and updating the
21027 information.
21029 - If the cursor is inside a table, realign the table. This command
21030 works even if the automatic table editor has been turned off.
21032 - If the cursor is on a #+TBLFM line, re-apply the formulas to
21033 the entire table.
21035 - If the cursor is at a footnote reference or definition, jump to
21036 the corresponding definition or references, respectively.
21038 - If the cursor is a the beginning of a dynamic block, update it.
21040 - If the current buffer is a capture buffer, close note and file it.
21042 - If the cursor is on a <<<target>>>, update radio targets and
21043 corresponding links in this buffer.
21045 - If the cursor is on a numbered item in a plain list, renumber the
21046 ordered list.
21048 - If the cursor is on a checkbox, toggle it.
21050 - If the cursor is on a code block, evaluate it. The variable
21051 `org-confirm-babel-evaluate' can be used to control prompting
21052 before code block evaluation, by default every code block
21053 evaluation requires confirmation. Code block evaluation can be
21054 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
21055 (interactive "P")
21056 (cond
21057 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
21058 org-occur-highlights)
21059 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
21060 (org-remove-occur-highlights)
21061 (message "Temporary highlights/overlays removed from current buffer"))
21062 ((and (local-variable-p 'org-finish-function (current-buffer))
21063 (fboundp org-finish-function))
21064 (funcall org-finish-function))
21065 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
21067 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
21068 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21069 (user-error "C-c C-c can do nothing useful at this location"))
21070 (let* ((context (org-element-context))
21071 (type (org-element-type context)))
21072 (case type
21073 ;; When at a link, act according to the parent instead.
21074 (link (setq context (org-element-property :parent context))
21075 (setq type (org-element-type context)))
21076 ;; Unsupported object types: refer to the first supported
21077 ;; element or object containing it.
21078 ((bold code entity export-snippet inline-babel-call inline-src-block
21079 italic latex-fragment line-break macro strike-through subscript
21080 superscript underline verbatim)
21081 (setq context
21082 (org-element-lineage
21083 context '(radio-target paragraph verse-block table-cell)))))
21084 ;; For convenience: at the first line of a paragraph on the
21085 ;; same line as an item, apply function on that item instead.
21086 (when (eq type 'paragraph)
21087 (let ((parent (org-element-property :parent context)))
21088 (when (and (eq (org-element-type parent) 'item)
21089 (= (line-beginning-position)
21090 (org-element-property :begin parent)))
21091 (setq context parent type 'item))))
21092 ;; Act according to type of element or object at point.
21093 (case type
21094 (clock (org-clock-update-time-maybe))
21095 (dynamic-block
21096 (save-excursion
21097 (goto-char (org-element-property :post-affiliated context))
21098 (org-update-dblock)))
21099 (footnote-definition
21100 (goto-char (org-element-property :post-affiliated context))
21101 (call-interactively 'org-footnote-action))
21102 (footnote-reference (call-interactively 'org-footnote-action))
21103 ((headline inlinetask)
21104 (save-excursion (goto-char (org-element-property :begin context))
21105 (call-interactively 'org-set-tags)))
21106 (item
21107 ;; At an item: a double C-u set checkbox to "[-]"
21108 ;; unconditionally, whereas a single one will toggle its
21109 ;; presence. Without a universal argument, if the item
21110 ;; has a checkbox, toggle it. Otherwise repair the list.
21111 (let* ((box (org-element-property :checkbox context))
21112 (struct (org-element-property :structure context))
21113 (old-struct (copy-tree struct))
21114 (parents (org-list-parents-alist struct))
21115 (prevs (org-list-prevs-alist struct))
21116 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21117 (org-list-set-checkbox
21118 (org-element-property :begin context) struct
21119 (cond ((equal arg '(16)) "[-]")
21120 ((and (not box) (equal arg '(4))) "[ ]")
21121 ((or (not box) (equal arg '(4))) nil)
21122 ((eq box 'on) "[ ]")
21123 (t "[X]")))
21124 ;; Mimic `org-list-write-struct' but with grabbing
21125 ;; a return value from `org-list-struct-fix-box'.
21126 (org-list-struct-fix-ind struct parents 2)
21127 (org-list-struct-fix-item-end struct)
21128 (org-list-struct-fix-bul struct prevs)
21129 (org-list-struct-fix-ind struct parents)
21130 (let ((block-item
21131 (org-list-struct-fix-box struct parents prevs orderedp)))
21132 (if (and box (equal struct old-struct))
21133 (if (equal arg '(16))
21134 (message "Checkboxes already reset")
21135 (user-error "Cannot toggle this checkbox: %s"
21136 (if (eq box 'on)
21137 "all subitems checked"
21138 "unchecked subitems")))
21139 (org-list-struct-apply-struct struct old-struct)
21140 (org-update-checkbox-count-maybe))
21141 (when block-item
21142 (message "Checkboxes were removed due to empty box at line %d"
21143 (org-current-line block-item))))))
21144 (keyword
21145 (let ((org-inhibit-startup-visibility-stuff t)
21146 (org-startup-align-all-tables nil))
21147 (when (boundp 'org-table-coordinate-overlays)
21148 (mapc 'delete-overlay org-table-coordinate-overlays)
21149 (setq org-table-coordinate-overlays nil))
21150 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21151 (message "Local setup has been refreshed"))
21152 (plain-list
21153 ;; At a plain list, with a double C-u argument, set
21154 ;; checkboxes of each item to "[-]", whereas a single one
21155 ;; will toggle their presence according to the state of the
21156 ;; first item in the list. Without an argument, repair the
21157 ;; list.
21158 (let* ((begin (org-element-property :contents-begin context))
21159 (beginm (move-marker (make-marker) begin))
21160 (struct (org-element-property :structure context))
21161 (old-struct (copy-tree struct))
21162 (first-box (save-excursion
21163 (goto-char begin)
21164 (looking-at org-list-full-item-re)
21165 (match-string-no-properties 3)))
21166 (new-box (cond ((equal arg '(16)) "[-]")
21167 ((equal arg '(4)) (unless first-box "[ ]"))
21168 ((equal first-box "[X]") "[ ]")
21169 (t "[X]"))))
21170 (cond
21171 (arg
21172 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21173 (org-list-get-all-items
21174 begin struct (org-list-prevs-alist struct))))
21175 ((and first-box (eq (point) begin))
21176 ;; For convenience, when point is at bol on the first
21177 ;; item of the list and no argument is provided, simply
21178 ;; toggle checkbox of that item, if any.
21179 (org-list-set-checkbox begin struct new-box)))
21180 (org-list-write-struct
21181 struct (org-list-parents-alist struct) old-struct)
21182 (org-update-checkbox-count-maybe)
21183 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21184 ((property-drawer node-property)
21185 (call-interactively 'org-property-action))
21186 ((radio-target target)
21187 (call-interactively 'org-update-radio-target-regexp))
21188 (statistics-cookie
21189 (call-interactively 'org-update-statistics-cookies))
21190 ((table table-cell table-row)
21191 ;; At a table, recalculate every field and align it. Also
21192 ;; send the table if necessary. If the table has
21193 ;; a `table.el' type, just give up. At a table row or
21194 ;; cell, maybe recalculate line but always align table.
21195 (if (eq (org-element-property :type context) 'table.el)
21196 (message "Use C-c ' to edit table.el tables")
21197 (let ((org-enable-table-editor t))
21198 (if (or (eq type 'table)
21199 ;; Check if point is at a TBLFM line.
21200 (and (eq type 'table-row)
21201 (= (point) (org-element-property :end context))))
21202 (save-excursion
21203 (if (org-at-TBLFM-p)
21204 (progn (require 'org-table)
21205 (org-table-calc-current-TBLFM))
21206 (goto-char (org-element-property :contents-begin context))
21207 (org-call-with-arg 'org-table-recalculate (or arg t))
21208 (orgtbl-send-table 'maybe)))
21209 (org-table-maybe-eval-formula)
21210 (cond (arg (call-interactively 'org-table-recalculate))
21211 ((org-table-maybe-recalculate-line))
21212 (t (org-table-align)))))))
21213 (timestamp (org-timestamp-change 0 'day))
21214 (otherwise
21215 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21216 (user-error
21217 "C-c C-c can do nothing useful at this location")))))))))
21219 (defun org-mode-restart ()
21220 (interactive)
21221 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21222 (funcall major-mode)
21223 (hack-local-variables)
21224 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21225 (org-indent-mode -1)))
21226 (message "%s restarted" major-mode))
21228 (defun org-kill-note-or-show-branches ()
21229 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21230 (interactive)
21231 (if (not org-finish-function)
21232 (progn
21233 (hide-subtree)
21234 (call-interactively 'show-branches))
21235 (let ((org-note-abort t))
21236 (funcall org-finish-function))))
21238 (defun org-delete-indentation (&optional ARG)
21239 "Join current line to previous and fix whitespace at join.
21241 If previous line is a headline add to headline title. Otherwise
21242 the function calls `delete-indentation'.
21244 With argument, join this line to following line."
21245 (interactive "*P")
21246 (if (save-excursion
21247 (if ARG (beginning-of-line)
21248 (forward-line -1))
21249 (looking-at org-complex-heading-regexp))
21250 ;; At headline.
21251 (let ((tags-column (when (match-beginning 5)
21252 (save-excursion (goto-char (match-beginning 5))
21253 (current-column))))
21254 (string (concat " " (progn (when ARG (forward-line 1))
21255 (org-trim (delete-and-extract-region
21256 (line-beginning-position)
21257 (line-end-position)))))))
21258 (unless (bobp) (delete-region (point) (1- (point))))
21259 (goto-char (or (match-end 4)
21260 (match-beginning 5)
21261 (match-end 0)))
21262 (skip-chars-backward " \t")
21263 (save-excursion (insert string))
21264 ;; Adjust alignment of tags.
21265 (when tags-column
21266 (org-align-tags-here (if org-auto-align-tags
21267 org-tags-column
21268 tags-column))))
21269 (delete-indentation ARG)))
21271 (defun org-open-line (n)
21272 "Insert a new row in tables, call `open-line' elsewhere.
21273 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21274 (interactive "*p")
21275 (cond
21276 ((not org-special-ctrl-o)
21277 (open-line n))
21278 ((org-at-table-p)
21279 (org-table-insert-row))
21281 (open-line n))))
21283 (defun org-return (&optional indent)
21284 "Goto next table row or insert a newline.
21286 Calls `org-table-next-row' or `newline', depending on context.
21288 When optional INDENT argument is non-nil, call
21289 `newline-and-indent' instead of `newline'.
21291 When `org-return-follows-link' is non-nil and point is on
21292 a timestamp or a link, call `org-open-at-point'. However, it
21293 will not happen if point is in a table or on a \"dead\"
21294 object (e.g., within a comment). In these case, you need to use
21295 `org-open-at-point' directly."
21296 (interactive)
21297 (let* ((context (if org-return-follows-link (org-element-context)
21298 (org-element-at-point)))
21299 (type (org-element-type context)))
21300 (cond
21301 ;; In a table, call `org-table-next-row'.
21302 ((or (and (eq type 'table)
21303 (>= (point) (org-element-property :contents-begin context))
21304 (< (point) (org-element-property :contents-end context)))
21305 (org-element-lineage context '(table-row table-cell) t))
21306 (org-table-justify-field-maybe)
21307 (call-interactively #'org-table-next-row))
21308 ;; On a link or a timestamp but not on white spaces after it,
21309 ;; call `org-open-line' if `org-return-follows-link' allows it.
21310 ((and org-return-follows-link
21311 (memq type '(link timestamp))
21312 (< (point)
21313 (save-excursion (goto-char (org-element-property :end context))
21314 (skip-chars-backward " \t")
21315 (point))))
21316 (call-interactively #'org-open-at-point))
21317 ;; Insert newline in heading, but preserve tags.
21318 ((and (not (bolp))
21319 (save-excursion (beginning-of-line)
21320 (looking-at org-complex-heading-regexp)))
21321 ;; At headline. Split line. However, if point is on keyword,
21322 ;; priority cookie or tags, do not break any of them: add
21323 ;; a newline after the headline instead.
21324 (let ((tags-column (and (match-beginning 5)
21325 (save-excursion (goto-char (match-beginning 5))
21326 (current-column))))
21327 (string
21328 (when (and (match-end 4)
21329 (>= (point)
21330 (or (match-end 3) (match-end 2) (1+ (match-end 1))))
21331 (<= (point) (match-end 4)))
21332 (delete-and-extract-region (point) (match-end 4)))))
21333 (when (and tags-column string) ; Adjust tag alignment.
21334 (org-align-tags-here
21335 (if org-auto-align-tags org-tags-column tags-column)))
21336 (end-of-line)
21337 (org-show-entry)
21338 (if indent (newline-and-indent) (newline))
21339 (when string (save-excursion (insert (org-trim string))))))
21340 ;; In a list, make sure indenting keeps trailing text within.
21341 ((and indent
21342 (not (eolp))
21343 (org-element-lineage context '(item)))
21344 (let ((trailing-data
21345 (delete-and-extract-region (point) (line-end-position))))
21346 (newline-and-indent)
21347 (save-excursion (insert trailing-data))))
21348 (t (if indent (newline-and-indent) (newline))))))
21350 (defun org-return-indent ()
21351 "Goto next table row or insert a newline and indent.
21352 Calls `org-table-next-row' or `newline-and-indent', depending on
21353 context. See the individual commands for more information."
21354 (interactive)
21355 (org-return t))
21357 (defun org-ctrl-c-star ()
21358 "Compute table, or change heading status of lines.
21359 Calls `org-table-recalculate' or `org-toggle-heading',
21360 depending on context."
21361 (interactive)
21362 (cond
21363 ((org-at-table-p)
21364 (call-interactively 'org-table-recalculate))
21366 ;; Convert all lines in region to list items
21367 (call-interactively 'org-toggle-heading))))
21369 (defun org-ctrl-c-minus ()
21370 "Insert separator line in table or modify bullet status of line.
21371 Also turns a plain line or a region of lines into list items.
21372 Calls `org-table-insert-hline', `org-toggle-item', or
21373 `org-cycle-list-bullet', depending on context."
21374 (interactive)
21375 (cond
21376 ((org-at-table-p)
21377 (call-interactively 'org-table-insert-hline))
21378 ((org-region-active-p)
21379 (call-interactively 'org-toggle-item))
21380 ((org-in-item-p)
21381 (call-interactively 'org-cycle-list-bullet))
21383 (call-interactively 'org-toggle-item))))
21385 (defun org-toggle-item (arg)
21386 "Convert headings or normal lines to items, items to normal lines.
21387 If there is no active region, only the current line is considered.
21389 If the first non blank line in the region is a headline, convert
21390 all headlines to items, shifting text accordingly.
21392 If it is an item, convert all items to normal lines.
21394 If it is normal text, change region into a list of items.
21395 With a prefix argument ARG, change the region in a single item."
21396 (interactive "P")
21397 (let ((shift-text
21398 (function
21399 ;; Shift text in current section to IND, from point to END.
21400 ;; The function leaves point to END line.
21401 (lambda (ind end)
21402 (let ((min-i 1000) (end (copy-marker end)))
21403 ;; First determine the minimum indentation (MIN-I) of
21404 ;; the text.
21405 (save-excursion
21406 (catch 'exit
21407 (while (< (point) end)
21408 (let ((i (org-get-indentation)))
21409 (cond
21410 ;; Skip blank lines and inline tasks.
21411 ((looking-at "^[ \t]*$"))
21412 ((looking-at org-outline-regexp-bol))
21413 ;; We can't find less than 0 indentation.
21414 ((zerop i) (throw 'exit (setq min-i 0)))
21415 ((< i min-i) (setq min-i i))))
21416 (forward-line))))
21417 ;; Then indent each line so that a line indented to
21418 ;; MIN-I becomes indented to IND. Ignore blank lines
21419 ;; and inline tasks in the process.
21420 (let ((delta (- ind min-i)))
21421 (while (< (point) end)
21422 (unless (or (looking-at "^[ \t]*$")
21423 (looking-at org-outline-regexp-bol))
21424 (org-indent-line-to (+ (org-get-indentation) delta)))
21425 (forward-line)))))))
21426 (skip-blanks
21427 (function
21428 ;; Return beginning of first non-blank line, starting from
21429 ;; line at POS.
21430 (lambda (pos)
21431 (save-excursion
21432 (goto-char pos)
21433 (skip-chars-forward " \r\t\n")
21434 (point-at-bol)))))
21435 beg end)
21436 ;; Determine boundaries of changes.
21437 (if (org-region-active-p)
21438 (setq beg (funcall skip-blanks (region-beginning))
21439 end (copy-marker (region-end)))
21440 (setq beg (funcall skip-blanks (point-at-bol))
21441 end (copy-marker (point-at-eol))))
21442 ;; Depending on the starting line, choose an action on the text
21443 ;; between BEG and END.
21444 (org-with-limited-levels
21445 (save-excursion
21446 (goto-char beg)
21447 (cond
21448 ;; Case 1. Start at an item: de-itemize. Note that it only
21449 ;; happens when a region is active: `org-ctrl-c-minus'
21450 ;; would call `org-cycle-list-bullet' otherwise.
21451 ((org-at-item-p)
21452 (while (< (point) end)
21453 (when (org-at-item-p)
21454 (skip-chars-forward " \t")
21455 (delete-region (point) (match-end 0)))
21456 (forward-line)))
21457 ;; Case 2. Start at an heading: convert to items.
21458 ((org-at-heading-p)
21459 (let* ((bul (org-list-bullet-string "-"))
21460 (bul-len (length bul))
21461 (done (org-entry-is-done-p))
21462 (todo (org-entry-is-todo-p))
21463 ;; Indentation of the first heading. It should be
21464 ;; relative to the indentation of its parent, if any.
21465 (start-ind (save-excursion
21466 (cond
21467 ((not org-adapt-indentation) 0)
21468 ((not (outline-previous-heading)) 0)
21469 (t (length (match-string 0))))))
21470 ;; Level of first heading. Further headings will be
21471 ;; compared to it to determine hierarchy in the list.
21472 (ref-level (org-reduced-level (org-outline-level))))
21473 (when (or done todo) (org-todo ""))
21474 (while (< (point) end)
21475 (let* ((level (org-reduced-level (org-outline-level)))
21476 (delta (max 0 (- level ref-level))))
21477 ;; If current headline is less indented than the first
21478 ;; one, set it as reference, in order to preserve
21479 ;; subtrees.
21480 (when (< level ref-level) (setq ref-level level))
21481 (replace-match bul t t)
21482 (org-indent-line-to (+ start-ind (* delta bul-len)))
21483 (when (or done todo)
21484 (let* ((struct (org-list-struct))
21485 (old (copy-tree struct)))
21486 (org-list-set-checkbox (line-beginning-position)
21487 struct
21488 (if done "[X]" "[ ]"))
21489 (org-list-write-struct struct
21490 (org-list-parents-alist struct)
21491 old)))
21492 ;; Ensure all text down to END (or SECTION-END) belongs
21493 ;; to the newly created item.
21494 (let ((section-end (save-excursion
21495 (or (outline-next-heading) (point)))))
21496 (forward-line)
21497 (funcall shift-text
21498 (+ start-ind (* (1+ delta) bul-len))
21499 (min end section-end)))))))
21500 ;; Case 3. Normal line with ARG: make the first line of region
21501 ;; an item, and shift indentation of others lines to
21502 ;; set them as item's body.
21503 (arg (let* ((bul (org-list-bullet-string "-"))
21504 (bul-len (length bul))
21505 (ref-ind (org-get-indentation)))
21506 (skip-chars-forward " \t")
21507 (insert bul)
21508 (forward-line)
21509 (while (< (point) end)
21510 ;; Ensure that lines less indented than first one
21511 ;; still get included in item body.
21512 (funcall shift-text
21513 (+ ref-ind bul-len)
21514 (min end (save-excursion (or (outline-next-heading)
21515 (point)))))
21516 (forward-line))))
21517 ;; Case 4. Normal line without ARG: turn each non-item line
21518 ;; into an item.
21520 (while (< (point) end)
21521 (unless (or (org-at-heading-p) (org-at-item-p))
21522 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21523 (replace-match
21524 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21525 (forward-line))))))))
21527 (defun org-toggle-heading (&optional nstars)
21528 "Convert headings to normal text, or items or text to headings.
21529 If there is no active region, only convert the current line.
21531 With a \\[universal-argument] prefix, convert the whole list at
21532 point into heading.
21534 In a region:
21536 - If the first non blank line is a headline, remove the stars
21537 from all headlines in the region.
21539 - If it is a normal line, turn each and every normal line (i.e.,
21540 not an heading or an item) in the region into headings. If you
21541 want to convert only the first line of this region, use one
21542 universal prefix argument.
21544 - If it is a plain list item, turn all plain list items into headings.
21546 When converting a line into a heading, the number of stars is chosen
21547 such that the lines become children of the current entry. However,
21548 when a numeric prefix argument is given, its value determines the
21549 number of stars to add."
21550 (interactive "P")
21551 (let ((skip-blanks
21552 (function
21553 ;; Return beginning of first non-blank line, starting from
21554 ;; line at POS.
21555 (lambda (pos)
21556 (save-excursion
21557 (goto-char pos)
21558 (while (org-at-comment-p) (forward-line))
21559 (skip-chars-forward " \r\t\n")
21560 (point-at-bol)))))
21561 beg end toggled)
21562 ;; Determine boundaries of changes. If a universal prefix has
21563 ;; been given, put the list in a region. If region ends at a bol,
21564 ;; do not consider the last line to be in the region.
21566 (when (and current-prefix-arg (org-at-item-p))
21567 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21568 (org-mark-element))
21570 (if (org-region-active-p)
21571 (setq beg (funcall skip-blanks (region-beginning))
21572 end (copy-marker (save-excursion
21573 (goto-char (region-end))
21574 (if (bolp) (point) (point-at-eol)))))
21575 (setq beg (funcall skip-blanks (point-at-bol))
21576 end (copy-marker (point-at-eol))))
21577 ;; Ensure inline tasks don't count as headings.
21578 (org-with-limited-levels
21579 (save-excursion
21580 (goto-char beg)
21581 (cond
21582 ;; Case 1. Started at an heading: de-star headings.
21583 ((org-at-heading-p)
21584 (while (< (point) end)
21585 (when (org-at-heading-p t)
21586 (looking-at org-outline-regexp) (replace-match "")
21587 (setq toggled t))
21588 (forward-line)))
21589 ;; Case 2. Started at an item: change items into headlines.
21590 ;; One star will be added by `org-list-to-subtree'.
21591 ((org-at-item-p)
21592 (while (< (point) end)
21593 (when (org-at-item-p)
21594 ;; Pay attention to cases when region ends before list.
21595 (let* ((struct (org-list-struct))
21596 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21597 (save-restriction
21598 (narrow-to-region (point) list-end)
21599 (insert (org-list-to-subtree (org-list-parse-list t)))))
21600 (setq toggled t))
21601 (forward-line)))
21602 ;; Case 3. Started at normal text: make every line an heading,
21603 ;; skipping headlines and items.
21604 (t (let* ((stars
21605 (make-string
21606 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21607 (add-stars
21608 (cond (nstars "") ; stars from prefix only
21609 ((equal stars "") "*") ; before first heading
21610 (org-odd-levels-only "**") ; inside heading, odd
21611 (t "*"))) ; inside heading, oddeven
21612 (rpl (concat stars add-stars " "))
21613 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21614 (while (< (point) (if (equal nstars '(4)) lend end))
21615 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21616 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21617 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21618 (forward-line)))))))
21619 (unless toggled (message "Cannot toggle heading from here"))))
21621 (defun org-meta-return (&optional _arg)
21622 "Insert a new heading or wrap a region in a table.
21623 Calls `org-insert-heading' or `org-table-wrap-region', depending
21624 on context. See the individual commands for more information."
21625 (interactive)
21626 (org-check-before-invisible-edit 'insert)
21627 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21628 (call-interactively (if (org-at-table-p) #'org-table-wrap-region
21629 #'org-insert-heading))))
21631 ;;; Menu entries
21633 (defsubst org-in-subtree-not-table-p ()
21634 "Are we in a subtree and not in a table?"
21635 (and (not (org-before-first-heading-p))
21636 (not (org-at-table-p))))
21638 ;; Define the Org-mode menus
21639 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21640 '("Tbl"
21641 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21642 ["Next Field" org-cycle (org-at-table-p)]
21643 ["Previous Field" org-shifttab (org-at-table-p)]
21644 ["Next Row" org-return (org-at-table-p)]
21645 "--"
21646 ["Blank Field" org-table-blank-field (org-at-table-p)]
21647 ["Edit Field" org-table-edit-field (org-at-table-p)]
21648 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21649 "--"
21650 ("Column"
21651 ["Move Column Left" org-metaleft (org-at-table-p)]
21652 ["Move Column Right" org-metaright (org-at-table-p)]
21653 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21654 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21655 ("Row"
21656 ["Move Row Up" org-metaup (org-at-table-p)]
21657 ["Move Row Down" org-metadown (org-at-table-p)]
21658 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21659 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21660 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21661 "--"
21662 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21663 ("Rectangle"
21664 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21665 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21666 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21667 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21668 "--"
21669 ("Calculate"
21670 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21671 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21672 ["Edit Formulas" org-edit-special (org-at-table-p)]
21673 "--"
21674 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21675 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21676 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21677 "--"
21678 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21679 "--"
21680 ["Sum Column/Rectangle" org-table-sum
21681 (or (org-at-table-p) (org-region-active-p))]
21682 ["Which Column?" org-table-current-column (org-at-table-p)])
21683 ["Debug Formulas"
21684 org-table-toggle-formula-debugger
21685 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21686 ["Show Col/Row Numbers"
21687 org-table-toggle-coordinate-overlays
21688 :style toggle
21689 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21690 "--"
21691 ["Create" org-table-create (and (not (org-at-table-p))
21692 org-enable-table-editor)]
21693 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21694 ["Import from File" org-table-import (not (org-at-table-p))]
21695 ["Export to File" org-table-export (org-at-table-p)]
21696 "--"
21697 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21698 "--"
21699 ("Plot"
21700 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21701 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21703 (easy-menu-define org-org-menu org-mode-map "Org menu"
21704 '("Org"
21705 ("Show/Hide"
21706 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21707 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21708 ["Sparse Tree..." org-sparse-tree t]
21709 ["Reveal Context" org-reveal t]
21710 ["Show All" show-all t]
21711 "--"
21712 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21713 "--"
21714 ["New Heading" org-insert-heading t]
21715 ("Navigate Headings"
21716 ["Up" outline-up-heading t]
21717 ["Next" outline-next-visible-heading t]
21718 ["Previous" outline-previous-visible-heading t]
21719 ["Next Same Level" outline-forward-same-level t]
21720 ["Previous Same Level" outline-backward-same-level t]
21721 "--"
21722 ["Jump" org-goto t])
21723 ("Edit Structure"
21724 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21725 "--"
21726 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21727 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21728 "--"
21729 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21730 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21731 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21732 "--"
21733 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21734 "--"
21735 ["Copy visible text" org-copy-visible t]
21736 "--"
21737 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21738 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21739 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21740 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21741 "--"
21742 ["Sort Region/Children" org-sort t]
21743 "--"
21744 ["Convert to odd levels" org-convert-to-odd-levels t]
21745 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21746 ("Editing"
21747 ["Emphasis..." org-emphasize t]
21748 ["Edit Source Example" org-edit-special t]
21749 "--"
21750 ["Footnote new/jump" org-footnote-action t]
21751 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21752 ("Archive"
21753 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21754 "--"
21755 ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
21756 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21757 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21759 "--"
21760 ("Hyperlinks"
21761 ["Store Link (Global)" org-store-link t]
21762 ["Find existing link to here" org-occur-link-in-agenda-files t]
21763 ["Insert Link" org-insert-link t]
21764 ["Follow Link" org-open-at-point t]
21765 "--"
21766 ["Next link" org-next-link t]
21767 ["Previous link" org-previous-link t]
21768 "--"
21769 ["Descriptive Links"
21770 org-toggle-link-display
21771 :style radio
21772 :selected org-descriptive-links
21774 ["Literal Links"
21775 org-toggle-link-display
21776 :style radio
21777 :selected (not org-descriptive-links)])
21778 "--"
21779 ("TODO Lists"
21780 ["TODO/DONE/-" org-todo t]
21781 ("Select keyword"
21782 ["Next keyword" org-shiftright (org-at-heading-p)]
21783 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21784 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21785 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21786 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21787 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21788 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21789 "--"
21790 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21791 :selected org-enforce-todo-dependencies :style toggle :active t]
21792 "Settings for tree at point"
21793 ["Do Children sequentially" org-toggle-ordered-property :style radio
21794 :selected (org-entry-get nil "ORDERED")
21795 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21796 ["Do Children parallel" org-toggle-ordered-property :style radio
21797 :selected (not (org-entry-get nil "ORDERED"))
21798 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21799 "--"
21800 ["Set Priority" org-priority t]
21801 ["Priority Up" org-shiftup t]
21802 ["Priority Down" org-shiftdown t]
21803 "--"
21804 ["Get news from all feeds" org-feed-update-all t]
21805 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21806 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21807 ("TAGS and Properties"
21808 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21809 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21810 "--"
21811 ["Set property" org-set-property (not (org-before-first-heading-p))]
21812 ["Column view of properties" org-columns t]
21813 ["Insert Column View DBlock" org-insert-columns-dblock t])
21814 ("Dates and Scheduling"
21815 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21816 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21817 ("Change Date"
21818 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21819 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21820 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21821 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21822 ["Compute Time Range" org-evaluate-time-range t]
21823 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21824 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21825 "--"
21826 ["Custom time format" org-toggle-time-stamp-overlays
21827 :style radio :selected org-display-custom-times]
21828 "--"
21829 ["Goto Calendar" org-goto-calendar t]
21830 ["Date from Calendar" org-date-from-calendar t]
21831 "--"
21832 ["Start/Restart Timer" org-timer-start t]
21833 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21834 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21835 ["Insert Timer String" org-timer t]
21836 ["Insert Timer Item" org-timer-item t])
21837 ("Logging work"
21838 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21839 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21840 ["Clock out" org-clock-out t]
21841 ["Clock cancel" org-clock-cancel t]
21842 "--"
21843 ["Mark as default task" org-clock-mark-default-task t]
21844 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21845 ["Goto running clock" org-clock-goto t]
21846 "--"
21847 ["Display times" org-clock-display t]
21848 ["Create clock table" org-clock-report t]
21849 "--"
21850 ["Record DONE time"
21851 (progn (setq org-log-done (not org-log-done))
21852 (message "Switching to %s will %s record a timestamp"
21853 (car org-done-keywords)
21854 (if org-log-done "automatically" "not")))
21855 :style toggle :selected org-log-done])
21856 "--"
21857 ["Agenda Command..." org-agenda t]
21858 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21859 ("File List for Agenda")
21860 ("Special views current file"
21861 ["TODO Tree" org-show-todo-tree t]
21862 ["Check Deadlines" org-check-deadlines t]
21863 ["Timeline" org-timeline t]
21864 ["Tags/Property tree" org-match-sparse-tree t])
21865 "--"
21866 ["Export/Publish..." org-export-dispatch t]
21867 ("LaTeX"
21868 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21869 :selected org-cdlatex-mode]
21870 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21871 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21872 ["Modify math symbol" org-cdlatex-math-modify
21873 (org-inside-LaTeX-fragment-p)]
21874 ["Insert citation" org-reftex-citation t]
21875 "--"
21876 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21877 "--"
21878 ("MobileOrg"
21879 ["Push Files and Views" org-mobile-push t]
21880 ["Get Captured and Flagged" org-mobile-pull t]
21881 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21882 "--"
21883 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21884 "--"
21885 ("Documentation"
21886 ["Show Version" org-version t]
21887 ["Info Documentation" org-info t])
21888 ("Customize"
21889 ["Browse Org Group" org-customize t]
21890 "--"
21891 ["Expand This Menu" org-create-customize-menu
21892 (fboundp 'customize-menu-create)])
21893 ["Send bug report" org-submit-bug-report t]
21894 "--"
21895 ("Refresh/Reload"
21896 ["Refresh setup current buffer" org-mode-restart t]
21897 ["Reload Org (after update)" org-reload t]
21898 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21901 (defun org-info (&optional node)
21902 "Read documentation for Org-mode in the info system.
21903 With optional NODE, go directly to that node."
21904 (interactive)
21905 (info (format "(org)%s" (or node ""))))
21907 ;;;###autoload
21908 (defun org-submit-bug-report ()
21909 "Submit a bug report on Org-mode via mail.
21911 Don't hesitate to report any problems or inaccurate documentation.
21913 If you don't have setup sending mail from (X)Emacs, please copy the
21914 output buffer into your mail program, as it gives us important
21915 information about your Org-mode version and configuration."
21916 (interactive)
21917 (require 'reporter)
21918 (defvar reporter-prompt-for-summary-p)
21919 (org-load-modules-maybe)
21920 (org-require-autoloaded-modules)
21921 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21922 (reporter-submit-bug-report
21923 "emacs-orgmode@gnu.org"
21924 (org-version nil 'full)
21925 (let (list)
21926 (save-window-excursion
21927 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21928 (delete-other-windows)
21929 (erase-buffer)
21930 (insert "You are about to submit a bug report to the Org-mode mailing list.
21932 We would like to add your full Org-mode and Outline configuration to the
21933 bug report. This greatly simplifies the work of the maintainer and
21934 other experts on the mailing list.
21936 HOWEVER, some variables you have customized may contain private
21937 information. The names of customers, colleagues, or friends, might
21938 appear in the form of file names, tags, todo states, or search strings.
21939 If you answer yes to the prompt, you might want to check and remove
21940 such private information before sending the email.")
21941 (add-text-properties (point-min) (point-max) '(face org-warning))
21942 (when (yes-or-no-p "Include your Org-mode configuration ")
21943 (mapatoms
21944 (lambda (v)
21945 (and (boundp v)
21946 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21947 (or (and (symbol-value v)
21948 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21949 (and
21950 (get v 'custom-type) (get v 'standard-value)
21951 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21952 (push v list)))))
21953 (kill-buffer (get-buffer "*Warn about privacy*"))
21954 list))
21955 nil nil
21956 "Remember to cover the basics, that is, what you expected to happen and
21957 what in fact did happen. You don't know how to make a good report? See
21959 http://orgmode.org/manual/Feedback.html#Feedback
21961 Your bug report will be posted to the Org-mode mailing list.
21962 ------------------------------------------------------------------------")
21963 (save-excursion
21964 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21965 (replace-match "\\1Bug: \\3 [\\2]")))))
21968 (defun org-install-agenda-files-menu ()
21969 (let ((bl (buffer-list)))
21970 (save-excursion
21971 (while bl
21972 (set-buffer (pop bl))
21973 (if (derived-mode-p 'org-mode) (setq bl nil)))
21974 (when (derived-mode-p 'org-mode)
21975 (easy-menu-change
21976 '("Org") "File List for Agenda"
21977 (append
21978 (list
21979 ["Edit File List" (org-edit-agenda-file-list) t]
21980 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21981 ["Remove Current File from List" org-remove-file t]
21982 ["Cycle through agenda files" org-cycle-agenda-files t]
21983 ["Occur in all agenda files" org-occur-in-agenda-files t]
21984 "--")
21985 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21987 ;;;; Documentation
21989 (defun org-require-autoloaded-modules ()
21990 (interactive)
21991 (mapc 'require
21992 '(org-agenda org-archive org-attach org-clock org-colview org-id
21993 org-table org-timer)))
21995 ;;;###autoload
21996 (defun org-reload (&optional uncompiled)
21997 "Reload all org lisp files.
21998 With prefix arg UNCOMPILED, load the uncompiled versions."
21999 (interactive "P")
22000 (require 'loadhist)
22001 (let* ((org-dir (org-find-library-dir "org"))
22002 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
22003 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
22004 (remove-re (mapconcat 'identity
22005 (mapcar (lambda (f) (concat "^" f "$"))
22006 (list (if (featurep 'xemacs)
22007 "org-colview"
22008 "org-colview-xemacs")
22009 "org" "org-loaddefs" "org-version"))
22010 "\\|"))
22011 (feats (delete-dups
22012 (mapcar 'file-name-sans-extension
22013 (mapcar 'file-name-nondirectory
22014 (delq nil
22015 (mapcar 'feature-file
22016 features))))))
22017 (lfeat (append
22018 (sort
22019 (setq feats
22020 (delq nil (mapcar
22021 (lambda (f)
22022 (if (and (string-match feature-re f)
22023 (not (string-match remove-re f)))
22024 f nil))
22025 feats)))
22026 'string-lessp)
22027 (list "org-version" "org")))
22028 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
22029 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
22030 load-uncore load-misses)
22031 (setq load-misses
22032 (delq 't
22033 (mapcar (lambda (f)
22034 (or (org-load-noerror-mustsuffix (concat org-dir f))
22035 (and (string= org-dir contrib-dir)
22036 (org-load-noerror-mustsuffix (concat contrib-dir f)))
22037 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
22038 (add-to-list 'load-uncore f 'append)
22041 lfeat)))
22042 (if load-uncore
22043 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
22044 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
22045 (if load-misses
22046 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
22047 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
22048 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
22050 ;;;###autoload
22051 (defun org-customize ()
22052 "Call the customize function with org as argument."
22053 (interactive)
22054 (org-load-modules-maybe)
22055 (org-require-autoloaded-modules)
22056 (customize-browse 'org))
22058 (defun org-create-customize-menu ()
22059 "Create a full customization menu for Org-mode, insert it into the menu."
22060 (interactive)
22061 (org-load-modules-maybe)
22062 (org-require-autoloaded-modules)
22063 (if (fboundp 'customize-menu-create)
22064 (progn
22065 (easy-menu-change
22066 '("Org") "Customize"
22067 `(["Browse Org group" org-customize t]
22068 "--"
22069 ,(customize-menu-create 'org)
22070 ["Set" Custom-set t]
22071 ["Save" Custom-save t]
22072 ["Reset to Current" Custom-reset-current t]
22073 ["Reset to Saved" Custom-reset-saved t]
22074 ["Reset to Standard Settings" Custom-reset-standard t]))
22075 (message "\"Org\"-menu now contains full customization menu"))
22076 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22078 ;;;; Miscellaneous stuff
22080 ;;; Generally useful functions
22082 (defsubst org-get-at-eol (property n)
22083 "Get text property PROPERTY at the end of line less N characters."
22084 (get-text-property (- (point-at-eol) n) property))
22086 (defun org-find-text-property-in-string (prop s)
22087 "Return the first non-nil value of property PROP in string S."
22088 (or (get-text-property 0 prop s)
22089 (get-text-property (or (next-single-property-change 0 prop s) 0)
22090 prop s)))
22092 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22093 "Display the given MESSAGE as a warning."
22094 (if (fboundp 'display-warning)
22095 (display-warning 'org message
22096 (if (featurep 'xemacs) 'warning :warning))
22097 (let ((buf (get-buffer-create "*Org warnings*")))
22098 (with-current-buffer buf
22099 (goto-char (point-max))
22100 (insert "Warning (Org): " message)
22101 (unless (bolp)
22102 (newline)))
22103 (display-buffer buf)
22104 (sit-for 0))))
22106 (defun org-eval (form)
22107 "Eval FORM and return result."
22108 (condition-case error
22109 (eval form)
22110 (error (format "%%![Error: %s]" error))))
22112 (defun org-in-clocktable-p ()
22113 "Check if the cursor is in a clocktable."
22114 (let ((pos (point)) start)
22115 (save-excursion
22116 (end-of-line 1)
22117 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22118 (setq start (match-beginning 0))
22119 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22120 (>= (match-end 0) pos)
22121 start))))
22123 (defun org-in-verbatim-emphasis ()
22124 (save-match-data
22125 (and (org-in-regexp org-emph-re 2)
22126 (>= (point) (match-beginning 3))
22127 (<= (point) (match-end 4))
22128 (member (match-string 3) '("=" "~")))))
22130 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22131 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22132 (if (and marker (marker-buffer marker)
22133 (buffer-live-p (marker-buffer marker)))
22134 (progn
22135 (org-pop-to-buffer-same-window (marker-buffer marker))
22136 (if (or (> marker (point-max)) (< marker (point-min)))
22137 (widen))
22138 (goto-char marker)
22139 (org-show-context 'org-goto))
22140 (if bookmark
22141 (bookmark-jump bookmark)
22142 (error "Cannot find location"))))
22144 (defun org-quote-csv-field (s)
22145 "Quote field for inclusion in CSV material."
22146 (if (string-match "[\",]" s)
22147 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22150 (defun org-force-self-insert (N)
22151 "Needed to enforce self-insert under remapping."
22152 (interactive "p")
22153 (self-insert-command N))
22155 (defun org-string-width (s)
22156 "Compute width of string, ignoring invisible characters.
22157 This ignores character with invisibility property `org-link', and also
22158 characters with property `org-cwidth', because these will become invisible
22159 upon the next fontification round."
22160 (let (b l)
22161 (when (or (eq t buffer-invisibility-spec)
22162 (assq 'org-link buffer-invisibility-spec))
22163 (while (setq b (text-property-any 0 (length s)
22164 'invisible 'org-link s))
22165 (setq s (concat (substring s 0 b)
22166 (substring s (or (next-single-property-change
22167 b 'invisible s)
22168 (length s)))))))
22169 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22170 (setq s (concat (substring s 0 b)
22171 (substring s (or (next-single-property-change
22172 b 'org-cwidth s)
22173 (length s))))))
22174 (setq l (string-width s) b -1)
22175 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22176 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22179 (defun org-shorten-string (s maxlength)
22180 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22181 If the string is shorter or has length MAXLENGTH, just return the
22182 original string. If it is longer, the functions finds a space in the
22183 string, breaks this string off at that locations and adds three dots
22184 as ellipsis. Including the ellipsis, the string will not be longer
22185 than MAXLENGTH. If finding a good breaking point in the string does
22186 not work, the string is just chopped off in the middle of a word
22187 if necessary."
22188 (if (<= (length s) maxlength)
22190 (let* ((n (max (- maxlength 4) 1))
22191 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22192 (if (string-match re s)
22193 (concat (match-string 1 s) "...")
22194 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22196 (defun org-get-indentation (&optional line)
22197 "Get the indentation of the current line, interpreting tabs.
22198 When LINE is given, assume it represents a line and compute its indentation."
22199 (if line
22200 (if (string-match "^ *" (org-remove-tabs line))
22201 (match-end 0))
22202 (save-excursion
22203 (beginning-of-line 1)
22204 (skip-chars-forward " \t")
22205 (current-column))))
22207 (defun org-get-string-indentation (s)
22208 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22209 (let ((n -1) (i 0) (w tab-width) c)
22210 (catch 'exit
22211 (while (< (setq n (1+ n)) (length s))
22212 (setq c (aref s n))
22213 (cond ((= c ?\ ) (setq i (1+ i)))
22214 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22215 (t (throw 'exit t)))))
22218 (defun org-remove-tabs (s &optional width)
22219 "Replace tabulators in S with spaces.
22220 Assumes that s is a single line, starting in column 0."
22221 (setq width (or width tab-width))
22222 (while (string-match "\t" s)
22223 (setq s (replace-match
22224 (make-string
22225 (- (* width (/ (+ (match-beginning 0) width) width))
22226 (match-beginning 0)) ?\ )
22227 t t s)))
22230 (defun org-fix-indentation (line ind)
22231 "Fix indentation in LINE.
22232 IND is a cons cell with target and minimum indentation.
22233 If the current indentation in LINE is smaller than the minimum,
22234 leave it alone. If it is larger than ind, set it to the target."
22235 (let* ((l (org-remove-tabs line))
22236 (i (org-get-indentation l))
22237 (i1 (car ind)) (i2 (cdr ind)))
22238 (if (>= i i2) (setq l (substring line i2)))
22239 (if (> i1 0)
22240 (concat (make-string i1 ?\ ) l)
22241 l)))
22243 (defun org-remove-indentation (code &optional n)
22244 "Remove the maximum common indentation from the lines in CODE.
22245 N may optionally be the number of spaces to remove."
22246 (with-temp-buffer
22247 (insert code)
22248 (org-do-remove-indentation n)
22249 (buffer-string)))
22251 (defun org-do-remove-indentation (&optional n)
22252 "Remove the maximum common indentation from the buffer."
22253 (untabify (point-min) (point-max))
22254 (let ((min 10000) re)
22255 (if n
22256 (setq min n)
22257 (goto-char (point-min))
22258 (while (re-search-forward "^ *[^ \n]" nil t)
22259 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22260 (unless (or (= min 0) (= min 10000))
22261 (setq re (format "^ \\{%d\\}" min))
22262 (goto-char (point-min))
22263 (while (re-search-forward re nil t)
22264 (replace-match "")
22265 (end-of-line 1))
22266 min)))
22268 (defun org-fill-template (template alist)
22269 "Find each %key of ALIST in TEMPLATE and replace it."
22270 (let ((case-fold-search nil))
22271 (dolist (entry (sort (copy-sequence alist)
22272 (lambda (a b) (< (length (car a)) (length (car b))))))
22273 (setq template
22274 (replace-regexp-in-string
22275 (concat "%" (regexp-quote (car entry)))
22276 (or (cdr entry) "") template t t)))
22277 template))
22279 (defun org-base-buffer (buffer)
22280 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22281 (if (not buffer)
22282 buffer
22283 (or (buffer-base-buffer buffer)
22284 buffer)))
22286 (defun org-wrap (string &optional width lines)
22287 "Wrap string to either a number of lines, or a width in characters.
22288 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22289 that costs. If there is a word longer than WIDTH, the text is actually
22290 wrapped to the length of that word.
22291 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22292 many lines, whatever width that takes.
22293 The return value is a list of lines, without newlines at the end."
22294 (let* ((words (org-split-string string "[ \t\n]+"))
22295 (maxword (apply 'max (mapcar 'org-string-width words)))
22296 w ll)
22297 (cond (width
22298 (org-do-wrap words (max maxword width)))
22299 (lines
22300 (setq w maxword)
22301 (setq ll (org-do-wrap words maxword))
22302 (if (<= (length ll) lines)
22304 (setq ll words)
22305 (while (> (length ll) lines)
22306 (setq w (1+ w))
22307 (setq ll (org-do-wrap words w)))
22308 ll))
22309 (t (error "Cannot wrap this")))))
22311 (defun org-do-wrap (words width)
22312 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22313 (let (lines line)
22314 (while words
22315 (setq line (pop words))
22316 (while (and words (< (+ (length line) (length (car words))) width))
22317 (setq line (concat line " " (pop words))))
22318 (setq lines (push line lines)))
22319 (nreverse lines)))
22321 (defun org-split-string (string &optional separators)
22322 "Splits STRING into substrings at SEPARATORS.
22323 SEPARATORS is a regular expression.
22324 No empty strings are returned if there are matches at the beginning
22325 and end of string."
22326 ;; FIXME: why not use (split-string STRING SEPARATORS t)?
22327 (let ((start 0) notfirst list)
22328 (while (and (string-match (or separators "[ \f\t\n\r\v]+") string
22329 (if (and notfirst
22330 (= start (match-beginning 0))
22331 (< start (length string)))
22332 (1+ start) start))
22333 (< (match-beginning 0) (length string)))
22334 (setq notfirst t)
22335 (or (eq (match-beginning 0) 0)
22336 (and (eq (match-beginning 0) (match-end 0))
22337 (eq (match-beginning 0) start))
22338 (push (substring string start (match-beginning 0)) list))
22339 (setq start (match-end 0)))
22340 (or (eq start (length string))
22341 (push (substring string start) list))
22342 (nreverse list)))
22344 (defun org-quote-vert (s)
22345 "Replace \"|\" with \"\\vert\"."
22346 (while (string-match "|" s)
22347 (setq s (replace-match "\\vert" t t s)))
22350 (defun org-uuidgen-p (s)
22351 "Is S an ID created by UUIDGEN?"
22352 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22354 (defun org-in-src-block-p (&optional inside)
22355 "Whether point is in a code source block.
22356 When INSIDE is non-nil, don't consider we are within a src block
22357 when point is at #+BEGIN_SRC or #+END_SRC."
22358 (let ((case-fold-search t) ov)
22359 (or (and (eq (get-char-property (point) 'src-block) t))
22360 (and (not inside)
22361 (save-match-data
22362 (save-excursion
22363 (beginning-of-line)
22364 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22366 (defun org-context ()
22367 "Return a list of contexts of the current cursor position.
22368 If several contexts apply, all are returned.
22369 Each context entry is a list with a symbol naming the context, and
22370 two positions indicating start and end of the context. Possible
22371 contexts are:
22373 :headline anywhere in a headline
22374 :headline-stars on the leading stars in a headline
22375 :todo-keyword on a TODO keyword (including DONE) in a headline
22376 :tags on the TAGS in a headline
22377 :priority on the priority cookie in a headline
22378 :item on the first line of a plain list item
22379 :item-bullet on the bullet/number of a plain list item
22380 :checkbox on the checkbox in a plain list item
22381 :table in an org-mode table
22382 :table-special on a special filed in a table
22383 :table-table in a table.el table
22384 :clocktable in a clocktable
22385 :src-block in a source block
22386 :link on a hyperlink
22387 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22388 :target on a <<target>>
22389 :radio-target on a <<<radio-target>>>
22390 :latex-fragment on a LaTeX fragment
22391 :latex-preview on a LaTeX fragment with overlaid preview image
22393 This function expects the position to be visible because it uses font-lock
22394 faces as a help to recognize the following contexts: :table-special, :link,
22395 and :keyword."
22396 (let* ((f (get-text-property (point) 'face))
22397 (faces (if (listp f) f (list f)))
22398 (case-fold-search t)
22399 (p (point)) clist o)
22400 ;; First the large context
22401 (cond
22402 ((org-at-heading-p t)
22403 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22404 (when (progn
22405 (beginning-of-line 1)
22406 (looking-at org-todo-line-tags-regexp))
22407 (push (org-point-in-group p 1 :headline-stars) clist)
22408 (push (org-point-in-group p 2 :todo-keyword) clist)
22409 (push (org-point-in-group p 4 :tags) clist))
22410 (goto-char p)
22411 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22412 (if (looking-at "\\[#[A-Z0-9]\\]")
22413 (push (org-point-in-group p 0 :priority) clist)))
22415 ((org-at-item-p)
22416 (push (org-point-in-group p 2 :item-bullet) clist)
22417 (push (list :item (point-at-bol)
22418 (save-excursion (org-end-of-item) (point)))
22419 clist)
22420 (and (org-at-item-checkbox-p)
22421 (push (org-point-in-group p 0 :checkbox) clist)))
22423 ((org-at-table-p)
22424 (push (list :table (org-table-begin) (org-table-end)) clist)
22425 (if (memq 'org-formula faces)
22426 (push (list :table-special
22427 (previous-single-property-change p 'face)
22428 (next-single-property-change p 'face)) clist)))
22429 ((org-at-table-p 'any)
22430 (push (list :table-table) clist)))
22431 (goto-char p)
22433 (let ((case-fold-search t))
22434 ;; New the "medium" contexts: clocktables, source blocks
22435 (cond ((org-in-clocktable-p)
22436 (push (list :clocktable
22437 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22438 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22439 (match-beginning 1))
22440 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22441 (match-end 0))) clist))
22442 ((org-in-src-block-p)
22443 (push (list :src-block
22444 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22445 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22446 (match-beginning 1))
22447 (and (search-forward "#+END_SRC" nil t)
22448 (match-beginning 0))) clist))))
22449 (goto-char p)
22451 ;; Now the small context
22452 (cond
22453 ((org-at-timestamp-p)
22454 (push (org-point-in-group p 0 :timestamp) clist))
22455 ((memq 'org-link faces)
22456 (push (list :link
22457 (previous-single-property-change p 'face)
22458 (next-single-property-change p 'face)) clist))
22459 ((memq 'org-special-keyword faces)
22460 (push (list :keyword
22461 (previous-single-property-change p 'face)
22462 (next-single-property-change p 'face)) clist))
22463 ((org-at-target-p)
22464 (push (org-point-in-group p 0 :target) clist)
22465 (goto-char (1- (match-beginning 0)))
22466 (if (looking-at org-radio-target-regexp)
22467 (push (org-point-in-group p 0 :radio-target) clist))
22468 (goto-char p))
22469 ((setq o (car (delq nil
22470 (mapcar
22471 (lambda (x)
22472 (if (memq x org-latex-fragment-image-overlays) x))
22473 (overlays-at (point))))))
22474 (push (list :latex-fragment
22475 (overlay-start o) (overlay-end o)) clist)
22476 (push (list :latex-preview
22477 (overlay-start o) (overlay-end o)) clist))
22478 ((org-inside-LaTeX-fragment-p)
22479 ;; FIXME: positions wrong.
22480 (push (list :latex-fragment (point) (point)) clist)))
22482 (setq clist (nreverse (delq nil clist)))
22483 clist))
22485 (defun org-in-regexp (re &optional nlines visually)
22486 "Check if point is inside a match of RE.
22488 Normally only the current line is checked, but you can include
22489 NLINES extra lines after point into the search. If VISUALLY is
22490 set, require that the cursor is not after the match but really
22491 on, so that the block visually is on the match."
22492 (catch 'exit
22493 (let ((pos (point))
22494 (eol (point-at-eol (+ 1 (or nlines 0))))
22495 (inc (if visually 1 0)))
22496 (save-excursion
22497 (beginning-of-line (- 1 (or nlines 0)))
22498 (while (re-search-forward re eol t)
22499 (if (and (<= (match-beginning 0) pos)
22500 (>= (+ inc (match-end 0)) pos))
22501 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22502 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22503 "Org mode 8.3")
22505 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22506 "Non-nil when point is between matches of START-RE and END-RE.
22508 Also return a non-nil value when point is on one of the matches.
22510 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22511 buffer positions. Default values are the positions of headlines
22512 surrounding the point.
22514 The functions returns a cons cell whose car (resp. cdr) is the
22515 position before START-RE (resp. after END-RE)."
22516 (save-match-data
22517 (let ((pos (point))
22518 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22519 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22520 beg end)
22521 (save-excursion
22522 ;; Point is on a block when on START-RE or if START-RE can be
22523 ;; found before it...
22524 (and (or (org-in-regexp start-re)
22525 (re-search-backward start-re limit-up t))
22526 (setq beg (match-beginning 0))
22527 ;; ... and END-RE after it...
22528 (goto-char (match-end 0))
22529 (re-search-forward end-re limit-down t)
22530 (> (setq end (match-end 0)) pos)
22531 ;; ... without another START-RE in-between.
22532 (goto-char (match-beginning 0))
22533 (not (re-search-backward start-re (1+ beg) t))
22534 ;; Return value.
22535 (cons beg end))))))
22537 (defun org-in-block-p (names)
22538 "Non-nil when point belongs to a block whose name belongs to NAMES.
22540 NAMES is a list of strings containing names of blocks.
22542 Return first block name matched, or nil. Beware that in case of
22543 nested blocks, the returned name may not belong to the closest
22544 block from point."
22545 (save-match-data
22546 (catch 'exit
22547 (let ((case-fold-search t)
22548 (lim-up (save-excursion (outline-previous-heading)))
22549 (lim-down (save-excursion (outline-next-heading))))
22550 (mapc (lambda (name)
22551 (let ((n (regexp-quote name)))
22552 (when (org-between-regexps-p
22553 (concat "^[ \t]*#\\+begin_" n)
22554 (concat "^[ \t]*#\\+end_" n)
22555 lim-up lim-down)
22556 (throw 'exit n))))
22557 names))
22558 nil)))
22560 (defun org-occur-in-agenda-files (regexp &optional _nlines)
22561 "Call `multi-occur' with buffers for all agenda files."
22562 (interactive "sOrg-files matching: ")
22563 (let* ((files (org-agenda-files))
22564 (tnames (mapcar #'file-truename files))
22565 (extra org-agenda-text-search-extra-files))
22566 (when (eq (car extra) 'agenda-archives)
22567 (setq extra (cdr extra))
22568 (setq files (org-add-archive-files files)))
22569 (dolist (f extra)
22570 (unless (member (file-truename f) tnames)
22571 (unless (member f files) (setq files (append files (list f))))
22572 (setq tnames (append tnames (list (file-truename f))))))
22573 (multi-occur
22574 (mapcar (lambda (x)
22575 (with-current-buffer
22576 ;; FIXME: Why not just (find-file-noselect x)?
22577 ;; Is it to avoid the "revert buffer" prompt?
22578 (or (get-file-buffer x) (find-file-noselect x))
22579 (widen)
22580 (current-buffer)))
22581 files)
22582 regexp)))
22584 (if (boundp 'occur-mode-find-occurrence-hook)
22585 ;; Emacs 23
22586 (add-hook 'occur-mode-find-occurrence-hook
22587 (lambda ()
22588 (when (derived-mode-p 'org-mode)
22589 (org-reveal))))
22590 ;; Emacs 22
22591 (defadvice occur-mode-goto-occurrence
22592 (after org-occur-reveal activate)
22593 (and (derived-mode-p 'org-mode) (org-reveal)))
22594 (defadvice occur-mode-goto-occurrence-other-window
22595 (after org-occur-reveal activate)
22596 (and (derived-mode-p 'org-mode) (org-reveal)))
22597 (defadvice occur-mode-display-occurrence
22598 (after org-occur-reveal activate)
22599 (when (derived-mode-p 'org-mode)
22600 (let ((pos (occur-mode-find-occurrence)))
22601 (with-current-buffer (marker-buffer pos)
22602 (save-excursion
22603 (goto-char pos)
22604 (org-reveal)))))))
22606 (defun org-occur-link-in-agenda-files ()
22607 "Create a link and search for it in the agendas.
22608 The link is not stored in `org-stored-links', it is just created
22609 for the search purpose."
22610 (interactive)
22611 (let ((link (condition-case nil
22612 (org-store-link nil)
22613 (error "Unable to create a link to here"))))
22614 (org-occur-in-agenda-files (regexp-quote link))))
22616 (defun org-reverse-string (string)
22617 "Return the reverse of STRING."
22618 (apply 'string (reverse (string-to-list string))))
22620 ;; defsubst org-uniquify must be defined before first use
22622 (defun org-uniquify-alist (alist)
22623 "Merge elements of ALIST with the same key.
22625 For example, in this alist:
22627 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22628 => '((a 1 3) (b 2))
22630 merge (a 1) and (a 3) into (a 1 3).
22632 The function returns the new ALIST."
22633 (let (rtn)
22634 (mapc
22635 (lambda (e)
22636 (let (n)
22637 (if (not (assoc (car e) rtn))
22638 (push e rtn)
22639 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22640 (setq rtn (assq-delete-all (car e) rtn))
22641 (push n rtn))))
22642 alist)
22643 rtn))
22645 (defun org-delete-all (elts list)
22646 "Remove all elements in ELTS from LIST."
22647 (while elts
22648 (setq list (delete (pop elts) list)))
22649 list)
22651 (defun org-count (cl-item cl-seq)
22652 "Count the number of occurrences of ITEM in SEQ.
22653 Taken from `count' in cl-seq.el with all keyword arguments removed."
22654 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22655 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22656 (while (< cl-start cl-end)
22657 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22658 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22659 (setq cl-start (1+ cl-start)))
22660 cl-count))
22662 (defun org-remove-if (predicate seq)
22663 "Remove everything from SEQ that fulfills PREDICATE."
22664 (let (res e)
22665 (while seq
22666 (setq e (pop seq))
22667 (if (not (funcall predicate e)) (push e res)))
22668 (nreverse res)))
22670 (defun org-remove-if-not (predicate seq)
22671 "Remove everything from SEQ that does not fulfill PREDICATE."
22672 (let (res e)
22673 (while seq
22674 (setq e (pop seq))
22675 (if (funcall predicate e) (push e res)))
22676 (nreverse res)))
22678 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22679 "Reduce two-argument FUNCTION across SEQ.
22680 Taken from `reduce' in cl-seq.el with all keyword arguments but
22681 \":initial-value\" removed."
22682 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22683 (cadr (memq :initial-value cl-keys)))
22684 (cl-seq (pop cl-seq))
22685 (t (funcall cl-func)))))
22686 (while cl-seq
22687 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22688 cl-accum))
22690 (defun org-every (pred seq)
22691 "Return true if PREDICATE is true of every element of SEQ.
22692 Adapted from `every' in cl.el."
22693 (catch 'org-every
22694 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22697 (defun org-some (pred seq)
22698 "Return true if PREDICATE is true of any element of SEQ.
22699 Adapted from `some' in cl.el."
22700 (catch 'org-some
22701 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22702 nil))
22704 (defun org-back-over-empty-lines ()
22705 "Move backwards over whitespace, to the beginning of the first empty line.
22706 Returns the number of empty lines passed."
22707 (let ((pos (point)))
22708 (if (cdr (assoc 'heading org-blank-before-new-entry))
22709 (skip-chars-backward " \t\n\r")
22710 (unless (eobp)
22711 (forward-line -1)))
22712 (beginning-of-line 2)
22713 (goto-char (min (point) pos))
22714 (count-lines (point) pos)))
22716 (defun org-skip-whitespace ()
22717 (skip-chars-forward " \t\n\r"))
22719 (defun org-point-in-group (point group &optional context)
22720 "Check if POINT is in match-group GROUP.
22721 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22722 match. If the match group does not exist or point is not inside it,
22723 return nil."
22724 (and (match-beginning group)
22725 (>= point (match-beginning group))
22726 (<= point (match-end group))
22727 (if context
22728 (list context (match-beginning group) (match-end group))
22729 t)))
22731 (defun org-switch-to-buffer-other-window (&rest args)
22732 "Switch to buffer in a second window on the current frame.
22733 In particular, do not allow pop-up frames.
22734 Returns the newly created buffer."
22735 (org-no-popups
22736 (apply 'switch-to-buffer-other-window args)))
22738 (defun org-combine-plists (&rest plists)
22739 "Create a single property list from all plists in PLISTS.
22740 The process starts by copying the first list, and then setting properties
22741 from the other lists. Settings in the last list are the most significant
22742 ones and overrule settings in the other lists."
22743 (let ((rtn (copy-sequence (pop plists)))
22744 p v ls)
22745 (while plists
22746 (setq ls (pop plists))
22747 (while ls
22748 (setq p (pop ls) v (pop ls))
22749 (setq rtn (plist-put rtn p v))))
22750 rtn))
22752 (defun org-replace-escapes (string table)
22753 "Replace %-escapes in STRING with values in TABLE.
22754 TABLE is an association list with keys like \"%a\" and string values.
22755 The sequences in STRING may contain normal field width and padding information,
22756 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22757 so values can contain further %-escapes if they are define later in TABLE."
22758 (let ((tbl (copy-alist table))
22759 (case-fold-search nil)
22760 (pchg 0)
22761 e re rpl)
22762 (dolist (e tbl)
22763 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22764 (when (and (cdr e) (string-match re (cdr e)))
22765 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22766 (safe "SREF"))
22767 (add-text-properties 0 3 (list 'sref sref) safe)
22768 (setcdr e (replace-match safe t t (cdr e)))))
22769 (while (string-match re string)
22770 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22771 (cdr e)))
22772 (setq string (replace-match rpl t t string))))
22773 (while (setq pchg (next-property-change pchg string))
22774 (let ((sref (get-text-property pchg 'sref string)))
22775 (when (and sref (string-match "SREF" string pchg))
22776 (setq string (replace-match sref t t string)))))
22777 string))
22779 (defun org-sublist (list start end)
22780 "Return a section of LIST, from START to END.
22781 Counting starts at 1."
22782 (let (rtn (c start))
22783 (setq list (nthcdr (1- start) list))
22784 (while (and list (<= c end))
22785 (push (pop list) rtn)
22786 (setq c (1+ c)))
22787 (nreverse rtn)))
22789 (defun org-find-base-buffer-visiting (file)
22790 "Like `find-buffer-visiting' but always return the base buffer and
22791 not an indirect buffer."
22792 (let ((buf (or (get-file-buffer file)
22793 (find-buffer-visiting file))))
22794 (if buf
22795 (or (buffer-base-buffer buf) buf)
22796 nil)))
22798 (defun org-image-file-name-regexp (&optional extensions)
22799 "Return regexp matching the file names of images.
22800 If EXTENSIONS is given, only match these."
22801 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22802 (image-file-name-regexp)
22803 (let ((image-file-name-extensions
22804 (or extensions
22805 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22806 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22807 (concat "\\."
22808 (regexp-opt (nconc (mapcar 'upcase
22809 image-file-name-extensions)
22810 image-file-name-extensions)
22812 "\\'"))))
22814 (defun org-file-image-p (file &optional extensions)
22815 "Return non-nil if FILE is an image."
22816 (save-match-data
22817 (string-match (org-image-file-name-regexp extensions) file)))
22819 (defun org-get-cursor-date (&optional with-time)
22820 "Return the date at cursor in as a time.
22821 This works in the calendar and in the agenda, anywhere else it just
22822 returns the current time.
22823 If WITH-TIME is non-nil, returns the time of the event at point (in
22824 the agenda) or the current time of the day."
22825 (let (date day defd tp hod mod)
22826 (when with-time
22827 (setq tp (get-text-property (point) 'time))
22828 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22829 (setq hod (string-to-number (match-string 1 tp))
22830 mod (string-to-number (match-string 2 tp))))
22831 (or tp (let ((now (decode-time)))
22832 (setq hod (nth 2 now)
22833 mod (nth 1 now)))))
22834 (cond
22835 ((eq major-mode 'calendar-mode)
22836 (setq date (calendar-cursor-to-date)
22837 defd (encode-time 0 (or mod 0) (or hod 0)
22838 (nth 1 date) (nth 0 date) (nth 2 date))))
22839 ((eq major-mode 'org-agenda-mode)
22840 (setq day (get-text-property (point) 'day))
22841 (if day
22842 (setq date (calendar-gregorian-from-absolute day)
22843 defd (encode-time 0 (or mod 0) (or hod 0)
22844 (nth 1 date) (nth 0 date) (nth 2 date))))))
22845 (or defd (current-time))))
22847 (defun org-mark-subtree (&optional up)
22848 "Mark the current subtree.
22849 This puts point at the start of the current subtree, and mark at
22850 the end. If a numeric prefix UP is given, move up into the
22851 hierarchy of headlines by UP levels before marking the subtree."
22852 (interactive "P")
22853 (org-with-limited-levels
22854 (cond ((org-at-heading-p) (beginning-of-line))
22855 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22856 (t (outline-previous-visible-heading 1))))
22857 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22858 (if (org-called-interactively-p 'any)
22859 (call-interactively 'org-mark-element)
22860 (org-mark-element)))
22863 ;;; Indentation
22865 (defun org--get-expected-indentation (element contentsp)
22866 "Expected indentation column for current line, according to ELEMENT.
22867 ELEMENT is an element containing point. CONTENTSP is non-nil
22868 when indentation is to be computed according to contents of
22869 ELEMENT."
22870 (let ((type (org-element-type element))
22871 (start (org-element-property :begin element))
22872 (post-affiliated (org-element-property :post-affiliated element)))
22873 (org-with-wide-buffer
22874 (cond
22875 (contentsp
22876 (case type
22877 ((diary-sexp footnote-definition) 0)
22878 ((headline inlinetask nil)
22879 (if (not org-adapt-indentation) 0
22880 (let ((level (org-current-level)))
22881 (if level (1+ level) 0))))
22882 ((item plain-list) (org-list-item-body-column post-affiliated))
22884 (goto-char start)
22885 (org-get-indentation))))
22886 ((memq type '(headline inlinetask nil))
22887 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22888 (org--get-expected-indentation element t)
22890 ((memq type '(diary-sexp footnote-definition)) 0)
22891 ;; First paragraph of a footnote definition or an item.
22892 ;; Indent like parent.
22893 ((< (line-beginning-position) start)
22894 (org--get-expected-indentation
22895 (org-element-property :parent element) t))
22896 ;; At first line: indent according to previous sibling, if any,
22897 ;; ignoring footnote definitions and inline tasks, or parent's
22898 ;; contents.
22899 ((= (line-beginning-position) start)
22900 (catch 'exit
22901 (while t
22902 (if (= (point-min) start) (throw 'exit 0)
22903 (goto-char (1- start))
22904 (let* ((previous (org-element-at-point))
22905 (parent previous))
22906 (while (and parent (<= (org-element-property :end parent) start))
22907 (setq previous parent
22908 parent (org-element-property :parent parent)))
22909 (cond
22910 ((not previous) (throw 'exit 0))
22911 ((> (org-element-property :end previous) start)
22912 (throw 'exit (org--get-expected-indentation previous t)))
22913 ((memq (org-element-type previous)
22914 '(footnote-definition inlinetask))
22915 (setq start (org-element-property :begin previous)))
22916 (t (goto-char (org-element-property :begin previous))
22917 (throw 'exit
22918 (if (bolp) (org-get-indentation)
22919 ;; At first paragraph in an item or
22920 ;; a footnote definition.
22921 (org--get-expected-indentation
22922 (org-element-property :parent previous) t))))))))))
22923 ;; Otherwise, move to the first non-blank line above.
22925 (beginning-of-line)
22926 (let ((pos (point)))
22927 (skip-chars-backward " \r\t\n")
22928 (cond
22929 ;; Two blank lines end a footnote definition or a plain
22930 ;; list. When we indent an empty line after them, the
22931 ;; containing list or footnote definition is over, so it
22932 ;; qualifies as a previous sibling. Therefore, we indent
22933 ;; like its first line.
22934 ((and (memq type '(footnote-definition plain-list))
22935 (> (count-lines (point) pos) 2))
22936 (goto-char start)
22937 (org-get-indentation))
22938 ;; Line above is the first one of a paragraph at the
22939 ;; beginning of an item or a footnote definition. Indent
22940 ;; like parent.
22941 ((< (line-beginning-position) start)
22942 (org--get-expected-indentation
22943 (org-element-property :parent element) t))
22944 ;; Line above is the beginning of an element, i.e., point
22945 ;; was originally on the blank lines between element's start
22946 ;; and contents.
22947 ((= (line-beginning-position) post-affiliated)
22948 (org--get-expected-indentation element t))
22949 ;; POS is after contents in a greater element. Indent like
22950 ;; the beginning of the element.
22952 ;; As a special case, if point is at the end of a footnote
22953 ;; definition or an item, indent like the very last element
22954 ;; within.
22955 ((and (not (eq type 'paragraph))
22956 (let ((cend (org-element-property :contents-end element)))
22957 (and cend (<= cend pos))))
22958 (if (memq type '(footnote-definition item plain-list))
22959 (let ((last (org-element-at-point)))
22960 (org--get-expected-indentation
22961 last
22962 (memq (org-element-type last)
22963 '(footnote-definition item plain-list))))
22964 (goto-char start)
22965 (org-get-indentation)))
22966 ;; In any other case, indent like the current line.
22967 (t (org-get-indentation)))))))))
22969 (defun org--align-node-property ()
22970 "Align node property at point.
22971 Alignment is done according to `org-property-format', which see."
22972 (when (save-excursion
22973 (beginning-of-line)
22974 (looking-at org-property-re))
22975 (replace-match
22976 (concat (match-string 4)
22977 (org-trim
22978 (format org-property-format (match-string 1) (match-string 3))))
22979 t t)))
22981 (defun org-indent-line ()
22982 "Indent line depending on context.
22984 Indentation is done according to the following rules:
22986 - Footnote definitions, diary sexps, headlines and inline tasks
22987 have to start at column 0.
22989 - On the very first line of an element, consider, in order, the
22990 next rules until one matches:
22992 1. If there's a sibling element before, ignoring footnote
22993 definitions and inline tasks, indent like its first line.
22995 2. If element has a parent, indent like its contents. More
22996 precisely, if parent is an item, indent after the
22997 description part, if any, or the bullet (see
22998 `org-list-description-max-indent'). Else, indent like
22999 parent's first line.
23001 3. Otherwise, indent relatively to current level, if
23002 `org-adapt-indentation' is non-nil, or to left margin.
23004 - On a blank line at the end of an element, indent according to
23005 the type of the element. More precisely
23007 1. If element is a plain list, an item, or a footnote
23008 definition, indent like the very last element within.
23010 2. If element is a paragraph, indent like its last non blank
23011 line.
23013 3. Otherwise, indent like its very first line.
23015 - In the code part of a source block, use language major mode
23016 to indent current line if `org-src-tab-acts-natively' is
23017 non-nil. If it is nil, do nothing.
23019 - Otherwise, indent like the first non-blank line above.
23021 The function doesn't indent an item as it could break the whole
23022 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
23023 \\[org-shiftmetaright].
23025 Also align node properties according to `org-property-format'."
23026 (interactive)
23027 (cond
23028 (orgstruct-is-++
23029 (let ((indent-line-function
23030 (cadadr (assq 'indent-line-function org-fb-vars))))
23031 (indent-according-to-mode)))
23032 ((org-at-heading-p) 'noindent)
23034 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
23035 (type (org-element-type element)))
23036 (cond ((and (memq type '(plain-list item))
23037 (= (line-beginning-position)
23038 (org-element-property :post-affiliated element)))
23039 'noindent)
23040 ((and (eq type 'src-block)
23041 org-src-tab-acts-natively
23042 (> (line-beginning-position)
23043 (org-element-property :post-affiliated element))
23044 (< (line-beginning-position)
23045 (org-with-wide-buffer
23046 (goto-char (org-element-property :end element))
23047 (skip-chars-backward " \r\t\n")
23048 (line-beginning-position))))
23049 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
23051 (let ((column (org--get-expected-indentation element nil)))
23052 ;; Preserve current column.
23053 (if (<= (current-column) (current-indentation))
23054 (org-indent-line-to column)
23055 (save-excursion (org-indent-line-to column))))
23056 ;; Align node property. Also preserve current column.
23057 (when (eq type 'node-property)
23058 (let ((column (current-column)))
23059 (org--align-node-property)
23060 (org-move-to-column column)))))))))
23062 (defun org-indent-region (start end)
23063 "Indent each non-blank line in the region.
23064 Called from a program, START and END specify the region to
23065 indent. The function will not indent contents of example blocks,
23066 verse blocks and export blocks as leading white spaces are
23067 assumed to be significant there."
23068 (interactive "r")
23069 (save-excursion
23070 (goto-char start)
23071 (skip-chars-forward " \r\t\n")
23072 (unless (eobp) (beginning-of-line))
23073 (let ((indent-to
23074 (lambda (ind pos)
23075 ;; Set IND as indentation for all lines between point and
23076 ;; POS or END, whichever comes first. Blank lines are
23077 ;; ignored. Leave point after POS once done.
23078 (let ((limit (copy-marker (min end pos))))
23079 (while (< (point) limit)
23080 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23081 (forward-line))
23082 (set-marker limit nil))))
23083 (end (copy-marker end)))
23084 (while (< (point) end)
23085 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23086 (let* ((element (org-element-at-point))
23087 (type (org-element-type element))
23088 (element-end (copy-marker (org-element-property :end element)))
23089 (ind (org--get-expected-indentation element nil)))
23090 (cond
23091 ((or (memq type '(paragraph table table-row))
23092 (not (or (org-element-property :contents-begin element)
23093 (memq type
23094 '(example-block export-block src-block)))))
23095 ;; Elements here are indented as a single block. Also
23096 ;; align node properties.
23097 (when (eq type 'node-property)
23098 (org--align-node-property)
23099 (beginning-of-line))
23100 (funcall indent-to ind element-end))
23102 ;; Elements in this category consist of three parts:
23103 ;; before the contents, the contents, and after the
23104 ;; contents. The contents are treated specially,
23105 ;; according to the element type, or not indented at
23106 ;; all. Other parts are indented as a single block.
23107 (let* ((post (copy-marker
23108 (org-element-property :post-affiliated element)))
23109 (cbeg
23110 (copy-marker
23111 (cond
23112 ((not (org-element-property :contents-begin element))
23113 ;; Fake contents for source blocks.
23114 (org-with-wide-buffer
23115 (goto-char post)
23116 (forward-line)
23117 (point)))
23118 ((memq type '(footnote-definition item plain-list))
23119 ;; Contents in these elements could start on
23120 ;; the same line as the beginning of the
23121 ;; element. Make sure we start indenting
23122 ;; from the second line.
23123 (org-with-wide-buffer
23124 (goto-char post)
23125 (end-of-line)
23126 (skip-chars-forward " \r\t\n")
23127 (if (eobp) (point) (line-beginning-position))))
23128 (t (org-element-property :contents-begin element)))))
23129 (cend (copy-marker
23130 (or (org-element-property :contents-end element)
23131 ;; Fake contents for source blocks.
23132 (org-with-wide-buffer
23133 (goto-char element-end)
23134 (skip-chars-backward " \r\t\n")
23135 (line-beginning-position)))
23136 t)))
23137 ;; Do not change items indentation individually as it
23138 ;; might break the list as a whole. On the other
23139 ;; hand, when at a plain list, indent it as a whole.
23140 (cond ((eq type 'plain-list)
23141 (let ((offset (- ind (org-get-indentation))))
23142 (unless (zerop offset)
23143 (indent-rigidly (org-element-property :begin element)
23144 (org-element-property :end element)
23145 offset))
23146 (goto-char cbeg)))
23147 ((eq type 'item) (goto-char cbeg))
23148 (t (funcall indent-to ind cbeg)))
23149 (when (< (point) end)
23150 (case type
23151 ((example-block export-block verse-block))
23152 (src-block
23153 ;; In a source block, indent source code
23154 ;; according to language major mode, but only if
23155 ;; `org-src-tab-acts-natively' is non-nil.
23156 (when (and (< (point) end) org-src-tab-acts-natively)
23157 (ignore-errors
23158 (org-babel-do-in-edit-buffer
23159 (indent-region (point-min) (point-max))))))
23160 (t (org-indent-region (point) (min cend end))))
23161 (goto-char (min cend end))
23162 (when (< (point) end) (funcall indent-to ind element-end)))
23163 (set-marker post nil)
23164 (set-marker cbeg nil)
23165 (set-marker cend nil))))
23166 (set-marker element-end nil))))
23167 (set-marker end nil))))
23169 (defun org-indent-drawer ()
23170 "Indent the drawer at point."
23171 (interactive)
23172 (unless (save-excursion
23173 (beginning-of-line)
23174 (org-looking-at-p org-drawer-regexp))
23175 (user-error "Not at a drawer"))
23176 (let ((element (org-element-at-point)))
23177 (unless (memq (org-element-type element) '(drawer property-drawer))
23178 (user-error "Not at a drawer"))
23179 (org-with-wide-buffer
23180 (org-indent-region (org-element-property :begin element)
23181 (org-element-property :end element))))
23182 (message "Drawer at point indented"))
23184 (defun org-indent-block ()
23185 "Indent the block at point."
23186 (interactive)
23187 (unless (save-excursion
23188 (beginning-of-line)
23189 (let ((case-fold-search t))
23190 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23191 (user-error "Not at a block"))
23192 (let ((element (org-element-at-point)))
23193 (unless (memq (org-element-type element)
23194 '(comment-block center-block dynamic-block example-block
23195 export-block quote-block special-block
23196 src-block verse-block))
23197 (user-error "Not at a block"))
23198 (org-with-wide-buffer
23199 (org-indent-region (org-element-property :begin element)
23200 (org-element-property :end element))))
23201 (message "Block at point indented"))
23204 ;;; Filling
23206 ;; We use our own fill-paragraph and auto-fill functions.
23208 ;; `org-fill-paragraph' relies on adaptive filling and context
23209 ;; checking. Appropriate `fill-prefix' is computed with
23210 ;; `org-adaptive-fill-function'.
23212 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23213 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23214 ;; `org-adaptive-fill-function' value. Internally,
23215 ;; `org-comment-line-break-function' breaks the line.
23217 ;; `org-setup-filling' installs filling and auto-filling related
23218 ;; variables during `org-mode' initialization.
23220 (defvar org-element-paragraph-separate) ; org-element.el
23221 (defun org-setup-filling ()
23222 (require 'org-element)
23223 ;; Prevent auto-fill from inserting unwanted new items.
23224 (when (boundp 'fill-nobreak-predicate)
23225 (org-set-local
23226 'fill-nobreak-predicate
23227 (org-uniquify
23228 (append fill-nobreak-predicate
23229 '(org-fill-line-break-nobreak-p
23230 org-fill-paragraph-with-timestamp-nobreak-p)))))
23231 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23232 (org-set-local 'paragraph-start paragraph-ending)
23233 (org-set-local 'paragraph-separate paragraph-ending))
23234 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23235 (org-set-local 'auto-fill-inhibit-regexp nil)
23236 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23237 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23238 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23240 (defun org-fill-line-break-nobreak-p ()
23241 "Non-nil when a new line at point would create an Org line break."
23242 (save-excursion
23243 (skip-chars-backward "[ \t]")
23244 (skip-chars-backward "\\\\")
23245 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23247 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23248 "Non-nil when a new line at point would split a timestamp."
23249 (and (org-at-timestamp-p t)
23250 (not (looking-at org-ts-regexp-both))))
23252 (declare-function message-in-body-p "message" ())
23253 (defvar orgtbl-line-start-regexp) ; From org-table.el
23254 (defun org-adaptive-fill-function ()
23255 "Compute a fill prefix for the current line.
23256 Return fill prefix, as a string, or nil if current line isn't
23257 meant to be filled. For convenience, if `adaptive-fill-regexp'
23258 matches in paragraphs or comments, use it."
23259 (catch 'exit
23260 (when (derived-mode-p 'message-mode)
23261 (save-excursion
23262 (beginning-of-line)
23263 (cond ((not (message-in-body-p)) (throw 'exit nil))
23264 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23265 ((looking-at message-cite-prefix-regexp)
23266 (throw 'exit (match-string-no-properties 0)))
23267 ((looking-at org-outline-regexp)
23268 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23269 (org-with-wide-buffer
23270 (unless (org-at-heading-p)
23271 (let* ((p (line-beginning-position))
23272 (element (save-excursion
23273 (beginning-of-line)
23274 (org-element-at-point)))
23275 (type (org-element-type element))
23276 (post-affiliated (org-element-property :post-affiliated element)))
23277 (unless (< p post-affiliated)
23278 (case type
23279 (comment
23280 (save-excursion
23281 (beginning-of-line)
23282 (looking-at "[ \t]*")
23283 (concat (match-string 0) "# ")))
23284 (footnote-definition "")
23285 ((item plain-list)
23286 (make-string (org-list-item-body-column post-affiliated) ?\s))
23287 (paragraph
23288 ;; Fill prefix is usually the same as the current line,
23289 ;; unless the paragraph is at the beginning of an item.
23290 (let ((parent (org-element-property :parent element)))
23291 (save-excursion
23292 (beginning-of-line)
23293 (cond ((eq (org-element-type parent) 'item)
23294 (make-string (org-list-item-body-column
23295 (org-element-property :begin parent))
23296 ?\s))
23297 ((and adaptive-fill-regexp
23298 ;; Locally disable
23299 ;; `adaptive-fill-function' to let
23300 ;; `fill-context-prefix' handle
23301 ;; `adaptive-fill-regexp' variable.
23302 (let (adaptive-fill-function)
23303 (fill-context-prefix
23304 post-affiliated
23305 (org-element-property :end element)))))
23306 ((looking-at "[ \t]+") (match-string 0))
23307 (t "")))))
23308 (comment-block
23309 ;; Only fill contents if P is within block boundaries.
23310 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23311 (forward-line)
23312 (point)))
23313 (cend (save-excursion
23314 (goto-char (org-element-property :end element))
23315 (skip-chars-backward " \r\t\n")
23316 (line-beginning-position))))
23317 (when (and (>= p cbeg) (< p cend))
23318 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23319 (match-string 0)
23320 "")))))))))))
23322 (declare-function message-goto-body "message" ())
23323 (defvar message-cite-prefix-regexp) ; From message.el
23324 (defun org-fill-paragraph (&optional justify)
23325 "Fill element at point, when applicable.
23327 This function only applies to comment blocks, comments, example
23328 blocks and paragraphs. Also, as a special case, re-align table
23329 when point is at one.
23331 If JUSTIFY is non-nil (interactively, with prefix argument),
23332 justify as well. If `sentence-end-double-space' is non-nil, then
23333 period followed by one space does not end a sentence, so don't
23334 break a line there. The variable `fill-column' controls the
23335 width for filling.
23337 For convenience, when point is at a plain list, an item or
23338 a footnote definition, try to fill the first paragraph within."
23339 (interactive)
23340 (if (and (derived-mode-p 'message-mode)
23341 (or (not (message-in-body-p))
23342 (save-excursion (move-beginning-of-line 1)
23343 (looking-at message-cite-prefix-regexp))))
23344 ;; First ensure filling is correct in message-mode.
23345 (let ((fill-paragraph-function
23346 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23347 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23348 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23349 (paragraph-separate
23350 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23351 (fill-paragraph nil))
23352 (with-syntax-table org-mode-transpose-word-syntax-table
23353 ;; Move to end of line in order to get the first paragraph
23354 ;; within a plain list or a footnote definition.
23355 (let ((element (save-excursion
23356 (end-of-line)
23357 (or (ignore-errors (org-element-at-point))
23358 (user-error "An element cannot be parsed line %d"
23359 (line-number-at-pos (point)))))))
23360 ;; First check if point is in a blank line at the beginning of
23361 ;; the buffer. In that case, ignore filling.
23362 (case (org-element-type element)
23363 ;; Use major mode filling function is src blocks.
23364 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23365 ;; Align Org tables, leave table.el tables as-is.
23366 (table-row (org-table-align) t)
23367 (table
23368 (when (eq (org-element-property :type element) 'org)
23369 (save-excursion
23370 (goto-char (org-element-property :post-affiliated element))
23371 (org-table-align)))
23373 (paragraph
23374 ;; Paragraphs may contain `line-break' type objects.
23375 (let ((beg (max (point-min)
23376 (org-element-property :contents-begin element)))
23377 (end (min (point-max)
23378 (org-element-property :contents-end element))))
23379 ;; Do nothing if point is at an affiliated keyword.
23380 (if (< (line-end-position) beg) t
23381 (when (derived-mode-p 'message-mode)
23382 ;; In `message-mode', do not fill following citation
23383 ;; in current paragraph nor text before message body.
23384 (let ((body-start (save-excursion (message-goto-body))))
23385 (when body-start (setq beg (max body-start beg))))
23386 (when (save-excursion
23387 (re-search-forward
23388 (concat "^" message-cite-prefix-regexp) end t))
23389 (setq end (match-beginning 0))))
23390 ;; Fill paragraph, taking line breaks into account.
23391 (save-excursion
23392 (goto-char beg)
23393 (let ((cuts (list beg)))
23394 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23395 (when (eq 'line-break
23396 (org-element-type
23397 (save-excursion (backward-char)
23398 (org-element-context))))
23399 (push (point) cuts)))
23400 (dolist (c (delq end cuts))
23401 (fill-region-as-paragraph c end justify)
23402 (setq end c))))
23403 t)))
23404 ;; Contents of `comment-block' type elements should be
23405 ;; filled as plain text, but only if point is within block
23406 ;; markers.
23407 (comment-block
23408 (let* ((case-fold-search t)
23409 (beg (save-excursion
23410 (goto-char (org-element-property :begin element))
23411 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23412 (forward-line)
23413 (point)))
23414 (end (save-excursion
23415 (goto-char (org-element-property :end element))
23416 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23417 (line-beginning-position))))
23418 (if (or (< (point) beg) (> (point) end)) t
23419 (fill-region-as-paragraph
23420 (save-excursion (end-of-line)
23421 (re-search-backward "^[ \t]*$" beg 'move)
23422 (line-beginning-position))
23423 (save-excursion (beginning-of-line)
23424 (re-search-forward "^[ \t]*$" end 'move)
23425 (line-beginning-position))
23426 justify))))
23427 ;; Fill comments.
23428 (comment
23429 (let ((begin (org-element-property :post-affiliated element))
23430 (end (org-element-property :end element)))
23431 (when (and (>= (point) begin) (<= (point) end))
23432 (let ((begin (save-excursion
23433 (end-of-line)
23434 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23435 (progn (forward-line) (point))
23436 begin)))
23437 (end (save-excursion
23438 (end-of-line)
23439 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23440 (1- (line-beginning-position))
23441 (skip-chars-backward " \r\t\n")
23442 (line-end-position)))))
23443 ;; Do not fill comments when at a blank line.
23444 (when (> end begin)
23445 (let ((fill-prefix
23446 (save-excursion
23447 (beginning-of-line)
23448 (looking-at "[ \t]*#")
23449 (let ((comment-prefix (match-string 0)))
23450 (goto-char (match-end 0))
23451 (if (looking-at adaptive-fill-regexp)
23452 (concat comment-prefix (match-string 0))
23453 (concat comment-prefix " "))))))
23454 (save-excursion
23455 (fill-region-as-paragraph begin end justify))))))
23457 ;; Ignore every other element.
23458 (otherwise t))))))
23460 (defun org-auto-fill-function ()
23461 "Auto-fill function."
23462 ;; Check if auto-filling is meaningful.
23463 (let ((fc (current-fill-column)))
23464 (when (and fc (> (current-column) fc))
23465 (let* ((fill-prefix (org-adaptive-fill-function))
23466 ;; Enforce empty fill prefix, if required. Otherwise, it
23467 ;; will be computed again.
23468 (adaptive-fill-mode (not (equal fill-prefix ""))))
23469 (when fill-prefix (do-auto-fill))))))
23471 (defun org-comment-line-break-function (&optional soft)
23472 "Break line at point and indent, continuing comment if within one.
23473 The inserted newline is marked hard if variable
23474 `use-hard-newlines' is true, unless optional argument SOFT is
23475 non-nil."
23476 (if soft (insert-and-inherit ?\n) (newline 1))
23477 (save-excursion (forward-char -1) (delete-horizontal-space))
23478 (delete-horizontal-space)
23479 (indent-to-left-margin)
23480 (insert-before-markers-and-inherit fill-prefix))
23483 ;;; Fixed Width Areas
23485 (defun org-toggle-fixed-width ()
23486 "Toggle fixed-width markup.
23488 Add or remove fixed-width markup on current line, whenever it
23489 makes sense. Return an error otherwise.
23491 If a region is active and if it contains only fixed-width areas
23492 or blank lines, remove all fixed-width markup in it. If the
23493 region contains anything else, convert all non-fixed-width lines
23494 to fixed-width ones.
23496 Blank lines at the end of the region are ignored unless the
23497 region only contains such lines."
23498 (interactive)
23499 (if (not (org-region-active-p))
23500 ;; No region:
23502 ;; Remove fixed width marker only in a fixed-with element.
23504 ;; Add fixed width maker in paragraphs, in blank lines after
23505 ;; elements or at the beginning of a headline or an inlinetask,
23506 ;; and before any one-line elements (e.g., a clock).
23507 (progn
23508 (beginning-of-line)
23509 (let* ((element (org-element-at-point))
23510 (type (org-element-type element)))
23511 (cond
23512 ((and (eq type 'fixed-width)
23513 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23514 (replace-match
23515 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23516 ((and (memq type '(babel-call clock comment diary-sexp headline
23517 horizontal-rule keyword paragraph
23518 planning))
23519 (<= (org-element-property :post-affiliated element) (point)))
23520 (skip-chars-forward " \t")
23521 (insert ": "))
23522 ((and (org-looking-at-p "[ \t]*$")
23523 (or (eq type 'inlinetask)
23524 (save-excursion
23525 (skip-chars-forward " \r\t\n")
23526 (<= (org-element-property :end element) (point)))))
23527 (delete-region (point) (line-end-position))
23528 (org-indent-line)
23529 (insert ": "))
23530 (t (user-error "Cannot insert a fixed-width line here")))))
23531 ;; Region active.
23532 (let* ((begin (save-excursion
23533 (goto-char (region-beginning))
23534 (line-beginning-position)))
23535 (end (copy-marker
23536 (save-excursion
23537 (goto-char (region-end))
23538 (unless (eolp) (beginning-of-line))
23539 (if (save-excursion (re-search-backward "\\S-" begin t))
23540 (progn (skip-chars-backward " \r\t\n") (point))
23541 (point)))))
23542 (all-fixed-width-p
23543 (catch 'not-all-p
23544 (save-excursion
23545 (goto-char begin)
23546 (skip-chars-forward " \r\t\n")
23547 (when (eobp) (throw 'not-all-p nil))
23548 (while (< (point) end)
23549 (let ((element (org-element-at-point)))
23550 (if (eq (org-element-type element) 'fixed-width)
23551 (goto-char (org-element-property :end element))
23552 (throw 'not-all-p nil))))
23553 t))))
23554 (if all-fixed-width-p
23555 (save-excursion
23556 (goto-char begin)
23557 (while (< (point) end)
23558 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23559 (replace-match
23560 "" nil nil nil
23561 (if (= (line-end-position) (match-end 0)) 0 1)))
23562 (forward-line)))
23563 (let ((min-ind (point-max)))
23564 ;; Find minimum indentation across all lines.
23565 (save-excursion
23566 (goto-char begin)
23567 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23568 (setq min-ind 0)
23569 (catch 'zerop
23570 (while (< (point) end)
23571 (unless (org-looking-at-p "[ \t]*$")
23572 (let ((ind (org-get-indentation)))
23573 (setq min-ind (min min-ind ind))
23574 (when (zerop ind) (throw 'zerop t))))
23575 (forward-line)))))
23576 ;; Loop over all lines and add fixed-width markup everywhere
23577 ;; but in fixed-width lines.
23578 (save-excursion
23579 (goto-char begin)
23580 (while (< (point) end)
23581 (cond
23582 ((org-at-heading-p)
23583 (insert ": ")
23584 (forward-line)
23585 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23586 (insert ":")
23587 (forward-line)))
23588 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23589 (let* ((element (org-element-at-point))
23590 (element-end (org-element-property :end element)))
23591 (if (eq (org-element-type element) 'fixed-width)
23592 (progn (goto-char element-end)
23593 (skip-chars-backward " \r\t\n")
23594 (forward-line))
23595 (let ((limit (min end element-end)))
23596 (while (< (point) limit)
23597 (org-move-to-column min-ind t)
23598 (insert ": ")
23599 (forward-line))))))
23601 (org-move-to-column min-ind t)
23602 (insert ": ")
23603 (forward-line)))))))
23604 (set-marker end nil))))
23607 ;;; Comments
23609 ;; Org comments syntax is quite complex. It requires the entire line
23610 ;; to be just a comment. Also, even with the right syntax at the
23611 ;; beginning of line, some some elements (i.e. verse-block or
23612 ;; example-block) don't accept comments. Usual Emacs comment commands
23613 ;; cannot cope with those requirements. Therefore, Org replaces them.
23615 ;; Org still relies on `comment-dwim', but cannot trust
23616 ;; `comment-only-p'. So, `comment-region-function' and
23617 ;; `uncomment-region-function' both point
23618 ;; to`org-comment-or-uncomment-region'. Eventually,
23619 ;; `org-insert-comment' takes care of insertion of comments at the
23620 ;; beginning of line.
23622 ;; `org-setup-comments-handling' install comments related variables
23623 ;; during `org-mode' initialization.
23625 (defun org-setup-comments-handling ()
23626 (interactive)
23627 (org-set-local 'comment-use-syntax nil)
23628 (org-set-local 'comment-start "# ")
23629 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23630 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23631 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23632 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23634 (defun org-insert-comment ()
23635 "Insert an empty comment above current line.
23636 If the line is empty, insert comment at its beginning. When
23637 point is within a source block, comment according to the related
23638 major mode."
23639 (if (let ((element (org-element-at-point)))
23640 (and (eq (org-element-type element) 'src-block)
23641 (< (save-excursion
23642 (goto-char (org-element-property :post-affiliated element))
23643 (line-end-position))
23644 (point))
23645 (> (save-excursion
23646 (goto-char (org-element-property :end element))
23647 (skip-chars-backward " \r\t\n")
23648 (line-beginning-position))
23649 (point))))
23650 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23651 (beginning-of-line)
23652 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23653 (open-line 1))
23654 (org-indent-line)
23655 (insert "# ")))
23657 (defvar comment-empty-lines) ; From newcomment.el.
23658 (defun org-comment-or-uncomment-region (beg end &rest _)
23659 "Comment or uncomment each non-blank line in the region.
23660 Uncomment each non-blank line between BEG and END if it only
23661 contains commented lines. Otherwise, comment them. If region is
23662 strictly within a source block, use appropriate comment syntax."
23663 (if (let ((element (org-element-at-point)))
23664 (and (eq (org-element-type element) 'src-block)
23665 (< (save-excursion
23666 (goto-char (org-element-property :post-affiliated element))
23667 (line-end-position))
23668 beg)
23669 (>= (save-excursion
23670 (goto-char (org-element-property :end element))
23671 (skip-chars-backward " \r\t\n")
23672 (line-beginning-position))
23673 end)))
23674 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23675 (save-restriction
23676 ;; Restrict region
23677 (narrow-to-region (save-excursion (goto-char beg)
23678 (skip-chars-forward " \r\t\n" end)
23679 (line-beginning-position))
23680 (save-excursion (goto-char end)
23681 (skip-chars-backward " \r\t\n" beg)
23682 (line-end-position)))
23683 (let ((uncommentp
23684 ;; UNCOMMENTP is non-nil when every non blank line between
23685 ;; BEG and END is a comment.
23686 (save-excursion
23687 (goto-char (point-min))
23688 (while (and (not (eobp))
23689 (let ((element (org-element-at-point)))
23690 (and (eq (org-element-type element) 'comment)
23691 (goto-char (min (point-max)
23692 (org-element-property
23693 :end element)))))))
23694 (eobp))))
23695 (if uncommentp
23696 ;; Only blank lines and comments in region: uncomment it.
23697 (save-excursion
23698 (goto-char (point-min))
23699 (while (not (eobp))
23700 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23701 (replace-match "" nil nil nil 1))
23702 (forward-line)))
23703 ;; Comment each line in region.
23704 (let ((min-indent (point-max)))
23705 ;; First find the minimum indentation across all lines.
23706 (save-excursion
23707 (goto-char (point-min))
23708 (while (and (not (eobp)) (not (zerop min-indent)))
23709 (unless (looking-at "[ \t]*$")
23710 (setq min-indent (min min-indent (current-indentation))))
23711 (forward-line)))
23712 ;; Then loop over all lines.
23713 (save-excursion
23714 (goto-char (point-min))
23715 (while (not (eobp))
23716 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23717 ;; Don't get fooled by invisible text (e.g. link path)
23718 ;; when moving to column MIN-INDENT.
23719 (let ((buffer-invisibility-spec nil))
23720 (org-move-to-column min-indent t))
23721 (insert comment-start))
23722 (forward-line)))))))))
23724 (defun org-comment-dwim (arg)
23725 "Call `comment-dwim' within a source edit buffer if needed."
23726 (interactive "*P")
23727 (if (org-in-src-block-p)
23728 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23729 (call-interactively 'comment-dwim)))
23732 ;;; Timestamps API
23734 ;; This section contains tools to operate on timestamp objects, as
23735 ;; returned by, e.g. `org-element-context'.
23737 (defun org-timestamp--to-internal-time (timestamp &optional end)
23738 "Encode TIMESTAMP object into Emacs internal time.
23739 Use end of date range or time range when END is non-nil."
23740 (apply #'encode-time
23741 (cons 0
23742 (mapcar
23743 (lambda (prop) (or (org-element-property prop timestamp) 0))
23744 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23745 '(:minute-start :hour-start :day-start :month-start
23746 :year-start))))))
23748 (defun org-timestamp-has-time-p (timestamp)
23749 "Non-nil when TIMESTAMP has a time specified."
23750 (org-element-property :hour-start timestamp))
23752 (defun org-timestamp-format (timestamp format &optional end utc)
23753 "Format a TIMESTAMP object into a string.
23755 FORMAT is a format specifier to be passed to
23756 `format-time-string'.
23758 When optional argument END is non-nil, use end of date-range or
23759 time-range, if possible.
23761 When optional argument UTC is non-nil, time will be expressed as
23762 Universal Time."
23763 (format-time-string
23764 format (org-timestamp--to-internal-time timestamp end) utc))
23766 (defun org-timestamp-split-range (timestamp &optional end)
23767 "Extract a TIMESTAMP object from a date or time range.
23769 END, when non-nil, means extract the end of the range.
23770 Otherwise, extract its start.
23772 Return a new timestamp object."
23773 (let ((type (org-element-property :type timestamp)))
23774 (if (memq type '(active inactive diary)) timestamp
23775 (let ((split-ts (org-element-copy timestamp)))
23776 ;; Set new type.
23777 (org-element-put-property
23778 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23779 ;; Copy start properties over end properties if END is
23780 ;; non-nil. Otherwise, copy end properties over `start' ones.
23781 (let ((p-alist '((:minute-start . :minute-end)
23782 (:hour-start . :hour-end)
23783 (:day-start . :day-end)
23784 (:month-start . :month-end)
23785 (:year-start . :year-end))))
23786 (dolist (p-cell p-alist)
23787 (org-element-put-property
23788 split-ts
23789 (funcall (if end #'car #'cdr) p-cell)
23790 (org-element-property
23791 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23792 ;; Eventually refresh `:raw-value'.
23793 (org-element-put-property split-ts :raw-value nil)
23794 (org-element-put-property
23795 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23797 (defun org-timestamp-translate (timestamp &optional boundary)
23798 "Translate TIMESTAMP object to custom format.
23800 Format string is defined in `org-time-stamp-custom-formats',
23801 which see.
23803 When optional argument BOUNDARY is non-nil, it is either the
23804 symbol `start' or `end'. In this case, only translate the
23805 starting or ending part of TIMESTAMP if it is a date or time
23806 range. Otherwise, translate both parts.
23808 Return timestamp as-is if `org-display-custom-times' is nil or if
23809 it has a `diary' type."
23810 (let ((type (org-element-property :type timestamp)))
23811 (if (or (not org-display-custom-times) (eq type 'diary))
23812 (org-element-interpret-data timestamp)
23813 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23814 org-time-stamp-custom-formats)))
23815 (if (and (not boundary) (memq type '(active-range inactive-range)))
23816 (concat (org-timestamp-format timestamp fmt)
23817 "--"
23818 (org-timestamp-format timestamp fmt t))
23819 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23823 ;;; Other stuff.
23825 (defvar reftex-docstruct-symbol)
23826 (defvar reftex-cite-format)
23827 (defvar org--rds)
23829 (defun org-reftex-citation ()
23830 "Use reftex-citation to insert a citation into the buffer.
23831 This looks for a line like
23833 #+BIBLIOGRAPHY: foo plain option:-d
23835 and derives from it that foo.bib is the bibliography file relevant
23836 for this document. It then installs the necessary environment for RefTeX
23837 to work in this buffer and calls `reftex-citation' to insert a citation
23838 into the buffer.
23840 Export of such citations to both LaTeX and HTML is handled by the contributed
23841 package ox-bibtex by Taru Karttunen."
23842 (interactive)
23843 (let ((reftex-docstruct-symbol 'org--rds)
23844 (reftex-cite-format "\\cite{%l}")
23845 org--rds bib)
23846 (save-excursion
23847 (save-restriction
23848 (widen)
23849 (let ((case-fold-search t)
23850 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23851 (if (not (save-excursion
23852 (or (re-search-forward re nil t)
23853 (re-search-backward re nil t))))
23854 (user-error "No bibliography defined in file")
23855 (setq bib (concat (match-string 1) ".bib")
23856 org--rds (list (list 'bib bib)))))))
23857 (call-interactively 'reftex-citation)))
23859 ;;;; Functions extending outline functionality
23861 (defun org-beginning-of-line (&optional arg)
23862 "Go to the beginning of the current line. If that is invisible, continue
23863 to a visible line beginning. This makes the function of C-a more intuitive.
23864 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23865 first attempt, and only move to after the tags when the cursor is already
23866 beyond the end of the headline."
23867 (interactive "P")
23868 (let ((pos (point))
23869 (special (if (consp org-special-ctrl-a/e)
23870 (car org-special-ctrl-a/e)
23871 org-special-ctrl-a/e))
23872 deactivate-mark refpos)
23873 (if (org-bound-and-true-p visual-line-mode)
23874 (beginning-of-visual-line 1)
23875 (beginning-of-line 1))
23876 (if (and arg (fboundp 'move-beginning-of-line))
23877 (call-interactively 'move-beginning-of-line)
23878 (if (bobp)
23880 (backward-char 1)
23881 (if (org-truely-invisible-p)
23882 (while (and (not (bobp)) (org-truely-invisible-p))
23883 (backward-char 1)
23884 (beginning-of-line 1))
23885 (forward-char 1))))
23886 (when special
23887 (cond
23888 ((and (looking-at org-complex-heading-regexp)
23889 (eq (char-after (match-end 1)) ?\s))
23890 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23891 (point-at-eol)))
23892 (goto-char
23893 (if (eq special t)
23894 (cond ((> pos refpos) refpos)
23895 ((= pos (point)) refpos)
23896 (t (point)))
23897 (cond ((> pos (point)) (point))
23898 ((not (eq last-command this-command)) (point))
23899 (t refpos)))))
23900 ((org-at-item-p)
23901 ;; Being at an item and not looking at an the item means point
23902 ;; was previously moved to beginning of a visual line, which
23903 ;; doesn't contain the item. Therefore, do nothing special,
23904 ;; just stay here.
23905 (when (looking-at org-list-full-item-re)
23906 ;; Set special position at first white space character after
23907 ;; bullet, and check-box, if any.
23908 (let ((after-bullet
23909 (let ((box (match-end 3)))
23910 (if (not box) (match-end 1)
23911 (let ((after (char-after box)))
23912 (if (and after (= after ? )) (1+ box) box))))))
23913 ;; Special case: Move point to special position when
23914 ;; currently after it or at beginning of line.
23915 (if (eq special t)
23916 (when (or (> pos after-bullet) (= (point) pos))
23917 (goto-char after-bullet))
23918 ;; Reversed case: Move point to special position when
23919 ;; point was already at beginning of line and command is
23920 ;; repeated.
23921 (when (and (= (point) pos) (eq last-command this-command))
23922 (goto-char after-bullet))))))))
23923 (org-no-warnings
23924 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23925 (setq disable-point-adjustment
23926 (or (not (invisible-p (point)))
23927 (not (invisible-p (max (point-min) (1- (point))))))))
23929 (defun org-end-of-line (&optional arg)
23930 "Go to the end of the line.
23931 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23932 tags on the first attempt, and only move to after the tags when
23933 the cursor is already beyond the end of the headline."
23934 (interactive "P")
23935 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23936 org-special-ctrl-a/e))
23937 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23938 'end-of-visual-line)
23939 ((fboundp 'move-end-of-line) 'move-end-of-line)
23940 (t 'end-of-line)))
23941 deactivate-mark)
23942 (if (or (not special) arg) (call-interactively move-fun)
23943 (let* ((element (save-excursion (beginning-of-line)
23944 (org-element-at-point)))
23945 (type (org-element-type element)))
23946 (cond
23947 ((memq type '(headline inlinetask))
23948 (let ((pos (point)))
23949 (beginning-of-line 1)
23950 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23951 (if (eq special t)
23952 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23953 (goto-char (match-beginning 1))
23954 (goto-char (match-end 0)))
23955 (if (or (< pos (match-end 0))
23956 (not (eq this-command last-command)))
23957 (goto-char (match-end 0))
23958 (goto-char (match-beginning 1))))
23959 (call-interactively move-fun))))
23960 ((outline-invisible-p (line-end-position))
23961 ;; If element is hidden, `move-end-of-line' would put point
23962 ;; after it. Use `end-of-line' to stay on current line.
23963 (call-interactively 'end-of-line))
23964 (t (call-interactively move-fun)))))
23965 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23966 (setq disable-point-adjustment
23967 (or (not (invisible-p (point)))
23968 (not (invisible-p (max (point-min) (1- (point))))))))
23970 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23971 (define-key org-mode-map "\C-e" 'org-end-of-line)
23973 (defun org-backward-sentence (&optional _arg)
23974 "Go to beginning of sentence, or beginning of table field.
23975 This will call `backward-sentence' or `org-table-beginning-of-field',
23976 depending on context."
23977 (interactive)
23978 (let* ((element (org-element-at-point))
23979 (contents-begin (org-element-property :contents-begin element))
23980 (table (org-element-lineage element '(table) t)))
23981 (if (and table
23982 (> (point) contents-begin)
23983 (<= (point) (org-element-property :contents-end table)))
23984 (call-interactively #'org-table-beginning-of-field)
23985 (save-restriction
23986 (when (and contents-begin
23987 (< (point-min) contents-begin)
23988 (> (point) contents-begin))
23989 (narrow-to-region contents-begin
23990 (org-element-property :contents-end element)))
23991 (call-interactively #'backward-sentence)))))
23993 (defun org-forward-sentence (&optional _arg)
23994 "Go to end of sentence, or end of table field.
23995 This will call `forward-sentence' or `org-table-end-of-field',
23996 depending on context."
23997 (interactive)
23998 (let* ((element (org-element-at-point))
23999 (contents-end (org-element-property :contents-end element))
24000 (table (org-element-lineage element '(table) t)))
24001 (if (and table
24002 (>= (point) (org-element-property :contents-begin table))
24003 (< (point) contents-end))
24004 (call-interactively #'org-table-end-of-field)
24005 (save-restriction
24006 (when (and contents-end
24007 (> (point-max) contents-end)
24008 ;; Skip blank lines between elements.
24009 (< (org-element-property :end element)
24010 (save-excursion (goto-char contents-end)
24011 (skip-chars-forward " \r\t\n"))))
24012 (narrow-to-region (org-element-property :contents-begin element)
24013 contents-end))
24014 (call-interactively #'forward-sentence)))))
24016 (define-key org-mode-map "\M-a" 'org-backward-sentence)
24017 (define-key org-mode-map "\M-e" 'org-forward-sentence)
24019 (defun org-kill-line (&optional _arg)
24020 "Kill line, to tags or end of line."
24021 (interactive)
24022 (cond
24023 ((or (not org-special-ctrl-k)
24024 (bolp)
24025 (not (org-at-heading-p)))
24026 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
24027 org-ctrl-k-protect-subtree)
24028 (if (or (eq org-ctrl-k-protect-subtree 'error)
24029 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
24030 (user-error "C-k aborted as it would kill a hidden subtree")))
24031 (call-interactively
24032 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
24033 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
24034 (kill-region (point) (match-beginning 1))
24035 (org-set-tags nil t))
24036 (t (kill-region (point) (point-at-eol)))))
24038 (define-key org-mode-map "\C-k" 'org-kill-line)
24040 (defun org-yank (&optional arg)
24041 "Yank. If the kill is a subtree, treat it specially.
24042 This command will look at the current kill and check if is a single
24043 subtree, or a series of subtrees[1]. If it passes the test, and if the
24044 cursor is at the beginning of a line or after the stars of a currently
24045 empty headline, then the yank is handled specially. How exactly depends
24046 on the value of the following variables, both set by default.
24048 `org-yank-folded-subtrees'
24049 When set, the subtree(s) will be folded after insertion, but only
24050 if doing so would now swallow text after the yanked text.
24052 `org-yank-adjusted-subtrees'
24053 When set, the subtree will be promoted or demoted in order to
24054 fit into the local outline tree structure, which means that the
24055 level will be adjusted so that it becomes the smaller one of the
24056 two *visible* surrounding headings.
24058 Any prefix to this command will cause `yank' to be called directly with
24059 no special treatment. In particular, a simple \\[universal-argument] prefix \
24060 will just
24061 plainly yank the text as it is.
24063 \[1] The test checks if the first non-white line is a heading
24064 and if there are no other headings with fewer stars."
24065 (interactive "P")
24066 (org-yank-generic 'yank arg))
24068 (defun org-yank-generic (command arg)
24069 "Perform some yank-like command.
24071 This function implements the behavior described in the `org-yank'
24072 documentation. However, it has been generalized to work for any
24073 interactive command with similar behavior."
24075 ;; pretend to be command COMMAND
24076 (setq this-command command)
24078 (if arg
24079 (call-interactively command)
24081 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24082 (and (org-kill-is-subtree-p)
24083 (or (bolp)
24084 (and (looking-at "[ \t]*$")
24085 (string-match
24086 "\\`\\*+\\'"
24087 (buffer-substring (point-at-bol) (point)))))))
24088 swallowp)
24089 (cond
24090 ((and subtreep org-yank-folded-subtrees)
24091 (let ((beg (point))
24092 end)
24093 (if (and subtreep org-yank-adjusted-subtrees)
24094 (org-paste-subtree nil nil 'for-yank)
24095 (call-interactively command))
24097 (setq end (point))
24098 (goto-char beg)
24099 (when (and (bolp) subtreep
24100 (not (setq swallowp
24101 (org-yank-folding-would-swallow-text beg end))))
24102 (org-with-limited-levels
24103 (or (looking-at org-outline-regexp)
24104 (re-search-forward org-outline-regexp-bol end t))
24105 (while (and (< (point) end) (looking-at org-outline-regexp))
24106 (hide-subtree)
24107 (org-cycle-show-empty-lines 'folded)
24108 (condition-case nil
24109 (outline-forward-same-level 1)
24110 (error (goto-char end))))))
24111 (when swallowp
24112 (message
24113 "Inserted text not folded because that would swallow text"))
24115 (goto-char end)
24116 (skip-chars-forward " \t\n\r")
24117 (beginning-of-line 1)
24118 (push-mark beg 'nomsg)))
24119 ((and subtreep org-yank-adjusted-subtrees)
24120 (let ((beg (point-at-bol)))
24121 (org-paste-subtree nil nil 'for-yank)
24122 (push-mark beg 'nomsg)))
24124 (call-interactively command))))))
24126 (defun org-yank-folding-would-swallow-text (beg end)
24127 "Would hide-subtree at BEG swallow any text after END?"
24128 (let (level)
24129 (org-with-limited-levels
24130 (save-excursion
24131 (goto-char beg)
24132 (when (or (looking-at org-outline-regexp)
24133 (re-search-forward org-outline-regexp-bol end t))
24134 (setq level (org-outline-level)))
24135 (goto-char end)
24136 (skip-chars-forward " \t\r\n\v\f")
24137 (if (or (eobp)
24138 (and (bolp) (looking-at org-outline-regexp)
24139 (<= (org-outline-level) level)))
24140 nil ; Nothing would be swallowed
24141 t))))) ; something would swallow
24143 (define-key org-mode-map "\C-y" 'org-yank)
24145 (defun org-truely-invisible-p ()
24146 "Check if point is at a character currently not visible.
24147 This version does not only check the character property, but also
24148 `visible-mode'."
24149 ;; Early versions of noutline don't have `outline-invisible-p'.
24150 (if (org-bound-and-true-p visible-mode)
24152 (outline-invisible-p)))
24154 (defun org-invisible-p2 ()
24155 "Check if point is at a character currently not visible."
24156 (save-excursion
24157 (if (and (eolp) (not (bobp))) (backward-char 1))
24158 ;; Early versions of noutline don't have `outline-invisible-p'.
24159 (outline-invisible-p)))
24161 (defun org-back-to-heading (&optional invisible-ok)
24162 "Call `outline-back-to-heading', but provide a better error message."
24163 (condition-case nil
24164 (outline-back-to-heading invisible-ok)
24165 (error (error "Before first headline at position %d in buffer %s"
24166 (point) (current-buffer)))))
24168 (defun org-before-first-heading-p ()
24169 "Before first heading?"
24170 (save-excursion
24171 (end-of-line)
24172 (null (re-search-backward org-outline-regexp-bol nil t))))
24174 (defun org-at-heading-p (&optional ignored)
24175 (outline-on-heading-p t))
24176 ;; Compatibility alias with Org versions < 7.8.03
24177 (defalias 'org-on-heading-p 'org-at-heading-p)
24179 (defun org-in-commented-heading-p (&optional no-inheritance)
24180 "Non-nil if point is under a commented heading.
24181 This function also checks ancestors of the current headline,
24182 unless optional argument NO-INHERITANCE is non-nil."
24183 (cond
24184 ((org-before-first-heading-p) nil)
24185 ((let ((headline (nth 4 (org-heading-components))))
24186 (and headline
24187 (let ((case-fold-search nil))
24188 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24189 headline)))))
24190 (no-inheritance nil)
24192 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24194 (defun org-at-comment-p nil
24195 "Is cursor in a commented line?"
24196 (save-excursion
24197 (save-match-data
24198 (beginning-of-line)
24199 (looking-at "^[ \t]*# "))))
24201 (defun org-at-drawer-p nil
24202 "Is cursor at a drawer keyword?"
24203 (save-excursion
24204 (move-beginning-of-line 1)
24205 (looking-at org-drawer-regexp)))
24207 (defun org-at-block-p nil
24208 "Is cursor at a block keyword?"
24209 (save-excursion
24210 (move-beginning-of-line 1)
24211 (looking-at org-block-regexp)))
24213 (defun org-point-at-end-of-empty-headline ()
24214 "If point is at the end of an empty headline, return t, else nil.
24215 If the heading only contains a TODO keyword, it is still still considered
24216 empty."
24217 (and (looking-at "[ \t]*$")
24218 (when org-todo-line-regexp
24219 (save-excursion
24220 (beginning-of-line 1)
24221 (let ((case-fold-search nil))
24222 (looking-at org-todo-line-regexp)
24223 (string= (match-string 3) ""))))))
24225 (defun org-at-heading-or-item-p ()
24226 (or (org-at-heading-p) (org-at-item-p)))
24228 (defun org-at-target-p ()
24229 (or (org-in-regexp org-radio-target-regexp)
24230 (org-in-regexp org-target-regexp)))
24231 ;; Compatibility alias with Org versions < 7.8.03
24232 (defalias 'org-on-target-p 'org-at-target-p)
24234 (defun org-up-heading-all (arg)
24235 "Move to the heading line of which the present line is a subheading.
24236 This function considers both visible and invisible heading lines.
24237 With argument, move up ARG levels."
24238 (if (fboundp 'outline-up-heading-all)
24239 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24240 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24242 (defun org-up-heading-safe ()
24243 "Move to the heading line of which the present line is a subheading.
24244 This version will not throw an error. It will return the level of the
24245 headline found, or nil if no higher level is found.
24247 Also, this function will be a lot faster than `outline-up-heading',
24248 because it relies on stars being the outline starters. This can really
24249 make a significant difference in outlines with very many siblings."
24250 (when (ignore-errors (org-back-to-heading t))
24251 (let ((level-up (1- (funcall outline-level))))
24252 (and (> level-up 0)
24253 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24254 (funcall outline-level)))))
24256 (defun org-first-sibling-p ()
24257 "Is this heading the first child of its parents?"
24258 (interactive)
24259 (let ((re org-outline-regexp-bol)
24260 level l)
24261 (unless (org-at-heading-p t)
24262 (user-error "Not at a heading"))
24263 (setq level (funcall outline-level))
24264 (save-excursion
24265 (if (not (re-search-backward re nil t))
24267 (setq l (funcall outline-level))
24268 (< l level)))))
24270 (defun org-goto-sibling (&optional previous)
24271 "Goto the next sibling, even if it is invisible.
24272 When PREVIOUS is set, go to the previous sibling instead. Returns t
24273 when a sibling was found. When none is found, return nil and don't
24274 move point."
24275 (let ((fun (if previous 're-search-backward 're-search-forward))
24276 (pos (point))
24277 (re org-outline-regexp-bol)
24278 level l)
24279 (when (ignore-errors (org-back-to-heading t))
24280 (setq level (funcall outline-level))
24281 (catch 'exit
24282 (or previous (forward-char 1))
24283 (while (funcall fun re nil t)
24284 (setq l (funcall outline-level))
24285 (when (< l level) (goto-char pos) (throw 'exit nil))
24286 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24287 (goto-char pos)
24288 nil))))
24290 (defun org-show-siblings ()
24291 "Show all siblings of the current headline."
24292 (save-excursion
24293 (while (org-goto-sibling) (org-flag-heading nil)))
24294 (save-excursion
24295 (while (org-goto-sibling 'previous)
24296 (org-flag-heading nil))))
24298 (defun org-goto-first-child ()
24299 "Goto the first child, even if it is invisible.
24300 Return t when a child was found. Otherwise don't move point and
24301 return nil."
24302 (let (level (pos (point)) (re org-outline-regexp-bol))
24303 (when (ignore-errors (org-back-to-heading t))
24304 (setq level (outline-level))
24305 (forward-char 1)
24306 (if (and (re-search-forward re nil t) (> (outline-level) level))
24307 (progn (goto-char (match-beginning 0)) t)
24308 (goto-char pos) nil))))
24310 (defun org-show-hidden-entry ()
24311 "Show an entry where even the heading is hidden."
24312 (save-excursion
24313 (org-show-entry)))
24315 (defun org-flag-heading (flag &optional entry)
24316 "Flag the current heading. FLAG non-nil means make invisible.
24317 When ENTRY is non-nil, show the entire entry."
24318 (save-excursion
24319 (org-back-to-heading t)
24320 ;; Check if we should show the entire entry
24321 (if entry
24322 (progn
24323 (org-show-entry)
24324 (save-excursion
24325 (and (outline-next-heading)
24326 (org-flag-heading nil))))
24327 (outline-flag-region (max (point-min) (1- (point)))
24328 (save-excursion (outline-end-of-heading) (point))
24329 flag))))
24331 (defun org-get-next-sibling ()
24332 "Move to next heading of the same level, and return point.
24333 If there is no such heading, return nil.
24334 This is like outline-next-sibling, but invisible headings are ok."
24335 (let ((level (funcall outline-level)))
24336 (outline-next-heading)
24337 (while (and (not (eobp)) (> (funcall outline-level) level))
24338 (outline-next-heading))
24339 (if (or (eobp) (< (funcall outline-level) level))
24341 (point))))
24343 (defun org-get-last-sibling ()
24344 "Move to previous heading of the same level, and return point.
24345 If there is no such heading, return nil."
24346 (let ((opoint (point))
24347 (level (funcall outline-level)))
24348 (outline-previous-heading)
24349 (when (and (/= (point) opoint) (outline-on-heading-p t))
24350 (while (and (> (funcall outline-level) level)
24351 (not (bobp)))
24352 (outline-previous-heading))
24353 (if (< (funcall outline-level) level)
24355 (point)))))
24357 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24358 "Goto to the end of a subtree."
24359 ;; This contains an exact copy of the original function, but it uses
24360 ;; `org-back-to-heading', to make it work also in invisible
24361 ;; trees. And is uses an invisible-ok argument.
24362 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24363 ;; Furthermore, when used inside Org, finding the end of a large subtree
24364 ;; with many children and grandchildren etc, this can be much faster
24365 ;; than the outline version.
24366 (org-back-to-heading invisible-ok)
24367 (let ((first t)
24368 (level (funcall outline-level)))
24369 (if (and (derived-mode-p 'org-mode) (< level 1000))
24370 ;; A true heading (not a plain list item), in Org-mode
24371 ;; This means we can easily find the end by looking
24372 ;; only for the right number of stars. Using a regexp to do
24373 ;; this is so much faster than using a Lisp loop.
24374 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24375 (forward-char 1)
24376 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24377 ;; something else, do it the slow way
24378 (while (and (not (eobp))
24379 (or first (> (funcall outline-level) level)))
24380 (setq first nil)
24381 (outline-next-heading)))
24382 (unless to-heading
24383 (if (memq (preceding-char) '(?\n ?\^M))
24384 (progn
24385 ;; Go to end of line before heading
24386 (forward-char -1)
24387 (if (memq (preceding-char) '(?\n ?\^M))
24388 ;; leave blank line before heading
24389 (forward-char -1))))))
24390 (point))
24392 (defun org-end-of-meta-data (&optional full)
24393 "Skip planning line and properties drawer in current entry.
24394 When optional argument FULL is non-nil, also skip empty lines,
24395 clocking lines and regular drawers at the beginning of the
24396 entry."
24397 (org-back-to-heading t)
24398 (forward-line)
24399 (when (org-looking-at-p org-planning-line-re) (forward-line))
24400 (when (looking-at org-property-drawer-re)
24401 (goto-char (match-end 0))
24402 (forward-line))
24403 (when (and full (not (org-at-heading-p)))
24404 (catch 'exit
24405 (let ((end (save-excursion (outline-next-heading) (point)))
24406 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24407 (while (not (eobp))
24408 (cond ((org-looking-at-p org-drawer-regexp)
24409 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24410 (forward-line)
24411 (throw 'exit t)))
24412 ((org-looking-at-p re) (forward-line))
24413 (t (throw 'exit t))))))))
24415 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24416 "Move forward to the ARG'th subheading at same level as this one.
24417 Stop at the first and last subheadings of a superior heading.
24418 Normally this only looks at visible headings, but when INVISIBLE-OK is
24419 non-nil it will also look at invisible ones."
24420 (interactive "p")
24421 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24422 (if (and arg (< arg 0))
24423 (goto-char (point-min))
24424 (outline-next-heading))
24425 (org-at-heading-p)
24426 (let ((level (- (match-end 0) (match-beginning 0) 1))
24427 (f (if (and arg (< arg 0))
24428 're-search-backward
24429 're-search-forward))
24430 (count (if arg (abs arg) 1))
24431 (result (point)))
24432 (while (and (prog1 (> count 0)
24433 (forward-char (if (and arg (< arg 0)) -1 1)))
24434 (funcall f org-outline-regexp-bol nil 'move))
24435 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24436 (cond ((< l level) (setq count 0))
24437 ((and (= l level)
24438 (or invisible-ok
24439 (progn
24440 (goto-char (line-beginning-position))
24441 (not (outline-invisible-p)))))
24442 (setq count (1- count))
24443 (when (eq l level)
24444 (setq result (point)))))))
24445 (goto-char result))
24446 (beginning-of-line 1)))
24448 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24449 "Move backward to the ARG'th subheading at same level as this one.
24450 Stop at the first and last subheadings of a superior heading."
24451 (interactive "p")
24452 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24454 (defun org-next-visible-heading (arg)
24455 "Move to the next visible heading.
24457 This function wraps `outline-next-visible-heading' with
24458 `org-with-limited-levels' in order to skip over inline tasks and
24459 respect customization of `org-odd-levels-only'."
24460 (interactive "p")
24461 (org-with-limited-levels
24462 (outline-next-visible-heading arg)))
24464 (defun org-previous-visible-heading (arg)
24465 "Move to the next visible heading.
24467 This function wraps `outline-previous-visible-heading' with
24468 `org-with-limited-levels' in order to skip over inline tasks and
24469 respect customization of `org-odd-levels-only'."
24470 (interactive "p")
24471 (org-with-limited-levels
24472 (outline-previous-visible-heading arg)))
24474 (defun org-next-block (arg &optional backward block-regexp)
24475 "Jump to the next block.
24477 With a prefix argument ARG, jump forward ARG many blocks.
24479 When BACKWARD is non-nil, jump to the previous block.
24481 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24482 Match data is set according to this regexp when the function
24483 returns.
24485 Return point at beginning of the opening line of found block.
24486 Throw an error if no block is found."
24487 (interactive "p")
24488 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24489 (case-fold-search t)
24490 (search-fn (if backward #'re-search-backward #'re-search-forward))
24491 (count (or arg 1))
24492 (origin (point))
24493 last-element)
24494 (if backward (beginning-of-line) (end-of-line))
24495 (while (and (> count 0) (funcall search-fn re nil t))
24496 (let ((element (save-excursion
24497 (goto-char (match-beginning 0))
24498 (save-match-data (org-element-at-point)))))
24499 (when (and (memq (org-element-type element)
24500 '(center-block comment-block dynamic-block
24501 example-block export-block quote-block
24502 special-block src-block verse-block))
24503 (<= (match-beginning 0)
24504 (org-element-property :post-affiliated element)))
24505 (setq last-element element)
24506 (decf count))))
24507 (if (= count 0)
24508 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24509 (save-match-data (org-show-context)))
24510 (goto-char origin)
24511 (user-error "No %s code blocks" (if backward "previous" "further")))))
24513 (defun org-previous-block (arg &optional block-regexp)
24514 "Jump to the previous block.
24515 With a prefix argument ARG, jump backward ARG many source blocks.
24516 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24517 (interactive "p")
24518 (org-next-block arg t block-regexp))
24520 (defun org-forward-paragraph ()
24521 "Move forward to beginning of next paragraph or equivalent.
24523 The function moves point to the beginning of the next visible
24524 structural element, which can be a paragraph, a table, a list
24525 item, etc. It also provides some special moves for convenience:
24527 - On an affiliated keyword, jump to the beginning of the
24528 relative element.
24529 - On an item or a footnote definition, move to the second
24530 element inside, if any.
24531 - On a table or a property drawer, jump after it.
24532 - On a verse or source block, stop after blank lines."
24533 (interactive)
24534 (when (eobp) (user-error "Cannot move further down"))
24535 (let* ((deactivate-mark nil)
24536 (element (org-element-at-point))
24537 (type (org-element-type element))
24538 (post-affiliated (org-element-property :post-affiliated element))
24539 (contents-begin (org-element-property :contents-begin element))
24540 (contents-end (org-element-property :contents-end element))
24541 (end (let ((end (org-element-property :end element)) (parent element))
24542 (while (and (setq parent (org-element-property :parent parent))
24543 (= (org-element-property :contents-end parent) end))
24544 (setq end (org-element-property :end parent)))
24545 end)))
24546 (cond ((not element)
24547 (skip-chars-forward " \r\t\n")
24548 (or (eobp) (beginning-of-line)))
24549 ;; On affiliated keywords, move to element's beginning.
24550 ((< (point) post-affiliated)
24551 (goto-char post-affiliated))
24552 ;; At a table row, move to the end of the table. Similarly,
24553 ;; at a node property, move to the end of the property
24554 ;; drawer.
24555 ((memq type '(node-property table-row))
24556 (goto-char (org-element-property
24557 :end (org-element-property :parent element))))
24558 ((memq type '(property-drawer table)) (goto-char end))
24559 ;; Consider blank lines as separators in verse and source
24560 ;; blocks to ease editing.
24561 ((memq type '(src-block verse-block))
24562 (when (eq type 'src-block)
24563 (setq contents-end
24564 (save-excursion (goto-char end)
24565 (skip-chars-backward " \r\t\n")
24566 (line-beginning-position))))
24567 (beginning-of-line)
24568 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24569 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24570 (goto-char end)
24571 (skip-chars-forward " \r\t\n")
24572 (if (= (point) contents-end) (goto-char end)
24573 (beginning-of-line))))
24574 ;; With no contents, just skip element.
24575 ((not contents-begin) (goto-char end))
24576 ;; If contents are invisible, skip the element altogether.
24577 ((outline-invisible-p (line-end-position))
24578 (case type
24579 (headline
24580 (org-with-limited-levels (outline-next-visible-heading 1)))
24581 ;; At a plain list, make sure we move to the next item
24582 ;; instead of skipping the whole list.
24583 (plain-list (forward-char)
24584 (org-forward-paragraph))
24585 (otherwise (goto-char end))))
24586 ((>= (point) contents-end) (goto-char end))
24587 ((>= (point) contents-begin)
24588 ;; This can only happen on paragraphs and plain lists.
24589 (case type
24590 (paragraph (goto-char end))
24591 ;; At a plain list, try to move to second element in
24592 ;; first item, if possible.
24593 (plain-list (end-of-line)
24594 (org-forward-paragraph))))
24595 ;; When contents start on the middle of a line (e.g. in
24596 ;; items and footnote definitions), try to reach first
24597 ;; element starting after current line.
24598 ((> (line-end-position) contents-begin)
24599 (end-of-line)
24600 (org-forward-paragraph))
24601 (t (goto-char contents-begin)))))
24603 (defun org-backward-paragraph ()
24604 "Move backward to start of previous paragraph or equivalent.
24606 The function moves point to the beginning of the current
24607 structural element, which can be a paragraph, a table, a list
24608 item, etc., or to the beginning of the previous visible one if
24609 point is already there. It also provides some special moves for
24610 convenience:
24612 - On an affiliated keyword, jump to the first one.
24613 - On a table or a property drawer, move to its beginning.
24614 - On a verse or source block, stop before blank lines."
24615 (interactive)
24616 (when (bobp) (user-error "Cannot move further up"))
24617 (let* ((deactivate-mark nil)
24618 (element (org-element-at-point))
24619 (type (org-element-type element))
24620 (contents-begin (org-element-property :contents-begin element))
24621 (contents-end (org-element-property :contents-end element))
24622 (post-affiliated (org-element-property :post-affiliated element))
24623 (begin (org-element-property :begin element)))
24624 (cond
24625 ((not element) (goto-char (point-min)))
24626 ((= (point) begin)
24627 (backward-char)
24628 (org-backward-paragraph))
24629 ((<= (point) post-affiliated) (goto-char begin))
24630 ((memq type '(node-property table-row))
24631 (goto-char (org-element-property
24632 :post-affiliated (org-element-property :parent element))))
24633 ((memq type '(property-drawer table)) (goto-char begin))
24634 ((memq type '(src-block verse-block))
24635 (when (eq type 'src-block)
24636 (setq contents-begin
24637 (save-excursion (goto-char begin) (forward-line) (point))))
24638 (if (= (point) contents-begin) (goto-char post-affiliated)
24639 ;; Inside a verse block, see blank lines as paragraph
24640 ;; separators.
24641 (let ((origin (point)))
24642 (skip-chars-backward " \r\t\n" contents-begin)
24643 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24644 (skip-chars-forward " \r\t\n" origin)
24645 (if (= (point) origin) (goto-char contents-begin)
24646 (beginning-of-line))))))
24647 ((not contents-begin) (goto-char (or post-affiliated begin)))
24648 ((eq type 'paragraph)
24649 (goto-char contents-begin)
24650 ;; When at first paragraph in an item or a footnote definition,
24651 ;; move directly to beginning of line.
24652 (let ((parent-contents
24653 (org-element-property
24654 :contents-begin (org-element-property :parent element))))
24655 (when (and parent-contents (= parent-contents contents-begin))
24656 (beginning-of-line))))
24657 ;; At the end of a greater element, move to the beginning of the
24658 ;; last element within.
24659 ((>= (point) contents-end)
24660 (goto-char (1- contents-end))
24661 (org-backward-paragraph))
24662 (t (goto-char (or post-affiliated begin))))
24663 ;; Ensure we never leave point invisible.
24664 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24666 (defun org-forward-element ()
24667 "Move forward by one element.
24668 Move to the next element at the same level, when possible."
24669 (interactive)
24670 (cond ((eobp) (user-error "Cannot move further down"))
24671 ((org-with-limited-levels (org-at-heading-p))
24672 (let ((origin (point)))
24673 (goto-char (org-end-of-subtree nil t))
24674 (unless (org-with-limited-levels (org-at-heading-p))
24675 (goto-char origin)
24676 (user-error "Cannot move further down"))))
24678 (let* ((elem (org-element-at-point))
24679 (end (org-element-property :end elem))
24680 (parent (org-element-property :parent elem)))
24681 (cond ((and parent (= (org-element-property :contents-end parent) end))
24682 (goto-char (org-element-property :end parent)))
24683 ((integer-or-marker-p end) (goto-char end))
24684 (t (message "No element at point")))))))
24686 (defun org-backward-element ()
24687 "Move backward by one element.
24688 Move to the previous element at the same level, when possible."
24689 (interactive)
24690 (cond ((bobp) (user-error "Cannot move further up"))
24691 ((org-with-limited-levels (org-at-heading-p))
24692 ;; At a headline, move to the previous one, if any, or stay
24693 ;; here.
24694 (let ((origin (point)))
24695 (org-with-limited-levels (org-backward-heading-same-level 1))
24696 ;; When current headline has no sibling above, move to its
24697 ;; parent.
24698 (when (= (point) origin)
24699 (or (org-with-limited-levels (org-up-heading-safe))
24700 (progn (goto-char origin)
24701 (user-error "Cannot move further up"))))))
24703 (let* ((elem (org-element-at-point))
24704 (beg (org-element-property :begin elem)))
24705 (cond
24706 ;; Move to beginning of current element if point isn't
24707 ;; there already.
24708 ((null beg) (message "No element at point"))
24709 ((/= (point) beg) (goto-char beg))
24710 (t (goto-char beg)
24711 (skip-chars-backward " \r\t\n")
24712 (unless (bobp)
24713 (let ((prev (org-element-at-point)))
24714 (goto-char (org-element-property :begin prev))
24715 (while (and (setq prev (org-element-property :parent prev))
24716 (<= (org-element-property :end prev) beg))
24717 (goto-char (org-element-property :begin prev)))))))))))
24719 (defun org-up-element ()
24720 "Move to upper element."
24721 (interactive)
24722 (if (org-with-limited-levels (org-at-heading-p))
24723 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24724 (let* ((elem (org-element-at-point))
24725 (parent (org-element-property :parent elem)))
24726 (if parent (goto-char (org-element-property :begin parent))
24727 (if (org-with-limited-levels (org-before-first-heading-p))
24728 (user-error "No surrounding element")
24729 (org-with-limited-levels (org-back-to-heading)))))))
24731 (defvar org-element-greater-elements)
24732 (defun org-down-element ()
24733 "Move to inner element."
24734 (interactive)
24735 (let ((element (org-element-at-point)))
24736 (cond
24737 ((memq (org-element-type element) '(plain-list table))
24738 (goto-char (org-element-property :contents-begin element))
24739 (forward-char))
24740 ((memq (org-element-type element) org-element-greater-elements)
24741 ;; If contents are hidden, first disclose them.
24742 (when (outline-invisible-p (line-end-position)) (org-cycle))
24743 (goto-char (or (org-element-property :contents-begin element)
24744 (user-error "No content for this element"))))
24745 (t (user-error "No inner element")))))
24747 (defun org-drag-element-backward ()
24748 "Move backward element at point."
24749 (interactive)
24750 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24751 (let* ((elem (org-element-at-point))
24752 (prev-elem
24753 (save-excursion
24754 (goto-char (org-element-property :begin elem))
24755 (skip-chars-backward " \r\t\n")
24756 (unless (bobp)
24757 (let* ((beg (org-element-property :begin elem))
24758 (prev (org-element-at-point))
24759 (up prev))
24760 (while (and (setq up (org-element-property :parent up))
24761 (<= (org-element-property :end up) beg))
24762 (setq prev up))
24763 prev)))))
24764 ;; Error out if no previous element or previous element is
24765 ;; a parent of the current one.
24766 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24767 (user-error "Cannot drag element backward")
24768 (let ((pos (point)))
24769 (org-element-swap-A-B prev-elem elem)
24770 (goto-char (+ (org-element-property :begin prev-elem)
24771 (- pos (org-element-property :begin elem)))))))))
24773 (defun org-drag-element-forward ()
24774 "Move forward element at point."
24775 (interactive)
24776 (let* ((pos (point))
24777 (elem (org-element-at-point)))
24778 (when (= (point-max) (org-element-property :end elem))
24779 (user-error "Cannot drag element forward"))
24780 (goto-char (org-element-property :end elem))
24781 (let ((next-elem (org-element-at-point)))
24782 (when (or (org-element-nested-p elem next-elem)
24783 (and (eq (org-element-type next-elem) 'headline)
24784 (not (eq (org-element-type elem) 'headline))))
24785 (goto-char pos)
24786 (user-error "Cannot drag element forward"))
24787 ;; Compute new position of point: it's shifted by NEXT-ELEM
24788 ;; body's length (without final blanks) and by the length of
24789 ;; blanks between ELEM and NEXT-ELEM.
24790 (let ((size-next (- (save-excursion
24791 (goto-char (org-element-property :end next-elem))
24792 (skip-chars-backward " \r\t\n")
24793 (forward-line)
24794 ;; Small correction if buffer doesn't end
24795 ;; with a newline character.
24796 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24797 (org-element-property :begin next-elem)))
24798 (size-blank (- (org-element-property :end elem)
24799 (save-excursion
24800 (goto-char (org-element-property :end elem))
24801 (skip-chars-backward " \r\t\n")
24802 (forward-line)
24803 (point)))))
24804 (org-element-swap-A-B elem next-elem)
24805 (goto-char (+ pos size-next size-blank))))))
24807 (defun org-drag-line-forward (arg)
24808 "Drag the line at point ARG lines forward."
24809 (interactive "p")
24810 (dotimes (n (abs arg))
24811 (let ((c (current-column)))
24812 (if (< 0 arg)
24813 (progn
24814 (beginning-of-line 2)
24815 (transpose-lines 1)
24816 (beginning-of-line 0))
24817 (transpose-lines 1)
24818 (beginning-of-line -1))
24819 (org-move-to-column c))))
24821 (defun org-drag-line-backward (arg)
24822 "Drag the line at point ARG lines backward."
24823 (interactive "p")
24824 (org-drag-line-forward (- arg)))
24826 (defun org-mark-element ()
24827 "Put point at beginning of this element, mark at end.
24829 Interactively, if this command is repeated or (in Transient Mark
24830 mode) if the mark is active, it marks the next element after the
24831 ones already marked."
24832 (interactive)
24833 (let (deactivate-mark)
24834 (if (and (org-called-interactively-p 'any)
24835 (or (and (eq last-command this-command) (mark t))
24836 (and transient-mark-mode mark-active)))
24837 (set-mark
24838 (save-excursion
24839 (goto-char (mark))
24840 (goto-char (org-element-property :end (org-element-at-point)))))
24841 (let ((element (org-element-at-point)))
24842 (end-of-line)
24843 (push-mark (org-element-property :end element) t t)
24844 (goto-char (org-element-property :begin element))))))
24846 (defun org-narrow-to-element ()
24847 "Narrow buffer to current element."
24848 (interactive)
24849 (let ((elem (org-element-at-point)))
24850 (cond
24851 ((eq (car elem) 'headline)
24852 (narrow-to-region
24853 (org-element-property :begin elem)
24854 (org-element-property :end elem)))
24855 ((memq (car elem) org-element-greater-elements)
24856 (narrow-to-region
24857 (org-element-property :contents-begin elem)
24858 (org-element-property :contents-end elem)))
24860 (narrow-to-region
24861 (org-element-property :begin elem)
24862 (org-element-property :end elem))))))
24864 (defun org-transpose-element ()
24865 "Transpose current and previous elements, keeping blank lines between.
24866 Point is moved after both elements."
24867 (interactive)
24868 (org-skip-whitespace)
24869 (let ((end (org-element-property :end (org-element-at-point))))
24870 (org-drag-element-backward)
24871 (goto-char end)))
24873 (defun org-unindent-buffer ()
24874 "Un-indent the visible part of the buffer.
24875 Relative indentation (between items, inside blocks, etc.) isn't
24876 modified."
24877 (interactive)
24878 (unless (eq major-mode 'org-mode)
24879 (user-error "Cannot un-indent a buffer not in Org mode"))
24880 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24881 unindent-tree ; For byte-compiler.
24882 (unindent-tree
24883 (function
24884 (lambda (contents)
24885 (mapc
24886 (lambda (element)
24887 (if (memq (org-element-type element) '(headline section))
24888 (funcall unindent-tree (org-element-contents element))
24889 (save-excursion
24890 (save-restriction
24891 (narrow-to-region
24892 (org-element-property :begin element)
24893 (org-element-property :end element))
24894 (org-do-remove-indentation)))))
24895 (reverse contents))))))
24896 (funcall unindent-tree (org-element-contents parse-tree))))
24898 (defun org-show-subtree ()
24899 "Show everything after this heading at deeper levels."
24900 (interactive)
24901 (outline-flag-region
24902 (point)
24903 (save-excursion
24904 (org-end-of-subtree t t))
24905 nil))
24907 (defun org-show-entry ()
24908 "Show the body directly following this heading.
24909 Show the heading too, if it is currently invisible."
24910 (interactive)
24911 (save-excursion
24912 (ignore-errors
24913 (org-back-to-heading t)
24914 (outline-flag-region
24915 (max (point-min) (1- (point)))
24916 (save-excursion
24917 (if (re-search-forward
24918 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24919 (match-beginning 1)
24920 (point-max)))
24921 nil)
24922 (org-cycle-hide-drawers 'children))))
24924 (defun org-make-options-regexp (kwds &optional extra)
24925 "Make a regular expression for keyword lines.
24926 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24927 when non-nil, is a regexp matching keywords names."
24928 (concat "^[ \t]*#\\+\\("
24929 (regexp-opt kwds)
24930 (and extra (concat (and kwds "\\|") extra))
24931 "\\):[ \t]*\\(.*\\)"))
24933 ;; Make isearch reveal the necessary context
24934 (defun org-isearch-end ()
24935 "Reveal context after isearch exits."
24936 (when isearch-success ; only if search was successful
24937 (if (featurep 'xemacs)
24938 ;; Under XEmacs, the hook is run in the correct place,
24939 ;; we directly show the context.
24940 (org-show-context 'isearch)
24941 ;; In Emacs the hook runs *before* restoring the overlays.
24942 ;; So we have to use a one-time post-command-hook to do this.
24943 ;; (Emacs 22 has a special variable, see function `org-mode')
24944 (unless (and (boundp 'isearch-mode-end-hook-quit)
24945 isearch-mode-end-hook-quit)
24946 ;; Only when the isearch was not quitted.
24947 (org-add-hook 'post-command-hook 'org-isearch-post-command
24948 'append 'local)))))
24950 (defun org-isearch-post-command ()
24951 "Remove self from hook, and show context."
24952 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24953 (org-show-context 'isearch))
24956 ;;;; Integration with and fixes for other packages
24958 ;;; Imenu support
24960 (defvar org-imenu-markers nil
24961 "All markers currently used by Imenu.")
24962 (make-variable-buffer-local 'org-imenu-markers)
24964 (defun org-imenu-new-marker (&optional pos)
24965 "Return a new marker for use by Imenu, and remember the marker."
24966 (let ((m (make-marker)))
24967 (move-marker m (or pos (point)))
24968 (push m org-imenu-markers)
24971 (defun org-imenu-get-tree ()
24972 "Produce the index for Imenu."
24973 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24974 (setq org-imenu-markers nil)
24975 (let* ((n org-imenu-depth)
24976 (re (concat "^" (org-get-limited-outline-regexp)))
24977 (subs (make-vector (1+ n) nil))
24978 (last-level 0)
24979 m level head0 head)
24980 (save-excursion
24981 (save-restriction
24982 (widen)
24983 (goto-char (point-max))
24984 (while (re-search-backward re nil t)
24985 (setq level (org-reduced-level (funcall outline-level)))
24986 (when (and (<= level n)
24987 (looking-at org-complex-heading-regexp)
24988 (setq head0 (org-match-string-no-properties 4)))
24989 (setq head (org-link-display-format head0)
24990 m (org-imenu-new-marker))
24991 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24992 (if (>= level last-level)
24993 (push (cons head m) (aref subs level))
24994 (push (cons head (aref subs (1+ level))) (aref subs level))
24995 (loop for i from (1+ level) to n do (aset subs i nil)))
24996 (setq last-level level)))))
24997 (aref subs 1)))
24999 (eval-after-load "imenu"
25000 '(progn
25001 (add-hook 'imenu-after-jump-hook
25002 (lambda ()
25003 (if (derived-mode-p 'org-mode)
25004 (org-show-context 'org-goto))))))
25006 (defun org-link-display-format (link)
25007 "Replace a link with its the description.
25008 If there is no description, use the link target."
25009 (save-match-data
25010 (if (string-match org-bracket-link-analytic-regexp link)
25011 (replace-match (if (match-end 5)
25012 (match-string 5 link)
25013 (concat (match-string 1 link)
25014 (match-string 3 link)))
25015 nil t link)
25016 link)))
25018 (defun org-toggle-link-display ()
25019 "Toggle the literal or descriptive display of links."
25020 (interactive)
25021 (if org-descriptive-links
25022 (progn (org-remove-from-invisibility-spec '(org-link))
25023 (org-restart-font-lock)
25024 (setq org-descriptive-links nil))
25025 (progn (add-to-invisibility-spec '(org-link))
25026 (org-restart-font-lock)
25027 (setq org-descriptive-links t))))
25029 ;; Speedbar support
25031 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
25032 "Overlay marking the agenda restriction line in speedbar.")
25033 (overlay-put org-speedbar-restriction-lock-overlay
25034 'face 'org-agenda-restriction-lock)
25035 (overlay-put org-speedbar-restriction-lock-overlay
25036 'help-echo "Agendas are currently limited to this item.")
25037 (org-detach-overlay org-speedbar-restriction-lock-overlay)
25039 (defun org-speedbar-set-agenda-restriction ()
25040 "Restrict future agenda commands to the location at point in speedbar.
25041 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
25042 (interactive)
25043 (require 'org-agenda)
25044 (let (p m tp np dir txt)
25045 (cond
25046 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25047 'org-imenu t))
25048 (setq m (get-text-property p 'org-imenu-marker))
25049 (with-current-buffer (marker-buffer m)
25050 (goto-char m)
25051 (org-agenda-set-restriction-lock 'subtree)))
25052 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25053 'speedbar-function 'speedbar-find-file))
25054 (setq tp (previous-single-property-change
25055 (1+ p) 'speedbar-function)
25056 np (next-single-property-change
25057 tp 'speedbar-function)
25058 dir (speedbar-line-directory)
25059 txt (buffer-substring-no-properties (or tp (point-min))
25060 (or np (point-max))))
25061 (with-current-buffer (find-file-noselect
25062 (let ((default-directory dir))
25063 (expand-file-name txt)))
25064 (unless (derived-mode-p 'org-mode)
25065 (user-error "Cannot restrict to non-Org-mode file"))
25066 (org-agenda-set-restriction-lock 'file)))
25067 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25068 (move-overlay org-speedbar-restriction-lock-overlay
25069 (point-at-bol) (point-at-eol))
25070 (setq current-prefix-arg nil)
25071 (org-agenda-maybe-redo)))
25073 (defvar speedbar-file-key-map)
25074 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25075 (eval-after-load "speedbar"
25076 '(progn
25077 (speedbar-add-supported-extension ".org")
25078 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25079 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25080 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25081 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25082 (add-hook 'speedbar-visiting-tag-hook
25083 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25085 ;;; Fixes and Hacks for problems with other packages
25087 (defun org--flyspell-object-check-p (element)
25088 "Non-nil when Flyspell can check object at point.
25089 ELEMENT is the element at point."
25090 (let ((object (save-excursion
25091 (when (org-looking-at-p "\\>") (backward-char))
25092 (org-element-context element))))
25093 (case (org-element-type object)
25094 ;; Prevent checks in links due to keybinding conflict with
25095 ;; Flyspell.
25096 ((code entity export-snippet inline-babel-call
25097 inline-src-block line-break latex-fragment link macro
25098 statistics-cookie target timestamp verbatim)
25099 nil)
25100 (footnote-reference
25101 ;; Only in inline footnotes, within the definition.
25102 (and (eq (org-element-property :type object) 'inline)
25103 (< (save-excursion
25104 (goto-char (org-element-property :begin object))
25105 (search-forward ":" nil t 2))
25106 (point))))
25107 (otherwise t))))
25109 (defun org-mode-flyspell-verify ()
25110 "Function used for `flyspell-generic-check-word-predicate'."
25111 (if (org-at-heading-p)
25112 ;; At a headline or an inlinetask, check title only. This is
25113 ;; faster than relying on `org-element-at-point'.
25114 (and (save-excursion (beginning-of-line)
25115 (and (let ((case-fold-search t))
25116 (not (looking-at "\\*+ END[ \t]*$")))
25117 (looking-at org-complex-heading-regexp)))
25118 (match-beginning 4)
25119 (>= (point) (match-beginning 4))
25120 (or (not (match-beginning 5))
25121 (< (point) (match-beginning 5))))
25122 (let* ((element (org-element-at-point))
25123 (post-affiliated (org-element-property :post-affiliated element)))
25124 (cond
25125 ;; Ignore checks in all affiliated keywords but captions.
25126 ((< (point) post-affiliated)
25127 (and (save-excursion
25128 (beginning-of-line)
25129 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25130 (> (point) (match-end 0))
25131 (org--flyspell-object-check-p element)))
25132 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25133 ((let ((log (org-log-into-drawer)))
25134 (and log
25135 (let ((drawer (org-element-lineage element '(drawer))))
25136 (and drawer
25137 (eq (compare-strings
25138 log nil nil
25139 (org-element-property :drawer-name drawer) nil nil t)
25140 t)))))
25141 nil)
25143 (case (org-element-type element)
25144 ((comment quote-section) t)
25145 (comment-block
25146 ;; Allow checks between block markers, not on them.
25147 (and (> (line-beginning-position) post-affiliated)
25148 (save-excursion
25149 (end-of-line)
25150 (skip-chars-forward " \r\t\n")
25151 (< (point) (org-element-property :end element)))))
25152 ;; Arbitrary list of keywords where checks are meaningful.
25153 ;; Make sure point is on the value part of the element.
25154 (keyword
25155 (and (member (org-element-property :key element)
25156 '("DESCRIPTION" "TITLE"))
25157 (save-excursion
25158 (search-backward ":" (line-beginning-position) t))))
25159 ;; Check is globally allowed in paragraphs verse blocks and
25160 ;; table rows (after affiliated keywords) but some objects
25161 ;; must not be affected.
25162 ((paragraph table-row verse-block)
25163 (let ((cbeg (org-element-property :contents-begin element))
25164 (cend (org-element-property :contents-end element)))
25165 (and cbeg (>= (point) cbeg) (< (point) cend)
25166 (org--flyspell-object-check-p element))))))))))
25167 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25169 (defun org-remove-flyspell-overlays-in (beg end)
25170 "Remove flyspell overlays in region."
25171 (and (org-bound-and-true-p flyspell-mode)
25172 (fboundp 'flyspell-delete-region-overlays)
25173 (flyspell-delete-region-overlays beg end)))
25175 (defvar flyspell-delayed-commands)
25176 (eval-after-load "flyspell"
25177 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25179 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25180 (eval-after-load "bookmark"
25181 '(if (boundp 'bookmark-after-jump-hook)
25182 ;; We can use the hook
25183 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25184 ;; Hook not available, use advice
25185 (defadvice bookmark-jump (after org-make-visible activate)
25186 "Make the position visible."
25187 (org-bookmark-jump-unhide))))
25189 ;; Make sure saveplace shows the location if it was hidden
25190 (eval-after-load "saveplace"
25191 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25192 "Make the position visible."
25193 (org-bookmark-jump-unhide)))
25195 ;; Make sure ecb shows the location if it was hidden
25196 (eval-after-load "ecb"
25197 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25198 "Make hierarchy visible when jumping into location from ECB tree buffer."
25199 (if (derived-mode-p 'org-mode)
25200 (org-show-context))))
25202 (defun org-bookmark-jump-unhide ()
25203 "Unhide the current position, to show the bookmark location."
25204 (and (derived-mode-p 'org-mode)
25205 (or (outline-invisible-p)
25206 (save-excursion (goto-char (max (point-min) (1- (point))))
25207 (outline-invisible-p)))
25208 (org-show-context 'bookmark-jump)))
25210 (defun org-mark-jump-unhide ()
25211 "Make the point visible with `org-show-context' after jumping to the mark."
25212 (when (and (derived-mode-p 'org-mode)
25213 (outline-invisible-p))
25214 (org-show-context 'mark-goto)))
25216 (eval-after-load "simple"
25217 '(defadvice pop-to-mark-command (after org-make-visible activate)
25218 "Make the point visible with `org-show-context'."
25219 (org-mark-jump-unhide)))
25221 (eval-after-load "simple"
25222 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25223 "Make the point visible with `org-show-context'."
25224 (org-mark-jump-unhide)))
25226 (eval-after-load "simple"
25227 '(defadvice pop-global-mark (after org-make-visible activate)
25228 "Make the point visible with `org-show-context'."
25229 (org-mark-jump-unhide)))
25231 ;; Make session.el ignore our circular variable
25232 (defvar session-globals-exclude)
25233 (eval-after-load "session"
25234 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25236 ;;;; Finish up
25238 (provide 'org)
25240 (run-hooks 'org-load-hook)
25242 ;;; org.el ends here