Small fix
[org-mode.git] / lisp / org.el
blobbf0953d2bcea327b89b4297139c6f20452769419
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
186 (defsubst org-uniquify (list)
187 "Non-destructively remove duplicate elements from LIST."
188 (let ((res (copy-sequence list))) (delete-dups res)))
190 (defsubst org-get-at-bol (property)
191 "Get text property PROPERTY at the beginning of line."
192 (get-text-property (point-at-bol) property))
194 (defsubst org-trim (s)
195 "Remove whitespace at the beginning and the end of string S."
196 (replace-regexp-in-string
197 "\\`[ \t\n\r]+" ""
198 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
200 ;; load languages based on value of `org-babel-load-languages'
201 (defvar org-babel-load-languages)
203 ;;;###autoload
204 (defun org-babel-do-load-languages (sym value)
205 "Load the languages defined in `org-babel-load-languages'."
206 (set-default sym value)
207 (mapc (lambda (pair)
208 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
209 (if active
210 (progn
211 (require (intern (concat "ob-" lang))))
212 (progn
213 (funcall 'fmakunbound
214 (intern (concat "org-babel-execute:" lang)))
215 (funcall 'fmakunbound
216 (intern (concat "org-babel-expand-body:" lang)))))))
217 org-babel-load-languages))
219 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
220 ;;;###autoload
221 (defun org-babel-load-file (file &optional compile)
222 "Load Emacs Lisp source code blocks in the Org-mode FILE.
223 This function exports the source code using `org-babel-tangle'
224 and then loads the resulting file using `load-file'. With prefix
225 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
226 file to byte-code before it is loaded."
227 (interactive "fFile to load: \nP")
228 (let* ((age (lambda (file)
229 (float-time
230 (time-subtract (current-time)
231 (nth 5 (or (file-attributes (file-truename file))
232 (file-attributes file)))))))
233 (base-name (file-name-sans-extension file))
234 (exported-file (concat base-name ".el")))
235 ;; tangle if the org-mode file is newer than the elisp file
236 (unless (and (file-exists-p exported-file)
237 (> (funcall age file) (funcall age exported-file)))
238 ;; Tangle-file traversal returns reversed list of tangled files
239 ;; and we want to evaluate the first target.
240 (setq exported-file
241 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
242 (message "%s %s"
243 (if compile
244 (progn (byte-compile-file exported-file 'load)
245 "Compiled and loaded")
246 (progn (load-file exported-file) "Loaded"))
247 exported-file)))
249 (defcustom org-babel-load-languages '((emacs-lisp . t))
250 "Languages which can be evaluated in Org-mode buffers.
251 This list can be used to load support for any of the languages
252 below, note that each language will depend on a different set of
253 system executables and/or Emacs modes. When a language is
254 \"loaded\", then code blocks in that language can be evaluated
255 with `org-babel-execute-src-block' bound by default to C-c
256 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
257 be set to remove code block evaluation from the C-c C-c
258 keybinding. By default only Emacs Lisp (which has no
259 requirements) is loaded."
260 :group 'org-babel
261 :set 'org-babel-do-load-languages
262 :version "24.1"
263 :type '(alist :tag "Babel Languages"
264 :key-type
265 (choice
266 (const :tag "Awk" awk)
267 (const :tag "C" C)
268 (const :tag "R" R)
269 (const :tag "Asymptote" asymptote)
270 (const :tag "Calc" calc)
271 (const :tag "Clojure" clojure)
272 (const :tag "CSS" css)
273 (const :tag "Ditaa" ditaa)
274 (const :tag "Dot" dot)
275 (const :tag "Emacs Lisp" emacs-lisp)
276 (const :tag "Forth" forth)
277 (const :tag "Fortran" fortran)
278 (const :tag "Gnuplot" gnuplot)
279 (const :tag "Haskell" haskell)
280 (const :tag "IO" io)
281 (const :tag "J" J)
282 (const :tag "Java" java)
283 (const :tag "Javascript" js)
284 (const :tag "LaTeX" latex)
285 (const :tag "Ledger" ledger)
286 (const :tag "Lilypond" lilypond)
287 (const :tag "Lisp" lisp)
288 (const :tag "Makefile" makefile)
289 (const :tag "Maxima" maxima)
290 (const :tag "Matlab" matlab)
291 (const :tag "Mscgen" mscgen)
292 (const :tag "Ocaml" ocaml)
293 (const :tag "Octave" octave)
294 (const :tag "Org" org)
295 (const :tag "Perl" perl)
296 (const :tag "Pico Lisp" picolisp)
297 (const :tag "PlantUML" plantuml)
298 (const :tag "Python" python)
299 (const :tag "Ruby" ruby)
300 (const :tag "Sass" sass)
301 (const :tag "Scala" scala)
302 (const :tag "Scheme" scheme)
303 (const :tag "Screen" screen)
304 (const :tag "Shell Script" shell)
305 (const :tag "Shen" shen)
306 (const :tag "Sql" sql)
307 (const :tag "Sqlite" sqlite)
308 (const :tag "ebnf2ps" ebnf2ps))
309 :value-type (boolean :tag "Activate" :value t)))
311 ;;;; Customization variables
312 (defcustom org-clone-delete-id nil
313 "Remove ID property of clones of a subtree.
314 When non-nil, clones of a subtree don't inherit the ID property.
315 Otherwise they inherit the ID property with a new unique
316 identifier."
317 :type 'boolean
318 :version "24.1"
319 :group 'org-id)
321 ;;; Version
322 (org-check-version)
324 ;;;###autoload
325 (defun org-version (&optional here full message)
326 "Show the org-mode version.
327 Interactively, or when MESSAGE is non-nil, show it in echo area.
328 With prefix argument, or when HERE is non-nil, insert it at point.
329 In non-interactive uses, a reduced version string is output unless
330 FULL is given."
331 (interactive (list current-prefix-arg t (not current-prefix-arg)))
332 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
333 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
334 (load-suffixes (list ".el"))
335 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
336 (org-trash (or
337 (and (fboundp 'org-release) (fboundp 'org-git-version))
338 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
339 (load-suffixes save-load-suffixes)
340 (org-version (org-release))
341 (git-version (org-git-version))
342 (version (format "Org-mode version %s (%s @ %s)"
343 org-version
344 git-version
345 (if org-install-dir
346 (if (string= org-dir org-install-dir)
347 org-install-dir
348 (concat "mixed installation! " org-install-dir " and " org-dir))
349 "org-loaddefs.el can not be found!")))
350 (version1 (if full version org-version)))
351 (when here (insert version1))
352 (when message (message "%s" version1))
353 version1))
355 (defconst org-version (org-version))
358 ;;; Syntax Constants
360 ;;;; Block
362 (defconst org-block-regexp
363 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
364 "Regular expression for hiding blocks.")
366 (defconst org-dblock-start-re
367 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
368 "Matches the start line of a dynamic block, with parameters.")
370 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
371 "Matches the end of a dynamic block.")
373 ;;;; Clock and Planning
375 (defconst org-clock-string "CLOCK:"
376 "String used as prefix for timestamps clocking work hours on an item.")
378 (defvar org-closed-string "CLOSED:"
379 "String used as the prefix for timestamps logging closing a TODO entry.")
381 (defvar org-deadline-string "DEADLINE:"
382 "String to mark deadline entries.
383 A deadline is this string, followed by a time stamp. Should be a word,
384 terminated by a colon. You can insert a schedule keyword and
385 a timestamp with \\[org-deadline].")
387 (defvar org-scheduled-string "SCHEDULED:"
388 "String to mark scheduled TODO entries.
389 A schedule is this string, followed by a time stamp. Should be a word,
390 terminated by a colon. You can insert a schedule keyword and
391 a timestamp with \\[org-schedule].")
393 (defconst org-ds-keyword-length
394 (+ 2
395 (apply #'max
396 (mapcar #'length
397 (list org-deadline-string org-scheduled-string
398 org-clock-string org-closed-string))))
399 "Maximum length of the DEADLINE and SCHEDULED keywords.")
401 (defconst org-planning-line-re
402 (concat "^[ \t]*"
403 (regexp-opt
404 (list org-closed-string org-deadline-string org-scheduled-string)
406 "Matches a line with planning info.
407 Matched keyword is in group 1.")
409 (defconst org-clock-line-re
410 (concat "^[ \t]*" org-clock-string)
411 "Matches a line with clock info.")
413 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
414 "Matches the DEADLINE keyword.")
416 (defconst org-deadline-time-regexp
417 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
418 "Matches the DEADLINE keyword together with a time stamp.")
420 (defconst org-deadline-time-hour-regexp
421 (concat "\\<" org-deadline-string
422 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
423 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
425 (defconst org-deadline-line-regexp
426 (concat "\\<\\(" org-deadline-string "\\).*")
427 "Matches the DEADLINE keyword and the rest of the line.")
429 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
430 "Matches the SCHEDULED keyword.")
432 (defconst org-scheduled-time-regexp
433 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
434 "Matches the SCHEDULED keyword together with a time stamp.")
436 (defconst org-scheduled-time-hour-regexp
437 (concat "\\<" org-scheduled-string
438 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
439 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
441 (defconst org-closed-time-regexp
442 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
443 "Matches the CLOSED keyword together with a time stamp.")
445 (defconst org-keyword-time-regexp
446 (concat "\\<"
447 (regexp-opt
448 (list org-scheduled-string org-deadline-string org-closed-string
449 org-clock-string)
451 " *[[<]\\([^]>]+\\)[]>]")
452 "Matches any of the 4 keywords, together with the time stamp.")
454 (defconst org-keyword-time-not-clock-regexp
455 (concat
456 "\\<"
457 (regexp-opt
458 (list org-scheduled-string org-deadline-string org-closed-string) t)
459 " *[[<]\\([^]>]+\\)[]>]")
460 "Matches any of the 3 keywords, together with the time stamp.")
462 (defconst org-maybe-keyword-time-regexp
463 (concat "\\(\\<"
464 (regexp-opt
465 (list org-scheduled-string org-deadline-string org-closed-string
466 org-clock-string)
468 "\\)?"
469 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
470 "\\|"
471 "<%%([^\r\n>]*>\\)")
472 "Matches a timestamp, possibly preceded by a keyword.")
474 (defconst org-all-time-keywords
475 (mapcar (lambda (w) (substring w 0 -1))
476 (list org-scheduled-string org-deadline-string
477 org-clock-string org-closed-string))
478 "List of time keywords.")
480 ;;;; Drawer
482 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
483 "Matches first or last line of a hidden block.
484 Group 1 contains drawer's name or \"END\".")
486 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
487 "Regular expression matching the first line of a property drawer.")
489 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
490 "Regular expression matching the last line of a property drawer.")
492 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
493 "Regular expression matching the first line of a clock drawer.")
495 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
496 "Regular expression matching the last line of a clock drawer.")
498 (defconst org-property-drawer-re
499 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
500 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
501 "[ \t]*:END:[ \t]*$")
502 "Matches an entire property drawer.")
504 (defconst org-clock-drawer-re
505 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
506 org-clock-drawer-end-re "\\)\n?")
507 "Matches an entire clock drawer.")
509 ;;;; Headline
511 (defconst org-heading-keyword-regexp-format
512 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
513 "Printf format for a regexp matching a headline with some keyword.
514 This regexp will match the headline of any node which has the
515 exact keyword that is put into the format. The keyword isn't in
516 any group by default, but the stars and the body are.")
518 (defconst org-heading-keyword-maybe-regexp-format
519 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
520 "Printf format for a regexp matching a headline, possibly with some keyword.
521 This regexp can match any headline with the specified keyword, or
522 without a keyword. The keyword isn't in any group by default,
523 but the stars and the body are.")
525 (defconst org-archive-tag "ARCHIVE"
526 "The tag that marks a subtree as archived.
527 An archived subtree does not open during visibility cycling, and does
528 not contribute to the agenda listings.")
530 (defconst org-comment-string "COMMENT"
531 "Entries starting with this keyword will never be exported.
532 An entry can be toggled between COMMENT and normal with
533 \\[org-toggle-comment].")
536 ;;;; LaTeX Environments and Fragments
538 (defconst org-latex-regexps
539 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
540 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
541 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
542 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
543 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
544 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
545 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
546 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
547 "Regular expressions for matching embedded LaTeX.")
549 ;;;; Node Property
551 (defconst org-effort-property "Effort"
552 "The property that is being used to keep track of effort estimates.
553 Effort estimates given in this property need to have the format H:MM.")
555 ;;;; Table
557 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
558 "Detect an org-type or table-type table.")
560 (defconst org-table-line-regexp "^[ \t]*|"
561 "Detect an org-type table line.")
563 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
564 "Detect an org-type table line.")
566 (defconst org-table-hline-regexp "^[ \t]*|-"
567 "Detect an org-type table hline.")
569 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
570 "Detect a table-type table hline.")
572 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
573 "Detect the first line outside a table when searching from within it.
574 This works for both table types.")
576 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
577 "Detect a #+TBLFM line.")
579 ;;;; Timestamp
581 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
582 "Regular expression for fast time stamp matching.")
584 (defconst org-ts-regexp-inactive
585 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
586 "Regular expression for fast inactive time stamp matching.")
588 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
589 "Regular expression for fast time stamp matching.")
591 (defconst org-ts-regexp0
592 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
593 "Regular expression matching time strings for analysis.
594 This one does not require the space after the date, so it can be used
595 on a string that terminates immediately after the date.")
597 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
598 "Regular expression matching time strings for analysis.")
600 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
601 "Regular expression matching time stamps, with groups.")
603 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
604 "Regular expression matching time stamps (also [..]), with groups.")
606 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
607 "Regular expression matching a time stamp range.")
609 (defconst org-tr-regexp-both
610 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
611 "Regular expression matching a time stamp range.")
613 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
614 org-ts-regexp "\\)?")
615 "Regular expression matching a time stamp or time stamp range.")
617 (defconst org-tsr-regexp-both
618 (concat org-ts-regexp-both "\\(--?-?"
619 org-ts-regexp-both "\\)?")
620 "Regular expression matching a time stamp or time stamp range.
621 The time stamps may be either active or inactive.")
623 (defconst org-repeat-re
624 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
625 "Regular expression for specifying repeated events.
626 After a match, group 1 contains the repeat expression.")
628 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
629 "Formats for `format-time-string' which are used for time stamps.")
632 ;;; The custom variables
634 (defgroup org nil
635 "Outline-based notes management and organizer."
636 :tag "Org"
637 :group 'outlines
638 :group 'calendar)
640 (defcustom org-mode-hook nil
641 "Mode hook for Org-mode, run after the mode was turned on."
642 :group 'org
643 :type 'hook)
645 (defcustom org-load-hook nil
646 "Hook that is run after org.el has been loaded."
647 :group 'org
648 :type 'hook)
650 (defcustom org-log-buffer-setup-hook nil
651 "Hook that is run after an Org log buffer is created."
652 :group 'org
653 :version "24.1"
654 :type 'hook)
656 (defvar org-modules) ; defined below
657 (defvar org-modules-loaded nil
658 "Have the modules been loaded already?")
660 (defun org-load-modules-maybe (&optional force)
661 "Load all extensions listed in `org-modules'."
662 (when (or force (not org-modules-loaded))
663 (mapc (lambda (ext)
664 (condition-case nil (require ext)
665 (error (message "Problems while trying to load feature `%s'" ext))))
666 org-modules)
667 (setq org-modules-loaded t)))
669 (defun org-set-modules (var value)
670 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
671 (set var value)
672 (when (featurep 'org)
673 (org-load-modules-maybe 'force)
674 (org-element-cache-reset 'all)))
676 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
677 "Modules that should always be loaded together with org.el.
679 If a description starts with <C>, the file is not part of Emacs
680 and loading it will require that you have downloaded and properly
681 installed the Org mode distribution.
683 You can also use this system to load external packages (i.e. neither Org
684 core modules, nor modules from the CONTRIB directory). Just add symbols
685 to the end of the list. If the package is called org-xyz.el, then you need
686 to add the symbol `xyz', and the package must have a call to:
688 \(provide 'org-xyz)
690 For export specific modules, see also `org-export-backends'."
691 :group 'org
692 :set 'org-set-modules
693 :version "24.4"
694 :package-version '(Org . "8.0")
695 :type
696 '(set :greedy t
697 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
698 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
699 (const :tag " crypt: Encryption of subtrees" org-crypt)
700 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
701 (const :tag " docview: Links to doc-view buffers" org-docview)
702 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
703 (const :tag " habit: Track your consistency with habits" org-habit)
704 (const :tag " id: Global IDs for identifying entries" org-id)
705 (const :tag " info: Links to Info nodes" org-info)
706 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
707 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
708 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
709 (const :tag " mouse: Additional mouse support" org-mouse)
710 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
711 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
712 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
714 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
715 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
716 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
717 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
718 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
719 (const :tag "C collector: Collect properties into tables" org-collector)
720 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
721 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
722 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
723 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
724 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
725 (const :tag "C eval: Include command output as text" org-eval)
726 (const :tag "C eww: Store link to url of eww" org-eww)
727 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
728 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
729 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
730 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
731 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
732 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
733 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
734 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
735 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
736 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
737 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
738 (const :tag "C mew: Links to Mew folders/messages" org-mew)
739 (const :tag "C mtags: Support for muse-like tags" org-mtags)
740 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
741 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
742 (const :tag "C registry: A registry for Org-mode links" org-registry)
743 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
744 (const :tag "C secretary: Team management with org-mode" org-secretary)
745 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
746 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
747 (const :tag "C track: Keep up with Org-mode development" org-track)
748 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
749 (const :tag "C vm: Links to VM folders/messages" org-vm)
750 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
751 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
752 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
754 (defvar org-export--registered-backends) ; From ox.el.
755 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
756 (declare-function org-export-backend-name "ox" (backend))
757 (defcustom org-export-backends '(ascii html icalendar latex)
758 "List of export back-ends that should be always available.
760 If a description starts with <C>, the file is not part of Emacs
761 and loading it will require that you have downloaded and properly
762 installed the Org mode distribution.
764 Unlike to `org-modules', libraries in this list will not be
765 loaded along with Org, but only once the export framework is
766 needed.
768 This variable needs to be set before org.el is loaded. If you
769 need to make a change while Emacs is running, use the customize
770 interface or run the following code, where VAL stands for the new
771 value of the variable, after updating it:
773 \(progn
774 \(setq org-export--registered-backends
775 \(org-remove-if-not
776 \(lambda (backend)
777 \(let ((name (org-export-backend-name backend)))
778 \(or (memq name val)
779 \(catch 'parentp
780 \(dolist (b val)
781 \(and (org-export-derived-backend-p b name)
782 \(throw 'parentp t)))))))
783 org-export--registered-backends))
784 \(let ((new-list (mapcar 'org-export-backend-name
785 org-export--registered-backends)))
786 \(dolist (backend val)
787 \(cond
788 \((not (load (format \"ox-%s\" backend) t t))
789 \(message \"Problems while trying to load export back-end `%s'\"
790 backend))
791 \((not (memq backend new-list)) (push backend new-list))))
792 \(set-default 'org-export-backends new-list)))
794 Adding a back-end to this list will also pull the back-end it
795 depends on, if any."
796 :group 'org
797 :group 'org-export
798 :version "24.4"
799 :package-version '(Org . "8.0")
800 :initialize 'custom-initialize-set
801 :set (lambda (var val)
802 (if (not (featurep 'ox)) (set-default var val)
803 ;; Any back-end not required anymore (not present in VAL and not
804 ;; a parent of any back-end in the new value) is removed from the
805 ;; list of registered back-ends.
806 (setq org-export--registered-backends
807 (org-remove-if-not
808 (lambda (backend)
809 (let ((name (org-export-backend-name backend)))
810 (or (memq name val)
811 (catch 'parentp
812 (dolist (b val)
813 (and (org-export-derived-backend-p b name)
814 (throw 'parentp t)))))))
815 org-export--registered-backends))
816 ;; Now build NEW-LIST of both new back-ends and required
817 ;; parents.
818 (let ((new-list (mapcar 'org-export-backend-name
819 org-export--registered-backends)))
820 (dolist (backend val)
821 (cond
822 ((not (load (format "ox-%s" backend) t t))
823 (message "Problems while trying to load export back-end `%s'"
824 backend))
825 ((not (memq backend new-list)) (push backend new-list))))
826 ;; Set VAR to that list with fixed dependencies.
827 (set-default var new-list))))
828 :type '(set :greedy t
829 (const :tag " ascii Export buffer to ASCII format" ascii)
830 (const :tag " beamer Export buffer to Beamer presentation" beamer)
831 (const :tag " html Export buffer to HTML format" html)
832 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
833 (const :tag " latex Export buffer to LaTeX format" latex)
834 (const :tag " man Export buffer to MAN format" man)
835 (const :tag " md Export buffer to Markdown format" md)
836 (const :tag " odt Export buffer to ODT format" odt)
837 (const :tag " org Export buffer to Org format" org)
838 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
839 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
840 (const :tag "C deck Export buffer to deck.js presentations" deck)
841 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
842 (const :tag "C groff Export buffer to Groff format" groff)
843 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
844 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
845 (const :tag "C s5 Export buffer to s5 presentations" s5)
846 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
848 (eval-after-load 'ox
849 '(mapc
850 (lambda (backend)
851 (condition-case nil (require (intern (format "ox-%s" backend)))
852 (error (message "Problems while trying to load export back-end `%s'"
853 backend))))
854 org-export-backends))
856 (defcustom org-support-shift-select nil
857 "Non-nil means make shift-cursor commands select text when possible.
859 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
860 start selecting a region, or enlarge regions started in this way.
861 In Org-mode, in special contexts, these same keys are used for
862 other purposes, important enough to compete with shift selection.
863 Org tries to balance these needs by supporting `shift-select-mode'
864 outside these special contexts, under control of this variable.
866 The default of this variable is nil, to avoid confusing behavior. Shifted
867 cursor keys will then execute Org commands in the following contexts:
868 - on a headline, changing TODO state (left/right) and priority (up/down)
869 - on a time stamp, changing the time
870 - in a plain list item, changing the bullet type
871 - in a property definition line, switching between allowed values
872 - in the BEGIN line of a clock table (changing the time block).
873 Outside these contexts, the commands will throw an error.
875 When this variable is t and the cursor is not in a special
876 context, Org-mode will support shift-selection for making and
877 enlarging regions. To make this more effective, the bullet
878 cycling will no longer happen anywhere in an item line, but only
879 if the cursor is exactly on the bullet.
881 If you set this variable to the symbol `always', then the keys
882 will not be special in headlines, property lines, and item lines,
883 to make shift selection work there as well. If this is what you
884 want, you can use the following alternative commands: `C-c C-t'
885 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
886 can be used to switch TODO sets, `C-c -' to cycle item bullet
887 types, and properties can be edited by hand or in column view.
889 However, when the cursor is on a timestamp, shift-cursor commands
890 will still edit the time stamp - this is just too good to give up.
892 XEmacs user should have this variable set to nil, because
893 `shift-select-mode' is in Emacs 23 or later only."
894 :group 'org
895 :type '(choice
896 (const :tag "Never" nil)
897 (const :tag "When outside special context" t)
898 (const :tag "Everywhere except timestamps" always)))
900 (defcustom org-loop-over-headlines-in-active-region nil
901 "Shall some commands act upon headlines in the active region?
903 When set to `t', some commands will be performed in all headlines
904 within the active region.
906 When set to `start-level', some commands will be performed in all
907 headlines within the active region, provided that these headlines
908 are of the same level than the first one.
910 When set to a string, those commands will be performed on the
911 matching headlines within the active region. Such string must be
912 a tags/property/todo match as it is used in the agenda tags view.
914 The list of commands is: `org-schedule', `org-deadline',
915 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
916 `org-archive-to-archive-sibling'. The archiving commands skip
917 already archived entries."
918 :type '(choice (const :tag "Don't loop" nil)
919 (const :tag "All headlines in active region" t)
920 (const :tag "In active region, headlines at the same level than the first one" start-level)
921 (string :tag "Tags/Property/Todo matcher"))
922 :version "24.1"
923 :group 'org-todo
924 :group 'org-archive)
926 (defgroup org-startup nil
927 "Options concerning startup of Org-mode."
928 :tag "Org Startup"
929 :group 'org)
931 (defcustom org-startup-folded t
932 "Non-nil means entering Org-mode will switch to OVERVIEW.
933 This can also be configured on a per-file basis by adding one of
934 the following lines anywhere in the buffer:
936 #+STARTUP: fold (or `overview', this is equivalent)
937 #+STARTUP: nofold (or `showall', this is equivalent)
938 #+STARTUP: content
939 #+STARTUP: showeverything
941 By default, this option is ignored when Org opens agenda files
942 for the first time. If you want the agenda to honor the startup
943 option, set `org-agenda-inhibit-startup' to nil."
944 :group 'org-startup
945 :type '(choice
946 (const :tag "nofold: show all" nil)
947 (const :tag "fold: overview" t)
948 (const :tag "content: all headlines" content)
949 (const :tag "show everything, even drawers" showeverything)))
951 (defcustom org-startup-truncated t
952 "Non-nil means entering Org-mode will set `truncate-lines'.
953 This is useful since some lines containing links can be very long and
954 uninteresting. Also tables look terrible when wrapped."
955 :group 'org-startup
956 :type 'boolean)
958 (defcustom org-startup-indented nil
959 "Non-nil means turn on `org-indent-mode' on startup.
960 This can also be configured on a per-file basis by adding one of
961 the following lines anywhere in the buffer:
963 #+STARTUP: indent
964 #+STARTUP: noindent"
965 :group 'org-structure
966 :type '(choice
967 (const :tag "Not" nil)
968 (const :tag "Globally (slow on startup in large files)" t)))
970 (defcustom org-use-sub-superscripts t
971 "Non-nil means interpret \"_\" and \"^\" for display.
973 If you want to control how Org exports those characters, see
974 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
975 used to be an alias for `org-export-with-sub-superscripts' in
976 Org <8.0, it is not anymore.
978 When this option is turned on, you can use TeX-like syntax for
979 sub- and superscripts within the buffer. Several characters after
980 \"_\" or \"^\" will be considered as a single item - so grouping
981 with {} is normally not needed. For example, the following things
982 will be parsed as single sub- or superscripts:
984 10^24 or 10^tau several digits will be considered 1 item.
985 10^-12 or 10^-tau a leading sign with digits or a word
986 x^2-y^3 will be read as x^2 - y^3, because items are
987 terminated by almost any nonword/nondigit char.
988 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
990 Still, ambiguity is possible. So when in doubt, use {} to enclose
991 the sub/superscript. If you set this variable to the symbol `{}',
992 the braces are *required* in order to trigger interpretations as
993 sub/superscript. This can be helpful in documents that need \"_\"
994 frequently in plain text."
995 :group 'org-startup
996 :version "24.4"
997 :package-version '(Org . "8.0")
998 :type '(choice
999 (const :tag "Always interpret" t)
1000 (const :tag "Only with braces" {})
1001 (const :tag "Never interpret" nil)))
1003 (defcustom org-startup-with-beamer-mode nil
1004 "Non-nil means turn on `org-beamer-mode' on startup.
1005 This can also be configured on a per-file basis by adding one of
1006 the following lines anywhere in the buffer:
1008 #+STARTUP: beamer"
1009 :group 'org-startup
1010 :version "24.1"
1011 :type 'boolean)
1013 (defcustom org-startup-align-all-tables nil
1014 "Non-nil means align all tables when visiting a file.
1015 This is useful when the column width in tables is forced with <N> cookies
1016 in table fields. Such tables will look correct only after the first re-align.
1017 This can also be configured on a per-file basis by adding one of
1018 the following lines anywhere in the buffer:
1019 #+STARTUP: align
1020 #+STARTUP: noalign"
1021 :group 'org-startup
1022 :type 'boolean)
1024 (defcustom org-startup-with-inline-images nil
1025 "Non-nil means show inline images when loading a new Org file.
1026 This can also be configured on a per-file basis by adding one of
1027 the following lines anywhere in the buffer:
1028 #+STARTUP: inlineimages
1029 #+STARTUP: noinlineimages"
1030 :group 'org-startup
1031 :version "24.1"
1032 :type 'boolean)
1034 (defcustom org-startup-with-latex-preview nil
1035 "Non-nil means preview LaTeX fragments when loading a new Org file.
1037 This can also be configured on a per-file basis by adding one of
1038 the following lines anywhere in the buffer:
1039 #+STARTUP: latexpreview
1040 #+STARTUP: nolatexpreview"
1041 :group 'org-startup
1042 :version "24.4"
1043 :package-version '(Org . "8.0")
1044 :type 'boolean)
1046 (defcustom org-insert-mode-line-in-empty-file nil
1047 "Non-nil means insert the first line setting Org-mode in empty files.
1048 When the function `org-mode' is called interactively in an empty file, this
1049 normally means that the file name does not automatically trigger Org-mode.
1050 To ensure that the file will always be in Org-mode in the future, a
1051 line enforcing Org-mode will be inserted into the buffer, if this option
1052 has been set."
1053 :group 'org-startup
1054 :type 'boolean)
1056 (defcustom org-replace-disputed-keys nil
1057 "Non-nil means use alternative key bindings for some keys.
1058 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1059 These keys are also used by other packages like shift-selection-mode'
1060 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1061 If you want to use Org-mode together with one of these other modes,
1062 or more generally if you would like to move some Org-mode commands to
1063 other keys, set this variable and configure the keys with the variable
1064 `org-disputed-keys'.
1066 This option is only relevant at load-time of Org-mode, and must be set
1067 *before* org.el is loaded. Changing it requires a restart of Emacs to
1068 become effective."
1069 :group 'org-startup
1070 :type 'boolean)
1072 (defcustom org-use-extra-keys nil
1073 "Non-nil means use extra key sequence definitions for certain commands.
1074 This happens automatically if you run XEmacs or if `window-system'
1075 is nil. This variable lets you do the same manually. You must
1076 set it before loading org.
1078 Example: on Carbon Emacs 22 running graphically, with an external
1079 keyboard on a Powerbook, the default way of setting M-left might
1080 not work for either Alt or ESC. Setting this variable will make
1081 it work for ESC."
1082 :group 'org-startup
1083 :type 'boolean)
1085 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1087 (defcustom org-disputed-keys
1088 '(([(shift up)] . [(meta p)])
1089 ([(shift down)] . [(meta n)])
1090 ([(shift left)] . [(meta -)])
1091 ([(shift right)] . [(meta +)])
1092 ([(control shift right)] . [(meta shift +)])
1093 ([(control shift left)] . [(meta shift -)]))
1094 "Keys for which Org-mode and other modes compete.
1095 This is an alist, cars are the default keys, second element specifies
1096 the alternative to use when `org-replace-disputed-keys' is t.
1098 Keys can be specified in any syntax supported by `define-key'.
1099 The value of this option takes effect only at Org-mode's startup,
1100 therefore you'll have to restart Emacs to apply it after changing."
1101 :group 'org-startup
1102 :type 'alist)
1104 (defun org-key (key)
1105 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1106 Or return the original if not disputed.
1107 Also apply the translations defined in `org-xemacs-key-equivalents'."
1108 (when org-replace-disputed-keys
1109 (let* ((nkey (key-description key))
1110 (x (org-find-if (lambda (x)
1111 (equal (key-description (car x)) nkey))
1112 org-disputed-keys)))
1113 (setq key (if x (cdr x) key))))
1114 (when (featurep 'xemacs)
1115 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1116 key)
1118 (defun org-find-if (predicate seq)
1119 (catch 'exit
1120 (while seq
1121 (if (funcall predicate (car seq))
1122 (throw 'exit (car seq))
1123 (pop seq)))))
1125 (defun org-defkey (keymap key def)
1126 "Define a key, possibly translated, as returned by `org-key'."
1127 (define-key keymap (org-key key) def))
1129 (defcustom org-ellipsis nil
1130 "The ellipsis to use in the Org-mode outline.
1131 When nil, just use the standard three dots.
1132 When a string, use that string instead.
1133 When a face, use the standard 3 dots, but with the specified face.
1134 The change affects only Org-mode (which will then use its own display table).
1135 Changing this requires executing \\[org-mode] in a buffer to become
1136 effective."
1137 :group 'org-startup
1138 :type '(choice (const :tag "Default" nil)
1139 (face :tag "Face" :value org-warning)
1140 (string :tag "String" :value "...#")))
1142 (defvar org-display-table nil
1143 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1145 (defgroup org-keywords nil
1146 "Keywords in Org-mode."
1147 :tag "Org Keywords"
1148 :group 'org)
1150 (defcustom org-closed-keep-when-no-todo nil
1151 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1152 :group 'org-todo
1153 :group 'org-keywords
1154 :version "24.4"
1155 :package-version '(Org . "8.0")
1156 :type 'boolean)
1158 (defgroup org-structure nil
1159 "Options concerning the general structure of Org-mode files."
1160 :tag "Org Structure"
1161 :group 'org)
1163 (defgroup org-reveal-location nil
1164 "Options about how to make context of a location visible."
1165 :tag "Org Reveal Location"
1166 :group 'org-structure)
1168 (defcustom org-show-context-detail '((isearch . lineage)
1169 (bookmark-jump . lineage)
1170 (default . ancestors))
1171 "Alist between context and visibility span when revealing a location.
1173 \\<org-mode-map>Some actions may move point into invisible
1174 locations. As a consequence, Org always expose a neighborhood
1175 around point. How much is shown depends on the initial action,
1176 or context. Valid contexts are
1178 agenda when exposing an entry from the agenda
1179 org-goto when using the command `org-goto' (\\[org-goto])
1180 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1181 tags-tree when constructing a sparse tree based on tags matches
1182 link-search when exposing search matches associated with a link
1183 mark-goto when exposing the jump goal of a mark
1184 bookmark-jump when exposing a bookmark location
1185 isearch when exiting from an incremental search
1186 default default for all contexts not set explicitly
1188 Allowed visibility spans are
1190 minimal show current headline; if point is not on headline,
1191 also show entry
1193 local show current headline, entry and next headline
1195 ancestors show current headline and its direct ancestors; if
1196 point is not on headline, also show entry
1198 lineage show current headline, its direct ancestors and all
1199 their children; if point is not on headline, also show
1200 entry and first child
1202 tree show current headline, its direct ancestors and all
1203 their children; if point is not on headline, also show
1204 entry and all children
1206 canonical show current headline, its direct ancestors along with
1207 their entries and children; if point is not located on
1208 the headline, also show current entry and all children
1210 As special cases, a nil or t value means show all contexts in
1211 `minimal' or `canonical' view, respectively.
1213 Some views can make displayed information very compact, but also
1214 make it harder to edit the location of the match. In such
1215 a case, use the command `org-reveal' (\\[org-reveal]) to show
1216 more context."
1217 :group 'org-reveal-location
1218 :version "25.1"
1219 :package-version '(Org . "8.3")
1220 :type '(choice
1221 (const :tag "Canonical" t)
1222 (const :tag "Minimal" nil)
1223 (repeat :greedy t :tag "Individual contexts"
1224 (cons
1225 (choice :tag "Context"
1226 (const agenda)
1227 (const org-goto)
1228 (const occur-tree)
1229 (const tags-tree)
1230 (const link-search)
1231 (const mark-goto)
1232 (const bookmark-jump)
1233 (const isearch)
1234 (const default))
1235 (choice :tag "Detail level"
1236 (const minimal)
1237 (const local)
1238 (const ancestors)
1239 (const lineage)
1240 (const tree)
1241 (const canonical))))))
1243 (defcustom org-indirect-buffer-display 'other-window
1244 "How should indirect tree buffers be displayed?
1245 This applies to indirect buffers created with the commands
1246 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1247 Valid values are:
1248 current-window Display in the current window
1249 other-window Just display in another window.
1250 dedicated-frame Create one new frame, and re-use it each time.
1251 new-frame Make a new frame each time. Note that in this case
1252 previously-made indirect buffers are kept, and you need to
1253 kill these buffers yourself."
1254 :group 'org-structure
1255 :group 'org-agenda-windows
1256 :type '(choice
1257 (const :tag "In current window" current-window)
1258 (const :tag "In current frame, other window" other-window)
1259 (const :tag "Each time a new frame" new-frame)
1260 (const :tag "One dedicated frame" dedicated-frame)))
1262 (defcustom org-use-speed-commands nil
1263 "Non-nil means activate single letter commands at beginning of a headline.
1264 This may also be a function to test for appropriate locations where speed
1265 commands should be active.
1267 For example, to activate speed commands when the point is on any
1268 star at the beginning of the headline, you can do this:
1270 (setq org-use-speed-commands
1271 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1272 :group 'org-structure
1273 :type '(choice
1274 (const :tag "Never" nil)
1275 (const :tag "At beginning of headline stars" t)
1276 (function)))
1278 (defcustom org-speed-commands-user nil
1279 "Alist of additional speed commands.
1280 This list will be checked before `org-speed-commands-default'
1281 when the variable `org-use-speed-commands' is non-nil
1282 and when the cursor is at the beginning of a headline.
1283 The car if each entry is a string with a single letter, which must
1284 be assigned to `self-insert-command' in the global map.
1285 The cdr is either a command to be called interactively, a function
1286 to be called, or a form to be evaluated.
1287 An entry that is just a list with a single string will be interpreted
1288 as a descriptive headline that will be added when listing the speed
1289 commands in the Help buffer using the `?' speed command."
1290 :group 'org-structure
1291 :type '(repeat :value ("k" . ignore)
1292 (choice :value ("k" . ignore)
1293 (list :tag "Descriptive Headline" (string :tag "Headline"))
1294 (cons :tag "Letter and Command"
1295 (string :tag "Command letter")
1296 (choice
1297 (function)
1298 (sexp))))))
1300 (defcustom org-bookmark-names-plist
1301 '(:last-capture "org-capture-last-stored"
1302 :last-refile "org-refile-last-stored"
1303 :last-capture-marker "org-capture-last-stored-marker")
1304 "Names for bookmarks automatically set by some Org commands.
1305 This can provide strings as names for a number of bookmarks Org sets
1306 automatically. The following keys are currently implemented:
1307 :last-capture
1308 :last-capture-marker
1309 :last-refile
1310 When a key does not show up in the property list, the corresponding bookmark
1311 is not set."
1312 :group 'org-structure
1313 :type 'plist)
1315 (defgroup org-cycle nil
1316 "Options concerning visibility cycling in Org-mode."
1317 :tag "Org Cycle"
1318 :group 'org-structure)
1320 (defcustom org-cycle-skip-children-state-if-no-children t
1321 "Non-nil means skip CHILDREN state in entries that don't have any."
1322 :group 'org-cycle
1323 :type 'boolean)
1325 (defcustom org-cycle-max-level nil
1326 "Maximum level which should still be subject to visibility cycling.
1327 Levels higher than this will, for cycling, be treated as text, not a headline.
1328 When `org-odd-levels-only' is set, a value of N in this variable actually
1329 means 2N-1 stars as the limiting headline.
1330 When nil, cycle all levels.
1331 Note that the limiting level of cycling is also influenced by
1332 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1333 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1334 than its value."
1335 :group 'org-cycle
1336 :type '(choice
1337 (const :tag "No limit" nil)
1338 (integer :tag "Maximum level")))
1340 (defcustom org-hide-block-startup nil
1341 "Non-nil means entering Org-mode will fold all blocks.
1342 This can also be set in on a per-file basis with
1344 #+STARTUP: hideblocks
1345 #+STARTUP: showblocks"
1346 :group 'org-startup
1347 :group 'org-cycle
1348 :type 'boolean)
1350 (defcustom org-cycle-global-at-bob nil
1351 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1352 This makes it possible to do global cycling without having to use S-TAB or
1353 \\[universal-argument] TAB. For this special case to work, the first line
1354 of the buffer must not be a headline -- it may be empty or some other text.
1355 When used in this way, `org-cycle-hook' is disabled temporarily to make
1356 sure the cursor stays at the beginning of the buffer. When this option is
1357 nil, don't do anything special at the beginning of the buffer."
1358 :group 'org-cycle
1359 :type 'boolean)
1361 (defcustom org-cycle-level-after-item/entry-creation t
1362 "Non-nil means cycle entry level or item indentation in new empty entries.
1364 When the cursor is at the end of an empty headline, i.e., with only stars
1365 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1366 and then all possible ancestor states, before returning to the original state.
1367 This makes data entry extremely fast: M-RET to create a new headline,
1368 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1370 When the cursor is at the end of an empty plain list item, one TAB will
1371 make it a subitem, two or more tabs will back up to make this an item
1372 higher up in the item hierarchy."
1373 :group 'org-cycle
1374 :type 'boolean)
1376 (defcustom org-cycle-emulate-tab t
1377 "Where should `org-cycle' emulate TAB.
1378 nil Never
1379 white Only in completely white lines
1380 whitestart Only at the beginning of lines, before the first non-white char
1381 t Everywhere except in headlines
1382 exc-hl-bol Everywhere except at the start of a headline
1383 If TAB is used in a place where it does not emulate TAB, the current subtree
1384 visibility is cycled."
1385 :group 'org-cycle
1386 :type '(choice (const :tag "Never" nil)
1387 (const :tag "Only in completely white lines" white)
1388 (const :tag "Before first char in a line" whitestart)
1389 (const :tag "Everywhere except in headlines" t)
1390 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1392 (defcustom org-cycle-separator-lines 2
1393 "Number of empty lines needed to keep an empty line between collapsed trees.
1394 If you leave an empty line between the end of a subtree and the following
1395 headline, this empty line is hidden when the subtree is folded.
1396 Org-mode will leave (exactly) one empty line visible if the number of
1397 empty lines is equal or larger to the number given in this variable.
1398 So the default 2 means at least 2 empty lines after the end of a subtree
1399 are needed to produce free space between a collapsed subtree and the
1400 following headline.
1402 If the number is negative, and the number of empty lines is at least -N,
1403 all empty lines are shown.
1405 Special case: when 0, never leave empty lines in collapsed view."
1406 :group 'org-cycle
1407 :type 'integer)
1408 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1410 (defcustom org-pre-cycle-hook nil
1411 "Hook that is run before visibility cycling is happening.
1412 The function(s) in this hook must accept a single argument which indicates
1413 the new state that will be set right after running this hook. The
1414 argument is a symbol. Before a global state change, it can have the values
1415 `overview', `content', or `all'. Before a local state change, it can have
1416 the values `folded', `children', or `subtree'."
1417 :group 'org-cycle
1418 :type 'hook)
1420 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1421 org-cycle-hide-drawers
1422 org-cycle-hide-inline-tasks
1423 org-cycle-show-empty-lines
1424 org-optimize-window-after-visibility-change)
1425 "Hook that is run after `org-cycle' has changed the buffer visibility.
1426 The function(s) in this hook must accept a single argument which indicates
1427 the new state that was set by the most recent `org-cycle' command. The
1428 argument is a symbol. After a global state change, it can have the values
1429 `overview', `contents', or `all'. After a local state change, it can have
1430 the values `folded', `children', or `subtree'."
1431 :group 'org-cycle
1432 :type 'hook)
1434 (defgroup org-edit-structure nil
1435 "Options concerning structure editing in Org-mode."
1436 :tag "Org Edit Structure"
1437 :group 'org-structure)
1439 (defcustom org-odd-levels-only nil
1440 "Non-nil means skip even levels and only use odd levels for the outline.
1441 This has the effect that two stars are being added/taken away in
1442 promotion/demotion commands. It also influences how levels are
1443 handled by the exporters.
1444 Changing it requires restart of `font-lock-mode' to become effective
1445 for fontification also in regions already fontified.
1446 You may also set this on a per-file basis by adding one of the following
1447 lines to the buffer:
1449 #+STARTUP: odd
1450 #+STARTUP: oddeven"
1451 :group 'org-edit-structure
1452 :group 'org-appearance
1453 :type 'boolean)
1455 (defcustom org-adapt-indentation t
1456 "Non-nil means adapt indentation to outline node level.
1458 When this variable is set, Org assumes that you write outlines by
1459 indenting text in each node to align with the headline (after the
1460 stars). The following issues are influenced by this variable:
1462 - The indentation is increased by one space in a demotion
1463 command, and decreased by one in a promotion command. However,
1464 in the latter case, if shifting some line in the entry body
1465 would alter document structure (e.g., insert a new headline),
1466 indentation is not changed at all.
1468 - Property drawers and planning information is inserted indented
1469 when this variable is set. When nil, they will not be indented.
1471 - TAB indents a line relative to current level. The lines below
1472 a headline will be indented when this variable is set.
1474 Note that this is all about true indentation, by adding and
1475 removing space characters. See also `org-indent.el' which does
1476 level-dependent indentation in a virtual way, i.e. at display
1477 time in Emacs."
1478 :group 'org-edit-structure
1479 :type 'boolean)
1481 (defcustom org-special-ctrl-a/e nil
1482 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1484 When t, `C-a' will bring back the cursor to the beginning of the
1485 headline text, i.e. after the stars and after a possible TODO
1486 keyword. In an item, this will be the position after bullet and
1487 check-box, if any. When the cursor is already at that position,
1488 another `C-a' will bring it to the beginning of the line.
1490 `C-e' will jump to the end of the headline, ignoring the presence
1491 of tags in the headline. A second `C-e' will then jump to the
1492 true end of the line, after any tags. This also means that, when
1493 this variable is non-nil, `C-e' also will never jump beyond the
1494 end of the heading of a folded section, i.e. not after the
1495 ellipses.
1497 When set to the symbol `reversed', the first `C-a' or `C-e' works
1498 normally, going to the true line boundary first. Only a directly
1499 following, identical keypress will bring the cursor to the
1500 special positions.
1502 This may also be a cons cell where the behavior for `C-a' and
1503 `C-e' is set separately."
1504 :group 'org-edit-structure
1505 :type '(choice
1506 (const :tag "off" nil)
1507 (const :tag "on: after stars/bullet and before tags first" t)
1508 (const :tag "reversed: true line boundary first" reversed)
1509 (cons :tag "Set C-a and C-e separately"
1510 (choice :tag "Special C-a"
1511 (const :tag "off" nil)
1512 (const :tag "on: after stars/bullet first" t)
1513 (const :tag "reversed: before stars/bullet first" reversed))
1514 (choice :tag "Special C-e"
1515 (const :tag "off" nil)
1516 (const :tag "on: before tags first" t)
1517 (const :tag "reversed: after tags first" reversed)))))
1518 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1520 (defcustom org-special-ctrl-k nil
1521 "Non-nil means `C-k' will behave specially in headlines.
1522 When nil, `C-k' will call the default `kill-line' command.
1523 When t, the following will happen while the cursor is in the headline:
1525 - When the cursor is at the beginning of a headline, kill the entire
1526 line and possible the folded subtree below the line.
1527 - When in the middle of the headline text, kill the headline up to the tags.
1528 - When after the headline text, kill the tags."
1529 :group 'org-edit-structure
1530 :type 'boolean)
1532 (defcustom org-ctrl-k-protect-subtree nil
1533 "Non-nil means, do not delete a hidden subtree with C-k.
1534 When set to the symbol `error', simply throw an error when C-k is
1535 used to kill (part-of) a headline that has hidden text behind it.
1536 Any other non-nil value will result in a query to the user, if it is
1537 OK to kill that hidden subtree. When nil, kill without remorse."
1538 :group 'org-edit-structure
1539 :version "24.1"
1540 :type '(choice
1541 (const :tag "Do not protect hidden subtrees" nil)
1542 (const :tag "Protect hidden subtrees with a security query" t)
1543 (const :tag "Never kill a hidden subtree with C-k" error)))
1545 (defcustom org-special-ctrl-o t
1546 "Non-nil means, make `C-o' insert a row in tables."
1547 :group 'org-edit-structure
1548 :type 'boolean)
1550 (defcustom org-catch-invisible-edits nil
1551 "Check if in invisible region before inserting or deleting a character.
1552 Valid values are:
1554 nil Do not check, so just do invisible edits.
1555 error Throw an error and do nothing.
1556 show Make point visible, and do the requested edit.
1557 show-and-error Make point visible, then throw an error and abort the edit.
1558 smart Make point visible, and do insertion/deletion if it is
1559 adjacent to visible text and the change feels predictable.
1560 Never delete a previously invisible character or add in the
1561 middle or right after an invisible region. Basically, this
1562 allows insertion and backward-delete right before ellipses.
1563 FIXME: maybe in this case we should not even show?"
1564 :group 'org-edit-structure
1565 :version "24.1"
1566 :type '(choice
1567 (const :tag "Do not check" nil)
1568 (const :tag "Throw error when trying to edit" error)
1569 (const :tag "Unhide, but do not do the edit" show-and-error)
1570 (const :tag "Show invisible part and do the edit" show)
1571 (const :tag "Be smart and do the right thing" smart)))
1573 (defcustom org-yank-folded-subtrees t
1574 "Non-nil means when yanking subtrees, fold them.
1575 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1576 it starts with a heading and all other headings in it are either children
1577 or siblings, then fold all the subtrees. However, do this only if no
1578 text after the yank would be swallowed into a folded tree by this action."
1579 :group 'org-edit-structure
1580 :type 'boolean)
1582 (defcustom org-yank-adjusted-subtrees nil
1583 "Non-nil means when yanking subtrees, adjust the level.
1584 With this setting, `org-paste-subtree' is used to insert the subtree, see
1585 this function for details."
1586 :group 'org-edit-structure
1587 :type 'boolean)
1589 (defcustom org-M-RET-may-split-line '((default . t))
1590 "Non-nil means M-RET will split the line at the cursor position.
1591 When nil, it will go to the end of the line before making a
1592 new line.
1593 You may also set this option in a different way for different
1594 contexts. Valid contexts are:
1596 headline when creating a new headline
1597 item when creating a new item
1598 table in a table field
1599 default the value to be used for all contexts not explicitly
1600 customized"
1601 :group 'org-structure
1602 :group 'org-table
1603 :type '(choice
1604 (const :tag "Always" t)
1605 (const :tag "Never" nil)
1606 (repeat :greedy t :tag "Individual contexts"
1607 (cons
1608 (choice :tag "Context"
1609 (const headline)
1610 (const item)
1611 (const table)
1612 (const default))
1613 (boolean)))))
1616 (defcustom org-insert-heading-respect-content nil
1617 "Non-nil means insert new headings after the current subtree.
1618 When nil, the new heading is created directly after the current line.
1619 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1620 this variable on for the duration of the command."
1621 :group 'org-structure
1622 :type 'boolean)
1624 (defcustom org-blank-before-new-entry '((heading . auto)
1625 (plain-list-item . auto))
1626 "Should `org-insert-heading' leave a blank line before new heading/item?
1627 The value is an alist, with `heading' and `plain-list-item' as CAR,
1628 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1629 which case Org will look at the surrounding headings/items and try to
1630 make an intelligent decision whether to insert a blank line or not.
1632 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1633 the setting here is ignored and no empty line is inserted to avoid breaking
1634 the list structure."
1635 :group 'org-edit-structure
1636 :type '(list
1637 (cons (const heading)
1638 (choice (const :tag "Never" nil)
1639 (const :tag "Always" t)
1640 (const :tag "Auto" auto)))
1641 (cons (const plain-list-item)
1642 (choice (const :tag "Never" nil)
1643 (const :tag "Always" t)
1644 (const :tag "Auto" auto)))))
1646 (defcustom org-insert-heading-hook nil
1647 "Hook being run after inserting a new heading."
1648 :group 'org-edit-structure
1649 :type 'hook)
1651 (defcustom org-enable-fixed-width-editor t
1652 "Non-nil means lines starting with \":\" are treated as fixed-width.
1653 This currently only means they are never auto-wrapped.
1654 When nil, such lines will be treated like ordinary lines."
1655 :group 'org-edit-structure
1656 :type 'boolean)
1658 (defcustom org-goto-auto-isearch t
1659 "Non-nil means typing characters in `org-goto' starts incremental search.
1660 When nil, you can use these keybindings to navigate the buffer:
1662 q Quit the org-goto interface
1663 n Go to the next visible heading
1664 p Go to the previous visible heading
1665 f Go one heading forward on same level
1666 b Go one heading backward on same level
1667 u Go one heading up"
1668 :group 'org-edit-structure
1669 :type 'boolean)
1671 (defgroup org-sparse-trees nil
1672 "Options concerning sparse trees in Org-mode."
1673 :tag "Org Sparse Trees"
1674 :group 'org-structure)
1676 (defcustom org-highlight-sparse-tree-matches t
1677 "Non-nil means highlight all matches that define a sparse tree.
1678 The highlights will automatically disappear the next time the buffer is
1679 changed by an edit command."
1680 :group 'org-sparse-trees
1681 :type 'boolean)
1683 (defcustom org-remove-highlights-with-change t
1684 "Non-nil means any change to the buffer will remove temporary highlights.
1685 Such highlights are created by `org-occur' and `org-clock-display'.
1686 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1687 The highlights created by `org-toggle-latex-fragment' always need
1688 `C-c C-x C-l' to be removed."
1689 :group 'org-sparse-trees
1690 :group 'org-time
1691 :type 'boolean)
1694 (defcustom org-occur-hook '(org-first-headline-recenter)
1695 "Hook that is run after `org-occur' has constructed a sparse tree.
1696 This can be used to recenter the window to show as much of the structure
1697 as possible."
1698 :group 'org-sparse-trees
1699 :type 'hook)
1701 (defgroup org-imenu-and-speedbar nil
1702 "Options concerning imenu and speedbar in Org-mode."
1703 :tag "Org Imenu and Speedbar"
1704 :group 'org-structure)
1706 (defcustom org-imenu-depth 2
1707 "The maximum level for Imenu access to Org-mode headlines.
1708 This also applied for speedbar access."
1709 :group 'org-imenu-and-speedbar
1710 :type 'integer)
1712 (defgroup org-table nil
1713 "Options concerning tables in Org-mode."
1714 :tag "Org Table"
1715 :group 'org)
1717 (defcustom org-enable-table-editor 'optimized
1718 "Non-nil means lines starting with \"|\" are handled by the table editor.
1719 When nil, such lines will be treated like ordinary lines.
1721 When equal to the symbol `optimized', the table editor will be optimized to
1722 do the following:
1723 - Automatic overwrite mode in front of whitespace in table fields.
1724 This makes the structure of the table stay in tact as long as the edited
1725 field does not exceed the column width.
1726 - Minimize the number of realigns. Normally, the table is aligned each time
1727 TAB or RET are pressed to move to another field. With optimization this
1728 happens only if changes to a field might have changed the column width.
1729 Optimization requires replacing the functions `self-insert-command',
1730 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1731 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1732 very good at guessing when a re-align will be necessary, but you can always
1733 force one with \\[org-ctrl-c-ctrl-c].
1735 If you would like to use the optimized version in Org-mode, but the
1736 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1738 This variable can be used to turn on and off the table editor during a session,
1739 but in order to toggle optimization, a restart is required.
1741 See also the variable `org-table-auto-blank-field'."
1742 :group 'org-table
1743 :type '(choice
1744 (const :tag "off" nil)
1745 (const :tag "on" t)
1746 (const :tag "on, optimized" optimized)))
1748 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1749 (version<= emacs-version "24.1"))
1750 "Non-nil means cluster self-insert commands for undo when possible.
1751 If this is set, then, like in the Emacs command loop, 20 consecutive
1752 characters will be undone together.
1753 This is configurable, because there is some impact on typing performance."
1754 :group 'org-table
1755 :type 'boolean)
1757 (defcustom org-table-tab-recognizes-table.el t
1758 "Non-nil means TAB will automatically notice a table.el table.
1759 When it sees such a table, it moves point into it and - if necessary -
1760 calls `table-recognize-table'."
1761 :group 'org-table-editing
1762 :type 'boolean)
1764 (defgroup org-link nil
1765 "Options concerning links in Org-mode."
1766 :tag "Org Link"
1767 :group 'org)
1769 (defvar org-link-abbrev-alist-local nil
1770 "Buffer-local version of `org-link-abbrev-alist', which see.
1771 The value of this is taken from the #+LINK lines.")
1772 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1774 (defcustom org-link-abbrev-alist nil
1775 "Alist of link abbreviations.
1776 The car of each element is a string, to be replaced at the start of a link.
1777 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1778 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1780 [[linkkey:tag][description]]
1782 The 'linkkey' must be a word word, starting with a letter, followed
1783 by letters, numbers, '-' or '_'.
1785 If REPLACE is a string, the tag will simply be appended to create the link.
1786 If the string contains \"%s\", the tag will be inserted there. If the string
1787 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1788 at that point (see the function `url-hexify-string'). If the string contains
1789 the specifier \"%(my-function)\", then the custom function `my-function' will
1790 be invoked: this function takes the tag as its only argument and must return
1791 a string.
1793 REPLACE may also be a function that will be called with the tag as the
1794 only argument to create the link, which should be returned as a string.
1796 See the manual for examples."
1797 :group 'org-link
1798 :type '(repeat
1799 (cons
1800 (string :tag "Protocol")
1801 (choice
1802 (string :tag "Format")
1803 (function)))))
1805 (defcustom org-descriptive-links t
1806 "Non-nil means Org will display descriptive links.
1807 E.g. [[http://orgmode.org][Org website]] will be displayed as
1808 \"Org Website\", hiding the link itself and just displaying its
1809 description. When set to `nil', Org will display the full links
1810 literally.
1812 You can interactively set the value of this variable by calling
1813 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1814 :group 'org-link
1815 :type 'boolean)
1817 (defcustom org-link-file-path-type 'adaptive
1818 "How the path name in file links should be stored.
1819 Valid values are:
1821 relative Relative to the current directory, i.e. the directory of the file
1822 into which the link is being inserted.
1823 absolute Absolute path, if possible with ~ for home directory.
1824 noabbrev Absolute path, no abbreviation of home directory.
1825 adaptive Use relative path for files in the current directory and sub-
1826 directories of it. For other files, use an absolute path."
1827 :group 'org-link
1828 :type '(choice
1829 (const relative)
1830 (const absolute)
1831 (const noabbrev)
1832 (const adaptive)))
1834 (defvaralias 'org-activate-links 'org-highlight-links)
1835 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1836 "Types of links that should be highlighted in Org-mode files.
1838 This is a list of symbols, each one of them leading to the
1839 highlighting of a certain link type.
1841 You can still open links that are not highlighted.
1843 In principle, it does not hurt to turn on highlighting for all
1844 link types. There may be a small gain when turning off unused
1845 link types. The types are:
1847 bracket The recommended [[link][description]] or [[link]] links with hiding.
1848 angle Links in angular brackets that may contain whitespace like
1849 <bbdb:Carsten Dominik>.
1850 plain Plain links in normal text, no whitespace, like http://google.com.
1851 radio Text that is matched by a radio target, see manual for details.
1852 tag Tag settings in a headline (link to tag search).
1853 date Time stamps (link to calendar).
1854 footnote Footnote labels.
1856 If you set this variable during an Emacs session, use `org-mode-restart'
1857 in the Org buffer so that the change takes effect."
1858 :group 'org-link
1859 :group 'org-appearance
1860 :type '(set :greedy t
1861 (const :tag "Double bracket links" bracket)
1862 (const :tag "Angular bracket links" angle)
1863 (const :tag "Plain text links" plain)
1864 (const :tag "Radio target matches" radio)
1865 (const :tag "Tags" tag)
1866 (const :tag "Timestamps" date)
1867 (const :tag "Footnotes" footnote)))
1869 (defcustom org-make-link-description-function nil
1870 "Function to use for generating link descriptions from links.
1871 When nil, the link location will be used. This function must take
1872 two parameters: the first one is the link, the second one is the
1873 description generated by `org-insert-link'. The function should
1874 return the description to use."
1875 :group 'org-link
1876 :type '(choice (const nil) (function)))
1878 (defgroup org-link-store nil
1879 "Options concerning storing links in Org-mode."
1880 :tag "Org Store Link"
1881 :group 'org-link)
1883 (defcustom org-url-hexify-p t
1884 "When non-nil, hexify URL when creating a link."
1885 :type 'boolean
1886 :version "24.3"
1887 :group 'org-link-store)
1889 (defcustom org-email-link-description-format "Email %c: %.30s"
1890 "Format of the description part of a link to an email or usenet message.
1891 The following %-escapes will be replaced by corresponding information:
1893 %F full \"From\" field
1894 %f name, taken from \"From\" field, address if no name
1895 %T full \"To\" field
1896 %t first name in \"To\" field, address if no name
1897 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1898 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1899 %s subject
1900 %d date
1901 %m message-id.
1903 You may use normal field width specification between the % and the letter.
1904 This is for example useful to limit the length of the subject.
1906 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1907 :group 'org-link-store
1908 :type 'string)
1910 (defcustom org-from-is-user-regexp
1911 (let (r1 r2)
1912 (when (and user-mail-address (not (string= user-mail-address "")))
1913 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1914 (when (and user-full-name (not (string= user-full-name "")))
1915 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1916 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1917 "Regexp matched against the \"From:\" header of an email or usenet message.
1918 It should match if the message is from the user him/herself."
1919 :group 'org-link-store
1920 :type 'regexp)
1922 (defcustom org-context-in-file-links t
1923 "Non-nil means file links from `org-store-link' contain context.
1924 A search string will be added to the file name with :: as separator and
1925 used to find the context when the link is activated by the command
1926 `org-open-at-point'. When this option is t, the entire active region
1927 will be placed in the search string of the file link. If set to a
1928 positive integer, only the first n lines of context will be stored.
1930 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1931 negates this setting for the duration of the command."
1932 :group 'org-link-store
1933 :type '(choice boolean integer))
1935 (defcustom org-keep-stored-link-after-insertion nil
1936 "Non-nil means keep link in list for entire session.
1938 The command `org-store-link' adds a link pointing to the current
1939 location to an internal list. These links accumulate during a session.
1940 The command `org-insert-link' can be used to insert links into any
1941 Org-mode file (offering completion for all stored links). When this
1942 option is nil, every link which has been inserted once using \\[org-insert-link]
1943 will be removed from the list, to make completing the unused links
1944 more efficient."
1945 :group 'org-link-store
1946 :type 'boolean)
1948 (defgroup org-link-follow nil
1949 "Options concerning following links in Org-mode."
1950 :tag "Org Follow Link"
1951 :group 'org-link)
1953 (defcustom org-link-translation-function nil
1954 "Function to translate links with different syntax to Org syntax.
1955 This can be used to translate links created for example by the Planner
1956 or emacs-wiki packages to Org syntax.
1957 The function must accept two parameters, a TYPE containing the link
1958 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1959 which is everything after the link protocol. It should return a cons
1960 with possibly modified values of type and path.
1961 Org contains a function for this, so if you set this variable to
1962 `org-translate-link-from-planner', you should be able follow many
1963 links created by planner."
1964 :group 'org-link-follow
1965 :type '(choice (const nil) (function)))
1967 (defcustom org-follow-link-hook nil
1968 "Hook that is run after a link has been followed."
1969 :group 'org-link-follow
1970 :type 'hook)
1972 (defcustom org-tab-follows-link nil
1973 "Non-nil means on links TAB will follow the link.
1974 Needs to be set before org.el is loaded.
1975 This really should not be used, it does not make sense, and the
1976 implementation is bad."
1977 :group 'org-link-follow
1978 :type 'boolean)
1980 (defcustom org-return-follows-link nil
1981 "Non-nil means on links RET will follow the link.
1982 In tables, the special behavior of RET has precedence."
1983 :group 'org-link-follow
1984 :type 'boolean)
1986 (defcustom org-mouse-1-follows-link
1987 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1988 "Non-nil means mouse-1 on a link will follow the link.
1989 A longer mouse click will still set point. Does not work on XEmacs.
1990 Needs to be set before org.el is loaded."
1991 :group 'org-link-follow
1992 :version "24.4"
1993 :package-version '(Org . "8.3")
1994 :type '(choice
1995 (const :tag "A double click follows the link" double)
1996 (const :tag "Unconditionally follow the link with mouse-1" t)
1997 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
1999 (defcustom org-mark-ring-length 4
2000 "Number of different positions to be recorded in the ring.
2001 Changing this requires a restart of Emacs to work correctly."
2002 :group 'org-link-follow
2003 :type 'integer)
2005 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2006 "Non-nil means internal links in Org files must exactly match a headline.
2007 When nil, the link search tries to match a phrase with all words
2008 in the search text."
2009 :group 'org-link-follow
2010 :version "24.1"
2011 :type '(choice
2012 (const :tag "Use fuzzy text search" nil)
2013 (const :tag "Match only exact headline" t)
2014 (const :tag "Match exact headline or query to create it"
2015 query-to-create)))
2017 (defcustom org-link-frame-setup
2018 '((vm . vm-visit-folder-other-frame)
2019 (vm-imap . vm-visit-imap-folder-other-frame)
2020 (gnus . org-gnus-no-new-news)
2021 (file . find-file-other-window)
2022 (wl . wl-other-frame))
2023 "Setup the frame configuration for following links.
2024 When following a link with Emacs, it may often be useful to display
2025 this link in another window or frame. This variable can be used to
2026 set this up for the different types of links.
2027 For VM, use any of
2028 `vm-visit-folder'
2029 `vm-visit-folder-other-window'
2030 `vm-visit-folder-other-frame'
2031 For Gnus, use any of
2032 `gnus'
2033 `gnus-other-frame'
2034 `org-gnus-no-new-news'
2035 For FILE, use any of
2036 `find-file'
2037 `find-file-other-window'
2038 `find-file-other-frame'
2039 For Wanderlust use any of
2040 `wl'
2041 `wl-other-frame'
2042 For the calendar, use the variable `calendar-setup'.
2043 For BBDB, it is currently only possible to display the matches in
2044 another window."
2045 :group 'org-link-follow
2046 :type '(list
2047 (cons (const vm)
2048 (choice
2049 (const vm-visit-folder)
2050 (const vm-visit-folder-other-window)
2051 (const vm-visit-folder-other-frame)))
2052 (cons (const vm-imap)
2053 (choice
2054 (const vm-visit-imap-folder)
2055 (const vm-visit-imap-folder-other-window)
2056 (const vm-visit-imap-folder-other-frame)))
2057 (cons (const gnus)
2058 (choice
2059 (const gnus)
2060 (const gnus-other-frame)
2061 (const org-gnus-no-new-news)))
2062 (cons (const file)
2063 (choice
2064 (const find-file)
2065 (const find-file-other-window)
2066 (const find-file-other-frame)))
2067 (cons (const wl)
2068 (choice
2069 (const wl)
2070 (const wl-other-frame)))))
2072 (defcustom org-display-internal-link-with-indirect-buffer nil
2073 "Non-nil means use indirect buffer to display infile links.
2074 Activating internal links (from one location in a file to another location
2075 in the same file) normally just jumps to the location. When the link is
2076 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2077 is displayed in
2078 another window. When this option is set, the other window actually displays
2079 an indirect buffer clone of the current buffer, to avoid any visibility
2080 changes to the current buffer."
2081 :group 'org-link-follow
2082 :type 'boolean)
2084 (defcustom org-open-non-existing-files nil
2085 "Non-nil means `org-open-file' will open non-existing files.
2086 When nil, an error will be generated.
2087 This variable applies only to external applications because they
2088 might choke on non-existing files. If the link is to a file that
2089 will be opened in Emacs, the variable is ignored."
2090 :group 'org-link-follow
2091 :type 'boolean)
2093 (defcustom org-open-directory-means-index-dot-org nil
2094 "Non-nil means a link to a directory really means to index.org.
2095 When nil, following a directory link will run dired or open a finder/explorer
2096 window on that directory."
2097 :group 'org-link-follow
2098 :type 'boolean)
2100 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2101 "Non-nil means ask for confirmation before executing shell links.
2102 Shell links can be dangerous: just think about a link
2104 [[shell:rm -rf ~/*][Google Search]]
2106 This link would show up in your Org-mode document as \"Google Search\",
2107 but really it would remove your entire home directory.
2108 Therefore we advise against setting this variable to nil.
2109 Just change it to `y-or-n-p' if you want to confirm with a
2110 single keystroke rather than having to type \"yes\"."
2111 :group 'org-link-follow
2112 :type '(choice
2113 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2114 (const :tag "with y-or-n (faster)" y-or-n-p)
2115 (const :tag "no confirmation (dangerous)" nil)))
2116 (put 'org-confirm-shell-link-function
2117 'safe-local-variable
2118 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2120 (defcustom org-confirm-shell-link-not-regexp ""
2121 "A regexp to skip confirmation for shell links."
2122 :group 'org-link-follow
2123 :version "24.1"
2124 :type 'regexp)
2126 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2127 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2128 Elisp links can be dangerous: just think about a link
2130 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2132 This link would show up in your Org-mode document as \"Google Search\",
2133 but really it would remove your entire home directory.
2134 Therefore we advise against setting this variable to nil.
2135 Just change it to `y-or-n-p' if you want to confirm with a
2136 single keystroke rather than having to type \"yes\"."
2137 :group 'org-link-follow
2138 :type '(choice
2139 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2140 (const :tag "with y-or-n (faster)" y-or-n-p)
2141 (const :tag "no confirmation (dangerous)" nil)))
2142 (put 'org-confirm-shell-link-function
2143 'safe-local-variable
2144 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2146 (defcustom org-confirm-elisp-link-not-regexp ""
2147 "A regexp to skip confirmation for Elisp links."
2148 :group 'org-link-follow
2149 :version "24.1"
2150 :type 'regexp)
2152 (defconst org-file-apps-defaults-gnu
2153 '((remote . emacs)
2154 (system . mailcap)
2155 (t . mailcap))
2156 "Default file applications on a UNIX or GNU/Linux system.
2157 See `org-file-apps'.")
2159 (defconst org-file-apps-defaults-macosx
2160 '((remote . emacs)
2161 (t . "open %s")
2162 (system . "open %s")
2163 ("ps.gz" . "gv %s")
2164 ("eps.gz" . "gv %s")
2165 ("dvi" . "xdvi %s")
2166 ("fig" . "xfig %s"))
2167 "Default file applications on a MacOS X system.
2168 The system \"open\" is known as a default, but we use X11 applications
2169 for some files for which the OS does not have a good default.
2170 See `org-file-apps'.")
2172 (defconst org-file-apps-defaults-windowsnt
2173 (list
2174 '(remote . emacs)
2175 (cons t
2176 (list (if (featurep 'xemacs)
2177 'mswindows-shell-execute
2178 'w32-shell-execute)
2179 "open" 'file))
2180 (cons 'system
2181 (list (if (featurep 'xemacs)
2182 'mswindows-shell-execute
2183 'w32-shell-execute)
2184 "open" 'file)))
2185 "Default file applications on a Windows NT system.
2186 The system \"open\" is used for most files.
2187 See `org-file-apps'.")
2189 (defcustom org-file-apps
2190 '((auto-mode . emacs)
2191 ("\\.mm\\'" . default)
2192 ("\\.x?html?\\'" . default)
2193 ("\\.pdf\\'" . default))
2194 "External applications for opening `file:path' items in a document.
2195 Org-mode uses system defaults for different file types, but
2196 you can use this variable to set the application for a given file
2197 extension. The entries in this list are cons cells where the car identifies
2198 files and the cdr the corresponding command. Possible values for the
2199 file identifier are
2200 \"string\" A string as a file identifier can be interpreted in different
2201 ways, depending on its contents:
2203 - Alphanumeric characters only:
2204 Match links with this file extension.
2205 Example: (\"pdf\" . \"evince %s\")
2206 to open PDFs with evince.
2208 - Regular expression: Match links where the
2209 filename matches the regexp. If you want to
2210 use groups here, use shy groups.
2212 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2213 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2214 to open *.html and *.xhtml with firefox.
2216 - Regular expression which contains (non-shy) groups:
2217 Match links where the whole link, including \"::\", and
2218 anything after that, matches the regexp.
2219 In a custom command string, %1, %2, etc. are replaced with
2220 the parts of the link that were matched by the groups.
2221 For backwards compatibility, if a command string is given
2222 that does not use any of the group matches, this case is
2223 handled identically to the second one (i.e. match against
2224 file name only).
2225 In a custom lisp form, you can access the group matches with
2226 (match-string n link).
2228 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2229 to open [[file:document.pdf::5]] with evince at page 5.
2231 `directory' Matches a directory
2232 `remote' Matches a remote file, accessible through tramp or efs.
2233 Remote files most likely should be visited through Emacs
2234 because external applications cannot handle such paths.
2235 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2236 so all files Emacs knows how to handle. Using this with
2237 command `emacs' will open most files in Emacs. Beware that this
2238 will also open html files inside Emacs, unless you add
2239 (\"html\" . default) to the list as well.
2240 t Default for files not matched by any of the other options.
2241 `system' The system command to open files, like `open' on Windows
2242 and Mac OS X, and mailcap under GNU/Linux. This is the command
2243 that will be selected if you call `C-c C-o' with a double
2244 \\[universal-argument] \\[universal-argument] prefix.
2246 Possible values for the command are:
2247 `emacs' The file will be visited by the current Emacs process.
2248 `default' Use the default application for this file type, which is the
2249 association for t in the list, most likely in the system-specific
2250 part.
2251 This can be used to overrule an unwanted setting in the
2252 system-specific variable.
2253 `system' Use the system command for opening files, like \"open\".
2254 This command is specified by the entry whose car is `system'.
2255 Most likely, the system-specific version of this variable
2256 does define this command, but you can overrule/replace it
2257 here.
2258 string A command to be executed by a shell; %s will be replaced
2259 by the path to the file.
2260 sexp A Lisp form which will be evaluated. The file path will
2261 be available in the Lisp variable `file'.
2262 For more examples, see the system specific constants
2263 `org-file-apps-defaults-macosx'
2264 `org-file-apps-defaults-windowsnt'
2265 `org-file-apps-defaults-gnu'."
2266 :group 'org-link-follow
2267 :type '(repeat
2268 (cons (choice :value ""
2269 (string :tag "Extension")
2270 (const :tag "System command to open files" system)
2271 (const :tag "Default for unrecognized files" t)
2272 (const :tag "Remote file" remote)
2273 (const :tag "Links to a directory" directory)
2274 (const :tag "Any files that have Emacs modes"
2275 auto-mode))
2276 (choice :value ""
2277 (const :tag "Visit with Emacs" emacs)
2278 (const :tag "Use default" default)
2279 (const :tag "Use the system command" system)
2280 (string :tag "Command")
2281 (sexp :tag "Lisp form")))))
2283 (defcustom org-doi-server-url "http://dx.doi.org/"
2284 "The URL of the DOI server."
2285 :type 'string
2286 :version "24.3"
2287 :group 'org-link-follow)
2289 (defgroup org-refile nil
2290 "Options concerning refiling entries in Org-mode."
2291 :tag "Org Refile"
2292 :group 'org)
2294 (defcustom org-directory "~/org"
2295 "Directory with org files.
2296 This is just a default location to look for Org files. There is no need
2297 at all to put your files into this directory. It is only used in the
2298 following situations:
2300 1. When a capture template specifies a target file that is not an
2301 absolute path. The path will then be interpreted relative to
2302 `org-directory'
2303 2. When a capture note is filed away in an interactive way (when exiting the
2304 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2305 with `org-directory' as the default path."
2306 :group 'org-refile
2307 :group 'org-capture
2308 :type 'directory)
2310 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2311 "Default target for storing notes.
2312 Used as a fall back file for org-capture.el, for templates that
2313 do not specify a target file."
2314 :group 'org-refile
2315 :group 'org-capture
2316 :type '(choice
2317 (const :tag "Default from remember-data-file" nil)
2318 file))
2320 (defcustom org-goto-interface 'outline
2321 "The default interface to be used for `org-goto'.
2322 Allowed values are:
2323 outline The interface shows an outline of the relevant file
2324 and the correct heading is found by moving through
2325 the outline or by searching with incremental search.
2326 outline-path-completion Headlines in the current buffer are offered via
2327 completion. This is the interface also used by
2328 the refile command."
2329 :group 'org-refile
2330 :type '(choice
2331 (const :tag "Outline" outline)
2332 (const :tag "Outline-path-completion" outline-path-completion)))
2334 (defcustom org-goto-max-level 5
2335 "Maximum target level when running `org-goto' with refile interface."
2336 :group 'org-refile
2337 :type 'integer)
2339 (defcustom org-reverse-note-order nil
2340 "Non-nil means store new notes at the beginning of a file or entry.
2341 When nil, new notes will be filed to the end of a file or entry.
2342 This can also be a list with cons cells of regular expressions that
2343 are matched against file names, and values."
2344 :group 'org-capture
2345 :group 'org-refile
2346 :type '(choice
2347 (const :tag "Reverse always" t)
2348 (const :tag "Reverse never" nil)
2349 (repeat :tag "By file name regexp"
2350 (cons regexp boolean))))
2352 (defcustom org-log-refile nil
2353 "Information to record when a task is refiled.
2355 Possible values are:
2357 nil Don't add anything
2358 time Add a time stamp to the task
2359 note Prompt for a note and add it with template `org-log-note-headings'
2361 This option can also be set with on a per-file-basis with
2363 #+STARTUP: nologrefile
2364 #+STARTUP: logrefile
2365 #+STARTUP: lognoterefile
2367 You can have local logging settings for a subtree by setting the LOGGING
2368 property to one or more of these keywords.
2370 When bulk-refiling from the agenda, the value `note' is forbidden and
2371 will temporarily be changed to `time'."
2372 :group 'org-refile
2373 :group 'org-progress
2374 :version "24.1"
2375 :type '(choice
2376 (const :tag "No logging" nil)
2377 (const :tag "Record timestamp" time)
2378 (const :tag "Record timestamp with note." note)))
2380 (defcustom org-refile-targets nil
2381 "Targets for refiling entries with \\[org-refile].
2382 This is a list of cons cells. Each cell contains:
2383 - a specification of the files to be considered, either a list of files,
2384 or a symbol whose function or variable value will be used to retrieve
2385 a file name or a list of file names. If you use `org-agenda-files' for
2386 that, all agenda files will be scanned for targets. Nil means consider
2387 headings in the current buffer.
2388 - A specification of how to find candidate refile targets. This may be
2389 any of:
2390 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2391 This tag has to be present in all target headlines, inheritance will
2392 not be considered.
2393 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2394 todo keyword.
2395 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2396 headlines that are refiling targets.
2397 - a cons cell (:level . N). Any headline of level N is considered a target.
2398 Note that, when `org-odd-levels-only' is set, level corresponds to
2399 order in hierarchy, not to the number of stars.
2400 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2404 Each element of this list generates a set of possible targets.
2405 The union of these sets is presented (with completion) to
2406 the user by `org-refile'.
2408 You can set the variable `org-refile-target-verify-function' to a function
2409 to verify each headline found by the simple criteria above.
2411 When this variable is nil, all top-level headlines in the current buffer
2412 are used, equivalent to the value `((nil . (:level . 1))'."
2413 :group 'org-refile
2414 :type '(repeat
2415 (cons
2416 (choice :value org-agenda-files
2417 (const :tag "All agenda files" org-agenda-files)
2418 (const :tag "Current buffer" nil)
2419 (function) (variable) (file))
2420 (choice :tag "Identify target headline by"
2421 (cons :tag "Specific tag" (const :value :tag) (string))
2422 (cons :tag "TODO keyword" (const :value :todo) (string))
2423 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2424 (cons :tag "Level number" (const :value :level) (integer))
2425 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2427 (defcustom org-refile-target-verify-function nil
2428 "Function to verify if the headline at point should be a refile target.
2429 The function will be called without arguments, with point at the
2430 beginning of the headline. It should return t and leave point
2431 where it is if the headline is a valid target for refiling.
2433 If the target should not be selected, the function must return nil.
2434 In addition to this, it may move point to a place from where the search
2435 should be continued. For example, the function may decide that the entire
2436 subtree of the current entry should be excluded and move point to the end
2437 of the subtree."
2438 :group 'org-refile
2439 :type '(choice
2440 (const nil)
2441 (function)))
2443 (defcustom org-refile-use-cache nil
2444 "Non-nil means cache refile targets to speed up the process.
2445 The cache for a particular file will be updated automatically when
2446 the buffer has been killed, or when any of the marker used for flagging
2447 refile targets no longer points at a live buffer.
2448 If you have added new entries to a buffer that might themselves be targets,
2449 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2450 find that easier, `C-u C-u C-u C-c C-w'."
2451 :group 'org-refile
2452 :version "24.1"
2453 :type 'boolean)
2455 (defcustom org-refile-use-outline-path nil
2456 "Non-nil means provide refile targets as paths.
2457 So a level 3 headline will be available as level1/level2/level3.
2459 When the value is `file', also include the file name (without directory)
2460 into the path. In this case, you can also stop the completion after
2461 the file name, to get entries inserted as top level in the file.
2463 When `full-file-path', include the full file path."
2464 :group 'org-refile
2465 :type '(choice
2466 (const :tag "Not" nil)
2467 (const :tag "Yes" t)
2468 (const :tag "Start with file name" file)
2469 (const :tag "Start with full file path" full-file-path)))
2471 (defcustom org-outline-path-complete-in-steps t
2472 "Non-nil means complete the outline path in hierarchical steps.
2473 When Org-mode uses the refile interface to select an outline path
2474 \(see variable `org-refile-use-outline-path'), the completion of
2475 the path can be done is a single go, or if can be done in steps down
2476 the headline hierarchy. Going in steps is probably the best if you
2477 do not use a special completion package like `ido' or `icicles'.
2478 However, when using these packages, going in one step can be very
2479 fast, while still showing the whole path to the entry."
2480 :group 'org-refile
2481 :type 'boolean)
2483 (defcustom org-refile-allow-creating-parent-nodes nil
2484 "Non-nil means allow to create new nodes as refile targets.
2485 New nodes are then created by adding \"/new node name\" to the completion
2486 of an existing node. When the value of this variable is `confirm',
2487 new node creation must be confirmed by the user (recommended).
2488 When nil, the completion must match an existing entry.
2490 Note that, if the new heading is not seen by the criteria
2491 listed in `org-refile-targets', multiple instances of the same
2492 heading would be created by trying again to file under the new
2493 heading."
2494 :group 'org-refile
2495 :type '(choice
2496 (const :tag "Never" nil)
2497 (const :tag "Always" t)
2498 (const :tag "Prompt for confirmation" confirm)))
2500 (defcustom org-refile-active-region-within-subtree nil
2501 "Non-nil means also refile active region within a subtree.
2503 By default `org-refile' doesn't allow refiling regions if they
2504 don't contain a set of subtrees, but it might be convenient to
2505 do so sometimes: in that case, the first line of the region is
2506 converted to a headline before refiling."
2507 :group 'org-refile
2508 :version "24.1"
2509 :type 'boolean)
2511 (defgroup org-todo nil
2512 "Options concerning TODO items in Org-mode."
2513 :tag "Org TODO"
2514 :group 'org)
2516 (defgroup org-progress nil
2517 "Options concerning Progress logging in Org-mode."
2518 :tag "Org Progress"
2519 :group 'org-time)
2521 (defvar org-todo-interpretation-widgets
2522 '((:tag "Sequence (cycling hits every state)" sequence)
2523 (:tag "Type (cycling directly to DONE)" type))
2524 "The available interpretation symbols for customizing `org-todo-keywords'.
2525 Interested libraries should add to this list.")
2527 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2528 "List of TODO entry keyword sequences and their interpretation.
2529 \\<org-mode-map>This is a list of sequences.
2531 Each sequence starts with a symbol, either `sequence' or `type',
2532 indicating if the keywords should be interpreted as a sequence of
2533 action steps, or as different types of TODO items. The first
2534 keywords are states requiring action - these states will select a headline
2535 for inclusion into the global TODO list Org-mode produces. If one of
2536 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2537 signify that no further action is necessary. If \"|\" is not found,
2538 the last keyword is treated as the only DONE state of the sequence.
2540 The command \\[org-todo] cycles an entry through these states, and one
2541 additional state where no keyword is present. For details about this
2542 cycling, see the manual.
2544 TODO keywords and interpretation can also be set on a per-file basis with
2545 the special #+SEQ_TODO and #+TYP_TODO lines.
2547 Each keyword can optionally specify a character for fast state selection
2548 \(in combination with the variable `org-use-fast-todo-selection')
2549 and specifiers for state change logging, using the same syntax that
2550 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2551 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2552 indicates to record a time stamp each time this state is selected.
2554 Each keyword may also specify if a timestamp or a note should be
2555 recorded when entering or leaving the state, by adding additional
2556 characters in the parenthesis after the keyword. This looks like this:
2557 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2558 record only the time of the state change. With X and Y being either
2559 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2560 Y when leaving the state if and only if the *target* state does not
2561 define X. You may omit any of the fast-selection key or X or /Y,
2562 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2564 For backward compatibility, this variable may also be just a list
2565 of keywords. In this case the interpretation (sequence or type) will be
2566 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2567 :group 'org-todo
2568 :group 'org-keywords
2569 :type '(choice
2570 (repeat :tag "Old syntax, just keywords"
2571 (string :tag "Keyword"))
2572 (repeat :tag "New syntax"
2573 (cons
2574 (choice
2575 :tag "Interpretation"
2576 ;;Quick and dirty way to see
2577 ;;`org-todo-interpretations'. This takes the
2578 ;;place of item arguments
2579 :convert-widget
2580 (lambda (widget)
2581 (widget-put widget
2582 :args (mapcar
2583 (lambda (x)
2584 (widget-convert
2585 (cons 'const x)))
2586 org-todo-interpretation-widgets))
2587 widget))
2588 (repeat
2589 (string :tag "Keyword"))))))
2591 (defvar org-todo-keywords-1 nil
2592 "All TODO and DONE keywords active in a buffer.")
2593 (make-variable-buffer-local 'org-todo-keywords-1)
2594 (defvar org-todo-keywords-for-agenda nil)
2595 (defvar org-done-keywords-for-agenda nil)
2596 (defvar org-todo-keyword-alist-for-agenda nil)
2597 (defvar org-tag-alist-for-agenda nil
2598 "Alist of all tags from all agenda files.")
2599 (defvar org-tag-groups-alist-for-agenda nil
2600 "Alist of all groups tags from all current agenda files.")
2601 (defvar org-tag-groups-alist nil)
2602 (make-variable-buffer-local 'org-tag-groups-alist)
2603 (defvar org-agenda-contributing-files nil)
2604 (defvar org-not-done-keywords nil)
2605 (make-variable-buffer-local 'org-not-done-keywords)
2606 (defvar org-done-keywords nil)
2607 (make-variable-buffer-local 'org-done-keywords)
2608 (defvar org-todo-heads nil)
2609 (make-variable-buffer-local 'org-todo-heads)
2610 (defvar org-todo-sets nil)
2611 (make-variable-buffer-local 'org-todo-sets)
2612 (defvar org-todo-log-states nil)
2613 (make-variable-buffer-local 'org-todo-log-states)
2614 (defvar org-todo-kwd-alist nil)
2615 (make-variable-buffer-local 'org-todo-kwd-alist)
2616 (defvar org-todo-key-alist nil)
2617 (make-variable-buffer-local 'org-todo-key-alist)
2618 (defvar org-todo-key-trigger nil)
2619 (make-variable-buffer-local 'org-todo-key-trigger)
2621 (defcustom org-todo-interpretation 'sequence
2622 "Controls how TODO keywords are interpreted.
2623 This variable is in principle obsolete and is only used for
2624 backward compatibility, if the interpretation of todo keywords is
2625 not given already in `org-todo-keywords'. See that variable for
2626 more information."
2627 :group 'org-todo
2628 :group 'org-keywords
2629 :type '(choice (const sequence)
2630 (const type)))
2632 (defcustom org-use-fast-todo-selection t
2633 "Non-nil means use the fast todo selection scheme with C-c C-t.
2634 This variable describes if and under what circumstances the cycling
2635 mechanism for TODO keywords will be replaced by a single-key, direct
2636 selection scheme.
2638 When nil, fast selection is never used.
2640 When the symbol `prefix', it will be used when `org-todo' is called
2641 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2642 `C-u t' in an agenda buffer.
2644 When t, fast selection is used by default. In this case, the prefix
2645 argument forces cycling instead.
2647 In all cases, the special interface is only used if access keys have
2648 actually been assigned by the user, i.e. if keywords in the configuration
2649 are followed by a letter in parenthesis, like TODO(t)."
2650 :group 'org-todo
2651 :type '(choice
2652 (const :tag "Never" nil)
2653 (const :tag "By default" t)
2654 (const :tag "Only with C-u C-c C-t" prefix)))
2656 (defcustom org-provide-todo-statistics t
2657 "Non-nil means update todo statistics after insert and toggle.
2658 ALL-HEADLINES means update todo statistics by including headlines
2659 with no TODO keyword as well, counting them as not done.
2660 A list of TODO keywords means the same, but skip keywords that are
2661 not in this list.
2662 When set to a list of two lists, the first list contains keywords
2663 to consider as TODO keywords, the second list contains keywords
2664 to consider as DONE keywords.
2666 When this is set, todo statistics is updated in the parent of the
2667 current entry each time a todo state is changed."
2668 :group 'org-todo
2669 :type '(choice
2670 (const :tag "Yes, only for TODO entries" t)
2671 (const :tag "Yes, including all entries" all-headlines)
2672 (repeat :tag "Yes, for TODOs in this list"
2673 (string :tag "TODO keyword"))
2674 (list :tag "Yes, for TODOs and DONEs in these lists"
2675 (repeat (string :tag "TODO keyword"))
2676 (repeat (string :tag "DONE keyword")))
2677 (other :tag "No TODO statistics" nil)))
2679 (defcustom org-hierarchical-todo-statistics t
2680 "Non-nil means TODO statistics covers just direct children.
2681 When nil, all entries in the subtree are considered.
2682 This has only an effect if `org-provide-todo-statistics' is set.
2683 To set this to nil for only a single subtree, use a COOKIE_DATA
2684 property and include the word \"recursive\" into the value."
2685 :group 'org-todo
2686 :type 'boolean)
2688 (defcustom org-after-todo-state-change-hook nil
2689 "Hook which is run after the state of a TODO item was changed.
2690 The new state (a string with a TODO keyword, or nil) is available in the
2691 Lisp variable `org-state'."
2692 :group 'org-todo
2693 :type 'hook)
2695 (defvar org-blocker-hook nil
2696 "Hook for functions that are allowed to block a state change.
2698 Functions in this hook should not modify the buffer.
2699 Each function gets as its single argument a property list,
2700 see `org-trigger-hook' for more information about this list.
2702 If any of the functions in this hook returns nil, the state change
2703 is blocked.")
2705 (defvar org-trigger-hook nil
2706 "Hook for functions that are triggered by a state change.
2708 Each function gets as its single argument a property list with at
2709 least the following elements:
2711 (:type type-of-change :position pos-at-entry-start
2712 :from old-state :to new-state)
2714 Depending on the type, more properties may be present.
2716 This mechanism is currently implemented for:
2718 TODO state changes
2719 ------------------
2720 :type todo-state-change
2721 :from previous state (keyword as a string), or nil, or a symbol
2722 'todo' or 'done', to indicate the general type of state.
2723 :to new state, like in :from")
2725 (defcustom org-enforce-todo-dependencies nil
2726 "Non-nil means undone TODO entries will block switching the parent to DONE.
2727 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2728 be blocked if any prior sibling is not yet done.
2729 Finally, if the parent is blocked because of ordered siblings of its own,
2730 the child will also be blocked."
2731 :set (lambda (var val)
2732 (set var val)
2733 (if val
2734 (add-hook 'org-blocker-hook
2735 'org-block-todo-from-children-or-siblings-or-parent)
2736 (remove-hook 'org-blocker-hook
2737 'org-block-todo-from-children-or-siblings-or-parent)))
2738 :group 'org-todo
2739 :type 'boolean)
2741 (defcustom org-enforce-todo-checkbox-dependencies nil
2742 "Non-nil means unchecked boxes will block switching the parent to DONE.
2743 When this is nil, checkboxes have no influence on switching TODO states.
2744 When non-nil, you first need to check off all check boxes before the TODO
2745 entry can be switched to DONE.
2746 This variable needs to be set before org.el is loaded, and you need to
2747 restart Emacs after a change to make the change effective. The only way
2748 to change is while Emacs is running is through the customize interface."
2749 :set (lambda (var val)
2750 (set var val)
2751 (if val
2752 (add-hook 'org-blocker-hook
2753 'org-block-todo-from-checkboxes)
2754 (remove-hook 'org-blocker-hook
2755 'org-block-todo-from-checkboxes)))
2756 :group 'org-todo
2757 :type 'boolean)
2759 (defcustom org-treat-insert-todo-heading-as-state-change nil
2760 "Non-nil means inserting a TODO heading is treated as state change.
2761 So when the command \\[org-insert-todo-heading] is used, state change
2762 logging will apply if appropriate. When nil, the new TODO item will
2763 be inserted directly, and no logging will take place."
2764 :group 'org-todo
2765 :type 'boolean)
2767 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2768 "Non-nil means switching TODO states with S-cursor counts as state change.
2769 This is the default behavior. However, setting this to nil allows a
2770 convenient way to select a TODO state and bypass any logging associated
2771 with that."
2772 :group 'org-todo
2773 :type 'boolean)
2775 (defcustom org-todo-state-tags-triggers nil
2776 "Tag changes that should be triggered by TODO state changes.
2777 This is a list. Each entry is
2779 (state-change (tag . flag) .......)
2781 State-change can be a string with a state, and empty string to indicate the
2782 state that has no TODO keyword, or it can be one of the symbols `todo'
2783 or `done', meaning any not-done or done state, respectively."
2784 :group 'org-todo
2785 :group 'org-tags
2786 :type '(repeat
2787 (cons (choice :tag "When changing to"
2788 (const :tag "Not-done state" todo)
2789 (const :tag "Done state" done)
2790 (string :tag "State"))
2791 (repeat
2792 (cons :tag "Tag action"
2793 (string :tag "Tag")
2794 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2796 (defcustom org-log-done nil
2797 "Information to record when a task moves to the DONE state.
2799 Possible values are:
2801 nil Don't add anything, just change the keyword
2802 time Add a time stamp to the task
2803 note Prompt for a note and add it with template `org-log-note-headings'
2805 This option can also be set with on a per-file-basis with
2807 #+STARTUP: nologdone
2808 #+STARTUP: logdone
2809 #+STARTUP: lognotedone
2811 You can have local logging settings for a subtree by setting the LOGGING
2812 property to one or more of these keywords."
2813 :group 'org-todo
2814 :group 'org-progress
2815 :type '(choice
2816 (const :tag "No logging" nil)
2817 (const :tag "Record CLOSED timestamp" time)
2818 (const :tag "Record CLOSED timestamp with note." note)))
2820 ;; Normalize old uses of org-log-done.
2821 (cond
2822 ((eq org-log-done t) (setq org-log-done 'time))
2823 ((and (listp org-log-done) (memq 'done org-log-done))
2824 (setq org-log-done 'note)))
2826 (defcustom org-log-reschedule nil
2827 "Information to record when the scheduling date of a tasks is modified.
2829 Possible values are:
2831 nil Don't add anything, just change the date
2832 time Add a time stamp to the task
2833 note Prompt for a note and add it with template `org-log-note-headings'
2835 This option can also be set with on a per-file-basis with
2837 #+STARTUP: nologreschedule
2838 #+STARTUP: logreschedule
2839 #+STARTUP: lognotereschedule"
2840 :group 'org-todo
2841 :group 'org-progress
2842 :type '(choice
2843 (const :tag "No logging" nil)
2844 (const :tag "Record timestamp" time)
2845 (const :tag "Record timestamp with note." note)))
2847 (defcustom org-log-redeadline nil
2848 "Information to record when the deadline date of a tasks is modified.
2850 Possible values are:
2852 nil Don't add anything, just change the date
2853 time Add a time stamp to the task
2854 note Prompt for a note and add it with template `org-log-note-headings'
2856 This option can also be set with on a per-file-basis with
2858 #+STARTUP: nologredeadline
2859 #+STARTUP: logredeadline
2860 #+STARTUP: lognoteredeadline
2862 You can have local logging settings for a subtree by setting the LOGGING
2863 property to one or more of these keywords."
2864 :group 'org-todo
2865 :group 'org-progress
2866 :type '(choice
2867 (const :tag "No logging" nil)
2868 (const :tag "Record timestamp" time)
2869 (const :tag "Record timestamp with note." note)))
2871 (defcustom org-log-note-clock-out nil
2872 "Non-nil means record a note when clocking out of an item.
2873 This can also be configured on a per-file basis by adding one of
2874 the following lines anywhere in the buffer:
2876 #+STARTUP: lognoteclock-out
2877 #+STARTUP: nolognoteclock-out"
2878 :group 'org-todo
2879 :group 'org-progress
2880 :type 'boolean)
2882 (defcustom org-log-done-with-time t
2883 "Non-nil means the CLOSED time stamp will contain date and time.
2884 When nil, only the date will be recorded."
2885 :group 'org-progress
2886 :type 'boolean)
2888 (defcustom org-log-note-headings
2889 '((done . "CLOSING NOTE %t")
2890 (state . "State %-12s from %-12S %t")
2891 (note . "Note taken on %t")
2892 (reschedule . "Rescheduled from %S on %t")
2893 (delschedule . "Not scheduled, was %S on %t")
2894 (redeadline . "New deadline from %S on %t")
2895 (deldeadline . "Removed deadline, was %S on %t")
2896 (refile . "Refiled on %t")
2897 (clock-out . ""))
2898 "Headings for notes added to entries.
2899 The value is an alist, with the car being a symbol indicating the note
2900 context, and the cdr is the heading to be used. The heading may also be the
2901 empty string.
2902 %t in the heading will be replaced by a time stamp.
2903 %T will be an active time stamp instead the default inactive one
2904 %d will be replaced by a short-format time stamp.
2905 %D will be replaced by an active short-format time stamp.
2906 %s will be replaced by the new TODO state, in double quotes.
2907 %S will be replaced by the old TODO state, in double quotes.
2908 %u will be replaced by the user name.
2909 %U will be replaced by the full user name.
2911 In fact, it is not a good idea to change the `state' entry, because
2912 agenda log mode depends on the format of these entries."
2913 :group 'org-todo
2914 :group 'org-progress
2915 :type '(list :greedy t
2916 (cons (const :tag "Heading when closing an item" done) string)
2917 (cons (const :tag
2918 "Heading when changing todo state (todo sequence only)"
2919 state) string)
2920 (cons (const :tag "Heading when just taking a note" note) string)
2921 (cons (const :tag "Heading when rescheduling" reschedule) string)
2922 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2923 (cons (const :tag "Heading when changing deadline" redeadline) string)
2924 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2925 (cons (const :tag "Heading when refiling" refile) string)
2926 (cons (const :tag "Heading when clocking out" clock-out) string)))
2928 (unless (assq 'note org-log-note-headings)
2929 (push '(note . "%t") org-log-note-headings))
2931 (defcustom org-log-into-drawer nil
2932 "Non-nil means insert state change notes and time stamps into a drawer.
2933 When nil, state changes notes will be inserted after the headline and
2934 any scheduling and clock lines, but not inside a drawer.
2936 The value of this variable should be the name of the drawer to use.
2937 LOGBOOK is proposed as the default drawer for this purpose, you can
2938 also set this to a string to define the drawer of your choice.
2940 A value of t is also allowed, representing \"LOGBOOK\".
2942 A value of t or nil can also be set with on a per-file-basis with
2944 #+STARTUP: logdrawer
2945 #+STARTUP: nologdrawer
2947 If this variable is set, `org-log-state-notes-insert-after-drawers'
2948 will be ignored.
2950 You can set the property LOG_INTO_DRAWER to overrule this setting for
2951 a subtree.
2953 Do not check directly this variable in a Lisp program. Call
2954 function `org-log-into-drawer' instead."
2955 :group 'org-todo
2956 :group 'org-progress
2957 :type '(choice
2958 (const :tag "Not into a drawer" nil)
2959 (const :tag "LOGBOOK" t)
2960 (string :tag "Other")))
2962 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2964 (defun org-log-into-drawer ()
2965 "Name of the log drawer, as a string, or nil.
2966 This is the value of `org-log-into-drawer'. However, if the
2967 current entry has or inherits a LOG_INTO_DRAWER property, it will
2968 be used instead of the default value."
2969 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2970 (cond ((equal p "nil") nil)
2971 ((equal p "t") "LOGBOOK")
2972 ((stringp p) p)
2973 (p "LOGBOOK")
2974 ((stringp org-log-into-drawer) org-log-into-drawer)
2975 (org-log-into-drawer "LOGBOOK"))))
2977 (defcustom org-log-state-notes-insert-after-drawers nil
2978 "Non-nil means insert state change notes after any drawers in entry.
2979 Only the drawers that *immediately* follow the headline and the
2980 deadline/scheduled line are skipped.
2981 When nil, insert notes right after the heading and perhaps the line
2982 with deadline/scheduling if present.
2984 This variable will have no effect if `org-log-into-drawer' is
2985 set."
2986 :group 'org-todo
2987 :group 'org-progress
2988 :type 'boolean)
2990 (defcustom org-log-states-order-reversed t
2991 "Non-nil means the latest state note will be directly after heading.
2992 When nil, the state change notes will be ordered according to time.
2994 This option can also be set with on a per-file-basis with
2996 #+STARTUP: logstatesreversed
2997 #+STARTUP: nologstatesreversed"
2998 :group 'org-todo
2999 :group 'org-progress
3000 :type 'boolean)
3002 (defcustom org-todo-repeat-to-state nil
3003 "The TODO state to which a repeater should return the repeating task.
3004 By default this is the first task in a TODO sequence, or the previous state
3005 in a TODO_TYP set. But you can specify another task here.
3006 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3007 :group 'org-todo
3008 :version "24.1"
3009 :type '(choice (const :tag "Head of sequence" nil)
3010 (string :tag "Specific state")))
3012 (defcustom org-log-repeat 'time
3013 "Non-nil means record moving through the DONE state when triggering repeat.
3014 An auto-repeating task is immediately switched back to TODO when
3015 marked DONE. If you are not logging state changes (by adding \"@\"
3016 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3017 record a closing note, there will be no record of the task moving
3018 through DONE. This variable forces taking a note anyway.
3020 nil Don't force a record
3021 time Record a time stamp
3022 note Prompt for a note and add it with template `org-log-note-headings'
3024 This option can also be set with on a per-file-basis with
3026 #+STARTUP: nologrepeat
3027 #+STARTUP: logrepeat
3028 #+STARTUP: lognoterepeat
3030 You can have local logging settings for a subtree by setting the LOGGING
3031 property to one or more of these keywords."
3032 :group 'org-todo
3033 :group 'org-progress
3034 :type '(choice
3035 (const :tag "Don't force a record" nil)
3036 (const :tag "Force recording the DONE state" time)
3037 (const :tag "Force recording a note with the DONE state" note)))
3040 (defgroup org-priorities nil
3041 "Priorities in Org-mode."
3042 :tag "Org Priorities"
3043 :group 'org-todo)
3045 (defcustom org-enable-priority-commands t
3046 "Non-nil means priority commands are active.
3047 When nil, these commands will be disabled, so that you never accidentally
3048 set a priority."
3049 :group 'org-priorities
3050 :type 'boolean)
3052 (defcustom org-highest-priority ?A
3053 "The highest priority of TODO items. A character like ?A, ?B etc.
3054 Must have a smaller ASCII number than `org-lowest-priority'."
3055 :group 'org-priorities
3056 :type 'character)
3058 (defcustom org-lowest-priority ?C
3059 "The lowest priority of TODO items. A character like ?A, ?B etc.
3060 Must have a larger ASCII number than `org-highest-priority'."
3061 :group 'org-priorities
3062 :type 'character)
3064 (defcustom org-default-priority ?B
3065 "The default priority of TODO items.
3066 This is the priority an item gets if no explicit priority is given.
3067 When starting to cycle on an empty priority the first step in the cycle
3068 depends on `org-priority-start-cycle-with-default'. The resulting first
3069 step priority must not exceed the range from `org-highest-priority' to
3070 `org-lowest-priority' which means that `org-default-priority' has to be
3071 in this range exclusive or inclusive the range boundaries. Else the
3072 first step refuses to set the default and the second will fall back
3073 to (depending on the command used) the highest or lowest priority."
3074 :group 'org-priorities
3075 :type 'character)
3077 (defcustom org-priority-start-cycle-with-default t
3078 "Non-nil means start with default priority when starting to cycle.
3079 When this is nil, the first step in the cycle will be (depending on the
3080 command used) one higher or lower than the default priority.
3081 See also `org-default-priority'."
3082 :group 'org-priorities
3083 :type 'boolean)
3085 (defcustom org-get-priority-function nil
3086 "Function to extract the priority from a string.
3087 The string is normally the headline. If this is nil Org computes the
3088 priority from the priority cookie like [#A] in the headline. It returns
3089 an integer, increasing by 1000 for each priority level.
3090 The user can set a different function here, which should take a string
3091 as an argument and return the numeric priority."
3092 :group 'org-priorities
3093 :version "24.1"
3094 :type '(choice
3095 (const nil)
3096 (function)))
3098 (defgroup org-time nil
3099 "Options concerning time stamps and deadlines in Org-mode."
3100 :tag "Org Time"
3101 :group 'org)
3103 (defcustom org-time-stamp-rounding-minutes '(0 5)
3104 "Number of minutes to round time stamps to.
3105 These are two values, the first applies when first creating a time stamp.
3106 The second applies when changing it with the commands `S-up' and `S-down'.
3107 When changing the time stamp, this means that it will change in steps
3108 of N minutes, as given by the second value.
3110 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3111 numbers should be factors of 60, so for example 5, 10, 15.
3113 When this is larger than 1, you can still force an exact time stamp by using
3114 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3115 and by using a prefix arg to `S-up/down' to specify the exact number
3116 of minutes to shift."
3117 :group 'org-time
3118 :get (lambda (var) ; Make sure both elements are there
3119 (if (integerp (default-value var))
3120 (list (default-value var) 5)
3121 (default-value var)))
3122 :type '(list
3123 (integer :tag "when inserting times")
3124 (integer :tag "when modifying times")))
3126 ;; Normalize old customizations of this variable.
3127 (when (integerp org-time-stamp-rounding-minutes)
3128 (setq org-time-stamp-rounding-minutes
3129 (list org-time-stamp-rounding-minutes
3130 org-time-stamp-rounding-minutes)))
3132 (defcustom org-display-custom-times nil
3133 "Non-nil means overlay custom formats over all time stamps.
3134 The formats are defined through the variable `org-time-stamp-custom-formats'.
3135 To turn this on on a per-file basis, insert anywhere in the file:
3136 #+STARTUP: customtime"
3137 :group 'org-time
3138 :set 'set-default
3139 :type 'sexp)
3140 (make-variable-buffer-local 'org-display-custom-times)
3142 (defcustom org-time-stamp-custom-formats
3143 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3144 "Custom formats for time stamps. See `format-time-string' for the syntax.
3145 These are overlaid over the default ISO format if the variable
3146 `org-display-custom-times' is set. Time like %H:%M should be at the
3147 end of the second format. The custom formats are also honored by export
3148 commands, if custom time display is turned on at the time of export."
3149 :group 'org-time
3150 :type 'sexp)
3152 (defun org-time-stamp-format (&optional long inactive)
3153 "Get the right format for a time string."
3154 (let ((f (if long (cdr org-time-stamp-formats)
3155 (car org-time-stamp-formats))))
3156 (if inactive
3157 (concat "[" (substring f 1 -1) "]")
3158 f)))
3160 (defcustom org-time-clocksum-format
3161 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3162 "The format string used when creating CLOCKSUM lines.
3163 This is also used when Org mode generates a time duration.
3165 The value can be a single format string containing two
3166 %-sequences, which will be filled with the number of hours and
3167 minutes in that order.
3169 Alternatively, the value can be a plist associating any of the
3170 keys :years, :months, :weeks, :days, :hours or :minutes with
3171 format strings. The time duration is formatted using only the
3172 time components that are needed and concatenating the results.
3173 If a time unit in absent, it falls back to the next smallest
3174 unit.
3176 The keys :require-years, :require-months, :require-days,
3177 :require-weeks, :require-hours, :require-minutes are also
3178 meaningful. A non-nil value for these keys indicates that the
3179 corresponding time component should always be included, even if
3180 its value is 0.
3183 For example,
3185 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3186 :require-minutes t)
3188 means durations longer than a day will be expressed in days,
3189 hours and minutes, and durations less than a day will always be
3190 expressed in hours and minutes (even for durations less than an
3191 hour).
3193 The value
3195 \(:days \"%dd\" :minutes \"%dm\")
3197 means durations longer than a day will be expressed in days and
3198 minutes, and durations less than a day will be expressed entirely
3199 in minutes (even for durations longer than an hour)."
3200 :group 'org-time
3201 :group 'org-clock
3202 :version "24.4"
3203 :package-version '(Org . "8.0")
3204 :type '(choice (string :tag "Format string")
3205 (set :tag "Plist"
3206 (group :inline t (const :tag "Years" :years)
3207 (string :tag "Format string"))
3208 (group :inline t
3209 (const :tag "Always show years" :require-years)
3210 (const t))
3211 (group :inline t (const :tag "Months" :months)
3212 (string :tag "Format string"))
3213 (group :inline t
3214 (const :tag "Always show months" :require-months)
3215 (const t))
3216 (group :inline t (const :tag "Weeks" :weeks)
3217 (string :tag "Format string"))
3218 (group :inline t
3219 (const :tag "Always show weeks" :require-weeks)
3220 (const t))
3221 (group :inline t (const :tag "Days" :days)
3222 (string :tag "Format string"))
3223 (group :inline t
3224 (const :tag "Always show days" :require-days)
3225 (const t))
3226 (group :inline t (const :tag "Hours" :hours)
3227 (string :tag "Format string"))
3228 (group :inline t
3229 (const :tag "Always show hours" :require-hours)
3230 (const t))
3231 (group :inline t (const :tag "Minutes" :minutes)
3232 (string :tag "Format string"))
3233 (group :inline t
3234 (const :tag "Always show minutes" :require-minutes)
3235 (const t)))))
3237 (defcustom org-time-clocksum-use-fractional nil
3238 "When non-nil, \\[org-clock-display] uses fractional times.
3239 See `org-time-clocksum-format' for more on time clock formats."
3240 :group 'org-time
3241 :group 'org-clock
3242 :version "24.3"
3243 :type 'boolean)
3245 (defcustom org-time-clocksum-use-effort-durations nil
3246 "When non-nil, \\[org-clock-display] uses effort durations.
3247 E.g. by default, one day is considered to be a 8 hours effort,
3248 so a task that has been clocked for 16 hours will be displayed
3249 as during 2 days in the clock display or in the clocktable.
3251 See `org-effort-durations' on how to set effort durations
3252 and `org-time-clocksum-format' for more on time clock formats."
3253 :group 'org-time
3254 :group 'org-clock
3255 :version "24.4"
3256 :package-version '(Org . "8.0")
3257 :type 'boolean)
3259 (defcustom org-time-clocksum-fractional-format "%.2f"
3260 "The format string used when creating CLOCKSUM lines,
3261 or when Org mode generates a time duration, if
3262 `org-time-clocksum-use-fractional' is enabled.
3264 The value can be a single format string containing one
3265 %-sequence, which will be filled with the number of hours as
3266 a float.
3268 Alternatively, the value can be a plist associating any of the
3269 keys :years, :months, :weeks, :days, :hours or :minutes with
3270 a format string. The time duration is formatted using the
3271 largest time unit which gives a non-zero integer part. If all
3272 specified formats have zero integer part, the smallest time unit
3273 is used."
3274 :group 'org-time
3275 :type '(choice (string :tag "Format string")
3276 (set (group :inline t (const :tag "Years" :years)
3277 (string :tag "Format string"))
3278 (group :inline t (const :tag "Months" :months)
3279 (string :tag "Format string"))
3280 (group :inline t (const :tag "Weeks" :weeks)
3281 (string :tag "Format string"))
3282 (group :inline t (const :tag "Days" :days)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Hours" :hours)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Minutes" :minutes)
3287 (string :tag "Format string")))))
3289 (defcustom org-deadline-warning-days 14
3290 "Number of days before expiration during which a deadline becomes active.
3291 This variable governs the display in sparse trees and in the agenda.
3292 When 0 or negative, it means use this number (the absolute value of it)
3293 even if a deadline has a different individual lead time specified.
3295 Custom commands can set this variable in the options section."
3296 :group 'org-time
3297 :group 'org-agenda-daily/weekly
3298 :type 'integer)
3300 (defcustom org-scheduled-delay-days 0
3301 "Number of days before a scheduled item becomes active.
3302 This variable governs the display in sparse trees and in the agenda.
3303 The default value (i.e. 0) means: don't delay scheduled item.
3304 When negative, it means use this number (the absolute value of it)
3305 even if a scheduled item has a different individual delay time
3306 specified.
3308 Custom commands can set this variable in the options section."
3309 :group 'org-time
3310 :group 'org-agenda-daily/weekly
3311 :version "24.4"
3312 :package-version '(Org . "8.0")
3313 :type 'integer)
3315 (defcustom org-read-date-prefer-future t
3316 "Non-nil means assume future for incomplete date input from user.
3317 This affects the following situations:
3318 1. The user gives a month but not a year.
3319 For example, if it is April and you enter \"feb 2\", this will be read
3320 as Feb 2, *next* year. \"May 5\", however, will be this year.
3321 2. The user gives a day, but no month.
3322 For example, if today is the 15th, and you enter \"3\", Org-mode will
3323 read this as the third of *next* month. However, if you enter \"17\",
3324 it will be considered as *this* month.
3326 If you set this variable to the symbol `time', then also the following
3327 will work:
3329 3. If the user gives a time.
3330 If the time is before now, it will be interpreted as tomorrow.
3332 Currently none of this works for ISO week specifications.
3334 When this option is nil, the current day, month and year will always be
3335 used as defaults.
3337 See also `org-agenda-jump-prefer-future'."
3338 :group 'org-time
3339 :type '(choice
3340 (const :tag "Never" nil)
3341 (const :tag "Check month and day" t)
3342 (const :tag "Check month, day, and time" time)))
3344 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3345 "Should the agenda jump command prefer the future for incomplete dates?
3346 The default is to do the same as configured in `org-read-date-prefer-future'.
3347 But you can also set a deviating value here.
3348 This may t or nil, or the symbol `org-read-date-prefer-future'."
3349 :group 'org-agenda
3350 :group 'org-time
3351 :version "24.1"
3352 :type '(choice
3353 (const :tag "Use org-read-date-prefer-future"
3354 org-read-date-prefer-future)
3355 (const :tag "Never" nil)
3356 (const :tag "Always" t)))
3358 (defcustom org-read-date-force-compatible-dates t
3359 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3361 Depending on the system Emacs is running on, certain dates cannot
3362 be represented with the type used internally to represent time.
3363 Dates between 1970-1-1 and 2038-1-1 can always be represented
3364 correctly. Some systems allow for earlier dates, some for later,
3365 some for both. One way to find out it to insert any date into an
3366 Org buffer, putting the cursor on the year and hitting S-up and
3367 S-down to test the range.
3369 When this variable is set to t, the date/time prompt will not let
3370 you specify dates outside the 1970-2037 range, so it is certain that
3371 these dates will work in whatever version of Emacs you are
3372 running, and also that you can move a file from one Emacs implementation
3373 to another. WHenever Org is forcing the year for you, it will display
3374 a message and beep.
3376 When this variable is nil, Org will check if the date is
3377 representable in the specific Emacs implementation you are using.
3378 If not, it will force a year, usually the current year, and beep
3379 to remind you. Currently this setting is not recommended because
3380 the likelihood that you will open your Org files in an Emacs that
3381 has limited date range is not negligible.
3383 A workaround for this problem is to use diary sexp dates for time
3384 stamps outside of this range."
3385 :group 'org-time
3386 :version "24.1"
3387 :type 'boolean)
3389 (defcustom org-read-date-display-live t
3390 "Non-nil means display current interpretation of date prompt live.
3391 This display will be in an overlay, in the minibuffer."
3392 :group 'org-time
3393 :type 'boolean)
3395 (defcustom org-read-date-popup-calendar t
3396 "Non-nil means pop up a calendar when prompting for a date.
3397 In the calendar, the date can be selected with mouse-1. However, the
3398 minibuffer will also be active, and you can simply enter the date as well.
3399 When nil, only the minibuffer will be available."
3400 :group 'org-time
3401 :type 'boolean)
3402 (org-defvaralias 'org-popup-calendar-for-date-prompt
3403 'org-read-date-popup-calendar)
3405 (make-obsolete-variable
3406 'org-read-date-minibuffer-setup-hook
3407 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3408 (defcustom org-read-date-minibuffer-setup-hook nil
3409 "Hook to be used to set up keys for the date/time interface.
3410 Add key definitions to `minibuffer-local-map', which will be a
3411 temporary copy.
3413 WARNING: This option is obsolete, you should use
3414 `org-read-date-minibuffer-local-map' to set up keys."
3415 :group 'org-time
3416 :type 'hook)
3418 (defcustom org-extend-today-until 0
3419 "The hour when your day really ends. Must be an integer.
3420 This has influence for the following applications:
3421 - When switching the agenda to \"today\". It it is still earlier than
3422 the time given here, the day recognized as TODAY is actually yesterday.
3423 - When a date is read from the user and it is still before the time given
3424 here, the current date and time will be assumed to be yesterday, 23:59.
3425 Also, timestamps inserted in capture templates follow this rule.
3427 IMPORTANT: This is a feature whose implementation is and likely will
3428 remain incomplete. Really, it is only here because past midnight seems to
3429 be the favorite working time of John Wiegley :-)"
3430 :group 'org-time
3431 :type 'integer)
3433 (defcustom org-use-effective-time nil
3434 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3435 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3436 \"effective time\" of any timestamps between midnight and 8am will be
3437 23:59 of the previous day."
3438 :group 'org-time
3439 :version "24.1"
3440 :type 'boolean)
3442 (defcustom org-use-last-clock-out-time-as-effective-time nil
3443 "When non-nil, use the last clock out time for `org-todo'.
3444 Note that this option has precedence over the combined use of
3445 `org-use-effective-time' and `org-extend-today-until'."
3446 :group 'org-time
3447 :version "24.4"
3448 :package-version '(Org . "8.0")
3449 :type 'boolean)
3451 (defcustom org-edit-timestamp-down-means-later nil
3452 "Non-nil means S-down will increase the time in a time stamp.
3453 When nil, S-up will increase."
3454 :group 'org-time
3455 :type 'boolean)
3457 (defcustom org-calendar-follow-timestamp-change t
3458 "Non-nil means make the calendar window follow timestamp changes.
3459 When a timestamp is modified and the calendar window is visible, it will be
3460 moved to the new date."
3461 :group 'org-time
3462 :type 'boolean)
3464 (defgroup org-tags nil
3465 "Options concerning tags in Org-mode."
3466 :tag "Org Tags"
3467 :group 'org)
3469 (defcustom org-tag-alist nil
3470 "List of tags allowed in Org-mode files.
3471 When this list is nil, Org-mode will base TAG input on what is already in the
3472 buffer.
3473 The value of this variable is an alist, the car of each entry must be a
3474 keyword as a string, the cdr may be a character that is used to select
3475 that tag through the fast-tag-selection interface.
3476 See the manual for details."
3477 :group 'org-tags
3478 :type '(repeat
3479 (choice
3480 (cons (string :tag "Tag name")
3481 (character :tag "Access char"))
3482 (list :tag "Start radio group"
3483 (const :startgroup)
3484 (option (string :tag "Group description")))
3485 (list :tag "Group tags delimiter"
3486 (const :grouptags))
3487 (list :tag "End radio group"
3488 (const :endgroup)
3489 (option (string :tag "Group description")))
3490 (const :tag "New line" (:newline)))))
3492 (defcustom org-tag-persistent-alist nil
3493 "List of tags that will always appear in all Org-mode files.
3494 This is in addition to any in buffer settings or customizations
3495 of `org-tag-alist'.
3496 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3497 The value of this variable is an alist, the car of each entry must be a
3498 keyword as a string, the cdr may be a character that is used to select
3499 that tag through the fast-tag-selection interface.
3500 See the manual for details.
3501 To disable these tags on a per-file basis, insert anywhere in the file:
3502 #+STARTUP: noptag"
3503 :group 'org-tags
3504 :type '(repeat
3505 (choice
3506 (cons (string :tag "Tag name")
3507 (character :tag "Access char"))
3508 (const :tag "Start radio group" (:startgroup))
3509 (const :tag "Group tags delimiter" (:grouptags))
3510 (const :tag "End radio group" (:endgroup))
3511 (const :tag "New line" (:newline)))))
3513 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3514 "If non-nil, always offer completion for all tags of all agenda files.
3515 Instead of customizing this variable directly, you might want to
3516 set it locally for capture buffers, because there no list of
3517 tags in that file can be created dynamically (there are none).
3519 (add-hook 'org-capture-mode-hook
3520 (lambda ()
3521 (set (make-local-variable
3522 'org-complete-tags-always-offer-all-agenda-tags)
3523 t)))"
3524 :group 'org-tags
3525 :version "24.1"
3526 :type 'boolean)
3528 (defvar org-file-tags nil
3529 "List of tags that can be inherited by all entries in the file.
3530 The tags will be inherited if the variable `org-use-tag-inheritance'
3531 says they should be.
3532 This variable is populated from #+FILETAGS lines.")
3534 (defcustom org-use-fast-tag-selection 'auto
3535 "Non-nil means use fast tag selection scheme.
3536 This is a special interface to select and deselect tags with single keys.
3537 When nil, fast selection is never used.
3538 When the symbol `auto', fast selection is used if and only if selection
3539 characters for tags have been configured, either through the variable
3540 `org-tag-alist' or through a #+TAGS line in the buffer.
3541 When t, fast selection is always used and selection keys are assigned
3542 automatically if necessary."
3543 :group 'org-tags
3544 :type '(choice
3545 (const :tag "Always" t)
3546 (const :tag "Never" nil)
3547 (const :tag "When selection characters are configured" auto)))
3549 (defcustom org-fast-tag-selection-single-key nil
3550 "Non-nil means fast tag selection exits after first change.
3551 When nil, you have to press RET to exit it.
3552 During fast tag selection, you can toggle this flag with `C-c'.
3553 This variable can also have the value `expert'. In this case, the window
3554 displaying the tags menu is not even shown, until you press C-c again."
3555 :group 'org-tags
3556 :type '(choice
3557 (const :tag "No" nil)
3558 (const :tag "Yes" t)
3559 (const :tag "Expert" expert)))
3561 (defvar org-fast-tag-selection-include-todo nil
3562 "Non-nil means fast tags selection interface will also offer TODO states.
3563 This is an undocumented feature, you should not rely on it.")
3565 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3566 "The column to which tags should be indented in a headline.
3567 If this number is positive, it specifies the column. If it is negative,
3568 it means that the tags should be flushright to that column. For example,
3569 -80 works well for a normal 80 character screen.
3570 When 0, place tags directly after headline text, with only one space in
3571 between."
3572 :group 'org-tags
3573 :type 'integer)
3575 (defcustom org-auto-align-tags t
3576 "Non-nil keeps tags aligned when modifying headlines.
3577 Some operations (i.e. demoting) change the length of a headline and
3578 therefore shift the tags around. With this option turned on, after
3579 each such operation the tags are again aligned to `org-tags-column'."
3580 :group 'org-tags
3581 :type 'boolean)
3583 (defcustom org-use-tag-inheritance t
3584 "Non-nil means tags in levels apply also for sublevels.
3585 When nil, only the tags directly given in a specific line apply there.
3586 This may also be a list of tags that should be inherited, or a regexp that
3587 matches tags that should be inherited. Additional control is possible
3588 with the variable `org-tags-exclude-from-inheritance' which gives an
3589 explicit list of tags to be excluded from inheritance, even if the value of
3590 `org-use-tag-inheritance' would select it for inheritance.
3592 If this option is t, a match early-on in a tree can lead to a large
3593 number of matches in the subtree when constructing the agenda or creating
3594 a sparse tree. If you only want to see the first match in a tree during
3595 a search, check out the variable `org-tags-match-list-sublevels'."
3596 :group 'org-tags
3597 :type '(choice
3598 (const :tag "Not" nil)
3599 (const :tag "Always" t)
3600 (repeat :tag "Specific tags" (string :tag "Tag"))
3601 (regexp :tag "Tags matched by regexp")))
3603 (defcustom org-tags-exclude-from-inheritance nil
3604 "List of tags that should never be inherited.
3605 This is a way to exclude a few tags from inheritance. For way to do
3606 the opposite, to actively allow inheritance for selected tags,
3607 see the variable `org-use-tag-inheritance'."
3608 :group 'org-tags
3609 :type '(repeat (string :tag "Tag")))
3611 (defun org-tag-inherit-p (tag)
3612 "Check if TAG is one that should be inherited."
3613 (cond
3614 ((member tag org-tags-exclude-from-inheritance) nil)
3615 ((eq org-use-tag-inheritance t) t)
3616 ((not org-use-tag-inheritance) nil)
3617 ((stringp org-use-tag-inheritance)
3618 (string-match org-use-tag-inheritance tag))
3619 ((listp org-use-tag-inheritance)
3620 (member tag org-use-tag-inheritance))
3621 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3623 (defcustom org-tags-match-list-sublevels t
3624 "Non-nil means list also sublevels of headlines matching a search.
3625 This variable applies to tags/property searches, and also to stuck
3626 projects because this search is based on a tags match as well.
3628 When set to the symbol `indented', sublevels are indented with
3629 leading dots.
3631 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3632 the sublevels of a headline matching a tag search often also match
3633 the same search. Listing all of them can create very long lists.
3634 Setting this variable to nil causes subtrees of a match to be skipped.
3636 This variable is semi-obsolete and probably should always be true. It
3637 is better to limit inheritance to certain tags using the variables
3638 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3639 :group 'org-tags
3640 :type '(choice
3641 (const :tag "No, don't list them" nil)
3642 (const :tag "Yes, do list them" t)
3643 (const :tag "List them, indented with leading dots" indented)))
3645 (defcustom org-tags-sort-function nil
3646 "When set, tags are sorted using this function as a comparator."
3647 :group 'org-tags
3648 :type '(choice
3649 (const :tag "No sorting" nil)
3650 (const :tag "Alphabetical" string<)
3651 (const :tag "Reverse alphabetical" string>)
3652 (function :tag "Custom function" nil)))
3654 (defvar org-tags-history nil
3655 "History of minibuffer reads for tags.")
3656 (defvar org-last-tags-completion-table nil
3657 "The last used completion table for tags.")
3658 (defvar org-after-tags-change-hook nil
3659 "Hook that is run after the tags in a line have changed.")
3661 (defgroup org-properties nil
3662 "Options concerning properties in Org-mode."
3663 :tag "Org Properties"
3664 :group 'org)
3666 (defcustom org-property-format "%-10s %s"
3667 "How property key/value pairs should be formatted by `indent-line'.
3668 When `indent-line' hits a property definition, it will format the line
3669 according to this format, mainly to make sure that the values are
3670 lined-up with respect to each other."
3671 :group 'org-properties
3672 :type 'string)
3674 (defcustom org-properties-postprocess-alist nil
3675 "Alist of properties and functions to adjust inserted values.
3676 Elements of this alist must be of the form
3678 ([string] [function])
3680 where [string] must be a property name and [function] must be a
3681 lambda expression: this lambda expression must take one argument,
3682 the value to adjust, and return the new value as a string.
3684 For example, this element will allow the property \"Remaining\"
3685 to be updated wrt the relation between the \"Effort\" property
3686 and the clock summary:
3688 ((\"Remaining\" (lambda(value)
3689 (let ((clocksum (org-clock-sum-current-item))
3690 (effort (org-duration-string-to-minutes
3691 (org-entry-get (point) \"Effort\"))))
3692 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3693 :group 'org-properties
3694 :version "24.1"
3695 :type '(alist :key-type (string :tag "Property")
3696 :value-type (function :tag "Function")))
3698 (defcustom org-use-property-inheritance nil
3699 "Non-nil means properties apply also for sublevels.
3701 This setting is chiefly used during property searches. Turning it on can
3702 cause significant overhead when doing a search, which is why it is not
3703 on by default.
3705 When nil, only the properties directly given in the current entry count.
3706 When t, every property is inherited. The value may also be a list of
3707 properties that should have inheritance, or a regular expression matching
3708 properties that should be inherited.
3710 However, note that some special properties use inheritance under special
3711 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3712 and the properties ending in \"_ALL\" when they are used as descriptor
3713 for valid values of a property.
3715 Note for programmers:
3716 When querying an entry with `org-entry-get', you can control if inheritance
3717 should be used. By default, `org-entry-get' looks only at the local
3718 properties. You can request inheritance by setting the inherit argument
3719 to t (to force inheritance) or to `selective' (to respect the setting
3720 in this variable)."
3721 :group 'org-properties
3722 :type '(choice
3723 (const :tag "Not" nil)
3724 (const :tag "Always" t)
3725 (repeat :tag "Specific properties" (string :tag "Property"))
3726 (regexp :tag "Properties matched by regexp")))
3728 (defun org-property-inherit-p (property)
3729 "Check if PROPERTY is one that should be inherited."
3730 (cond
3731 ((eq org-use-property-inheritance t) t)
3732 ((not org-use-property-inheritance) nil)
3733 ((stringp org-use-property-inheritance)
3734 (string-match org-use-property-inheritance property))
3735 ((listp org-use-property-inheritance)
3736 (member property org-use-property-inheritance))
3737 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3739 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3740 "The default column format, if no other format has been defined.
3741 This variable can be set on the per-file basis by inserting a line
3743 #+COLUMNS: %25ITEM ....."
3744 :group 'org-properties
3745 :type 'string)
3747 (defcustom org-columns-ellipses ".."
3748 "The ellipses to be used when a field in column view is truncated.
3749 When this is the empty string, as many characters as possible are shown,
3750 but then there will be no visual indication that the field has been truncated.
3751 When this is a string of length N, the last N characters of a truncated
3752 field are replaced by this string. If the column is narrower than the
3753 ellipses string, only part of the ellipses string will be shown."
3754 :group 'org-properties
3755 :type 'string)
3757 (defcustom org-columns-modify-value-for-display-function nil
3758 "Function that modifies values for display in column view.
3759 For example, it can be used to cut out a certain part from a time stamp.
3760 The function must take 2 arguments:
3762 column-title The title of the column (*not* the property name)
3763 value The value that should be modified.
3765 The function should return the value that should be displayed,
3766 or nil if the normal value should be used."
3767 :group 'org-properties
3768 :type '(choice (const nil) (function)))
3770 (defconst org-global-properties-fixed
3771 '(("VISIBILITY_ALL" . "folded children content all")
3772 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3773 "List of property/value pairs that can be inherited by any entry.
3775 These are fixed values, for the preset properties. The user variable
3776 that can be used to add to this list is `org-global-properties'.
3778 The entries in this list are cons cells where the car is a property
3779 name and cdr is a string with the value. If the value represents
3780 multiple items like an \"_ALL\" property, separate the items by
3781 spaces.")
3783 (defcustom org-global-properties nil
3784 "List of property/value pairs that can be inherited by any entry.
3786 This list will be combined with the constant `org-global-properties-fixed'.
3788 The entries in this list are cons cells where the car is a property
3789 name and cdr is a string with the value.
3791 You can set buffer-local values for the same purpose in the variable
3792 `org-file-properties' this by adding lines like
3794 #+PROPERTY: NAME VALUE"
3795 :group 'org-properties
3796 :type '(repeat
3797 (cons (string :tag "Property")
3798 (string :tag "Value"))))
3800 (defvar org-file-properties nil
3801 "List of property/value pairs that can be inherited by any entry.
3802 Valid for the current buffer.
3803 This variable is populated from #+PROPERTY lines.")
3804 (make-variable-buffer-local 'org-file-properties)
3806 (defgroup org-agenda nil
3807 "Options concerning agenda views in Org-mode."
3808 :tag "Org Agenda"
3809 :group 'org)
3811 (defvar org-category nil
3812 "Variable used by org files to set a category for agenda display.
3813 Such files should use a file variable to set it, for example
3815 # -*- mode: org; org-category: \"ELisp\"
3817 or contain a special line
3819 #+CATEGORY: ELisp
3821 If the file does not specify a category, then file's base name
3822 is used instead.")
3823 (make-variable-buffer-local 'org-category)
3824 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3826 (defcustom org-agenda-files nil
3827 "The files to be used for agenda display.
3828 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3829 \\[org-remove-file]. You can also use customize to edit the list.
3831 If an entry is a directory, all files in that directory that are matched by
3832 `org-agenda-file-regexp' will be part of the file list.
3834 If the value of the variable is not a list but a single file name, then
3835 the list of agenda files is actually stored and maintained in that file, one
3836 agenda file per line. In this file paths can be given relative to
3837 `org-directory'. Tilde expansion and environment variable substitution
3838 are also made."
3839 :group 'org-agenda
3840 :type '(choice
3841 (repeat :tag "List of files and directories" file)
3842 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3844 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3845 "Regular expression to match files for `org-agenda-files'.
3846 If any element in the list in that variable contains a directory instead
3847 of a normal file, all files in that directory that are matched by this
3848 regular expression will be included."
3849 :group 'org-agenda
3850 :type 'regexp)
3852 (defcustom org-agenda-text-search-extra-files nil
3853 "List of extra files to be searched by text search commands.
3854 These files will be searched in addition to the agenda files by the
3855 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3856 Note that these files will only be searched for text search commands,
3857 not for the other agenda views like todo lists, tag searches or the weekly
3858 agenda. This variable is intended to list notes and possibly archive files
3859 that should also be searched by these two commands.
3860 In fact, if the first element in the list is the symbol `agenda-archives',
3861 then all archive files of all agenda files will be added to the search
3862 scope."
3863 :group 'org-agenda
3864 :type '(set :greedy t
3865 (const :tag "Agenda Archives" agenda-archives)
3866 (repeat :inline t (file))))
3868 (org-defvaralias 'org-agenda-multi-occur-extra-files
3869 'org-agenda-text-search-extra-files)
3871 (defcustom org-agenda-skip-unavailable-files nil
3872 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3873 A nil value means to remove them, after a query, from the list."
3874 :group 'org-agenda
3875 :type 'boolean)
3877 (defcustom org-calendar-to-agenda-key [?c]
3878 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3879 The command `org-calendar-goto-agenda' will be bound to this key. The
3880 default is the character `c' because then `c' can be used to switch back and
3881 forth between agenda and calendar."
3882 :group 'org-agenda
3883 :type 'sexp)
3885 (defcustom org-calendar-insert-diary-entry-key [?i]
3886 "The key to be installed in `calendar-mode-map' for adding diary entries.
3887 This option is irrelevant until `org-agenda-diary-file' has been configured
3888 to point to an Org-mode file. When that is the case, the command
3889 `org-agenda-diary-entry' will be bound to the key given here, by default
3890 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3891 if you want to continue doing this, you need to change this to a different
3892 key."
3893 :group 'org-agenda
3894 :type 'sexp)
3896 (defcustom org-agenda-diary-file 'diary-file
3897 "File to which to add new entries with the `i' key in agenda and calendar.
3898 When this is the symbol `diary-file', the functionality in the Emacs
3899 calendar will be used to add entries to the `diary-file'. But when this
3900 points to a file, `org-agenda-diary-entry' will be used instead."
3901 :group 'org-agenda
3902 :type '(choice
3903 (const :tag "The standard Emacs diary file" diary-file)
3904 (file :tag "Special Org file diary entries")))
3906 (eval-after-load "calendar"
3907 '(progn
3908 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3909 'org-calendar-goto-agenda)
3910 (add-hook 'calendar-mode-hook
3911 (lambda ()
3912 (unless (eq org-agenda-diary-file 'diary-file)
3913 (define-key calendar-mode-map
3914 org-calendar-insert-diary-entry-key
3915 'org-agenda-diary-entry))))))
3917 (defgroup org-latex nil
3918 "Options for embedding LaTeX code into Org-mode."
3919 :tag "Org LaTeX"
3920 :group 'org)
3922 (defcustom org-format-latex-options
3923 '(:foreground default :background default :scale 1.0
3924 :html-foreground "Black" :html-background "Transparent"
3925 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3926 "Options for creating images from LaTeX fragments.
3927 This is a property list with the following properties:
3928 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3929 `default' means use the foreground of the default face.
3930 `auto' means use the foreground from the text face.
3931 :background the background color, or \"Transparent\".
3932 `default' means use the background of the default face.
3933 `auto' means use the background from the text face.
3934 :scale a scaling factor for the size of the images, to get more pixels
3935 :html-foreground, :html-background, :html-scale
3936 the same numbers for HTML export.
3937 :matchers a list indicating which matchers should be used to
3938 find LaTeX fragments. Valid members of this list are:
3939 \"begin\" find environments
3940 \"$1\" find single characters surrounded by $.$
3941 \"$\" find math expressions surrounded by $...$
3942 \"$$\" find math expressions surrounded by $$....$$
3943 \"\\(\" find math expressions surrounded by \\(...\\)
3944 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3945 :group 'org-latex
3946 :type 'plist)
3948 (defcustom org-format-latex-signal-error t
3949 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3950 When nil, just push out a message."
3951 :group 'org-latex
3952 :version "24.1"
3953 :type 'boolean)
3955 (defcustom org-latex-to-mathml-jar-file nil
3956 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3957 Use this to specify additional executable file say a jar file.
3959 When using MathToWeb as the converter, specify the full-path to
3960 your mathtoweb.jar file."
3961 :group 'org-latex
3962 :version "24.1"
3963 :type '(choice
3964 (const :tag "None" nil)
3965 (file :tag "JAR file" :must-match t)))
3967 (defcustom org-latex-to-mathml-convert-command nil
3968 "Command to convert LaTeX fragments to MathML.
3969 Replace format-specifiers in the command as noted below and use
3970 `shell-command' to convert LaTeX to MathML.
3971 %j: Executable file in fully expanded form as specified by
3972 `org-latex-to-mathml-jar-file'.
3973 %I: Input LaTeX file in fully expanded form
3974 %o: Output MathML file
3975 This command is used by `org-create-math-formula'.
3977 When using MathToWeb as the converter, set this to
3978 \"java -jar %j -unicode -force -df %o %I\"."
3979 :group 'org-latex
3980 :version "24.1"
3981 :type '(choice
3982 (const :tag "None" nil)
3983 (string :tag "\nShell command")))
3985 (defcustom org-latex-create-formula-image-program 'dvipng
3986 "Program to convert LaTeX fragments with.
3988 dvipng Process the LaTeX fragments to dvi file, then convert
3989 dvi files to png files using dvipng.
3990 This will also include processing of non-math environments.
3991 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3992 to convert pdf files to png files"
3993 :group 'org-latex
3994 :version "24.1"
3995 :type '(choice
3996 (const :tag "dvipng" dvipng)
3997 (const :tag "imagemagick" imagemagick)))
3999 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4000 "Path to store latex preview images.
4001 A relative path here creates many directories relative to the
4002 processed org files paths. An absolute path puts all preview
4003 images at the same place."
4004 :group 'org-latex
4005 :version "24.3"
4006 :type 'string)
4008 (defun org-format-latex-mathml-available-p ()
4009 "Return t if `org-latex-to-mathml-convert-command' is usable."
4010 (save-match-data
4011 (when (and (boundp 'org-latex-to-mathml-convert-command)
4012 org-latex-to-mathml-convert-command)
4013 (let ((executable (car (split-string
4014 org-latex-to-mathml-convert-command))))
4015 (when (executable-find executable)
4016 (if (string-match
4017 "%j" org-latex-to-mathml-convert-command)
4018 (file-readable-p org-latex-to-mathml-jar-file)
4019 t))))))
4021 (defcustom org-format-latex-header "\\documentclass{article}
4022 \\usepackage[usenames]{color}
4023 \[PACKAGES]
4024 \[DEFAULT-PACKAGES]
4025 \\pagestyle{empty} % do not remove
4026 % The settings below are copied from fullpage.sty
4027 \\setlength{\\textwidth}{\\paperwidth}
4028 \\addtolength{\\textwidth}{-3cm}
4029 \\setlength{\\oddsidemargin}{1.5cm}
4030 \\addtolength{\\oddsidemargin}{-2.54cm}
4031 \\setlength{\\evensidemargin}{\\oddsidemargin}
4032 \\setlength{\\textheight}{\\paperheight}
4033 \\addtolength{\\textheight}{-\\headheight}
4034 \\addtolength{\\textheight}{-\\headsep}
4035 \\addtolength{\\textheight}{-\\footskip}
4036 \\addtolength{\\textheight}{-3cm}
4037 \\setlength{\\topmargin}{1.5cm}
4038 \\addtolength{\\topmargin}{-2.54cm}"
4039 "The document header used for processing LaTeX fragments.
4040 It is imperative that this header make sure that no page number
4041 appears on the page. The package defined in the variables
4042 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4043 will either replace the placeholder \"[PACKAGES]\" in this
4044 header, or they will be appended."
4045 :group 'org-latex
4046 :type 'string)
4048 (defun org-set-packages-alist (var val)
4049 "Set the packages alist and make sure it has 3 elements per entry."
4050 (set var (mapcar (lambda (x)
4051 (if (and (consp x) (= (length x) 2))
4052 (list (car x) (nth 1 x) t)
4054 val)))
4056 (defun org-get-packages-alist (var)
4057 "Get the packages alist and make sure it has 3 elements per entry."
4058 (mapcar (lambda (x)
4059 (if (and (consp x) (= (length x) 2))
4060 (list (car x) (nth 1 x) t)
4062 (default-value var)))
4064 (defcustom org-latex-default-packages-alist
4065 '(("AUTO" "inputenc" t)
4066 ("T1" "fontenc" t)
4067 ("" "fixltx2e" nil)
4068 ("" "graphicx" t)
4069 ("" "longtable" nil)
4070 ("" "float" nil)
4071 ("" "wrapfig" nil)
4072 ("" "rotating" nil)
4073 ("normalem" "ulem" t)
4074 ("" "amsmath" t)
4075 ("" "textcomp" t)
4076 ("" "marvosym" t)
4077 ("" "wasysym" t)
4078 ("" "amssymb" t)
4079 ("" "capt-of" nil)
4080 ("" "hyperref" nil)
4081 "\\tolerance=1000")
4082 "Alist of default packages to be inserted in the header.
4084 Change this only if one of the packages here causes an
4085 incompatibility with another package you are using.
4087 The packages in this list are needed by one part or another of
4088 Org mode to function properly:
4090 - inputenc, fontenc: for basic font and character selection
4091 - fixltx2e: Important patches of LaTeX itself
4092 - graphicx: for including images
4093 - longtable: For multipage tables
4094 - float, wrapfig: for figure placement
4095 - rotating: for sideways figures and tables
4096 - ulem: for underline and strike-through
4097 - amsmath: for subscript and superscript and math environments
4098 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4099 for interpreting the entities in `org-entities'. You can skip
4100 some of these packages if you don't use any of their symbols.
4101 - capt-of: for captions outside of floats
4102 - hyperref: for cross references
4104 Therefore you should not modify this variable unless you know
4105 what you are doing. The one reason to change it anyway is that
4106 you might be loading some other package that conflicts with one
4107 of the default packages. Each element is either a cell or
4108 a string.
4110 A cell is of the format:
4112 \( \"options\" \"package\" SNIPPET-FLAG).
4114 If SNIPPET-FLAG is non-nil, the package also needs to be included
4115 when compiling LaTeX snippets into images for inclusion into
4116 non-LaTeX output.
4118 A string will be inserted as-is in the header of the document."
4119 :group 'org-latex
4120 :group 'org-export-latex
4121 :set 'org-set-packages-alist
4122 :get 'org-get-packages-alist
4123 :version "24.1"
4124 :type '(repeat
4125 (choice
4126 (list :tag "options/package pair"
4127 (string :tag "options")
4128 (string :tag "package")
4129 (boolean :tag "Snippet"))
4130 (string :tag "A line of LaTeX"))))
4132 (defcustom org-latex-packages-alist nil
4133 "Alist of packages to be inserted in every LaTeX header.
4135 These will be inserted after `org-latex-default-packages-alist'.
4136 Each element is either a cell or a string.
4138 A cell is of the format:
4140 \(\"options\" \"package\" SNIPPET-FLAG)
4142 SNIPPET-FLAG, when non-nil, indicates that this package is also
4143 needed when turning LaTeX snippets into images for inclusion into
4144 non-LaTeX output.
4146 A string will be inserted as-is in the header of the document.
4148 Make sure that you only list packages here which:
4150 - you want in every file;
4151 - do not conflict with the setup in `org-format-latex-header';
4152 - do not conflict with the default packages in
4153 `org-latex-default-packages-alist'."
4154 :group 'org-latex
4155 :group 'org-export-latex
4156 :set 'org-set-packages-alist
4157 :get 'org-get-packages-alist
4158 :type '(repeat
4159 (choice
4160 (list :tag "options/package pair"
4161 (string :tag "options")
4162 (string :tag "package")
4163 (boolean :tag "Snippet"))
4164 (string :tag "A line of LaTeX"))))
4166 (defgroup org-appearance nil
4167 "Settings for Org-mode appearance."
4168 :tag "Org Appearance"
4169 :group 'org)
4171 (defcustom org-level-color-stars-only nil
4172 "Non-nil means fontify only the stars in each headline.
4173 When nil, the entire headline is fontified.
4174 Changing it requires restart of `font-lock-mode' to become effective
4175 also in regions already fontified."
4176 :group 'org-appearance
4177 :type 'boolean)
4179 (defcustom org-hide-leading-stars nil
4180 "Non-nil means hide the first N-1 stars in a headline.
4181 This works by using the face `org-hide' for these stars. This
4182 face is white for a light background, and black for a dark
4183 background. You may have to customize the face `org-hide' to
4184 make this work.
4185 Changing it requires restart of `font-lock-mode' to become effective
4186 also in regions already fontified.
4187 You may also set this on a per-file basis by adding one of the following
4188 lines to the buffer:
4190 #+STARTUP: hidestars
4191 #+STARTUP: showstars"
4192 :group 'org-appearance
4193 :type 'boolean)
4195 (defcustom org-hidden-keywords nil
4196 "List of symbols corresponding to keywords to be hidden the org buffer.
4197 For example, a value '(title) for this list will make the document's title
4198 appear in the buffer without the initial #+TITLE: keyword."
4199 :group 'org-appearance
4200 :version "24.1"
4201 :type '(set (const :tag "#+AUTHOR" author)
4202 (const :tag "#+DATE" date)
4203 (const :tag "#+EMAIL" email)
4204 (const :tag "#+TITLE" title)))
4206 (defcustom org-custom-properties nil
4207 "List of properties (as strings) with a special meaning.
4208 The default use of these custom properties is to let the user
4209 hide them with `org-toggle-custom-properties-visibility'."
4210 :group 'org-properties
4211 :group 'org-appearance
4212 :version "24.3"
4213 :type '(repeat (string :tag "Property Name")))
4215 (defcustom org-fontify-done-headline nil
4216 "Non-nil means change the face of a headline if it is marked DONE.
4217 Normally, only the TODO/DONE keyword indicates the state of a headline.
4218 When this is non-nil, the headline after the keyword is set to the
4219 `org-headline-done' as an additional indication."
4220 :group 'org-appearance
4221 :type 'boolean)
4223 (defcustom org-fontify-emphasized-text t
4224 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4225 Changing this variable requires a restart of Emacs to take effect."
4226 :group 'org-appearance
4227 :type 'boolean)
4229 (defcustom org-fontify-whole-heading-line nil
4230 "Non-nil means fontify the whole line for headings.
4231 This is useful when setting a background color for the
4232 org-level-* faces."
4233 :group 'org-appearance
4234 :type 'boolean)
4236 (defcustom org-highlight-latex-and-related nil
4237 "Non-nil means highlight LaTeX related syntax in the buffer.
4238 When non nil, the value should be a list containing any of the
4239 following symbols:
4240 `latex' Highlight LaTeX snippets and environments.
4241 `script' Highlight subscript and superscript.
4242 `entities' Highlight entities."
4243 :group 'org-appearance
4244 :version "24.4"
4245 :package-version '(Org . "8.0")
4246 :type '(choice
4247 (const :tag "No highlighting" nil)
4248 (set :greedy t :tag "Highlight"
4249 (const :tag "LaTeX snippets and environments" latex)
4250 (const :tag "Subscript and superscript" script)
4251 (const :tag "Entities" entities))))
4253 (defcustom org-hide-emphasis-markers nil
4254 "Non-nil mean font-lock should hide the emphasis marker characters."
4255 :group 'org-appearance
4256 :type 'boolean)
4258 (defcustom org-hide-macro-markers nil
4259 "Non-nil mean font-lock should hide the brackets marking macro calls."
4260 :group 'org-appearance
4261 :type 'boolean)
4263 (defcustom org-pretty-entities nil
4264 "Non-nil means show entities as UTF8 characters.
4265 When nil, the \\name form remains in the buffer."
4266 :group 'org-appearance
4267 :version "24.1"
4268 :type 'boolean)
4270 (defcustom org-pretty-entities-include-sub-superscripts t
4271 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4272 :group 'org-appearance
4273 :version "24.1"
4274 :type 'boolean)
4276 (defvar org-emph-re nil
4277 "Regular expression for matching emphasis.
4278 After a match, the match groups contain these elements:
4279 0 The match of the full regular expression, including the characters
4280 before and after the proper match
4281 1 The character before the proper match, or empty at beginning of line
4282 2 The proper match, including the leading and trailing markers
4283 3 The leading marker like * or /, indicating the type of highlighting
4284 4 The text between the emphasis markers, not including the markers
4285 5 The character after the match, empty at the end of a line")
4286 (defvar org-verbatim-re nil
4287 "Regular expression for matching verbatim text.")
4288 (defvar org-emphasis-regexp-components) ; defined just below
4289 (defvar org-emphasis-alist) ; defined just below
4290 (defun org-set-emph-re (var val)
4291 "Set variable and compute the emphasis regular expression."
4292 (set var val)
4293 (when (and (boundp 'org-emphasis-alist)
4294 (boundp 'org-emphasis-regexp-components)
4295 org-emphasis-alist org-emphasis-regexp-components)
4296 (let* ((e org-emphasis-regexp-components)
4297 (pre (car e))
4298 (post (nth 1 e))
4299 (border (nth 2 e))
4300 (body (nth 3 e))
4301 (nl (nth 4 e))
4302 (body1 (concat body "*?"))
4303 (markers (mapconcat 'car org-emphasis-alist ""))
4304 (vmarkers (mapconcat
4305 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4306 org-emphasis-alist "")))
4307 ;; make sure special characters appear at the right position in the class
4308 (if (string-match "\\^" markers)
4309 (setq markers (concat (replace-match "" t t markers) "^")))
4310 (if (string-match "-" markers)
4311 (setq markers (concat (replace-match "" t t markers) "-")))
4312 (if (string-match "\\^" vmarkers)
4313 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4314 (if (string-match "-" vmarkers)
4315 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4316 (if (> nl 0)
4317 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4318 (int-to-string nl) "\\}")))
4319 ;; Make the regexp
4320 (setq org-emph-re
4321 (concat "\\([" pre "]\\|^\\)"
4322 "\\("
4323 "\\([" markers "]\\)"
4324 "\\("
4325 "[^" border "]\\|"
4326 "[^" border "]"
4327 body1
4328 "[^" border "]"
4329 "\\)"
4330 "\\3\\)"
4331 "\\([" post "]\\|$\\)"))
4332 (setq org-verbatim-re
4333 (concat "\\([" pre "]\\|^\\)"
4334 "\\("
4335 "\\([" vmarkers "]\\)"
4336 "\\("
4337 "[^" border "]\\|"
4338 "[^" border "]"
4339 body1
4340 "[^" border "]"
4341 "\\)"
4342 "\\3\\)"
4343 "\\([" post "]\\|$\\)")))))
4345 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4346 ;; set this option proved cumbersome. See this message/thread:
4347 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4348 (defvar org-emphasis-regexp-components
4349 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4350 "Components used to build the regular expression for emphasis.
4351 This is a list with five entries. Terminology: In an emphasis string
4352 like \" *strong word* \", we call the initial space PREMATCH, the final
4353 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4354 and \"trong wor\" is the body. The different components in this variable
4355 specify what is allowed/forbidden in each part:
4357 pre Chars allowed as prematch. Beginning of line will be allowed too.
4358 post Chars allowed as postmatch. End of line will be allowed too.
4359 border The chars *forbidden* as border characters.
4360 body-regexp A regexp like \".\" to match a body character. Don't use
4361 non-shy groups here, and don't allow newline here.
4362 newline The maximum number of newlines allowed in an emphasis exp.
4364 You need to reload Org or to restart Emacs after customizing this.")
4366 (defcustom org-emphasis-alist
4367 `(("*" bold)
4368 ("/" italic)
4369 ("_" underline)
4370 ("=" org-verbatim verbatim)
4371 ("~" org-code verbatim)
4372 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4373 "Alist of characters and faces to emphasize text.
4374 Text starting and ending with a special character will be emphasized,
4375 for example *bold*, _underlined_ and /italic/. This variable sets the
4376 marker characters and the face to be used by font-lock for highlighting
4377 in Org-mode Emacs buffers.
4379 You need to reload Org or to restart Emacs after customizing this."
4380 :group 'org-appearance
4381 :set 'org-set-emph-re
4382 :version "24.4"
4383 :package-version '(Org . "8.0")
4384 :type '(repeat
4385 (list
4386 (string :tag "Marker character")
4387 (choice
4388 (face :tag "Font-lock-face")
4389 (plist :tag "Face property list"))
4390 (option (const verbatim)))))
4392 (defvar org-protecting-blocks
4393 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4394 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4395 This is needed for font-lock setup.")
4397 ;;; Miscellaneous options
4399 (defgroup org-completion nil
4400 "Completion in Org-mode."
4401 :tag "Org Completion"
4402 :group 'org)
4404 (defcustom org-completion-use-ido nil
4405 "Non-nil means use ido completion wherever possible.
4406 Note that `ido-mode' must be active for this variable to be relevant.
4407 If you decide to turn this variable on, you might well want to turn off
4408 `org-outline-path-complete-in-steps'.
4409 See also `org-completion-use-iswitchb'."
4410 :group 'org-completion
4411 :type 'boolean)
4413 (defcustom org-completion-use-iswitchb nil
4414 "Non-nil means use iswitchb completion wherever possible.
4415 Note that `iswitchb-mode' must be active for this variable to be relevant.
4416 If you decide to turn this variable on, you might well want to turn off
4417 `org-outline-path-complete-in-steps'.
4418 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4419 :group 'org-completion
4420 :type 'boolean)
4422 (defcustom org-completion-fallback-command 'hippie-expand
4423 "The expansion command called by \\[pcomplete] in normal context.
4424 Normal means, no org-mode-specific context."
4425 :group 'org-completion
4426 :type 'function)
4428 ;;; Functions and variables from their packages
4429 ;; Declared here to avoid compiler warnings
4431 ;; XEmacs only
4432 (defvar outline-mode-menu-heading)
4433 (defvar outline-mode-menu-show)
4434 (defvar outline-mode-menu-hide)
4435 (defvar zmacs-regions) ; XEmacs regions
4437 ;; Emacs only
4438 (defvar mark-active)
4440 ;; Various packages
4441 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4442 (declare-function calendar-forward-day "cal-move" (arg))
4443 (declare-function calendar-goto-date "cal-move" (date))
4444 (declare-function calendar-goto-today "cal-move" ())
4445 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4446 (defvar calc-embedded-close-formula)
4447 (defvar calc-embedded-open-formula)
4448 (declare-function cdlatex-tab "ext:cdlatex" ())
4449 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4450 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4451 (defvar font-lock-unfontify-region-function)
4452 (declare-function iswitchb-read-buffer "iswitchb"
4453 (prompt &optional default require-match start matches-set))
4454 (defvar iswitchb-temp-buflist)
4455 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4456 (defvar org-agenda-tags-todo-honor-ignore-options)
4457 (declare-function org-agenda-skip "org-agenda" ())
4458 (declare-function
4459 org-agenda-format-item "org-agenda"
4460 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4461 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4462 (declare-function org-agenda-change-all-lines "org-agenda"
4463 (newhead hdmarker &optional fixface just-this))
4464 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4465 (declare-function org-agenda-maybe-redo "org-agenda" ())
4466 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4467 (beg end))
4468 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4469 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4470 "org-agenda" (&optional end))
4471 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4472 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4473 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4474 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4475 (declare-function org-indent-mode "org-indent" (&optional arg))
4476 (declare-function parse-time-string "parse-time" (string))
4477 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4478 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4479 (defvar remember-data-file)
4480 (defvar texmathp-why)
4481 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4482 (declare-function table--at-cell-p "table" (position &optional object at-column))
4483 (declare-function calc-eval "calc" (str &optional separator &rest args))
4485 ;;;###autoload
4486 (defun turn-on-orgtbl ()
4487 "Unconditionally turn on `orgtbl-mode'."
4488 (require 'org-table)
4489 (orgtbl-mode 1))
4491 (defun org-at-table-p (&optional table-type)
4492 "Return t if the cursor is inside an org-type table.
4493 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4494 (if org-enable-table-editor
4495 (save-excursion
4496 (beginning-of-line 1)
4497 (looking-at (if table-type org-table-any-line-regexp
4498 org-table-line-regexp)))
4499 nil))
4500 (defsubst org-table-p () (org-at-table-p))
4502 (defun org-at-table.el-p ()
4503 "Return t if and only if we are at a table.el table."
4504 (and (org-at-table-p 'any)
4505 (save-excursion
4506 (goto-char (org-table-begin 'any))
4507 (looking-at org-table1-hline-regexp))))
4509 (defun org-table-recognize-table.el ()
4510 "If there is a table.el table nearby, recognize it and move into it."
4511 (if org-table-tab-recognizes-table.el
4512 (if (org-at-table.el-p)
4513 (progn
4514 (beginning-of-line 1)
4515 (if (looking-at org-table-dataline-regexp)
4517 (if (looking-at org-table1-hline-regexp)
4518 (progn
4519 (beginning-of-line 2)
4520 (if (looking-at org-table-any-border-regexp)
4521 (beginning-of-line -1)))))
4522 (if (re-search-forward "|" (org-table-end t) t)
4523 (progn
4524 (require 'table)
4525 (if (table--at-cell-p (point))
4527 (message "recognizing table.el table...")
4528 (table-recognize-table)
4529 (message "recognizing table.el table...done")))
4530 (error "This should not happen"))
4532 nil)
4533 nil))
4535 (defun org-at-table-hline-p ()
4536 "Return t if the cursor is inside a hline in a table."
4537 (if org-enable-table-editor
4538 (save-excursion
4539 (beginning-of-line 1)
4540 (looking-at org-table-hline-regexp))
4541 nil))
4543 (defun org-table-map-tables (function &optional quietly)
4544 "Apply FUNCTION to the start of all tables in the buffer."
4545 (save-excursion
4546 (save-restriction
4547 (widen)
4548 (goto-char (point-min))
4549 (while (re-search-forward org-table-any-line-regexp nil t)
4550 (unless quietly
4551 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4552 (beginning-of-line 1)
4553 (when (and (looking-at org-table-line-regexp)
4554 ;; Exclude tables in src/example/verbatim/clocktable blocks
4555 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4556 (save-excursion (funcall function))
4557 (or (looking-at org-table-line-regexp)
4558 (forward-char 1)))
4559 (re-search-forward org-table-any-border-regexp nil 1))))
4560 (unless quietly (message "Mapping tables: done")))
4562 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4563 (declare-function org-clock-update-mode-line "org-clock" ())
4564 (declare-function org-resolve-clocks "org-clock"
4565 (&optional also-non-dangling-p prompt last-valid))
4567 (defun org-at-TBLFM-p (&optional pos)
4568 "Return t when point (or POS) is in #+TBLFM line."
4569 (save-excursion
4570 (let ((pos pos)))
4571 (goto-char (or pos (point)))
4572 (beginning-of-line 1)
4573 (looking-at org-TBLFM-regexp)))
4575 (defvar org-clock-start-time)
4576 (defvar org-clock-marker (make-marker)
4577 "Marker recording the last clock-in.")
4578 (defvar org-clock-hd-marker (make-marker)
4579 "Marker recording the last clock-in, but the headline position.")
4580 (defvar org-clock-heading ""
4581 "The heading of the current clock entry.")
4582 (defun org-clock-is-active ()
4583 "Return the buffer where the clock is currently running.
4584 Return nil if no clock is running."
4585 (marker-buffer org-clock-marker))
4587 (defun org-check-running-clock ()
4588 "Check if the current buffer contains the running clock.
4589 If yes, offer to stop it and to save the buffer with the changes."
4590 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4591 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4592 (buffer-name))))
4593 (org-clock-out)
4594 (when (y-or-n-p "Save changed buffer?")
4595 (save-buffer))))
4597 (defun org-clocktable-try-shift (dir n)
4598 "Check if this line starts a clock table, if yes, shift the time block."
4599 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4600 (org-clocktable-shift dir n)))
4602 ;;;###autoload
4603 (defun org-clock-persistence-insinuate ()
4604 "Set up hooks for clock persistence."
4605 (require 'org-clock)
4606 (add-hook 'org-mode-hook 'org-clock-load)
4607 (add-hook 'kill-emacs-hook 'org-clock-save))
4609 (defgroup org-archive nil
4610 "Options concerning archiving in Org-mode."
4611 :tag "Org Archive"
4612 :group 'org-structure)
4614 (defcustom org-archive-location "%s_archive::"
4615 "The location where subtrees should be archived.
4617 The value of this variable is a string, consisting of two parts,
4618 separated by a double-colon. The first part is a filename and
4619 the second part is a headline.
4621 When the filename is omitted, archiving happens in the same file.
4622 %s in the filename will be replaced by the current file
4623 name (without the directory part). Archiving to a different file
4624 is useful to keep archived entries from contributing to the
4625 Org-mode Agenda.
4627 The archived entries will be filed as subtrees of the specified
4628 headline. When the headline is omitted, the subtrees are simply
4629 filed away at the end of the file, as top-level entries. Also in
4630 the heading you can use %s to represent the file name, this can be
4631 useful when using the same archive for a number of different files.
4633 Here are a few examples:
4634 \"%s_archive::\"
4635 If the current file is Projects.org, archive in file
4636 Projects.org_archive, as top-level trees. This is the default.
4638 \"::* Archived Tasks\"
4639 Archive in the current file, under the top-level headline
4640 \"* Archived Tasks\".
4642 \"~/org/archive.org::\"
4643 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4645 \"~/org/archive.org::* From %s\"
4646 Archive in file ~/org/archive.org (absolute path), under headlines
4647 \"From FILENAME\" where file name is the current file name.
4649 \"~/org/datetree.org::datetree/* Finished Tasks\"
4650 The \"datetree/\" string is special, signifying to archive
4651 items to the datetree. Items are placed in either the CLOSED
4652 date of the item, or the current date if there is no CLOSED date.
4653 The heading will be a subentry to the current date. There doesn't
4654 need to be a heading, but there always needs to be a slash after
4655 datetree. For example, to store archived items directly in the
4656 datetree, use \"~/org/datetree.org::datetree/\".
4658 \"basement::** Finished Tasks\"
4659 Archive in file ./basement (relative path), as level 3 trees
4660 below the level 2 heading \"** Finished Tasks\".
4662 You may set this option on a per-file basis by adding to the buffer a
4663 line like
4665 #+ARCHIVE: basement::** Finished Tasks
4667 You may also define it locally for a subtree by setting an ARCHIVE property
4668 in the entry. If such a property is found in an entry, or anywhere up
4669 the hierarchy, it will be used."
4670 :group 'org-archive
4671 :type 'string)
4673 (defcustom org-agenda-skip-archived-trees t
4674 "Non-nil means the agenda will skip any items located in archived trees.
4675 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4676 variable is no longer recommended, you should leave it at the value t.
4677 Instead, use the key `v' to cycle the archives-mode in the agenda."
4678 :group 'org-archive
4679 :group 'org-agenda-skip
4680 :type 'boolean)
4682 (defcustom org-columns-skip-archived-trees t
4683 "Non-nil means ignore archived trees when creating column view."
4684 :group 'org-archive
4685 :group 'org-properties
4686 :type 'boolean)
4688 (defcustom org-cycle-open-archived-trees nil
4689 "Non-nil means `org-cycle' will open archived trees.
4690 An archived tree is a tree marked with the tag ARCHIVE.
4691 When nil, archived trees will stay folded. You can still open them with
4692 normal outline commands like `show-all', but not with the cycling commands."
4693 :group 'org-archive
4694 :group 'org-cycle
4695 :type 'boolean)
4697 (defcustom org-sparse-tree-open-archived-trees nil
4698 "Non-nil means sparse tree construction shows matches in archived trees.
4699 When nil, matches in these trees are highlighted, but the trees are kept in
4700 collapsed state."
4701 :group 'org-archive
4702 :group 'org-sparse-trees
4703 :type 'boolean)
4705 (defcustom org-sparse-tree-default-date-type nil
4706 "The default date type when building a sparse tree.
4707 When this is nil, a date is a scheduled or a deadline timestamp.
4708 Otherwise, these types are allowed:
4710 all: all timestamps
4711 active: only active timestamps (<...>)
4712 inactive: only inactive timestamps ([...])
4713 scheduled: only scheduled timestamps
4714 deadline: only deadline timestamps"
4715 :type '(choice (const :tag "Scheduled or deadline" nil)
4716 (const :tag "All timestamps" all)
4717 (const :tag "Only active timestamps" active)
4718 (const :tag "Only inactive timestamps" inactive)
4719 (const :tag "Only scheduled timestamps" scheduled)
4720 (const :tag "Only deadline timestamps" deadline)
4721 (const :tag "Only closed timestamps" closed))
4722 :version "25.1"
4723 :package-version '(Org . "8.3")
4724 :group 'org-sparse-trees)
4726 (defun org-cycle-hide-archived-subtrees (state)
4727 "Re-hide all archived subtrees after a visibility state change."
4728 (when (and (not org-cycle-open-archived-trees)
4729 (not (memq state '(overview folded))))
4730 (save-excursion
4731 (let* ((globalp (memq state '(contents all)))
4732 (beg (if globalp (point-min) (point)))
4733 (end (if globalp (point-max) (org-end-of-subtree t))))
4734 (org-hide-archived-subtrees beg end)
4735 (goto-char beg)
4736 (if (looking-at (concat ".*:" org-archive-tag ":"))
4737 (message "%s" (substitute-command-keys
4738 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4740 (defun org-force-cycle-archived ()
4741 "Cycle subtree even if it is archived."
4742 (interactive)
4743 (setq this-command 'org-cycle)
4744 (let ((org-cycle-open-archived-trees t))
4745 (call-interactively 'org-cycle)))
4747 (defun org-hide-archived-subtrees (beg end)
4748 "Re-hide all archived subtrees after a visibility state change."
4749 (org-with-wide-buffer
4750 (let ((case-fold-search nil)
4751 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4752 (goto-char beg)
4753 (while (and (< (point) end) (re-search-forward re end t))
4754 (when (member org-archive-tag (org-get-tags))
4755 (org-flag-subtree t)
4756 (org-end-of-subtree t))))))
4758 (declare-function outline-end-of-heading "outline" ())
4759 (declare-function outline-flag-region "outline" (from to flag))
4760 (defun org-flag-subtree (flag)
4761 (save-excursion
4762 (org-back-to-heading t)
4763 (outline-end-of-heading)
4764 (outline-flag-region (point)
4765 (progn (org-end-of-subtree t) (point))
4766 flag)))
4768 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4770 ;; Declare Column View Code
4772 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4773 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4774 (declare-function org-columns-compute "org-colview" (property))
4776 ;; Declare ID code
4778 (declare-function org-id-store-link "org-id")
4779 (declare-function org-id-locations-load "org-id")
4780 (declare-function org-id-locations-save "org-id")
4781 (defvar org-id-track-globally)
4783 ;;; Variables for pre-computed regular expressions, all buffer local
4785 (defvar org-todo-regexp nil
4786 "Matches any of the TODO state keywords.")
4787 (make-variable-buffer-local 'org-todo-regexp)
4788 (defvar org-not-done-regexp nil
4789 "Matches any of the TODO state keywords except the last one.")
4790 (make-variable-buffer-local 'org-not-done-regexp)
4791 (defvar org-not-done-heading-regexp nil
4792 "Matches a TODO headline that is not done.")
4793 (make-variable-buffer-local 'org-not-done-regexp)
4794 (defvar org-todo-line-regexp nil
4795 "Matches a headline and puts TODO state into group 2 if present.")
4796 (make-variable-buffer-local 'org-todo-line-regexp)
4797 (defvar org-complex-heading-regexp nil
4798 "Matches a headline and puts everything into groups:
4799 group 1: the stars
4800 group 2: The todo keyword, maybe
4801 group 3: Priority cookie
4802 group 4: True headline
4803 group 5: Tags")
4804 (make-variable-buffer-local 'org-complex-heading-regexp)
4805 (defvar org-complex-heading-regexp-format nil
4806 "Printf format to make regexp to match an exact headline.
4807 This regexp will match the headline of any node which has the
4808 exact headline text that is put into the format, but may have any
4809 TODO state, priority and tags.")
4810 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4811 (defvar org-todo-line-tags-regexp nil
4812 "Matches a headline and puts TODO state into group 2 if present.
4813 Also put tags into group 4 if tags are present.")
4814 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4816 (defconst org-plain-time-of-day-regexp
4817 (concat
4818 "\\(\\<[012]?[0-9]"
4819 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4820 "\\(--?"
4821 "\\(\\<[012]?[0-9]"
4822 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4823 "\\)?")
4824 "Regular expression to match a plain time or time range.
4825 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4826 groups carry important information:
4827 0 the full match
4828 1 the first time, range or not
4829 8 the second time, if it is a range.")
4831 (defconst org-plain-time-extension-regexp
4832 (concat
4833 "\\(\\<[012]?[0-9]"
4834 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4835 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4836 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4837 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4838 groups carry important information:
4839 0 the full match
4840 7 hours of duration
4841 9 minutes of duration")
4843 (defconst org-stamp-time-of-day-regexp
4844 (concat
4845 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4846 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4847 "\\(--?"
4848 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4849 "Regular expression to match a timestamp time or time range.
4850 After a match, the following groups carry important information:
4851 0 the full match
4852 1 date plus weekday, for back referencing to make sure both times are on the same day
4853 2 the first time, range or not
4854 4 the second time, if it is a range.")
4856 (defconst org-startup-options
4857 '(("fold" org-startup-folded t)
4858 ("overview" org-startup-folded t)
4859 ("nofold" org-startup-folded nil)
4860 ("showall" org-startup-folded nil)
4861 ("showeverything" org-startup-folded showeverything)
4862 ("content" org-startup-folded content)
4863 ("indent" org-startup-indented t)
4864 ("noindent" org-startup-indented nil)
4865 ("hidestars" org-hide-leading-stars t)
4866 ("showstars" org-hide-leading-stars nil)
4867 ("odd" org-odd-levels-only t)
4868 ("oddeven" org-odd-levels-only nil)
4869 ("align" org-startup-align-all-tables t)
4870 ("noalign" org-startup-align-all-tables nil)
4871 ("inlineimages" org-startup-with-inline-images t)
4872 ("noinlineimages" org-startup-with-inline-images nil)
4873 ("latexpreview" org-startup-with-latex-preview t)
4874 ("nolatexpreview" org-startup-with-latex-preview nil)
4875 ("customtime" org-display-custom-times t)
4876 ("logdone" org-log-done time)
4877 ("lognotedone" org-log-done note)
4878 ("nologdone" org-log-done nil)
4879 ("lognoteclock-out" org-log-note-clock-out t)
4880 ("nolognoteclock-out" org-log-note-clock-out nil)
4881 ("logrepeat" org-log-repeat state)
4882 ("lognoterepeat" org-log-repeat note)
4883 ("logdrawer" org-log-into-drawer t)
4884 ("nologdrawer" org-log-into-drawer nil)
4885 ("logstatesreversed" org-log-states-order-reversed t)
4886 ("nologstatesreversed" org-log-states-order-reversed nil)
4887 ("nologrepeat" org-log-repeat nil)
4888 ("logreschedule" org-log-reschedule time)
4889 ("lognotereschedule" org-log-reschedule note)
4890 ("nologreschedule" org-log-reschedule nil)
4891 ("logredeadline" org-log-redeadline time)
4892 ("lognoteredeadline" org-log-redeadline note)
4893 ("nologredeadline" org-log-redeadline nil)
4894 ("logrefile" org-log-refile time)
4895 ("lognoterefile" org-log-refile note)
4896 ("nologrefile" org-log-refile nil)
4897 ("fninline" org-footnote-define-inline t)
4898 ("nofninline" org-footnote-define-inline nil)
4899 ("fnlocal" org-footnote-section nil)
4900 ("fnauto" org-footnote-auto-label t)
4901 ("fnprompt" org-footnote-auto-label nil)
4902 ("fnconfirm" org-footnote-auto-label confirm)
4903 ("fnplain" org-footnote-auto-label plain)
4904 ("fnadjust" org-footnote-auto-adjust t)
4905 ("nofnadjust" org-footnote-auto-adjust nil)
4906 ("constcgs" constants-unit-system cgs)
4907 ("constSI" constants-unit-system SI)
4908 ("noptag" org-tag-persistent-alist nil)
4909 ("hideblocks" org-hide-block-startup t)
4910 ("nohideblocks" org-hide-block-startup nil)
4911 ("beamer" org-startup-with-beamer-mode t)
4912 ("entitiespretty" org-pretty-entities t)
4913 ("entitiesplain" org-pretty-entities nil))
4914 "Variable associated with STARTUP options for org-mode.
4915 Each element is a list of three items: the startup options (as written
4916 in the #+STARTUP line), the corresponding variable, and the value to set
4917 this variable to if the option is found. An optional forth element PUSH
4918 means to push this value onto the list in the variable.")
4920 (defcustom org-group-tags t
4921 "When non-nil (the default), use group tags.
4922 This can be turned on/off through `org-toggle-tags-groups'."
4923 :group 'org-tags
4924 :group 'org-startup
4925 :type 'boolean)
4927 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4929 (defun org-toggle-tags-groups ()
4930 "Toggle support for group tags.
4931 Support for group tags is controlled by the option
4932 `org-group-tags', which is non-nil by default."
4933 (interactive)
4934 (setq org-group-tags (not org-group-tags))
4935 (cond ((and (derived-mode-p 'org-agenda-mode)
4936 org-group-tags)
4937 (org-agenda-redo))
4938 ((derived-mode-p 'org-mode)
4939 (let ((org-inhibit-startup t)) (org-mode))))
4940 (message "Groups tags support has been turned %s"
4941 (if org-group-tags "on" "off")))
4943 (defun org-set-regexps-and-options (&optional tags-only)
4944 "Precompute regular expressions used in the current buffer.
4945 When optional argument TAGS-ONLY is non-nil, only compute tags
4946 related expressions."
4947 (when (derived-mode-p 'org-mode)
4948 (let ((alist (org--setup-collect-keywords
4949 (org-make-options-regexp
4950 (append '("FILETAGS" "TAGS" "SETUPFILE")
4951 (and (not tags-only)
4952 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4953 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4954 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4955 (org--setup-process-tags
4956 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4957 (unless tags-only
4958 ;; File properties.
4959 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4960 ;; Archive location.
4961 (let ((archive (cdr (assq 'archive alist))))
4962 (when archive (org-set-local 'org-archive-location archive)))
4963 ;; Category.
4964 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4965 (when cat
4966 (org-set-local 'org-category (intern cat))
4967 (org-set-local 'org-file-properties
4968 (org--update-property-plist
4969 "CATEGORY" cat org-file-properties))))
4970 ;; Columns.
4971 (let ((column (cdr (assq 'columns alist))))
4972 (when column (org-set-local 'org-columns-default-format column)))
4973 ;; Constants.
4974 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4975 ;; Link abbreviations.
4976 (let ((links (cdr (assq 'link alist))))
4977 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4978 ;; Priorities.
4979 (let ((priorities (cdr (assq 'priorities alist))))
4980 (when priorities
4981 (org-set-local 'org-highest-priority (nth 0 priorities))
4982 (org-set-local 'org-lowest-priority (nth 1 priorities))
4983 (org-set-local 'org-default-priority (nth 2 priorities))))
4984 ;; Scripts.
4985 (let ((scripts (assq 'scripts alist)))
4986 (when scripts
4987 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4988 ;; Startup options.
4989 (let ((startup (cdr (assq 'startup alist))))
4990 (dolist (option startup)
4991 (let ((entry (assoc-string option org-startup-options t)))
4992 (when entry
4993 (let ((var (nth 1 entry))
4994 (val (nth 2 entry)))
4995 (if (not (nth 3 entry)) (org-set-local var val)
4996 (unless (listp (symbol-value var))
4997 (org-set-local var nil))
4998 (add-to-list var val)))))))
4999 ;; TODO keywords.
5000 (org-set-local 'org-todo-kwd-alist nil)
5001 (org-set-local 'org-todo-key-alist nil)
5002 (org-set-local 'org-todo-key-trigger nil)
5003 (org-set-local 'org-todo-keywords-1 nil)
5004 (org-set-local 'org-done-keywords nil)
5005 (org-set-local 'org-todo-heads nil)
5006 (org-set-local 'org-todo-sets nil)
5007 (org-set-local 'org-todo-log-states nil)
5008 (let ((todo-sequences
5009 (or (nreverse (cdr (assq 'todo alist)))
5010 (let ((d (default-value 'org-todo-keywords)))
5011 (if (not (stringp (car d))) d
5012 ;; XXX: Backward compatibility code.
5013 (list (cons org-todo-interpretation d)))))))
5014 (dolist (sequence todo-sequences)
5015 (let* ((sequence (or (run-hook-with-args-until-success
5016 'org-todo-setup-filter-hook sequence)
5017 sequence))
5018 (sequence-type (car sequence))
5019 (keywords (cdr sequence))
5020 (sep (member "|" keywords))
5021 names alist)
5022 (dolist (k (remove "|" keywords))
5023 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5025 (error "Invalid TODO keyword %s" k))
5026 (let ((name (match-string 1 k))
5027 (key (match-string 2 k))
5028 (log (org-extract-log-state-settings k)))
5029 (push name names)
5030 (push (cons name (and key (string-to-char key))) alist)
5031 (when log (push log org-todo-log-states))))
5032 (let* ((names (nreverse names))
5033 (done (if sep (org-remove-keyword-keys (cdr sep))
5034 (last names)))
5035 (head (car names))
5036 (tail (list sequence-type head (car done) (org-last done))))
5037 (add-to-list 'org-todo-heads head 'append)
5038 (push names org-todo-sets)
5039 (setq org-done-keywords (append org-done-keywords done nil))
5040 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5041 (setq org-todo-key-alist
5042 (append org-todo-key-alist
5043 (and alist
5044 (append '((:startgroup))
5045 (nreverse alist)
5046 '((:endgroup))))))
5047 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5048 (setq org-todo-sets (nreverse org-todo-sets)
5049 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5050 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5051 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5052 ;; Compute the regular expressions and other local variables.
5053 ;; Using `org-outline-regexp-bol' would complicate them much,
5054 ;; because of the fixed white space at the end of that string.
5055 (if (not org-done-keywords)
5056 (setq org-done-keywords
5057 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5058 (setq org-not-done-keywords
5059 (org-delete-all org-done-keywords
5060 (copy-sequence org-todo-keywords-1))
5061 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5062 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5063 org-not-done-heading-regexp
5064 (format org-heading-keyword-regexp-format org-not-done-regexp)
5065 org-todo-line-regexp
5066 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5067 org-complex-heading-regexp
5068 (concat "^\\(\\*+\\)"
5069 "\\(?: +" org-todo-regexp "\\)?"
5070 "\\(?: +\\(\\[#.\\]\\)\\)?"
5071 "\\(?: +\\(.*?\\)\\)??"
5072 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5073 "[ \t]*$")
5074 org-complex-heading-regexp-format
5075 (concat "^\\(\\*+\\)"
5076 "\\(?: +" org-todo-regexp "\\)?"
5077 "\\(?: +\\(\\[#.\\]\\)\\)?"
5078 "\\(?: +"
5079 ;; Stats cookies can be stuck to body.
5080 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5081 "\\(%s\\)"
5082 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5083 "\\)"
5084 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5085 "[ \t]*$")
5086 org-todo-line-tags-regexp
5087 (concat "^\\(\\*+\\)"
5088 "\\(?: +" org-todo-regexp "\\)?"
5089 "\\(?: +\\(.*?\\)\\)??"
5090 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5091 "[ \t]*$"))
5092 (org-compute-latex-and-related-regexp)))))
5094 (defun org--setup-collect-keywords (regexp &optional files alist)
5095 "Return setup keywords values as an alist.
5097 REGEXP matches a subset of setup keywords. FILES is a list of
5098 file names already visited. It is used to avoid circular setup
5099 files. ALIST, when non-nil, is the alist computed so far.
5101 Return value contains the following keys: `archive', `category',
5102 `columns', `constants', `filetags', `link', `priorities',
5103 `property', `scripts', `startup', `tags' and `todo'."
5104 (org-with-wide-buffer
5105 (goto-char (point-min))
5106 (let ((case-fold-search t))
5107 (while (re-search-forward regexp nil t)
5108 (let ((element (org-element-at-point)))
5109 (when (eq (org-element-type element) 'keyword)
5110 (let ((key (org-element-property :key element))
5111 (value (org-element-property :value element)))
5112 (cond
5113 ((equal key "ARCHIVE")
5114 (when (org-string-nw-p value)
5115 (push (cons 'archive value) alist)))
5116 ((equal key "CATEGORY") (push (cons 'category value) alist))
5117 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5118 ((equal key "CONSTANTS")
5119 (let* ((constants (assq 'constants alist))
5120 (store (cdr constants)))
5121 (dolist (pair (org-split-string value))
5122 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5123 pair)
5124 (let* ((name (match-string 1 pair))
5125 (value (match-string 2 pair))
5126 (old (assoc name store)))
5127 (if old (setcdr old value)
5128 (push (cons name value) store)))))
5129 (if constants (setcdr constants store)
5130 (push (cons 'constants store) alist))))
5131 ((equal key "FILETAGS")
5132 (when (org-string-nw-p value)
5133 (let ((old (assq 'filetags alist))
5134 (new (apply #'nconc
5135 (mapcar (lambda (x) (org-split-string x ":"))
5136 (org-split-string value)))))
5137 (if old (setcdr old (append new (cdr old)))
5138 (push (cons 'filetags new) alist)))))
5139 ((equal key "LINK")
5140 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5141 (let ((links (assq 'link alist))
5142 (pair (cons (org-match-string-no-properties 1 value)
5143 (org-match-string-no-properties 2 value))))
5144 (if links (push pair (cdr links))
5145 (push (list 'link pair) alist)))))
5146 ((equal key "OPTIONS")
5147 (when (and (org-string-nw-p value)
5148 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5149 (push (cons 'scripts (read (match-string 1 value))) alist)))
5150 ((equal key "PRIORITIES")
5151 (push (cons 'priorities
5152 (let ((prio (org-split-string value)))
5153 (if (< (length prio) 3) '(?A ?C ?B)
5154 (mapcar #'string-to-char prio))))
5155 alist))
5156 ((equal key "PROPERTY")
5157 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5158 (let* ((property (assq 'property alist))
5159 (value (org--update-property-plist
5160 (org-match-string-no-properties 1 value)
5161 (org-match-string-no-properties 2 value)
5162 (cdr property))))
5163 (if property (setcdr property value)
5164 (push (cons 'property value) alist)))))
5165 ((equal key "STARTUP")
5166 (let ((startup (assq 'startup alist)))
5167 (if startup
5168 (setcdr startup
5169 (append (cdr startup) (org-split-string value)))
5170 (push (cons 'startup (org-split-string value)) alist))))
5171 ((equal key "TAGS")
5172 (let ((tag-cell (assq 'tags alist)))
5173 (if tag-cell
5174 (setcdr tag-cell
5175 (append (cdr tag-cell)
5176 '("\\n")
5177 (org-split-string value)))
5178 (push (cons 'tags (org-split-string value)) alist))))
5179 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5180 (let ((todo (assq 'todo alist))
5181 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5182 (org-split-string value))))
5183 (if todo (push value (cdr todo))
5184 (push (list 'todo value) alist))))
5185 ((equal key "SETUPFILE")
5186 (unless buffer-read-only ; Do not check in Gnus messages.
5187 (let ((f (and (org-string-nw-p value)
5188 (expand-file-name
5189 (org-remove-double-quotes value)))))
5190 (when (and f (file-readable-p f) (not (member f files)))
5191 (with-temp-buffer
5192 (insert-file-contents f)
5193 (setq alist
5194 ;; Fake Org mode to benefit from cache
5195 ;; without recurring needlessly.
5196 (let ((major-mode 'org-mode))
5197 (org--setup-collect-keywords
5198 regexp (cons f files) alist)))))))))))))))
5199 alist)
5201 (defun org--setup-process-tags (tags filetags)
5202 "Precompute variables used for tags.
5203 TAGS is a list of tags and tag group symbols, as strings.
5204 FILETAGS is a list of tags, as strings."
5205 ;; Process the file tags.
5206 (org-set-local 'org-file-tags
5207 (mapcar #'org-add-prop-inherited filetags))
5208 ;; Provide default tags if no local tags are found.
5209 (when (and (not tags) org-tag-alist)
5210 (setq tags
5211 (mapcar (lambda (tag)
5212 (case (car tag)
5213 (:startgroup "{")
5214 (:endgroup "}")
5215 (:grouptags ":")
5216 (:newline "\\n")
5217 (otherwise (concat (car tag)
5218 (and (characterp (cdr tag))
5219 (format "(%c)" (cdr tag)))))))
5220 org-tag-alist)))
5221 ;; Process the tags.
5222 (org-set-local 'org-tag-groups-alist nil)
5223 (org-set-local 'org-tag-alist nil)
5224 (let (group-flag)
5225 (while tags
5226 (let ((e (car tags)))
5227 (setq tags (cdr tags))
5228 (cond
5229 ((equal e "{")
5230 (push '(:startgroup) org-tag-alist)
5231 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5232 ((equal e "}")
5233 (push '(:endgroup) org-tag-alist)
5234 (setq group-flag nil))
5235 ((equal e ":")
5236 (push '(:grouptags) org-tag-alist)
5237 (setq group-flag 'append))
5238 ((equal e "\\n") (push '(:newline) org-tag-alist))
5239 ((string-match
5240 (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'") e)
5241 (let ((tag (match-string 1 e))
5242 (key (and (match-beginning 2)
5243 (string-to-char (match-string 2 e)))))
5244 (cond ((eq group-flag 'append)
5245 (setcar org-tag-groups-alist
5246 (append (car org-tag-groups-alist) (list tag))))
5247 (group-flag (push (list tag) org-tag-groups-alist)))
5248 (unless (assoc tag org-tag-alist)
5249 (push (cons tag key) org-tag-alist))))))))
5250 (setq org-tag-alist (nreverse org-tag-alist)))
5252 (defun org-file-contents (file &optional noerror)
5253 "Return the contents of FILE, as a string."
5254 (if (and file (file-readable-p file))
5255 (with-temp-buffer
5256 (insert-file-contents file)
5257 (buffer-string))
5258 (funcall (if noerror 'message 'error)
5259 "Cannot read file \"%s\"%s"
5260 file
5261 (let ((from (buffer-file-name (buffer-base-buffer))))
5262 (if from (concat " (referenced in file \"" from "\")") "")))))
5264 (defun org-extract-log-state-settings (x)
5265 "Extract the log state setting from a TODO keyword string.
5266 This will extract info from a string like \"WAIT(w@/!)\"."
5267 (let (kw key log1 log2)
5268 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5269 (setq kw (match-string 1 x)
5270 key (and (match-end 2) (match-string 2 x))
5271 log1 (and (match-end 3) (match-string 3 x))
5272 log2 (and (match-end 4) (match-string 4 x)))
5273 (and (or log1 log2)
5274 (list kw
5275 (and log1 (if (equal log1 "!") 'time 'note))
5276 (and log2 (if (equal log2 "!") 'time 'note)))))))
5278 (defun org-remove-keyword-keys (list)
5279 "Remove a pair of parenthesis at the end of each string in LIST."
5280 (mapcar (lambda (x)
5281 (if (string-match "(.*)$" x)
5282 (substring x 0 (match-beginning 0))
5284 list))
5286 (defun org-assign-fast-keys (alist)
5287 "Assign fast keys to a keyword-key alist.
5288 Respect keys that are already there."
5289 (let (new e (alt ?0))
5290 (while (setq e (pop alist))
5291 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5292 (cdr e)) ;; Key already assigned.
5293 (push e new)
5294 (let ((clist (string-to-list (downcase (car e))))
5295 (used (append new alist)))
5296 (when (= (car clist) ?@)
5297 (pop clist))
5298 (while (and clist (rassoc (car clist) used))
5299 (pop clist))
5300 (unless clist
5301 (while (rassoc alt used)
5302 (incf alt)))
5303 (push (cons (car e) (or (car clist) alt)) new))))
5304 (nreverse new)))
5306 ;;; Some variables used in various places
5308 (defvar org-window-configuration nil
5309 "Used in various places to store a window configuration.")
5310 (defvar org-selected-window nil
5311 "Used in various places to store a window configuration.")
5312 (defvar org-finish-function nil
5313 "Function to be called when `C-c C-c' is used.
5314 This is for getting out of special buffers like capture.")
5317 ;; FIXME: Occasionally check by commenting these, to make sure
5318 ;; no other functions uses these, forgetting to let-bind them.
5319 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5320 (defvar org-last-state)
5321 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5323 ;; Defined somewhere in this file, but used before definition.
5324 (defvar org-entities) ;; defined in org-entities.el
5325 (defvar org-struct-menu)
5326 (defvar org-org-menu)
5327 (defvar org-tbl-menu)
5329 ;;;; Define the Org-mode
5331 ;; We use a before-change function to check if a table might need
5332 ;; an update.
5333 (defvar org-table-may-need-update t
5334 "Indicates that a table might need an update.
5335 This variable is set by `org-before-change-function'.
5336 `org-table-align' sets it back to nil.")
5337 (defun org-before-change-function (beg end)
5338 "Every change indicates that a table might need an update."
5339 (setq org-table-may-need-update t))
5340 (defvar org-mode-map)
5341 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5342 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5343 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5344 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5345 (defvar org-table-buffer-is-an nil)
5347 (defvar bidi-paragraph-direction)
5348 (defvar buffer-face-mode-face)
5350 (require 'outline)
5351 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5352 (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"))
5353 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5355 ;; Other stuff we need.
5356 (require 'time-date)
5357 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5358 (require 'easymenu)
5359 (require 'overlay)
5361 ;; (require 'org-macs) moved higher up in the file before it is first used
5362 (require 'org-entities)
5363 ;; (require 'org-compat) moved higher up in the file before it is first used
5364 (require 'org-faces)
5365 (require 'org-list)
5366 (require 'org-pcomplete)
5367 (require 'org-src)
5368 (require 'org-footnote)
5369 (require 'org-macro)
5371 ;; babel
5372 (require 'ob)
5374 ;;;###autoload
5375 (define-derived-mode org-mode outline-mode "Org"
5376 "Outline-based notes management and organizer, alias
5377 \"Carsten's outline-mode for keeping track of everything.\"
5379 Org-mode develops organizational tasks around a NOTES file which
5380 contains information about projects as plain text. Org-mode is
5381 implemented on top of outline-mode, which is ideal to keep the content
5382 of large files well structured. It supports ToDo items, deadlines and
5383 time stamps, which magically appear in the diary listing of the Emacs
5384 calendar. Tables are easily created with a built-in table editor.
5385 Plain text URL-like links connect to websites, emails (VM), Usenet
5386 messages (Gnus), BBDB entries, and any files related to the project.
5387 For printing and sharing of notes, an Org-mode file (or a part of it)
5388 can be exported as a structured ASCII or HTML file.
5390 The following commands are available:
5392 \\{org-mode-map}"
5394 ;; Get rid of Outline menus, they are not needed
5395 ;; Need to do this here because define-derived-mode sets up
5396 ;; the keymap so late. Still, it is a waste to call this each time
5397 ;; we switch another buffer into org-mode.
5398 (if (featurep 'xemacs)
5399 (when (boundp 'outline-mode-menu-heading)
5400 ;; Assume this is Greg's port, it uses easymenu
5401 (easy-menu-remove outline-mode-menu-heading)
5402 (easy-menu-remove outline-mode-menu-show)
5403 (easy-menu-remove outline-mode-menu-hide))
5404 (define-key org-mode-map [menu-bar headings] 'undefined)
5405 (define-key org-mode-map [menu-bar hide] 'undefined)
5406 (define-key org-mode-map [menu-bar show] 'undefined))
5408 (org-load-modules-maybe)
5409 (easy-menu-add org-org-menu)
5410 (easy-menu-add org-tbl-menu)
5411 (org-install-agenda-files-menu)
5412 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5413 (add-to-invisibility-spec '(org-cwidth))
5414 (add-to-invisibility-spec '(org-hide-block . t))
5415 (when (featurep 'xemacs)
5416 (org-set-local 'line-move-ignore-invisible t))
5417 (org-set-local 'outline-regexp org-outline-regexp)
5418 (org-set-local 'outline-level 'org-outline-level)
5419 (setq bidi-paragraph-direction 'left-to-right)
5420 (when (and org-ellipsis
5421 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5422 (fboundp 'make-glyph-code))
5423 (unless org-display-table
5424 (setq org-display-table (make-display-table)))
5425 (set-display-table-slot
5426 org-display-table 4
5427 (vconcat (mapcar
5428 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5429 org-ellipsis)))
5430 (if (stringp org-ellipsis) org-ellipsis "..."))))
5431 (setq buffer-display-table org-display-table))
5432 (org-set-regexps-and-options)
5433 (org-set-font-lock-defaults)
5434 (when (and org-tag-faces (not org-tags-special-faces-re))
5435 ;; tag faces set outside customize.... force initialization.
5436 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5437 ;; Calc embedded
5438 (org-set-local 'calc-embedded-open-mode "# ")
5439 ;; Modify a few syntax entries
5440 (modify-syntax-entry ?@ "w")
5441 (modify-syntax-entry ?\" "\"")
5442 (modify-syntax-entry ?\\ "_")
5443 (modify-syntax-entry ?~ "_")
5444 (if org-startup-truncated (setq truncate-lines t))
5445 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5446 (org-set-local 'font-lock-unfontify-region-function
5447 'org-unfontify-region)
5448 ;; Activate before-change-function
5449 (org-set-local 'org-table-may-need-update t)
5450 (org-add-hook 'before-change-functions 'org-before-change-function nil
5451 'local)
5452 ;; Check for running clock before killing a buffer
5453 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5454 ;; Initialize macros templates.
5455 (org-macro-initialize-templates)
5456 ;; Initialize radio targets.
5457 (org-update-radio-target-regexp)
5458 ;; Indentation.
5459 (org-set-local 'indent-line-function 'org-indent-line)
5460 (org-set-local 'indent-region-function 'org-indent-region)
5461 ;; Filling and auto-filling.
5462 (org-setup-filling)
5463 ;; Comments.
5464 (org-setup-comments-handling)
5465 ;; Initialize cache.
5466 (org-element-cache-reset)
5467 ;; Beginning/end of defun
5468 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5469 (org-set-local 'end-of-defun-function
5470 (lambda ()
5471 (if (not (org-at-heading-p))
5472 (org-forward-element)
5473 (org-forward-element)
5474 (forward-char -1))))
5475 ;; Next error for sparse trees
5476 (org-set-local 'next-error-function 'org-occur-next-match)
5477 ;; Make sure dependence stuff works reliably, even for users who set it
5478 ;; too late :-(
5479 (if org-enforce-todo-dependencies
5480 (add-hook 'org-blocker-hook
5481 'org-block-todo-from-children-or-siblings-or-parent)
5482 (remove-hook 'org-blocker-hook
5483 'org-block-todo-from-children-or-siblings-or-parent))
5484 (if org-enforce-todo-checkbox-dependencies
5485 (add-hook 'org-blocker-hook
5486 'org-block-todo-from-checkboxes)
5487 (remove-hook 'org-blocker-hook
5488 'org-block-todo-from-checkboxes))
5490 ;; Align options lines
5491 (org-set-local
5492 'align-mode-rules-list
5493 '((org-in-buffer-settings
5494 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5495 (modes . '(org-mode)))))
5497 ;; Imenu
5498 (org-set-local 'imenu-create-index-function
5499 'org-imenu-get-tree)
5501 ;; Make isearch reveal context
5502 (if (or (featurep 'xemacs)
5503 (not (boundp 'outline-isearch-open-invisible-function)))
5504 ;; Emacs 21 and XEmacs make use of the hook
5505 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5506 ;; Emacs 22 deals with this through a special variable
5507 (org-set-local 'outline-isearch-open-invisible-function
5508 (lambda (&rest ignore) (org-show-context 'isearch))))
5510 ;; Setup the pcomplete hooks
5511 (set (make-local-variable 'pcomplete-command-completion-function)
5512 'org-pcomplete-initial)
5513 (set (make-local-variable 'pcomplete-command-name-function)
5514 'org-command-at-point)
5515 (set (make-local-variable 'pcomplete-default-completion-function)
5516 'ignore)
5517 (set (make-local-variable 'pcomplete-parse-arguments-function)
5518 'org-parse-arguments)
5519 (set (make-local-variable 'pcomplete-termination-string) "")
5520 (when (>= emacs-major-version 23)
5521 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5523 ;; If empty file that did not turn on org-mode automatically, make it to.
5524 (if (and org-insert-mode-line-in-empty-file
5525 (org-called-interactively-p 'any)
5526 (= (point-min) (point-max)))
5527 (insert "# -*- mode: org -*-\n\n"))
5528 (unless org-inhibit-startup
5529 (org-unmodified
5530 (and org-startup-with-beamer-mode (org-beamer-mode))
5531 (when org-startup-align-all-tables
5532 (org-table-map-tables 'org-table-align 'quietly))
5533 (when org-startup-with-inline-images
5534 (org-display-inline-images))
5535 (when org-startup-with-latex-preview
5536 (org-toggle-latex-fragment))
5537 (unless org-inhibit-startup-visibility-stuff
5538 (org-set-startup-visibility))
5539 (org-refresh-effort-properties)))
5540 ;; Try to set org-hide correctly
5541 (let ((foreground (org-find-invisible-foreground)))
5542 (if foreground
5543 (set-face-foreground 'org-hide foreground))))
5545 ;; Update `customize-package-emacs-version-alist'
5546 (add-to-list 'customize-package-emacs-version-alist
5547 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5548 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5549 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5551 (defvar org-mode-transpose-word-syntax-table
5552 (let ((st (make-syntax-table text-mode-syntax-table)))
5553 (mapc (lambda(c) (modify-syntax-entry
5554 (string-to-char (car c)) "w p" st))
5555 org-emphasis-alist)
5556 st))
5558 (when (fboundp 'abbrev-table-put)
5559 (abbrev-table-put org-mode-abbrev-table
5560 :parents (list text-mode-abbrev-table)))
5562 (defun org-find-invisible-foreground ()
5563 (let ((candidates (remove
5564 "unspecified-bg"
5565 (nconc
5566 (list (face-background 'default)
5567 (face-background 'org-default))
5568 (mapcar
5569 (lambda (alist)
5570 (when (boundp alist)
5571 (cdr (assoc 'background-color (symbol-value alist)))))
5572 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5573 (list (face-foreground 'org-hide))))))
5574 (car (remove nil candidates))))
5576 (defun org-current-time (&optional rounding-minutes past)
5577 "Current time, possibly rounded to ROUNDING-MINUTES.
5578 When ROUNDING-MINUTES is not an integer, fall back on the car of
5579 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5580 the rounding returns a past time."
5581 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5582 (car org-time-stamp-rounding-minutes)))
5583 (time (decode-time)) res)
5584 (if (< r 1)
5585 (current-time)
5586 (setq res
5587 (apply 'encode-time
5588 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5589 (nthcdr 2 time))))
5590 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5591 (seconds-to-time (- (org-float-time res) (* r 60)))
5592 res))))
5594 (defun org-today ()
5595 "Return today date, considering `org-extend-today-until'."
5596 (time-to-days
5597 (time-subtract (current-time)
5598 (list 0 (* 3600 org-extend-today-until) 0))))
5600 ;;;; Font-Lock stuff, including the activators
5602 (defvar org-mouse-map (make-sparse-keymap))
5603 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5604 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5605 (when org-mouse-1-follows-link
5606 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5607 (when org-tab-follows-link
5608 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5609 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5611 (require 'font-lock)
5613 (defconst org-non-link-chars "]\t\n\r<>")
5614 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5615 "file+sys" "news" "shell" "elisp" "doi" "message"
5616 "help"))
5617 (defvar org-link-types-re nil
5618 "Matches a link that has a url-like prefix like \"http:\"")
5619 (defvar org-link-re-with-space nil
5620 "Matches a link with spaces, optional angular brackets around it.")
5621 (defvar org-link-re-with-space2 nil
5622 "Matches a link with spaces, optional angular brackets around it.")
5623 (defvar org-link-re-with-space3 nil
5624 "Matches a link with spaces, only for internal part in bracket links.")
5625 (defvar org-angle-link-re nil
5626 "Matches link with angular brackets, spaces are allowed.")
5627 (defvar org-plain-link-re nil
5628 "Matches plain link, without spaces.")
5629 (defvar org-bracket-link-regexp nil
5630 "Matches a link in double brackets.")
5631 (defvar org-bracket-link-analytic-regexp nil
5632 "Regular expression used to analyze links.
5633 Here is what the match groups contain after a match:
5634 1: http:
5635 2: http
5636 3: path
5637 4: [desc]
5638 5: desc")
5639 (defvar org-bracket-link-analytic-regexp++ nil
5640 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5641 (defvar org-any-link-re nil
5642 "Regular expression matching any link.")
5644 (defconst org-match-sexp-depth 3
5645 "Number of stacked braces for sub/superscript matching.")
5647 (defun org-create-multibrace-regexp (left right n)
5648 "Create a regular expression which will match a balanced sexp.
5649 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5650 as single character strings.
5651 The regexp returned will match the entire expression including the
5652 delimiters. It will also define a single group which contains the
5653 match except for the outermost delimiters. The maximum depth of
5654 stacked delimiters is N. Escaping delimiters is not possible."
5655 (let* ((nothing (concat "[^" left right "]*?"))
5656 (or "\\|")
5657 (re nothing)
5658 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5659 (while (> n 1)
5660 (setq n (1- n)
5661 re (concat re or next)
5662 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5663 (concat left "\\(" re "\\)" right)))
5665 (defconst org-match-substring-regexp
5666 (concat
5667 "\\(\\S-\\)\\([_^]\\)\\("
5668 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5669 "\\|"
5670 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5671 "\\|"
5672 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5673 "The regular expression matching a sub- or superscript.")
5675 (defconst org-match-substring-with-braces-regexp
5676 (concat
5677 "\\(\\S-\\)\\([_^]\\)"
5678 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5679 "The regular expression matching a sub- or superscript, forcing braces.")
5681 (defun org-make-link-regexps ()
5682 "Update the link regular expressions.
5683 This should be called after the variable `org-link-types' has changed."
5684 (let ((types-re (regexp-opt org-link-types t)))
5685 (setq org-link-types-re
5686 (concat "\\`" types-re ":")
5687 org-link-re-with-space
5688 (concat "<?" types-re ":"
5689 "\\([^" org-non-link-chars " ]"
5690 "[^" org-non-link-chars "]*"
5691 "[^" org-non-link-chars " ]\\)>?")
5692 org-link-re-with-space2
5693 (concat "<?" types-re ":"
5694 "\\([^" org-non-link-chars " ]"
5695 "[^\t\n\r]*"
5696 "[^" org-non-link-chars " ]\\)>?")
5697 org-link-re-with-space3
5698 (concat "<?" types-re ":"
5699 "\\([^" org-non-link-chars " ]"
5700 "[^\t\n\r]*\\)")
5701 org-angle-link-re
5702 (concat "<" types-re ":"
5703 "\\([^" org-non-link-chars " ]"
5704 "[^" org-non-link-chars "]*"
5705 "\\)>")
5706 org-plain-link-re
5707 (concat
5708 "\\<" types-re ":"
5709 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5710 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5711 org-bracket-link-regexp
5712 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5713 org-bracket-link-analytic-regexp
5714 (concat
5715 "\\[\\["
5716 "\\(" types-re ":\\)?"
5717 "\\([^]]+\\)"
5718 "\\]"
5719 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5720 "\\]")
5721 org-bracket-link-analytic-regexp++
5722 (concat
5723 "\\[\\["
5724 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5725 "\\([^]]+\\)"
5726 "\\]"
5727 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5728 "\\]")
5729 org-any-link-re
5730 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5731 org-angle-link-re "\\)\\|\\("
5732 org-plain-link-re "\\)"))))
5734 (org-make-link-regexps)
5736 (defvar org-emph-face nil)
5738 (defun org-do-emphasis-faces (limit)
5739 "Run through the buffer and emphasize strings."
5740 (let (rtn a)
5741 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5742 (let* ((border (char-after (match-beginning 3)))
5743 (bre (regexp-quote (char-to-string border))))
5744 (if (and (not (= border (char-after (match-beginning 4))))
5745 (not (save-match-data
5746 (string-match (concat bre ".*" bre)
5747 (replace-regexp-in-string
5748 "\n" " "
5749 (substring (match-string 2) 1 -1))))))
5750 (progn
5751 (setq rtn t)
5752 (setq a (assoc (match-string 3) org-emphasis-alist))
5753 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5754 'face
5755 (nth 1 a))
5756 (and (nth 2 a)
5757 (org-remove-flyspell-overlays-in
5758 (match-beginning 0) (match-end 0)))
5759 (add-text-properties (match-beginning 2) (match-end 2)
5760 '(font-lock-multiline t org-emphasis t))
5761 (when org-hide-emphasis-markers
5762 (add-text-properties (match-end 4) (match-beginning 5)
5763 '(invisible org-link))
5764 (add-text-properties (match-beginning 3) (match-end 3)
5765 '(invisible org-link))))))
5766 (goto-char (1+ (match-beginning 0))))
5767 rtn))
5769 (defun org-emphasize (&optional char)
5770 "Insert or change an emphasis, i.e. a font like bold or italic.
5771 If there is an active region, change that region to a new emphasis.
5772 If there is no region, just insert the marker characters and position
5773 the cursor between them.
5774 CHAR should be the marker character. If it is a space, it means to
5775 remove the emphasis of the selected region.
5776 If CHAR is not given (for example in an interactive call) it will be
5777 prompted for."
5778 (interactive)
5779 (let ((erc org-emphasis-regexp-components)
5780 (prompt "")
5781 (string "") beg end move c s)
5782 (if (org-region-active-p)
5783 (setq beg (region-beginning) end (region-end)
5784 string (buffer-substring beg end))
5785 (setq move t))
5787 (unless char
5788 (message "Emphasis marker or tag: [%s]"
5789 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5790 (setq char (read-char-exclusive)))
5791 (if (equal char ?\ )
5792 (setq s "" move nil)
5793 (unless (assoc (char-to-string char) org-emphasis-alist)
5794 (user-error "No such emphasis marker: \"%c\"" char))
5795 (setq s (char-to-string char)))
5796 (while (and (> (length string) 1)
5797 (equal (substring string 0 1) (substring string -1))
5798 (assoc (substring string 0 1) org-emphasis-alist))
5799 (setq string (substring string 1 -1)))
5800 (setq string (concat s string s))
5801 (if beg (delete-region beg end))
5802 (unless (or (bolp)
5803 (string-match (concat "[" (nth 0 erc) "\n]")
5804 (char-to-string (char-before (point)))))
5805 (insert " "))
5806 (unless (or (eobp)
5807 (string-match (concat "[" (nth 1 erc) "\n]")
5808 (char-to-string (char-after (point)))))
5809 (insert " ") (backward-char 1))
5810 (insert string)
5811 (and move (backward-char 1))))
5813 (defconst org-nonsticky-props
5814 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5816 (defsubst org-rear-nonsticky-at (pos)
5817 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5819 (defun org-activate-plain-links (limit)
5820 "Add link properties for plain links."
5821 (let (f hl)
5822 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5823 (not (member 'org-tag
5824 (get-text-property (1- (match-beginning 0)) 'face)))
5825 (not (org-in-src-block-p)))
5826 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5827 (setq f (get-text-property (match-beginning 0) 'face))
5828 (setq hl (org-match-string-no-properties 0))
5829 (if (or (eq f 'org-tag)
5830 (and (listp f) (memq 'org-tag f)))
5832 (add-text-properties (match-beginning 0) (match-end 0)
5833 (list 'mouse-face 'highlight
5834 'face 'org-link
5835 'htmlize-link `(:uri ,hl)
5836 'keymap org-mouse-map))
5837 (org-rear-nonsticky-at (match-end 0)))
5838 t)))
5840 (defun org-activate-code (limit)
5841 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5842 (progn
5843 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5844 (remove-text-properties (match-beginning 0) (match-end 0)
5845 '(display t invisible t intangible t))
5846 t)))
5848 (defcustom org-src-fontify-natively t
5849 "When non-nil, fontify code in code blocks."
5850 :type 'boolean
5851 :version "24.4"
5852 :package-version '(Org . "8.3")
5853 :group 'org-appearance
5854 :group 'org-babel)
5856 (defcustom org-allow-promoting-top-level-subtree nil
5857 "When non-nil, allow promoting a top level subtree.
5858 The leading star of the top level headline will be replaced
5859 by a #."
5860 :type 'boolean
5861 :version "24.1"
5862 :group 'org-appearance)
5864 (defun org-fontify-meta-lines-and-blocks (limit)
5865 (condition-case nil
5866 (org-fontify-meta-lines-and-blocks-1 limit)
5867 (error (message "org-mode fontification error"))))
5869 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5870 "Fontify #+ lines and blocks."
5871 (let ((case-fold-search t))
5872 (if (re-search-forward
5873 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5874 limit t)
5875 (let ((beg (match-beginning 0))
5876 (block-start (match-end 0))
5877 (block-end nil)
5878 (lang (match-string 7))
5879 (beg1 (line-beginning-position 2))
5880 (dc1 (downcase (match-string 2)))
5881 (dc3 (downcase (match-string 3)))
5882 end end1 quoting block-type ovl)
5883 (cond
5884 ((and (match-end 4) (equal dc3 "+begin"))
5885 ;; Truly a block
5886 (setq block-type (downcase (match-string 5))
5887 quoting (member block-type org-protecting-blocks))
5888 (when (re-search-forward
5889 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5890 nil t) ;; on purpose, we look further than LIMIT
5891 (setq end (min (point-max) (match-end 0))
5892 end1 (min (point-max) (1- (match-beginning 0))))
5893 (setq block-end (match-beginning 0))
5894 (when quoting
5895 (org-remove-flyspell-overlays-in beg1 end1)
5896 (remove-text-properties beg end
5897 '(display t invisible t intangible t)))
5898 (add-text-properties
5899 beg end '(font-lock-fontified t font-lock-multiline t))
5900 (add-text-properties beg beg1 '(face org-meta-line))
5901 (org-remove-flyspell-overlays-in beg beg1)
5902 (add-text-properties ; For end_src
5903 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5904 (org-remove-flyspell-overlays-in end1 end)
5905 (cond
5906 ((and lang (not (string= lang "")) org-src-fontify-natively)
5907 (org-src-font-lock-fontify-block lang block-start block-end)
5908 (add-text-properties beg1 block-end '(src-block t)))
5909 (quoting
5910 (add-text-properties beg1 (min (point-max) (1+ end1))
5911 '(face org-block))) ; end of source block
5912 ((not org-fontify-quote-and-verse-blocks))
5913 ((string= block-type "quote")
5914 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5915 ((string= block-type "verse")
5916 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5917 (add-text-properties beg beg1 '(face org-block-begin-line))
5918 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5919 '(face org-block-end-line))
5921 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5922 (org-remove-flyspell-overlays-in
5923 (match-beginning 0)
5924 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5925 (add-text-properties
5926 beg (match-end 3)
5927 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5928 '(font-lock-fontified t invisible t)
5929 '(font-lock-fontified t face org-document-info-keyword)))
5930 (add-text-properties
5931 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5932 (if (string-equal dc1 "+title:")
5933 '(font-lock-fontified t face org-document-title)
5934 '(font-lock-fontified t face org-document-info))))
5935 ((equal dc1 "+caption:")
5936 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5937 (remove-text-properties (match-beginning 0) (match-end 0)
5938 '(display t invisible t intangible t))
5939 (add-text-properties (match-beginning 1) (match-end 3)
5940 '(font-lock-fontified t face org-meta-line))
5941 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5942 '(font-lock-fontified t face org-block))
5944 ((member dc3 '(" " ""))
5945 (org-remove-flyspell-overlays-in beg (match-end 0))
5946 (add-text-properties
5947 beg (match-end 0)
5948 '(font-lock-fontified t face font-lock-comment-face)))
5949 (t ;; just any other in-buffer setting, but not indented
5950 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5951 (remove-text-properties (match-beginning 0) (match-end 0)
5952 '(display t invisible t intangible t))
5953 (add-text-properties beg (match-end 0)
5954 '(font-lock-fontified t face org-meta-line))
5955 t))))))
5957 (defun org-fontify-drawers (limit)
5958 "Fontify drawers."
5959 (when (re-search-forward org-drawer-regexp limit t)
5960 (add-text-properties
5961 (match-beginning 0) (match-end 0)
5962 '(font-lock-fontified t face org-special-keyword))
5963 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5966 (defun org-fontify-macros (limit)
5967 "Fontify macros."
5968 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5969 (add-text-properties
5970 (match-beginning 0) (match-end 0)
5971 '(font-lock-fontified t face org-macro))
5972 (when org-hide-macro-markers
5973 (add-text-properties (match-end 2) (match-beginning 2)
5974 '(invisible t))
5975 (add-text-properties (match-beginning 1) (match-end 1)
5976 '(invisible t)))
5977 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5980 (defun org-activate-angle-links (limit)
5981 "Add text properties for angle links."
5982 (if (and (re-search-forward org-angle-link-re limit t)
5983 (not (org-in-src-block-p)))
5984 (progn
5985 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5986 (add-text-properties (match-beginning 0) (match-end 0)
5987 (list 'mouse-face 'highlight
5988 'keymap org-mouse-map))
5989 (org-rear-nonsticky-at (match-end 0))
5990 t)))
5992 (defun org-activate-footnote-links (limit)
5993 "Add text properties for footnotes."
5994 (let ((fn (org-footnote-next-reference-or-definition limit)))
5995 (when fn
5996 (let* ((beg (nth 1 fn))
5997 (end (nth 2 fn))
5998 (label (car fn))
5999 (referencep (/= (line-beginning-position) beg)))
6000 (when (and referencep (nth 3 fn))
6001 (save-excursion
6002 (goto-char beg)
6003 (search-forward (or label "fn:"))
6004 (org-remove-flyspell-overlays-in beg (match-end 0))))
6005 (add-text-properties beg end
6006 (list 'mouse-face 'highlight
6007 'keymap org-mouse-map
6008 'help-echo
6009 (if referencep "Footnote reference"
6010 "Footnote definition")
6011 'font-lock-fontified t
6012 'font-lock-multiline t
6013 'face 'org-footnote))))))
6015 (defun org-activate-bracket-links (limit)
6016 "Add text properties for bracketed links."
6017 (if (and (re-search-forward org-bracket-link-regexp limit t)
6018 (not (org-in-src-block-p)))
6019 (let* ((hl (org-match-string-no-properties 1))
6020 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6021 (ip (org-maybe-intangible
6022 (list 'invisible 'org-link
6023 'keymap org-mouse-map 'mouse-face 'highlight
6024 'font-lock-multiline t 'help-echo help
6025 'htmlize-link `(:uri ,hl))))
6026 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6027 'font-lock-multiline t 'help-echo help
6028 'htmlize-link `(:uri ,hl))))
6029 ;; We need to remove the invisible property here. Table narrowing
6030 ;; may have made some of this invisible.
6031 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6032 (remove-text-properties (match-beginning 0) (match-end 0)
6033 '(invisible nil))
6034 (if (match-end 3)
6035 (progn
6036 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6037 (org-rear-nonsticky-at (match-beginning 3))
6038 (add-text-properties (match-beginning 3) (match-end 3) vp)
6039 (org-rear-nonsticky-at (match-end 3))
6040 (add-text-properties (match-end 3) (match-end 0) ip)
6041 (org-rear-nonsticky-at (match-end 0)))
6042 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6043 (org-rear-nonsticky-at (match-beginning 1))
6044 (add-text-properties (match-beginning 1) (match-end 1) vp)
6045 (org-rear-nonsticky-at (match-end 1))
6046 (add-text-properties (match-end 1) (match-end 0) ip)
6047 (org-rear-nonsticky-at (match-end 0)))
6048 t)))
6050 (defun org-activate-dates (limit)
6051 "Add text properties for dates."
6052 (if (and (re-search-forward org-tsr-regexp-both limit t)
6053 (not (equal (char-before (match-beginning 0)) 91)))
6054 (progn
6055 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6056 (add-text-properties (match-beginning 0) (match-end 0)
6057 (list 'mouse-face 'highlight
6058 'keymap org-mouse-map))
6059 (org-rear-nonsticky-at (match-end 0))
6060 (when org-display-custom-times
6061 (if (match-end 3)
6062 (org-display-custom-time (match-beginning 3) (match-end 3)))
6063 (org-display-custom-time (match-beginning 1) (match-end 1)))
6064 t)))
6066 (defvar org-target-link-regexp nil
6067 "Regular expression matching radio targets in plain text.")
6068 (make-variable-buffer-local 'org-target-link-regexp)
6070 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6071 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6072 border border border))
6073 "Regular expression matching a link target.")
6075 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6076 "Regular expression matching a radio target.")
6078 (defconst org-any-target-regexp
6079 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6080 "Regular expression matching any target.")
6082 (defun org-activate-target-links (limit)
6083 "Add text properties for target matches."
6084 (when org-target-link-regexp
6085 (let ((case-fold-search t))
6086 (if (re-search-forward org-target-link-regexp limit t)
6087 (progn
6088 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6089 (add-text-properties (match-beginning 1) (match-end 1)
6090 (list 'mouse-face 'highlight
6091 'keymap org-mouse-map
6092 'help-echo "Radio target link"
6093 'org-linked-text t))
6094 (org-rear-nonsticky-at (match-end 1))
6095 t)))))
6097 (defun org-update-radio-target-regexp ()
6098 "Find all radio targets in this file and update the regular expression.
6099 Also refresh fontification if needed."
6100 (interactive)
6101 (let ((old-regexp org-target-link-regexp)
6102 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6103 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6104 (targets
6105 (org-with-wide-buffer
6106 (goto-char (point-min))
6107 (let (rtn)
6108 (while (re-search-forward org-radio-target-regexp nil t)
6109 ;; Make sure point is really within the object.
6110 (backward-char)
6111 (let ((obj (org-element-context)))
6112 (when (eq (org-element-type obj) 'radio-target)
6113 (add-to-list 'rtn (org-element-property :value obj)))))
6114 rtn))))
6115 (setq org-target-link-regexp
6116 (and targets
6117 (concat before-re
6118 (mapconcat
6119 (lambda (x)
6120 (replace-regexp-in-string
6121 " +" "\\s-+" (regexp-quote x) t t))
6122 targets
6123 "\\|")
6124 after-re)))
6125 (unless (equal old-regexp org-target-link-regexp)
6126 ;; Clean-up cache.
6127 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6128 ((not org-target-link-regexp) old-regexp)
6130 (concat before-re
6131 (mapconcat
6132 (lambda (re)
6133 (substring re (length before-re)
6134 (- (length after-re))))
6135 (list old-regexp org-target-link-regexp)
6136 "\\|")
6137 after-re)))))
6138 (org-with-wide-buffer
6139 (goto-char (point-min))
6140 (while (re-search-forward regexp nil t)
6141 (org-element-cache-refresh (match-beginning 1)))))
6142 ;; Re fontify buffer.
6143 (when (memq 'radio org-highlight-links)
6144 (org-restart-font-lock)))))
6146 (defun org-hide-wide-columns (limit)
6147 (let (s e)
6148 (setq s (text-property-any (point) (or limit (point-max))
6149 'org-cwidth t))
6150 (when s
6151 (setq e (next-single-property-change s 'org-cwidth))
6152 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6153 (goto-char e)
6154 t)))
6156 (defvar org-latex-and-related-regexp nil
6157 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6159 (defun org-compute-latex-and-related-regexp ()
6160 "Compute regular expression for LaTeX, entities and sub/superscript.
6161 Result depends on variable `org-highlight-latex-and-related'."
6162 (org-set-local
6163 'org-latex-and-related-regexp
6164 (let* ((re-sub
6165 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6166 ((eq org-use-sub-superscripts '{})
6167 (list org-match-substring-with-braces-regexp))
6168 (org-use-sub-superscripts (list org-match-substring-regexp))))
6169 (re-latex
6170 (when (memq 'latex org-highlight-latex-and-related)
6171 (let ((matchers (plist-get org-format-latex-options :matchers)))
6172 (delq nil
6173 (mapcar (lambda (x)
6174 (and (member (car x) matchers) (nth 1 x)))
6175 org-latex-regexps)))))
6176 (re-entities
6177 (when (memq 'entities org-highlight-latex-and-related)
6178 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6179 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6181 (defun org-do-latex-and-related (limit)
6182 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6183 LIMIT bounds the search for syntax to highlight. Stop at first
6184 highlighted object, if any. Return t if some highlighting was
6185 done, nil otherwise."
6186 (when (org-string-nw-p org-latex-and-related-regexp)
6187 (catch 'found
6188 (while (re-search-forward org-latex-and-related-regexp limit t)
6189 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6190 'face))
6191 '(org-code org-verbatim underline))
6192 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6193 '(?_ ?^))
6195 0)))
6196 (font-lock-prepend-text-property
6197 (+ offset (match-beginning 0)) (match-end 0)
6198 'face 'org-latex-and-related)
6199 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6200 '(font-lock-multiline t)))
6201 (throw 'found t)))
6202 nil)))
6204 (defun org-restart-font-lock ()
6205 "Restart `font-lock-mode', to force refontification."
6206 (when (and (boundp 'font-lock-mode) font-lock-mode)
6207 (font-lock-mode -1)
6208 (font-lock-mode 1)))
6210 (defun org-activate-tags (limit)
6211 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6212 (progn
6213 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6214 (add-text-properties (match-beginning 1) (match-end 1)
6215 (list 'mouse-face 'highlight
6216 'keymap org-mouse-map))
6217 (org-rear-nonsticky-at (match-end 1))
6218 t)))
6220 (defun org-outline-level ()
6221 "Compute the outline level of the heading at point.
6223 If this is called at a normal headline, the level is the number
6224 of stars. Use `org-reduced-level' to remove the effect of
6225 `org-odd-levels'. Unlike to `org-current-level', this function
6226 takes into consideration inlinetasks."
6227 (org-with-wide-buffer
6228 (end-of-line)
6229 (if (re-search-backward org-outline-regexp-bol nil t)
6230 (1- (- (match-end 0) (match-beginning 0)))
6231 0)))
6233 (defvar org-font-lock-keywords nil)
6235 (defsubst org-re-property (property &optional literal allow-null)
6236 "Return a regexp matching a PROPERTY line.
6238 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6239 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6240 non-nil, match properties even without a value.
6242 Match group 3 is set to the value when it exists. If there is no
6243 value and ALLOW-NULL is non-nil, it is set to the empty string."
6244 (concat
6245 "^\\(?4:[ \t]*\\)"
6246 (format "\\(?1::\\(?2:%s\\):\\)"
6247 (if literal property (regexp-quote property)))
6248 (if allow-null
6249 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6250 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6252 (defconst org-property-re
6253 (org-re-property "\\S-+" 'literal t)
6254 "Regular expression matching a property line.
6255 There are four matching groups:
6256 1: :PROPKEY: including the leading and trailing colon,
6257 2: PROPKEY without the leading and trailing colon,
6258 3: PROPVAL without leading or trailing spaces,
6259 4: the indentation of the current line,
6260 5: trailing whitespace.")
6262 (defvar org-font-lock-hook nil
6263 "Functions to be called for special font lock stuff.")
6265 (defvar org-font-lock-set-keywords-hook nil
6266 "Functions that can manipulate `org-font-lock-extra-keywords'.
6267 This is called after `org-font-lock-extra-keywords' is defined, but before
6268 it is installed to be used by font lock. This can be useful if something
6269 needs to be inserted at a specific position in the font-lock sequence.")
6271 (defun org-font-lock-hook (limit)
6272 "Run `org-font-lock-hook' within LIMIT."
6273 (run-hook-with-args 'org-font-lock-hook limit))
6275 (defun org-set-font-lock-defaults ()
6276 "Set font lock defaults for the current buffer."
6277 (let* ((em org-fontify-emphasized-text)
6278 (lk org-highlight-links)
6279 (org-font-lock-extra-keywords
6280 (list
6281 ;; Call the hook
6282 '(org-font-lock-hook)
6283 ;; Headlines
6284 `(,(if org-fontify-whole-heading-line
6285 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6286 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6287 (1 (org-get-level-face 1))
6288 (2 (org-get-level-face 2))
6289 (3 (org-get-level-face 3)))
6290 ;; Table lines
6291 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6292 (1 'org-table t))
6293 ;; Table internals
6294 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6295 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6296 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6297 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6298 ;; Drawers
6299 '(org-fontify-drawers)
6300 ;; Properties
6301 (list org-property-re
6302 '(1 'org-special-keyword t)
6303 '(3 'org-property-value t))
6304 ;; Links
6305 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6306 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6307 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6308 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6309 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6310 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6311 (if (memq 'footnote lk) '(org-activate-footnote-links))
6312 ;; Targets.
6313 (list org-any-target-regexp '(0 'org-target t))
6314 ;; Diary sexps.
6315 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6316 ;; Macro
6317 '(org-fontify-macros)
6318 '(org-hide-wide-columns (0 nil append))
6319 ;; TODO keyword
6320 (list (format org-heading-keyword-regexp-format
6321 org-todo-regexp)
6322 '(2 (org-get-todo-face 2) t))
6323 ;; DONE
6324 (if org-fontify-done-headline
6325 (list (format org-heading-keyword-regexp-format
6326 (concat
6327 "\\(?:"
6328 (mapconcat 'regexp-quote org-done-keywords "\\|")
6329 "\\)"))
6330 '(2 'org-headline-done t))
6331 nil)
6332 ;; Priorities
6333 '(org-font-lock-add-priority-faces)
6334 ;; Tags
6335 '(org-font-lock-add-tag-faces)
6336 ;; Tags groups
6337 (if (and org-group-tags org-tag-groups-alist)
6338 (list (concat org-outline-regexp-bol ".+\\(:"
6339 (regexp-opt (mapcar 'car org-tag-groups-alist))
6340 ":\\).*$")
6341 '(1 'org-tag-group prepend)))
6342 ;; Special keywords
6343 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6344 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6345 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6346 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6347 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6348 ;; Emphasis
6349 (if em
6350 (if (featurep 'xemacs)
6351 '(org-do-emphasis-faces (0 nil append))
6352 '(org-do-emphasis-faces)))
6353 ;; Checkboxes
6354 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6355 1 'org-checkbox prepend)
6356 (if (cdr (assq 'checkbox org-list-automatic-rules))
6357 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6358 (0 (org-get-checkbox-statistics-face) t)))
6359 ;; Description list items
6360 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6361 1 'org-list-dt prepend)
6362 ;; ARCHIVEd headings
6363 (list (concat
6364 org-outline-regexp-bol
6365 "\\(.*:" org-archive-tag ":.*\\)")
6366 '(1 'org-archived prepend))
6367 ;; Specials
6368 '(org-do-latex-and-related)
6369 '(org-fontify-entities)
6370 '(org-raise-scripts)
6371 ;; Code
6372 '(org-activate-code (1 'org-code t))
6373 ;; COMMENT
6374 (list (format
6375 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6376 org-todo-regexp
6377 org-comment-string)
6378 '(9 'org-special-keyword t))
6379 ;; Blocks and meta lines
6380 '(org-fontify-meta-lines-and-blocks))))
6381 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6382 (run-hooks 'org-font-lock-set-keywords-hook)
6383 ;; Now set the full font-lock-keywords
6384 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6385 (org-set-local 'font-lock-defaults
6386 '(org-font-lock-keywords t nil nil backward-paragraph))
6387 (kill-local-variable 'font-lock-keywords) nil))
6389 (defun org-toggle-pretty-entities ()
6390 "Toggle the composition display of entities as UTF8 characters."
6391 (interactive)
6392 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6393 (org-restart-font-lock)
6394 (if org-pretty-entities
6395 (message "Entities are now displayed as UTF8 characters")
6396 (save-restriction
6397 (widen)
6398 (org-decompose-region (point-min) (point-max))
6399 (message "Entities are now displayed as plain text"))))
6401 (defvar org-custom-properties-overlays nil
6402 "List of overlays used for custom properties.")
6403 (make-variable-buffer-local 'org-custom-properties-overlays)
6405 (defun org-toggle-custom-properties-visibility ()
6406 "Display or hide properties in `org-custom-properties'."
6407 (interactive)
6408 (if org-custom-properties-overlays
6409 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6410 (setq org-custom-properties-overlays nil))
6411 (when org-custom-properties
6412 (org-with-wide-buffer
6413 (goto-char (point-min))
6414 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6415 (while (re-search-forward regexp nil t)
6416 (let ((end (cdr (save-match-data (org-get-property-block)))))
6417 (when (and end (< (point) end))
6418 ;; Hide first custom property in current drawer.
6419 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6420 (overlay-put o 'invisible t)
6421 (overlay-put o 'org-custom-property t)
6422 (push o org-custom-properties-overlays))
6423 ;; Hide additional custom properties in the same drawer.
6424 (while (re-search-forward regexp end t)
6425 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6426 (overlay-put o 'invisible t)
6427 (overlay-put o 'org-custom-property t)
6428 (push o org-custom-properties-overlays)))))
6429 ;; Each entry is limited to a single property drawer.
6430 (outline-next-heading)))))))
6432 (defun org-fontify-entities (limit)
6433 "Find an entity to fontify."
6434 (let (ee)
6435 (when org-pretty-entities
6436 (catch 'match
6437 (while (re-search-forward
6438 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6439 limit t)
6440 (if (and (not (org-at-comment-p))
6441 (setq ee (org-entity-get (match-string 1)))
6442 (= (length (nth 6 ee)) 1))
6443 (let*
6444 ((end (if (equal (match-string 2) "{}")
6445 (match-end 2)
6446 (match-end 1))))
6447 (add-text-properties
6448 (match-beginning 0) end
6449 (list 'font-lock-fontified t))
6450 (compose-region (match-beginning 0) end
6451 (nth 6 ee) nil)
6452 (backward-char 1)
6453 (throw 'match t))))
6454 nil))))
6456 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6457 "Fontify string S like in Org-mode."
6458 (with-temp-buffer
6459 (insert s)
6460 (let ((org-odd-levels-only odd-levels))
6461 (org-mode)
6462 (font-lock-ensure)
6463 (buffer-string))))
6465 (defvar org-m nil)
6466 (defvar org-l nil)
6467 (defvar org-f nil)
6468 (defun org-get-level-face (n)
6469 "Get the right face for match N in font-lock matching of headlines."
6470 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6471 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6472 (if org-cycle-level-faces
6473 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6474 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6475 (cond
6476 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6477 ((eq n 2) org-f)
6478 (t (if org-level-color-stars-only nil org-f))))
6481 (defun org-get-todo-face (kwd)
6482 "Get the right face for a TODO keyword KWD.
6483 If KWD is a number, get the corresponding match group."
6484 (if (numberp kwd) (setq kwd (match-string kwd)))
6485 (or (org-face-from-face-or-color
6486 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6487 (and (member kwd org-done-keywords) 'org-done)
6488 'org-todo))
6490 (defun org-face-from-face-or-color (context inherit face-or-color)
6491 "Create a face list that inherits INHERIT, but sets the foreground color.
6492 When FACE-OR-COLOR is not a string, just return it."
6493 (if (stringp face-or-color)
6494 (list :inherit inherit
6495 (cdr (assoc context org-faces-easy-properties))
6496 face-or-color)
6497 face-or-color))
6499 (defun org-font-lock-add-tag-faces (limit)
6500 "Add the special tag faces."
6501 (when (and org-tag-faces org-tags-special-faces-re)
6502 (while (re-search-forward org-tags-special-faces-re limit t)
6503 (add-text-properties (match-beginning 1) (match-end 1)
6504 (list 'face (org-get-tag-face 1)
6505 'font-lock-fontified t))
6506 (backward-char 1))))
6508 (defun org-font-lock-add-priority-faces (limit)
6509 "Add the special priority faces."
6510 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6511 (when (save-match-data (org-at-heading-p))
6512 (add-text-properties
6513 (match-beginning 0) (match-end 0)
6514 (list 'face (or (org-face-from-face-or-color
6515 'priority 'org-priority
6516 (cdr (assoc (char-after (match-beginning 1))
6517 org-priority-faces)))
6518 'org-priority)
6519 'font-lock-fontified t)))))
6521 (defun org-get-tag-face (kwd)
6522 "Get the right face for a TODO keyword KWD.
6523 If KWD is a number, get the corresponding match group."
6524 (if (numberp kwd) (setq kwd (match-string kwd)))
6525 (or (org-face-from-face-or-color
6526 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6527 'org-tag))
6529 (defun org-unfontify-region (beg end &optional maybe_loudly)
6530 "Remove fontification and activation overlays from links."
6531 (font-lock-default-unfontify-region beg end)
6532 (let* ((buffer-undo-list t)
6533 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6534 (inhibit-modification-hooks t)
6535 deactivate-mark buffer-file-name buffer-file-truename)
6536 (org-decompose-region beg end)
6537 (remove-text-properties beg end
6538 '(mouse-face t keymap t org-linked-text t
6539 invisible t intangible t
6540 org-emphasis t))
6541 (org-remove-font-lock-display-properties beg end)))
6543 (defconst org-script-display '(((raise -0.3) (height 0.7))
6544 ((raise 0.3) (height 0.7))
6545 ((raise -0.5))
6546 ((raise 0.5)))
6547 "Display properties for showing superscripts and subscripts.")
6549 (defun org-remove-font-lock-display-properties (beg end)
6550 "Remove specific display properties that have been added by font lock.
6551 The will remove the raise properties that are used to show superscripts
6552 and subscripts."
6553 (let (next prop)
6554 (while (< beg end)
6555 (setq next (next-single-property-change beg 'display nil end)
6556 prop (get-text-property beg 'display))
6557 (if (member prop org-script-display)
6558 (put-text-property beg next 'display nil))
6559 (setq beg next))))
6561 (defun org-raise-scripts (limit)
6562 "Add raise properties to sub/superscripts."
6563 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6564 (if (re-search-forward
6565 (if (eq org-use-sub-superscripts t)
6566 org-match-substring-regexp
6567 org-match-substring-with-braces-regexp)
6568 limit t)
6569 (let* ((pos (point)) table-p comment-p
6570 (mpos (match-beginning 3))
6571 (emph-p (get-text-property mpos 'org-emphasis))
6572 (link-p (get-text-property mpos 'mouse-face))
6573 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6574 (goto-char (point-at-bol))
6575 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6576 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6577 (goto-char pos)
6578 ;; Handle a_b^c
6579 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6580 (if (or comment-p emph-p link-p keyw-p)
6582 (put-text-property (match-beginning 3) (match-end 0)
6583 'display
6584 (if (equal (char-after (match-beginning 2)) ?^)
6585 (nth (if table-p 3 1) org-script-display)
6586 (nth (if table-p 2 0) org-script-display)))
6587 (add-text-properties (match-beginning 2) (match-end 2)
6588 (list 'invisible t
6589 'org-dwidth t 'org-dwidth-n 1))
6590 (if (and (eq (char-after (match-beginning 3)) ?{)
6591 (eq (char-before (match-end 3)) ?}))
6592 (progn
6593 (add-text-properties
6594 (match-beginning 3) (1+ (match-beginning 3))
6595 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6596 (add-text-properties
6597 (1- (match-end 3)) (match-end 3)
6598 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6599 t)))))
6601 ;;;; Visibility cycling, including org-goto and indirect buffer
6603 ;;; Cycling
6605 (defvar org-cycle-global-status nil)
6606 (make-variable-buffer-local 'org-cycle-global-status)
6607 (put 'org-cycle-global-status 'org-state t)
6608 (defvar org-cycle-subtree-status nil)
6609 (make-variable-buffer-local 'org-cycle-subtree-status)
6610 (put 'org-cycle-subtree-status 'org-state t)
6612 (defvar org-inlinetask-min-level)
6614 (defun org-unlogged-message (&rest args)
6615 "Display a message, but avoid logging it in the *Messages* buffer."
6616 (let ((message-log-max nil))
6617 (apply 'message args)))
6619 ;;;###autoload
6620 (defun org-cycle (&optional arg)
6621 "TAB-action and visibility cycling for Org-mode.
6623 This is the command invoked in Org-mode by the TAB key. Its main purpose
6624 is outline visibility cycling, but it also invokes other actions
6625 in special contexts.
6627 - When this function is called with a prefix argument, rotate the entire
6628 buffer through 3 states (global cycling)
6629 1. OVERVIEW: Show only top-level headlines.
6630 2. CONTENTS: Show all headlines of all levels, but no body text.
6631 3. SHOW ALL: Show everything.
6632 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6633 determined by the variable `org-startup-folded', and by any VISIBILITY
6634 properties in the buffer.
6635 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6636 including any drawers.
6638 - When inside a table, re-align the table and move to the next field.
6640 - When point is at the beginning of a headline, rotate the subtree started
6641 by this line through 3 different states (local cycling)
6642 1. FOLDED: Only the main headline is shown.
6643 2. CHILDREN: The main headline and the direct children are shown.
6644 From this state, you can move to one of the children
6645 and zoom in further.
6646 3. SUBTREE: Show the entire subtree, including body text.
6647 If there is no subtree, switch directly from CHILDREN to FOLDED.
6649 - When point is at the beginning of an empty headline and the variable
6650 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6651 of the headline by demoting and promoting it to likely levels. This
6652 speeds up creation document structure by pressing TAB once or several
6653 times right after creating a new headline.
6655 - When there is a numeric prefix, go up to a heading with level ARG, do
6656 a `show-subtree' and return to the previous cursor position. If ARG
6657 is negative, go up that many levels.
6659 - When point is not at the beginning of a headline, execute the global
6660 binding for TAB, which is re-indenting the line. See the option
6661 `org-cycle-emulate-tab' for details.
6663 - Special case: if point is at the beginning of the buffer and there is
6664 no headline in line 1, this function will act as if called with prefix arg
6665 (C-u TAB, same as S-TAB) also when called without prefix arg.
6666 But only if also the variable `org-cycle-global-at-bob' is t."
6667 (interactive "P")
6668 (org-load-modules-maybe)
6669 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6670 (and org-cycle-level-after-item/entry-creation
6671 (or (org-cycle-level)
6672 (org-cycle-item-indentation))))
6673 (let* ((limit-level
6674 (or org-cycle-max-level
6675 (and (boundp 'org-inlinetask-min-level)
6676 org-inlinetask-min-level
6677 (1- org-inlinetask-min-level))))
6678 (nstars (and limit-level
6679 (if org-odd-levels-only
6680 (and limit-level (1- (* limit-level 2)))
6681 limit-level)))
6682 (org-outline-regexp
6683 (if (not (derived-mode-p 'org-mode))
6684 outline-regexp
6685 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6686 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6687 (not (looking-at org-outline-regexp))))
6688 (org-cycle-hook
6689 (if bob-special
6690 (delq 'org-optimize-window-after-visibility-change
6691 (copy-sequence org-cycle-hook))
6692 org-cycle-hook))
6693 (pos (point)))
6695 (if (or bob-special (equal arg '(4)))
6696 ;; special case: use global cycling
6697 (setq arg t))
6699 (cond
6701 ((equal arg '(16))
6702 (setq last-command 'dummy)
6703 (org-set-startup-visibility)
6704 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6706 ((equal arg '(64))
6707 (show-all)
6708 (org-unlogged-message "Entire buffer visible, including drawers"))
6710 ;; Try cdlatex TAB completion
6711 ((org-try-cdlatex-tab))
6713 ;; Table: enter it or move to the next field.
6714 ((org-at-table-p 'any)
6715 (if (org-at-table.el-p)
6716 (message "Use C-c ' to edit table.el tables")
6717 (if arg (org-table-edit-field t)
6718 (org-table-justify-field-maybe)
6719 (call-interactively 'org-table-next-field))))
6721 ((run-hook-with-args-until-success
6722 'org-tab-after-check-for-table-hook))
6724 ;; Global cycling: delegate to `org-cycle-internal-global'.
6725 ((eq arg t) (org-cycle-internal-global))
6727 ;; Drawers: delegate to `org-flag-drawer'.
6728 ((save-excursion
6729 (beginning-of-line 1)
6730 (looking-at org-drawer-regexp))
6731 (org-flag-drawer ; toggle block visibility
6732 (not (get-char-property (match-end 0) 'invisible))))
6734 ;; Show-subtree, ARG levels up from here.
6735 ((integerp arg)
6736 (save-excursion
6737 (org-back-to-heading)
6738 (outline-up-heading (if (< arg 0) (- arg)
6739 (- (funcall outline-level) arg)))
6740 (org-show-subtree)))
6742 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6743 ((and (featurep 'org-inlinetask)
6744 (org-inlinetask-at-task-p)
6745 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6746 (org-inlinetask-toggle-visibility))
6748 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6749 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6750 (save-excursion (beginning-of-line 1)
6751 (looking-at org-outline-regexp)))
6752 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6753 (org-cycle-internal-local))
6755 ;; From there: TAB emulation and template completion.
6756 (buffer-read-only (org-back-to-heading))
6758 ((run-hook-with-args-until-success
6759 'org-tab-after-check-for-cycling-hook))
6761 ((org-try-structure-completion))
6763 ((run-hook-with-args-until-success
6764 'org-tab-before-tab-emulation-hook))
6766 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6767 (or (not (bolp))
6768 (not (looking-at org-outline-regexp))))
6769 (call-interactively (global-key-binding "\t")))
6771 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6772 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6773 (or (and (eq org-cycle-emulate-tab 'white)
6774 (= (match-end 0) (point-at-eol)))
6775 (and (eq org-cycle-emulate-tab 'whitestart)
6776 (>= (match-end 0) pos))))
6778 (eq org-cycle-emulate-tab t))
6779 (call-interactively (global-key-binding "\t")))
6781 (t (save-excursion
6782 (org-back-to-heading)
6783 (org-cycle)))))))
6785 (defun org-cycle-internal-global ()
6786 "Do the global cycling action."
6787 ;; Hack to avoid display of messages for .org attachments in Gnus
6788 (let ((ga (string-match "\\*fontification" (buffer-name))))
6789 (cond
6790 ((and (eq last-command this-command)
6791 (eq org-cycle-global-status 'overview))
6792 ;; We just created the overview - now do table of contents
6793 ;; This can be slow in very large buffers, so indicate action
6794 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6795 (unless ga (org-unlogged-message "CONTENTS..."))
6796 (org-content)
6797 (unless ga (org-unlogged-message "CONTENTS...done"))
6798 (setq org-cycle-global-status 'contents)
6799 (run-hook-with-args 'org-cycle-hook 'contents))
6801 ((and (eq last-command this-command)
6802 (eq org-cycle-global-status 'contents))
6803 ;; We just showed the table of contents - now show everything
6804 (run-hook-with-args 'org-pre-cycle-hook 'all)
6805 (show-all)
6806 (unless ga (org-unlogged-message "SHOW ALL"))
6807 (setq org-cycle-global-status 'all)
6808 (run-hook-with-args 'org-cycle-hook 'all))
6811 ;; Default action: go to overview
6812 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6813 (org-overview)
6814 (unless ga (org-unlogged-message "OVERVIEW"))
6815 (setq org-cycle-global-status 'overview)
6816 (run-hook-with-args 'org-cycle-hook 'overview)))))
6818 (defvar org-called-with-limited-levels nil
6819 "Non-nil when `org-with-limited-levels' is currently active.")
6821 (defun org-cycle-internal-local ()
6822 "Do the local cycling action."
6823 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6824 ;; First, determine end of headline (EOH), end of subtree or item
6825 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6826 (save-excursion
6827 (if (org-at-item-p)
6828 (progn
6829 (beginning-of-line)
6830 (setq struct (org-list-struct))
6831 (setq eoh (point-at-eol))
6832 (setq eos (org-list-get-item-end-before-blank (point) struct))
6833 (setq has-children (org-list-has-child-p (point) struct)))
6834 (org-back-to-heading)
6835 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6836 (setq eos (save-excursion (org-end-of-subtree t t)
6837 (when (bolp) (backward-char)) (point)))
6838 (setq has-children
6839 (or (save-excursion
6840 (let ((level (funcall outline-level)))
6841 (outline-next-heading)
6842 (and (org-at-heading-p t)
6843 (> (funcall outline-level) level))))
6844 (save-excursion
6845 (org-list-search-forward (org-item-beginning-re) eos t)))))
6846 ;; Determine end invisible part of buffer (EOL)
6847 (beginning-of-line 2)
6848 ;; XEmacs doesn't have `next-single-char-property-change'
6849 (if (featurep 'xemacs)
6850 (while (and (not (eobp)) ;; this is like `next-line'
6851 (get-char-property (1- (point)) 'invisible))
6852 (beginning-of-line 2))
6853 (while (and (not (eobp)) ;; this is like `next-line'
6854 (get-char-property (1- (point)) 'invisible))
6855 (goto-char (next-single-char-property-change (point) 'invisible))
6856 (and (eolp) (beginning-of-line 2))))
6857 (setq eol (point)))
6858 ;; Find out what to do next and set `this-command'
6859 (cond
6860 ((= eos eoh)
6861 ;; Nothing is hidden behind this heading
6862 (unless (org-before-first-heading-p)
6863 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6864 (org-unlogged-message "EMPTY ENTRY")
6865 (setq org-cycle-subtree-status nil)
6866 (save-excursion
6867 (goto-char eos)
6868 (outline-next-heading)
6869 (if (outline-invisible-p) (org-flag-heading nil))))
6870 ((and (or (>= eol eos)
6871 (not (string-match "\\S-" (buffer-substring eol eos))))
6872 (or has-children
6873 (not (setq children-skipped
6874 org-cycle-skip-children-state-if-no-children))))
6875 ;; Entire subtree is hidden in one line: children view
6876 (unless (org-before-first-heading-p)
6877 (run-hook-with-args 'org-pre-cycle-hook 'children))
6878 (if (org-at-item-p)
6879 (org-list-set-item-visibility (point-at-bol) struct 'children)
6880 (org-show-entry)
6881 (org-with-limited-levels (show-children))
6882 ;; FIXME: This slows down the func way too much.
6883 ;; How keep drawers hidden in subtree anyway?
6884 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6885 ;; (org-cycle-hide-drawers 'subtree))
6887 ;; Fold every list in subtree to top-level items.
6888 (when (eq org-cycle-include-plain-lists 'integrate)
6889 (save-excursion
6890 (org-back-to-heading)
6891 (while (org-list-search-forward (org-item-beginning-re) eos t)
6892 (beginning-of-line 1)
6893 (let* ((struct (org-list-struct))
6894 (prevs (org-list-prevs-alist struct))
6895 (end (org-list-get-bottom-point struct)))
6896 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6897 (org-list-get-all-items (point) struct prevs))
6898 (goto-char (if (< end eos) end eos)))))))
6899 (org-unlogged-message "CHILDREN")
6900 (save-excursion
6901 (goto-char eos)
6902 (outline-next-heading)
6903 (if (outline-invisible-p) (org-flag-heading nil)))
6904 (setq org-cycle-subtree-status 'children)
6905 (unless (org-before-first-heading-p)
6906 (run-hook-with-args 'org-cycle-hook 'children)))
6907 ((or children-skipped
6908 (and (eq last-command this-command)
6909 (eq org-cycle-subtree-status 'children)))
6910 ;; We just showed the children, or no children are there,
6911 ;; now show everything.
6912 (unless (org-before-first-heading-p)
6913 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6914 (outline-flag-region eoh eos nil)
6915 (org-unlogged-message
6916 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6917 (setq org-cycle-subtree-status 'subtree)
6918 (unless (org-before-first-heading-p)
6919 (run-hook-with-args 'org-cycle-hook 'subtree)))
6921 ;; Default action: hide the subtree.
6922 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6923 (outline-flag-region eoh eos t)
6924 (org-unlogged-message "FOLDED")
6925 (setq org-cycle-subtree-status 'folded)
6926 (unless (org-before-first-heading-p)
6927 (run-hook-with-args 'org-cycle-hook 'folded))))))
6929 ;;;###autoload
6930 (defun org-global-cycle (&optional arg)
6931 "Cycle the global visibility. For details see `org-cycle'.
6932 With \\[universal-argument] prefix arg, switch to startup visibility.
6933 With a numeric prefix, show all headlines up to that level."
6934 (interactive "P")
6935 (let ((org-cycle-include-plain-lists
6936 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6937 (cond
6938 ((integerp arg)
6939 (show-all)
6940 (hide-sublevels arg)
6941 (setq org-cycle-global-status 'contents))
6942 ((equal arg '(4))
6943 (org-set-startup-visibility)
6944 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6946 (org-cycle '(4))))))
6948 (defun org-set-startup-visibility ()
6949 "Set the visibility required by startup options and properties."
6950 (cond
6951 ((eq org-startup-folded t)
6952 (org-overview))
6953 ((eq org-startup-folded 'content)
6954 (org-content))
6955 ((or (eq org-startup-folded 'showeverything)
6956 (eq org-startup-folded nil))
6957 (show-all)))
6958 (unless (eq org-startup-folded 'showeverything)
6959 (if org-hide-block-startup (org-hide-block-all))
6960 (org-set-visibility-according-to-property 'no-cleanup)
6961 (org-cycle-hide-archived-subtrees 'all)
6962 (org-cycle-hide-drawers 'all)
6963 (org-cycle-show-empty-lines t)))
6965 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6966 "Switch subtree visibilities according to :VISIBILITY: property."
6967 (interactive)
6968 (let (org-show-entry-below)
6969 (org-with-wide-buffer
6970 (goto-char (point-min))
6971 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
6972 (if (not (org-at-property-p)) (outline-next-heading)
6973 (let ((state (match-string 3)))
6974 (save-excursion
6975 (org-back-to-heading t)
6976 (hide-subtree)
6977 (org-reveal)
6978 (cond
6979 ((equal state "folded")
6980 (hide-subtree))
6981 ((equal state "children")
6982 (org-show-hidden-entry)
6983 (show-children))
6984 ((equal state "content")
6985 (save-excursion
6986 (save-restriction
6987 (org-narrow-to-subtree)
6988 (org-content))))
6989 ((member state '("all" "showall"))
6990 (show-subtree)))))))
6991 (unless no-cleanup
6992 (org-cycle-hide-archived-subtrees 'all)
6993 (org-cycle-hide-drawers 'all)
6994 (org-cycle-show-empty-lines 'all)))))
6996 ;; This function uses outline-regexp instead of the more fundamental
6997 ;; org-outline-regexp so that org-cycle-global works outside of Org
6998 ;; buffers, where outline-regexp is needed.
6999 (defun org-overview ()
7000 "Switch to overview mode, showing only top-level headlines.
7001 This shows all headlines with a level equal or greater than the level
7002 of the first headline in the buffer. This is important, because if the
7003 first headline is not level one, then (hide-sublevels 1) gives confusing
7004 results."
7005 (interactive)
7006 (save-excursion
7007 (let ((level
7008 (save-excursion
7009 (goto-char (point-min))
7010 (if (re-search-forward (concat "^" outline-regexp) nil t)
7011 (progn
7012 (goto-char (match-beginning 0))
7013 (funcall outline-level))))))
7014 (and level (hide-sublevels level)))))
7016 (defun org-content (&optional arg)
7017 "Show all headlines in the buffer, like a table of contents.
7018 With numerical argument N, show content up to level N."
7019 (interactive "P")
7020 (org-overview)
7021 (save-excursion
7022 ;; Visit all headings and show their offspring
7023 (and (integerp arg) (org-overview))
7024 (goto-char (point-max))
7025 (catch 'exit
7026 (while (and (progn (condition-case nil
7027 (outline-previous-visible-heading 1)
7028 (error (goto-char (point-min))))
7030 (looking-at org-outline-regexp))
7031 (if (integerp arg)
7032 (show-children (1- arg))
7033 (show-branches))
7034 (if (bobp) (throw 'exit nil))))))
7036 (defun org-optimize-window-after-visibility-change (state)
7037 "Adjust the window after a change in outline visibility.
7038 This function is the default value of the hook `org-cycle-hook'."
7039 (when (get-buffer-window (current-buffer))
7040 (cond
7041 ((eq state 'content) nil)
7042 ((eq state 'all) nil)
7043 ((eq state 'folded) nil)
7044 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7045 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7047 (defun org-remove-empty-overlays-at (pos)
7048 "Remove outline overlays that do not contain non-white stuff."
7049 (mapc
7050 (lambda (o)
7051 (and (eq 'outline (overlay-get o 'invisible))
7052 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7053 (overlay-end o))))
7054 (delete-overlay o)))
7055 (overlays-at pos)))
7057 (defun org-clean-visibility-after-subtree-move ()
7058 "Fix visibility issues after moving a subtree."
7059 ;; First, find a reasonable region to look at:
7060 ;; Start two siblings above, end three below
7061 (let* ((beg (save-excursion
7062 (and (org-get-last-sibling)
7063 (org-get-last-sibling))
7064 (point)))
7065 (end (save-excursion
7066 (and (org-get-next-sibling)
7067 (org-get-next-sibling)
7068 (org-get-next-sibling))
7069 (if (org-at-heading-p)
7070 (point-at-eol)
7071 (point))))
7072 (level (looking-at "\\*+"))
7073 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7074 (save-excursion
7075 (save-restriction
7076 (narrow-to-region beg end)
7077 (when re
7078 ;; Properly fold already folded siblings
7079 (goto-char (point-min))
7080 (while (re-search-forward re nil t)
7081 (if (and (not (outline-invisible-p))
7082 (save-excursion
7083 (goto-char (point-at-eol)) (outline-invisible-p)))
7084 (hide-entry))))
7085 (org-cycle-show-empty-lines 'overview)
7086 (org-cycle-hide-drawers 'overview)))))
7088 (defun org-cycle-show-empty-lines (state)
7089 "Show empty lines above all visible headlines.
7090 The region to be covered depends on STATE when called through
7091 `org-cycle-hook'. Lisp program can use t for STATE to get the
7092 entire buffer covered. Note that an empty line is only shown if there
7093 are at least `org-cycle-separator-lines' empty lines before the headline."
7094 (when (not (= org-cycle-separator-lines 0))
7095 (save-excursion
7096 (let* ((n (abs org-cycle-separator-lines))
7097 (re (cond
7098 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7099 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7100 (t (let ((ns (number-to-string (- n 2))))
7101 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7102 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7103 beg end b e)
7104 (cond
7105 ((memq state '(overview contents t))
7106 (setq beg (point-min) end (point-max)))
7107 ((memq state '(children folded))
7108 (setq beg (point) end (progn (org-end-of-subtree t t)
7109 (beginning-of-line 2)
7110 (point)))))
7111 (when beg
7112 (goto-char beg)
7113 (while (re-search-forward re end t)
7114 (unless (get-char-property (match-end 1) 'invisible)
7115 (setq e (match-end 1))
7116 (if (< org-cycle-separator-lines 0)
7117 (setq b (save-excursion
7118 (goto-char (match-beginning 0))
7119 (org-back-over-empty-lines)
7120 (if (save-excursion
7121 (goto-char (max (point-min) (1- (point))))
7122 (org-at-heading-p))
7123 (1- (point))
7124 (point))))
7125 (setq b (match-beginning 1)))
7126 (outline-flag-region b e nil)))))))
7127 ;; Never hide empty lines at the end of the file.
7128 (save-excursion
7129 (goto-char (point-max))
7130 (outline-previous-heading)
7131 (outline-end-of-heading)
7132 (if (and (looking-at "[ \t\n]+")
7133 (= (match-end 0) (point-max)))
7134 (outline-flag-region (point) (match-end 0) nil))))
7136 (defun org-show-empty-lines-in-parent ()
7137 "Move to the parent and re-show empty lines before visible headlines."
7138 (save-excursion
7139 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7140 (org-cycle-show-empty-lines context))))
7142 (defun org-files-list ()
7143 "Return `org-agenda-files' list, plus all open org-mode files.
7144 This is useful for operations that need to scan all of a user's
7145 open and agenda-wise Org files."
7146 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7147 (dolist (buf (buffer-list))
7148 (with-current-buffer buf
7149 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7150 (let ((file (expand-file-name (buffer-file-name))))
7151 (unless (member file files)
7152 (push file files))))))
7153 files))
7155 (defsubst org-entry-beginning-position ()
7156 "Return the beginning position of the current entry."
7157 (save-excursion (outline-back-to-heading t) (point)))
7159 (defsubst org-entry-end-position ()
7160 "Return the end position of the current entry."
7161 (save-excursion (outline-next-heading) (point)))
7163 (defun org-cycle-hide-drawers (state &optional exceptions)
7164 "Re-hide all drawers after a visibility state change.
7165 When non-nil, optional argument EXCEPTIONS is a list of strings
7166 specifying which drawers should not be hidden."
7167 (when (and (derived-mode-p 'org-mode)
7168 (not (memq state '(overview folded contents))))
7169 (save-excursion
7170 (let* ((globalp (memq state '(contents all)))
7171 (beg (if globalp (point-min) (point)))
7172 (end (if globalp (point-max)
7173 (if (eq state 'children)
7174 (save-excursion (outline-next-heading) (point))
7175 (org-end-of-subtree t)))))
7176 (goto-char beg)
7177 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7178 (unless (member-ignore-case (match-string 1) exceptions)
7179 (let ((drawer (org-element-at-point)))
7180 (when (memq (org-element-type drawer) '(drawer property-drawer))
7181 (org-flag-drawer t drawer)
7182 ;; Make sure to skip drawer entirely or we might flag
7183 ;; it another time when matching its ending line with
7184 ;; `org-drawer-regexp'.
7185 (goto-char (org-element-property :end drawer))))))))))
7187 (defun org-cycle-hide-inline-tasks (state)
7188 "Re-hide inline tasks when switching to 'contents or 'children
7189 visibility state."
7190 (case state
7191 (contents
7192 (when (org-bound-and-true-p org-inlinetask-min-level)
7193 (hide-sublevels (1- org-inlinetask-min-level))))
7194 (children
7195 (when (featurep 'org-inlinetask)
7196 (save-excursion
7197 (while (and (outline-next-heading)
7198 (org-inlinetask-at-task-p))
7199 (org-inlinetask-toggle-visibility)
7200 (org-inlinetask-goto-end)))))))
7202 (defun org-flag-drawer (flag &optional element)
7203 "When FLAG is non-nil, hide the drawer we are at.
7204 Otherwise make it visible. When optional argument ELEMENT is
7205 a parsed drawer, as returned by `org-element-at-point', hide or
7206 show that drawer instead."
7207 (when (save-excursion
7208 (beginning-of-line)
7209 (org-looking-at-p org-drawer-regexp))
7210 (let ((drawer (or element (org-element-at-point))))
7211 (when (memq (org-element-type drawer) '(drawer property-drawer))
7212 (let ((post (org-element-property :post-affiliated drawer)))
7213 (save-excursion
7214 (outline-flag-region
7215 (progn (goto-char post) (line-end-position))
7216 (progn (goto-char (org-element-property :end drawer))
7217 (skip-chars-backward " \r\t\n")
7218 (line-end-position))
7219 flag))
7220 ;; When the drawer is hidden away, make sure point lies in
7221 ;; a visible part of the buffer.
7222 (when (and flag (> (line-beginning-position) post))
7223 (goto-char post)))))))
7225 (defun org-subtree-end-visible-p ()
7226 "Is the end of the current subtree visible?"
7227 (pos-visible-in-window-p
7228 (save-excursion (org-end-of-subtree t) (point))))
7230 (defun org-first-headline-recenter ()
7231 "Move cursor to the first headline and recenter the headline."
7232 (goto-char (point-min))
7233 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7234 (set-window-start (selected-window) (point-at-bol))))
7236 ;;; Saving and restoring visibility
7238 (defun org-outline-overlay-data (&optional use-markers)
7239 "Return a list of the locations of all outline overlays.
7240 These are overlays with the `invisible' property value `outline'.
7241 The return value is a list of cons cells, with start and stop
7242 positions for each overlay.
7243 If USE-MARKERS is set, return the positions as markers."
7244 (let (beg end)
7245 (save-excursion
7246 (save-restriction
7247 (widen)
7248 (delq nil
7249 (mapcar (lambda (o)
7250 (when (eq (overlay-get o 'invisible) 'outline)
7251 (setq beg (overlay-start o)
7252 end (overlay-end o))
7253 (and beg end (> end beg)
7254 (if use-markers
7255 (cons (copy-marker beg)
7256 (copy-marker end t))
7257 (cons beg end)))))
7258 (overlays-in (point-min) (point-max))))))))
7260 (defun org-set-outline-overlay-data (data)
7261 "Create visibility overlays for all positions in DATA.
7262 DATA should have been made by `org-outline-overlay-data'."
7263 (let (o)
7264 (save-excursion
7265 (save-restriction
7266 (widen)
7267 (show-all)
7268 (mapc (lambda (c)
7269 (outline-flag-region (car c) (cdr c) t))
7270 data)))))
7272 ;;; Folding of blocks
7274 (defvar org-hide-block-overlays nil
7275 "Overlays hiding blocks.")
7276 (make-variable-buffer-local 'org-hide-block-overlays)
7278 (defun org-block-map (function &optional start end)
7279 "Call FUNCTION at the head of all source blocks in the current buffer.
7280 Optional arguments START and END can be used to limit the range."
7281 (let ((start (or start (point-min)))
7282 (end (or end (point-max))))
7283 (save-excursion
7284 (goto-char start)
7285 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7286 (save-excursion
7287 (save-match-data
7288 (goto-char (match-beginning 0))
7289 (funcall function)))))))
7291 (defun org-hide-block-toggle-all ()
7292 "Toggle the visibility of all blocks in the current buffer."
7293 (org-block-map 'org-hide-block-toggle))
7295 (defun org-hide-block-all ()
7296 "Fold all blocks in the current buffer."
7297 (interactive)
7298 (org-show-block-all)
7299 (org-block-map 'org-hide-block-toggle-maybe))
7301 (defun org-show-block-all ()
7302 "Unfold all blocks in the current buffer."
7303 (interactive)
7304 (mapc 'delete-overlay org-hide-block-overlays)
7305 (setq org-hide-block-overlays nil))
7307 (defun org-hide-block-toggle-maybe ()
7308 "Toggle visibility of block at point.
7309 Unlike to `org-hide-block-toggle', this function does not throw
7310 an error. Return a non-nil value when toggling is successful."
7311 (interactive)
7312 (ignore-errors (org-hide-block-toggle)))
7314 (defun org-hide-block-toggle (&optional force)
7315 "Toggle the visibility of the current block.
7316 When optional argument FORCE is `off', make block visible. If it
7317 is non-nil, hide it unconditionally. Throw an error when not at
7318 a block. Return a non-nil value when toggling is successful."
7319 (interactive)
7320 (let ((element (org-element-at-point)))
7321 (unless (memq (org-element-type element)
7322 '(center-block comment-block dynamic-block example-block
7323 export-block quote-block special-block
7324 src-block verse-block))
7325 (user-error "Not at a block"))
7326 (let* ((start (save-excursion
7327 (goto-char (org-element-property :post-affiliated element))
7328 (line-end-position)))
7329 (end (save-excursion
7330 (goto-char (org-element-property :end element))
7331 (skip-chars-backward " \r\t\n")
7332 (line-end-position)))
7333 (overlays (overlays-at start)))
7334 (cond
7335 ;; Do nothing when not before or at the block opening line or
7336 ;; at the block closing line.
7337 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7338 ((and (not (eq force 'off))
7339 (not (memq t (mapcar
7340 (lambda (o)
7341 (eq (overlay-get o 'invisible) 'org-hide-block))
7342 overlays))))
7343 (let ((ov (make-overlay start end)))
7344 (overlay-put ov 'invisible 'org-hide-block)
7345 ;; Make the block accessible to `isearch'.
7346 (overlay-put
7347 ov 'isearch-open-invisible
7348 (lambda (ov)
7349 (when (memq ov org-hide-block-overlays)
7350 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7351 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7352 (delete-overlay ov))))
7353 (push ov org-hide-block-overlays)
7354 ;; When the block is hidden away, make sure point is left in
7355 ;; a visible part of the buffer.
7356 (when (> (line-beginning-position) start)
7357 (goto-char start)
7358 (beginning-of-line))
7359 ;; Signal successful toggling.
7361 ((or (not force) (eq force 'off))
7362 (dolist (ov overlays t)
7363 (when (memq ov org-hide-block-overlays)
7364 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7365 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7366 (delete-overlay ov))))))))
7368 ;; org-tab-after-check-for-cycling-hook
7369 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7370 ;; Remove overlays when changing major mode
7371 (add-hook 'org-mode-hook
7372 (lambda () (org-add-hook 'change-major-mode-hook
7373 'org-show-block-all 'append 'local)))
7375 ;;; Org-goto
7377 (defvar org-goto-window-configuration nil)
7378 (defvar org-goto-marker nil)
7379 (defvar org-goto-map)
7380 (defun org-goto-map ()
7381 "Set the keymap `org-goto'."
7382 (setq org-goto-map
7383 (let ((map (make-sparse-keymap)))
7384 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7385 mouse-drag-region universal-argument org-occur))
7386 cmd)
7387 (while (setq cmd (pop cmds))
7388 (substitute-key-definition cmd cmd map global-map)))
7389 (suppress-keymap map)
7390 (org-defkey map "\C-m" 'org-goto-ret)
7391 (org-defkey map [(return)] 'org-goto-ret)
7392 (org-defkey map [(left)] 'org-goto-left)
7393 (org-defkey map [(right)] 'org-goto-right)
7394 (org-defkey map [(control ?g)] 'org-goto-quit)
7395 (org-defkey map "\C-i" 'org-cycle)
7396 (org-defkey map [(tab)] 'org-cycle)
7397 (org-defkey map [(down)] 'outline-next-visible-heading)
7398 (org-defkey map [(up)] 'outline-previous-visible-heading)
7399 (if org-goto-auto-isearch
7400 (if (fboundp 'define-key-after)
7401 (define-key-after map [t] 'org-goto-local-auto-isearch)
7402 nil)
7403 (org-defkey map "q" 'org-goto-quit)
7404 (org-defkey map "n" 'outline-next-visible-heading)
7405 (org-defkey map "p" 'outline-previous-visible-heading)
7406 (org-defkey map "f" 'outline-forward-same-level)
7407 (org-defkey map "b" 'outline-backward-same-level)
7408 (org-defkey map "u" 'outline-up-heading))
7409 (org-defkey map "/" 'org-occur)
7410 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7411 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7412 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7413 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7414 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7415 map)))
7417 (defconst org-goto-help
7418 "Browse buffer copy, to find location or copy text.%s
7419 RET=jump to location C-g=quit and return to previous location
7420 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7422 (defvar org-goto-start-pos) ; dynamically scoped parameter
7424 (defun org-goto (&optional alternative-interface)
7425 "Look up a different location in the current file, keeping current visibility.
7427 When you want look-up or go to a different location in a
7428 document, the fastest way is often to fold the entire buffer and
7429 then dive into the tree. This method has the disadvantage, that
7430 the previous location will be folded, which may not be what you
7431 want.
7433 This command works around this by showing a copy of the current
7434 buffer in an indirect buffer, in overview mode. You can dive
7435 into the tree in that copy, use org-occur and incremental search
7436 to find a location. When pressing RET or `Q', the command
7437 returns to the original buffer in which the visibility is still
7438 unchanged. After RET it will also jump to the location selected
7439 in the indirect buffer and expose the headline hierarchy above.
7441 With a prefix argument, use the alternative interface: e.g. if
7442 `org-goto-interface' is 'outline use 'outline-path-completion."
7443 (interactive "P")
7444 (org-goto-map)
7445 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7446 (org-refile-use-outline-path t)
7447 (org-refile-target-verify-function nil)
7448 (interface
7449 (if (not alternative-interface)
7450 org-goto-interface
7451 (if (eq org-goto-interface 'outline)
7452 'outline-path-completion
7453 'outline)))
7454 (org-goto-start-pos (point))
7455 (selected-point
7456 (if (eq interface 'outline)
7457 (car (org-get-location (current-buffer) org-goto-help))
7458 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7459 (org-refile-check-position pa)
7460 (nth 3 pa)))))
7461 (if selected-point
7462 (progn
7463 (org-mark-ring-push org-goto-start-pos)
7464 (goto-char selected-point)
7465 (if (or (outline-invisible-p) (org-invisible-p2))
7466 (org-show-context 'org-goto)))
7467 (message "Quit"))))
7469 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7470 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7471 (defvar org-goto-local-auto-isearch-map) ; defined below
7473 (defun org-get-location (buf help)
7474 "Let the user select a location in the Org-mode buffer BUF.
7475 This function uses a recursive edit. It returns the selected position
7476 or nil."
7477 (org-no-popups
7478 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7479 (isearch-hide-immediately nil)
7480 (isearch-search-fun-function
7481 (lambda () 'org-goto-local-search-headings))
7482 (org-goto-selected-point org-goto-exit-command))
7483 (save-excursion
7484 (save-window-excursion
7485 (delete-other-windows)
7486 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7487 (org-pop-to-buffer-same-window
7488 (condition-case nil
7489 (make-indirect-buffer (current-buffer) "*org-goto*")
7490 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7491 (with-output-to-temp-buffer "*Org Help*"
7492 (princ (format help (if org-goto-auto-isearch
7493 " Just type for auto-isearch."
7494 " n/p/f/b/u to navigate, q to quit."))))
7495 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7496 (setq buffer-read-only nil)
7497 (let ((org-startup-truncated t)
7498 (org-startup-folded nil)
7499 (org-startup-align-all-tables nil))
7500 (org-mode)
7501 (org-overview))
7502 (setq buffer-read-only t)
7503 (if (and (boundp 'org-goto-start-pos)
7504 (integer-or-marker-p org-goto-start-pos))
7505 (progn (goto-char org-goto-start-pos)
7506 (when (outline-invisible-p)
7507 (org-show-set-visibility 'lineage)))
7508 (goto-char (point-min)))
7509 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7510 (message "Select location and press RET")
7511 (use-local-map org-goto-map)
7512 (recursive-edit)))
7513 (kill-buffer "*org-goto*")
7514 (cons org-goto-selected-point org-goto-exit-command))))
7516 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7517 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7518 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7519 (if (fboundp 'isearch-other-control-char)
7520 (progn
7521 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7522 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7523 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7524 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7525 (define-key org-goto-local-auto-isearch-map [return] nil))
7527 (defun org-goto-local-search-headings (string bound noerror)
7528 "Search and make sure that any matches are in headlines."
7529 (catch 'return
7530 (while (if isearch-forward
7531 (search-forward string bound noerror)
7532 (search-backward string bound noerror))
7533 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7534 (and (member :headline context)
7535 (not (member :tags context))))
7536 (throw 'return (point))))))
7538 (defun org-goto-local-auto-isearch ()
7539 "Start isearch."
7540 (interactive)
7541 (goto-char (point-min))
7542 (let ((keys (this-command-keys)))
7543 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7544 (isearch-mode t)
7545 (isearch-process-search-char (string-to-char keys)))))
7547 (defun org-goto-ret (&optional arg)
7548 "Finish `org-goto' by going to the new location."
7549 (interactive "P")
7550 (setq org-goto-selected-point (point)
7551 org-goto-exit-command 'return)
7552 (throw 'exit nil))
7554 (defun org-goto-left ()
7555 "Finish `org-goto' by going to the new location."
7556 (interactive)
7557 (if (org-at-heading-p)
7558 (progn
7559 (beginning-of-line 1)
7560 (setq org-goto-selected-point (point)
7561 org-goto-exit-command 'left)
7562 (throw 'exit nil))
7563 (user-error "Not on a heading")))
7565 (defun org-goto-right ()
7566 "Finish `org-goto' by going to the new location."
7567 (interactive)
7568 (if (org-at-heading-p)
7569 (progn
7570 (setq org-goto-selected-point (point)
7571 org-goto-exit-command 'right)
7572 (throw 'exit nil))
7573 (user-error "Not on a heading")))
7575 (defun org-goto-quit ()
7576 "Finish `org-goto' without cursor motion."
7577 (interactive)
7578 (setq org-goto-selected-point nil)
7579 (setq org-goto-exit-command 'quit)
7580 (throw 'exit nil))
7582 ;;; Indirect buffer display of subtrees
7584 (defvar org-indirect-dedicated-frame nil
7585 "This is the frame being used for indirect tree display.")
7586 (defvar org-last-indirect-buffer nil)
7588 (defun org-tree-to-indirect-buffer (&optional arg)
7589 "Create indirect buffer and narrow it to current subtree.
7590 With a numerical prefix ARG, go up to this level and then take that tree.
7591 If ARG is negative, go up that many levels.
7593 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7594 indirect buffer previously made with this command, to avoid proliferation of
7595 indirect buffers. However, when you call the command with a \
7596 \\[universal-argument] prefix, or
7597 when `org-indirect-buffer-display' is `new-frame', the last buffer
7598 is kept so that you can work with several indirect buffers at the same time.
7599 If `org-indirect-buffer-display' is `dedicated-frame', the \
7600 \\[universal-argument] prefix also
7601 requests that a new frame be made for the new buffer, so that the dedicated
7602 frame is not changed."
7603 (interactive "P")
7604 (let ((cbuf (current-buffer))
7605 (cwin (selected-window))
7606 (pos (point))
7607 beg end level heading ibuf)
7608 (save-excursion
7609 (org-back-to-heading t)
7610 (when (numberp arg)
7611 (setq level (org-outline-level))
7612 (if (< arg 0) (setq arg (+ level arg)))
7613 (while (> (setq level (org-outline-level)) arg)
7614 (org-up-heading-safe)))
7615 (setq beg (point)
7616 heading (org-get-heading))
7617 (org-end-of-subtree t t)
7618 (if (org-at-heading-p) (backward-char 1))
7619 (setq end (point)))
7620 (if (and (buffer-live-p org-last-indirect-buffer)
7621 (not (eq org-indirect-buffer-display 'new-frame))
7622 (not arg))
7623 (kill-buffer org-last-indirect-buffer))
7624 (setq ibuf (org-get-indirect-buffer cbuf heading)
7625 org-last-indirect-buffer ibuf)
7626 (cond
7627 ((or (eq org-indirect-buffer-display 'new-frame)
7628 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7629 (select-frame (make-frame))
7630 (delete-other-windows)
7631 (org-pop-to-buffer-same-window ibuf)
7632 (org-set-frame-title heading))
7633 ((eq org-indirect-buffer-display 'dedicated-frame)
7634 (raise-frame
7635 (select-frame (or (and org-indirect-dedicated-frame
7636 (frame-live-p org-indirect-dedicated-frame)
7637 org-indirect-dedicated-frame)
7638 (setq org-indirect-dedicated-frame (make-frame)))))
7639 (delete-other-windows)
7640 (org-pop-to-buffer-same-window ibuf)
7641 (org-set-frame-title (concat "Indirect: " heading)))
7642 ((eq org-indirect-buffer-display 'current-window)
7643 (org-pop-to-buffer-same-window ibuf))
7644 ((eq org-indirect-buffer-display 'other-window)
7645 (pop-to-buffer ibuf))
7646 (t (error "Invalid value")))
7647 (if (featurep 'xemacs)
7648 (save-excursion (org-mode) (turn-on-font-lock)))
7649 (narrow-to-region beg end)
7650 (show-all)
7651 (goto-char pos)
7652 (run-hook-with-args 'org-cycle-hook 'all)
7653 (and (window-live-p cwin) (select-window cwin))))
7655 (defun org-get-indirect-buffer (&optional buffer heading)
7656 (setq buffer (or buffer (current-buffer)))
7657 (let ((n 1) (base (buffer-name buffer)) bname)
7658 (while (buffer-live-p
7659 (get-buffer
7660 (setq bname
7661 (concat base "-"
7662 (if heading (concat heading "-" (number-to-string n))
7663 (number-to-string n))))))
7664 (setq n (1+ n)))
7665 (condition-case nil
7666 (make-indirect-buffer buffer bname 'clone)
7667 (error (make-indirect-buffer buffer bname)))))
7669 (defun org-set-frame-title (title)
7670 "Set the title of the current frame to the string TITLE."
7671 ;; FIXME: how to name a single frame in XEmacs???
7672 (unless (featurep 'xemacs)
7673 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7675 ;;;; Structure editing
7677 ;;; Inserting headlines
7679 (defun org-previous-line-empty-p (&optional next)
7680 "Is the previous line a blank line?
7681 When NEXT is non-nil, check the next line instead."
7682 (save-excursion
7683 (and (not (bobp))
7684 (or (beginning-of-line (if next 2 0)) t)
7685 (save-match-data
7686 (looking-at "[ \t]*$")))))
7688 (defun org-insert-heading (&optional arg invisible-ok top-level)
7689 "Insert a new heading or an item with the same depth at point.
7691 If point is at the beginning of a heading or a list item, insert
7692 a new heading or a new item above the current one. If point is
7693 at the beginning of a normal line, turn the line into a heading.
7695 If point is in the middle of a headline or a list item, split the
7696 headline or the item and create a new headline/item with the text
7697 in the current line after point \(see `org-M-RET-may-split-line'
7698 on how to modify this behavior).
7700 With one universal prefix argument, set the user option
7701 `org-insert-heading-respect-content' to t for the duration of
7702 the command. This modifies the behavior described above in this
7703 ways: on list items and at the beginning of normal lines, force
7704 the insertion of a heading after the current subtree.
7706 With two universal prefix arguments, insert the heading at the
7707 end of the grandparent subtree. For example, if point is within
7708 a 2nd-level heading, then it will insert a 2nd-level heading at
7709 the end of the 1st-level parent heading.
7711 If point is at the beginning of a headline, insert a sibling
7712 before the current headline. If point is not at the beginning,
7713 split the line and create a new headline with the text in the
7714 current line after point \(see `org-M-RET-may-split-line' on how
7715 to modify this behavior).
7717 If point is at the beginning of a normal line, turn this line
7718 into a heading.
7720 When INVISIBLE-OK is set, stop at invisible headlines when going
7721 back. This is important for non-interactive uses of the
7722 command.
7724 When optional argument TOP-LEVEL is non-nil, insert a level 1
7725 heading, unconditionally."
7726 (interactive "P")
7727 (if (org-called-interactively-p 'any) (org-reveal))
7728 (let ((itemp (and (not top-level) (org-in-item-p)))
7729 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7730 (respect-content (or org-insert-heading-respect-content
7731 (equal arg '(4))))
7732 (initial-content "")
7733 (adjust-empty-lines t))
7735 (cond
7737 ((or (= (buffer-size) 0)
7738 (and (not (save-excursion
7739 (and (ignore-errors (org-back-to-heading invisible-ok))
7740 (org-at-heading-p))))
7741 (or arg (not itemp))))
7742 ;; At beginning of buffer or so high up that only a heading
7743 ;; makes sense.
7744 (cond ((and (bolp) (not respect-content)) (insert "* "))
7745 ((not respect-content)
7746 (unless may-split (end-of-line))
7747 (insert "\n* "))
7748 ((re-search-forward org-outline-regexp-bol nil t)
7749 (beginning-of-line)
7750 (insert "* \n")
7751 (backward-char))
7752 (t (goto-char (point-max))
7753 (insert "\n* ")))
7754 (run-hooks 'org-insert-heading-hook))
7756 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7759 ;; Maybe move at the end of the subtree
7760 (when (equal arg '(16))
7761 (org-up-heading-safe)
7762 (org-end-of-subtree t))
7763 ;; Insert a heading
7764 (save-restriction
7765 (widen)
7766 (let* ((level nil)
7767 (on-heading (org-at-heading-p))
7768 (empty-line-p (if on-heading
7769 (org-previous-line-empty-p)
7770 ;; We will decide later
7771 nil))
7772 ;; Get a level string to fall back on.
7773 (fix-level
7774 (if (org-before-first-heading-p) "*"
7775 (save-excursion
7776 (org-back-to-heading t)
7777 (if (org-previous-line-empty-p) (setq empty-line-p t))
7778 (looking-at org-outline-regexp)
7779 (make-string (1- (length (match-string 0))) ?*))))
7780 (stars
7781 (save-excursion
7782 (condition-case nil
7783 (if top-level "* "
7784 (org-back-to-heading invisible-ok)
7785 (when (and (not on-heading)
7786 (featurep 'org-inlinetask)
7787 (integerp org-inlinetask-min-level)
7788 (>= (length (match-string 0))
7789 org-inlinetask-min-level))
7790 ;; Find a heading level before the inline
7791 ;; task.
7792 (while (and (setq level (org-up-heading-safe))
7793 (>= level org-inlinetask-min-level)))
7794 (if (org-at-heading-p)
7795 (org-back-to-heading invisible-ok)
7796 (error "This should not happen")))
7797 (unless (and (save-excursion
7798 (save-match-data
7799 (org-backward-heading-same-level
7800 1 invisible-ok))
7801 (= (point) (match-beginning 0)))
7802 (not (org-previous-line-empty-p t)))
7803 (setq empty-line-p (or empty-line-p
7804 (org-previous-line-empty-p))))
7805 (match-string 0))
7806 (error (or fix-level "* ")))))
7807 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7808 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7809 pos hide-previous previous-pos)
7811 ;; If we insert after content, move there and clean up
7812 ;; whitespace.
7813 (when (and respect-content
7814 (not (org-looking-at-p org-outline-regexp-bol)))
7815 (if (not (org-before-first-heading-p))
7816 (org-end-of-subtree nil t)
7817 (re-search-forward org-outline-regexp-bol)
7818 (beginning-of-line 0))
7819 (skip-chars-backward " \r\t\n")
7820 (and (not (looking-back "^\\*+"))
7821 (looking-at "[ \t]+") (replace-match ""))
7822 (unless (eobp) (forward-char 1))
7823 (when (looking-at "^\\*")
7824 (unless (bobp) (backward-char 1))
7825 (insert "\n")))
7827 ;; If we are splitting, grab the text that should be moved
7828 ;; to the new headline.
7829 (when may-split
7830 (if (org-on-heading-p)
7831 ;; This is a heading: split intelligently (keeping
7832 ;; tags).
7833 (let ((pos (point)))
7834 (beginning-of-line)
7835 (unless (looking-at org-complex-heading-regexp)
7836 (error "This should not happen"))
7837 (when (and (match-beginning 4)
7838 (> pos (match-beginning 4))
7839 (< pos (match-end 4)))
7840 (setq initial-content (buffer-substring pos (match-end 4)))
7841 (goto-char pos)
7842 (delete-region (point) (match-end 4))
7843 (if (looking-at "[ \t]*$")
7844 (replace-match "")
7845 (insert (make-string (length initial-content) ?\s)))
7846 (setq initial-content (org-trim initial-content)))
7847 (goto-char pos))
7848 ;; A normal line.
7849 (setq initial-content
7850 (org-trim
7851 (delete-and-extract-region (point) (line-end-position))))))
7853 ;; If we are at the beginning of the line, insert before it.
7854 ;; Otherwise, after it.
7855 (cond
7856 ((and (bolp) (looking-at "[ \t]*$")))
7857 ((bolp) (open-line 1))
7858 (t (end-of-line)
7859 (insert "\n")))
7861 ;; Insert the new heading
7862 (insert stars)
7863 (just-one-space)
7864 (insert initial-content)
7865 (when (and adjust-empty-lines
7866 (not (and blank (org-previous-line-empty-p))))
7867 (org-N-empty-lines-before-current (if blank 1 0)))
7868 (run-hooks 'org-insert-heading-hook)))))))
7870 (defun org-N-empty-lines-before-current (N)
7871 "Make the number of empty lines before current exactly N.
7872 So this will delete or add empty lines."
7873 (save-excursion
7874 (beginning-of-line)
7875 (let ((p (point)))
7876 (skip-chars-backward " \r\t\n")
7877 (unless (bolp) (forward-line))
7878 (delete-region (point) p))
7879 (when (> N 0) (insert (make-string N ?\n)))))
7881 (defun org-get-heading (&optional no-tags no-todo)
7882 "Return the heading of the current entry, without the stars.
7883 When NO-TAGS is non-nil, don't include tags.
7884 When NO-TODO is non-nil, don't include TODO keywords."
7885 (save-excursion
7886 (org-back-to-heading t)
7887 (cond
7888 ((and no-tags no-todo)
7889 (looking-at org-complex-heading-regexp)
7890 (match-string 4))
7891 (no-tags
7892 (looking-at (concat org-outline-regexp
7893 "\\(.*?\\)"
7894 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7895 (match-string 1))
7896 (no-todo
7897 (looking-at org-todo-line-regexp)
7898 (match-string 3))
7899 (t (looking-at org-heading-regexp)
7900 (match-string 2)))))
7902 (defvar orgstruct-mode) ; defined below
7904 (defun org-heading-components ()
7905 "Return the components of the current heading.
7906 This is a list with the following elements:
7907 - the level as an integer
7908 - the reduced level, different if `org-odd-levels-only' is set.
7909 - the TODO keyword, or nil
7910 - the priority character, like ?A, or nil if no priority is given
7911 - the headline text itself, or the tags string if no headline text
7912 - the tags string, or nil."
7913 (save-excursion
7914 (org-back-to-heading t)
7915 (if (let (case-fold-search)
7916 (looking-at
7917 (if orgstruct-mode
7918 org-heading-regexp
7919 org-complex-heading-regexp)))
7920 (if orgstruct-mode
7921 (list (length (match-string 1))
7922 (org-reduced-level (length (match-string 1)))
7925 (match-string 2)
7926 nil)
7927 (list (length (match-string 1))
7928 (org-reduced-level (length (match-string 1)))
7929 (org-match-string-no-properties 2)
7930 (and (match-end 3) (aref (match-string 3) 2))
7931 (org-match-string-no-properties 4)
7932 (org-match-string-no-properties 5))))))
7934 (defun org-get-entry ()
7935 "Get the entry text, after heading, entire subtree."
7936 (save-excursion
7937 (org-back-to-heading t)
7938 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7940 (defun org-insert-heading-after-current ()
7941 "Insert a new heading with same level as current, after current subtree."
7942 (interactive)
7943 (org-back-to-heading)
7944 (org-insert-heading)
7945 (org-move-subtree-down)
7946 (end-of-line 1))
7948 (defun org-insert-heading-respect-content (&optional invisible-ok)
7949 "Insert heading with `org-insert-heading-respect-content' set to t."
7950 (interactive)
7951 (org-insert-heading '(4) invisible-ok))
7953 (defun org-insert-todo-heading-respect-content (&optional force-state)
7954 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7955 (interactive)
7956 (org-insert-todo-heading force-state '(4)))
7958 (defun org-insert-todo-heading (arg &optional force-heading)
7959 "Insert a new heading with the same level and TODO state as current heading.
7960 If the heading has no TODO state, or if the state is DONE, use the first
7961 state (TODO by default). Also with one prefix arg, force first state. With
7962 two prefix args, force inserting at the end of the parent subtree."
7963 (interactive "P")
7964 (when (or force-heading (not (org-insert-item 'checkbox)))
7965 (org-insert-heading (or (and (equal arg '(16)) '(16))
7966 force-heading))
7967 (save-excursion
7968 (org-back-to-heading)
7969 (outline-previous-heading)
7970 (looking-at org-todo-line-regexp))
7971 (let*
7972 ((new-mark-x
7973 (if (or (equal arg '(4))
7974 (not (match-beginning 2))
7975 (member (match-string 2) org-done-keywords))
7976 (car org-todo-keywords-1)
7977 (match-string 2)))
7978 (new-mark
7980 (run-hook-with-args-until-success
7981 'org-todo-get-default-hook new-mark-x nil)
7982 new-mark-x)))
7983 (beginning-of-line 1)
7984 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7985 (if org-treat-insert-todo-heading-as-state-change
7986 (org-todo new-mark)
7987 (insert new-mark " "))))
7988 (when org-provide-todo-statistics
7989 (org-update-parent-todo-statistics))))
7991 (defun org-insert-subheading (arg)
7992 "Insert a new subheading and demote it.
7993 Works for outline headings and for plain lists alike."
7994 (interactive "P")
7995 (org-insert-heading arg)
7996 (cond
7997 ((org-at-heading-p) (org-do-demote))
7998 ((org-at-item-p) (org-indent-item))))
8000 (defun org-insert-todo-subheading (arg)
8001 "Insert a new subheading with TODO keyword or checkbox and demote it.
8002 Works for outline headings and for plain lists alike."
8003 (interactive "P")
8004 (org-insert-todo-heading arg)
8005 (cond
8006 ((org-at-heading-p) (org-do-demote))
8007 ((org-at-item-p) (org-indent-item))))
8009 ;;; Promotion and Demotion
8011 (defvar org-after-demote-entry-hook nil
8012 "Hook run after an entry has been demoted.
8013 The cursor will be at the beginning of the entry.
8014 When a subtree is being demoted, the hook will be called for each node.")
8016 (defvar org-after-promote-entry-hook nil
8017 "Hook run after an entry has been promoted.
8018 The cursor will be at the beginning of the entry.
8019 When a subtree is being promoted, the hook will be called for each node.")
8021 (defun org-promote-subtree ()
8022 "Promote the entire subtree.
8023 See also `org-promote'."
8024 (interactive)
8025 (save-excursion
8026 (org-with-limited-levels (org-map-tree 'org-promote)))
8027 (org-fix-position-after-promote))
8029 (defun org-demote-subtree ()
8030 "Demote the entire subtree. See `org-demote'.
8031 See also `org-promote'."
8032 (interactive)
8033 (save-excursion
8034 (org-with-limited-levels (org-map-tree 'org-demote)))
8035 (org-fix-position-after-promote))
8038 (defun org-do-promote ()
8039 "Promote the current heading higher up the tree.
8040 If the region is active in `transient-mark-mode', promote all headings
8041 in the region."
8042 (interactive)
8043 (save-excursion
8044 (if (org-region-active-p)
8045 (org-map-region 'org-promote (region-beginning) (region-end))
8046 (org-promote)))
8047 (org-fix-position-after-promote))
8049 (defun org-do-demote ()
8050 "Demote the current heading lower down the tree.
8051 If the region is active in `transient-mark-mode', demote all headings
8052 in the region."
8053 (interactive)
8054 (save-excursion
8055 (if (org-region-active-p)
8056 (org-map-region 'org-demote (region-beginning) (region-end))
8057 (org-demote)))
8058 (org-fix-position-after-promote))
8060 (defun org-fix-position-after-promote ()
8061 "Make sure that after pro/demotion cursor position is right."
8062 (let ((pos (point)))
8063 (when (save-excursion
8064 (beginning-of-line 1)
8065 (looking-at org-todo-line-regexp)
8066 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8067 (cond ((eobp) (insert " "))
8068 ((eolp) (insert " "))
8069 ((equal (char-after) ?\ ) (forward-char 1))))))
8071 (defun org-current-level ()
8072 "Return the level of the current entry, or nil if before the first headline.
8073 The level is the number of stars at the beginning of the
8074 headline. Use `org-reduced-level' to remove the effect of
8075 `org-odd-levels'. Unlike to `org-outline-level', this function
8076 ignores inlinetasks."
8077 (let ((level (org-with-limited-levels (org-outline-level))))
8078 (and (> level 0) level)))
8080 (defun org-get-previous-line-level ()
8081 "Return the outline depth of the last headline before the current line.
8082 Returns 0 for the first headline in the buffer, and nil if before the
8083 first headline."
8084 (and (org-current-level)
8085 (or (and (/= (line-beginning-position) (point-min))
8086 (save-excursion (beginning-of-line 0) (org-current-level)))
8087 0)))
8089 (defun org-reduced-level (l)
8090 "Compute the effective level of a heading.
8091 This takes into account the setting of `org-odd-levels-only'."
8092 (cond
8093 ((zerop l) 0)
8094 (org-odd-levels-only (1+ (floor (/ l 2))))
8095 (t l)))
8097 (defun org-level-increment ()
8098 "Return the number of stars that will be added or removed at a
8099 time to headlines when structure editing, based on the value of
8100 `org-odd-levels-only'."
8101 (if org-odd-levels-only 2 1))
8103 (defun org-get-valid-level (level &optional change)
8104 "Rectify a level change under the influence of `org-odd-levels-only'
8105 LEVEL is a current level, CHANGE is by how much the level should be
8106 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8107 even level numbers will become the next higher odd number."
8108 (if org-odd-levels-only
8109 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8110 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8111 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8112 (max 1 (+ level (or change 0)))))
8114 (if (boundp 'define-obsolete-function-alias)
8115 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8116 (define-obsolete-function-alias 'org-get-legal-level
8117 'org-get-valid-level)
8118 (define-obsolete-function-alias 'org-get-legal-level
8119 'org-get-valid-level "23.1")))
8121 (defun org-promote ()
8122 "Promote the current heading higher up the tree."
8123 (org-with-wide-buffer
8124 (org-back-to-heading t)
8125 (let* ((after-change-functions (remq 'flyspell-after-change-function
8126 after-change-functions))
8127 (level (save-match-data (funcall outline-level)))
8128 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8129 (diff (abs (- level (length up-head) -1))))
8130 (cond
8131 ((and (= level 1) org-allow-promoting-top-level-subtree)
8132 (replace-match "# " nil t))
8133 ((= level 1)
8134 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8135 (t (replace-match up-head nil t)))
8136 (unless (= level 1)
8137 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8138 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8139 (run-hooks 'org-after-promote-entry-hook))))
8141 (defun org-demote ()
8142 "Demote the current heading lower down the tree."
8143 (org-with-wide-buffer
8144 (org-back-to-heading t)
8145 (let* ((after-change-functions (remq 'flyspell-after-change-function
8146 after-change-functions))
8147 (level (save-match-data (funcall outline-level)))
8148 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8149 (diff (abs (- level (length down-head) -1))))
8150 (replace-match down-head nil t)
8151 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8152 (when org-adapt-indentation (org-fixup-indentation diff))
8153 (run-hooks 'org-after-demote-entry-hook))))
8155 (defun org-cycle-level ()
8156 "Cycle the level of an empty headline through possible states.
8157 This goes first to child, then to parent, level, then up the hierarchy.
8158 After top level, it switches back to sibling level."
8159 (interactive)
8160 (let ((org-adapt-indentation nil))
8161 (when (org-point-at-end-of-empty-headline)
8162 (setq this-command 'org-cycle-level) ; Only needed for caching
8163 (let ((cur-level (org-current-level))
8164 (prev-level (org-get-previous-line-level)))
8165 (cond
8166 ;; If first headline in file, promote to top-level.
8167 ((= prev-level 0)
8168 (loop repeat (/ (- cur-level 1) (org-level-increment))
8169 do (org-do-promote)))
8170 ;; If same level as prev, demote one.
8171 ((= prev-level cur-level)
8172 (org-do-demote))
8173 ;; If parent is top-level, promote to top level if not already.
8174 ((= prev-level 1)
8175 (loop repeat (/ (- cur-level 1) (org-level-increment))
8176 do (org-do-promote)))
8177 ;; If top-level, return to prev-level.
8178 ((= cur-level 1)
8179 (loop repeat (/ (- prev-level 1) (org-level-increment))
8180 do (org-do-demote)))
8181 ;; If less than prev-level, promote one.
8182 ((< cur-level prev-level)
8183 (org-do-promote))
8184 ;; If deeper than prev-level, promote until higher than
8185 ;; prev-level.
8186 ((> cur-level prev-level)
8187 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8188 do (org-do-promote))))
8189 t))))
8191 (defun org-map-tree (fun)
8192 "Call FUN for every heading underneath the current one."
8193 (org-back-to-heading)
8194 (let ((level (funcall outline-level)))
8195 (save-excursion
8196 (funcall fun)
8197 (while (and (progn
8198 (outline-next-heading)
8199 (> (funcall outline-level) level))
8200 (not (eobp)))
8201 (funcall fun)))))
8203 (defun org-map-region (fun beg end)
8204 "Call FUN for every heading between BEG and END."
8205 (let ((org-ignore-region t))
8206 (save-excursion
8207 (setq end (copy-marker end))
8208 (goto-char beg)
8209 (if (and (re-search-forward org-outline-regexp-bol nil t)
8210 (< (point) end))
8211 (funcall fun))
8212 (while (and (progn
8213 (outline-next-heading)
8214 (< (point) end))
8215 (not (eobp)))
8216 (funcall fun)))))
8218 (defun org-fixup-indentation (diff)
8219 "Change the indentation in the current entry by DIFF.
8221 DIFF is an integer. Indentation is done according to the
8222 following rules:
8224 - Planning information and property drawers are always indented
8225 according to the new level of the headline;
8227 - Footnote definitions and their contents are ignored;
8229 - Inlinetasks' boundaries are not shifted;
8231 - Empty lines are ignored;
8233 - Other lines' indentation are shifted by DIFF columns, unless
8234 it would introduce a structural change in the document, in
8235 which case no shifting is done at all.
8237 Assume point is at a heading or an inlinetask beginning."
8238 (org-with-wide-buffer
8239 (narrow-to-region (line-beginning-position)
8240 (save-excursion
8241 (if (org-with-limited-levels (org-at-heading-p))
8242 (org-with-limited-levels (outline-next-heading))
8243 (org-inlinetask-goto-end))
8244 (point)))
8245 (forward-line)
8246 ;; Indent properly planning info and property drawer.
8247 (when (org-looking-at-p org-planning-line-re)
8248 (org-indent-line)
8249 (forward-line))
8250 (when (looking-at org-property-drawer-re)
8251 (goto-char (match-end 0))
8252 (forward-line)
8253 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8254 (catch 'no-shift
8255 (when (zerop diff) (throw 'no-shift nil))
8256 ;; If DIFF is negative, first check if a shift is possible at all
8257 ;; (e.g., it doesn't break structure). This can only happen if
8258 ;; some contents are not properly indented.
8259 (let ((case-fold-search t))
8260 (when (< diff 0)
8261 (let ((diff (- diff))
8262 (forbidden-re (concat org-outline-regexp
8263 "\\|"
8264 (substring org-footnote-definition-re 1))))
8265 (save-excursion
8266 (while (not (eobp))
8267 (cond
8268 ((org-looking-at-p "[ \t]*$") (forward-line))
8269 ((and (org-looking-at-p org-footnote-definition-re)
8270 (let ((e (org-element-at-point)))
8271 (and (eq (org-element-type e) 'footnote-definition)
8272 (goto-char (org-element-property :end e))))))
8273 ((org-looking-at-p org-outline-regexp) (forward-line))
8274 ;; Give up if shifting would move before column 0 or
8275 ;; if it would introduce a headline or a footnote
8276 ;; definition.
8278 (skip-chars-forward " \t")
8279 (let ((ind (current-column)))
8280 (when (or (< ind diff)
8281 (and (= ind diff) (org-looking-at-p forbidden-re)))
8282 (throw 'no-shift nil)))
8283 ;; Ignore contents of example blocks and source
8284 ;; blocks if their indentation is meant to be
8285 ;; preserved. Jump to block's closing line.
8286 (beginning-of-line)
8287 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8288 (let ((e (org-element-at-point)))
8289 (and (memq (org-element-type e)
8290 '(example-block src-block))
8291 (or org-src-preserve-indentation
8292 (org-element-property :preserve-indent e))
8293 (goto-char (org-element-property :end e))
8294 (progn (skip-chars-backward " \r\t\n")
8295 (beginning-of-line)
8296 t))))
8297 (forward-line))))))))
8298 ;; Shift lines but footnote definitions, inlinetasks boundaries
8299 ;; by DIFF. Also skip contents of source or example blocks
8300 ;; when indentation is meant to be preserved.
8301 (while (not (eobp))
8302 (cond
8303 ((and (org-looking-at-p org-footnote-definition-re)
8304 (let ((e (org-element-at-point)))
8305 (and (eq (org-element-type e) 'footnote-definition)
8306 (goto-char (org-element-property :end e))))))
8307 ((org-looking-at-p org-outline-regexp) (forward-line))
8308 ((org-looking-at-p "[ \t]*$") (forward-line))
8310 (org-indent-line-to (+ (org-get-indentation) diff))
8311 (beginning-of-line)
8312 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8313 (let ((e (org-element-at-point)))
8314 (and (memq (org-element-type e)
8315 '(example-block src-block))
8316 (or org-src-preserve-indentation
8317 (org-element-property :preserve-indent e))
8318 (goto-char (org-element-property :end e))
8319 (progn (skip-chars-backward " \r\t\n")
8320 (beginning-of-line)
8321 t))))
8322 (forward-line)))))))))
8324 (defun org-convert-to-odd-levels ()
8325 "Convert an org-mode file with all levels allowed to one with odd levels.
8326 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8327 level 5 etc."
8328 (interactive)
8329 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8330 (let ((outline-level 'org-outline-level)
8331 (org-odd-levels-only nil) n)
8332 (save-excursion
8333 (goto-char (point-min))
8334 (while (re-search-forward "^\\*\\*+ " nil t)
8335 (setq n (- (length (match-string 0)) 2))
8336 (while (>= (setq n (1- n)) 0)
8337 (org-demote))
8338 (end-of-line 1))))))
8340 (defun org-convert-to-oddeven-levels ()
8341 "Convert an org-mode file with only odd levels to one with odd/even levels.
8342 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8343 file contains a section with an even level, conversion would
8344 destroy the structure of the file. An error is signaled in this
8345 case."
8346 (interactive)
8347 (goto-char (point-min))
8348 ;; First check if there are no even levels
8349 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8350 (org-show-set-visibility 'canonical)
8351 (error "Not all levels are odd in this file. Conversion not possible"))
8352 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8353 (let ((outline-regexp org-outline-regexp)
8354 (outline-level 'org-outline-level)
8355 (org-odd-levels-only nil) n)
8356 (save-excursion
8357 (goto-char (point-min))
8358 (while (re-search-forward "^\\*\\*+ " nil t)
8359 (setq n (/ (1- (length (match-string 0))) 2))
8360 (while (>= (setq n (1- n)) 0)
8361 (org-promote))
8362 (end-of-line 1))))))
8364 (defun org-tr-level (n)
8365 "Make N odd if required."
8366 (if org-odd-levels-only (1+ (/ n 2)) n))
8368 ;;; Vertical tree motion, cutting and pasting of subtrees
8370 (defun org-move-subtree-up (&optional arg)
8371 "Move the current subtree up past ARG headlines of the same level."
8372 (interactive "p")
8373 (org-move-subtree-down (- (prefix-numeric-value arg))))
8375 (defun org-move-subtree-down (&optional arg)
8376 "Move the current subtree down past ARG headlines of the same level."
8377 (interactive "p")
8378 (setq arg (prefix-numeric-value arg))
8379 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8380 'org-get-last-sibling))
8381 (ins-point (make-marker))
8382 (cnt (abs arg))
8383 (col (current-column))
8384 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8385 ;; Select the tree
8386 (org-back-to-heading)
8387 (setq beg0 (point))
8388 (save-excursion
8389 (setq ne-beg (org-back-over-empty-lines))
8390 (setq beg (point)))
8391 (save-match-data
8392 (save-excursion (outline-end-of-heading)
8393 (setq folded (outline-invisible-p)))
8394 (progn (org-end-of-subtree nil t)
8395 (unless (eobp) (backward-char))))
8396 (outline-next-heading)
8397 (setq ne-end (org-back-over-empty-lines))
8398 (setq end (point))
8399 (goto-char beg0)
8400 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8401 ;; include less whitespace
8402 (save-excursion
8403 (goto-char beg)
8404 (forward-line (- ne-beg ne-end))
8405 (setq beg (point))))
8406 ;; Find insertion point, with error handling
8407 (while (> cnt 0)
8408 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8409 (progn (goto-char beg0)
8410 (user-error "Cannot move past superior level or buffer limit")))
8411 (setq cnt (1- cnt)))
8412 (if (> arg 0)
8413 ;; Moving forward - still need to move over subtree
8414 (progn (org-end-of-subtree t t)
8415 (save-excursion
8416 (org-back-over-empty-lines)
8417 (or (bolp) (newline)))))
8418 (setq ne-ins (org-back-over-empty-lines))
8419 (move-marker ins-point (point))
8420 (setq txt (buffer-substring beg end))
8421 (org-save-markers-in-region beg end)
8422 (delete-region beg end)
8423 (org-remove-empty-overlays-at beg)
8424 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8425 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8426 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8427 (let ((bbb (point)))
8428 (insert-before-markers txt)
8429 (org-reinstall-markers-in-region bbb)
8430 (move-marker ins-point bbb))
8431 (or (bolp) (insert "\n"))
8432 (setq ins-end (point))
8433 (goto-char ins-point)
8434 (org-skip-whitespace)
8435 (when (and (< arg 0)
8436 (org-first-sibling-p)
8437 (> ne-ins ne-beg))
8438 ;; Move whitespace back to beginning
8439 (save-excursion
8440 (goto-char ins-end)
8441 (let ((kill-whole-line t))
8442 (kill-line (- ne-ins ne-beg)) (point)))
8443 (insert (make-string (- ne-ins ne-beg) ?\n)))
8444 (move-marker ins-point nil)
8445 (if folded
8446 (hide-subtree)
8447 (org-show-entry)
8448 (show-children)
8449 (org-cycle-hide-drawers 'children))
8450 (org-clean-visibility-after-subtree-move)
8451 ;; move back to the initial column we were at
8452 (move-to-column col)))
8454 (defvar org-subtree-clip ""
8455 "Clipboard for cut and paste of subtrees.
8456 This is actually only a copy of the kill, because we use the normal kill
8457 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8459 (defvar org-subtree-clip-folded nil
8460 "Was the last copied subtree folded?
8461 This is used to fold the tree back after pasting.")
8463 (defun org-cut-subtree (&optional n)
8464 "Cut the current subtree into the clipboard.
8465 With prefix arg N, cut this many sequential subtrees.
8466 This is a short-hand for marking the subtree and then cutting it."
8467 (interactive "p")
8468 (org-copy-subtree n 'cut))
8470 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8471 "Copy the current subtree it in the clipboard.
8472 With prefix arg N, copy this many sequential subtrees.
8473 This is a short-hand for marking the subtree and then copying it.
8474 If CUT is non-nil, actually cut the subtree.
8475 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8476 of some markers in the region, even if CUT is non-nil. This is
8477 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8478 (interactive "p")
8479 (let (beg end folded (beg0 (point)))
8480 (if (org-called-interactively-p 'any)
8481 (org-back-to-heading nil) ; take what looks like a subtree
8482 (org-back-to-heading t)) ; take what is really there
8483 (setq beg (point))
8484 (skip-chars-forward " \t\r\n")
8485 (save-match-data
8486 (if nosubtrees
8487 (outline-next-heading)
8488 (save-excursion (outline-end-of-heading)
8489 (setq folded (outline-invisible-p)))
8490 (ignore-errors (org-forward-heading-same-level (1- n) t))
8491 (org-end-of-subtree t t)))
8492 (setq end (point))
8493 (goto-char beg0)
8494 (when (> end beg)
8495 (setq org-subtree-clip-folded folded)
8496 (when (or cut force-store-markers)
8497 (org-save-markers-in-region beg end))
8498 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8499 (setq org-subtree-clip (current-kill 0))
8500 (message "%s: Subtree(s) with %d characters"
8501 (if cut "Cut" "Copied")
8502 (length org-subtree-clip)))))
8504 (defun org-paste-subtree (&optional level tree for-yank remove)
8505 "Paste the clipboard as a subtree, with modification of headline level.
8506 The entire subtree is promoted or demoted in order to match a new headline
8507 level.
8509 If the cursor is at the beginning of a headline, the same level as
8510 that headline is used to paste the tree.
8512 If not, the new level is derived from the *visible* headings
8513 before and after the insertion point, and taken to be the inferior headline
8514 level of the two. So if the previous visible heading is level 3 and the
8515 next is level 4 (or vice versa), level 4 will be used for insertion.
8516 This makes sure that the subtree remains an independent subtree and does
8517 not swallow low level entries.
8519 You can also force a different level, either by using a numeric prefix
8520 argument, or by inserting the heading marker by hand. For example, if the
8521 cursor is after \"*****\", then the tree will be shifted to level 5.
8523 If optional TREE is given, use this text instead of the kill ring.
8525 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8526 move back over whitespace before inserting, and move point to the end of
8527 the inserted text when done.
8529 When REMOVE is non-nil, remove the subtree from the clipboard."
8530 (interactive "P")
8531 (setq tree (or tree (and kill-ring (current-kill 0))))
8532 (unless (org-kill-is-subtree-p tree)
8533 (user-error "%s"
8534 (substitute-command-keys
8535 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8536 (org-with-limited-levels
8537 (let* ((visp (not (outline-invisible-p)))
8538 (txt tree)
8539 (^re_ "\\(\\*+\\)[ \t]*")
8540 (old-level (if (string-match org-outline-regexp-bol txt)
8541 (- (match-end 0) (match-beginning 0) 1)
8542 -1))
8543 (force-level (cond (level (prefix-numeric-value level))
8544 ((and (looking-at "[ \t]*$")
8545 (string-match
8546 "^\\*+$" (buffer-substring
8547 (point-at-bol) (point))))
8548 (- (match-end 0) (match-beginning 0)))
8549 ((and (bolp)
8550 (looking-at org-outline-regexp))
8551 (- (match-end 0) (point) 1))))
8552 (previous-level (save-excursion
8553 (condition-case nil
8554 (progn
8555 (outline-previous-visible-heading 1)
8556 (if (looking-at ^re_)
8557 (- (match-end 0) (match-beginning 0) 1)
8559 (error 1))))
8560 (next-level (save-excursion
8561 (condition-case nil
8562 (progn
8563 (or (looking-at org-outline-regexp)
8564 (outline-next-visible-heading 1))
8565 (if (looking-at ^re_)
8566 (- (match-end 0) (match-beginning 0) 1)
8568 (error 1))))
8569 (new-level (or force-level (max previous-level next-level)))
8570 (shift (if (or (= old-level -1)
8571 (= new-level -1)
8572 (= old-level new-level))
8574 (- new-level old-level)))
8575 (delta (if (> shift 0) -1 1))
8576 (func (if (> shift 0) 'org-demote 'org-promote))
8577 (org-odd-levels-only nil)
8578 beg end newend)
8579 ;; Remove the forced level indicator
8580 (if force-level
8581 (delete-region (point-at-bol) (point)))
8582 ;; Paste
8583 (beginning-of-line (if (bolp) 1 2))
8584 (setq beg (point))
8585 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8586 (insert-before-markers txt)
8587 (unless (string-match "\n\\'" txt) (insert "\n"))
8588 (setq newend (point))
8589 (org-reinstall-markers-in-region beg)
8590 (setq end (point))
8591 (goto-char beg)
8592 (skip-chars-forward " \t\n\r")
8593 (setq beg (point))
8594 (if (and (outline-invisible-p) visp)
8595 (save-excursion (outline-show-heading)))
8596 ;; Shift if necessary
8597 (unless (= shift 0)
8598 (save-restriction
8599 (narrow-to-region beg end)
8600 (while (not (= shift 0))
8601 (org-map-region func (point-min) (point-max))
8602 (setq shift (+ delta shift)))
8603 (goto-char (point-min))
8604 (setq newend (point-max))))
8605 (when (or (org-called-interactively-p 'interactive) for-yank)
8606 (message "Clipboard pasted as level %d subtree" new-level))
8607 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8608 kill-ring
8609 (eq org-subtree-clip (current-kill 0))
8610 org-subtree-clip-folded)
8611 ;; The tree was folded before it was killed/copied
8612 (hide-subtree))
8613 (and for-yank (goto-char newend))
8614 (and remove (setq kill-ring (cdr kill-ring))))))
8616 (defun org-kill-is-subtree-p (&optional txt)
8617 "Check if the current kill is an outline subtree, or a set of trees.
8618 Returns nil if kill does not start with a headline, or if the first
8619 headline level is not the largest headline level in the tree.
8620 So this will actually accept several entries of equal levels as well,
8621 which is OK for `org-paste-subtree'.
8622 If optional TXT is given, check this string instead of the current kill."
8623 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8624 (re (org-get-limited-outline-regexp))
8625 (^re (concat "^" re))
8626 (start-level (and kill
8627 (string-match
8628 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8629 kill)
8630 (- (match-end 2) (match-beginning 2) 1)))
8631 (start (1+ (or (match-beginning 2) -1))))
8632 (if (not start-level)
8633 (progn
8634 nil) ;; does not even start with a heading
8635 (catch 'exit
8636 (while (setq start (string-match ^re kill (1+ start)))
8637 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8638 (throw 'exit nil)))
8639 t))))
8641 (defvar org-markers-to-move nil
8642 "Markers that should be moved with a cut-and-paste operation.
8643 Those markers are stored together with their positions relative to
8644 the start of the region.")
8646 (defun org-save-markers-in-region (beg end)
8647 "Check markers in region.
8648 If these markers are between BEG and END, record their position relative
8649 to BEG, so that after moving the block of text, we can put the markers back
8650 into place.
8651 This function gets called just before an entry or tree gets cut from the
8652 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8653 called immediately, to move the markers with the entries."
8654 (setq org-markers-to-move nil)
8655 (when (featurep 'org-clock)
8656 (org-clock-save-markers-for-cut-and-paste beg end))
8657 (when (featurep 'org-agenda)
8658 (org-agenda-save-markers-for-cut-and-paste beg end)))
8660 (defun org-check-and-save-marker (marker beg end)
8661 "Check if MARKER is between BEG and END.
8662 If yes, remember the marker and the distance to BEG."
8663 (when (and (marker-buffer marker)
8664 (equal (marker-buffer marker) (current-buffer)))
8665 (if (and (>= marker beg) (< marker end))
8666 (push (cons marker (- marker beg)) org-markers-to-move))))
8668 (defun org-reinstall-markers-in-region (beg)
8669 "Move all remembered markers to their position relative to BEG."
8670 (mapc (lambda (x)
8671 (move-marker (car x) (+ beg (cdr x))))
8672 org-markers-to-move)
8673 (setq org-markers-to-move nil))
8675 (defun org-narrow-to-subtree ()
8676 "Narrow buffer to the current subtree."
8677 (interactive)
8678 (save-excursion
8679 (save-match-data
8680 (org-with-limited-levels
8681 (narrow-to-region
8682 (progn (org-back-to-heading t) (point))
8683 (progn (org-end-of-subtree t t)
8684 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8685 (point)))))))
8687 (defun org-narrow-to-block ()
8688 "Narrow buffer to the current block."
8689 (interactive)
8690 (let* ((case-fold-search t)
8691 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8692 "^[ \t]*#\\+end_.*")))
8693 (if blockp
8694 (narrow-to-region (car blockp) (cdr blockp))
8695 (user-error "Not in a block"))))
8697 (defun org-clone-subtree-with-time-shift (n &optional shift)
8698 "Clone the task (subtree) at point N times.
8699 The clones will be inserted as siblings.
8701 In interactive use, the user will be prompted for the number of
8702 clones to be produced. If the entry has a timestamp, the user
8703 will also be prompted for a time shift, which may be a repeater
8704 as used in time stamps, for example `+3d'. To disable this,
8705 you can call the function with a universal prefix argument.
8707 When a valid repeater is given and the entry contains any time
8708 stamps, the clones will become a sequence in time, with time
8709 stamps in the subtree shifted for each clone produced. If SHIFT
8710 is nil or the empty string, time stamps will be left alone. The
8711 ID property of the original subtree is removed.
8713 If the original subtree did contain time stamps with a repeater,
8714 the following will happen:
8715 - the repeater will be removed in each clone
8716 - an additional clone will be produced, with the current, unshifted
8717 date(s) in the entry.
8718 - the original entry will be placed *after* all the clones, with
8719 repeater intact.
8720 - the start days in the repeater in the original entry will be shifted
8721 to past the last clone.
8722 In this way you can spell out a number of instances of a repeating task,
8723 and still retain the repeater to cover future instances of the task."
8724 (interactive "nNumber of clones to produce: ")
8725 (let ((shift
8726 (or shift
8727 (if (and (not (equal current-prefix-arg '(4)))
8728 (save-excursion
8729 (re-search-forward org-ts-regexp-both
8730 (save-excursion
8731 (org-end-of-subtree t)
8732 (point)) t)))
8733 (read-from-minibuffer
8734 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8735 ""))) ;; No time shift
8736 (n-no-remove -1)
8737 (drawer-re org-drawer-regexp)
8738 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8739 beg end template task idprop
8740 shift-n shift-what doshift nmin nmax)
8741 (if (not (and (integerp n) (> n 0)))
8742 (user-error "Invalid number of replications %s" n))
8743 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8744 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8745 shift)))
8746 (user-error "Invalid shift specification %s" shift))
8747 (when doshift
8748 (setq shift-n (string-to-number (match-string 1 shift))
8749 shift-what (cdr (assoc (match-string 2 shift)
8750 '(("d" . day) ("w" . week)
8751 ("m" . month) ("y" . year))))))
8752 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8753 (setq nmin 1 nmax n)
8754 (org-back-to-heading t)
8755 (setq beg (point))
8756 (setq idprop (org-entry-get nil "ID"))
8757 (org-end-of-subtree t t)
8758 (or (bolp) (insert "\n"))
8759 (setq end (point))
8760 (setq template (buffer-substring beg end))
8761 (when (and doshift
8762 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8763 (delete-region beg end)
8764 (setq end beg)
8765 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8766 (goto-char end)
8767 (loop for n from nmin to nmax do
8768 ;; prepare clone
8769 (with-temp-buffer
8770 (insert template)
8771 (org-mode)
8772 (goto-char (point-min))
8773 (org-show-subtree)
8774 (and idprop (if org-clone-delete-id
8775 (org-entry-delete nil "ID")
8776 (org-id-get-create t)))
8777 (unless (= n 0)
8778 (while (re-search-forward org-clock-re nil t)
8779 (kill-whole-line))
8780 (goto-char (point-min))
8781 (while (re-search-forward drawer-re nil t)
8782 (org-remove-empty-drawer-at (point))))
8783 (goto-char (point-min))
8784 (when doshift
8785 (while (re-search-forward org-ts-regexp-both nil t)
8786 (org-timestamp-change (* n shift-n) shift-what))
8787 (unless (= n n-no-remove)
8788 (goto-char (point-min))
8789 (while (re-search-forward org-ts-regexp nil t)
8790 (save-excursion
8791 (goto-char (match-beginning 0))
8792 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8793 (delete-region (match-beginning 1) (match-end 1)))))))
8794 (setq task (buffer-string)))
8795 (insert task))
8796 (goto-char beg)))
8798 ;;; Outline Sorting
8800 (defun org-sort (with-case)
8801 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8802 Optional argument WITH-CASE means sort case-sensitively."
8803 (interactive "P")
8804 (cond
8805 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8806 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8808 (org-call-with-arg 'org-sort-entries with-case))))
8810 (defun org-sort-remove-invisible (s)
8811 "Remove invisible links from string S."
8812 (remove-text-properties 0 (length s) org-rm-props s)
8813 (while (string-match org-bracket-link-regexp s)
8814 (setq s (replace-match (if (match-end 2)
8815 (match-string 3 s)
8816 (match-string 1 s)) t t s)))
8817 (let ((st (format " %s " s)))
8818 (while (string-match org-emph-re st)
8819 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8820 (setq s (substring st 1 -1)))
8823 (defvar org-priority-regexp) ; defined later in the file
8825 (defvar org-after-sorting-entries-or-items-hook nil
8826 "Hook that is run after a bunch of entries or items have been sorted.
8827 When children are sorted, the cursor is in the parent line when this
8828 hook gets called. When a region or a plain list is sorted, the cursor
8829 will be in the first entry of the sorted region/list.")
8831 (defun org-sort-entries
8832 (&optional with-case sorting-type getkey-func compare-func property)
8833 "Sort entries on a certain level of an outline tree.
8834 If there is an active region, the entries in the region are sorted.
8835 Else, if the cursor is before the first entry, sort the top-level items.
8836 Else, the children of the entry at point are sorted.
8838 Sorting can be alphabetically, numerically, by date/time as given by
8839 a time stamp, by a property, by priority order, or by a custom function.
8841 The command prompts for the sorting type unless it has been given to the
8842 function through the SORTING-TYPE argument, which needs to be a character,
8843 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8844 the precise meaning of each character:
8846 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8847 c By creation time, which is assumed to be the first inactive time stamp
8848 at the beginning of a line.
8849 d By deadline date/time.
8850 k By clocking time.
8851 n Numerically, by converting the beginning of the entry/item to a number.
8852 o By order of TODO keywords.
8853 p By priority according to the cookie.
8854 r By the value of a property.
8855 s By scheduled date/time.
8856 t By date/time, either the first active time stamp in the entry, or, if
8857 none exist, by the first inactive one.
8859 Capital letters will reverse the sort order.
8861 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8862 called with point at the beginning of the record. It must return either
8863 a string or a number that should serve as the sorting key for that record.
8865 Comparing entries ignores case by default. However, with an optional argument
8866 WITH-CASE, the sorting considers case as well.
8868 Sorting is done against the visible part of the headlines, it ignores hidden
8869 links.
8871 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8872 (interactive "P")
8873 (let ((case-func (if with-case 'identity 'downcase))
8874 (cmstr
8875 ;; The clock marker is lost when using `sort-subr', let's
8876 ;; store the clocking string.
8877 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8878 (save-excursion
8879 (goto-char org-clock-marker)
8880 (looking-back "^.*") (match-string-no-properties 0))))
8881 start beg end stars re re2
8882 txt what tmp)
8883 ;; Find beginning and end of region to sort
8884 (cond
8885 ((org-region-active-p)
8886 ;; we will sort the region
8887 (setq end (region-end)
8888 what "region")
8889 (goto-char (region-beginning))
8890 (if (not (org-at-heading-p)) (outline-next-heading))
8891 (setq start (point)))
8892 ((or (org-at-heading-p)
8893 (ignore-errors (progn (org-back-to-heading) t)))
8894 ;; we will sort the children of the current headline
8895 (org-back-to-heading)
8896 (setq start (point)
8897 end (progn (org-end-of-subtree t t)
8898 (or (bolp) (insert "\n"))
8899 (when (>= (org-back-over-empty-lines) 1)
8900 (forward-line 1))
8901 (point))
8902 what "children")
8903 (goto-char start)
8904 (show-subtree)
8905 (outline-next-heading))
8907 ;; we will sort the top-level entries in this file
8908 (goto-char (point-min))
8909 (or (org-at-heading-p) (outline-next-heading))
8910 (setq start (point))
8911 (goto-char (point-max))
8912 (beginning-of-line 1)
8913 (when (looking-at ".*?\\S-")
8914 ;; File ends in a non-white line
8915 (end-of-line 1)
8916 (insert "\n"))
8917 (setq end (point-max))
8918 (setq what "top-level")
8919 (goto-char start)
8920 (show-all)))
8922 (setq beg (point))
8923 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8925 (looking-at "\\(\\*+\\)")
8926 (setq stars (match-string 1)
8927 re (concat "^" (regexp-quote stars) " +")
8928 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8929 txt (buffer-substring beg end))
8930 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8931 (if (and (not (equal stars "*")) (string-match re2 txt))
8932 (user-error "Region to sort contains a level above the first entry"))
8934 (unless sorting-type
8935 (message
8936 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8937 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8938 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8939 what)
8940 (setq sorting-type (read-char-exclusive))
8942 (unless getkey-func
8943 (and (= (downcase sorting-type) ?f)
8944 (setq getkey-func
8945 (org-icompleting-read "Sort using function: "
8946 obarray 'fboundp t nil nil))
8947 (setq getkey-func (intern getkey-func))))
8949 (and (= (downcase sorting-type) ?r)
8950 (not property)
8951 (setq property
8952 (org-icompleting-read "Property: "
8953 (mapcar 'list (org-buffer-property-keys t))
8954 nil t))))
8956 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8957 (message "Sorting entries...")
8959 (save-restriction
8960 (narrow-to-region start end)
8961 (let ((dcst (downcase sorting-type))
8962 (case-fold-search nil)
8963 (now (current-time)))
8964 (sort-subr
8965 (/= dcst sorting-type)
8966 ;; This function moves to the beginning character of the "record" to
8967 ;; be sorted.
8968 (lambda nil
8969 (if (re-search-forward re nil t)
8970 (goto-char (match-beginning 0))
8971 (goto-char (point-max))))
8972 ;; This function moves to the last character of the "record" being
8973 ;; sorted.
8974 (lambda nil
8975 (save-match-data
8976 (condition-case nil
8977 (outline-forward-same-level 1)
8978 (error
8979 (goto-char (point-max))))))
8980 ;; This function returns the value that gets sorted against.
8981 (lambda nil
8982 (cond
8983 ((= dcst ?n)
8984 (if (looking-at org-complex-heading-regexp)
8985 (string-to-number (org-sort-remove-invisible (match-string 4)))
8986 nil))
8987 ((= dcst ?a)
8988 (if (looking-at org-complex-heading-regexp)
8989 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8990 nil))
8991 ((= dcst ?k)
8992 (or (get-text-property (point) :org-clock-minutes) 0))
8993 ((= dcst ?t)
8994 (let ((end (save-excursion (outline-next-heading) (point))))
8995 (if (or (re-search-forward org-ts-regexp end t)
8996 (re-search-forward org-ts-regexp-both end t))
8997 (org-time-string-to-seconds (match-string 0))
8998 (org-float-time now))))
8999 ((= dcst ?c)
9000 (let ((end (save-excursion (outline-next-heading) (point))))
9001 (if (re-search-forward
9002 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9003 end t)
9004 (org-time-string-to-seconds (match-string 0))
9005 (org-float-time now))))
9006 ((= dcst ?s)
9007 (let ((end (save-excursion (outline-next-heading) (point))))
9008 (if (re-search-forward org-scheduled-time-regexp end t)
9009 (org-time-string-to-seconds (match-string 1))
9010 (org-float-time now))))
9011 ((= dcst ?d)
9012 (let ((end (save-excursion (outline-next-heading) (point))))
9013 (if (re-search-forward org-deadline-time-regexp end t)
9014 (org-time-string-to-seconds (match-string 1))
9015 (org-float-time now))))
9016 ((= dcst ?p)
9017 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9018 (string-to-char (match-string 2))
9019 org-default-priority))
9020 ((= dcst ?r)
9021 (or (org-entry-get nil property) ""))
9022 ((= dcst ?o)
9023 (if (looking-at org-complex-heading-regexp)
9024 (let* ((m (match-string 2))
9025 (s (if (member m org-done-keywords) '- '+)))
9026 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9027 ((= dcst ?f)
9028 (if getkey-func
9029 (progn
9030 (setq tmp (funcall getkey-func))
9031 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9032 tmp)
9033 (error "Invalid key function `%s'" getkey-func)))
9034 (t (error "Invalid sorting type `%c'" sorting-type))))
9036 (cond
9037 ((= dcst ?a) 'string<)
9038 ((= dcst ?f) compare-func)
9039 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9040 (run-hooks 'org-after-sorting-entries-or-items-hook)
9041 ;; Reset the clock marker if needed
9042 (when cmstr
9043 (save-excursion
9044 (goto-char start)
9045 (search-forward cmstr nil t)
9046 (move-marker org-clock-marker (point))))
9047 (message "Sorting entries...done")))
9049 ;;; The orgstruct minor mode
9051 ;; Define a minor mode which can be used in other modes in order to
9052 ;; integrate the org-mode structure editing commands.
9054 ;; This is really a hack, because the org-mode structure commands use
9055 ;; keys which normally belong to the major mode. Here is how it
9056 ;; works: The minor mode defines all the keys necessary to operate the
9057 ;; structure commands, but wraps the commands into a function which
9058 ;; tests if the cursor is currently at a headline or a plain list
9059 ;; item. If that is the case, the structure command is used,
9060 ;; temporarily setting many Org-mode variables like regular
9061 ;; expressions for filling etc. However, when any of those keys is
9062 ;; used at a different location, function uses `key-binding' to look
9063 ;; up if the key has an associated command in another currently active
9064 ;; keymap (minor modes, major mode, global), and executes that
9065 ;; command. There might be problems if any of the keys is otherwise
9066 ;; used as a prefix key.
9068 (defcustom orgstruct-heading-prefix-regexp ""
9069 "Regexp that matches the custom prefix of Org headlines in
9070 orgstruct(++)-mode."
9071 :group 'org
9072 :version "24.4"
9073 :package-version '(Org . "8.3")
9074 :type 'regexp)
9075 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9077 (defcustom orgstruct-setup-hook nil
9078 "Hook run after orgstruct-mode-map is filled."
9079 :group 'org
9080 :version "24.4"
9081 :package-version '(Org . "8.0")
9082 :type 'hook)
9084 (defvar orgstruct-initialized nil)
9086 (defvar org-local-vars nil
9087 "List of local variables, for use by `orgstruct-mode'.")
9089 ;;;###autoload
9090 (define-minor-mode orgstruct-mode
9091 "Toggle the minor mode `orgstruct-mode'.
9092 This mode is for using Org-mode structure commands in other
9093 modes. The following keys behave as if Org-mode were active, if
9094 the cursor is on a headline, or on a plain list item (both as
9095 defined by Org-mode)."
9096 nil " OrgStruct" (make-sparse-keymap)
9097 (funcall (if orgstruct-mode
9098 'add-to-invisibility-spec
9099 'remove-from-invisibility-spec)
9100 '(outline . t))
9101 (when orgstruct-mode
9102 (org-load-modules-maybe)
9103 (unless orgstruct-initialized
9104 (orgstruct-setup)
9105 (setq orgstruct-initialized t))))
9107 ;;;###autoload
9108 (defun turn-on-orgstruct ()
9109 "Unconditionally turn on `orgstruct-mode'."
9110 (orgstruct-mode 1))
9112 (defvar org-fb-vars nil)
9113 (make-variable-buffer-local 'org-fb-vars)
9114 (defun orgstruct++-mode (&optional arg)
9115 "Toggle `orgstruct-mode', the enhanced version of it.
9116 In addition to setting orgstruct-mode, this also exports all
9117 indentation and autofilling variables from org-mode into the
9118 buffer. It will also recognize item context in multiline items."
9119 (interactive "P")
9120 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9121 (if (< arg 1)
9122 (progn (orgstruct-mode -1)
9123 (mapc (lambda(v)
9124 (org-set-local (car v)
9125 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9126 org-fb-vars))
9127 (orgstruct-mode 1)
9128 (setq org-fb-vars nil)
9129 (unless org-local-vars
9130 (setq org-local-vars (org-get-local-variables)))
9131 (let (var val)
9132 (mapc
9133 (lambda (x)
9134 (when (string-match
9135 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9136 (symbol-name (car x)))
9137 (setq var (car x) val (nth 1 x))
9138 (push (list var `(quote ,(eval var))) org-fb-vars)
9139 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9140 org-local-vars)
9141 (org-set-local 'orgstruct-is-++ t))))
9143 (defvar orgstruct-is-++ nil
9144 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9145 (make-variable-buffer-local 'orgstruct-is-++)
9147 ;;;###autoload
9148 (defun turn-on-orgstruct++ ()
9149 "Unconditionally turn on `orgstruct++-mode'."
9150 (orgstruct++-mode 1))
9152 (defun orgstruct-error ()
9153 "Error when there is no default binding for a structure key."
9154 (interactive)
9155 (funcall (if (fboundp 'user-error)
9156 'user-error
9157 'error)
9158 "This key has no function outside structure elements"))
9160 (defun orgstruct-setup ()
9161 "Setup orgstruct keymap."
9162 (dolist (cell '((org-demote . t)
9163 (org-metaleft . t)
9164 (org-metaright . t)
9165 (org-promote . t)
9166 (org-shiftmetaleft . t)
9167 (org-shiftmetaright . t)
9168 org-backward-element
9169 org-backward-heading-same-level
9170 org-ctrl-c-ret
9171 org-ctrl-c-minus
9172 org-ctrl-c-star
9173 org-cycle
9174 org-forward-heading-same-level
9175 org-insert-heading
9176 org-insert-heading-respect-content
9177 org-kill-note-or-show-branches
9178 org-mark-subtree
9179 org-meta-return
9180 org-metadown
9181 org-metaup
9182 org-narrow-to-subtree
9183 org-promote-subtree
9184 org-reveal
9185 org-shiftdown
9186 org-shiftleft
9187 org-shiftmetadown
9188 org-shiftmetaup
9189 org-shiftright
9190 org-shifttab
9191 org-shifttab
9192 org-shiftup
9193 org-show-subtree
9194 org-sort
9195 org-up-element
9196 outline-demote
9197 outline-next-visible-heading
9198 outline-previous-visible-heading
9199 outline-promote
9200 outline-up-heading
9201 show-children))
9202 (let ((f (or (car-safe cell) cell))
9203 (disable-when-heading-prefix (cdr-safe cell)))
9204 (when (fboundp f)
9205 (let ((new-bindings))
9206 (dolist (binding (nconc (where-is-internal f org-mode-map)
9207 (where-is-internal f outline-mode-map)))
9208 (push binding new-bindings)
9209 ;; TODO use local-function-key-map
9210 (dolist (rep '(("<tab>" . "TAB")
9211 ("<return>" . "RET")
9212 ("<escape>" . "ESC")
9213 ("<delete>" . "DEL")))
9214 (setq binding (read-kbd-macro
9215 (let ((case-fold-search))
9216 (replace-regexp-in-string
9217 (regexp-quote (cdr rep))
9218 (car rep)
9219 (key-description binding)))))
9220 (pushnew binding new-bindings :test 'equal)))
9221 (dolist (binding new-bindings)
9222 (let ((key (lookup-key orgstruct-mode-map binding)))
9223 (when (or (not key) (numberp key))
9224 (ignore-errors
9225 (org-defkey orgstruct-mode-map
9226 binding
9227 (orgstruct-make-binding
9228 f binding disable-when-heading-prefix))))))))))
9229 (run-hooks 'orgstruct-setup-hook))
9231 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9232 "Create a function for binding in the structure minor mode.
9233 FUN is the command to call inside a table. KEY is the key that
9234 should be checked in for a command to execute outside of tables.
9235 Non-nil `disable-when-heading-prefix' means to disable the command
9236 if `orgstruct-heading-prefix-regexp' is not empty."
9237 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9238 (let ((nname name)
9239 (i 0))
9240 (while (fboundp (intern nname))
9241 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9242 (setq name (intern nname)))
9243 (eval
9244 (let ((bindings '((org-heading-regexp
9245 (concat "^"
9246 orgstruct-heading-prefix-regexp
9247 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9248 (org-outline-regexp
9249 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9250 (org-outline-regexp-bol
9251 (concat "^" org-outline-regexp))
9252 (outline-regexp org-outline-regexp)
9253 (outline-heading-end-regexp "\n")
9254 (outline-level 'org-outline-level)
9255 (outline-heading-alist))))
9256 `(defun ,name (arg)
9257 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9258 "Outside of structure, run the binding of `"
9259 (key-description key) "'."
9260 (when disable-when-heading-prefix
9261 (concat
9262 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9263 "back to the default binding due to limitations of Org's implementation of\n"
9264 "`" (symbol-name fun) "'.")))
9265 (interactive "p")
9266 (let* ((disable
9267 ,(and disable-when-heading-prefix
9268 '(not (string= orgstruct-heading-prefix-regexp ""))))
9269 (fallback
9270 (or disable
9271 (not
9272 (let* ,bindings
9273 (org-context-p 'headline 'item
9274 ,(when (memq fun
9275 '(org-insert-heading
9276 org-insert-heading-respect-content
9277 org-meta-return))
9278 '(when orgstruct-is-++
9279 'item-body))))))))
9280 (if fallback
9281 (let* ((orgstruct-mode)
9282 (binding
9283 (let ((key ,key))
9284 (catch 'exit
9285 (dolist
9286 (rep
9287 '(nil
9288 ("<\\([^>]*\\)tab>" . "\\1TAB")
9289 ("<\\([^>]*\\)return>" . "\\1RET")
9290 ("<\\([^>]*\\)escape>" . "\\1ESC")
9291 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9292 nil)
9293 (when rep
9294 (setq key (read-kbd-macro
9295 (let ((case-fold-search))
9296 (replace-regexp-in-string
9297 (car rep)
9298 (cdr rep)
9299 (key-description key))))))
9300 (when (key-binding key)
9301 (throw 'exit (key-binding key))))))))
9302 (if (keymapp binding)
9303 (org-set-transient-map binding)
9304 (let ((func (or binding
9305 (unless disable
9306 'orgstruct-error))))
9307 (when func
9308 (call-interactively func)))))
9309 (org-run-like-in-org-mode
9310 (lambda ()
9311 (interactive)
9312 (let* ,bindings
9313 (call-interactively ',fun)))))))))
9314 name))
9316 (defun org-contextualize-keys (alist contexts)
9317 "Return valid elements in ALIST depending on CONTEXTS.
9319 `org-agenda-custom-commands' or `org-capture-templates' are the
9320 values used for ALIST, and `org-agenda-custom-commands-contexts'
9321 or `org-capture-templates-contexts' are the associated contexts
9322 definitions."
9323 (let ((contexts
9324 ;; normalize contexts
9325 (mapcar
9326 (lambda(c) (cond ((listp (cadr c))
9327 (list (car c) (car c) (cadr c)))
9328 ((string= "" (cadr c))
9329 (list (car c) (car c) (caddr c)))
9330 (t c))) contexts))
9331 (a alist) c r s)
9332 ;; loop over all commands or templates
9333 (while (setq c (pop a))
9334 (let (vrules repl)
9335 (cond
9336 ((not (assoc (car c) contexts))
9337 (push c r))
9338 ((and (assoc (car c) contexts)
9339 (setq vrules (org-contextualize-validate-key
9340 (car c) contexts)))
9341 (mapc (lambda (vr)
9342 (when (not (equal (car vr) (cadr vr)))
9343 (setq repl vr))) vrules)
9344 (if (not repl) (push c r)
9345 (push (cadr repl) s)
9346 (push
9347 (cons (car c)
9348 (cdr (or (assoc (cadr repl) alist)
9349 (error "Undefined key `%s' as contextual replacement for `%s'"
9350 (cadr repl) (car c)))))
9351 r))))))
9352 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9353 (delq
9355 (delete-dups
9356 (mapcar (lambda (x)
9357 (let ((tpl (car x)))
9358 (when (not (delq
9360 (mapcar (lambda(y)
9361 (equal y tpl)) s))) x)))
9362 (reverse r))))))
9364 (defun org-contextualize-validate-key (key contexts)
9365 "Check CONTEXTS for agenda or capture KEY."
9366 (let (r rr res)
9367 (while (setq r (pop contexts))
9368 (mapc
9369 (lambda (rr)
9370 (when
9371 (and (equal key (car r))
9372 (if (functionp rr) (funcall rr)
9373 (or (and (eq (car rr) 'in-file)
9374 (buffer-file-name)
9375 (string-match (cdr rr) (buffer-file-name)))
9376 (and (eq (car rr) 'in-mode)
9377 (string-match (cdr rr) (symbol-name major-mode)))
9378 (and (eq (car rr) 'in-buffer)
9379 (string-match (cdr rr) (buffer-name)))
9380 (when (and (eq (car rr) 'not-in-file)
9381 (buffer-file-name))
9382 (not (string-match (cdr rr) (buffer-file-name))))
9383 (when (eq (car rr) 'not-in-mode)
9384 (not (string-match (cdr rr) (symbol-name major-mode))))
9385 (when (eq (car rr) 'not-in-buffer)
9386 (not (string-match (cdr rr) (buffer-name)))))))
9387 (push r res)))
9388 (car (last r))))
9389 (delete-dups (delq nil res))))
9391 (defun org-context-p (&rest contexts)
9392 "Check if local context is any of CONTEXTS.
9393 Possible values in the list of contexts are `table', `headline', and `item'."
9394 (let ((pos (point)))
9395 (goto-char (point-at-bol))
9396 (prog1 (or (and (memq 'table contexts)
9397 (looking-at "[ \t]*|"))
9398 (and (memq 'headline contexts)
9399 (looking-at org-outline-regexp))
9400 (and (memq 'item contexts)
9401 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9402 (and (memq 'item-body contexts)
9403 (org-in-item-p)))
9404 (goto-char pos))))
9406 (defun org-get-local-variables ()
9407 "Return a list of all local variables in an Org mode buffer."
9408 (let (varlist)
9409 (with-current-buffer (get-buffer-create "*Org tmp*")
9410 (erase-buffer)
9411 (org-mode)
9412 (setq varlist (buffer-local-variables)))
9413 (kill-buffer "*Org tmp*")
9414 (delq nil
9415 (mapcar
9416 (lambda (x)
9417 (setq x
9418 (if (symbolp x)
9419 (list x)
9420 (list (car x) (cdr x))))
9421 (if (and (not (get (car x) 'org-state))
9422 (string-match
9423 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9424 (symbol-name (car x))))
9425 x nil))
9426 varlist))))
9428 (defun org-clone-local-variables (from-buffer &optional regexp)
9429 "Clone local variables from FROM-BUFFER.
9430 Optional argument REGEXP selects variables to clone."
9431 (mapc
9432 (lambda (pair)
9433 (and (symbolp (car pair))
9434 (or (null regexp)
9435 (string-match regexp (symbol-name (car pair))))
9436 (set (make-local-variable (car pair))
9437 (cdr pair))))
9438 (buffer-local-variables from-buffer)))
9440 ;;;###autoload
9441 (defun org-run-like-in-org-mode (cmd)
9442 "Run a command, pretending that the current buffer is in Org-mode.
9443 This will temporarily bind local variables that are typically bound in
9444 Org-mode to the values they have in Org-mode, and then interactively
9445 call CMD."
9446 (org-load-modules-maybe)
9447 (unless org-local-vars
9448 (setq org-local-vars (org-get-local-variables)))
9449 (let (binds)
9450 (dolist (var org-local-vars)
9451 (when (or (not (boundp (car var)))
9452 (eq (symbol-value (car var))
9453 (default-value (car var))))
9454 (push (list (car var) `(quote ,(cadr var))) binds)))
9455 (eval `(let ,binds
9456 (call-interactively (quote ,cmd))))))
9458 (defun org-get-category (&optional pos force-refresh)
9459 "Get the category applying to position POS."
9460 (save-match-data
9461 (if force-refresh (org-refresh-category-properties))
9462 (let ((pos (or pos (point))))
9463 (or (get-text-property pos 'org-category)
9464 (progn (org-refresh-category-properties)
9465 (get-text-property pos 'org-category))))))
9467 ;;; Refresh properties
9469 (defun org-refresh-properties (dprop tprop)
9470 "Refresh buffer text properties.
9471 DPROP is the drawer property and TPROP is either the
9472 corresponding text property to set, or an alist with each element
9473 being a text property (as a symbol) and a function to apply to
9474 the value of the drawer property."
9475 (let ((case-fold-search t)
9476 (inhibit-read-only t))
9477 (org-with-silent-modifications
9478 (save-excursion
9479 (save-restriction
9480 (widen)
9481 (goto-char (point-min))
9482 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9483 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9485 (defun org-refresh-property (tprop p)
9486 "Refresh the buffer text property TPROP from the drawer property P.
9487 The refresh happens only for the current tree (not subtree)."
9488 (save-excursion
9489 (org-back-to-heading t)
9490 ;; tprop is a text property symbol
9491 (if (symbolp tprop)
9492 (put-text-property
9493 (point) (or (outline-next-heading) (point-max)) tprop p)
9494 ;; tprop is an alist with (properties . function) elements
9495 (mapc (lambda(al)
9496 (save-excursion
9497 (put-text-property
9498 (point-at-bol) (or (outline-next-heading) (point-max))
9499 (car al)
9500 (funcall (cdr al) p))))
9501 tprop))))
9503 (defun org-refresh-category-properties ()
9504 "Refresh category text properties in the buffer."
9505 (let ((case-fold-search t)
9506 (inhibit-read-only t)
9507 (def-cat (cond
9508 ((null org-category)
9509 (if buffer-file-name
9510 (file-name-sans-extension
9511 (file-name-nondirectory buffer-file-name))
9512 "???"))
9513 ((symbolp org-category) (symbol-name org-category))
9514 (t org-category)))
9515 beg end cat pos optionp)
9516 (org-with-silent-modifications
9517 (save-excursion
9518 (save-restriction
9519 (widen)
9520 (goto-char (point-min))
9521 (put-text-property (point) (point-max) 'org-category def-cat)
9522 (while (re-search-forward
9523 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9524 (setq pos (match-end 0)
9525 optionp (equal (char-after (match-beginning 0)) ?#)
9526 cat (org-trim (match-string 2)))
9527 (if optionp
9528 (setq beg (point-at-bol) end (point-max))
9529 (org-back-to-heading t)
9530 (setq beg (point) end (org-end-of-subtree t t)))
9531 (put-text-property beg end 'org-category cat)
9532 (goto-char pos)))))))
9534 (defun org-refresh-stats-properties ()
9535 "Refresh stats text properties in the buffer."
9536 (let (stats)
9537 (org-with-silent-modifications
9538 (save-excursion
9539 (save-restriction
9540 (widen)
9541 (goto-char (point-min))
9542 (while (re-search-forward
9543 (concat org-outline-regexp-bol ".*"
9544 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9545 nil t)
9546 (setq stats (cond ((equal (match-string 3) "0") 0)
9547 ((match-string 2)
9548 (/ (* (string-to-number (match-string 2)) 100)
9549 (string-to-number (match-string 3))))
9550 (t (string-to-number (match-string 1)))))
9551 (org-back-to-heading t)
9552 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9553 'org-stats stats)))))))
9555 (defun org-refresh-effort-properties ()
9556 "Refresh effort properties"
9557 (org-refresh-properties
9558 org-effort-property
9559 '((effort . identity)
9560 (effort-minutes . org-duration-string-to-minutes))))
9562 ;;;; Link Stuff
9564 ;;; Link abbreviations
9566 (defun org-link-expand-abbrev (link)
9567 "Apply replacements as defined in `org-link-abbrev-alist'."
9568 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9569 (let* ((key (match-string 1 link))
9570 (as (or (assoc key org-link-abbrev-alist-local)
9571 (assoc key org-link-abbrev-alist)))
9572 (tag (and (match-end 2) (match-string 3 link)))
9573 rpl)
9574 (if (not as)
9575 link
9576 (setq rpl (cdr as))
9577 (cond
9578 ((symbolp rpl) (funcall rpl tag))
9579 ((string-match "%(\\([^)]+\\))" rpl)
9580 (replace-match
9581 (save-match-data
9582 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9583 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9584 ((string-match "%h" rpl)
9585 (replace-match (url-hexify-string (or tag "")) t t rpl))
9586 (t (concat rpl tag)))))
9587 link))
9589 ;;; Storing and inserting links
9591 (defvar org-insert-link-history nil
9592 "Minibuffer history for links inserted with `org-insert-link'.")
9594 (defvar org-stored-links nil
9595 "Contains the links stored with `org-store-link'.")
9597 (defvar org-store-link-plist nil
9598 "Plist with info about the most recently link created with `org-store-link'.")
9600 (defvar org-link-protocols nil
9601 "Link protocols added to Org-mode using `org-add-link-type'.")
9603 (defvar org-store-link-functions nil
9604 "List of functions that are called to create and store a link.
9605 Each function will be called in turn until one returns a non-nil
9606 value. Each function should check if it is responsible for creating
9607 this link (for example by looking at the major mode).
9608 If not, it must exit and return nil.
9609 If yes, it should return a non-nil value after a calling
9610 `org-store-link-props' with a list of properties and values.
9611 Special properties are:
9613 :type The link prefix, like \"http\". This must be given.
9614 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9615 This is obligatory as well.
9616 :description Optional default description for the second pair
9617 of brackets in an Org-mode link. The user can still change
9618 this when inserting this link into an Org-mode buffer.
9620 In addition to these, any additional properties can be specified
9621 and then used in capture templates.")
9623 (defun org-add-link-type (type &optional follow export)
9624 "Add TYPE to the list of `org-link-types'.
9625 Re-compute all regular expressions depending on `org-link-types'
9627 FOLLOW and EXPORT are two functions.
9629 FOLLOW should take the link path as the single argument and do whatever
9630 is necessary to follow the link, for example find a file or display
9631 a mail message.
9633 EXPORT should format the link path for export to one of the export formats.
9634 It should be a function accepting three arguments:
9636 path the path of the link, the text after the prefix (like \"http:\")
9637 desc the description of the link, if any
9638 format the export format, a symbol like `html' or `latex' or `ascii'.
9640 The function may use the FORMAT information to return different values
9641 depending on the format. The return value will be put literally into
9642 the exported file. If the return value is nil, this means Org should
9643 do what it normally does with links which do not have EXPORT defined.
9645 Org mode has a built-in default for exporting links. If you are happy with
9646 this default, there is no need to define an export function for the link
9647 type. For a simple example of an export function, see `org-bbdb.el'."
9648 (add-to-list 'org-link-types type t)
9649 (org-make-link-regexps)
9650 (org-element-update-syntax)
9651 (if (assoc type org-link-protocols)
9652 (setcdr (assoc type org-link-protocols) (list follow export))
9653 (push (list type follow export) org-link-protocols)))
9655 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9656 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9658 ;;;###autoload
9659 (defun org-store-link (arg)
9660 "\\<org-mode-map>Store an org-link to the current location.
9661 This link is added to `org-stored-links' and can later be inserted
9662 into an org-buffer with \\[org-insert-link].
9664 For some link types, a prefix arg is interpreted.
9665 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9666 For file links, arg negates `org-context-in-file-links'.
9668 A double prefix arg force skipping storing functions that are not
9669 part of Org's core.
9671 A triple prefix arg force storing a link for each line in the
9672 active region."
9673 (interactive "P")
9674 (org-load-modules-maybe)
9675 (if (and (equal arg '(64)) (org-region-active-p))
9676 (save-excursion
9677 (let ((end (region-end)))
9678 (goto-char (region-beginning))
9679 (set-mark (point))
9680 (while (< (point-at-eol) end)
9681 (move-end-of-line 1) (activate-mark)
9682 (let (current-prefix-arg)
9683 (call-interactively 'org-store-link))
9684 (move-beginning-of-line 2)
9685 (set-mark (point)))))
9686 (org-with-limited-levels
9687 (setq org-store-link-plist nil)
9688 (let (link cpltxt desc description search
9689 txt custom-id agenda-link sfuns sfunsn)
9690 (cond
9692 ;; Store a link using an external link type
9693 ((and (not (equal arg '(16)))
9694 (setq sfuns
9695 (delq
9696 nil (mapcar (lambda (f)
9697 (let (fs) (if (funcall f) (push f fs))))
9698 org-store-link-functions))
9699 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9700 (or (and (cdr sfuns)
9701 (funcall (intern
9702 (completing-read
9703 "Which function for creating the link? "
9704 sfunsn nil t (car sfunsn)))))
9705 (funcall (caar sfuns)))
9706 (setq link (plist-get org-store-link-plist :link)
9707 desc (or (plist-get org-store-link-plist
9708 :description) link))))
9710 ;; Store a link from a source code buffer
9711 ((org-src-edit-buffer-p)
9712 (let (label gc)
9713 (while (or (not label)
9714 (save-excursion
9715 (save-restriction
9716 (widen)
9717 (goto-char (point-min))
9718 (re-search-forward
9719 (regexp-quote (format org-coderef-label-format label))
9720 nil t))))
9721 (when label (message "Label exists already") (sit-for 2))
9722 (setq label (read-string "Code line label: " label)))
9723 (end-of-line 1)
9724 (setq link (format org-coderef-label-format label))
9725 (setq gc (- 79 (length link)))
9726 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9727 (insert link)
9728 (setq link (concat "(" label ")") desc nil)))
9730 ;; We are in the agenda, link to referenced location
9731 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9732 (let ((m (or (get-text-property (point) 'org-hd-marker)
9733 (get-text-property (point) 'org-marker))))
9734 (when m
9735 (org-with-point-at m
9736 (setq agenda-link
9737 (if (org-called-interactively-p 'any)
9738 (call-interactively 'org-store-link)
9739 (org-store-link nil)))))))
9741 ((eq major-mode 'calendar-mode)
9742 (let ((cd (calendar-cursor-to-date)))
9743 (setq link
9744 (format-time-string
9745 (car org-time-stamp-formats)
9746 (apply 'encode-time
9747 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9748 nil nil nil))))
9749 (org-store-link-props :type "calendar" :date cd)))
9751 ((eq major-mode 'help-mode)
9752 (setq link (concat "help:" (save-excursion
9753 (goto-char (point-min))
9754 (looking-at "^[^ ]+")
9755 (match-string 0))))
9756 (org-store-link-props :type "help"))
9758 ((eq major-mode 'w3-mode)
9759 (setq cpltxt (if (and (buffer-name)
9760 (not (string-match "Untitled" (buffer-name))))
9761 (buffer-name)
9762 (url-view-url t))
9763 link (url-view-url t))
9764 (org-store-link-props :type "w3" :url (url-view-url t)))
9766 ((eq major-mode 'image-mode)
9767 (setq cpltxt (concat "file:"
9768 (abbreviate-file-name buffer-file-name))
9769 link cpltxt)
9770 (org-store-link-props :type "image" :file buffer-file-name))
9772 ;; In dired, store a link to the file of the current line
9773 ((derived-mode-p 'dired-mode)
9774 (let ((file (dired-get-filename nil t)))
9775 (setq file (if file
9776 (abbreviate-file-name
9777 (expand-file-name (dired-get-filename nil t)))
9778 ;; otherwise, no file so use current directory.
9779 default-directory))
9780 (setq cpltxt (concat "file:" file)
9781 link cpltxt)))
9783 ((setq search (run-hook-with-args-until-success
9784 'org-create-file-search-functions))
9785 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9786 "::" search))
9787 (setq cpltxt (or description link)))
9789 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9790 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9791 (cond
9792 ;; Store a link using the target at point
9793 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9794 (setq cpltxt
9795 (concat "file:"
9796 (abbreviate-file-name
9797 (buffer-file-name (buffer-base-buffer)))
9798 "::" (match-string 1))
9799 link cpltxt))
9800 ((and (featurep 'org-id)
9801 (or (eq org-id-link-to-org-use-id t)
9802 (and (org-called-interactively-p 'any)
9803 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9804 (and (eq org-id-link-to-org-use-id
9805 'create-if-interactive-and-no-custom-id)
9806 (not custom-id))))
9807 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9808 ;; Store a link using the ID at point
9809 (setq link (condition-case nil
9810 (prog1 (org-id-store-link)
9811 (setq desc (or (plist-get org-store-link-plist
9812 :description)
9813 "")))
9814 (error
9815 ;; Probably before first headline, link only to file
9816 (concat "file:"
9817 (abbreviate-file-name
9818 (buffer-file-name (buffer-base-buffer))))))))
9820 ;; Just link to current headline
9821 (setq cpltxt (concat "file:"
9822 (abbreviate-file-name
9823 (buffer-file-name (buffer-base-buffer)))))
9824 ;; Add a context search string
9825 (when (org-xor org-context-in-file-links arg)
9826 (let* ((ee (org-element-at-point))
9827 (et (org-element-type ee))
9828 (ev (plist-get (cadr ee) :value))
9829 (ek (plist-get (cadr ee) :key))
9830 (eok (and (stringp ek) (string-match "name" ek))))
9831 (setq txt (cond
9832 ((org-at-heading-p) nil)
9833 ((and (eq et 'keyword) eok) ev)
9834 ((org-region-active-p)
9835 (buffer-substring (region-beginning) (region-end)))))
9836 (when (or (null txt) (string-match "\\S-" txt))
9837 (setq cpltxt
9838 (concat cpltxt "::"
9839 (condition-case nil
9840 (org-make-org-heading-search-string txt)
9841 (error "")))
9842 desc (or (and (eq et 'keyword) eok ev)
9843 (nth 4 (ignore-errors (org-heading-components)))
9844 "NONE")))))
9845 (if (string-match "::\\'" cpltxt)
9846 (setq cpltxt (substring cpltxt 0 -2)))
9847 (setq link cpltxt))))
9849 ((buffer-file-name (buffer-base-buffer))
9850 ;; Just link to this file here.
9851 (setq cpltxt (concat "file:"
9852 (abbreviate-file-name
9853 (buffer-file-name (buffer-base-buffer)))))
9854 ;; Add a context string.
9855 (when (org-xor org-context-in-file-links arg)
9856 (setq txt (if (org-region-active-p)
9857 (buffer-substring (region-beginning) (region-end))
9858 (buffer-substring (point-at-bol) (point-at-eol))))
9859 ;; Only use search option if there is some text.
9860 (when (string-match "\\S-" txt)
9861 (setq cpltxt
9862 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9863 desc "NONE")))
9864 (setq link cpltxt))
9866 ((org-called-interactively-p 'interactive)
9867 (user-error "No method for storing a link from this buffer"))
9869 (t (setq link nil)))
9871 ;; We're done setting link and desc, clean up
9872 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9873 (setq link (or link cpltxt)
9874 desc (or desc cpltxt))
9875 (cond ((equal desc "NONE") (setq desc nil))
9876 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9877 (let ((d0 (match-string 3 desc))
9878 (p0 (match-string 5 desc)))
9879 (setq desc
9880 (replace-regexp-in-string
9881 org-bracket-link-regexp
9882 (concat (or p0 d0)
9883 (if (equal (length (match-string 0 desc))
9884 (length desc)) "*" "")) desc)))))
9886 ;; Return the link
9887 (if (not (and (or (org-called-interactively-p 'any)
9888 executing-kbd-macro) link))
9889 (or agenda-link (and link (org-make-link-string link desc)))
9890 (push (list link desc) org-stored-links)
9891 (message "Stored: %s" (or desc link))
9892 (when custom-id
9893 (setq link (concat "file:" (abbreviate-file-name
9894 (buffer-file-name)) "::#" custom-id))
9895 (push (list link desc) org-stored-links))
9896 (car org-stored-links))))))
9898 (defun org-store-link-props (&rest plist)
9899 "Store link properties, extract names and addresses."
9900 (let (x adr)
9901 (when (setq x (plist-get plist :from))
9902 (setq adr (mail-extract-address-components x))
9903 (setq plist (plist-put plist :fromname (car adr)))
9904 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9905 (when (setq x (plist-get plist :to))
9906 (setq adr (mail-extract-address-components x))
9907 (setq plist (plist-put plist :toname (car adr)))
9908 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9909 (let ((from (plist-get plist :from))
9910 (to (plist-get plist :to)))
9911 (when (and from to org-from-is-user-regexp)
9912 (setq plist
9913 (plist-put plist :fromto
9914 (if (string-match org-from-is-user-regexp from)
9915 (concat "to %t")
9916 (concat "from %f"))))))
9917 (setq org-store-link-plist plist))
9919 (defun org-add-link-props (&rest plist)
9920 "Add these properties to the link property list."
9921 (let (key value)
9922 (while plist
9923 (setq key (pop plist) value (pop plist))
9924 (setq org-store-link-plist
9925 (plist-put org-store-link-plist key value)))))
9927 (defun org-email-link-description (&optional fmt)
9928 "Return the description part of an email link.
9929 This takes information from `org-store-link-plist' and formats it
9930 according to FMT (default from `org-email-link-description-format')."
9931 (setq fmt (or fmt org-email-link-description-format))
9932 (let* ((p org-store-link-plist)
9933 (to (plist-get p :toaddress))
9934 (from (plist-get p :fromaddress))
9935 (table
9936 (list
9937 (cons "%c" (plist-get p :fromto))
9938 (cons "%F" (plist-get p :from))
9939 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9940 (cons "%T" (plist-get p :to))
9941 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9942 (cons "%s" (plist-get p :subject))
9943 (cons "%d" (plist-get p :date))
9944 (cons "%m" (plist-get p :message-id)))))
9945 (when (string-match "%c" fmt)
9946 ;; Check if the user wrote this message
9947 (if (and org-from-is-user-regexp from to
9948 (save-match-data (string-match org-from-is-user-regexp from)))
9949 (setq fmt (replace-match "to %t" t t fmt))
9950 (setq fmt (replace-match "from %f" t t fmt))))
9951 (org-replace-escapes fmt table)))
9953 (defun org-make-org-heading-search-string (&optional string)
9954 "Make search string for the current headline or STRING."
9955 (let ((s (or string
9956 (and (derived-mode-p 'org-mode)
9957 (save-excursion
9958 (org-back-to-heading t)
9959 (org-element-property :raw-value (org-element-at-point))))))
9960 (lines org-context-in-file-links))
9961 (or string (setq s (concat "*" s))) ; Add * for headlines
9962 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9963 (when (and string (integerp lines) (> lines 0))
9964 (let ((slines (org-split-string s "\n")))
9965 (when (< lines (length slines))
9966 (setq s (mapconcat
9967 'identity
9968 (reverse (nthcdr (- (length slines) lines)
9969 (reverse slines))) "\n")))))
9970 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9972 (defun org-make-link-string (link &optional description)
9973 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9974 (unless (string-match "\\S-" link)
9975 (error "Empty link"))
9976 (when (and description
9977 (stringp description)
9978 (not (string-match "\\S-" description)))
9979 (setq description nil))
9980 (when (stringp description)
9981 ;; Remove brackets from the description, they are fatal.
9982 (while (string-match "\\[" description)
9983 (setq description (replace-match "{" t t description)))
9984 (while (string-match "\\]" description)
9985 (setq description (replace-match "}" t t description))))
9986 (when (equal link description)
9987 ;; No description needed, it is identical
9988 (setq description nil))
9989 (when (and (not description)
9990 (not (string-match (org-image-file-name-regexp) link))
9991 (not (equal link (org-link-escape link))))
9992 (setq description (org-extract-attributes link)))
9993 (setq link
9994 (cond ((string-match (org-image-file-name-regexp) link) link)
9995 ((string-match org-link-types-re link)
9996 (concat (match-string 1 link)
9997 (org-link-escape (substring link (match-end 1)))))
9998 (t (org-link-escape link))))
9999 (concat "[[" link "]"
10000 (if description (concat "[" description "]") "")
10001 "]"))
10003 (defconst org-link-escape-chars
10004 ;;%20 %5B %5D
10005 '(?\ ?\[ ?\])
10006 "List of characters that should be escaped in a link when stored to Org.
10007 This is the list that is used for internal purposes.")
10009 (defconst org-link-escape-chars-browser
10010 ;;%20 %22
10011 '(?\ ?\")
10012 "List of characters to be escaped before handing over to the browser.
10013 If you consider using this constant then you probably want to use
10014 the function `org-link-escape-browser' instead. See there why
10015 this constant is a candidate to be removed once Org drops support
10016 for Emacs 24.1 and 24.2.")
10018 (defun org-link-escape (text &optional table merge)
10019 "Return percent escaped representation of TEXT.
10020 TEXT is a string with the text to escape.
10021 Optional argument TABLE is a list with characters that should be
10022 escaped. When nil, `org-link-escape-chars' is used.
10023 If optional argument MERGE is set, merge TABLE into
10024 `org-link-escape-chars'."
10025 ;; Don't escape chars in internal links
10026 (if (string-match "^\\*[[:alnum:]]+" text)
10027 text
10028 (cond
10029 ((and table merge)
10030 (mapc (lambda (defchr)
10031 (unless (member defchr table)
10032 (setq table (cons defchr table))))
10033 org-link-escape-chars))
10034 ((null table)
10035 (setq table org-link-escape-chars)))
10036 (mapconcat
10037 (lambda (char)
10038 (if (or (member char table)
10039 (and (or (< char 32) (= char ?\%) (> char 126))
10040 org-url-hexify-p))
10041 (mapconcat (lambda (sequence-element)
10042 (format "%%%.2X" sequence-element))
10043 (or (encode-coding-char char 'utf-8)
10044 (error "Unable to percent escape character: %s"
10045 (char-to-string char))) "")
10046 (char-to-string char))) text "")))
10048 (defun org-link-escape-browser (text)
10049 "Escape some characters before handing over to the browser.
10050 This function is a candidate to be removed together with the
10051 constant `org-link-escape-chars-browser' once Org drops support
10052 for Emacs 24.1 and 24.2. All calls to this function will have to
10053 be replaced with `url-encode-url' which is available since Emacs
10054 24.3.1."
10055 ;; Example with the Org link
10056 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10057 ;; to open the browser with +subject:"Release 8.2" filled into the
10058 ;; query field: In this case the variable TEXT contains the
10059 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10060 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10061 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10062 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10063 (if (fboundp 'url-encode-url)
10064 (url-encode-url text)
10065 (if (org-string-match-p
10066 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10067 text)
10068 (org-link-escape text org-link-escape-chars-browser)
10069 text)))
10071 (defun org-link-unescape (str)
10072 "Unhex hexified Unicode strings as returned from the JavaScript function
10073 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10074 (unless (and (null str) (string= "" str))
10075 (let ((pos 0) (case-fold-search t) unhexed)
10076 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10077 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10078 (setq str (replace-match unhexed t t str))
10079 (setq pos (+ pos (length unhexed))))))
10080 str)
10082 (defun org-link-unescape-compound (hex)
10083 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10084 Note: this function also decodes single byte encodings like
10085 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10086 (save-match-data
10087 (let* ((bytes (cdr (split-string hex "%")))
10088 (ret "")
10089 (eat 0)
10090 (sum 0))
10091 (while bytes
10092 (let* ((val (string-to-number (pop bytes) 16))
10093 (shift-xor
10094 (if (= 0 eat)
10095 (cond
10096 ((>= val 252) (cons 6 252))
10097 ((>= val 248) (cons 5 248))
10098 ((>= val 240) (cons 4 240))
10099 ((>= val 224) (cons 3 224))
10100 ((>= val 192) (cons 2 192))
10101 (t (cons 0 0)))
10102 (cons 6 128))))
10103 (if (>= val 192) (setq eat (car shift-xor)))
10104 (setq val (logxor val (cdr shift-xor)))
10105 (setq sum (+ (lsh sum (car shift-xor)) val))
10106 (if (> eat 0) (setq eat (- eat 1)))
10107 (cond
10108 ((= 0 eat) ;multi byte
10109 (setq ret (concat ret (org-char-to-string sum)))
10110 (setq sum 0))
10111 ((not bytes) ; single byte(s)
10112 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10113 ret)))
10115 (defun org-link-unescape-single-byte-sequence (hex)
10116 "Unhexify hex-encoded single byte character sequences."
10117 (mapconcat (lambda (byte)
10118 (char-to-string (string-to-number byte 16)))
10119 (cdr (split-string hex "%")) ""))
10121 (defun org-xor (a b)
10122 "Exclusive or."
10123 (if a (not b) b))
10125 (defun org-fixup-message-id-for-http (s)
10126 "Replace special characters in a message id, so it can be used in an http query."
10127 (when (string-match "%" s)
10128 (setq s (mapconcat (lambda (c)
10129 (if (eq c ?%)
10130 "%25"
10131 (char-to-string c)))
10132 s "")))
10133 (while (string-match "<" s)
10134 (setq s (replace-match "%3C" t t s)))
10135 (while (string-match ">" s)
10136 (setq s (replace-match "%3E" t t s)))
10137 (while (string-match "@" s)
10138 (setq s (replace-match "%40" t t s)))
10141 (defun org-link-prettify (link)
10142 "Return a human-readable representation of LINK.
10143 The car of LINK must be a raw link.
10144 The cdr of LINK must be either a link description or nil."
10145 (let ((desc (or (cadr link) "<no description>")))
10146 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10147 "<" (car link) ">")))
10149 ;;;###autoload
10150 (defun org-insert-link-global ()
10151 "Insert a link like Org-mode does.
10152 This command can be called in any mode to insert a link in Org-mode syntax."
10153 (interactive)
10154 (org-load-modules-maybe)
10155 (org-run-like-in-org-mode 'org-insert-link))
10157 (defun org-insert-all-links (arg &optional pre post)
10158 "Insert all links in `org-stored-links'.
10159 When a universal prefix, do not delete the links from `org-stored-links'.
10160 When `ARG' is a number, insert the last N link(s).
10161 `PRE' and `POST' are optional arguments to define a string to
10162 prepend or to append."
10163 (interactive "P")
10164 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10165 (links (copy-seq org-stored-links))
10166 (pr (or pre "- "))
10167 (po (or post "\n"))
10168 (cnt 1) l)
10169 (if (null org-stored-links)
10170 (message "No link to insert")
10171 (while (and (or (listp arg) (>= arg cnt))
10172 (setq l (if (listp arg)
10173 (pop links)
10174 (pop org-stored-links))))
10175 (setq cnt (1+ cnt))
10176 (insert pr)
10177 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10178 (insert po)))))
10180 (defun org-insert-last-stored-link (arg)
10181 "Insert the last link stored in `org-stored-links'."
10182 (interactive "p")
10183 (org-insert-all-links arg "" "\n"))
10185 (defun org-link-fontify-links-to-this-file ()
10186 "Fontify links to the current file in `org-stored-links'."
10187 (let ((f (buffer-file-name)) a b)
10188 (setq a (mapcar (lambda(l)
10189 (let ((ll (car l)))
10190 (when (and (string-match "^file:\\(.+\\)::" ll)
10191 (equal f (expand-file-name (match-string 1 ll))))
10192 ll)))
10193 org-stored-links))
10194 (when (featurep 'org-id)
10195 (setq b (mapcar (lambda(l)
10196 (let ((ll (car l)))
10197 (when (and (string-match "^id:\\(.+\\)$" ll)
10198 (equal f (expand-file-name
10199 (or (org-id-find-id-file
10200 (match-string 1 ll)) ""))))
10201 ll)))
10202 org-stored-links)))
10203 (mapcar (lambda(l)
10204 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10205 (delq nil (append a b)))))
10207 (defvar org-link-links-in-this-file nil)
10208 (defun org-insert-link (&optional complete-file link-location default-description)
10209 "Insert a link. At the prompt, enter the link.
10211 Completion can be used to insert any of the link protocol prefixes like
10212 http or ftp in use.
10214 The history can be used to select a link previously stored with
10215 `org-store-link'. When the empty string is entered (i.e. if you just
10216 press RET at the prompt), the link defaults to the most recently
10217 stored link. As SPC triggers completion in the minibuffer, you need to
10218 use M-SPC or C-q SPC to force the insertion of a space character.
10220 You will also be prompted for a description, and if one is given, it will
10221 be displayed in the buffer instead of the link.
10223 If there is already a link at point, this command will allow you to edit link
10224 and description parts.
10226 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10227 be selected using completion. The path to the file will be relative to the
10228 current directory if the file is in the current directory or a subdirectory.
10229 Otherwise, the link will be the absolute path as completed in the minibuffer
10230 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10231 option `org-link-file-path-type'.
10233 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10234 the current directory or below.
10236 With three \\[universal-argument] prefixes, negate the meaning of
10237 `org-keep-stored-link-after-insertion'.
10239 If `org-make-link-description-function' is non-nil, this function will be
10240 called with the link target, and the result will be the default
10241 link description.
10243 If the LINK-LOCATION parameter is non-nil, this value will be
10244 used as the link location instead of reading one interactively.
10246 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10247 be used as the default description."
10248 (interactive "P")
10249 (let* ((wcf (current-window-configuration))
10250 (origbuf (current-buffer))
10251 (region (if (org-region-active-p)
10252 (buffer-substring (region-beginning) (region-end))))
10253 (remove (and region (list (region-beginning) (region-end))))
10254 (desc region)
10255 tmphist ; byte-compile incorrectly complains about this
10256 (link link-location)
10257 (abbrevs org-link-abbrev-alist-local)
10258 entry file all-prefixes auto-desc)
10259 (cond
10260 (link-location) ; specified by arg, just use it.
10261 ((org-in-regexp org-bracket-link-regexp 1)
10262 ;; We do have a link at point, and we are going to edit it.
10263 (setq remove (list (match-beginning 0) (match-end 0)))
10264 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10265 (setq link (read-string "Link: "
10266 (org-link-unescape
10267 (org-match-string-no-properties 1)))))
10268 ((or (org-in-regexp org-angle-link-re)
10269 (org-in-regexp org-plain-link-re))
10270 ;; Convert to bracket link
10271 (setq remove (list (match-beginning 0) (match-end 0))
10272 link (read-string "Link: "
10273 (org-remove-angle-brackets (match-string 0)))))
10274 ((member complete-file '((4) (16)))
10275 ;; Completing read for file names.
10276 (setq link (org-file-complete-link complete-file)))
10278 ;; Read link, with completion for stored links.
10279 (org-link-fontify-links-to-this-file)
10280 (org-switch-to-buffer-other-window "*Org Links*")
10281 (with-current-buffer "*Org Links*"
10282 (erase-buffer)
10283 (insert "Insert a link.
10284 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10285 (when org-stored-links
10286 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10287 (insert (mapconcat 'org-link-prettify
10288 (reverse org-stored-links) "\n")))
10289 (goto-char (point-min)))
10290 (let ((cw (selected-window)))
10291 (select-window (get-buffer-window "*Org Links*" 'visible))
10292 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10293 (unless (pos-visible-in-window-p (point-max))
10294 (org-fit-window-to-buffer))
10295 (and (window-live-p cw) (select-window cw)))
10296 ;; Fake a link history, containing the stored links.
10297 (setq tmphist (append (mapcar 'car org-stored-links)
10298 org-insert-link-history))
10299 (setq all-prefixes (append (mapcar 'car abbrevs)
10300 (mapcar 'car org-link-abbrev-alist)
10301 org-link-types))
10302 (unwind-protect
10303 (progn
10304 (setq link
10305 (org-completing-read
10306 "Link: "
10307 (append
10308 (mapcar (lambda (x) (concat x ":"))
10309 all-prefixes)
10310 (mapcar 'car org-stored-links))
10311 nil nil nil
10312 'tmphist
10313 (caar org-stored-links)))
10314 (if (not (string-match "\\S-" link))
10315 (user-error "No link selected"))
10316 (mapc (lambda(l)
10317 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10318 org-stored-links)
10319 (if (or (member link all-prefixes)
10320 (and (equal ":" (substring link -1))
10321 (member (substring link 0 -1) all-prefixes)
10322 (setq link (substring link 0 -1))))
10323 (setq link (with-current-buffer origbuf
10324 (org-link-try-special-completion link)))))
10325 (set-window-configuration wcf)
10326 (kill-buffer "*Org Links*"))
10327 (setq entry (assoc link org-stored-links))
10328 (or entry (push link org-insert-link-history))
10329 (setq desc (or desc (nth 1 entry)))))
10331 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10332 (not org-keep-stored-link-after-insertion))
10333 (setq org-stored-links (delq (assoc link org-stored-links)
10334 org-stored-links)))
10336 (if (and (string-match org-plain-link-re link)
10337 (not (string-match org-ts-regexp link)))
10338 ;; URL-like link, normalize the use of angular brackets.
10339 (setq link (org-remove-angle-brackets link)))
10341 ;; Check if we are linking to the current file with a search
10342 ;; option If yes, simplify the link by using only the search
10343 ;; option.
10344 (when (and buffer-file-name
10345 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10346 (let* ((path (match-string 1 link))
10347 (case-fold-search nil)
10348 (search (match-string 2 link)))
10349 (save-match-data
10350 (if (equal (file-truename buffer-file-name) (file-truename path))
10351 ;; We are linking to this same file, with a search option
10352 (setq link search)))))
10354 ;; Check if we can/should use a relative path. If yes, simplify the link
10355 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10356 (let* ((type (match-string 1 link))
10357 (path (match-string 2 link))
10358 (origpath path)
10359 (case-fold-search nil))
10360 (cond
10361 ((or (eq org-link-file-path-type 'absolute)
10362 (equal complete-file '(16)))
10363 (setq path (abbreviate-file-name (expand-file-name path))))
10364 ((eq org-link-file-path-type 'noabbrev)
10365 (setq path (expand-file-name path)))
10366 ((eq org-link-file-path-type 'relative)
10367 (setq path (file-relative-name path)))
10369 (save-match-data
10370 (if (string-match (concat "^" (regexp-quote
10371 (expand-file-name
10372 (file-name-as-directory
10373 default-directory))))
10374 (expand-file-name path))
10375 ;; We are linking a file with relative path name.
10376 (setq path (substring (expand-file-name path)
10377 (match-end 0)))
10378 (setq path (abbreviate-file-name (expand-file-name path)))))))
10379 (setq link (concat type path))
10380 (if (equal desc origpath)
10381 (setq desc path))))
10383 (if org-make-link-description-function
10384 (setq desc
10385 (or (condition-case nil
10386 (funcall org-make-link-description-function link desc)
10387 (error (progn (message "Can't get link description from `%s'"
10388 (symbol-name org-make-link-description-function))
10389 (sit-for 2) nil)))
10390 (read-string "Description: " default-description)))
10391 (if default-description (setq desc default-description)
10392 (setq desc (or (and auto-desc desc)
10393 (read-string "Description: " desc)))))
10395 (unless (string-match "\\S-" desc) (setq desc nil))
10396 (if remove (apply 'delete-region remove))
10397 (insert (org-make-link-string link desc))))
10399 (defun org-link-try-special-completion (type)
10400 "If there is completion support for link type TYPE, offer it."
10401 (let ((fun (intern (concat "org-" type "-complete-link"))))
10402 (if (functionp fun)
10403 (funcall fun)
10404 (read-string "Link (no completion support): " (concat type ":")))))
10406 (defun org-file-complete-link (&optional arg)
10407 "Create a file link using completion."
10408 (let (file link)
10409 (setq file (org-iread-file-name "File: "))
10410 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10411 (pwd1 (file-name-as-directory (abbreviate-file-name
10412 (expand-file-name ".")))))
10413 (cond
10414 ((equal arg '(16))
10415 (setq link (concat
10416 "file:"
10417 (abbreviate-file-name (expand-file-name file)))))
10418 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10419 (setq link (concat "file:" (match-string 1 file))))
10420 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10421 (expand-file-name file))
10422 (setq link (concat
10423 "file:" (match-string 1 (expand-file-name file)))))
10424 (t (setq link (concat "file:" file)))))
10425 link))
10427 (defun org-iread-file-name (&rest args)
10428 "Read-file-name using `ido-mode' speedup if available.
10429 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10430 See `read-file-name' for a description of parameters."
10431 (org-without-partial-completion
10432 (if (and org-completion-use-ido
10433 (fboundp 'ido-read-file-name)
10434 (boundp 'ido-mode) ido-mode
10435 (listp (second args)))
10436 (let ((ido-enter-matching-directory nil))
10437 (apply 'ido-read-file-name args))
10438 (apply 'read-file-name args))))
10440 (defun org-completing-read (&rest args)
10441 "Completing-read with SPACE being a normal character."
10442 (let ((enable-recursive-minibuffers t)
10443 (minibuffer-local-completion-map
10444 (copy-keymap minibuffer-local-completion-map)))
10445 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10446 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10447 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10448 (apply 'org-icompleting-read args)))
10450 (defun org-completing-read-no-i (&rest args)
10451 (let (org-completion-use-ido org-completion-use-iswitchb)
10452 (apply 'org-completing-read args)))
10454 (defun org-iswitchb-completing-read (prompt choices &rest args)
10455 "Use iswitch as a completing-read replacement to choose from choices.
10456 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10457 from."
10458 (let* ((iswitchb-use-virtual-buffers nil)
10459 (iswitchb-make-buflist-hook
10460 (lambda ()
10461 (setq iswitchb-temp-buflist choices))))
10462 (iswitchb-read-buffer prompt)))
10464 (defun org-icompleting-read (&rest args)
10465 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10466 (org-without-partial-completion
10467 (if (and org-completion-use-ido
10468 (fboundp 'ido-completing-read)
10469 (boundp 'ido-mode) ido-mode
10470 (listp (second args)))
10471 (let ((ido-enter-matching-directory nil))
10472 (apply 'ido-completing-read (concat (car args))
10473 (if (consp (car (nth 1 args)))
10474 (mapcar 'car (nth 1 args))
10475 (nth 1 args))
10476 (cddr args)))
10477 (if (and org-completion-use-iswitchb
10478 (boundp 'iswitchb-mode) iswitchb-mode
10479 (listp (second args)))
10480 (apply 'org-iswitchb-completing-read (concat (car args))
10481 (if (consp (car (nth 1 args)))
10482 (mapcar 'car (nth 1 args))
10483 (nth 1 args))
10484 (cddr args))
10485 (apply 'completing-read args)))))
10487 (defun org-extract-attributes (s)
10488 "Extract the attributes cookie from a string and set as text property."
10489 (let (a attr (start 0) key value)
10490 (save-match-data
10491 (when (string-match "{{\\([^}]+\\)}}$" s)
10492 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10493 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10494 (setq key (match-string 1 a) value (match-string 2 a)
10495 start (match-end 0)
10496 attr (plist-put attr (intern key) value))))
10497 (org-add-props s nil 'org-attr attr))
10500 ;;; Opening/following a link
10502 (defvar org-link-search-failed nil)
10504 (defvar org-open-link-functions nil
10505 "Hook for functions finding a plain text link.
10506 These functions must take a single argument, the link content.
10507 They will be called for links that look like [[link text][description]]
10508 when LINK TEXT does not have a protocol like \"http:\" and does not look
10509 like a filename (e.g. \"./blue.png\").
10511 These functions will be called *before* Org attempts to resolve the
10512 link by doing text searches in the current buffer - so if you want a
10513 link \"[[target]]\" to still find \"<<target>>\", your function should
10514 handle this as a special case.
10516 When the function does handle the link, it must return a non-nil value.
10517 If it decides that it is not responsible for this link, it must return
10518 nil to indicate that that Org-mode can continue with other options
10519 like exact and fuzzy text search.")
10521 (defun org-next-link (&optional search-backward)
10522 "Move forward to the next link.
10523 If the link is in hidden text, expose it."
10524 (interactive "P")
10525 (when (and org-link-search-failed (eq this-command last-command))
10526 (goto-char (point-min))
10527 (message "Link search wrapped back to beginning of buffer"))
10528 (setq org-link-search-failed nil)
10529 (let* ((pos (point))
10530 (ct (org-context))
10531 (a (assoc :link ct))
10532 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10533 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10534 ((looking-at org-any-link-re)
10535 ;; Don't stay stuck at link without an org-link face
10536 (forward-char (if search-backward -1 1))))
10537 (if (funcall srch-fun org-any-link-re nil t)
10538 (progn
10539 (goto-char (match-beginning 0))
10540 (if (outline-invisible-p) (org-show-context)))
10541 (goto-char pos)
10542 (setq org-link-search-failed t)
10543 (message "No further link found"))))
10545 (defun org-previous-link ()
10546 "Move backward to the previous link.
10547 If the link is in hidden text, expose it."
10548 (interactive)
10549 (funcall 'org-next-link t))
10551 (defun org-translate-link (s)
10552 "Translate a link string if a translation function has been defined."
10553 (if (and org-link-translation-function
10554 (fboundp org-link-translation-function)
10555 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10556 (progn
10557 (setq s (funcall org-link-translation-function
10558 (match-string 1 s) (match-string 2 s)))
10559 (concat (car s) ":" (cdr s)))
10562 (defun org-translate-link-from-planner (type path)
10563 "Translate a link from Emacs Planner syntax so that Org can follow it.
10564 This is still an experimental function, your mileage may vary."
10565 (cond
10566 ((member type '("http" "https" "news" "ftp"))
10567 ;; standard Internet links are the same.
10568 nil)
10569 ((and (equal type "irc") (string-match "^//" path))
10570 ;; Planner has two / at the beginning of an irc link, we have 1.
10571 ;; We should have zero, actually....
10572 (setq path (substring path 1)))
10573 ((and (equal type "lisp") (string-match "^/" path))
10574 ;; Planner has a slash, we do not.
10575 (setq type "elisp" path (substring path 1)))
10576 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10577 ;; A typical message link. Planner has the id after the final slash,
10578 ;; we separate it with a hash mark
10579 (setq path (concat (match-string 1 path) "#"
10580 (org-remove-angle-brackets (match-string 2 path))))))
10581 (cons type path))
10583 (defun org-find-file-at-mouse (ev)
10584 "Open file link or URL at mouse."
10585 (interactive "e")
10586 (mouse-set-point ev)
10587 (org-open-at-point 'in-emacs))
10589 (defun org-open-at-mouse (ev)
10590 "Open file link or URL at mouse.
10591 See the docstring of `org-open-file' for details."
10592 (interactive "e")
10593 (mouse-set-point ev)
10594 (if (eq major-mode 'org-agenda-mode)
10595 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10596 (org-open-at-point))
10598 (defvar org-window-config-before-follow-link nil
10599 "The window configuration before following a link.
10600 This is saved in case the need arises to restore it.")
10602 (defvar org-open-link-marker (make-marker)
10603 "Marker pointing to the location where `org-open-at-point' was called.")
10605 ;;;###autoload
10606 (defun org-open-at-point-global ()
10607 "Follow a link like Org-mode does.
10608 This command can be called in any mode to follow a link that has
10609 Org-mode syntax."
10610 (interactive)
10611 (org-run-like-in-org-mode 'org-open-at-point))
10613 ;;;###autoload
10614 (defun org-open-link-from-string (s &optional arg reference-buffer)
10615 "Open a link in the string S, as if it was in Org-mode."
10616 (interactive "sLink: \nP")
10617 (let ((reference-buffer (or reference-buffer (current-buffer))))
10618 (with-temp-buffer
10619 (let ((org-inhibit-startup (not reference-buffer)))
10620 (org-mode)
10621 (insert s)
10622 (goto-char (point-min))
10623 (when reference-buffer
10624 (setq org-link-abbrev-alist-local
10625 (with-current-buffer reference-buffer
10626 org-link-abbrev-alist-local)))
10627 (org-open-at-point arg reference-buffer)))))
10629 (defvar org-open-at-point-functions nil
10630 "Hook that is run when following a link at point.
10632 Functions in this hook must return t if they identify and follow
10633 a link at point. If they don't find anything interesting at point,
10634 they must return nil.")
10636 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10637 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10638 (defun org-open-at-point (&optional arg reference-buffer)
10639 "Open link, timestamp, footnote or tags at point.
10641 When point is on a link, follow it. Normally, files will be
10642 opened by an appropriate application. If the optional prefix
10643 argument ARG is non-nil, Emacs will visit the file. With
10644 a double prefix argument, try to open outside of Emacs, in the
10645 application the system uses for this file type.
10647 When point is on a timestamp, open the agenda at the day
10648 specified.
10650 When point is a footnote definition, move to the first reference
10651 found. If it is on a reference, move to the associated
10652 definition.
10654 When point is on a headline, display a list of every link in the
10655 entry, so it is possible to pick one, or all, of them. If point
10656 is on a tag, call `org-tags-view' instead.
10658 When optional argument REFERENCE-BUFFER is non-nil, it should
10659 specify a buffer from where the link search should happen. This
10660 is used internally by `org-open-link-from-string'.
10662 On top of syntactically correct links, this function will open
10663 the link at point in comments or comment blocks and the first
10664 link in a property drawer line."
10665 (interactive "P")
10666 ;; On a code block, open block's results.
10667 (unless (call-interactively 'org-babel-open-src-block-result)
10668 (org-load-modules-maybe)
10669 (move-marker org-open-link-marker (point))
10670 (setq org-window-config-before-follow-link (current-window-configuration))
10671 (org-remove-occur-highlights nil nil t)
10672 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10673 (let* ((context
10674 ;; Only consider supported types, even if they are not
10675 ;; the closest one.
10676 (org-element-lineage
10677 (org-element-context)
10678 '(comment comment-block footnote-definition footnote-reference
10679 headline inlinetask link node-property timestamp)
10681 (type (org-element-type context))
10682 (value (org-element-property :value context)))
10683 (cond
10684 ((not context) (user-error "No link found"))
10685 ;; Exception: open timestamps and links in properties drawers
10686 ;; and comments.
10687 ((memq type '(comment comment-block node-property))
10688 (cond ((org-in-regexp org-any-link-re)
10689 (org-open-link-from-string (match-string-no-properties 0)))
10690 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10691 (org-follow-timestamp-link))
10692 (t (user-error "No link found"))))
10693 ;; On a headline or an inlinetask, but not on a timestamp,
10694 ;; a link, a footnote reference or on tags.
10695 ((and (memq type '(headline inlinetask))
10696 ;; Not on tags.
10697 (progn (save-excursion (beginning-of-line)
10698 (looking-at org-complex-heading-regexp))
10699 (or (not (match-beginning 5))
10700 (< (point) (match-beginning 5)))))
10701 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10702 (links (car data))
10703 (links-end (cdr data)))
10704 (if links
10705 (dolist (link (if (stringp links) (list links) links))
10706 (search-forward link nil links-end)
10707 (goto-char (match-beginning 0))
10708 (org-open-at-point))
10709 (require 'org-attach)
10710 (org-attach-reveal 'if-exists))))
10711 ;; Do nothing on white spaces after an object, unless point
10712 ;; is right after it.
10713 ((> (point)
10714 (save-excursion
10715 (goto-char (org-element-property :end context))
10716 (skip-chars-backward " \t")
10717 (point)))
10718 (user-error "No link found"))
10719 ((eq type 'timestamp) (org-follow-timestamp-link))
10720 ;; On tags within a headline or an inlinetask.
10721 ((and (memq type '(headline inlinetask))
10722 (progn (save-excursion (beginning-of-line)
10723 (looking-at org-complex-heading-regexp))
10724 (and (match-beginning 5)
10725 (>= (point) (match-beginning 5)))))
10726 (org-tags-view arg (substring (match-string 5) 0 -1)))
10727 ((eq type 'link)
10728 ;; When link is located within the description of another
10729 ;; link (e.g., an inline image), always open the parent
10730 ;; link.
10731 (let*((link (let ((up (org-element-property :parent context)))
10732 (if (eq (org-element-type up) 'link) up context)))
10733 (type (org-element-property :type link))
10734 (path (org-link-unescape (org-element-property :path link))))
10735 ;; Switch back to REFERENCE-BUFFER needed when called in
10736 ;; a temporary buffer through `org-open-link-from-string'.
10737 (with-current-buffer (or reference-buffer (current-buffer))
10738 (cond
10739 ((equal type "file")
10740 (if (string-match "[*?{]" (file-name-nondirectory path))
10741 (dired path)
10742 ;; Look into `org-link-protocols' in order to find
10743 ;; a DEDICATED-FUNCTION to open file. The function
10744 ;; will be applied on raw link instead of parsed
10745 ;; link due to the limitation in `org-add-link-type'
10746 ;; ("open" function called with a single argument).
10747 ;; If no such function is found, fallback to
10748 ;; `org-open-file'.
10750 ;; Note : "file+emacs" and "file+sys" types are
10751 ;; hard-coded in order to escape the previous
10752 ;; limitation.
10753 (let* ((option (org-element-property :search-option link))
10754 (app (org-element-property :application link))
10755 (dedicated-function
10756 (nth 1 (assoc app org-link-protocols))))
10757 (if dedicated-function
10758 (funcall dedicated-function
10759 (concat path
10760 (and option (concat "::" option))))
10761 (apply 'org-open-file
10762 path
10763 (cond (arg)
10764 ((equal app "emacs") 'emacs)
10765 ((equal app "sys") 'system))
10766 (cond ((not option) nil)
10767 ((org-string-match-p "\\`[0-9]+\\'" option)
10768 (list (string-to-number option)))
10769 (t (list nil
10770 (org-link-unescape option)))))))))
10771 ((assoc type org-link-protocols)
10772 (funcall (nth 1 (assoc type org-link-protocols)) path))
10773 ((equal type "help")
10774 (let ((f-or-v (intern path)))
10775 (cond ((fboundp f-or-v) (describe-function f-or-v))
10776 ((boundp f-or-v) (describe-variable f-or-v))
10777 (t (error "Not a known function or variable")))))
10778 ((member type '("http" "https" "ftp" "mailto" "news"))
10779 (browse-url (org-link-escape-browser (concat type ":" path))))
10780 ((equal type "doi")
10781 (browse-url
10782 (org-link-escape-browser (concat org-doi-server-url path))))
10783 ((equal type "message") (browse-url (concat type ":" path)))
10784 ((equal type "shell")
10785 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10786 (cmd path))
10787 (if (or (and (org-string-nw-p
10788 org-confirm-shell-link-not-regexp)
10789 (string-match
10790 org-confirm-shell-link-not-regexp cmd))
10791 (not org-confirm-shell-link-function)
10792 (funcall org-confirm-shell-link-function
10793 (format "Execute \"%s\" in shell? "
10794 (org-add-props cmd nil
10795 'face 'org-warning))))
10796 (progn
10797 (message "Executing %s" cmd)
10798 (shell-command cmd buf)
10799 (when (featurep 'midnight)
10800 (setq clean-buffer-list-kill-buffer-names
10801 (cons buf
10802 clean-buffer-list-kill-buffer-names))))
10803 (user-error "Abort"))))
10804 ((equal type "elisp")
10805 (let ((cmd path))
10806 (if (or (and (org-string-nw-p
10807 org-confirm-elisp-link-not-regexp)
10808 (org-string-match-p
10809 org-confirm-elisp-link-not-regexp cmd))
10810 (not org-confirm-elisp-link-function)
10811 (funcall org-confirm-elisp-link-function
10812 (format "Execute \"%s\" as elisp? "
10813 (org-add-props cmd nil
10814 'face 'org-warning))))
10815 (message "%s => %s" cmd
10816 (if (eq (string-to-char cmd) ?\()
10817 (eval (read cmd))
10818 (call-interactively (read cmd))))
10819 (user-error "Abort"))))
10820 ((equal type "id")
10821 (require 'ord-id)
10822 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10823 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10824 (unless (run-hook-with-args-until-success
10825 'org-open-link-functions path)
10826 (if (not arg) (org-mark-ring-push)
10827 (switch-to-buffer-other-window
10828 (org-get-buffer-for-internal-link (current-buffer))))
10829 (let ((cmd `(org-link-search
10830 ,(if (member type '("custom-id" "coderef"))
10831 (org-element-property :raw-link link)
10832 path)
10833 ,(cond ((equal arg '(4)) 'occur)
10834 ((equal arg '(16)) 'org-occur))
10835 ,(org-element-property :begin link))))
10836 (condition-case nil
10837 (let ((org-link-search-inhibit-query t))
10838 (eval cmd))
10839 (error (progn (widen) (eval cmd)))))))
10840 (t (browse-url-at-point))))))
10841 ;; On a footnote reference or at a footnote definition's label.
10842 ((or (eq type 'footnote-reference)
10843 (and (eq type 'footnote-definition)
10844 (save-excursion
10845 ;; Do not validate action when point is on the
10846 ;; spaces right after the footnote label, in
10847 ;; order to be on par with behaviour on links.
10848 (skip-chars-forward " \t")
10849 (let ((begin
10850 (org-element-property :contents-begin context)))
10851 (if begin (< (point) begin)
10852 (= (org-element-property :post-affiliated context)
10853 (line-beginning-position)))))))
10854 (org-footnote-action))
10855 (t (user-error "No link found")))))
10856 (move-marker org-open-link-marker nil)
10857 (run-hook-with-args 'org-follow-link-hook)))
10859 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10860 "Offer links in the current entry and return the selected link.
10861 If there is only one link, return it.
10862 If NTH is an integer, return the NTH link found.
10863 If ZERO is a string, check also this string for a link, and if
10864 there is one, return it."
10865 (with-current-buffer buffer
10866 (save-excursion
10867 (save-restriction
10868 (widen)
10869 (goto-char marker)
10870 (let ((cnt ?0)
10871 (in-emacs (if (integerp nth) nil nth))
10872 have-zero end links link c)
10873 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10874 (push (match-string 0 zero) links)
10875 (setq cnt (1- cnt) have-zero t))
10876 (save-excursion
10877 (org-back-to-heading t)
10878 (setq end (save-excursion (outline-next-heading) (point)))
10879 (while (re-search-forward org-any-link-re end t)
10880 (push (match-string 0) links))
10881 (setq links (org-uniquify (reverse links))))
10882 (cond
10883 ((null links)
10884 (message "No links"))
10885 ((equal (length links) 1)
10886 (setq link (car links)))
10887 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10888 (setq link (nth (if have-zero nth (1- nth)) links)))
10889 (t ; we have to select a link
10890 (save-excursion
10891 (save-window-excursion
10892 (delete-other-windows)
10893 (with-output-to-temp-buffer "*Select Link*"
10894 (mapc (lambda (l)
10895 (if (not (string-match org-bracket-link-regexp l))
10896 (princ (format "[%c] %s\n" (incf cnt)
10897 (org-remove-angle-brackets l)))
10898 (if (match-end 3)
10899 (princ (format "[%c] %s (%s)\n" (incf cnt)
10900 (match-string 3 l) (match-string 1 l)))
10901 (princ (format "[%c] %s\n" (incf cnt)
10902 (match-string 1 l))))))
10903 links))
10904 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10905 (message "Select link to open, RET to open all:")
10906 (setq c (read-char-exclusive))
10907 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10908 (when (equal c ?q) (user-error "Abort"))
10909 (if (equal c ?\C-m)
10910 (setq link links)
10911 (setq nth (- c ?0))
10912 (if have-zero (setq nth (1+ nth)))
10913 (unless (and (integerp nth) (>= (length links) nth))
10914 (user-error "Invalid link selection"))
10915 (setq link (nth (1- nth) links)))))
10916 (cons link end))))))
10918 ;; TODO: These functions are deprecated since `org-open-at-point'
10919 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10920 (defun org-open-file-with-system (path)
10921 "Open file at PATH using the system way of opening it."
10922 (org-open-file path 'system))
10923 (defun org-open-file-with-emacs (path)
10924 "Open file at PATH in Emacs."
10925 (org-open-file path 'emacs))
10928 ;;; File search
10930 (defvar org-create-file-search-functions nil
10931 "List of functions to construct the right search string for a file link.
10932 These functions are called in turn with point at the location to
10933 which the link should point.
10935 A function in the hook should first test if it would like to
10936 handle this file type, for example by checking the `major-mode'
10937 or the file extension. If it decides not to handle this file, it
10938 should just return nil to give other functions a chance. If it
10939 does handle the file, it must return the search string to be used
10940 when following the link. The search string will be part of the
10941 file link, given after a double colon, and `org-open-at-point'
10942 will automatically search for it. If special measures must be
10943 taken to make the search successful, another function should be
10944 added to the companion hook `org-execute-file-search-functions',
10945 which see.
10947 A function in this hook may also use `setq' to set the variable
10948 `description' to provide a suggestion for the descriptive text to
10949 be used for this link when it gets inserted into an Org-mode
10950 buffer with \\[org-insert-link].")
10952 (defvar org-execute-file-search-functions nil
10953 "List of functions to execute a file search triggered by a link.
10955 Functions added to this hook must accept a single argument, the
10956 search string that was part of the file link, the part after the
10957 double colon. The function must first check if it would like to
10958 handle this search, for example by checking the `major-mode' or
10959 the file extension. If it decides not to handle this search, it
10960 should just return nil to give other functions a chance. If it
10961 does handle the search, it must return a non-nil value to keep
10962 other functions from trying.
10964 Each function can access the current prefix argument through the
10965 variable `current-prefix-arg'. Note that a single prefix is used
10966 to force opening a link in Emacs, so it may be good to only use a
10967 numeric or double prefix to guide the search function.
10969 In case this is needed, a function in this hook can also restore
10970 the window configuration before `org-open-at-point' was called using:
10972 (set-window-configuration org-window-config-before-follow-link)")
10974 (defun org-link-search (s &optional type avoid-pos stealth)
10975 "Search for a link search option.
10976 If S is surrounded by forward slashes, it is interpreted as a
10977 regular expression. In org-mode files, this will create an `org-occur'
10978 sparse tree. In ordinary files, `occur' will be used to list matches.
10979 If the current buffer is in `dired-mode', grep will be used to search
10980 in all files. If AVOID-POS is given, ignore matches near that position.
10982 When optional argument STEALTH is non-nil, do not modify
10983 visibility around point, thus ignoring `org-show-context-detail'
10984 variable."
10985 (let ((case-fold-search t)
10986 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10987 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10988 (append '(("") (" ") ("\t") ("\n"))
10989 org-emphasis-alist)
10990 "\\|") "\\)"))
10991 (pos (point))
10992 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
10993 (cond
10994 ;; First check if there are any special search functions
10995 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10996 ;; Now try the builtin stuff
10997 ((and (equal (string-to-char s0) ?#)
10998 (> (length s0) 1)
10999 (save-excursion
11000 (goto-char (point-min))
11001 (and
11002 (re-search-forward
11003 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
11004 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
11005 (setq type 'dedicated
11006 pos (match-beginning 0))))
11007 ;; There is an exact target for this
11008 (goto-char pos)
11009 (org-back-to-heading t)))
11010 ((save-excursion
11011 (goto-char (point-min))
11012 (and
11013 (re-search-forward
11014 (concat "<<" (regexp-quote s0) ">>") nil t)
11015 (setq type 'dedicated
11016 pos (match-beginning 0))))
11017 ;; There is an exact target for this
11018 (goto-char pos))
11019 ((save-excursion
11020 (goto-char (point-min))
11021 (and
11022 (re-search-forward
11023 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11024 (setq type 'dedicated pos (match-beginning 0))))
11025 ;; Found an element with a matching #+name affiliated keyword.
11026 (goto-char pos))
11027 ((and (string-match "^(\\(.*\\))$" s0)
11028 (save-excursion
11029 (goto-char (point-min))
11030 (and
11031 (re-search-forward
11032 (concat "[^[]" (regexp-quote
11033 (format org-coderef-label-format
11034 (match-string 1 s0))))
11035 nil t)
11036 (setq type 'dedicated
11037 pos (1+ (match-beginning 0))))))
11038 ;; There is a coderef target for this
11039 (goto-char pos))
11040 ((string-match "^/\\(.*\\)/$" s)
11041 ;; A regular expression
11042 (cond
11043 ((derived-mode-p 'org-mode)
11044 (org-occur (match-string 1 s)))
11045 (t (org-do-occur (match-string 1 s)))))
11046 ((and (derived-mode-p 'org-mode)
11047 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11048 org-link-search-must-match-exact-headline))
11049 ;; Headline search.
11050 (goto-char (point-min))
11051 (cond
11052 ((let (case-fold-search)
11053 (re-search-forward
11054 (let* ((wspace "[ \t]")
11055 (wspaceopt (concat wspace "*"))
11056 (cookie (concat "\\(?:"
11057 wspaceopt
11058 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11059 wspaceopt
11060 "\\)"))
11061 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11062 (concat
11063 org-outline-regexp-bol
11064 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11065 "\\(?:\\[#.\\][ \t]+\\)?"
11066 sep "*"
11067 (mapconcat #'identity
11068 (org-split-string (regexp-quote s))
11069 (concat sep "+"))
11070 sep "*"
11071 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11072 "[ \t]*$"))
11073 nil t))
11074 ;; OK, found a match
11075 (setq type 'dedicated)
11076 (goto-char (match-beginning 0)))
11077 ((and (not org-link-search-inhibit-query)
11078 (eq org-link-search-must-match-exact-headline 'query-to-create)
11079 (y-or-n-p "No match - create this as a new heading? "))
11080 (goto-char (point-max))
11081 (unless (bolp) (newline))
11082 (org-insert-heading nil t t)
11083 (insert s "\n")
11084 (beginning-of-line 0))
11086 (goto-char pos)
11087 (error "No match"))))
11089 ;; A normal search string
11090 (remove-text-properties
11091 0 (length s)
11092 '(face nil mouse-face nil keymap nil fontified nil) s)
11093 ;; Make a series of regular expressions to find a match
11094 (setq words (org-split-string s "[ \n\r\t]+")
11096 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11097 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11098 "\\)" markers)
11099 re2a_ (concat "\\(" (mapconcat 'downcase words
11100 "[ \t\r\n]+") "\\)[ \t\r\n]")
11101 re2a (concat "[ \t\r\n]" re2a_)
11102 re4_ (concat "\\(" (mapconcat 'downcase words
11103 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11104 re4 (concat "[^a-zA-Z_]" re4_)
11106 re5 (concat ".*" re4)
11107 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11108 "\\)\\|\\(" re5 "\\)"))
11109 (cond
11110 ((eq type 'org-occur) (org-occur reall))
11111 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11112 (t (goto-char (point-min))
11113 (setq type 'fuzzy)
11114 (if (or (and (org-search-not-self 1 re0 nil t)
11115 (setq type 'dedicated))
11116 (org-search-not-self 1 re2 nil t)
11117 (org-search-not-self 1 re2a nil t)
11118 (org-search-not-self 1 re4 nil t)
11119 (org-search-not-self 1 re5 nil t))
11120 (goto-char (match-beginning 1))
11121 (goto-char pos)
11122 (error "No match"))))))
11123 (and (derived-mode-p 'org-mode)
11124 (not stealth)
11125 (org-show-context 'link-search))
11126 type))
11128 (defun org-search-not-self (group &rest args)
11129 "Execute `re-search-forward', but only accept matches that do not
11130 enclose the position of `org-open-link-marker'."
11131 (let ((m org-open-link-marker))
11132 (catch 'exit
11133 (while (apply 're-search-forward args)
11134 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11135 (goto-char (match-end group))
11136 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11137 (> (match-beginning 0) (marker-position m))
11138 (< (match-end 0) (marker-position m)))
11139 (save-match-data
11140 (or (not (org-in-regexp
11141 org-bracket-link-analytic-regexp 1))
11142 (not (match-end 4)) ; no description
11143 (and (<= (match-beginning 4) (point))
11144 (>= (match-end 4) (point))))))
11145 (throw 'exit (point))))))))
11147 (defun org-get-buffer-for-internal-link (buffer)
11148 "Return a buffer to be used for displaying the link target of internal links."
11149 (cond
11150 ((not org-display-internal-link-with-indirect-buffer)
11151 buffer)
11152 ((string-match "(Clone)$" (buffer-name buffer))
11153 (message "Buffer is already a clone, not making another one")
11154 ;; we also do not modify visibility in this case
11155 buffer)
11156 (t ; make a new indirect buffer for displaying the link
11157 (let* ((bn (buffer-name buffer))
11158 (ibn (concat bn "(Clone)"))
11159 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11160 (with-current-buffer ib (org-overview))
11161 ib))))
11163 (defun org-do-occur (regexp &optional cleanup)
11164 "Call the Emacs command `occur'.
11165 If CLEANUP is non-nil, remove the printout of the regular expression
11166 in the *Occur* buffer. This is useful if the regex is long and not useful
11167 to read."
11168 (occur regexp)
11169 (when cleanup
11170 (let ((cwin (selected-window)) win beg end)
11171 (when (setq win (get-buffer-window "*Occur*"))
11172 (select-window win))
11173 (goto-char (point-min))
11174 (when (re-search-forward "match[a-z]+" nil t)
11175 (setq beg (match-end 0))
11176 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11177 (setq end (1- (match-beginning 0)))))
11178 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11179 (goto-char (point-min))
11180 (select-window cwin))))
11182 ;;; The mark ring for links jumps
11184 (defvar org-mark-ring nil
11185 "Mark ring for positions before jumps in Org-mode.")
11186 (defvar org-mark-ring-last-goto nil
11187 "Last position in the mark ring used to go back.")
11188 ;; Fill and close the ring
11189 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11190 (loop for i from 1 to org-mark-ring-length do
11191 (push (make-marker) org-mark-ring))
11192 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11193 org-mark-ring)
11195 (defun org-mark-ring-push (&optional pos buffer)
11196 "Put the current position or POS into the mark ring and rotate it."
11197 (interactive)
11198 (setq pos (or pos (point)))
11199 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11200 (move-marker (car org-mark-ring)
11201 (or pos (point))
11202 (or buffer (current-buffer)))
11203 (message "%s"
11204 (substitute-command-keys
11205 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11207 (defun org-mark-ring-goto (&optional n)
11208 "Jump to the previous position in the mark ring.
11209 With prefix arg N, jump back that many stored positions. When
11210 called several times in succession, walk through the entire ring.
11211 Org-mode commands jumping to a different position in the current file,
11212 or to another Org-mode file, automatically push the old position
11213 onto the ring."
11214 (interactive "p")
11215 (let (p m)
11216 (if (eq last-command this-command)
11217 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11218 (setq p org-mark-ring))
11219 (setq org-mark-ring-last-goto p)
11220 (setq m (car p))
11221 (org-pop-to-buffer-same-window (marker-buffer m))
11222 (goto-char m)
11223 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11225 (defun org-remove-angle-brackets (s)
11226 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11227 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11229 (defun org-add-angle-brackets (s)
11230 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11231 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11233 (defun org-remove-double-quotes (s)
11234 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11235 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11238 ;;; Following specific links
11240 (defun org-follow-timestamp-link ()
11241 "Open an agenda view for the time-stamp date/range at point."
11242 (cond
11243 ((org-at-date-range-p t)
11244 (let ((org-agenda-start-on-weekday)
11245 (t1 (match-string 1))
11246 (t2 (match-string 2)) tt1 tt2)
11247 (setq tt1 (time-to-days (org-time-string-to-time t1))
11248 tt2 (time-to-days (org-time-string-to-time t2)))
11249 (let ((org-agenda-buffer-tmp-name
11250 (format "*Org Agenda(a:%s)"
11251 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11252 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11253 ((org-at-timestamp-p t)
11254 (let ((org-agenda-buffer-tmp-name
11255 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11256 (org-agenda-list nil (time-to-days (org-time-string-to-time
11257 (substring (match-string 1) 0 10)))
11258 1)))
11259 (t (error "This should not happen"))))
11262 ;;; Following file links
11263 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11264 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11265 (declare-function mailcap-mime-info
11266 "mailcap" (string &optional request no-decode))
11267 (defvar org-wait nil)
11268 (defun org-open-file (path &optional in-emacs line search)
11269 "Open the file at PATH.
11270 First, this expands any special file name abbreviations. Then the
11271 configuration variable `org-file-apps' is checked if it contains an
11272 entry for this file type, and if yes, the corresponding command is launched.
11274 If no application is found, Emacs simply visits the file.
11276 With optional prefix argument IN-EMACS, Emacs will visit the file.
11277 With a double \\[universal-argument] \\[universal-argument] \
11278 prefix arg, Org tries to avoid opening in Emacs
11279 and to use an external application to visit the file.
11281 Optional LINE specifies a line to go to, optional SEARCH a string
11282 to search for. If LINE or SEARCH is given, the file will be
11283 opened in Emacs, unless an entry from org-file-apps that makes
11284 use of groups in a regexp matches.
11286 If you want to change the way frames are used when following a
11287 link, please customize `org-link-frame-setup'.
11289 If the file does not exist, an error is thrown."
11290 (let* ((file (if (equal path "")
11291 buffer-file-name
11292 (substitute-in-file-name (expand-file-name path))))
11293 (file-apps (append org-file-apps (org-default-apps)))
11294 (apps (org-remove-if
11295 'org-file-apps-entry-match-against-dlink-p file-apps))
11296 (apps-dlink (org-remove-if-not
11297 'org-file-apps-entry-match-against-dlink-p file-apps))
11298 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11299 (dirp (if remp nil (file-directory-p file)))
11300 (file (if (and dirp org-open-directory-means-index-dot-org)
11301 (concat (file-name-as-directory file) "index.org")
11302 file))
11303 (a-m-a-p (assq 'auto-mode apps))
11304 (dfile (downcase file))
11305 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11306 (link (cond ((and (eq line nil)
11307 (eq search nil))
11308 file)
11309 (line
11310 (concat file "::" (number-to-string line)))
11311 (search
11312 (concat file "::" search))))
11313 (dlink (downcase link))
11314 (old-buffer (current-buffer))
11315 (old-pos (point))
11316 (old-mode major-mode)
11317 ext cmd link-match-data)
11318 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11319 (setq ext (match-string 1 dfile))
11320 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11321 (setq ext (match-string 1 dfile))))
11322 (cond
11323 ((member in-emacs '((16) system))
11324 (setq cmd (cdr (assoc 'system apps))))
11325 (in-emacs (setq cmd 'emacs))
11327 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11328 (and dirp (cdr (assoc 'directory apps)))
11329 ; first, try matching against apps-dlink
11330 ; if we get a match here, store the match data for later
11331 (let ((match (assoc-default dlink apps-dlink
11332 'string-match)))
11333 (if match
11334 (progn (setq link-match-data (match-data))
11335 match)
11336 (progn (setq in-emacs (or in-emacs line search))
11337 nil))) ; if we have no match in apps-dlink,
11338 ; always open the file in emacs if line or search
11339 ; is given (for backwards compatibility)
11340 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11341 'string-match)
11342 (cdr (assoc ext apps))
11343 (cdr (assoc t apps))))))
11344 (when (eq cmd 'system)
11345 (setq cmd (cdr (assoc 'system apps))))
11346 (when (eq cmd 'default)
11347 (setq cmd (cdr (assoc t apps))))
11348 (when (eq cmd 'mailcap)
11349 (require 'mailcap)
11350 (mailcap-parse-mailcaps)
11351 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11352 (command (mailcap-mime-info mime-type)))
11353 (if (stringp command)
11354 (setq cmd command)
11355 (setq cmd 'emacs))))
11356 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11357 (not (file-exists-p file))
11358 (not org-open-non-existing-files))
11359 (user-error "No such file: %s" file))
11360 (cond
11361 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11362 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11363 (while (string-match "['\"]%s['\"]" cmd)
11364 (setq cmd (replace-match "%s" t t cmd)))
11365 (while (string-match "%s" cmd)
11366 (setq cmd (replace-match
11367 (save-match-data
11368 (shell-quote-argument
11369 (convert-standard-filename file)))
11370 t t cmd)))
11372 ;; Replace "%1", "%2" etc. in command with group matches from regex
11373 (save-match-data
11374 (let ((match-index 1)
11375 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11376 (set-match-data link-match-data)
11377 (while (<= match-index number-of-groups)
11378 (let ((regex (concat "%" (number-to-string match-index)))
11379 (replace-with (match-string match-index dlink)))
11380 (while (string-match regex cmd)
11381 (setq cmd (replace-match replace-with t t cmd))))
11382 (setq match-index (+ match-index 1)))))
11384 (save-window-excursion
11385 (message "Running %s...done" cmd)
11386 (start-process-shell-command cmd nil cmd)
11387 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11388 ((or (stringp cmd)
11389 (eq cmd 'emacs))
11390 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11391 (widen)
11392 (if line (progn (org-goto-line line)
11393 (if (derived-mode-p 'org-mode)
11394 (org-reveal)))
11395 (if search (org-link-search search))))
11396 ((consp cmd)
11397 (let ((file (convert-standard-filename file)))
11398 (save-match-data
11399 (set-match-data link-match-data)
11400 (eval cmd))))
11401 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11402 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11403 (or (not (equal old-buffer (current-buffer)))
11404 (not (equal old-pos (point))))
11405 (org-mark-ring-push old-pos old-buffer))))
11407 (defun org-file-apps-entry-match-against-dlink-p (entry)
11408 "This function returns non-nil if `entry' uses a regular
11409 expression which should be matched against the whole link by
11410 org-open-file.
11412 It assumes that is the case when the entry uses a regular
11413 expression which has at least one grouping construct and the
11414 action is either a lisp form or a command string containing
11415 '%1', i.e. using at least one subexpression match as a
11416 parameter."
11417 (let ((selector (car entry))
11418 (action (cdr entry)))
11419 (if (stringp selector)
11420 (and (> (regexp-opt-depth selector) 0)
11421 (or (and (stringp action)
11422 (string-match "%[0-9]" action))
11423 (consp action)))
11424 nil)))
11426 (defun org-default-apps ()
11427 "Return the default applications for this operating system."
11428 (cond
11429 ((eq system-type 'darwin)
11430 org-file-apps-defaults-macosx)
11431 ((eq system-type 'windows-nt)
11432 org-file-apps-defaults-windowsnt)
11433 (t org-file-apps-defaults-gnu)))
11435 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11436 "Convert extensions to regular expressions in the cars of LIST.
11437 Also, weed out any non-string entries, because the return value is used
11438 only for regexp matching.
11439 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11440 point to the symbol `emacs', indicating that the file should
11441 be opened in Emacs."
11442 (append
11443 (delq nil
11444 (mapcar (lambda (x)
11445 (if (not (stringp (car x)))
11447 (if (string-match "\\W" (car x))
11449 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11450 list))
11451 (if add-auto-mode
11452 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11454 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11455 (defun org-file-remote-p (file)
11456 "Test whether FILE specifies a location on a remote system.
11457 Return non-nil if the location is indeed remote.
11459 For example, the filename \"/user@host:/foo\" specifies a location
11460 on the system \"/user@host:\"."
11461 (cond ((fboundp 'file-remote-p)
11462 (file-remote-p file))
11463 ((fboundp 'tramp-handle-file-remote-p)
11464 (tramp-handle-file-remote-p file))
11465 ((and (boundp 'ange-ftp-name-format)
11466 (string-match (car ange-ftp-name-format) file))
11467 t)))
11470 ;;;; Refiling
11472 (defun org-get-org-file ()
11473 "Read a filename, with default directory `org-directory'."
11474 (let ((default (or org-default-notes-file remember-data-file)))
11475 (read-file-name (format "File name [%s]: " default)
11476 (file-name-as-directory org-directory)
11477 default)))
11479 (defun org-notes-order-reversed-p ()
11480 "Check if the current file should receive notes in reversed order."
11481 (cond
11482 ((not org-reverse-note-order) nil)
11483 ((eq t org-reverse-note-order) t)
11484 ((not (listp org-reverse-note-order)) nil)
11485 (t (catch 'exit
11486 (let ((all org-reverse-note-order)
11487 entry)
11488 (while (setq entry (pop all))
11489 (if (string-match (car entry) buffer-file-name)
11490 (throw 'exit (cdr entry))))
11491 nil)))))
11493 (defvar org-refile-target-table nil
11494 "The list of refile targets, created by `org-refile'.")
11496 (defvar org-agenda-new-buffers nil
11497 "Buffers created to visit agenda files.")
11499 (defvar org-refile-cache nil
11500 "Cache for refile targets.")
11502 (defvar org-refile-markers nil
11503 "All the markers used for caching refile locations.")
11505 (defun org-refile-marker (pos)
11506 "Get a new refile marker, but only if caching is in use."
11507 (if (not org-refile-use-cache)
11509 (let ((m (make-marker)))
11510 (move-marker m pos)
11511 (push m org-refile-markers)
11512 m)))
11514 (defun org-refile-cache-clear ()
11515 "Clear the refile cache and disable all the markers."
11516 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11517 (setq org-refile-markers nil)
11518 (setq org-refile-cache nil)
11519 (message "Refile cache has been cleared"))
11521 (defun org-refile-cache-check-set (set)
11522 "Check if all the markers in the cache still have live buffers."
11523 (let (marker)
11524 (catch 'exit
11525 (while (and set (setq marker (nth 3 (pop set))))
11526 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11527 (when (and marker (null (marker-buffer marker)))
11528 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11529 (sit-for 3)
11530 (throw 'exit nil)))
11531 t)))
11533 (defun org-refile-cache-put (set &rest identifiers)
11534 "Push the refile targets SET into the cache, under IDENTIFIERS."
11535 (let* ((key (sha1 (prin1-to-string identifiers)))
11536 (entry (assoc key org-refile-cache)))
11537 (if entry
11538 (setcdr entry set)
11539 (push (cons key set) org-refile-cache))))
11541 (defun org-refile-cache-get (&rest identifiers)
11542 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11543 (cond
11544 ((not org-refile-cache) nil)
11545 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11547 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11548 org-refile-cache))))
11549 (and set (org-refile-cache-check-set set) set)))))
11551 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11552 "Produce a table with refile targets."
11553 (let ((case-fold-search nil)
11554 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11555 (entries (or org-refile-targets '((nil . (:level . 1)))))
11556 targets tgs txt re files f desc descre fast-path-p level pos0)
11557 (message "Getting targets...")
11558 (with-current-buffer (or default-buffer (current-buffer))
11559 (while (setq entry (pop entries))
11560 (setq files (car entry) desc (cdr entry))
11561 (setq fast-path-p nil)
11562 (cond
11563 ((null files) (setq files (list (current-buffer))))
11564 ((eq files 'org-agenda-files)
11565 (setq files (org-agenda-files 'unrestricted)))
11566 ((and (symbolp files) (fboundp files))
11567 (setq files (funcall files)))
11568 ((and (symbolp files) (boundp files))
11569 (setq files (symbol-value files))))
11570 (if (stringp files) (setq files (list files)))
11571 (cond
11572 ((eq (car desc) :tag)
11573 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11574 ((eq (car desc) :todo)
11575 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11576 ((eq (car desc) :regexp)
11577 (setq descre (cdr desc)))
11578 ((eq (car desc) :level)
11579 (setq descre (concat "^\\*\\{" (number-to-string
11580 (if org-odd-levels-only
11581 (1- (* 2 (cdr desc)))
11582 (cdr desc)))
11583 "\\}[ \t]")))
11584 ((eq (car desc) :maxlevel)
11585 (setq fast-path-p t)
11586 (setq descre (concat "^\\*\\{1," (number-to-string
11587 (if org-odd-levels-only
11588 (1- (* 2 (cdr desc)))
11589 (cdr desc)))
11590 "\\}[ \t]")))
11591 (t (error "Bad refiling target description %s" desc)))
11592 (while (setq f (pop files))
11593 (with-current-buffer
11594 (if (bufferp f) f (org-get-agenda-file-buffer f))
11596 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11597 (progn
11598 (if (bufferp f) (setq f (buffer-file-name
11599 (buffer-base-buffer f))))
11600 (setq f (and f (expand-file-name f)))
11601 (if (eq org-refile-use-outline-path 'file)
11602 (push (list (file-name-nondirectory f) f nil nil) tgs))
11603 (save-excursion
11604 (save-restriction
11605 (widen)
11606 (goto-char (point-min))
11607 (while (re-search-forward descre nil t)
11608 (goto-char (setq pos0 (point-at-bol)))
11609 (catch 'next
11610 (when org-refile-target-verify-function
11611 (save-match-data
11612 (or (funcall org-refile-target-verify-function)
11613 (throw 'next t))))
11614 (when (and (looking-at org-complex-heading-regexp)
11615 (not (member (match-string 4) excluded-entries))
11616 (match-string 4))
11617 (setq level (org-reduced-level
11618 (- (match-end 1) (match-beginning 1)))
11619 txt (org-link-display-format (match-string 4))
11620 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11621 re (format org-complex-heading-regexp-format
11622 (regexp-quote (match-string 4))))
11623 (when org-refile-use-outline-path
11624 (setq txt (mapconcat
11625 'org-protect-slash
11626 (append
11627 (if (eq org-refile-use-outline-path
11628 'file)
11629 (list (file-name-nondirectory
11630 (buffer-file-name
11631 (buffer-base-buffer))))
11632 (if (eq org-refile-use-outline-path
11633 'full-file-path)
11634 (list (buffer-file-name
11635 (buffer-base-buffer)))))
11636 (org-get-outline-path fast-path-p
11637 level txt)
11638 (list txt))
11639 "/")))
11640 (push (list txt f re (org-refile-marker (point)))
11641 tgs)))
11642 (when (= (point) pos0)
11643 ;; verification function has not moved point
11644 (goto-char (point-at-eol))))))))
11645 (when org-refile-use-cache
11646 (org-refile-cache-put tgs (buffer-file-name) descre))
11647 (setq targets (append tgs targets))))))
11648 (message "Getting targets...done")
11649 (nreverse targets)))
11651 (defun org-protect-slash (s)
11652 (while (string-match "/" s)
11653 (setq s (replace-match "\\" t t s)))
11656 (defvar org-olpa (make-vector 20 nil))
11658 (defun org-get-outline-path (&optional fastp level heading)
11659 "Return the outline path to the current entry, as a list.
11661 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11662 routine which makes outline path derivations for an entire file,
11663 avoiding backtracing. Refile target collection makes use of that."
11664 (if fastp
11665 (progn
11666 (if (> level 19)
11667 (error "Outline path failure, more than 19 levels"))
11668 (loop for i from level upto 19 do
11669 (aset org-olpa i nil))
11670 (prog1
11671 (delq nil (append org-olpa nil))
11672 (aset org-olpa level heading)))
11673 (let (rtn case-fold-search)
11674 (save-excursion
11675 (save-restriction
11676 (widen)
11677 (while (org-up-heading-safe)
11678 (when (looking-at org-complex-heading-regexp)
11679 (push (org-trim
11680 (replace-regexp-in-string
11681 ;; Remove statistical/checkboxes cookies
11682 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11683 (org-match-string-no-properties 4)))
11684 rtn)))
11685 rtn)))))
11687 (defun org-format-outline-path (path &optional width prefix separator)
11688 "Format the outline path PATH for display.
11689 WIDTH is the maximum number of characters that is available.
11690 PREFIX is a prefix to be included in the returned string,
11691 such as the file name.
11692 SEPARATOR is inserted between the different parts of the path,
11693 the default is \"/\"."
11694 (setq width (or width 79))
11695 (if prefix (setq width (- width (length prefix))))
11696 (if (not path)
11697 (or prefix "")
11698 (let* ((nsteps (length path))
11699 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11700 (maxwidth (if (<= total-width width)
11701 10000 ;; everything fits
11702 ;; we need to shorten the level headings
11703 (/ (- width nsteps) nsteps)))
11704 (org-odd-levels-only nil)
11705 (n 0)
11706 (total (1+ (length prefix))))
11707 (setq maxwidth (max maxwidth 10))
11708 (concat prefix
11709 (if prefix (or separator "/"))
11710 (mapconcat
11711 (lambda (h)
11712 (setq n (1+ n))
11713 (if (and (= n nsteps) (< maxwidth 10000))
11714 (setq maxwidth (- total-width total)))
11715 (if (< (length h) maxwidth)
11716 (progn (setq total (+ total (length h) 1)) h)
11717 (setq h (substring h 0 (- maxwidth 2))
11718 total (+ total maxwidth 1))
11719 (if (string-match "[ \t]+\\'" h)
11720 (setq h (substring h 0 (match-beginning 0))))
11721 (setq h (concat h "..")))
11722 (org-add-props h nil 'face
11723 (nth (% (1- n) org-n-level-faces)
11724 org-level-faces))
11726 path (or separator "/"))))))
11728 (defun org-display-outline-path (&optional file current separator just-return-string)
11729 "Display the current outline path in the echo area.
11731 If FILE is non-nil, prepend the output with the file name.
11732 If CURRENT is non-nil, append the current heading to the output.
11733 SEPARATOR is passed through to `org-format-outline-path'. It separates
11734 the different parts of the path and defaults to \"/\".
11735 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11736 (interactive "P")
11737 (let* (case-fold-search
11738 (bfn (buffer-file-name (buffer-base-buffer)))
11739 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11740 res)
11741 (if current (setq path (append path
11742 (save-excursion
11743 (org-back-to-heading t)
11744 (if (looking-at org-complex-heading-regexp)
11745 (list (match-string 4)))))))
11746 (setq res
11747 (org-format-outline-path
11748 path
11749 (1- (frame-width))
11750 (and file bfn (concat (file-name-nondirectory bfn) separator))
11751 separator))
11752 (if just-return-string
11753 (org-no-properties res)
11754 (org-unlogged-message "%s" res))))
11756 (defvar org-refile-history nil
11757 "History for refiling operations.")
11759 (defvar org-after-refile-insert-hook nil
11760 "Hook run after `org-refile' has inserted its stuff at the new location.
11761 Note that this is still *before* the stuff will be removed from
11762 the *old* location.")
11764 (defvar org-capture-last-stored-marker)
11765 (defvar org-refile-keep nil
11766 "Non-nil means `org-refile' will copy instead of refile.")
11768 (defun org-copy ()
11769 "Like `org-refile', but copy."
11770 (interactive)
11771 (let ((org-refile-keep t))
11772 (funcall 'org-refile nil nil nil "Copy")))
11774 (defun org-refile (&optional arg default-buffer rfloc msg)
11775 "Move the entry or entries at point to another heading.
11776 The list of target headings is compiled using the information in
11777 `org-refile-targets', which see.
11779 At the target location, the entry is filed as a subitem of the
11780 target heading. Depending on `org-reverse-note-order', the new
11781 subitem will either be the first or the last subitem.
11783 If there is an active region, all entries in that region will be
11784 refiled. However, the region must fulfill the requirement that
11785 the first heading sets the top-level of the moved text.
11787 With prefix arg ARG, the command will only visit the target
11788 location and not actually move anything.
11790 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11791 refiling operation has put the subtree.
11793 With a numeric prefix argument of `2', refile to the running clock.
11795 With a numeric prefix argument of `3', emulate `org-refile-keep'
11796 being set to `t' and copy to the target location, don't move it.
11797 Beware that keeping refiled entries may result in duplicated ID
11798 properties.
11800 RFLOC can be a refile location obtained in a different way.
11802 MSG is a string to replace \"Refile\" in the default prompt with
11803 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11805 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11807 If you are using target caching (see `org-refile-use-cache'), you
11808 have to clear the target cache in order to find new targets.
11809 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11810 prefix argument (`C-u C-u C-u C-c C-w')."
11811 (interactive "P")
11812 (if (member arg '(0 (64)))
11813 (org-refile-cache-clear)
11814 (let* ((actionmsg (cond (msg msg)
11815 ((equal arg 3) "Refile (and keep)")
11816 (t "Refile")))
11817 (cbuf (current-buffer))
11818 (regionp (org-region-active-p))
11819 (region-start (and regionp (region-beginning)))
11820 (region-end (and regionp (region-end)))
11821 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11822 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11823 pos it nbuf file re level reversed)
11824 (setq last-command nil)
11825 (when regionp
11826 (goto-char region-start)
11827 (or (bolp) (goto-char (point-at-bol)))
11828 (setq region-start (point))
11829 (unless (or (org-kill-is-subtree-p
11830 (buffer-substring region-start region-end))
11831 (prog1 org-refile-active-region-within-subtree
11832 (let ((s (point-at-eol)))
11833 (org-toggle-heading)
11834 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11835 (user-error "The region is not a (sequence of) subtree(s)")))
11836 (if (equal arg '(16))
11837 (org-refile-goto-last-stored)
11838 (when (or
11839 (and (equal arg 2)
11840 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11841 (prog1
11842 (setq it (list (or org-clock-heading "running clock")
11843 (buffer-file-name
11844 (marker-buffer org-clock-hd-marker))
11846 (marker-position org-clock-hd-marker)))
11847 (setq arg nil)))
11848 (setq it (or rfloc
11849 (let (heading-text)
11850 (save-excursion
11851 (unless (and arg (listp arg))
11852 (org-back-to-heading t)
11853 (setq heading-text
11854 (replace-regexp-in-string
11855 org-bracket-link-regexp
11856 "\\3"
11857 (nth 4 (org-heading-components)))))
11858 (org-refile-get-location
11859 (cond ((and arg (listp arg)) "Goto")
11860 (regionp (concat actionmsg " region to"))
11861 (t (concat actionmsg " subtree \""
11862 heading-text "\" to")))
11863 default-buffer
11864 (and (not (equal '(4) arg))
11865 org-refile-allow-creating-parent-nodes)
11866 arg))))))
11867 (setq file (nth 1 it)
11868 re (nth 2 it)
11869 pos (nth 3 it))
11870 (if (and (not arg)
11872 (equal (buffer-file-name) file)
11873 (if regionp
11874 (and (>= pos region-start)
11875 (<= pos region-end))
11876 (and (>= pos (point))
11877 (< pos (save-excursion
11878 (org-end-of-subtree t t))))))
11879 (error "Cannot refile to position inside the tree or region"))
11880 (setq nbuf (or (find-buffer-visiting file)
11881 (find-file-noselect file)))
11882 (if (and arg (not (equal arg 3)))
11883 (progn
11884 (org-pop-to-buffer-same-window nbuf)
11885 (goto-char pos)
11886 (org-show-context 'org-goto))
11887 (if regionp
11888 (progn
11889 (org-kill-new (buffer-substring region-start region-end))
11890 (org-save-markers-in-region region-start region-end))
11891 (org-copy-subtree 1 nil t))
11892 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11893 (find-file-noselect file)))
11894 (setq reversed (org-notes-order-reversed-p))
11895 (save-excursion
11896 (save-restriction
11897 (widen)
11898 (if pos
11899 (progn
11900 (goto-char pos)
11901 (looking-at org-outline-regexp)
11902 (setq level (org-get-valid-level (funcall outline-level) 1))
11903 (goto-char
11904 (if reversed
11905 (or (outline-next-heading) (point-max))
11906 (or (save-excursion (org-get-next-sibling))
11907 (org-end-of-subtree t t)
11908 (point-max)))))
11909 (setq level 1)
11910 (if (not reversed)
11911 (goto-char (point-max))
11912 (goto-char (point-min))
11913 (or (outline-next-heading) (goto-char (point-max)))))
11914 (if (not (bolp)) (newline))
11915 (org-paste-subtree level nil nil t)
11916 (when org-log-refile
11917 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11918 (unless (eq org-log-refile 'note)
11919 (save-excursion (org-add-log-note))))
11920 (and org-auto-align-tags
11921 (let ((org-loop-over-headlines-in-active-region nil))
11922 (org-set-tags nil t)))
11923 (let ((bookmark-name (plist-get org-bookmark-names-plist
11924 :last-refile)))
11925 (when bookmark-name
11926 (with-demoted-errors
11927 (bookmark-set bookmark-name))))
11928 ;; If we are refiling for capture, make sure that the
11929 ;; last-capture pointers point here
11930 (when (org-bound-and-true-p org-refile-for-capture)
11931 (let ((bookmark-name (plist-get org-bookmark-names-plist
11932 :last-capture-marker)))
11933 (when bookmark-name
11934 (with-demoted-errors
11935 (bookmark-set bookmark-name))))
11936 (move-marker org-capture-last-stored-marker (point)))
11937 (if (fboundp 'deactivate-mark) (deactivate-mark))
11938 (run-hooks 'org-after-refile-insert-hook))))
11939 (unless org-refile-keep
11940 (if regionp
11941 (delete-region (point) (+ (point) (- region-end region-start)))
11942 (delete-region
11943 (and (org-back-to-heading t) (point))
11944 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11945 (when (featurep 'org-inlinetask)
11946 (org-inlinetask-remove-END-maybe))
11947 (setq org-markers-to-move nil)
11948 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11950 (defun org-refile-goto-last-stored ()
11951 "Go to the location where the last refile was stored."
11952 (interactive)
11953 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11954 (message "This is the location of the last refile"))
11956 (defun org-refile--get-location (refloc tbl)
11957 "When user refile to REFLOC, find the associated target in TBL.
11958 Also check `org-refile-target-table'."
11959 (car (delq
11961 (mapcar
11962 (lambda (r) (or (assoc r tbl)
11963 (assoc r org-refile-target-table)))
11964 (list (replace-regexp-in-string "/$" "" refloc)
11965 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11967 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11968 no-exclude)
11969 "Prompt the user for a refile location, using PROMPT.
11970 PROMPT should not be suffixed with a colon and a space, because
11971 this function appends the default value from
11972 `org-refile-history' automatically, if that is not empty.
11973 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11974 this is used for the GOTO interface."
11975 (let ((org-refile-targets org-refile-targets)
11976 (org-refile-use-outline-path org-refile-use-outline-path)
11977 excluded-entries)
11978 (when (and (derived-mode-p 'org-mode)
11979 (not org-refile-use-cache)
11980 (not no-exclude))
11981 (org-map-tree
11982 (lambda()
11983 (setq excluded-entries
11984 (append excluded-entries (list (org-get-heading t t)))))))
11985 (setq org-refile-target-table
11986 (org-refile-get-targets default-buffer excluded-entries)))
11987 (unless org-refile-target-table
11988 (user-error "No refile targets"))
11989 (let* ((cbuf (current-buffer))
11990 (partial-completion-mode nil)
11991 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11992 (cfunc (if (and org-refile-use-outline-path
11993 org-outline-path-complete-in-steps)
11994 'org-olpath-completing-read
11995 'org-icompleting-read))
11996 (extra (if org-refile-use-outline-path "/" ""))
11997 (cbnex (concat (buffer-name) extra))
11998 (filename (and cfn (expand-file-name cfn)))
11999 (tbl (mapcar
12000 (lambda (x)
12001 (if (and (not (member org-refile-use-outline-path
12002 '(file full-file-path)))
12003 (not (equal filename (nth 1 x))))
12004 (cons (concat (car x) extra " ("
12005 (file-name-nondirectory (nth 1 x)) ")")
12006 (cdr x))
12007 (cons (concat (car x) extra) (cdr x))))
12008 org-refile-target-table))
12009 (completion-ignore-case t)
12010 cdef
12011 (prompt (concat prompt
12012 (or (and (car org-refile-history)
12013 (concat " (default " (car org-refile-history) ")"))
12014 (and (assoc cbnex tbl) (setq cdef cbnex)
12015 (concat " (default " cbnex ")"))) ": "))
12016 pa answ parent-target child parent old-hist)
12017 (setq old-hist org-refile-history)
12018 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12019 nil 'org-refile-history (or cdef (car org-refile-history))))
12020 (if (setq pa (org-refile--get-location answ tbl))
12021 (progn
12022 (org-refile-check-position pa)
12023 (when (or (not org-refile-history)
12024 (not (eq old-hist org-refile-history))
12025 (not (equal (car pa) (car org-refile-history))))
12026 (setq org-refile-history
12027 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12028 org-refile-history
12029 (cdr org-refile-history))))
12030 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12031 (pop org-refile-history)))
12033 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12034 (progn
12035 (setq parent (match-string 1 answ)
12036 child (match-string 2 answ))
12037 (setq parent-target (org-refile--get-location parent tbl))
12038 (when (and parent-target
12039 (or (eq new-nodes t)
12040 (and (eq new-nodes 'confirm)
12041 (y-or-n-p (format "Create new node \"%s\"? "
12042 child)))))
12043 (org-refile-new-child parent-target child)))
12044 (user-error "Invalid target location")))))
12046 (declare-function org-string-nw-p "org-macs" (s))
12047 (defun org-refile-check-position (refile-pointer)
12048 "Check if the refile pointer matches the headline to which it points."
12049 (let* ((file (nth 1 refile-pointer))
12050 (re (nth 2 refile-pointer))
12051 (pos (nth 3 refile-pointer))
12052 buffer)
12053 (if (and (not (markerp pos)) (not file))
12054 (user-error "Please indicate a target file in the refile path")
12055 (when (org-string-nw-p re)
12056 (setq buffer (if (markerp pos)
12057 (marker-buffer pos)
12058 (or (find-buffer-visiting file)
12059 (find-file-noselect file))))
12060 (with-current-buffer buffer
12061 (save-excursion
12062 (save-restriction
12063 (widen)
12064 (goto-char pos)
12065 (beginning-of-line 1)
12066 (unless (org-looking-at-p re)
12067 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12069 (defun org-refile-new-child (parent-target child)
12070 "Use refile target PARENT-TARGET to add new CHILD below it."
12071 (unless parent-target
12072 (error "Cannot find parent for new node"))
12073 (let ((file (nth 1 parent-target))
12074 (pos (nth 3 parent-target))
12075 level)
12076 (with-current-buffer (or (find-buffer-visiting file)
12077 (find-file-noselect file))
12078 (save-excursion
12079 (save-restriction
12080 (widen)
12081 (if pos
12082 (goto-char pos)
12083 (goto-char (point-max))
12084 (if (not (bolp)) (newline)))
12085 (when (looking-at org-outline-regexp)
12086 (setq level (funcall outline-level))
12087 (org-end-of-subtree t t))
12088 (org-back-over-empty-lines)
12089 (insert "\n" (make-string
12090 (if pos (org-get-valid-level level 1) 1) ?*)
12091 " " child "\n")
12092 (beginning-of-line 0)
12093 (list (concat (car parent-target) "/" child) file "" (point)))))))
12095 (defun org-olpath-completing-read (prompt collection &rest args)
12096 "Read an outline path like a file name."
12097 (let ((thetable collection)
12098 (org-completion-use-ido nil) ; does not work with ido.
12099 (org-completion-use-iswitchb nil)) ; or iswitchb
12100 (apply
12101 'org-icompleting-read prompt
12102 (lambda (string predicate &optional flag)
12103 (let (rtn r f (l (length string)))
12104 (cond
12105 ((eq flag nil)
12106 ;; try completion
12107 (try-completion string thetable))
12108 ((eq flag t)
12109 ;; all-completions
12110 (setq rtn (all-completions string thetable predicate))
12111 (mapcar
12112 (lambda (x)
12113 (setq r (substring x l))
12114 (if (string-match " ([^)]*)$" x)
12115 (setq f (match-string 0 x))
12116 (setq f ""))
12117 (if (string-match "/" r)
12118 (concat string (substring r 0 (match-end 0)) f)
12120 rtn))
12121 ((eq flag 'lambda)
12122 ;; exact match?
12123 (assoc string thetable)))))
12124 args)))
12126 ;;;; Dynamic blocks
12128 (defun org-find-dblock (name)
12129 "Find the first dynamic block with name NAME in the buffer.
12130 If not found, stay at current position and return nil."
12131 (let ((case-fold-search t) pos)
12132 (save-excursion
12133 (goto-char (point-min))
12134 (setq pos (and (re-search-forward
12135 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12136 (match-beginning 0))))
12137 (if pos (goto-char pos))
12138 pos))
12140 (defun org-create-dblock (plist)
12141 "Create a dynamic block section, with parameters taken from PLIST.
12142 PLIST must contain a :name entry which is used as the name of the block."
12143 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12144 (end-of-line 1)
12145 (newline))
12146 (let ((col (current-column))
12147 (name (plist-get plist :name)))
12148 (insert "#+BEGIN: " name)
12149 (while plist
12150 (if (eq (car plist) :name)
12151 (setq plist (cddr plist))
12152 (insert " " (prin1-to-string (pop plist)))))
12153 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12154 (beginning-of-line -2)))
12156 (defun org-prepare-dblock ()
12157 "Prepare dynamic block for refresh.
12158 This empties the block, puts the cursor at the insert position and returns
12159 the property list including an extra property :name with the block name."
12160 (unless (looking-at org-dblock-start-re)
12161 (user-error "Not at a dynamic block"))
12162 (let* ((begdel (1+ (match-end 0)))
12163 (name (org-no-properties (match-string 1)))
12164 (params (append (list :name name)
12165 (read (concat "(" (match-string 3) ")")))))
12166 (save-excursion
12167 (beginning-of-line 1)
12168 (skip-chars-forward " \t")
12169 (setq params (plist-put params :indentation-column (current-column))))
12170 (unless (re-search-forward org-dblock-end-re nil t)
12171 (error "Dynamic block not terminated"))
12172 (setq params
12173 (append params
12174 (list :content (buffer-substring
12175 begdel (match-beginning 0)))))
12176 (delete-region begdel (match-beginning 0))
12177 (goto-char begdel)
12178 (open-line 1)
12179 params))
12181 (defun org-map-dblocks (&optional command)
12182 "Apply COMMAND to all dynamic blocks in the current buffer.
12183 If COMMAND is not given, use `org-update-dblock'."
12184 (let ((cmd (or command 'org-update-dblock)))
12185 (save-excursion
12186 (goto-char (point-min))
12187 (while (re-search-forward org-dblock-start-re nil t)
12188 (goto-char (match-beginning 0))
12189 (save-excursion
12190 (condition-case nil
12191 (funcall cmd)
12192 (error (message "Error during update of dynamic block"))))
12193 (unless (re-search-forward org-dblock-end-re nil t)
12194 (error "Dynamic block not terminated"))))))
12196 (defun org-dblock-update (&optional arg)
12197 "User command for updating dynamic blocks.
12198 Update the dynamic block at point. With prefix ARG, update all dynamic
12199 blocks in the buffer."
12200 (interactive "P")
12201 (if arg
12202 (org-update-all-dblocks)
12203 (or (looking-at org-dblock-start-re)
12204 (org-beginning-of-dblock))
12205 (org-update-dblock)))
12207 (defun org-update-dblock ()
12208 "Update the dynamic block at point.
12209 This means to empty the block, parse for parameters and then call
12210 the correct writing function."
12211 (interactive)
12212 (save-excursion
12213 (let* ((win (selected-window))
12214 (pos (point))
12215 (line (org-current-line))
12216 (params (org-prepare-dblock))
12217 (name (plist-get params :name))
12218 (indent (plist-get params :indentation-column))
12219 (cmd (intern (concat "org-dblock-write:" name))))
12220 (message "Updating dynamic block `%s' at line %d..." name line)
12221 (funcall cmd params)
12222 (message "Updating dynamic block `%s' at line %d...done" name line)
12223 (goto-char pos)
12224 (when (and indent (> indent 0))
12225 (setq indent (make-string indent ?\ ))
12226 (save-excursion
12227 (select-window win)
12228 (org-beginning-of-dblock)
12229 (forward-line 1)
12230 (while (not (looking-at org-dblock-end-re))
12231 (insert indent)
12232 (beginning-of-line 2))
12233 (when (looking-at org-dblock-end-re)
12234 (and (looking-at "[ \t]+")
12235 (replace-match ""))
12236 (insert indent)))))))
12238 (defun org-beginning-of-dblock ()
12239 "Find the beginning of the dynamic block at point.
12240 Error if there is no such block at point."
12241 (let ((pos (point))
12242 beg)
12243 (end-of-line 1)
12244 (if (and (re-search-backward org-dblock-start-re nil t)
12245 (setq beg (match-beginning 0))
12246 (re-search-forward org-dblock-end-re nil t)
12247 (> (match-end 0) pos))
12248 (goto-char beg)
12249 (goto-char pos)
12250 (error "Not in a dynamic block"))))
12252 (defun org-update-all-dblocks ()
12253 "Update all dynamic blocks in the buffer.
12254 This function can be used in a hook."
12255 (interactive)
12256 (when (derived-mode-p 'org-mode)
12257 (org-map-dblocks 'org-update-dblock)))
12260 ;;;; Completion
12262 (declare-function org-export-backend-name "org-export" (cl-x))
12263 (declare-function org-export-backend-options "org-export" (cl-x))
12264 (defun org-get-export-keywords ()
12265 "Return a list of all currently understood export keywords.
12266 Export keywords include options, block names, attributes and
12267 keywords relative to each registered export back-end."
12268 (let (keywords)
12269 (dolist (backend
12270 (org-bound-and-true-p org-export--registered-backends)
12271 (delq nil keywords))
12272 ;; Back-end name (for keywords, like #+LATEX:)
12273 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12274 (dolist (option-entry (org-export-backend-options backend))
12275 ;; Back-end options.
12276 (push (nth 1 option-entry) keywords)))))
12278 (defconst org-options-keywords
12279 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12280 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12281 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12282 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12283 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12285 (defcustom org-structure-template-alist
12286 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12287 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12288 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12289 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12290 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12291 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12292 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12293 ("L" "#+LaTeX: ")
12294 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12295 ("H" "#+HTML: ")
12296 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12297 ("A" "#+ASCII: ")
12298 ("i" "#+INDEX: ?")
12299 ("I" "#+INCLUDE: %file ?"))
12300 "Structure completion elements.
12301 This is a list of abbreviation keys and values. The value gets inserted
12302 if you type `<' followed by the key and then press the completion key,
12303 usually `TAB'. %file will be replaced by a file name after prompting
12304 for the file using completion. The cursor will be placed at the position
12305 of the `?` in the template.
12306 There are two templates for each key, the first uses the original Org syntax,
12307 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12308 the default when the /org-mtags.el/ module has been loaded. See also the
12309 variable `org-mtags-prefer-muse-templates'."
12310 :group 'org-completion
12311 :type '(repeat
12312 (list
12313 (string :tag "Key")
12314 (string :tag "Template")))
12315 :version "25.1"
12316 :package-version '(Org . "8.3"))
12318 (defun org-try-structure-completion ()
12319 "Try to complete a structure template before point.
12320 This looks for strings like \"<e\" on an otherwise empty line and
12321 expands them."
12322 (let ((l (buffer-substring (point-at-bol) (point)))
12324 (when (and (looking-at "[ \t]*$")
12325 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12326 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12327 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12328 (match-beginning 1)) a)
12329 t)))
12331 (defun org-complete-expand-structure-template (start cell)
12332 "Expand a structure template."
12333 (let ((rpl (nth 1 cell))
12334 (ind ""))
12335 (delete-region start (point))
12336 (when (string-match "\\`[ \t]*#\\+" rpl)
12337 (cond
12338 ((bolp))
12339 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12340 (setq ind (buffer-substring (point-at-bol) (point))))
12341 (t (newline))))
12342 (setq start (point))
12343 (if (string-match "%file" rpl)
12344 (setq rpl (replace-match
12345 (concat
12346 "\""
12347 (save-match-data
12348 (abbreviate-file-name (read-file-name "Include file: ")))
12349 "\"")
12350 t t rpl)))
12351 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12352 (concat "\n" ind)))
12353 (insert rpl)
12354 (if (re-search-backward "\\?" start t) (delete-char 1))))
12356 ;;;; TODO, DEADLINE, Comments
12358 (defun org-toggle-comment ()
12359 "Change the COMMENT state of an entry."
12360 (interactive)
12361 (save-excursion
12362 (org-back-to-heading)
12363 (looking-at org-complex-heading-regexp)
12364 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12365 (skip-chars-forward " \t")
12366 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12367 (if (org-in-commented-heading-p t)
12368 (delete-region (point)
12369 (progn (search-forward " " (line-end-position) 'move)
12370 (skip-chars-forward " \t")
12371 (point)))
12372 (insert org-comment-string)
12373 (unless (eolp) (insert " ")))))
12375 (defvar org-last-todo-state-is-todo nil
12376 "This is non-nil when the last TODO state change led to a TODO state.
12377 If the last change removed the TODO tag or switched to DONE, then
12378 this is nil.")
12380 (defvar org-setting-tags nil) ; dynamically skipped
12382 (defvar org-todo-setup-filter-hook nil
12383 "Hook for functions that pre-filter todo specs.
12384 Each function takes a todo spec and returns either nil or the spec
12385 transformed into canonical form." )
12387 (defvar org-todo-get-default-hook nil
12388 "Hook for functions that get a default item for todo.
12389 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12390 nil or a string to be used for the todo mark." )
12392 (defvar org-agenda-headline-snapshot-before-repeat)
12394 (defun org-current-effective-time ()
12395 "Return current time adjusted for `org-extend-today-until' variable."
12396 (let* ((ct (org-current-time))
12397 (dct (decode-time ct))
12398 (ct1
12399 (cond
12400 (org-use-last-clock-out-time-as-effective-time
12401 (or (org-clock-get-last-clock-out-time) ct))
12402 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12403 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12404 (t ct))))
12405 ct1))
12407 (defun org-todo-yesterday (&optional arg)
12408 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12409 (interactive "P")
12410 (if (eq major-mode 'org-agenda-mode)
12411 (apply 'org-agenda-todo-yesterday arg)
12412 (let* ((org-use-effective-time t)
12413 (hour (third (decode-time
12414 (org-current-time))))
12415 (org-extend-today-until (1+ hour)))
12416 (org-todo arg))))
12418 (defvar org-block-entry-blocking ""
12419 "First entry preventing the TODO state change.")
12421 (defun org-cancel-repeater ()
12422 "Cancel a repeater by setting its numeric value to zero."
12423 (interactive)
12424 (save-excursion
12425 (org-back-to-heading t)
12426 (let ((bound1 (point))
12427 (bound0 (save-excursion (outline-next-heading) (point))))
12428 (when (re-search-forward
12429 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12430 org-deadline-time-regexp "\\)\\|\\("
12431 org-ts-regexp "\\)")
12432 bound0 t)
12433 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12434 (replace-match "0" t nil nil 1))))))
12436 (defun org-todo (&optional arg)
12437 "Change the TODO state of an item.
12438 The state of an item is given by a keyword at the start of the heading,
12439 like
12440 *** TODO Write paper
12441 *** DONE Call mom
12443 The different keywords are specified in the variable `org-todo-keywords'.
12444 By default the available states are \"TODO\" and \"DONE\".
12445 So for this example: when the item starts with TODO, it is changed to DONE.
12446 When it starts with DONE, the DONE is removed. And when neither TODO nor
12447 DONE are present, add TODO at the beginning of the heading.
12449 With \\[universal-argument] prefix arg, use completion to determine the new \
12450 state.
12451 With numeric prefix arg, switch to that state.
12452 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12453 keywords (nextset).
12454 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12455 With a numeric prefix arg of 0, inhibit note taking for the change.
12456 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12458 When called through ELisp, arg is also interpreted in the following way:
12459 'none -> empty state
12460 \"\"(empty string) -> switch to empty state
12461 'done -> switch to DONE
12462 'nextset -> switch to the next set of keywords
12463 'previousset -> switch to the previous set of keywords
12464 \"WAITING\" -> switch to the specified keyword, but only if it
12465 really is a member of `org-todo-keywords'."
12466 (interactive "P")
12467 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12468 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12469 'region-start-level 'region))
12470 org-loop-over-headlines-in-active-region)
12471 (org-map-entries
12472 `(org-todo ,arg)
12473 org-loop-over-headlines-in-active-region
12474 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12475 (if (equal arg '(16)) (setq arg 'nextset))
12476 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12477 (let ((org-blocker-hook org-blocker-hook)
12478 commentp
12479 case-fold-search)
12480 (when (equal arg '(64))
12481 (setq arg nil org-blocker-hook nil))
12482 (when (and org-blocker-hook
12483 (or org-inhibit-blocking
12484 (org-entry-get nil "NOBLOCKING")))
12485 (setq org-blocker-hook nil))
12486 (save-excursion
12487 (catch 'exit
12488 (org-back-to-heading t)
12489 (when (org-in-commented-heading-p t)
12490 (org-toggle-comment)
12491 (setq commentp t))
12492 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12493 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12494 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12495 (let* ((match-data (match-data))
12496 (startpos (point-at-bol))
12497 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12498 (org-log-done org-log-done)
12499 (org-log-repeat org-log-repeat)
12500 (org-todo-log-states org-todo-log-states)
12501 (org-inhibit-logging
12502 (if (equal arg 0)
12503 (progn (setq arg nil) 'note) org-inhibit-logging))
12504 (this (match-string 1))
12505 (hl-pos (match-beginning 0))
12506 (head (org-get-todo-sequence-head this))
12507 (ass (assoc head org-todo-kwd-alist))
12508 (interpret (nth 1 ass))
12509 (done-word (nth 3 ass))
12510 (final-done-word (nth 4 ass))
12511 (org-last-state (or this ""))
12512 (completion-ignore-case t)
12513 (member (member this org-todo-keywords-1))
12514 (tail (cdr member))
12515 (org-state (cond
12516 ((and org-todo-key-trigger
12517 (or (and (equal arg '(4))
12518 (eq org-use-fast-todo-selection 'prefix))
12519 (and (not arg) org-use-fast-todo-selection
12520 (not (eq org-use-fast-todo-selection
12521 'prefix)))))
12522 ;; Use fast selection
12523 (org-fast-todo-selection))
12524 ((and (equal arg '(4))
12525 (or (not org-use-fast-todo-selection)
12526 (not org-todo-key-trigger)))
12527 ;; Read a state with completion
12528 (org-icompleting-read
12529 "State: " (mapcar 'list org-todo-keywords-1)
12530 nil t))
12531 ((eq arg 'right)
12532 (if this
12533 (if tail (car tail) nil)
12534 (car org-todo-keywords-1)))
12535 ((eq arg 'left)
12536 (if (equal member org-todo-keywords-1)
12538 (if this
12539 (nth (- (length org-todo-keywords-1)
12540 (length tail) 2)
12541 org-todo-keywords-1)
12542 (org-last org-todo-keywords-1))))
12543 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12544 (setq arg nil))) ; hack to fall back to cycling
12545 (arg
12546 ;; user or caller requests a specific state
12547 (cond
12548 ((equal arg "") nil)
12549 ((eq arg 'none) nil)
12550 ((eq arg 'done) (or done-word (car org-done-keywords)))
12551 ((eq arg 'nextset)
12552 (or (car (cdr (member head org-todo-heads)))
12553 (car org-todo-heads)))
12554 ((eq arg 'previousset)
12555 (let ((org-todo-heads (reverse org-todo-heads)))
12556 (or (car (cdr (member head org-todo-heads)))
12557 (car org-todo-heads))))
12558 ((car (member arg org-todo-keywords-1)))
12559 ((stringp arg)
12560 (user-error "State `%s' not valid in this file" arg))
12561 ((nth (1- (prefix-numeric-value arg))
12562 org-todo-keywords-1))))
12563 ((null member) (or head (car org-todo-keywords-1)))
12564 ((equal this final-done-word) nil) ;; -> make empty
12565 ((null tail) nil) ;; -> first entry
12566 ((memq interpret '(type priority))
12567 (if (eq this-command last-command)
12568 (car tail)
12569 (if (> (length tail) 0)
12570 (or done-word (car org-done-keywords))
12571 nil)))
12573 (car tail))))
12574 (org-state (or
12575 (run-hook-with-args-until-success
12576 'org-todo-get-default-hook org-state org-last-state)
12577 org-state))
12578 (next (if org-state (concat " " org-state " ") " "))
12579 (change-plist (list :type 'todo-state-change :from this :to org-state
12580 :position startpos))
12581 dolog now-done-p)
12582 (when org-blocker-hook
12583 (setq org-last-todo-state-is-todo
12584 (not (member this org-done-keywords)))
12585 (unless (save-excursion
12586 (save-match-data
12587 (org-with-wide-buffer
12588 (run-hook-with-args-until-failure
12589 'org-blocker-hook change-plist))))
12590 (if (org-called-interactively-p 'interactive)
12591 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12592 this org-state org-block-entry-blocking)
12593 ;; fail silently
12594 (message "TODO state change from %s to %s blocked (by \"%s\")"
12595 this org-state org-block-entry-blocking)
12596 (throw 'exit nil))))
12597 (store-match-data match-data)
12598 (replace-match next t t)
12599 (cond ((equal this org-state)
12600 (message "TODO state was already %s" (org-trim next)))
12601 ((pos-visible-in-window-p hl-pos)
12602 (message "TODO state changed to %s" (org-trim next))))
12603 (unless head
12604 (setq head (org-get-todo-sequence-head org-state)
12605 ass (assoc head org-todo-kwd-alist)
12606 interpret (nth 1 ass)
12607 done-word (nth 3 ass)
12608 final-done-word (nth 4 ass)))
12609 (when (memq arg '(nextset previousset))
12610 (message "Keyword-Set %d/%d: %s"
12611 (- (length org-todo-sets) -1
12612 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12613 (length org-todo-sets)
12614 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12615 (setq org-last-todo-state-is-todo
12616 (not (member org-state org-done-keywords)))
12617 (setq now-done-p (and (member org-state org-done-keywords)
12618 (not (member this org-done-keywords))))
12619 (and logging (org-local-logging logging))
12620 (when (and (or org-todo-log-states org-log-done)
12621 (not (eq org-inhibit-logging t))
12622 (not (memq arg '(nextset previousset))))
12623 ;; we need to look at recording a time and note
12624 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12625 (nth 2 (assoc this org-todo-log-states))))
12626 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12627 (setq dolog 'time))
12628 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12629 (and org-state
12630 (member org-state org-not-done-keywords)
12631 (not (member this org-not-done-keywords))))
12632 ;; This is now a todo state and was not one before
12633 ;; If there was a CLOSED time stamp, get rid of it.
12634 (org-add-planning-info nil nil 'closed))
12635 (when (and now-done-p org-log-done)
12636 ;; It is now done, and it was not done before
12637 (org-add-planning-info 'closed (org-current-effective-time))
12638 (if (and (not dolog) (eq 'note org-log-done))
12639 (org-add-log-setup 'done org-state this 'findpos 'note)))
12640 (when (and org-state dolog)
12641 ;; This is a non-nil state, and we need to log it
12642 (org-add-log-setup 'state org-state this 'findpos dolog)))
12643 ;; Fixup tag positioning
12644 (org-todo-trigger-tag-changes org-state)
12645 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12646 (when org-provide-todo-statistics
12647 (org-update-parent-todo-statistics))
12648 (run-hooks 'org-after-todo-state-change-hook)
12649 (if (and arg (not (member org-state org-done-keywords)))
12650 (setq head (org-get-todo-sequence-head org-state)))
12651 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12652 ;; Do we need to trigger a repeat?
12653 (when now-done-p
12654 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12655 ;; This is for the agenda, take a snapshot of the headline.
12656 (save-match-data
12657 (setq org-agenda-headline-snapshot-before-repeat
12658 (org-get-heading))))
12659 (org-auto-repeat-maybe org-state))
12660 ;; Fixup cursor location if close to the keyword
12661 (if (and (outline-on-heading-p)
12662 (not (bolp))
12663 (save-excursion (beginning-of-line 1)
12664 (looking-at org-todo-line-regexp))
12665 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12666 (progn
12667 (goto-char (or (match-end 2) (match-end 1)))
12668 (and (looking-at " ") (just-one-space))))
12669 (when org-trigger-hook
12670 (save-excursion
12671 (run-hook-with-args 'org-trigger-hook change-plist)))
12672 (when commentp (org-toggle-comment))))))))
12674 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12675 "Block turning an entry into a TODO, using the hierarchy.
12676 This checks whether the current task should be blocked from state
12677 changes. Such blocking occurs when:
12679 1. The task has children which are not all in a completed state.
12681 2. A task has a parent with the property :ORDERED:, and there
12682 are siblings prior to the current task with incomplete
12683 status.
12685 3. The parent of the task is blocked because it has siblings that should
12686 be done first, or is child of a block grandparent TODO entry."
12688 (if (not org-enforce-todo-dependencies)
12689 t ; if locally turned off don't block
12690 (catch 'dont-block
12691 ;; If this is not a todo state change, or if this entry is already DONE,
12692 ;; do not block
12693 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12694 (member (plist-get change-plist :from)
12695 (cons 'done org-done-keywords))
12696 (member (plist-get change-plist :to)
12697 (cons 'todo org-not-done-keywords))
12698 (not (plist-get change-plist :to)))
12699 (throw 'dont-block t))
12700 ;; If this task has children, and any are undone, it's blocked
12701 (save-excursion
12702 (org-back-to-heading t)
12703 (let ((this-level (funcall outline-level)))
12704 (outline-next-heading)
12705 (let ((child-level (funcall outline-level)))
12706 (while (and (not (eobp))
12707 (> child-level this-level))
12708 ;; this todo has children, check whether they are all
12709 ;; completed
12710 (if (and (not (org-entry-is-done-p))
12711 (org-entry-is-todo-p))
12712 (progn (setq org-block-entry-blocking (org-get-heading))
12713 (throw 'dont-block nil)))
12714 (outline-next-heading)
12715 (setq child-level (funcall outline-level))))))
12716 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12717 ;; any previous siblings are undone, it's blocked
12718 (save-excursion
12719 (org-back-to-heading t)
12720 (let* ((pos (point))
12721 (parent-pos (and (org-up-heading-safe) (point))))
12722 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12723 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12724 (forward-line 1)
12725 (re-search-forward org-not-done-heading-regexp pos t))
12726 (setq org-block-entry-blocking (match-string 0))
12727 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12728 ;; Search further up the hierarchy, to see if an ancestor is blocked
12729 (while t
12730 (goto-char parent-pos)
12731 (if (not (looking-at org-not-done-heading-regexp))
12732 (throw 'dont-block t)) ; do not block, parent is not a TODO
12733 (setq pos (point))
12734 (setq parent-pos (and (org-up-heading-safe) (point)))
12735 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12736 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12737 (forward-line 1)
12738 (re-search-forward org-not-done-heading-regexp pos t)
12739 (setq org-block-entry-blocking (org-get-heading)))
12740 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12742 (defcustom org-track-ordered-property-with-tag nil
12743 "Should the ORDERED property also be shown as a tag?
12744 The ORDERED property decides if an entry should require subtasks to be
12745 completed in sequence. Since a property is not very visible, setting
12746 this option means that toggling the ORDERED property with the command
12747 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12748 not relevant for the behavior, but it makes things more visible.
12750 Note that toggling the tag with tags commands will not change the property
12751 and therefore not influence behavior!
12753 This can be t, meaning the tag ORDERED should be used, It can also be a
12754 string to select a different tag for this task."
12755 :group 'org-todo
12756 :type '(choice
12757 (const :tag "No tracking" nil)
12758 (const :tag "Track with ORDERED tag" t)
12759 (string :tag "Use other tag")))
12761 (defun org-toggle-ordered-property ()
12762 "Toggle the ORDERED property of the current entry.
12763 For better visibility, you can track the value of this property with a tag.
12764 See variable `org-track-ordered-property-with-tag'."
12765 (interactive)
12766 (let* ((t1 org-track-ordered-property-with-tag)
12767 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12768 (save-excursion
12769 (org-back-to-heading)
12770 (if (org-entry-get nil "ORDERED")
12771 (progn
12772 (org-delete-property "ORDERED")
12773 (and tag (org-toggle-tag tag 'off))
12774 (message "Subtasks can be completed in arbitrary order"))
12775 (org-entry-put nil "ORDERED" "t")
12776 (and tag (org-toggle-tag tag 'on))
12777 (message "Subtasks must be completed in sequence")))))
12779 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12780 (defun org-block-todo-from-checkboxes (change-plist)
12781 "Block turning an entry into a TODO, using checkboxes.
12782 This checks whether the current task should be blocked from state
12783 changes because there are unchecked boxes in this entry."
12784 (if (not org-enforce-todo-checkbox-dependencies)
12785 t ; if locally turned off don't block
12786 (catch 'dont-block
12787 ;; If this is not a todo state change, or if this entry is already DONE,
12788 ;; do not block
12789 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12790 (member (plist-get change-plist :from)
12791 (cons 'done org-done-keywords))
12792 (member (plist-get change-plist :to)
12793 (cons 'todo org-not-done-keywords))
12794 (not (plist-get change-plist :to)))
12795 (throw 'dont-block t))
12796 ;; If this task has checkboxes that are not checked, it's blocked
12797 (save-excursion
12798 (org-back-to-heading t)
12799 (let ((beg (point)) end)
12800 (outline-next-heading)
12801 (setq end (point))
12802 (goto-char beg)
12803 (if (org-list-search-forward
12804 (concat (org-item-beginning-re)
12805 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12806 "\\[[- ]\\]")
12807 end t)
12808 (progn
12809 (if (boundp 'org-blocked-by-checkboxes)
12810 (setq org-blocked-by-checkboxes t))
12811 (throw 'dont-block nil)))))
12812 t))) ; do not block
12814 (defun org-entry-blocked-p ()
12815 "Is the current entry blocked?"
12816 (org-with-silent-modifications
12817 (if (org-entry-get nil "NOBLOCKING")
12818 nil ;; Never block this entry
12819 (not (run-hook-with-args-until-failure
12820 'org-blocker-hook
12821 (list :type 'todo-state-change
12822 :position (point)
12823 :from 'todo
12824 :to 'done))))))
12826 (defun org-update-statistics-cookies (all)
12827 "Update the statistics cookie, either from TODO or from checkboxes.
12828 This should be called with the cursor in a line with a statistics cookie."
12829 (interactive "P")
12830 (if all
12831 (progn
12832 (org-update-checkbox-count 'all)
12833 (org-map-entries 'org-update-parent-todo-statistics))
12834 (if (not (org-at-heading-p))
12835 (org-update-checkbox-count)
12836 (let ((pos (point-marker))
12837 end l1 l2)
12838 (ignore-errors (org-back-to-heading t))
12839 (if (not (org-at-heading-p))
12840 (org-update-checkbox-count)
12841 (setq l1 (org-outline-level))
12842 (setq end (save-excursion
12843 (outline-next-heading)
12844 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12845 (point)))
12846 (if (and (save-excursion
12847 (re-search-forward
12848 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12849 (not (save-excursion (re-search-forward
12850 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12851 (org-update-checkbox-count)
12852 (if (and l2 (> l2 l1))
12853 (progn
12854 (goto-char end)
12855 (org-update-parent-todo-statistics))
12856 (goto-char pos)
12857 (beginning-of-line 1)
12858 (while (re-search-forward
12859 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12860 (point-at-eol) t)
12861 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12862 (goto-char pos)
12863 (move-marker pos nil)))))
12865 (defvar org-entry-property-inherited-from) ;; defined below
12866 (defun org-update-parent-todo-statistics ()
12867 "Update any statistics cookie in the parent of the current headline.
12868 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12869 the entire subtree and this will travel up the hierarchy and update
12870 statistics everywhere."
12871 (let* ((prop (save-excursion (org-up-heading-safe)
12872 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12873 (recursive (or (not org-hierarchical-todo-statistics)
12874 (and prop (string-match "\\<recursive\\>" prop))))
12875 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12877 (first t)
12878 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12879 level ltoggle l1 new ndel
12880 (cnt-all 0) (cnt-done 0) is-percent kwd
12881 checkbox-beg ov ovs ove cookie-present)
12882 (catch 'exit
12883 (save-excursion
12884 (beginning-of-line 1)
12885 (setq ltoggle (funcall outline-level))
12886 ;; Three situations are to consider:
12888 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12889 ;; to the top-level ancestor on the headline;
12891 ;; 2. If parent has "recursive" property, repeat up to the
12892 ;; headline setting that property, taking inheritance into
12893 ;; account;
12895 ;; 3. Else, move up to direct parent and proceed only once.
12896 (while (and (setq level (org-up-heading-safe))
12897 (or recursive first)
12898 (>= (point) lim))
12899 (setq first nil cookie-present nil)
12900 (unless (and level
12901 (not (string-match
12902 "\\<checkbox\\>"
12903 (downcase (or (org-entry-get nil "COOKIE_DATA")
12904 "")))))
12905 (throw 'exit nil))
12906 (while (re-search-forward box-re (point-at-eol) t)
12907 (setq cnt-all 0 cnt-done 0 cookie-present t)
12908 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12909 (save-match-data
12910 (unless (outline-next-heading) (throw 'exit nil))
12911 (while (and (looking-at org-complex-heading-regexp)
12912 (> (setq l1 (length (match-string 1))) level))
12913 (setq kwd (and (or recursive (= l1 ltoggle))
12914 (match-string 2)))
12915 (if (or (eq org-provide-todo-statistics 'all-headlines)
12916 (and (eq org-provide-todo-statistics t)
12917 (or (member kwd org-done-keywords)))
12918 (and (listp org-provide-todo-statistics)
12919 (stringp (car org-provide-todo-statistics))
12920 (or (member kwd org-provide-todo-statistics)
12921 (member kwd org-done-keywords)))
12922 (and (listp org-provide-todo-statistics)
12923 (listp (car org-provide-todo-statistics))
12924 (or (member kwd (car org-provide-todo-statistics))
12925 (and (member kwd org-done-keywords)
12926 (member kwd (cadr org-provide-todo-statistics))))))
12927 (setq cnt-all (1+ cnt-all))
12928 (if (eq org-provide-todo-statistics t)
12929 (and kwd (setq cnt-all (1+ cnt-all)))))
12930 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12931 (member kwd org-done-keywords))
12932 (and (listp org-provide-todo-statistics)
12933 (listp (car org-provide-todo-statistics))
12934 (member kwd org-done-keywords)
12935 (member kwd (cadr org-provide-todo-statistics)))
12936 (and (listp org-provide-todo-statistics)
12937 (stringp (car org-provide-todo-statistics))
12938 (member kwd org-done-keywords)))
12939 (setq cnt-done (1+ cnt-done)))
12940 (outline-next-heading)))
12941 (setq new
12942 (if is-percent
12943 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12944 (format "[%d/%d]" cnt-done cnt-all))
12945 ndel (- (match-end 0) checkbox-beg))
12946 ;; handle overlays when updating cookie from column view
12947 (when (setq ov (car (overlays-at checkbox-beg)))
12948 (setq ovs (overlay-start ov) ove (overlay-end ov))
12949 (delete-overlay ov))
12950 (goto-char checkbox-beg)
12951 (insert new)
12952 (delete-region (point) (+ (point) ndel))
12953 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12954 (when ov (move-overlay ov ovs ove)))
12955 (when cookie-present
12956 (run-hook-with-args 'org-after-todo-statistics-hook
12957 cnt-done (- cnt-all cnt-done))))))
12958 (run-hooks 'org-todo-statistics-hook)))
12960 (defvar org-after-todo-statistics-hook nil
12961 "Hook that is called after a TODO statistics cookie has been updated.
12962 Each function is called with two arguments: the number of not-done entries
12963 and the number of done entries.
12965 For example, the following function, when added to this hook, will switch
12966 an entry to DONE when all children are done, and back to TODO when new
12967 entries are set to a TODO status. Note that this hook is only called
12968 when there is a statistics cookie in the headline!
12970 (defun org-summary-todo (n-done n-not-done)
12971 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12972 (let (org-log-done org-log-states) ; turn off logging
12973 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12976 (defvar org-todo-statistics-hook nil
12977 "Hook that is run whenever Org thinks TODO statistics should be updated.
12978 This hook runs even if there is no statistics cookie present, in which case
12979 `org-after-todo-statistics-hook' would not run.")
12981 (defun org-todo-trigger-tag-changes (state)
12982 "Apply the changes defined in `org-todo-state-tags-triggers'."
12983 (let ((l org-todo-state-tags-triggers)
12984 changes)
12985 (when (or (not state) (equal state ""))
12986 (setq changes (append changes (cdr (assoc "" l)))))
12987 (when (and (stringp state) (> (length state) 0))
12988 (setq changes (append changes (cdr (assoc state l)))))
12989 (when (member state org-not-done-keywords)
12990 (setq changes (append changes (cdr (assoc 'todo l)))))
12991 (when (member state org-done-keywords)
12992 (setq changes (append changes (cdr (assoc 'done l)))))
12993 (dolist (c changes)
12994 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12996 (defun org-local-logging (value)
12997 "Get logging settings from a property VALUE."
12998 (let* (words w a)
12999 ;; directly set the variables, they are already local.
13000 (setq org-log-done nil
13001 org-log-repeat nil
13002 org-todo-log-states nil)
13003 (setq words (org-split-string value))
13004 (while (setq w (pop words))
13005 (cond
13006 ((setq a (assoc w org-startup-options))
13007 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13008 (set (nth 1 a) (nth 2 a))))
13009 ((setq a (org-extract-log-state-settings w))
13010 (and (member (car a) org-todo-keywords-1)
13011 (push a org-todo-log-states)))))))
13013 (defun org-get-todo-sequence-head (kwd)
13014 "Return the head of the TODO sequence to which KWD belongs.
13015 If KWD is not set, check if there is a text property remembering the
13016 right sequence."
13017 (let (p)
13018 (cond
13019 ((not kwd)
13020 (or (get-text-property (point-at-bol) 'org-todo-head)
13021 (progn
13022 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13023 nil (point-at-eol)))
13024 (get-text-property p 'org-todo-head))))
13025 ((not (member kwd org-todo-keywords-1))
13026 (car org-todo-keywords-1))
13027 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13029 (defun org-fast-todo-selection ()
13030 "Fast TODO keyword selection with single keys.
13031 Returns the new TODO keyword, or nil if no state change should occur."
13032 (let* ((fulltable org-todo-key-alist)
13033 (done-keywords org-done-keywords) ;; needed for the faces.
13034 (maxlen (apply 'max (mapcar
13035 (lambda (x)
13036 (if (stringp (car x)) (string-width (car x)) 0))
13037 fulltable)))
13038 (expert nil)
13039 (fwidth (+ maxlen 3 1 3))
13040 (ncol (/ (- (window-width) 4) fwidth))
13041 tg cnt e c tbl
13042 groups ingroup)
13043 (save-excursion
13044 (save-window-excursion
13045 (if expert
13046 (set-buffer (get-buffer-create " *Org todo*"))
13047 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13048 (erase-buffer)
13049 (org-set-local 'org-done-keywords done-keywords)
13050 (setq tbl fulltable cnt 0)
13051 (while (setq e (pop tbl))
13052 (cond
13053 ((equal e '(:startgroup))
13054 (push '() groups) (setq ingroup t)
13055 (when (not (= cnt 0))
13056 (setq cnt 0)
13057 (insert "\n"))
13058 (insert "{ "))
13059 ((equal e '(:endgroup))
13060 (setq ingroup nil cnt 0)
13061 (insert "}\n"))
13062 ((equal e '(:newline))
13063 (when (not (= cnt 0))
13064 (setq cnt 0)
13065 (insert "\n")
13066 (setq e (car tbl))
13067 (while (equal (car tbl) '(:newline))
13068 (insert "\n")
13069 (setq tbl (cdr tbl)))))
13071 (setq tg (car e) c (cdr e))
13072 (if ingroup (push tg (car groups)))
13073 (setq tg (org-add-props tg nil 'face
13074 (org-get-todo-face tg)))
13075 (if (and (= cnt 0) (not ingroup)) (insert " "))
13076 (insert "[" c "] " tg (make-string
13077 (- fwidth 4 (length tg)) ?\ ))
13078 (when (= (setq cnt (1+ cnt)) ncol)
13079 (insert "\n")
13080 (if ingroup (insert " "))
13081 (setq cnt 0)))))
13082 (insert "\n")
13083 (goto-char (point-min))
13084 (if (not expert) (org-fit-window-to-buffer))
13085 (message "[a-z..]:Set [SPC]:clear")
13086 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13087 (cond
13088 ((or (= c ?\C-g)
13089 (and (= c ?q) (not (rassoc c fulltable))))
13090 (setq quit-flag t))
13091 ((= c ?\ ) nil)
13092 ((setq e (rassoc c fulltable) tg (car e))
13094 (t (setq quit-flag t)))))))
13096 (defun org-entry-is-todo-p ()
13097 (member (org-get-todo-state) org-not-done-keywords))
13099 (defun org-entry-is-done-p ()
13100 (member (org-get-todo-state) org-done-keywords))
13102 (defun org-get-todo-state ()
13103 "Return the TODO keyword of the current subtree."
13104 (save-excursion
13105 (org-back-to-heading t)
13106 (and (looking-at org-todo-line-regexp)
13107 (match-end 2)
13108 (match-string 2))))
13110 (defun org-at-date-range-p (&optional inactive-ok)
13111 "Is the cursor inside a date range?"
13112 (interactive)
13113 (save-excursion
13114 (catch 'exit
13115 (let ((pos (point)))
13116 (skip-chars-backward "^[<\r\n")
13117 (skip-chars-backward "<[")
13118 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13119 (>= (match-end 0) pos)
13120 (throw 'exit t))
13121 (skip-chars-backward "^<[\r\n")
13122 (skip-chars-backward "<[")
13123 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13124 (>= (match-end 0) pos)
13125 (throw 'exit t)))
13126 nil)))
13128 (defun org-get-repeat (&optional tagline)
13129 "Check if there is a deadline/schedule with repeater in this entry."
13130 (save-match-data
13131 (save-excursion
13132 (org-back-to-heading t)
13133 (and (re-search-forward (if tagline
13134 (concat tagline "\\s-*" org-repeat-re)
13135 org-repeat-re)
13136 (org-entry-end-position) t)
13137 (match-string-no-properties 1)))))
13139 (defvar org-last-changed-timestamp)
13140 (defvar org-last-inserted-timestamp)
13141 (defvar org-log-post-message)
13142 (defvar org-log-note-purpose)
13143 (defvar org-log-note-how nil)
13144 (defvar org-log-note-extra)
13145 (defun org-auto-repeat-maybe (done-word)
13146 "Check if the current headline contains a repeated deadline/schedule.
13147 If yes, set TODO state back to what it was and change the base date
13148 of repeating deadline/scheduled time stamps to new date.
13149 This function is run automatically after each state change to a DONE state."
13150 ;; last-state is dynamically scoped into this function
13151 (let* ((repeat (org-get-repeat))
13152 (aa (assoc org-last-state org-todo-kwd-alist))
13153 (interpret (nth 1 aa))
13154 (head (nth 2 aa))
13155 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13156 (msg "Entry repeats: ")
13157 (org-log-done nil)
13158 (org-todo-log-states nil)
13159 re type n what ts time to-state)
13160 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13161 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13162 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13163 org-todo-repeat-to-state))
13164 (unless (and to-state (member to-state org-todo-keywords-1))
13165 (setq to-state (if (eq interpret 'type) org-last-state head)))
13166 (org-todo to-state)
13167 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13168 (org-entry-put nil "LAST_REPEAT" (format-time-string
13169 (org-time-stamp-format t t))))
13170 (when org-log-repeat
13171 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13172 (memq 'org-add-log-note post-command-hook))
13173 ;; OK, we are already setup for some record
13174 (if (eq org-log-repeat 'note)
13175 ;; make sure we take a note, not only a time stamp
13176 (setq org-log-note-how 'note))
13177 ;; Set up for taking a record
13178 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13179 org-last-state
13180 'findpos org-log-repeat)))
13181 (org-back-to-heading t)
13182 (org-add-planning-info nil nil 'closed)
13183 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13184 org-deadline-time-regexp "\\)\\|\\("
13185 org-ts-regexp "\\)"))
13186 (while (re-search-forward
13187 re (save-excursion (outline-next-heading) (point)) t)
13188 (setq type (if (match-end 1) org-scheduled-string
13189 (if (match-end 3) org-deadline-string "Plain:"))
13190 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13191 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13192 (setq n (string-to-number (match-string 2 ts))
13193 what (match-string 3 ts))
13194 (if (equal what "w") (setq n (* n 7) what "d"))
13195 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13196 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13197 ;; Preparation, see if we need to modify the start date for the change
13198 (when (match-end 1)
13199 (setq time (save-match-data (org-time-string-to-time ts)))
13200 (cond
13201 ((equal (match-string 1 ts) ".")
13202 ;; Shift starting date to today
13203 (org-timestamp-change
13204 (- (org-today) (time-to-days time))
13205 'day))
13206 ((equal (match-string 1 ts) "+")
13207 (let ((nshiftmax 10) (nshift 0))
13208 (while (or (= nshift 0)
13209 (<= (time-to-days time)
13210 (time-to-days (current-time))))
13211 (when (= (incf nshift) nshiftmax)
13212 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13213 (user-error "Abort")))
13214 (org-timestamp-change n (cdr (assoc what whata)))
13215 (org-at-timestamp-p t)
13216 (setq ts (match-string 1))
13217 (setq time (save-match-data (org-time-string-to-time ts)))))
13218 (org-timestamp-change (- n) (cdr (assoc what whata)))
13219 ;; rematch, so that we have everything in place for the real shift
13220 (org-at-timestamp-p t)
13221 (setq ts (match-string 1))
13222 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13223 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13224 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13225 (setq org-log-post-message msg)
13226 (message "%s" msg))))
13228 (defun org-show-todo-tree (arg)
13229 "Make a compact tree which shows all headlines marked with TODO.
13230 The tree will show the lines where the regexp matches, and all higher
13231 headlines above the match.
13232 With a \\[universal-argument] prefix, prompt for a regexp to match.
13233 With a numeric prefix N, construct a sparse tree for the Nth element
13234 of `org-todo-keywords-1'."
13235 (interactive "P")
13236 (let ((case-fold-search nil)
13237 (kwd-re
13238 (cond ((null arg) org-not-done-regexp)
13239 ((equal arg '(4))
13240 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13241 (mapcar 'list org-todo-keywords-1))))
13242 (concat "\\("
13243 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13244 "\\)\\>")))
13245 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13246 (regexp-quote (nth (1- (prefix-numeric-value arg))
13247 org-todo-keywords-1)))
13248 (t (user-error "Invalid prefix argument: %s" arg)))))
13249 (message "%d TODO entries found"
13250 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13252 (defun org-deadline (arg &optional time)
13253 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13254 With one universal prefix argument, remove any deadline from the item.
13255 With two universal prefix arguments, prompt for a warning delay.
13256 With argument TIME, set the deadline at the corresponding date. TIME
13257 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13258 (interactive "P")
13259 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13260 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13261 'region-start-level 'region))
13262 org-loop-over-headlines-in-active-region)
13263 (org-map-entries
13264 `(org-deadline ',arg ,time)
13265 org-loop-over-headlines-in-active-region
13266 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13267 (let* ((old-date (org-entry-get nil "DEADLINE"))
13268 (old-date-time (if old-date (org-time-string-to-time old-date)))
13269 (repeater (and old-date
13270 (string-match
13271 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13272 old-date)
13273 (match-string 1 old-date))))
13274 (cond
13275 ((equal arg '(4))
13276 (when (and old-date org-log-redeadline)
13277 (org-add-log-setup 'deldeadline nil old-date 'findpos
13278 org-log-redeadline))
13279 (org-remove-timestamp-with-keyword org-deadline-string)
13280 (message "Item no longer has a deadline."))
13281 ((equal arg '(16))
13282 (save-excursion
13283 (org-back-to-heading t)
13284 (if (re-search-forward
13285 org-deadline-time-regexp
13286 (save-excursion (outline-next-heading) (point)) t)
13287 (let* ((rpl0 (match-string 1))
13288 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13289 (replace-match
13290 (concat org-deadline-string
13291 " <" rpl
13292 (format " -%dd"
13293 (abs
13294 (- (time-to-days
13295 (save-match-data
13296 (org-read-date nil t nil "Warn starting from" old-date-time)))
13297 (time-to-days old-date-time))))
13298 ">") t t))
13299 (user-error "No deadline information to update"))))
13301 (org-add-planning-info 'deadline time 'closed)
13302 (when (and old-date org-log-redeadline
13303 (not (equal old-date
13304 (substring org-last-inserted-timestamp 1 -1))))
13305 (org-add-log-setup 'redeadline nil old-date 'findpos
13306 org-log-redeadline))
13307 (when repeater
13308 (save-excursion
13309 (org-back-to-heading t)
13310 (when (re-search-forward (concat org-deadline-string " "
13311 org-last-inserted-timestamp)
13312 (save-excursion
13313 (outline-next-heading) (point)) t)
13314 (goto-char (1- (match-end 0)))
13315 (insert " " repeater)
13316 (setq org-last-inserted-timestamp
13317 (concat (substring org-last-inserted-timestamp 0 -1)
13318 " " repeater
13319 (substring org-last-inserted-timestamp -1))))))
13320 (message "Deadline on %s" org-last-inserted-timestamp))))))
13322 (defun org-schedule (arg &optional time)
13323 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13324 With one universal prefix argument, remove any scheduling date from the item.
13325 With two universal prefix arguments, prompt for a delay cookie.
13326 With argument TIME, scheduled at the corresponding date. TIME can
13327 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13328 (interactive "P")
13329 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13330 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13331 'region-start-level 'region))
13332 org-loop-over-headlines-in-active-region)
13333 (org-map-entries
13334 `(org-schedule ',arg ,time)
13335 org-loop-over-headlines-in-active-region
13336 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13337 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13338 (old-date-time (if old-date (org-time-string-to-time old-date)))
13339 (repeater (and old-date
13340 (string-match
13341 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13342 old-date)
13343 (match-string 1 old-date))))
13344 (cond
13345 ((equal arg '(4))
13346 (progn
13347 (when (and old-date org-log-reschedule)
13348 (org-add-log-setup 'delschedule nil old-date 'findpos
13349 org-log-reschedule))
13350 (org-remove-timestamp-with-keyword org-scheduled-string)
13351 (message "Item is no longer scheduled.")))
13352 ((equal arg '(16))
13353 (save-excursion
13354 (org-back-to-heading t)
13355 (if (re-search-forward
13356 org-scheduled-time-regexp
13357 (save-excursion (outline-next-heading) (point)) t)
13358 (let* ((rpl0 (match-string 1))
13359 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13360 (replace-match
13361 (concat org-scheduled-string
13362 " <" rpl
13363 (format " -%dd"
13364 (abs
13365 (- (time-to-days
13366 (save-match-data
13367 (org-read-date nil t nil "Delay until" old-date-time)))
13368 (time-to-days old-date-time))))
13369 ">") t t))
13370 (user-error "No scheduled information to update"))))
13372 (org-add-planning-info 'scheduled time 'closed)
13373 (when (and old-date org-log-reschedule
13374 (not (equal old-date
13375 (substring org-last-inserted-timestamp 1 -1))))
13376 (org-add-log-setup 'reschedule nil old-date 'findpos
13377 org-log-reschedule))
13378 (when repeater
13379 (save-excursion
13380 (org-back-to-heading t)
13381 (when (re-search-forward (concat org-scheduled-string " "
13382 org-last-inserted-timestamp)
13383 (save-excursion
13384 (outline-next-heading) (point)) t)
13385 (goto-char (1- (match-end 0)))
13386 (insert " " repeater)
13387 (setq org-last-inserted-timestamp
13388 (concat (substring org-last-inserted-timestamp 0 -1)
13389 " " repeater
13390 (substring org-last-inserted-timestamp -1))))))
13391 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13393 (defun org-get-scheduled-time (pom &optional inherit)
13394 "Get the scheduled time as a time tuple, of a format suitable
13395 for calling org-schedule with, or if there is no scheduling,
13396 returns nil."
13397 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13398 (when time
13399 (apply 'encode-time (org-parse-time-string time)))))
13401 (defun org-get-deadline-time (pom &optional inherit)
13402 "Get the deadline as a time tuple, of a format suitable for
13403 calling org-deadline with, or if there is no scheduling, returns
13404 nil."
13405 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13406 (when time
13407 (apply 'encode-time (org-parse-time-string time)))))
13409 (defun org-remove-timestamp-with-keyword (keyword)
13410 "Remove all time stamps with KEYWORD in the current entry."
13411 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13412 beg)
13413 (save-excursion
13414 (org-back-to-heading t)
13415 (setq beg (point))
13416 (outline-next-heading)
13417 (while (re-search-backward re beg t)
13418 (replace-match "")
13419 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13420 (equal (char-before) ?\ ))
13421 (backward-delete-char 1)
13422 (if (string-match "^[ \t]*$" (buffer-substring
13423 (point-at-bol) (point-at-eol)))
13424 (delete-region (point-at-bol)
13425 (min (point-max) (1+ (point-at-eol))))))))))
13427 (defvar org-time-was-given) ; dynamically scoped parameter
13428 (defvar org-end-time-was-given) ; dynamically scoped parameter
13430 (defun org-at-planning-p ()
13431 "Non-nil when point is on a planning info line."
13432 ;; This is as accurate and faster than `org-element-at-point' since
13433 ;; planning info location is fixed in the section.
13434 (org-with-wide-buffer
13435 (beginning-of-line)
13436 (and (org-looking-at-p org-planning-line-re)
13437 (eq (point)
13438 (ignore-errors
13439 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13440 (org-back-to-heading t)
13441 (org-with-limited-levels (org-back-to-heading t)))
13442 (line-beginning-position 2))))))
13444 (defun org-add-planning-info (what &optional time &rest remove)
13445 "Insert new timestamp with keyword in the planning line.
13446 WHAT indicates what kind of time stamp to add. It is a symbol
13447 among `closed', `deadline', `scheduled' and nil. TIME indicates
13448 the time to use. If none is given, the user is prompted for
13449 a date. REMOVE indicates what kind of entries to remove. An old
13450 WHAT entry will also be removed."
13451 (let (org-time-was-given org-end-time-was-given default-time default-input)
13452 (catch 'exit
13453 (when (and (memq what '(scheduled deadline))
13454 (or (not time)
13455 (and (stringp time)
13456 (string-match "^[-+]+[0-9]" time))))
13457 ;; Try to get a default date/time from existing timestamp
13458 (save-excursion
13459 (org-back-to-heading t)
13460 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13461 (when (re-search-forward (if (eq what 'scheduled)
13462 org-scheduled-time-regexp
13463 org-deadline-time-regexp)
13464 end t)
13465 (setq ts (match-string 1)
13466 default-time (apply 'encode-time (org-parse-time-string ts))
13467 default-input (and ts (org-get-compact-tod ts)))))))
13468 (when what
13469 (setq time
13470 (if (stringp time)
13471 ;; This is a string (relative or absolute), set
13472 ;; proper date.
13473 (apply #'encode-time
13474 (org-read-date-analyze
13475 time default-time (decode-time default-time)))
13476 ;; If necessary, get the time from the user
13477 (or time (org-read-date nil 'to-time nil nil
13478 default-time default-input)))))
13480 (org-with-wide-buffer
13481 (org-back-to-heading t)
13482 (forward-line)
13483 (unless (bolp) (insert "\n"))
13484 (cond ((org-looking-at-p org-planning-line-re)
13485 ;; Move to current indentation.
13486 (skip-chars-forward " \t")
13487 ;; Check if we have to remove something.
13488 (dolist (type (if what (cons what remove) remove))
13489 (when (save-excursion
13490 (re-search-forward
13491 (case type
13492 (closed org-closed-time-regexp)
13493 (deadline org-deadline-time-regexp)
13494 (scheduled org-scheduled-time-regexp)
13495 (otherwise (error "Invalid planning type: %s" type)))
13496 (line-end-position) t))
13497 (replace-match "")
13498 (when (looking-at "--+<[^>]+>") (replace-match ""))
13499 (when (and (not what) (eq type 'closed))
13500 (save-excursion
13501 (beginning-of-line)
13502 (if (looking-at "[ \t]*$")
13503 (delete-region (point) (1+ (point-at-eol)))))))
13504 ;; Remove leading white spaces.
13505 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13506 ((not what) (throw 'exit nil)) ; Nothing to do.
13507 (t (insert-before-markers "\n")
13508 (backward-char 1)
13509 (when org-adapt-indentation
13510 (org-indent-to-column (1+ (org-outline-level))))))
13511 (when what
13512 ;; Insert planning keyword.
13513 (insert (case what
13514 (closed org-closed-string)
13515 (deadline org-deadline-string)
13516 (scheduled org-scheduled-string)
13517 (otherwise (error "Invalid planning type: %s" what)))
13518 " ")
13519 ;; Insert associated timestamp.
13520 (let ((ts (org-insert-time-stamp
13521 time
13522 (or org-time-was-given
13523 (and (eq what 'closed) org-log-done-with-time))
13524 (eq what 'closed)
13525 nil nil (list org-end-time-was-given))))
13526 (unless (eolp) (insert " "))
13527 ts))))))
13529 (defvar org-log-note-marker (make-marker))
13530 (defvar org-log-note-purpose nil)
13531 (defvar org-log-note-state nil)
13532 (defvar org-log-note-previous-state nil)
13533 (defvar org-log-note-extra nil)
13534 (defvar org-log-note-window-configuration nil)
13535 (defvar org-log-note-return-to (make-marker))
13536 (defvar org-log-note-effective-time nil
13537 "Remembered current time so that dynamically scoped
13538 `org-extend-today-until' affects tha timestamps in state change
13539 log")
13541 (defvar org-log-post-message nil
13542 "Message to be displayed after a log note has been stored.
13543 The auto-repeater uses this.")
13545 (defun org-add-note ()
13546 "Add a note to the current entry.
13547 This is done in the same way as adding a state change note."
13548 (interactive)
13549 (org-add-log-setup 'note nil nil 'findpos nil))
13551 (defun org-log-beginning (&optional create)
13552 "Return expected start of log notes in current entry.
13553 When optional argument CREATE is non-nil, the function creates
13554 a drawer to store notes, if necessary. Returned position ignores
13555 narrowing."
13556 (org-with-wide-buffer
13557 (org-end-of-meta-data)
13558 (let ((end (if (org-at-heading-p) (point)
13559 (save-excursion (outline-next-heading) (point))))
13560 (drawer (org-log-into-drawer)))
13561 (cond
13562 (drawer
13563 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13564 (case-fold-search t))
13565 (catch 'exit
13566 ;; Try to find existing drawer.
13567 (while (re-search-forward regexp end t)
13568 (let ((element (org-element-at-point)))
13569 (when (eq (org-element-type element) 'drawer)
13570 (let ((cend (org-element-property :contents-end element)))
13571 (when (and (not org-log-states-order-reversed) cend)
13572 (goto-char cend)))
13573 (throw 'exit nil))))
13574 ;; No drawer found. Create one, if permitted.
13575 (when create
13576 (unless (bolp) (insert "\n"))
13577 (let ((beg (point)))
13578 (insert ":" drawer ":\n:END:\n")
13579 (org-indent-region beg (point)))
13580 (end-of-line -1)))))
13581 (org-log-state-notes-insert-after-drawers
13582 (while (and (looking-at org-drawer-regexp)
13583 (progn (goto-char (match-end 0))
13584 (re-search-forward org-property-end-re end t)))
13585 (forward-line)))))
13586 (if (bolp) (point) (line-beginning-position 2))))
13588 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13589 "Set up the post command hook to take a note.
13590 If this is about to TODO state change, the new state is expected in STATE.
13591 When FINDPOS is non-nil, find the correct position for the note in
13592 the current entry. If not, assume that it can be inserted at point.
13593 HOW is an indicator what kind of note should be created.
13594 EXTRA is additional text that will be inserted into the notes buffer."
13595 (org-with-wide-buffer
13596 (when findpos
13597 (goto-char (org-log-beginning t))
13598 (unless org-log-states-order-reversed
13599 (org-skip-over-state-notes)
13600 (skip-chars-backward " \t\n\r")
13601 (forward-line)))
13602 (move-marker org-log-note-marker (point))
13603 ;; Preserve position even if a property drawer is inserted in the
13604 ;; process.
13605 (set-marker-insertion-type org-log-note-marker t)
13606 (setq org-log-note-purpose purpose
13607 org-log-note-state state
13608 org-log-note-previous-state prev-state
13609 org-log-note-how how
13610 org-log-note-extra extra
13611 org-log-note-effective-time (org-current-effective-time))
13612 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13614 (defun org-skip-over-state-notes ()
13615 "Skip past the list of State notes in an entry."
13616 (when (ignore-errors (goto-char (org-in-item-p)))
13617 (let* ((struct (org-list-struct))
13618 (prevs (org-list-prevs-alist struct))
13619 (regexp
13620 (concat "[ \t]*- +"
13621 (replace-regexp-in-string
13622 " +" " +"
13623 (org-replace-escapes
13624 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13625 `(("%d" . ,org-ts-regexp-inactive)
13626 ("%D" . ,org-ts-regexp)
13627 ("%s" . "\"\\S-+\"")
13628 ("%S" . "\"\\S-+\"")
13629 ("%t" . ,org-ts-regexp-inactive)
13630 ("%T" . ,org-ts-regexp)
13631 ("%u" . ".*?")
13632 ("%U" . ".*?")))))))
13633 (while (org-looking-at-p regexp)
13634 (goto-char (or (org-list-get-next-item (point) struct prevs)
13635 (org-list-get-item-end (point) struct)))))))
13637 (defun org-add-log-note (&optional purpose)
13638 "Pop up a window for taking a note, and add this note later at point."
13639 (remove-hook 'post-command-hook 'org-add-log-note)
13640 (setq org-log-note-window-configuration (current-window-configuration))
13641 (delete-other-windows)
13642 (move-marker org-log-note-return-to (point))
13643 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13644 (goto-char org-log-note-marker)
13645 (org-switch-to-buffer-other-window "*Org Note*")
13646 (erase-buffer)
13647 (if (memq org-log-note-how '(time state))
13648 (let (current-prefix-arg) (org-store-log-note))
13649 (let ((org-inhibit-startup t)) (org-mode))
13650 (insert (format "# Insert note for %s.
13651 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13652 (cond
13653 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13654 ((eq org-log-note-purpose 'done) "closed todo item")
13655 ((eq org-log-note-purpose 'state)
13656 (format "state change from \"%s\" to \"%s\""
13657 (or org-log-note-previous-state "")
13658 (or org-log-note-state "")))
13659 ((eq org-log-note-purpose 'reschedule)
13660 "rescheduling")
13661 ((eq org-log-note-purpose 'delschedule)
13662 "no longer scheduled")
13663 ((eq org-log-note-purpose 'redeadline)
13664 "changing deadline")
13665 ((eq org-log-note-purpose 'deldeadline)
13666 "removing deadline")
13667 ((eq org-log-note-purpose 'refile)
13668 "refiling")
13669 ((eq org-log-note-purpose 'note)
13670 "this entry")
13671 (t (error "This should not happen")))))
13672 (if org-log-note-extra (insert org-log-note-extra))
13673 (org-set-local 'org-finish-function 'org-store-log-note)
13674 (run-hooks 'org-log-buffer-setup-hook)))
13676 (defvar org-note-abort nil) ; dynamically scoped
13677 (defun org-store-log-note ()
13678 "Finish taking a log note, and insert it to where it belongs."
13679 (let ((txt (buffer-string)))
13680 (kill-buffer (current-buffer))
13681 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13682 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13683 (setq txt (replace-match "" t t txt)))
13684 (if (string-match "\\s-+\\'" txt)
13685 (setq txt (replace-match "" t t txt)))
13686 (setq lines (org-split-string txt "\n"))
13687 (when (and note (string-match "\\S-" note))
13688 (setq note
13689 (org-replace-escapes
13690 note
13691 (list (cons "%u" (user-login-name))
13692 (cons "%U" user-full-name)
13693 (cons "%t" (format-time-string
13694 (org-time-stamp-format 'long 'inactive)
13695 org-log-note-effective-time))
13696 (cons "%T" (format-time-string
13697 (org-time-stamp-format 'long nil)
13698 org-log-note-effective-time))
13699 (cons "%d" (format-time-string
13700 (org-time-stamp-format nil 'inactive)
13701 org-log-note-effective-time))
13702 (cons "%D" (format-time-string
13703 (org-time-stamp-format nil nil)
13704 org-log-note-effective-time))
13705 (cons "%s" (if org-log-note-state
13706 (concat "\"" org-log-note-state "\"")
13707 ""))
13708 (cons "%S" (if org-log-note-previous-state
13709 (concat "\"" org-log-note-previous-state "\"")
13710 "\"\"")))))
13711 (when lines (setq note (concat note " \\\\")))
13712 (push note lines))
13713 (when (or current-prefix-arg org-note-abort)
13714 (when (org-log-into-drawer)
13715 (org-remove-empty-drawer-at org-log-note-marker))
13716 (setq lines nil))
13717 (when lines
13718 (with-current-buffer (marker-buffer org-log-note-marker)
13719 (save-excursion
13720 (goto-char org-log-note-marker)
13721 (move-marker org-log-note-marker nil)
13722 ;; Make sure point is at the beginning of an empty line.
13723 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13724 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13725 ;; In an existing list, add a new item at the top level.
13726 ;; Otherwise, indent line like a regular one.
13727 (let ((itemp (org-in-item-p)))
13728 (if itemp
13729 (org-indent-line-to
13730 (let ((struct (save-excursion
13731 (goto-char itemp) (org-list-struct))))
13732 (org-list-get-ind (org-list-get-top-point struct) struct)))
13733 (org-indent-line)))
13734 (insert (org-list-bullet-string "-") (pop lines))
13735 (let ((ind (org-list-item-body-column (line-beginning-position))))
13736 (dolist (line lines)
13737 (insert "\n")
13738 (org-indent-line-to ind)
13739 (insert line)))
13740 (message "Note stored")
13741 (org-back-to-heading t)
13742 (org-cycle-hide-drawers 'children))
13743 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13744 ;; from within `org-add-log-note' because `buffer-undo-list'
13745 ;; is then modified outside of `org-with-remote-undo'.
13746 (when (eq this-command 'org-agenda-todo)
13747 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13748 ;; Don't add undo information when called from `org-agenda-todo'
13749 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13750 (set-window-configuration org-log-note-window-configuration)
13751 (with-current-buffer (marker-buffer org-log-note-return-to)
13752 (goto-char org-log-note-return-to))
13753 (move-marker org-log-note-return-to nil)
13754 (and org-log-post-message (message "%s" org-log-post-message))))
13756 (defun org-remove-empty-drawer-at (pos)
13757 "Remove an empty drawer at position POS.
13758 POS may also be a marker."
13759 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13760 (org-with-wide-buffer
13761 (goto-char pos)
13762 (let ((drawer (org-element-at-point)))
13763 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13764 (not (org-element-property :contents-begin drawer)))
13765 (delete-region (org-element-property :begin drawer)
13766 (progn (goto-char (org-element-property :end drawer))
13767 (skip-chars-backward " \r\t\n")
13768 (forward-line)
13769 (point))))))))
13771 (defvar org-ts-type nil)
13772 (defun org-sparse-tree (&optional arg type)
13773 "Create a sparse tree, prompt for the details.
13774 This command can create sparse trees. You first need to select the type
13775 of match used to create the tree:
13777 t Show all TODO entries.
13778 T Show entries with a specific TODO keyword.
13779 m Show entries selected by a tags/property match.
13780 p Enter a property name and its value (both with completion on existing
13781 names/values) and show entries with that property.
13782 r Show entries matching a regular expression (`/' can be used as well).
13783 b Show deadlines and scheduled items before a date.
13784 a Show deadlines and scheduled items after a date.
13785 d Show deadlines due within `org-deadline-warning-days'.
13786 D Show deadlines and scheduled items between a date range."
13787 (interactive "P")
13788 (setq type (or type org-sparse-tree-default-date-type))
13789 (setq org-ts-type type)
13790 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13791 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13792 [c]ycle through date types: %s"
13793 (case type
13794 (all "all timestamps")
13795 (scheduled "only scheduled")
13796 (deadline "only deadline")
13797 (active "only active timestamps")
13798 (inactive "only inactive timestamps")
13799 (closed "with a closed time-stamp")
13800 (otherwise "scheduled/deadline")))
13801 (let ((answer (read-char-exclusive)))
13802 (case answer
13804 (org-sparse-tree
13806 (cadr
13807 (memq type '(nil all scheduled deadline active inactive closed)))))
13808 (?d (call-interactively 'org-check-deadlines))
13809 (?b (call-interactively 'org-check-before-date))
13810 (?a (call-interactively 'org-check-after-date))
13811 (?D (call-interactively 'org-check-dates-range))
13812 (?t (call-interactively 'org-show-todo-tree))
13813 (?T (org-show-todo-tree '(4)))
13814 (?m (call-interactively 'org-match-sparse-tree))
13815 ((?p ?P)
13816 (let* ((kwd (org-icompleting-read
13817 "Property: " (mapcar 'list (org-buffer-property-keys))))
13818 (value (org-icompleting-read
13819 "Value: " (mapcar 'list (org-property-values kwd)))))
13820 (unless (string-match "\\`{.*}\\'" value)
13821 (setq value (concat "\"" value "\"")))
13822 (org-match-sparse-tree arg (concat kwd "=" value))))
13823 ((?r ?R ?/) (call-interactively 'org-occur))
13824 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13826 (defvar org-occur-highlights nil
13827 "List of overlays used for occur matches.")
13828 (make-variable-buffer-local 'org-occur-highlights)
13829 (defvar org-occur-parameters nil
13830 "Parameters of the active org-occur calls.
13831 This is a list, each call to org-occur pushes as cons cell,
13832 containing the regular expression and the callback, onto the list.
13833 The list can contain several entries if `org-occur' has been called
13834 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13835 will only contain one set of parameters. When the highlights are
13836 removed (for example with `C-c C-c', or with the next edit (depending
13837 on `org-remove-highlights-with-change'), this variable is emptied
13838 as well.")
13839 (make-variable-buffer-local 'org-occur-parameters)
13841 (defun org-occur (regexp &optional keep-previous callback)
13842 "Make a compact tree which shows all matches of REGEXP.
13843 The tree will show the lines where the regexp matches, and all higher
13844 headlines above the match. It will also show the heading after the match,
13845 to make sure editing the matching entry is easy.
13846 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13847 call to `org-occur' will be kept, to allow stacking of calls to this
13848 command.
13849 If CALLBACK is non-nil, it is a function which is called to confirm
13850 that the match should indeed be shown."
13851 (interactive "sRegexp: \nP")
13852 (when (equal regexp "")
13853 (user-error "Regexp cannot be empty"))
13854 (unless keep-previous
13855 (org-remove-occur-highlights nil nil t))
13856 (push (cons regexp callback) org-occur-parameters)
13857 (let ((cnt 0))
13858 (save-excursion
13859 (goto-char (point-min))
13860 (if (or (not keep-previous) ; do not want to keep
13861 (not org-occur-highlights)) ; no previous matches
13862 ;; hide everything
13863 (org-overview))
13864 (while (re-search-forward regexp nil t)
13865 (when (or (not callback)
13866 (save-match-data (funcall callback)))
13867 (setq cnt (1+ cnt))
13868 (when org-highlight-sparse-tree-matches
13869 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13870 (org-show-context 'occur-tree))))
13871 (when org-remove-highlights-with-change
13872 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13873 nil 'local))
13874 (unless org-sparse-tree-open-archived-trees
13875 (org-hide-archived-subtrees (point-min) (point-max)))
13876 (run-hooks 'org-occur-hook)
13877 (if (org-called-interactively-p 'interactive)
13878 (message "%d match(es) for regexp %s" cnt regexp))
13879 cnt))
13881 (defun org-occur-next-match (&optional n reset)
13882 "Function for `next-error-function' to find sparse tree matches.
13883 N is the number of matches to move, when negative move backwards.
13884 RESET is entirely ignored - this function always goes back to the
13885 starting point when no match is found."
13886 (let* ((limit (if (< n 0) (point-min) (point-max)))
13887 (search-func (if (< n 0)
13888 'previous-single-char-property-change
13889 'next-single-char-property-change))
13890 (n (abs n))
13891 (pos (point))
13893 (catch 'exit
13894 (while (setq p1 (funcall search-func (point) 'org-type))
13895 (when (equal p1 limit)
13896 (goto-char pos)
13897 (user-error "No more matches"))
13898 (when (equal (get-char-property p1 'org-type) 'org-occur)
13899 (setq n (1- n))
13900 (when (= n 0)
13901 (goto-char p1)
13902 (throw 'exit (point))))
13903 (goto-char p1))
13904 (goto-char p1)
13905 (user-error "No more matches"))))
13907 (defun org-show-context (&optional key)
13908 "Make sure point and context are visible.
13909 Optional argument KEY, when non-nil, is a symbol. See
13910 `org-show-context-detail' for allowed values and how much is to
13911 be shown."
13912 (org-show-set-visibility
13913 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13914 ((cdr (assq key org-show-context-detail)))
13915 (t (cdr (assq 'default org-show-context-detail))))))
13917 (defun org-show-set-visibility (detail)
13918 "Set visibility around point according to DETAIL.
13919 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13920 `tree', `canonical' or t. See `org-show-context-detail' for more
13921 information."
13922 (unless (org-before-first-heading-p)
13923 ;; Show current heading and possibly its entry, following headline
13924 ;; or all children.
13925 (if (and (org-at-heading-p) (not (eq detail 'local)))
13926 (org-flag-heading nil)
13927 (org-show-entry)
13928 (org-with-limited-levels
13929 (case detail
13930 ((tree canonical t) (show-children))
13931 ((nil minimal ancestors))
13932 (t (save-excursion
13933 (outline-next-heading)
13934 (org-flag-heading nil))))))
13935 ;; Show all siblings.
13936 (when (eq detail 'lineage) (org-show-siblings))
13937 ;; Show ancestors, possibly with their children.
13938 (when (memq detail '(ancestors lineage tree canonical t))
13939 (save-excursion
13940 (while (org-up-heading-safe)
13941 (org-flag-heading nil)
13942 (when (memq detail '(canonical t)) (org-show-entry))
13943 (when (memq detail '(tree canonical t)) (show-children)))))))
13945 (defvar org-reveal-start-hook nil
13946 "Hook run before revealing a location.")
13948 (defun org-reveal (&optional siblings)
13949 "Show current entry, hierarchy above it, and the following headline.
13951 This can be used to show a consistent set of context around
13952 locations exposed with `org-show-context'.
13954 With optional argument SIBLINGS, on each level of the hierarchy all
13955 siblings are shown. This repairs the tree structure to what it would
13956 look like when opened with hierarchical calls to `org-cycle'.
13958 With double optional argument \\[universal-argument] \\[universal-argument], \
13959 go to the parent and show the
13960 entire tree."
13961 (interactive "P")
13962 (run-hooks 'org-reveal-start-hook)
13963 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
13964 ((equal siblings '(16))
13965 (save-excursion
13966 (when (org-up-heading-safe)
13967 (org-show-subtree)
13968 (run-hook-with-args 'org-cycle-hook 'subtree))))
13969 (t (org-show-set-visibility 'lineage))))
13971 (defun org-highlight-new-match (beg end)
13972 "Highlight from BEG to END and mark the highlight is an occur headline."
13973 (let ((ov (make-overlay beg end)))
13974 (overlay-put ov 'face 'secondary-selection)
13975 (overlay-put ov 'org-type 'org-occur)
13976 (push ov org-occur-highlights)))
13978 (defun org-remove-occur-highlights (&optional beg end noremove)
13979 "Remove the occur highlights from the buffer.
13980 BEG and END are ignored. If NOREMOVE is nil, remove this function
13981 from the `before-change-functions' in the current buffer."
13982 (interactive)
13983 (unless org-inhibit-highlight-removal
13984 (mapc 'delete-overlay org-occur-highlights)
13985 (setq org-occur-highlights nil)
13986 (setq org-occur-parameters nil)
13987 (unless noremove
13988 (remove-hook 'before-change-functions
13989 'org-remove-occur-highlights 'local))))
13991 ;;;; Priorities
13993 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13994 "Regular expression matching the priority indicator.")
13996 (defvar org-remove-priority-next-time nil)
13998 (defun org-priority-up ()
13999 "Increase the priority of the current item."
14000 (interactive)
14001 (org-priority 'up))
14003 (defun org-priority-down ()
14004 "Decrease the priority of the current item."
14005 (interactive)
14006 (org-priority 'down))
14008 (defun org-priority (&optional action show)
14009 "Change the priority of an item.
14010 ACTION can be `set', `up', `down', or a character."
14011 (interactive "P")
14012 (if (equal action '(4))
14013 (org-show-priority)
14014 (unless org-enable-priority-commands
14015 (user-error "Priority commands are disabled"))
14016 (setq action (or action 'set))
14017 (let (current new news have remove)
14018 (save-excursion
14019 (org-back-to-heading t)
14020 (if (looking-at org-priority-regexp)
14021 (setq current (string-to-char (match-string 2))
14022 have t))
14023 (cond
14024 ((eq action 'remove)
14025 (setq remove t new ?\ ))
14026 ((or (eq action 'set)
14027 (if (featurep 'xemacs) (characterp action) (integerp action)))
14028 (if (not (eq action 'set))
14029 (setq new action)
14030 (message "Priority %c-%c, SPC to remove: "
14031 org-highest-priority org-lowest-priority)
14032 (save-match-data
14033 (setq new (read-char-exclusive))))
14034 (if (and (= (upcase org-highest-priority) org-highest-priority)
14035 (= (upcase org-lowest-priority) org-lowest-priority))
14036 (setq new (upcase new)))
14037 (cond ((equal new ?\ ) (setq remove t))
14038 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14039 (user-error "Priority must be between `%c' and `%c'"
14040 org-highest-priority org-lowest-priority))))
14041 ((eq action 'up)
14042 (setq new (if have
14043 (1- current) ; normal cycling
14044 ;; last priority was empty
14045 (if (eq last-command this-command)
14046 org-lowest-priority ; wrap around empty to lowest
14047 ;; default
14048 (if org-priority-start-cycle-with-default
14049 org-default-priority
14050 (1- org-default-priority))))))
14051 ((eq action 'down)
14052 (setq new (if have
14053 (1+ current) ; normal cycling
14054 ;; last priority was empty
14055 (if (eq last-command this-command)
14056 org-highest-priority ; wrap around empty to highest
14057 ;; default
14058 (if org-priority-start-cycle-with-default
14059 org-default-priority
14060 (1+ org-default-priority))))))
14061 (t (user-error "Invalid action")))
14062 (if (or (< (upcase new) org-highest-priority)
14063 (> (upcase new) org-lowest-priority))
14064 (if (and (memq action '(up down))
14065 (not have) (not (eq last-command this-command)))
14066 ;; `new' is from default priority
14067 (error
14068 "The default can not be set, see `org-default-priority' why")
14069 ;; normal cycling: `new' is beyond highest/lowest priority
14070 ;; and is wrapped around to the empty priority
14071 (setq remove t)))
14072 (setq news (format "%c" new))
14073 (if have
14074 (if remove
14075 (replace-match "" t t nil 1)
14076 (replace-match news t t nil 2))
14077 (if remove
14078 (user-error "No priority cookie found in line")
14079 (let ((case-fold-search nil))
14080 (looking-at org-todo-line-regexp))
14081 (if (match-end 2)
14082 (progn
14083 (goto-char (match-end 2))
14084 (insert " [#" news "]"))
14085 (goto-char (match-beginning 3))
14086 (insert "[#" news "] "))))
14087 (org-set-tags nil 'align))
14088 (if remove
14089 (message "Priority removed")
14090 (message "Priority of current item set to %s" news)))))
14092 (defun org-show-priority ()
14093 "Show the priority of the current item.
14094 This priority is composed of the main priority given with the [#A] cookies,
14095 and by additional input from the age of a schedules or deadline entry."
14096 (interactive)
14097 (let ((pri (if (eq major-mode 'org-agenda-mode)
14098 (org-get-at-bol 'priority)
14099 (save-excursion
14100 (save-match-data
14101 (beginning-of-line)
14102 (and (looking-at org-heading-regexp)
14103 (org-get-priority (match-string 0))))))))
14104 (message "Priority is %d" (if pri pri -1000))))
14106 (defun org-get-priority (s)
14107 "Find priority cookie and return priority."
14108 (save-match-data
14109 (if (functionp org-get-priority-function)
14110 (funcall org-get-priority-function)
14111 (if (not (string-match org-priority-regexp s))
14112 (* 1000 (- org-lowest-priority org-default-priority))
14113 (* 1000 (- org-lowest-priority
14114 (string-to-char (match-string 2 s))))))))
14116 ;;;; Tags
14118 (defvar org-agenda-archives-mode)
14119 (defvar org-map-continue-from nil
14120 "Position from where mapping should continue.
14121 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14123 (defvar org-scanner-tags nil
14124 "The current tag list while the tags scanner is running.")
14125 (defvar org-trust-scanner-tags nil
14126 "Should `org-get-tags-at' use the tags for the scanner.
14127 This is for internal dynamical scoping only.
14128 When this is non-nil, the function `org-get-tags-at' will return the value
14129 of `org-scanner-tags' instead of building the list by itself. This
14130 can lead to large speed-ups when the tags scanner is used in a file with
14131 many entries, and when the list of tags is retrieved, for example to
14132 obtain a list of properties. Building the tags list for each entry in such
14133 a file becomes an N^2 operation - but with this variable set, it scales
14134 as N.")
14136 (defun org-scan-tags (action matcher todo-only &optional start-level)
14137 "Scan headline tags with inheritance and produce output ACTION.
14139 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14140 or `agenda' to produce an entry list for an agenda view. It can also be
14141 a Lisp form or a function that should be called at each matched headline, in
14142 this case the return value is a list of all return values from these calls.
14144 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14145 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14146 only lines with a not-done TODO keyword are included in the output.
14147 This should be the same variable that was scoped into
14148 and set by `org-make-tags-matcher' when it constructed MATCHER.
14150 START-LEVEL can be a string with asterisks, reducing the scope to
14151 headlines matching this string."
14152 (require 'org-agenda)
14153 (let* ((re (concat "^"
14154 (if start-level
14155 ;; Get the correct level to match
14156 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14157 org-outline-regexp)
14158 " *\\(\\<\\("
14159 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14160 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14161 (props (list 'face 'default
14162 'done-face 'org-agenda-done
14163 'undone-face 'default
14164 'mouse-face 'highlight
14165 'org-not-done-regexp org-not-done-regexp
14166 'org-todo-regexp org-todo-regexp
14167 'org-complex-heading-regexp org-complex-heading-regexp
14168 'help-echo
14169 (format "mouse-2 or RET jump to org file %s"
14170 (abbreviate-file-name
14171 (or (buffer-file-name (buffer-base-buffer))
14172 (buffer-name (buffer-base-buffer)))))))
14173 (org-map-continue-from nil)
14174 lspos tags tags-list
14175 (tags-alist (list (cons 0 org-file-tags)))
14176 (llast 0) rtn rtn1 level category i txt
14177 todo marker entry priority
14178 ts-date ts-date-type ts-date-pair)
14179 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14180 (setq action (list 'lambda nil action)))
14181 (save-excursion
14182 (goto-char (point-min))
14183 (when (eq action 'sparse-tree)
14184 (org-overview)
14185 (org-remove-occur-highlights))
14186 (while (let (case-fold-search)
14187 (re-search-forward re nil t))
14188 (setq org-map-continue-from nil)
14189 (catch :skip
14190 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14191 tags (if (match-end 4) (org-match-string-no-properties 4)))
14192 (goto-char (setq lspos (match-beginning 0)))
14193 (setq level (org-reduced-level (org-outline-level))
14194 category (org-get-category))
14195 (when (eq action 'agenda)
14196 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14197 ts-date (car ts-date-pair)
14198 ts-date-type (cdr ts-date-pair)))
14199 (setq i llast llast level)
14200 ;; remove tag lists from same and sublevels
14201 (while (>= i level)
14202 (when (setq entry (assoc i tags-alist))
14203 (setq tags-alist (delete entry tags-alist)))
14204 (setq i (1- i)))
14205 ;; add the next tags
14206 (when tags
14207 (setq tags (org-split-string tags ":")
14208 tags-alist
14209 (cons (cons level tags) tags-alist)))
14210 ;; compile tags for current headline
14211 (setq tags-list
14212 (if org-use-tag-inheritance
14213 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14214 tags)
14215 org-scanner-tags tags-list)
14216 (when org-use-tag-inheritance
14217 (setcdr (car tags-alist)
14218 (mapcar (lambda (x)
14219 (setq x (copy-sequence x))
14220 (org-add-prop-inherited x))
14221 (cdar tags-alist))))
14222 (when (and tags org-use-tag-inheritance
14223 (or (not (eq t org-use-tag-inheritance))
14224 org-tags-exclude-from-inheritance))
14225 ;; selective inheritance, remove uninherited ones
14226 (setcdr (car tags-alist)
14227 (org-remove-uninherited-tags (cdar tags-alist))))
14228 (when (and
14230 ;; eval matcher only when the todo condition is OK
14231 (and (or (not todo-only) (member todo org-not-done-keywords))
14232 (let ((case-fold-search t) (org-trust-scanner-tags t))
14233 (eval matcher)))
14235 ;; Call the skipper, but return t if it does not skip,
14236 ;; so that the `and' form continues evaluating
14237 (progn
14238 (unless (eq action 'sparse-tree) (org-agenda-skip))
14241 ;; Check if timestamps are deselecting this entry
14242 (or (not todo-only)
14243 (and (member todo org-not-done-keywords)
14244 (or (not org-agenda-tags-todo-honor-ignore-options)
14245 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14247 ;; select this headline
14248 (cond
14249 ((eq action 'sparse-tree)
14250 (and org-highlight-sparse-tree-matches
14251 (org-get-heading) (match-end 0)
14252 (org-highlight-new-match
14253 (match-beginning 1) (match-end 1)))
14254 (org-show-context 'tags-tree))
14255 ((eq action 'agenda)
14256 (setq txt (org-agenda-format-item
14258 (concat
14259 (if (eq org-tags-match-list-sublevels 'indented)
14260 (make-string (1- level) ?.) "")
14261 (org-get-heading))
14262 level category
14263 tags-list)
14264 priority (org-get-priority txt))
14265 (goto-char lspos)
14266 (setq marker (org-agenda-new-marker))
14267 (org-add-props txt props
14268 'org-marker marker 'org-hd-marker marker 'org-category category
14269 'todo-state todo
14270 'ts-date ts-date
14271 'priority priority
14272 'type (concat "tagsmatch" ts-date-type))
14273 (push txt rtn))
14274 ((functionp action)
14275 (setq org-map-continue-from nil)
14276 (save-excursion
14277 (setq rtn1 (funcall action))
14278 (push rtn1 rtn)))
14279 (t (user-error "Invalid action")))
14281 ;; if we are to skip sublevels, jump to end of subtree
14282 (unless org-tags-match-list-sublevels
14283 (org-end-of-subtree t)
14284 (backward-char 1))))
14285 ;; Get the correct position from where to continue
14286 (if org-map-continue-from
14287 (goto-char org-map-continue-from)
14288 (and (= (point) lspos) (end-of-line 1)))))
14289 (when (and (eq action 'sparse-tree)
14290 (not org-sparse-tree-open-archived-trees))
14291 (org-hide-archived-subtrees (point-min) (point-max)))
14292 (nreverse rtn)))
14294 (defun org-remove-uninherited-tags (tags)
14295 "Remove all tags that are not inherited from the list TAGS."
14296 (cond
14297 ((eq org-use-tag-inheritance t)
14298 (if org-tags-exclude-from-inheritance
14299 (org-delete-all org-tags-exclude-from-inheritance tags)
14300 tags))
14301 ((not org-use-tag-inheritance) nil)
14302 ((stringp org-use-tag-inheritance)
14303 (delq nil (mapcar
14304 (lambda (x)
14305 (if (and (string-match org-use-tag-inheritance x)
14306 (not (member x org-tags-exclude-from-inheritance)))
14307 x nil))
14308 tags)))
14309 ((listp org-use-tag-inheritance)
14310 (delq nil (mapcar
14311 (lambda (x)
14312 (if (member x org-use-tag-inheritance) x nil))
14313 tags)))))
14315 (defun org-match-sparse-tree (&optional todo-only match)
14316 "Create a sparse tree according to tags string MATCH.
14317 MATCH can contain positive and negative selection of tags, like
14318 \"+WORK+URGENT-WITHBOSS\".
14319 If optional argument TODO-ONLY is non-nil, only select lines that are
14320 also TODO lines."
14321 (interactive "P")
14322 (org-agenda-prepare-buffers (list (current-buffer)))
14323 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14325 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14327 (defvar org-cached-props nil)
14328 (defun org-cached-entry-get (pom property)
14329 (if (or (eq t org-use-property-inheritance)
14330 (and (stringp org-use-property-inheritance)
14331 (let ((case-fold-search t))
14332 (org-string-match-p org-use-property-inheritance property)))
14333 (and (listp org-use-property-inheritance)
14334 (member-ignore-case property org-use-property-inheritance)))
14335 ;; Caching is not possible, check it directly.
14336 (org-entry-get pom property 'inherit)
14337 ;; Get all properties, so we can do complicated checks easily.
14338 (cdr (assoc-string property
14339 (or org-cached-props
14340 (setq org-cached-props (org-entry-properties pom)))
14341 t))))
14343 (defun org-global-tags-completion-table (&optional files)
14344 "Return the list of all tags in all agenda buffer/files.
14345 Optional FILES argument is a list of files which can be used
14346 instead of the agenda files."
14347 (save-excursion
14348 (org-uniquify
14349 (delq nil
14350 (apply 'append
14351 (mapcar
14352 (lambda (file)
14353 (set-buffer (find-file-noselect file))
14354 (append (org-get-buffer-tags)
14355 (mapcar (lambda (x) (if (stringp (car-safe x))
14356 (list (car-safe x)) nil))
14357 org-tag-alist)))
14358 (if (and files (car files))
14359 files
14360 (org-agenda-files))))))))
14362 (defun org-make-tags-matcher (match)
14363 "Create the TAGS/TODO matcher form for the selection string MATCH.
14365 The variable `todo-only' is scoped dynamically into this function.
14366 It will be set to t if the matcher restricts matching to TODO entries,
14367 otherwise will not be touched.
14369 Returns a cons of the selection string MATCH and the constructed
14370 lisp form implementing the matcher. The matcher is to be evaluated
14371 at an Org entry, with point on the headline, and returns t if the
14372 entry matches the selection string MATCH. The returned lisp form
14373 references two variables with information about the entry, which
14374 must be bound around the form's evaluation: todo, the TODO keyword
14375 at the entry (or nil of none); and tags-list, the list of all tags
14376 at the entry including inherited ones. Additionally, the category
14377 of the entry (if any) must be specified as the text property
14378 'org-category on the headline.
14380 See also `org-scan-tags'.
14382 (declare (special todo-only))
14383 (unless (boundp 'todo-only)
14384 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14385 (unless match
14386 ;; Get a new match request, with completion against the global
14387 ;; tags table and the local tags in current buffer
14388 (let ((org-last-tags-completion-table
14389 (org-uniquify
14390 (delq nil (append (org-get-buffer-tags)
14391 (org-global-tags-completion-table))))))
14392 (setq match (org-completing-read-no-i
14393 "Match: " 'org-tags-completion-function nil nil nil
14394 'org-tags-history))))
14396 ;; Parse the string and create a lisp form
14397 (let ((match0 match)
14398 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14399 minus tag mm
14400 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14401 orterms term orlist re-p str-p level-p level-op time-p
14402 prop-p pn pv po gv rest (start 0) (ss 0))
14403 ;; Expand group tags
14404 (setq match (org-tags-expand match))
14406 ;; Check if there is a TODO part of this match, which would be the
14407 ;; part after a "/". TO make sure that this slash is not part of
14408 ;; a property value to be matched against, we also check that there
14409 ;; is no " after that slash.
14410 ;; First, find the last slash
14411 (while (string-match "/+" match ss)
14412 (setq start (match-beginning 0) ss (match-end 0)))
14413 (if (and (string-match "/+" match start)
14414 (not (save-match-data (string-match "\"" match start))))
14415 ;; match contains also a todo-matching request
14416 (progn
14417 (setq tagsmatch (substring match 0 (match-beginning 0))
14418 todomatch (substring match (match-end 0)))
14419 (if (string-match "^!" todomatch)
14420 (setq todo-only t todomatch (substring todomatch 1)))
14421 (if (string-match "^\\s-*$" todomatch)
14422 (setq todomatch nil)))
14423 ;; only matching tags
14424 (setq tagsmatch match todomatch nil))
14426 ;; Make the tags matcher
14427 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14428 (setq tagsmatcher t)
14429 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14430 (while (setq term (pop orterms))
14431 (while (and (equal (substring term -1) "\\") orterms)
14432 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14433 (while (string-match re term)
14434 (setq rest (substring term (match-end 0))
14435 minus (and (match-end 1)
14436 (equal (match-string 1 term) "-"))
14437 tag (save-match-data (replace-regexp-in-string
14438 "\\\\-" "-"
14439 (match-string 2 term)))
14440 re-p (equal (string-to-char tag) ?{)
14441 level-p (match-end 4)
14442 prop-p (match-end 5)
14443 mm (cond
14444 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14445 (level-p
14446 (setq level-op (org-op-to-function (match-string 3 term)))
14447 `(,level-op level ,(string-to-number
14448 (match-string 4 term))))
14449 (prop-p
14450 (setq pn (match-string 5 term)
14451 po (match-string 6 term)
14452 pv (match-string 7 term)
14453 re-p (equal (string-to-char pv) ?{)
14454 str-p (equal (string-to-char pv) ?\")
14455 time-p (save-match-data
14456 (string-match "^\"[[<].*[]>]\"$" pv))
14457 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14458 (if time-p (setq pv (org-matcher-time pv)))
14459 (setq po (org-op-to-function po (if time-p 'time str-p)))
14460 (cond
14461 ((equal pn "CATEGORY")
14462 (setq gv '(get-text-property (point) 'org-category)))
14463 ((equal pn "TODO")
14464 (setq gv 'todo))
14466 (setq gv `(org-cached-entry-get nil ,pn))))
14467 (if re-p
14468 (if (eq po 'org<>)
14469 `(not (string-match ,pv (or ,gv "")))
14470 `(string-match ,pv (or ,gv "")))
14471 (if str-p
14472 `(,po (or ,gv "") ,pv)
14473 `(,po (string-to-number (or ,gv ""))
14474 ,(string-to-number pv) ))))
14475 (t `(member ,tag tags-list)))
14476 mm (if minus (list 'not mm) mm)
14477 term rest)
14478 (push mm tagsmatcher))
14479 (push (if (> (length tagsmatcher) 1)
14480 (cons 'and tagsmatcher)
14481 (car tagsmatcher))
14482 orlist)
14483 (setq tagsmatcher nil))
14484 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14485 (setq tagsmatcher
14486 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14487 ;; Make the todo matcher
14488 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14489 (setq todomatcher t)
14490 (setq orterms (org-split-string todomatch "|") orlist nil)
14491 (while (setq term (pop orterms))
14492 (while (string-match re term)
14493 (setq minus (and (match-end 1)
14494 (equal (match-string 1 term) "-"))
14495 kwd (match-string 2 term)
14496 re-p (equal (string-to-char kwd) ?{)
14497 term (substring term (match-end 0))
14498 mm (if re-p
14499 `(string-match ,(substring kwd 1 -1) todo)
14500 (list 'equal 'todo kwd))
14501 mm (if minus (list 'not mm) mm))
14502 (push mm todomatcher))
14503 (push (if (> (length todomatcher) 1)
14504 (cons 'and todomatcher)
14505 (car todomatcher))
14506 orlist)
14507 (setq todomatcher nil))
14508 (setq todomatcher (if (> (length orlist) 1)
14509 (cons 'or orlist) (car orlist))))
14511 ;; Return the string and lisp forms of the matcher
14512 (setq matcher (if todomatcher
14513 (list 'and tagsmatcher todomatcher)
14514 tagsmatcher))
14515 (when todo-only
14516 (setq matcher (list 'and '(member todo org-not-done-keywords)
14517 matcher)))
14518 (cons match0 matcher)))
14520 (defun org-tags-expand (match &optional single-as-list downcased)
14521 "Expand group tags in MATCH.
14523 This replaces every group tag in MATCH with a regexp tag search.
14524 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14525 will be replaced like this:
14527 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14528 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14529 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14531 Replacing by a regexp preserves the structure of the match.
14532 E.g., this expansion
14534 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14536 will match anything tagged with \"Lab\" and \"Home\", or tagged
14537 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14539 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14540 assumed to be a single group tag, and the function will return
14541 the list of tags in this group.
14543 When DOWNCASE is non-nil, expand downcased TAGS."
14544 (if org-group-tags
14545 (let* ((case-fold-search t)
14546 (stable org-mode-syntax-table)
14547 (tal (or org-tag-groups-alist-for-agenda
14548 org-tag-groups-alist))
14549 (tal (if downcased
14550 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14551 (tml (mapcar 'car tal))
14552 (rtnmatch match) rpl)
14553 ;; @ and _ are allowed as word-components in tags
14554 (modify-syntax-entry ?@ "w" stable)
14555 (modify-syntax-entry ?_ "w" stable)
14556 (while (and tml
14557 (with-syntax-table stable
14558 (string-match
14559 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14560 (regexp-opt tml) "\\>\\)") rtnmatch)))
14561 (let* ((dir (match-string 1 rtnmatch))
14562 (tag (match-string 2 rtnmatch))
14563 (tag (if downcased (downcase tag) tag)))
14564 (setq tml (delete tag tml))
14565 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14566 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14567 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14568 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14569 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14570 (if single-as-list
14571 (or (reverse rpl) (list rtnmatch))
14572 rtnmatch))
14573 (if single-as-list (list (if downcased (downcase match) match))
14574 match)))
14576 (defun org-op-to-function (op &optional stringp)
14577 "Turn an operator into the appropriate function."
14578 (setq op
14579 (cond
14580 ((equal op "<" ) '(< string< org-time<))
14581 ((equal op ">" ) '(> org-string> org-time>))
14582 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14583 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14584 ((member op '("=" "==")) '(= string= org-time=))
14585 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14586 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14588 (defun org<> (a b) (not (= a b)))
14589 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14590 (defun org-string>= (a b) (not (string< a b)))
14591 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14592 (defun org-string<> (a b) (not (string= a b)))
14593 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14594 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14595 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14596 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14597 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14598 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14599 (defun org-2ft (s)
14600 "Convert S to a floating point time.
14601 If S is already a number, just return it. If it is a string, parse
14602 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14603 (cond
14604 ((numberp s) s)
14605 ((stringp s)
14606 (condition-case nil
14607 (float-time (apply 'encode-time (org-parse-time-string s)))
14608 (error 0.)))
14609 (t 0.)))
14611 (defun org-time-today ()
14612 "Time in seconds today at 0:00.
14613 Returns the float number of seconds since the beginning of the
14614 epoch to the beginning of today (00:00)."
14615 (float-time (apply 'encode-time
14616 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14618 (defun org-matcher-time (s)
14619 "Interpret a time comparison value."
14620 (save-match-data
14621 (cond
14622 ((string= s "<now>") (float-time))
14623 ((string= s "<today>") (org-time-today))
14624 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14625 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14626 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14627 (+ (org-time-today)
14628 (* (string-to-number (match-string 1 s))
14629 (cdr (assoc (match-string 2 s)
14630 '(("d" . 86400.0) ("w" . 604800.0)
14631 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14632 (t (org-2ft s)))))
14634 (defun org-match-any-p (re list)
14635 "Does re match any element of list?"
14636 (setq list (mapcar (lambda (x) (string-match re x)) list))
14637 (delq nil list))
14639 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14640 (defvar org-tags-overlay (make-overlay 1 1))
14641 (org-detach-overlay org-tags-overlay)
14643 (defun org-get-local-tags-at (&optional pos)
14644 "Get a list of tags defined in the current headline."
14645 (org-get-tags-at pos 'local))
14647 (defun org-get-local-tags ()
14648 "Get a list of tags defined in the current headline."
14649 (org-get-tags-at nil 'local))
14651 (defun org-get-tags-at (&optional pos local)
14652 "Get a list of all headline tags applicable at POS.
14653 POS defaults to point. If tags are inherited, the list contains
14654 the targets in the same sequence as the headlines appear, i.e.
14655 the tags of the current headline come last.
14656 When LOCAL is non-nil, only return tags from the current headline,
14657 ignore inherited ones."
14658 (interactive)
14659 (if (and org-trust-scanner-tags
14660 (or (not pos) (equal pos (point)))
14661 (not local))
14662 org-scanner-tags
14663 (let (tags ltags lastpos parent)
14664 (save-excursion
14665 (save-restriction
14666 (widen)
14667 (goto-char (or pos (point)))
14668 (save-match-data
14669 (catch 'done
14670 (condition-case nil
14671 (progn
14672 (org-back-to-heading t)
14673 (while (not (equal lastpos (point)))
14674 (setq lastpos (point))
14675 (when (looking-at
14676 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14677 (setq ltags (org-split-string
14678 (org-match-string-no-properties 1) ":"))
14679 (when parent
14680 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14681 (setq tags (append
14682 (if parent
14683 (org-remove-uninherited-tags ltags)
14684 ltags)
14685 tags)))
14686 (or org-use-tag-inheritance (throw 'done t))
14687 (if local (throw 'done t))
14688 (or (org-up-heading-safe) (error nil))
14689 (setq parent t)))
14690 (error nil)))))
14691 (if local
14692 tags
14693 (reverse (delete-dups
14694 (reverse (append
14695 (org-remove-uninherited-tags
14696 org-file-tags) tags)))))))))
14698 (defun org-add-prop-inherited (s)
14699 (add-text-properties 0 (length s) '(inherited t) s)
14702 (defun org-toggle-tag (tag &optional onoff)
14703 "Toggle the tag TAG for the current line.
14704 If ONOFF is `on' or `off', don't toggle but set to this state."
14705 (let (res current)
14706 (save-excursion
14707 (org-back-to-heading t)
14708 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14709 (point-at-eol) t)
14710 (progn
14711 (setq current (match-string 1))
14712 (replace-match ""))
14713 (setq current ""))
14714 (setq current (nreverse (org-split-string current ":")))
14715 (cond
14716 ((eq onoff 'on)
14717 (setq res t)
14718 (or (member tag current) (push tag current)))
14719 ((eq onoff 'off)
14720 (or (not (member tag current)) (setq current (delete tag current))))
14721 (t (if (member tag current)
14722 (setq current (delete tag current))
14723 (setq res t)
14724 (push tag current))))
14725 (end-of-line 1)
14726 (if current
14727 (progn
14728 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14729 (org-set-tags nil t))
14730 (delete-horizontal-space))
14731 (run-hooks 'org-after-tags-change-hook))
14732 res))
14734 (defun org-align-tags-here (to-col)
14735 ;; Assumes that this is a headline
14736 "Align tags on the current headline to TO-COL."
14737 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14738 (beginning-of-line 1)
14739 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14740 (< pos (match-beginning 2)))
14741 (progn
14742 (setq tags-l (- (match-end 2) (match-beginning 2)))
14743 (goto-char (match-beginning 1))
14744 (insert " ")
14745 (delete-region (point) (1+ (match-beginning 2)))
14746 (setq ncol (max (current-column)
14747 (1+ col)
14748 (if (> to-col 0)
14749 to-col
14750 (- (abs to-col) tags-l))))
14751 (setq p (point))
14752 (insert (make-string (- ncol (current-column)) ?\ ))
14753 (setq ncol (current-column))
14754 (when indent-tabs-mode (tabify p (point-at-eol)))
14755 (org-move-to-column (min ncol col)))
14756 (goto-char pos))))
14758 (defun org-set-tags-command (&optional arg just-align)
14759 "Call the set-tags command for the current entry."
14760 (interactive "P")
14761 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14762 (org-set-tags arg just-align)
14763 (save-excursion
14764 (unless (and (org-region-active-p)
14765 org-loop-over-headlines-in-active-region)
14766 (org-back-to-heading t))
14767 (org-set-tags arg just-align))))
14769 (defun org-set-tags-to (data)
14770 "Set the tags of the current entry to DATA, replacing the current tags.
14771 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14772 If DATA is nil or the empty string, any tags will be removed."
14773 (interactive "sTags: ")
14774 (setq data
14775 (cond
14776 ((eq data nil) "")
14777 ((equal data "") "")
14778 ((stringp data)
14779 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14780 ":"))
14781 ((listp data)
14782 (concat ":" (mapconcat 'identity data ":") ":"))))
14783 (when data
14784 (save-excursion
14785 (org-back-to-heading t)
14786 (when (looking-at org-complex-heading-regexp)
14787 (if (match-end 5)
14788 (progn
14789 (goto-char (match-beginning 5))
14790 (insert data)
14791 (delete-region (point) (point-at-eol))
14792 (org-set-tags nil 'align))
14793 (goto-char (point-at-eol))
14794 (insert " " data)
14795 (org-set-tags nil 'align)))
14796 (beginning-of-line 1)
14797 (if (looking-at ".*?\\([ \t]+\\)$")
14798 (delete-region (match-beginning 1) (match-end 1))))))
14800 (defun org-align-all-tags ()
14801 "Align the tags i all headings."
14802 (interactive)
14803 (save-excursion
14804 (or (ignore-errors (org-back-to-heading t))
14805 (outline-next-heading))
14806 (if (org-at-heading-p)
14807 (org-set-tags t)
14808 (message "No headings"))))
14810 (defvar org-indent-indentation-per-level)
14811 (defun org-set-tags (&optional arg just-align)
14812 "Set the tags for the current headline.
14813 With prefix ARG, realign all tags in headings in the current buffer.
14814 When JUST-ALIGN is non-nil, only align tags."
14815 (interactive "P")
14816 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14817 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14818 'region-start-level 'region))
14819 org-loop-over-headlines-in-active-region)
14820 (org-map-entries
14821 ;; We don't use ARG and JUST-ALIGN here because these args
14822 ;; are not useful when looping over headlines.
14823 `(org-set-tags)
14824 org-loop-over-headlines-in-active-region
14825 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14826 (let* ((re org-outline-regexp-bol)
14827 (current (unless arg (org-get-tags-string)))
14828 (col (current-column))
14829 (org-setting-tags t)
14830 table current-tags inherited-tags ; computed below when needed
14831 tags p0 c0 c1 rpl di tc level)
14832 (if arg
14833 (save-excursion
14834 (goto-char (point-min))
14835 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14836 (while (re-search-forward re nil t)
14837 (org-set-tags nil t)
14838 (end-of-line 1)))
14839 (message "All tags realigned to column %d" org-tags-column))
14840 (if just-align
14841 (setq tags current)
14842 ;; Get a new set of tags from the user
14843 (save-excursion
14844 (setq table (append org-tag-persistent-alist
14845 (or org-tag-alist (org-get-buffer-tags))
14846 (and
14847 org-complete-tags-always-offer-all-agenda-tags
14848 (org-global-tags-completion-table
14849 (org-agenda-files))))
14850 org-last-tags-completion-table table
14851 current-tags (org-split-string current ":")
14852 inherited-tags (nreverse
14853 (nthcdr (length current-tags)
14854 (nreverse (org-get-tags-at))))
14855 tags
14856 (if (or (eq t org-use-fast-tag-selection)
14857 (and org-use-fast-tag-selection
14858 (delq nil (mapcar 'cdr table))))
14859 (org-fast-tag-selection
14860 current-tags inherited-tags table
14861 (if org-fast-tag-selection-include-todo
14862 org-todo-key-alist))
14863 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14864 (org-trim
14865 (org-icompleting-read "Tags: "
14866 'org-tags-completion-function
14867 nil nil current 'org-tags-history))))))
14868 (while (string-match "[-+&]+" tags)
14869 ;; No boolean logic, just a list
14870 (setq tags (replace-match ":" t t tags))))
14872 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14874 (if org-tags-sort-function
14875 (setq tags (mapconcat 'identity
14876 (sort (org-split-string
14877 tags (org-re "[^[:alnum:]_@#%]+"))
14878 org-tags-sort-function) ":")))
14880 (if (string-match "\\`[\t ]*\\'" tags)
14881 (setq tags "")
14882 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14883 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14885 ;; Insert new tags at the correct column
14886 (beginning-of-line 1)
14887 (setq level (or (and (looking-at org-outline-regexp)
14888 (- (match-end 0) (point) 1))
14890 (cond
14891 ((and (equal current "") (equal tags "")))
14892 ((re-search-forward
14893 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14894 (point-at-eol) t)
14895 (if (equal tags "")
14896 (setq rpl "")
14897 (goto-char (match-beginning 0))
14898 (setq c0 (current-column)
14899 ;; compute offset for the case of org-indent-mode active
14900 di (if (org-bound-and-true-p org-indent-mode)
14901 (* (1- org-indent-indentation-per-level) (1- level))
14903 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14904 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14905 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14906 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14907 (replace-match rpl t t)
14908 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14909 tags)
14910 (t (error "Tags alignment failed")))
14911 (org-move-to-column col)
14912 (unless just-align
14913 (run-hooks 'org-after-tags-change-hook))))))
14915 (defun org-change-tag-in-region (beg end tag off)
14916 "Add or remove TAG for each entry in the region.
14917 This works in the agenda, and also in an org-mode buffer."
14918 (interactive
14919 (list (region-beginning) (region-end)
14920 (let ((org-last-tags-completion-table
14921 (if (derived-mode-p 'org-mode)
14922 (org-uniquify
14923 (delq nil (append (org-get-buffer-tags)
14924 (org-global-tags-completion-table))))
14925 (org-global-tags-completion-table))))
14926 (org-icompleting-read
14927 "Tag: " 'org-tags-completion-function nil nil nil
14928 'org-tags-history))
14929 (progn
14930 (message "[s]et or [r]emove? ")
14931 (equal (read-char-exclusive) ?r))))
14932 (if (fboundp 'deactivate-mark) (deactivate-mark))
14933 (let ((agendap (equal major-mode 'org-agenda-mode))
14934 l1 l2 m buf pos newhead (cnt 0))
14935 (goto-char end)
14936 (setq l2 (1- (org-current-line)))
14937 (goto-char beg)
14938 (setq l1 (org-current-line))
14939 (loop for l from l1 to l2 do
14940 (org-goto-line l)
14941 (setq m (get-text-property (point) 'org-hd-marker))
14942 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14943 (and agendap m))
14944 (setq buf (if agendap (marker-buffer m) (current-buffer))
14945 pos (if agendap m (point)))
14946 (with-current-buffer buf
14947 (save-excursion
14948 (save-restriction
14949 (goto-char pos)
14950 (setq cnt (1+ cnt))
14951 (org-toggle-tag tag (if off 'off 'on))
14952 (setq newhead (org-get-heading)))))
14953 (and agendap (org-agenda-change-all-lines newhead m))))
14954 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14956 (defun org-tags-completion-function (string predicate &optional flag)
14957 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14958 (confirm (lambda (x) (stringp (car x)))))
14959 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14960 (setq s1 (match-string 1 string)
14961 s2 (match-string 2 string))
14962 (setq s1 "" s2 string))
14963 (cond
14964 ((eq flag nil)
14965 ;; try completion
14966 (setq rtn (try-completion s2 ctable confirm))
14967 (if (stringp rtn)
14968 (setq rtn
14969 (concat s1 s2 (substring rtn (length s2))
14970 (if (and org-add-colon-after-tag-completion
14971 (assoc rtn ctable))
14972 ":" ""))))
14973 rtn)
14974 ((eq flag t)
14975 ;; all-completions
14976 (all-completions s2 ctable confirm))
14977 ((eq flag 'lambda)
14978 ;; exact match?
14979 (assoc s2 ctable)))))
14981 (defun org-fast-tag-insert (kwd tags face &optional end)
14982 "Insert KDW, and the TAGS, the latter with face FACE.
14983 Also insert END."
14984 (insert (format "%-12s" (concat kwd ":"))
14985 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14986 (or end "")))
14988 (defun org-fast-tag-show-exit (flag)
14989 (save-excursion
14990 (org-goto-line 3)
14991 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14992 (replace-match ""))
14993 (when flag
14994 (end-of-line 1)
14995 (org-move-to-column (- (window-width) 19) t)
14996 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14998 (defun org-set-current-tags-overlay (current prefix)
14999 "Add an overlay to CURRENT tag with PREFIX."
15000 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15001 (if (featurep 'xemacs)
15002 (org-overlay-display org-tags-overlay (concat prefix s)
15003 'secondary-selection)
15004 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15005 (org-overlay-display org-tags-overlay (concat prefix s)))))
15007 (defvar org-last-tag-selection-key nil)
15008 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15009 "Fast tag selection with single keys.
15010 CURRENT is the current list of tags in the headline, INHERITED is the
15011 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15012 possibly with grouping information. TODO-TABLE is a similar table with
15013 TODO keywords, should these have keys assigned to them.
15014 If the keys are nil, a-z are automatically assigned.
15015 Returns the new tags string, or nil to not change the current settings."
15016 (let* ((fulltable (append table todo-table))
15017 (maxlen (apply 'max (mapcar
15018 (lambda (x)
15019 (if (stringp (car x)) (string-width (car x)) 0))
15020 fulltable)))
15021 (buf (current-buffer))
15022 (expert (eq org-fast-tag-selection-single-key 'expert))
15023 (buffer-tags nil)
15024 (fwidth (+ maxlen 3 1 3))
15025 (ncol (/ (- (window-width) 4) fwidth))
15026 (i-face 'org-done)
15027 (c-face 'org-todo)
15028 tg cnt e c char c1 c2 ntable tbl rtn
15029 ov-start ov-end ov-prefix
15030 (exit-after-next org-fast-tag-selection-single-key)
15031 (done-keywords org-done-keywords)
15032 groups ingroup)
15033 (save-excursion
15034 (beginning-of-line 1)
15035 (if (looking-at
15036 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15037 (setq ov-start (match-beginning 1)
15038 ov-end (match-end 1)
15039 ov-prefix "")
15040 (setq ov-start (1- (point-at-eol))
15041 ov-end (1+ ov-start))
15042 (skip-chars-forward "^\n\r")
15043 (setq ov-prefix
15044 (concat
15045 (buffer-substring (1- (point)) (point))
15046 (if (> (current-column) org-tags-column)
15048 (make-string (- org-tags-column (current-column)) ?\ ))))))
15049 (move-overlay org-tags-overlay ov-start ov-end)
15050 (save-window-excursion
15051 (if expert
15052 (set-buffer (get-buffer-create " *Org tags*"))
15053 (delete-other-windows)
15054 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15055 (org-switch-to-buffer-other-window " *Org tags*"))
15056 (erase-buffer)
15057 (org-set-local 'org-done-keywords done-keywords)
15058 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15059 (org-fast-tag-insert "Current" current c-face "\n\n")
15060 (org-fast-tag-show-exit exit-after-next)
15061 (org-set-current-tags-overlay current ov-prefix)
15062 (setq tbl fulltable char ?a cnt 0)
15063 (while (setq e (pop tbl))
15064 (cond
15065 ((equal (car e) :startgroup)
15066 (push '() groups) (setq ingroup t)
15067 (when (not (= cnt 0))
15068 (setq cnt 0)
15069 (insert "\n"))
15070 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15071 ((equal (car e) :endgroup)
15072 (setq ingroup nil cnt 0)
15073 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15074 ((equal e '(:newline))
15075 (when (not (= cnt 0))
15076 (setq cnt 0)
15077 (insert "\n")
15078 (setq e (car tbl))
15079 (while (equal (car tbl) '(:newline))
15080 (insert "\n")
15081 (setq tbl (cdr tbl)))))
15082 ((equal e '(:grouptags)) nil)
15084 (setq tg (copy-sequence (car e)) c2 nil)
15085 (if (cdr e)
15086 (setq c (cdr e))
15087 ;; automatically assign a character.
15088 (setq c1 (string-to-char
15089 (downcase (substring
15090 tg (if (= (string-to-char tg) ?@) 1 0)))))
15091 (if (or (rassoc c1 ntable) (rassoc c1 table))
15092 (while (or (rassoc char ntable) (rassoc char table))
15093 (setq char (1+ char)))
15094 (setq c2 c1))
15095 (setq c (or c2 char)))
15096 (if ingroup (push tg (car groups)))
15097 (setq tg (org-add-props tg nil 'face
15098 (cond
15099 ((not (assoc tg table))
15100 (org-get-todo-face tg))
15101 ((member tg current) c-face)
15102 ((member tg inherited) i-face))))
15103 (if (equal (caar tbl) :grouptags)
15104 (org-add-props tg nil 'face 'org-tag-group))
15105 (if (and (= cnt 0) (not ingroup)) (insert " "))
15106 (insert "[" c "] " tg (make-string
15107 (- fwidth 4 (length tg)) ?\ ))
15108 (push (cons tg c) ntable)
15109 (when (= (setq cnt (1+ cnt)) ncol)
15110 (insert "\n")
15111 (if ingroup (insert " "))
15112 (setq cnt 0)))))
15113 (setq ntable (nreverse ntable))
15114 (insert "\n")
15115 (goto-char (point-min))
15116 (if (not expert) (org-fit-window-to-buffer))
15117 (setq rtn
15118 (catch 'exit
15119 (while t
15120 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15121 (if (not groups) "no " "")
15122 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15123 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15124 (setq org-last-tag-selection-key c)
15125 (cond
15126 ((= c ?\r) (throw 'exit t))
15127 ((= c ?!)
15128 (setq groups (not groups))
15129 (goto-char (point-min))
15130 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15131 ((= c ?\C-c)
15132 (if (not expert)
15133 (org-fast-tag-show-exit
15134 (setq exit-after-next (not exit-after-next)))
15135 (setq expert nil)
15136 (delete-other-windows)
15137 (set-window-buffer (split-window-vertically) " *Org tags*")
15138 (org-switch-to-buffer-other-window " *Org tags*")
15139 (org-fit-window-to-buffer)))
15140 ((or (= c ?\C-g)
15141 (and (= c ?q) (not (rassoc c ntable))))
15142 (org-detach-overlay org-tags-overlay)
15143 (setq quit-flag t))
15144 ((= c ?\ )
15145 (setq current nil)
15146 (if exit-after-next (setq exit-after-next 'now)))
15147 ((= c ?\t)
15148 (condition-case nil
15149 (setq tg (org-icompleting-read
15150 "Tag: "
15151 (or buffer-tags
15152 (with-current-buffer buf
15153 (org-get-buffer-tags)))))
15154 (quit (setq tg "")))
15155 (when (string-match "\\S-" tg)
15156 (add-to-list 'buffer-tags (list tg))
15157 (if (member tg current)
15158 (setq current (delete tg current))
15159 (push tg current)))
15160 (if exit-after-next (setq exit-after-next 'now)))
15161 ((setq e (rassoc c todo-table) tg (car e))
15162 (with-current-buffer buf
15163 (save-excursion (org-todo tg)))
15164 (if exit-after-next (setq exit-after-next 'now)))
15165 ((setq e (rassoc c ntable) tg (car e))
15166 (if (member tg current)
15167 (setq current (delete tg current))
15168 (loop for g in groups do
15169 (if (member tg g)
15170 (mapc (lambda (x)
15171 (setq current (delete x current)))
15172 g)))
15173 (push tg current))
15174 (if exit-after-next (setq exit-after-next 'now))))
15176 ;; Create a sorted list
15177 (setq current
15178 (sort current
15179 (lambda (a b)
15180 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15181 (if (eq exit-after-next 'now) (throw 'exit t))
15182 (goto-char (point-min))
15183 (beginning-of-line 2)
15184 (delete-region (point) (point-at-eol))
15185 (org-fast-tag-insert "Current" current c-face)
15186 (org-set-current-tags-overlay current ov-prefix)
15187 (while (re-search-forward
15188 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15189 (setq tg (match-string 1))
15190 (add-text-properties
15191 (match-beginning 1) (match-end 1)
15192 (list 'face
15193 (cond
15194 ((member tg current) c-face)
15195 ((member tg inherited) i-face)
15196 (t (get-text-property (match-beginning 1) 'face))))))
15197 (goto-char (point-min)))))
15198 (org-detach-overlay org-tags-overlay)
15199 (if rtn
15200 (mapconcat 'identity current ":")
15201 nil))))
15203 (defun org-get-tags-string ()
15204 "Get the TAGS string in the current headline."
15205 (unless (org-at-heading-p t)
15206 (user-error "Not on a heading"))
15207 (save-excursion
15208 (beginning-of-line 1)
15209 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15210 (org-match-string-no-properties 1)
15211 "")))
15213 (defun org-get-tags ()
15214 "Get the list of tags specified in the current headline."
15215 (org-split-string (org-get-tags-string) ":"))
15217 (defun org-get-buffer-tags ()
15218 "Get a table of all tags used in the buffer, for completion."
15219 (org-with-wide-buffer
15220 (goto-char (point-min))
15221 (let ((tag-re (concat org-outline-regexp-bol
15222 "\\(?:.*?[ \t]\\)?"
15223 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15224 tags)
15225 (while (re-search-forward tag-re nil t)
15226 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15227 (push tag tags)))
15228 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15230 ;;;; The mapping API
15232 (defun org-map-entries (func &optional match scope &rest skip)
15233 "Call FUNC at each headline selected by MATCH in SCOPE.
15235 FUNC is a function or a lisp form. The function will be called without
15236 arguments, with the cursor positioned at the beginning of the headline.
15237 The return values of all calls to the function will be collected and
15238 returned as a list.
15240 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15241 does not need to preserve point. After evaluation, the cursor will be
15242 moved to the end of the line (presumably of the headline of the
15243 processed entry) and search continues from there. Under some
15244 circumstances, this may not produce the wanted results. For example,
15245 if you have removed (e.g. archived) the current (sub)tree it could
15246 mean that the next entry will be skipped entirely. In such cases, you
15247 can specify the position from where search should continue by making
15248 FUNC set the variable `org-map-continue-from' to the desired buffer
15249 position.
15251 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15252 Only headlines that are matched by this query will be considered during
15253 the iteration. When MATCH is nil or t, all headlines will be
15254 visited by the iteration.
15256 SCOPE determines the scope of this command. It can be any of:
15258 nil The current buffer, respecting the restriction if any
15259 tree The subtree started with the entry at point
15260 region The entries within the active region, if any
15261 region-start-level
15262 The entries within the active region, but only those at
15263 the same level than the first one.
15264 file The current buffer, without restriction
15265 file-with-archives
15266 The current buffer, and any archives associated with it
15267 agenda All agenda files
15268 agenda-with-archives
15269 All agenda files with any archive files associated with them
15270 \(file1 file2 ...)
15271 If this is a list, all files in the list will be scanned
15273 The remaining args are treated as settings for the skipping facilities of
15274 the scanner. The following items can be given here:
15276 archive skip trees with the archive tag
15277 comment skip trees with the COMMENT keyword
15278 function or Emacs Lisp form:
15279 will be used as value for `org-agenda-skip-function', so
15280 whenever the function returns a position, FUNC will not be
15281 called for that entry and search will continue from the
15282 position returned
15284 If your function needs to retrieve the tags including inherited tags
15285 at the *current* entry, you can use the value of the variable
15286 `org-scanner-tags' which will be much faster than getting the value
15287 with `org-get-tags-at'. If your function gets properties with
15288 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15289 to t around the call to `org-entry-properties' to get the same speedup.
15290 Note that if your function moves around to retrieve tags and properties at
15291 a *different* entry, you cannot use these techniques."
15292 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15293 (not (org-region-active-p)))
15294 (let* ((org-agenda-archives-mode nil) ; just to make sure
15295 (org-agenda-skip-archived-trees (memq 'archive skip))
15296 (org-agenda-skip-comment-trees (memq 'comment skip))
15297 (org-agenda-skip-function
15298 (car (org-delete-all '(comment archive) skip)))
15299 (org-tags-match-list-sublevels t)
15300 (start-level (eq scope 'region-start-level))
15301 matcher file res
15302 org-todo-keywords-for-agenda
15303 org-done-keywords-for-agenda
15304 org-todo-keyword-alist-for-agenda
15305 org-tag-alist-for-agenda
15306 todo-only)
15308 (cond
15309 ((eq match t) (setq matcher t))
15310 ((eq match nil) (setq matcher t))
15311 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15313 (save-excursion
15314 (save-restriction
15315 (cond ((eq scope 'tree)
15316 (org-back-to-heading t)
15317 (org-narrow-to-subtree)
15318 (setq scope nil))
15319 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15320 (org-region-active-p))
15321 ;; If needed, set start-level to a string like "2"
15322 (when start-level
15323 (save-excursion
15324 (goto-char (region-beginning))
15325 (unless (org-at-heading-p) (outline-next-heading))
15326 (setq start-level (org-current-level))))
15327 (narrow-to-region (region-beginning)
15328 (save-excursion
15329 (goto-char (region-end))
15330 (unless (and (bolp) (org-at-heading-p))
15331 (outline-next-heading))
15332 (point)))
15333 (setq scope nil)))
15335 (if (not scope)
15336 (progn
15337 (org-agenda-prepare-buffers
15338 (list (buffer-file-name (current-buffer))))
15339 (setq res (org-scan-tags func matcher todo-only start-level)))
15340 ;; Get the right scope
15341 (cond
15342 ((and scope (listp scope) (symbolp (car scope)))
15343 (setq scope (eval scope)))
15344 ((eq scope 'agenda)
15345 (setq scope (org-agenda-files t)))
15346 ((eq scope 'agenda-with-archives)
15347 (setq scope (org-agenda-files t))
15348 (setq scope (org-add-archive-files scope)))
15349 ((eq scope 'file)
15350 (setq scope (list (buffer-file-name))))
15351 ((eq scope 'file-with-archives)
15352 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15353 (org-agenda-prepare-buffers scope)
15354 (while (setq file (pop scope))
15355 (with-current-buffer (org-find-base-buffer-visiting file)
15356 (save-excursion
15357 (save-restriction
15358 (widen)
15359 (goto-char (point-min))
15360 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15361 res)))
15363 ;;; Properties API
15365 (defconst org-special-properties
15366 '("ALLTAGS" "BLOCKED" "CATEGORY" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE"
15367 "FILE" "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA"
15368 "TODO")
15369 "The special properties valid in Org mode.
15370 These are properties that are not defined in the property drawer,
15371 but in some other way.")
15373 (defconst org-default-properties
15374 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15375 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15376 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15377 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15378 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15379 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15380 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15381 "Some properties that are used by Org mode for various purposes.
15382 Being in this list makes sure that they are offered for completion.")
15384 (defun org--update-property-plist (key val props)
15385 "Associate KEY to VAL in alist PROPS.
15386 Modifications are made by side-effect. Return new alist."
15387 (let* ((appending (string= (substring key -1) "+"))
15388 (key (if appending (substring key 0 -1) key))
15389 (old (assoc-string key props t)))
15390 (if (not old) (cons (cons key val) props)
15391 (setcdr old (if appending (concat (cdr old) " " val) val))
15392 props)))
15394 (defun org-get-property-block (&optional beg force)
15395 "Return the (beg . end) range of the body of the property drawer.
15396 BEG is the beginning of the current subtree, or of the part
15397 before the first headline. If it is not given, it will be found.
15398 If the drawer does not exist, create it if FORCE is non-nil, or
15399 return nil."
15400 (org-with-wide-buffer
15401 (when beg (goto-char beg))
15402 (unless (org-before-first-heading-p)
15403 (let ((beg (cond (beg)
15404 ((or (not (featurep 'org-inlinetask))
15405 (org-inlinetask-in-task-p))
15406 (org-back-to-heading t))
15407 (t (org-with-limited-levels (org-back-to-heading t))))))
15408 (forward-line)
15409 (when (org-looking-at-p org-planning-line-re) (forward-line))
15410 (cond ((looking-at org-property-drawer-re)
15411 (forward-line)
15412 (cons (point) (progn (goto-char (match-end 0))
15413 (line-beginning-position))))
15414 (force
15415 (goto-char beg)
15416 (org-insert-property-drawer)
15417 (let ((pos (save-excursion (search-forward ":END:")
15418 (line-beginning-position))))
15419 (cons pos pos))))))))
15421 (defun org-at-property-p ()
15422 "Non-nil when point is inside a property drawer.
15423 See `org-property-re' for match data, if applicable."
15424 (save-excursion
15425 (beginning-of-line)
15426 (and (looking-at org-property-re)
15427 (let ((property-drawer (save-match-data (org-get-property-block))))
15428 (and property-drawer (< (point) (cdr property-drawer)))))))
15430 (defun org-property-action ()
15431 "Do an action on properties."
15432 (interactive)
15433 (unless (org-at-property-p) (user-error "Not at a property"))
15434 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15435 (let ((c (read-char-exclusive)))
15436 (case c
15437 (?s (call-interactively #'org-set-property))
15438 (?d (call-interactively #'org-delete-property))
15439 (?D (call-interactively #'org-delete-property-globally))
15440 (?c (call-interactively #'org-compute-property-at-point))
15441 (otherwise (user-error "No such property action %c" c)))))
15443 (defun org-inc-effort ()
15444 "Increment the value of the effort property in the current entry."
15445 (interactive)
15446 (org-set-effort nil t))
15448 (defvar org-clock-effort) ; Defined in org-clock.el.
15449 (defvar org-clock-current-task) ; Defined in org-clock.el.
15450 (defun org-set-effort (&optional value increment)
15451 "Set the effort property of the current entry.
15452 With numerical prefix arg, use the nth allowed value, 0 stands for the
15453 10th allowed value.
15455 When INCREMENT is non-nil, set the property to the next allowed value."
15456 (interactive "P")
15457 (if (equal value 0) (setq value 10))
15458 (let* ((completion-ignore-case t)
15459 (prop org-effort-property)
15460 (cur (org-entry-get nil prop))
15461 (allowed (org-property-get-allowed-values nil prop 'table))
15462 (existing (mapcar 'list (org-property-values prop)))
15463 (heading (nth 4 (org-heading-components)))
15465 (val (cond
15466 ((stringp value) value)
15467 ((and allowed (integerp value))
15468 (or (car (nth (1- value) allowed))
15469 (car (org-last allowed))))
15470 ((and allowed increment)
15471 (or (caadr (member (list cur) allowed))
15472 (user-error "Allowed effort values are not set")))
15473 (allowed
15474 (message "Select 1-9,0, [RET%s]: %s"
15475 (if cur (concat "=" cur) "")
15476 (mapconcat 'car allowed " "))
15477 (setq rpl (read-char-exclusive))
15478 (if (equal rpl ?\r)
15480 (setq rpl (- rpl ?0))
15481 (if (equal rpl 0) (setq rpl 10))
15482 (if (and (> rpl 0) (<= rpl (length allowed)))
15483 (car (nth (1- rpl) allowed))
15484 (org-completing-read "Effort: " allowed nil))))
15486 (let (org-completion-use-ido org-completion-use-iswitchb)
15487 (org-completing-read
15488 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15489 (concat "[" cur "]") "")
15490 ": ")
15491 existing nil nil "" nil cur))))))
15492 (unless (equal (org-entry-get nil prop) val)
15493 (org-entry-put nil prop val))
15494 (org-refresh-property
15495 '((effort . identity)
15496 (effort-minutes . org-duration-string-to-minutes))
15497 val)
15498 (when (string= heading org-clock-current-task)
15499 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15500 (org-clock-update-mode-line))
15501 (message "%s is now %s" prop val)))
15503 (defun org-entry-properties (&optional pom which)
15504 "Get all properties of the current entry.
15506 When POM is a buffer position, get all properties from the entry
15507 there instead.
15509 This includes the TODO keyword, the tags, time strings for
15510 deadline, scheduled, and clocking, and any additional properties
15511 defined in the entry.
15513 If WHICH is nil or `all', get all properties. If WHICH is
15514 `special' or `standard', only get that subclass. If WHICH is
15515 a string, only get that property.
15517 Return value is an alist. Keys are properties, as upcased
15518 strings."
15519 (org-with-point-at pom
15520 (when (and (derived-mode-p 'org-mode)
15521 (ignore-errors (org-back-to-heading t)))
15522 (catch 'exit
15523 (let* ((beg (point))
15524 (specific (and (stringp which) (upcase which)))
15525 (which (cond ((not specific) which)
15526 ((member specific org-special-properties) 'special)
15527 (t 'standard)))
15528 props)
15529 ;; Get the special properties, like TODO and TAGS.
15530 (when (memq which '(nil all special))
15531 (when (or (not specific) (string= specific "CLOCKSUM"))
15532 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15533 (when clocksum
15534 (push (cons "CLOCKSUM"
15535 (org-columns-number-to-string
15536 (/ (float clocksum) 60.) 'add_times))
15537 props)))
15538 (when specific (throw 'exit props)))
15539 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15540 (let ((clocksumt (get-text-property (point)
15541 :org-clock-minutes-today)))
15542 (when clocksumt
15543 (push (cons "CLOCKSUM_T"
15544 (org-columns-number-to-string
15545 (/ (float clocksumt) 60.) 'add_times))
15546 props)))
15547 (when specific (throw 'exit props)))
15548 (when (or (not specific) (string= specific "ITEM"))
15549 (when (looking-at org-complex-heading-regexp)
15550 (push (cons "ITEM"
15551 (concat
15552 (org-match-string-no-properties 1)
15553 (let ((title (org-match-string-no-properties 4)))
15554 (when (org-string-nw-p title)
15555 (concat " " (org-remove-tabs title))))))
15556 props))
15557 (when specific (throw 'exit props)))
15558 (when (or (not specific) (string= specific "TODO"))
15559 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15560 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15561 (when specific (throw 'exit props)))
15562 (when (or (not specific) (string= specific "PRIORITY"))
15563 (when (looking-at org-priority-regexp)
15564 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15565 (when specific (throw 'exit props)))
15566 (when (or (not specific) (string= specific "FILE"))
15567 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15568 props)
15569 (when specific (throw 'exit props)))
15570 (when (or (not specific) (string= specific "TAGS"))
15571 (let ((value (org-string-nw-p (org-get-tags-string))))
15572 (when value (push (cons "TAGS" value) props)))
15573 (when specific (throw 'exit props)))
15574 (when (or (not specific) (string= specific "ALLTAGS"))
15575 (let ((value (org-get-tags-at)))
15576 (when value
15577 (push (cons "ALLTAGS"
15578 (format ":%s:" (mapconcat #'identity value ":")))
15579 props)))
15580 (when specific (throw 'exit props)))
15581 (when (or (not specific) (string= specific "BLOCKED"))
15582 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15583 (when specific (throw 'exit props)))
15584 (when (or (not specific)
15585 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15586 (forward-line)
15587 (when (org-looking-at-p org-planning-line-re)
15588 (end-of-line)
15589 (let ((bol (line-beginning-position))
15590 ;; Backward compatibility: time keywords used to
15591 ;; be configurable (before 8.3). Make sure we
15592 ;; get the correct keyword.
15593 (key-assoc `(("CLOSED" . ,org-closed-string)
15594 ("DEADLINE" . ,org-deadline-string)
15595 ("SCHEDULED" . ,org-scheduled-string))))
15596 (dolist (pair (if specific (list (assoc specific key-assoc))
15597 key-assoc))
15598 (save-excursion
15599 (when (search-backward (cdr pair) bol t)
15600 (goto-char (match-end 0))
15601 (skip-chars-forward " \t")
15602 (and (looking-at org-ts-regexp-both)
15603 (push (cons (car pair)
15604 (org-match-string-no-properties 0))
15605 props)))))))
15606 (when specific (throw 'exit props)))
15607 (when (or (not specific)
15608 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15609 (let ((find-ts
15610 (lambda (end ts)
15611 (let ((regexp (if (or (string= specific "TIMESTAMP")
15612 (assoc "TIMESTAMP_IA" ts))
15613 org-ts-regexp
15614 org-ts-regexp-both)))
15615 (catch 'next
15616 (while (re-search-forward regexp end t)
15617 (backward-char)
15618 (let ((object (org-element-context)))
15619 ;; Accept to match timestamps in node
15620 ;; properties, too.
15621 (when (memq (org-element-type object)
15622 '(node-property timestamp))
15623 (let ((type
15624 (org-element-property :type object)))
15625 (cond
15626 ((and (memq type '(active active-range))
15627 (not (equal specific "TIMESTAMP_IA")))
15628 (unless (assoc "TIMESTAMP" ts)
15629 (push (cons "TIMESTAMP"
15630 (org-element-property
15631 :raw-value object))
15633 (when specific (throw 'exit ts))))
15634 ((and (memq type '(inactive inactive-range))
15635 (not (string= specific "TIMESTAMP")))
15636 (unless (assoc "TIMESTAMP_IA" ts)
15637 (push (cons "TIMESTAMP_IA"
15638 (org-element-property
15639 :raw-value object))
15641 (when specific (throw 'exit ts))))))
15642 ;; Both timestamp types are found,
15643 ;; move to next part.
15644 (when (= (length ts) 2) (throw 'next ts)))))
15645 ts)))))
15646 (goto-char beg)
15647 ;; First look for timestamps within headline.
15648 (let ((ts (funcall find-ts (line-end-position) nil)))
15649 (if (= (length ts) 2) (setq props (nconc ts props))
15650 (forward-line)
15651 ;; Then find timestamps in the section, skipping
15652 ;; planning line.
15653 (when (org-looking-at-p org-planning-line-re)
15654 (forward-line))
15655 (let ((end (save-excursion (outline-next-heading))))
15656 (setq props (nconc (funcall find-ts end ts) props))))))))
15657 ;; Get the standard properties, like :PROP:.
15658 (when (memq which '(nil all standard))
15659 ;; If we are looking after a specific property, delegate
15660 ;; to `org-entry-get', which is faster. However, make an
15661 ;; exception for "CATEGORY", since it can be also set
15662 ;; through keywords (i.e. #+CATEGORY).
15663 (if (and specific (not (equal specific "CATEGORY")))
15664 (let ((value (org-entry-get beg specific nil t)))
15665 (throw 'exit (and value (list (cons specific value)))))
15666 (let ((range (org-get-property-block beg)))
15667 (when range
15668 (let ((end (cdr range)) seen-base)
15669 (goto-char (car range))
15670 ;; Unlike to `org--update-property-plist', we
15671 ;; handle the case where base values is found
15672 ;; after its extension. We also forbid standard
15673 ;; properties to be named as special properties.
15674 (while (re-search-forward org-property-re end t)
15675 (let* ((key (upcase (org-match-string-no-properties 2)))
15676 (extendp (org-string-match-p "\\+\\'" key))
15677 (key-base (if extendp (substring key 0 -1) key))
15678 (value (org-match-string-no-properties 3)))
15679 (cond
15680 ((member-ignore-case key-base org-special-properties))
15681 (extendp
15682 (setq props
15683 (org--update-property-plist key value props)))
15684 ((member key seen-base))
15685 (t (push key seen-base)
15686 (let ((p (assoc-string key props t)))
15687 (if p (setcdr p (concat value " " (cdr p)))
15688 (push (cons key value) props))))))))))))
15689 (unless (assoc "CATEGORY" props)
15690 (push (cons "CATEGORY" (org-get-category beg)) props)
15691 (when (string= specific "CATEGORY") (throw 'exit props)))
15692 ;; Return value.
15693 (append (get-text-property beg 'org-summaries) props))))))
15695 (defun org-entry-get (pom property &optional inherit literal-nil)
15696 "Get value of PROPERTY for entry or content at point-or-marker POM.
15698 If INHERIT is non-nil and the entry does not have the property,
15699 then also check higher levels of the hierarchy. If INHERIT is
15700 the symbol `selective', use inheritance only if the setting in
15701 `org-use-property-inheritance' selects PROPERTY for inheritance.
15703 If the property is present but empty, the return value is the
15704 empty string. If the property is not present at all, nil is
15705 returned. In any other case, return the value as a string.
15706 Search is case-insensitive.
15708 If LITERAL-NIL is set, return the string value \"nil\" as
15709 a string, do not interpret it as the list atom nil. This is used
15710 for inheritance when a \"nil\" value can supersede a non-nil
15711 value higher up the hierarchy."
15712 (org-with-point-at pom
15713 (cond
15714 ((and inherit
15715 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15716 (org-entry-get-with-inheritance property literal-nil))
15717 ((member-ignore-case property org-special-properties)
15718 ;; We need a special property. Use `org-entry-properties' to
15719 ;; retrieve it, but specify the wanted property.
15720 (cdr (assoc-string property (org-entry-properties nil property))))
15722 (let ((range (org-get-property-block)))
15723 (when range
15724 (let* ((case-fold-search t)
15725 (end (cdr range))
15726 (props
15727 (let ((global
15728 (or (assoc-string property org-file-properties t)
15729 (assoc-string property org-global-properties t)
15730 (assoc-string
15731 property org-global-properties-fixed t))))
15732 ;; Make sure to not re-use GLOBAL as
15733 ;; `org--update-property-plist' would alter it by
15734 ;; side-effect.
15735 (and global (list (cons property (cdr global))))))
15736 (find-value
15737 (lambda (key)
15738 (when (re-search-forward (org-re-property key nil t) end t)
15739 (setq props
15740 (org--update-property-plist
15741 key (org-match-string-no-properties 3) props))))))
15742 (goto-char (car range))
15743 ;; Find base value.
15744 (save-excursion (funcall find-value property))
15745 ;; Find additional values.
15746 (let ((property+ (concat property "+")))
15747 (while (funcall find-value property+)))
15748 ;; Return final value.
15749 (let ((val (cdr (assoc-string property props t))))
15750 (if literal-nil val (org-not-nil val))))))))))
15752 (defun org-property-or-variable-value (var &optional inherit)
15753 "Check if there is a property fixing the value of VAR.
15754 If yes, return this value. If not, return the current value of the variable."
15755 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15756 (if (and prop (stringp prop) (string-match "\\S-" prop))
15757 (read prop)
15758 (symbol-value var))))
15760 (defun org-entry-delete (pom property)
15761 "Delete the property PROPERTY from entry at point-or-marker POM."
15762 (unless (member property org-special-properties)
15763 (org-with-point-at pom
15764 (let ((range (org-get-property-block)))
15765 (when range
15766 (let ((begin (car range))
15767 (end (copy-marker (cdr range))))
15768 (goto-char begin)
15769 (when (re-search-forward (org-re-property property nil t) end t)
15770 (delete-region (match-beginning 0) (line-beginning-position 2))
15771 ;; If drawer is empty, remove it altogether.
15772 (when (= begin end)
15773 (delete-region (line-beginning-position 0)
15774 (line-beginning-position 2)))
15775 (set-marker end nil))))))))
15777 ;; Multi-values properties are properties that contain multiple values
15778 ;; These values are assumed to be single words, separated by whitespace.
15779 (defun org-entry-add-to-multivalued-property (pom property value)
15780 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15781 (let* ((old (org-entry-get pom property))
15782 (values (and old (org-split-string old "[ \t]"))))
15783 (setq value (org-entry-protect-space value))
15784 (unless (member value values)
15785 (setq values (append values (list value)))
15786 (org-entry-put pom property
15787 (mapconcat 'identity values " ")))))
15789 (defun org-entry-remove-from-multivalued-property (pom property value)
15790 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15791 (let* ((old (org-entry-get pom property))
15792 (values (and old (org-split-string old "[ \t]"))))
15793 (setq value (org-entry-protect-space value))
15794 (when (member value values)
15795 (setq values (delete value values))
15796 (org-entry-put pom property
15797 (mapconcat 'identity values " ")))))
15799 (defun org-entry-member-in-multivalued-property (pom property value)
15800 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15801 (let* ((old (org-entry-get pom property))
15802 (values (and old (org-split-string old "[ \t]"))))
15803 (setq value (org-entry-protect-space value))
15804 (member value values)))
15806 (defun org-entry-get-multivalued-property (pom property)
15807 "Return a list of values in a multivalued property."
15808 (let* ((value (org-entry-get pom property))
15809 (values (and value (org-split-string value "[ \t]"))))
15810 (mapcar 'org-entry-restore-space values)))
15812 (defun org-entry-put-multivalued-property (pom property &rest values)
15813 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15814 VALUES should be a list of strings. Spaces will be protected."
15815 (org-entry-put pom property
15816 (mapconcat 'org-entry-protect-space values " "))
15817 (let* ((value (org-entry-get pom property))
15818 (values (and value (org-split-string value "[ \t]"))))
15819 (mapcar 'org-entry-restore-space values)))
15821 (defun org-entry-protect-space (s)
15822 "Protect spaces and newline in string S."
15823 (while (string-match " " s)
15824 (setq s (replace-match "%20" t t s)))
15825 (while (string-match "\n" s)
15826 (setq s (replace-match "%0A" t t s)))
15829 (defun org-entry-restore-space (s)
15830 "Restore spaces and newline in string S."
15831 (while (string-match "%20" s)
15832 (setq s (replace-match " " t t s)))
15833 (while (string-match "%0A" s)
15834 (setq s (replace-match "\n" t t s)))
15837 (defvar org-entry-property-inherited-from (make-marker)
15838 "Marker pointing to the entry from where a property was inherited.
15839 Each call to `org-entry-get-with-inheritance' will set this marker to the
15840 location of the entry where the inheritance search matched. If there was
15841 no match, the marker will point nowhere.
15842 Note that also `org-entry-get' calls this function, if the INHERIT flag
15843 is set.")
15845 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15846 "Get PROPERTY of entry or content at point, search higher levels if needed.
15847 The search will stop at the first ancestor which has the property defined.
15848 If the value found is \"nil\", return nil to show that the property
15849 should be considered as undefined (this is the meaning of nil here).
15850 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15851 (move-marker org-entry-property-inherited-from nil)
15852 (let (value)
15853 (org-with-wide-buffer
15854 (catch 'exit
15855 (while t
15856 (when (setq value (org-entry-get nil property nil literal-nil))
15857 (org-back-to-heading t)
15858 (move-marker org-entry-property-inherited-from (point))
15859 (throw 'exit nil))
15860 (or (org-up-heading-safe) (throw 'exit nil)))))
15861 (unless value
15862 (setq value
15863 (cdr (or (assoc-string property org-file-properties t)
15864 (assoc-string property org-global-properties t)
15865 (assoc-string property org-global-properties-fixed t)))))
15866 (if literal-nil value (org-not-nil value))))
15868 (defvar org-property-changed-functions nil
15869 "Hook called when the value of a property has changed.
15870 Each hook function should accept two arguments, the name of the property
15871 and the new value.")
15873 (defun org-entry-put (pom property value)
15874 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15876 If the value is `nil', it is converted to the empty string. If
15877 it is not a string, an error is raised.
15879 PROPERTY can be any regular property (see
15880 `org-special-properties'). It can also be \"TODO\",
15881 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15883 For the last two properties, VALUE may have any of the special
15884 values \"earlier\" and \"later\". The function then increases or
15885 decreases scheduled or deadline date by one day."
15886 (cond ((null value) (setq value ""))
15887 ((not (stringp value)) (error "Properties values should be strings")))
15888 (org-with-point-at pom
15889 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15890 (org-back-to-heading t)
15891 (org-with-limited-levels (org-back-to-heading t)))
15892 (let ((beg (point)))
15893 (cond
15894 ((equal property "TODO")
15895 (cond ((not (org-string-nw-p value)) (setq value 'none))
15896 ((not (member value org-todo-keywords-1))
15897 (user-error "\"%s\" is not a valid TODO state" value)))
15898 (org-todo value)
15899 (org-set-tags nil 'align))
15900 ((equal property "PRIORITY")
15901 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15902 (org-set-tags nil 'align))
15903 ((equal property "SCHEDULED")
15904 (forward-line)
15905 (if (and (org-looking-at-p org-planning-line-re)
15906 (re-search-forward
15907 org-scheduled-time-regexp (line-end-position) t))
15908 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15909 ((string= value "later") (org-timestamp-change 1 'day))
15910 ((string= value "") (org-schedule '(4)))
15911 (t (org-schedule nil value)))
15912 (if (member value '("earlier" "later" ""))
15913 (call-interactively #'org-schedule)
15914 (org-schedule nil value))))
15915 ((equal property "DEADLINE")
15916 (forward-line)
15917 (if (and (org-looking-at-p org-planning-line-re)
15918 (re-search-forward
15919 org-deadline-time-regexp (line-end-position) t))
15920 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15921 ((string= value "later") (org-timestamp-change 1 'day))
15922 ((string= value "") (org-deadline '(4)))
15923 (t (org-deadline nil value)))
15924 (if (member value '("earlier" "later" ""))
15925 (call-interactively #'org-deadline)
15926 (org-deadline nil value))))
15927 ((member property org-special-properties)
15928 (error "The %s property cannot be set with `org-entry-put'" property))
15930 (let* ((range (org-get-property-block beg 'force))
15931 (end (cdr range))
15932 (case-fold-search t))
15933 (goto-char (car range))
15934 (if (re-search-forward (org-re-property property nil t) end t)
15935 (progn (delete-region (match-beginning 0) (match-end 0))
15936 (goto-char (match-beginning 0)))
15937 (goto-char end)
15938 (insert "\n")
15939 (backward-char))
15940 (insert ":" property ":")
15941 (when value (insert " " value))
15942 (org-indent-line)))))
15943 (run-hook-with-args 'org-property-changed-functions property value)))
15945 (defun org-buffer-property-keys (&optional specials defaults columns)
15946 "Get all property keys in the current buffer.
15948 When SPECIALS is non-nil, also list the special properties that
15949 reflect things like tags and TODO state.
15951 When DEFAULTS is non-nil, also include properties that has
15952 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15953 DESCRIPTION, LOCATION, and LOGGING and others.
15955 When COLUMNS in non-nil, also include property names given in
15956 COLUMN formats in the current buffer."
15957 (let ((case-fold-search t)
15958 (props (append
15959 (and specials org-special-properties)
15960 (and defaults (cons org-effort-property org-default-properties))
15961 nil)))
15962 (org-with-wide-buffer
15963 (goto-char (point-min))
15964 (while (re-search-forward org-property-start-re nil t)
15965 (let ((range (org-get-property-block)))
15966 (catch 'skip
15967 (unless range
15968 (when (and (not (org-before-first-heading-p))
15969 (y-or-n-p (format "Malformed drawer at %d, repair?"
15970 (line-beginning-position))))
15971 (org-get-property-block nil t))
15972 (throw 'skip nil))
15973 (goto-char (car range))
15974 (let ((begin (car range))
15975 (end (cdr range)))
15976 ;; Make sure that found property block is not located
15977 ;; before current point, as it would generate an infloop.
15978 ;; It can happen, for example, in the following
15979 ;; situation:
15981 ;; * Headline
15982 ;; :PROPERTIES:
15983 ;; ...
15984 ;; :END:
15985 ;; *************** Inlinetask
15986 ;; #+BEGIN_EXAMPLE
15987 ;; :PROPERTIES:
15988 ;; #+END_EXAMPLE
15990 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
15991 (while (< (point) end)
15992 (let ((p (progn (looking-at org-property-re)
15993 (org-match-string-no-properties 2))))
15994 ;; Only add true property name, not extension symbol.
15995 (add-to-list 'props
15996 (if (not (org-string-match-p "\\+\\'" p)) p
15997 (substring p 0 -1))))
15998 (forward-line))))
15999 (outline-next-heading)))
16000 (when columns
16001 (goto-char (point-min))
16002 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16003 (let ((element (org-element-at-point)))
16004 (when (memq (org-element-type element) '(keyword node-property))
16005 (let ((value (org-element-property :value element))
16006 (start 0))
16007 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16008 (setq start (match-end 0))
16009 (let ((p (org-match-string-no-properties 1 value)))
16010 (unless (member-ignore-case p org-special-properties)
16011 (add-to-list 'props p))))))))))
16012 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16014 (defun org-property-values (key)
16015 "List all non-nil values of property KEY in current buffer."
16016 (org-with-wide-buffer
16017 (goto-char (point-min))
16018 (let ((case-fold-search t)
16019 (re (org-re-property key))
16020 values)
16021 (while (re-search-forward re nil t)
16022 (add-to-list 'values (org-entry-get (point) key)))
16023 values)))
16025 (defun org-insert-property-drawer ()
16026 "Insert a property drawer into the current entry."
16027 (org-with-wide-buffer
16028 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16029 (org-back-to-heading t)
16030 (org-with-limited-levels (org-back-to-heading t)))
16031 (forward-line)
16032 (when (org-looking-at-p org-planning-line-re) (forward-line))
16033 (unless (org-looking-at-p org-property-drawer-re)
16034 (let ((inhibit-read-only t))
16035 (unless (bolp) (insert "\n"))
16036 (let ((begin (point)))
16037 (insert ":PROPERTIES:\n:END:\n")
16038 (org-indent-region begin (point)))))))
16040 (defun org-insert-drawer (&optional arg drawer)
16041 "Insert a drawer at point.
16043 When optional argument ARG is non-nil, insert a property drawer.
16045 Optional argument DRAWER, when non-nil, is a string representing
16046 drawer's name. Otherwise, the user is prompted for a name.
16048 If a region is active, insert the drawer around that region
16049 instead.
16051 Point is left between drawer's boundaries."
16052 (interactive "P")
16053 (let* ((drawer (if arg "PROPERTIES"
16054 (or drawer (read-from-minibuffer "Drawer: ")))))
16055 (cond
16056 ;; With C-u, fall back on `org-insert-property-drawer'
16057 (arg (org-insert-property-drawer))
16058 ;; Check validity of suggested drawer's name.
16059 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16060 (user-error "Invalid drawer name"))
16061 ;; With an active region, insert a drawer at point.
16062 ((not (org-region-active-p))
16063 (progn
16064 (unless (bolp) (insert "\n"))
16065 (insert (format ":%s:\n\n:END:\n" drawer))
16066 (forward-line -2)))
16067 ;; Otherwise, insert the drawer at point
16069 (let ((rbeg (region-beginning))
16070 (rend (copy-marker (region-end))))
16071 (unwind-protect
16072 (progn
16073 (goto-char rbeg)
16074 (beginning-of-line)
16075 (when (save-excursion
16076 (re-search-forward org-outline-regexp-bol rend t))
16077 (user-error "Drawers cannot contain headlines"))
16078 ;; Position point at the beginning of the first
16079 ;; non-blank line in region. Insert drawer's opening
16080 ;; there, then indent it.
16081 (org-skip-whitespace)
16082 (beginning-of-line)
16083 (insert ":" drawer ":\n")
16084 (forward-line -1)
16085 (indent-for-tab-command)
16086 ;; Move point to the beginning of the first blank line
16087 ;; after the last non-blank line in region. Insert
16088 ;; drawer's closing, then indent it.
16089 (goto-char rend)
16090 (skip-chars-backward " \r\t\n")
16091 (insert "\n:END:")
16092 (deactivate-mark t)
16093 (indent-for-tab-command)
16094 (unless (eolp) (insert "\n")))
16095 ;; Clear marker, whatever the outcome of insertion is.
16096 (set-marker rend nil)))))))
16098 (defvar org-property-set-functions-alist nil
16099 "Property set function alist.
16100 Each entry should have the following format:
16102 (PROPERTY . READ-FUNCTION)
16104 The read function will be called with the same argument as
16105 `org-completing-read'.")
16107 (defun org-set-property-function (property)
16108 "Get the function that should be used to set PROPERTY.
16109 This is computed according to `org-property-set-functions-alist'."
16110 (or (cdr (assoc property org-property-set-functions-alist))
16111 'org-completing-read))
16113 (defun org-read-property-value (property)
16114 "Read PROPERTY value from user."
16115 (let* ((completion-ignore-case t)
16116 (allowed (org-property-get-allowed-values nil property 'table))
16117 (cur (org-entry-get nil property))
16118 (prompt (concat property " value"
16119 (if (and cur (string-match "\\S-" cur))
16120 (concat " [" cur "]") "") ": "))
16121 (set-function (org-set-property-function property))
16122 (val (if allowed
16123 (funcall set-function prompt allowed nil
16124 (not (get-text-property 0 'org-unrestricted
16125 (caar allowed))))
16126 (let (org-completion-use-ido org-completion-use-iswitchb)
16127 (funcall set-function prompt
16128 (mapcar 'list (org-property-values property))
16129 nil nil "" nil cur)))))
16130 (org-trim val)))
16132 (defvar org-last-set-property nil)
16133 (defvar org-last-set-property-value nil)
16134 (defun org-read-property-name ()
16135 "Read a property name."
16136 (let* ((completion-ignore-case t)
16137 (keys (org-buffer-property-keys nil t t))
16138 (default-prop (or (save-excursion
16139 (save-match-data
16140 (beginning-of-line)
16141 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16142 (null (string= (match-string 1) "END"))
16143 (match-string 1))))
16144 org-last-set-property))
16145 (property (org-icompleting-read
16146 (concat "Property"
16147 (if default-prop (concat " [" default-prop "]") "")
16148 ": ")
16149 (mapcar 'list keys)
16150 nil nil nil nil
16151 default-prop)))
16152 (if (member property keys)
16153 property
16154 (or (cdr (assoc (downcase property)
16155 (mapcar (lambda (x) (cons (downcase x) x))
16156 keys)))
16157 property))))
16159 (defun org-set-property-and-value (use-last)
16160 "Allow to set [PROPERTY]: [value] direction from prompt.
16161 When use-default, don't even ask, just use the last
16162 \"[PROPERTY]: [value]\" string from the history."
16163 (interactive "P")
16164 (let* ((completion-ignore-case t)
16165 (pv (or (and use-last org-last-set-property-value)
16166 (org-completing-read
16167 "Enter a \"[Property]: [value]\" pair: "
16168 nil nil nil nil nil
16169 org-last-set-property-value)))
16170 prop val)
16171 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16172 (setq prop (match-string 1 pv)
16173 val (match-string 2 pv))
16174 (org-set-property prop val))))
16176 (defun org-set-property (property value)
16177 "In the current entry, set PROPERTY to VALUE.
16178 When called interactively, this will prompt for a property name, offering
16179 completion on existing and default properties. And then it will prompt
16180 for a value, offering completion either on allowed values (via an inherited
16181 xxx_ALL property) or on existing values in other instances of this property
16182 in the current file."
16183 (interactive (list nil nil))
16184 (let* ((property (or property (org-read-property-name)))
16185 (value (or value (org-read-property-value property)))
16186 (fn (cdr (assoc property org-properties-postprocess-alist))))
16187 (setq org-last-set-property property)
16188 (setq org-last-set-property-value (concat property ": " value))
16189 ;; Possibly postprocess the inserted value:
16190 (when fn (setq value (funcall fn value)))
16191 (unless (equal (org-entry-get nil property) value)
16192 (org-entry-put nil property value))))
16194 (defun org-delete-property (property)
16195 "In the current entry, delete PROPERTY."
16196 (interactive
16197 (let* ((completion-ignore-case t)
16198 (cat (org-entry-get (point) "CATEGORY"))
16199 (props0 (org-entry-properties nil 'standard))
16200 (props (if cat props0
16201 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16202 (prop (if (< 1 (length props))
16203 (org-icompleting-read "Property: " props nil t)
16204 (caar props))))
16205 (list prop)))
16206 (if (not property)
16207 (message "No property to delete in this entry")
16208 (org-entry-delete nil property)
16209 (message "Property \"%s\" deleted" property)))
16211 (defun org-delete-property-globally (property)
16212 "Remove PROPERTY globally, from all entries."
16213 (interactive
16214 (let* ((completion-ignore-case t)
16215 (prop (org-icompleting-read
16216 "Globally remove property: "
16217 (mapcar 'list (org-buffer-property-keys)))))
16218 (list prop)))
16219 (save-excursion
16220 (save-restriction
16221 (widen)
16222 (goto-char (point-min))
16223 (let ((cnt 0))
16224 (while (re-search-forward
16225 (org-re-property property)
16226 nil t)
16227 (setq cnt (1+ cnt))
16228 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16229 (message "Property \"%s\" removed from %d entries" property cnt)))))
16231 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16233 (defun org-compute-property-at-point ()
16234 "Compute the property at point.
16235 This looks for an enclosing column format, extracts the operator and
16236 then applies it to the property in the column format's scope."
16237 (interactive)
16238 (unless (org-at-property-p)
16239 (user-error "Not at a property"))
16240 (let ((prop (org-match-string-no-properties 2)))
16241 (org-columns-get-format-and-top-level)
16242 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16243 (user-error "No operator defined for property %s" prop))
16244 (org-columns-compute prop)))
16246 (defvar org-property-allowed-value-functions nil
16247 "Hook for functions supplying allowed values for a specific property.
16248 The functions must take a single argument, the name of the property, and
16249 return a flat list of allowed values. If \":ETC\" is one of
16250 the values, this means that these values are intended as defaults for
16251 completion, but that other values should be allowed too.
16252 The functions must return nil if they are not responsible for this
16253 property.")
16255 (defun org-property-get-allowed-values (pom property &optional table)
16256 "Get allowed values for the property PROPERTY.
16257 When TABLE is non-nil, return an alist that can directly be used for
16258 completion."
16259 (let (vals)
16260 (cond
16261 ((equal property "TODO")
16262 (setq vals (org-with-point-at pom
16263 (append org-todo-keywords-1 '("")))))
16264 ((equal property "PRIORITY")
16265 (let ((n org-lowest-priority))
16266 (while (>= n org-highest-priority)
16267 (push (char-to-string n) vals)
16268 (setq n (1- n)))))
16269 ((member property org-special-properties))
16270 ((setq vals (run-hook-with-args-until-success
16271 'org-property-allowed-value-functions property)))
16273 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16274 (when (and vals (string-match "\\S-" vals))
16275 (setq vals (car (read-from-string (concat "(" vals ")"))))
16276 (setq vals (mapcar (lambda (x)
16277 (cond ((stringp x) x)
16278 ((numberp x) (number-to-string x))
16279 ((symbolp x) (symbol-name x))
16280 (t "???")))
16281 vals)))))
16282 (when (member ":ETC" vals)
16283 (setq vals (remove ":ETC" vals))
16284 (org-add-props (car vals) '(org-unrestricted t)))
16285 (if table (mapcar 'list vals) vals)))
16287 (defun org-property-previous-allowed-value (&optional previous)
16288 "Switch to the next allowed value for this property."
16289 (interactive)
16290 (org-property-next-allowed-value t))
16292 (defun org-property-next-allowed-value (&optional previous)
16293 "Switch to the next allowed value for this property."
16294 (interactive)
16295 (unless (org-at-property-p)
16296 (user-error "Not at a property"))
16297 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16298 (key (match-string 2))
16299 (value (match-string 3))
16300 (allowed (or (org-property-get-allowed-values (point) key)
16301 (and (member value '("[ ]" "[-]" "[X]"))
16302 '("[ ]" "[X]"))))
16303 (heading (save-match-data (nth 4 (org-heading-components))))
16304 nval)
16305 (unless allowed
16306 (user-error "Allowed values for this property have not been defined"))
16307 (if previous (setq allowed (reverse allowed)))
16308 (if (member value allowed)
16309 (setq nval (car (cdr (member value allowed)))))
16310 (setq nval (or nval (car allowed)))
16311 (if (equal nval value)
16312 (user-error "Only one allowed value for this property"))
16313 (org-at-property-p)
16314 (replace-match (concat " :" key ": " nval) t t)
16315 (org-indent-line)
16316 (beginning-of-line 1)
16317 (skip-chars-forward " \t")
16318 (when (equal prop org-effort-property)
16319 (org-refresh-property
16320 '((effort . identity)
16321 (effort-minutes . org-duration-string-to-minutes))
16322 nval)
16323 (when (string= org-clock-current-task heading)
16324 (setq org-clock-effort nval)
16325 (org-clock-update-mode-line)))
16326 (run-hook-with-args 'org-property-changed-functions key nval)))
16328 (defun org-find-olp (path &optional this-buffer)
16329 "Return a marker pointing to the entry at outline path OLP.
16330 If anything goes wrong, throw an error.
16331 You can wrap this call to catch the error like this:
16333 (condition-case msg
16334 (org-mobile-locate-entry (match-string 4))
16335 (error (nth 1 msg)))
16337 The return value will then be either a string with the error message,
16338 or a marker if everything is OK.
16340 If THIS-BUFFER is set, the outline path does not contain a file,
16341 only headings."
16342 (let* ((file (if this-buffer buffer-file-name (pop path)))
16343 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16344 (level 1)
16345 (lmin 1)
16346 (lmax 1)
16347 limit re end found pos heading cnt flevel)
16348 (unless buffer (error "File not found :%s" file))
16349 (with-current-buffer buffer
16350 (save-excursion
16351 (save-restriction
16352 (widen)
16353 (setq limit (point-max))
16354 (goto-char (point-min))
16355 (while (setq heading (pop path))
16356 (setq re (format org-complex-heading-regexp-format
16357 (regexp-quote heading)))
16358 (setq cnt 0 pos (point))
16359 (while (re-search-forward re end t)
16360 (setq level (- (match-end 1) (match-beginning 1)))
16361 (if (and (>= level lmin) (<= level lmax))
16362 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16363 (when (= cnt 0) (error "Heading not found on level %d: %s"
16364 lmax heading))
16365 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16366 lmax heading))
16367 (goto-char found)
16368 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16369 (setq end (save-excursion (org-end-of-subtree t t))))
16370 (when (org-at-heading-p)
16371 (point-marker)))))))
16373 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16374 "Find node HEADING in BUFFER.
16375 Return a marker to the heading if it was found, or nil if not.
16376 If POS-ONLY is set, return just the position instead of a marker.
16378 The heading text must match exact, but it may have a TODO keyword,
16379 a priority cookie and tags in the standard locations."
16380 (with-current-buffer (or buffer (current-buffer))
16381 (save-excursion
16382 (save-restriction
16383 (widen)
16384 (goto-char (point-min))
16385 (let (case-fold-search)
16386 (if (re-search-forward
16387 (format org-complex-heading-regexp-format
16388 (regexp-quote heading)) nil t)
16389 (if pos-only
16390 (match-beginning 0)
16391 (move-marker (make-marker) (match-beginning 0)))))))))
16393 (defun org-find-exact-heading-in-directory (heading &optional dir)
16394 "Find Org node headline HEADING in all .org files in directory DIR.
16395 When the target headline is found, return a marker to this location."
16396 (let ((files (directory-files (or dir default-directory)
16397 t "\\`[^.#].*\\.org\\'"))
16398 file visiting m buffer)
16399 (catch 'found
16400 (while (setq file (pop files))
16401 (message "trying %s" file)
16402 (setq visiting (org-find-base-buffer-visiting file))
16403 (setq buffer (or visiting (find-file-noselect file)))
16404 (setq m (org-find-exact-headline-in-buffer
16405 heading buffer))
16406 (when (and (not m) (not visiting)) (kill-buffer buffer))
16407 (and m (throw 'found m))))))
16409 (defun org-find-entry-with-id (ident)
16410 "Locate the entry that contains the ID property with exact value IDENT.
16411 IDENT can be a string, a symbol or a number, this function will search for
16412 the string representation of it.
16413 Return the position where this entry starts, or nil if there is no such entry."
16414 (interactive "sID: ")
16415 (let ((id (cond
16416 ((stringp ident) ident)
16417 ((symbol-name ident) (symbol-name ident))
16418 ((numberp ident) (number-to-string ident))
16419 (t (error "IDENT %s must be a string, symbol or number" ident))))
16420 (case-fold-search nil))
16421 (save-excursion
16422 (save-restriction
16423 (widen)
16424 (goto-char (point-min))
16425 (when (re-search-forward
16426 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16427 nil t)
16428 (org-back-to-heading t)
16429 (point))))))
16431 ;;;; Timestamps
16433 (defvar org-last-changed-timestamp nil)
16434 (defvar org-last-inserted-timestamp nil
16435 "The last time stamp inserted with `org-insert-time-stamp'.")
16436 (defvar org-ts-what) ; dynamically scoped parameter
16438 (defun org-time-stamp (arg &optional inactive)
16439 "Prompt for a date/time and insert a time stamp.
16441 If the user specifies a time like HH:MM or if this command is
16442 called with at least one prefix argument, the time stamp contains
16443 the date and the time. Otherwise, only the date is included.
16445 All parts of a date not specified by the user are filled in from
16446 the timestamp at point, if any, or the current date/time
16447 otherwise.
16449 If there is already a timestamp at the cursor, it is replaced.
16451 With two universal prefix arguments, insert an active timestamp
16452 with the current time without prompting the user.
16454 When called from lisp, the timestamp is inactive if INACTIVE is
16455 non-nil."
16456 (interactive "P")
16457 (let* ((ts
16458 (cond ((org-at-date-range-p t)
16459 (save-excursion
16460 (goto-char (match-beginning 0))
16461 (looking-at (if inactive org-ts-regexp-both org-ts-regexp)))
16462 (match-string 0))
16463 ((org-at-timestamp-p t) (match-string 0))))
16464 ;; Default time is either the timestamp at point or today.
16465 ;; When entering a range, only the range start is considered.
16466 (default-time (if (not ts) (current-time)
16467 (apply #'encode-time (org-parse-time-string ts))))
16468 (default-input (and ts (org-get-compact-tod ts)))
16469 (repeater (and ts
16470 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16471 (match-string 0 ts)))
16472 org-time-was-given
16473 org-end-time-was-given
16474 (time
16475 (and (if (equal arg '(16)) (current-time)
16476 ;; Preserve `this-command' and `last-command'.
16477 (let ((this-command this-command)
16478 (last-command last-command))
16479 (org-read-date
16480 arg 'totime nil nil default-time default-input
16481 inactive))))))
16482 (cond
16483 ((and ts
16484 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16485 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16486 (insert "--")
16487 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16489 ;; Make sure we're on a timestamp. When in the middle of a date
16490 ;; range, move arbitrarily to range end.
16491 (unless (org-at-timestamp-p t)
16492 (skip-chars-forward "-")
16493 (org-at-timestamp-p t))
16494 (replace-match "")
16495 (setq org-last-changed-timestamp
16496 (org-insert-time-stamp
16497 time (or org-time-was-given arg)
16498 inactive nil nil (list org-end-time-was-given)))
16499 (when repeater
16500 (backward-char)
16501 (insert " " repeater)
16502 (setq org-last-changed-timestamp
16503 (concat (substring org-last-inserted-timestamp 0 -1)
16504 " " repeater ">")))
16505 (message "Timestamp updated"))
16506 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16507 (t (org-insert-time-stamp
16508 time (or org-time-was-given arg) inactive nil nil
16509 (list org-end-time-was-given))))))
16511 ;; FIXME: can we use this for something else, like computing time differences?
16512 (defun org-get-compact-tod (s)
16513 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16514 (let* ((t1 (match-string 1 s))
16515 (h1 (string-to-number (match-string 2 s)))
16516 (m1 (string-to-number (match-string 3 s)))
16517 (t2 (and (match-end 4) (match-string 5 s)))
16518 (h2 (and t2 (string-to-number (match-string 6 s))))
16519 (m2 (and t2 (string-to-number (match-string 7 s))))
16520 dh dm)
16521 (if (not t2)
16523 (setq dh (- h2 h1) dm (- m2 m1))
16524 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16525 (concat t1 "+" (number-to-string dh)
16526 (and (/= 0 dm) (format ":%02d" dm)))))))
16528 (defun org-time-stamp-inactive (&optional arg)
16529 "Insert an inactive time stamp.
16530 An inactive time stamp is enclosed in square brackets instead of angle
16531 brackets. It is inactive in the sense that it does not trigger agenda entries,
16532 does not link to the calendar and cannot be changed with the S-cursor keys.
16533 So these are more for recording a certain time/date."
16534 (interactive "P")
16535 (org-time-stamp arg 'inactive))
16537 (defvar org-date-ovl (make-overlay 1 1))
16538 (overlay-put org-date-ovl 'face 'org-date-selected)
16539 (org-detach-overlay org-date-ovl)
16541 (defvar org-ans1) ; dynamically scoped parameter
16542 (defvar org-ans2) ; dynamically scoped parameter
16544 (defvar org-plain-time-of-day-regexp) ; defined below
16546 (defvar org-overriding-default-time nil) ; dynamically scoped
16547 (defvar org-read-date-overlay nil)
16548 (defvar org-dcst nil) ; dynamically scoped
16549 (defvar org-read-date-history nil)
16550 (defvar org-read-date-final-answer nil)
16551 (defvar org-read-date-analyze-futurep nil)
16552 (defvar org-read-date-analyze-forced-year nil)
16553 (defvar org-read-date-inactive)
16555 (defvar org-read-date-minibuffer-local-map
16556 (let* ((map (make-sparse-keymap)))
16557 (set-keymap-parent map minibuffer-local-map)
16558 (org-defkey map (kbd ".")
16559 (lambda () (interactive)
16560 ;; Are we at the beginning of the prompt?
16561 (if (looking-back "^[^:]+: ")
16562 (org-eval-in-calendar '(calendar-goto-today))
16563 (insert "."))))
16564 (org-defkey map (kbd "C-.")
16565 (lambda () (interactive)
16566 (org-eval-in-calendar '(calendar-goto-today))))
16567 (org-defkey map [(meta shift left)]
16568 (lambda () (interactive)
16569 (org-eval-in-calendar '(calendar-backward-month 1))))
16570 (org-defkey map [(meta shift right)]
16571 (lambda () (interactive)
16572 (org-eval-in-calendar '(calendar-forward-month 1))))
16573 (org-defkey map [(meta shift up)]
16574 (lambda () (interactive)
16575 (org-eval-in-calendar '(calendar-backward-year 1))))
16576 (org-defkey map [(meta shift down)]
16577 (lambda () (interactive)
16578 (org-eval-in-calendar '(calendar-forward-year 1))))
16579 (org-defkey map [?\e (shift left)]
16580 (lambda () (interactive)
16581 (org-eval-in-calendar '(calendar-backward-month 1))))
16582 (org-defkey map [?\e (shift right)]
16583 (lambda () (interactive)
16584 (org-eval-in-calendar '(calendar-forward-month 1))))
16585 (org-defkey map [?\e (shift up)]
16586 (lambda () (interactive)
16587 (org-eval-in-calendar '(calendar-backward-year 1))))
16588 (org-defkey map [?\e (shift down)]
16589 (lambda () (interactive)
16590 (org-eval-in-calendar '(calendar-forward-year 1))))
16591 (org-defkey map [(shift up)]
16592 (lambda () (interactive)
16593 (org-eval-in-calendar '(calendar-backward-week 1))))
16594 (org-defkey map [(shift down)]
16595 (lambda () (interactive)
16596 (org-eval-in-calendar '(calendar-forward-week 1))))
16597 (org-defkey map [(shift left)]
16598 (lambda () (interactive)
16599 (org-eval-in-calendar '(calendar-backward-day 1))))
16600 (org-defkey map [(shift right)]
16601 (lambda () (interactive)
16602 (org-eval-in-calendar '(calendar-forward-day 1))))
16603 (org-defkey map "!"
16604 (lambda () (interactive)
16605 (org-eval-in-calendar '(diary-view-entries))
16606 (message "")))
16607 (org-defkey map ">"
16608 (lambda () (interactive)
16609 (org-eval-in-calendar '(calendar-scroll-left 1))))
16610 (org-defkey map "<"
16611 (lambda () (interactive)
16612 (org-eval-in-calendar '(calendar-scroll-right 1))))
16613 (org-defkey map "\C-v"
16614 (lambda () (interactive)
16615 (org-eval-in-calendar
16616 '(calendar-scroll-left-three-months 1))))
16617 (org-defkey map "\M-v"
16618 (lambda () (interactive)
16619 (org-eval-in-calendar
16620 '(calendar-scroll-right-three-months 1))))
16621 map)
16622 "Keymap for minibuffer commands when using `org-read-date'.")
16624 (defvar org-def)
16625 (defvar org-defdecode)
16626 (defvar org-with-time)
16628 (defun org-read-date (&optional org-with-time to-time from-string prompt
16629 default-time default-input inactive)
16630 "Read a date, possibly a time, and make things smooth for the user.
16631 The prompt will suggest to enter an ISO date, but you can also enter anything
16632 which will at least partially be understood by `parse-time-string'.
16633 Unrecognized parts of the date will default to the current day, month, year,
16634 hour and minute. If this command is called to replace a timestamp at point,
16635 or to enter the second timestamp of a range, the default time is taken
16636 from the existing stamp. Furthermore, the command prefers the future,
16637 so if you are giving a date where the year is not given, and the day-month
16638 combination is already past in the current year, it will assume you
16639 mean next year. For details, see the manual. A few examples:
16641 3-2-5 --> 2003-02-05
16642 feb 15 --> currentyear-02-15
16643 2/15 --> currentyear-02-15
16644 sep 12 9 --> 2009-09-12
16645 12:45 --> today 12:45
16646 22 sept 0:34 --> currentyear-09-22 0:34
16647 12 --> currentyear-currentmonth-12
16648 Fri --> nearest Friday after today
16649 -Tue --> last Tuesday
16650 etc.
16652 Furthermore you can specify a relative date by giving, as the *first* thing
16653 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16654 change in days weeks, months, years.
16655 With a single plus or minus, the date is relative to today. With a double
16656 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16657 +4d --> four days from today
16658 +4 --> same as above
16659 +2w --> two weeks from today
16660 ++5 --> five days from default date
16662 The function understands only English month and weekday abbreviations.
16664 While prompting, a calendar is popped up - you can also select the
16665 date with the mouse (button 1). The calendar shows a period of three
16666 months. To scroll it to other months, use the keys `>' and `<'.
16667 If you don't like the calendar, turn it off with
16668 \(setq org-read-date-popup-calendar nil)
16670 With optional argument TO-TIME, the date will immediately be converted
16671 to an internal time.
16672 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16673 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16674 still enter a time, and this function will inform the calling routine
16675 about this change. The calling routine may then choose to change the
16676 format used to insert the time stamp into the buffer to include the time.
16677 With optional argument FROM-STRING, read from this string instead from
16678 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16679 the time/date that is used for everything that is not specified by the
16680 user."
16681 (require 'parse-time)
16682 (let* ((org-time-stamp-rounding-minutes
16683 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16684 (org-dcst org-display-custom-times)
16685 (ct (org-current-time))
16686 (org-def (or org-overriding-default-time default-time ct))
16687 (org-defdecode (decode-time org-def))
16688 (dummy (progn
16689 (when (< (nth 2 org-defdecode) org-extend-today-until)
16690 (setcar (nthcdr 2 org-defdecode) -1)
16691 (setcar (nthcdr 1 org-defdecode) 59)
16692 (setq org-def (apply 'encode-time org-defdecode)
16693 org-defdecode (decode-time org-def)))))
16694 (cur-frame (selected-frame))
16695 (mouse-autoselect-window nil) ; Don't let the mouse jump
16696 (calendar-frame-setup nil)
16697 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16698 (calendar-move-hook nil)
16699 (calendar-view-diary-initially-flag nil)
16700 (calendar-view-holidays-initially-flag nil)
16701 (timestr (format-time-string
16702 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16703 (prompt (concat (if prompt (concat prompt " ") "")
16704 (format "Date+time [%s]: " timestr)))
16705 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16707 (cond
16708 (from-string (setq ans from-string))
16709 (org-read-date-popup-calendar
16710 (save-excursion
16711 (save-window-excursion
16712 (calendar)
16713 (when (eq calendar-setup 'calendar-only)
16714 (setq cal-frame
16715 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16716 (select-frame cal-frame))
16717 (org-eval-in-calendar '(setq cursor-type nil) t)
16718 (unwind-protect
16719 (progn
16720 (calendar-forward-day (- (time-to-days org-def)
16721 (calendar-absolute-from-gregorian
16722 (calendar-current-date))))
16723 (org-eval-in-calendar nil t)
16724 (let* ((old-map (current-local-map))
16725 (map (copy-keymap calendar-mode-map))
16726 (minibuffer-local-map
16727 (copy-keymap org-read-date-minibuffer-local-map)))
16728 (org-defkey map (kbd "RET") 'org-calendar-select)
16729 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16730 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16731 (unwind-protect
16732 (progn
16733 (use-local-map map)
16734 (setq org-read-date-inactive inactive)
16735 (add-hook 'post-command-hook 'org-read-date-display)
16736 (setq org-ans0 (read-string prompt default-input
16737 'org-read-date-history nil))
16738 ;; org-ans0: from prompt
16739 ;; org-ans1: from mouse click
16740 ;; org-ans2: from calendar motion
16741 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16742 (remove-hook 'post-command-hook 'org-read-date-display)
16743 (use-local-map old-map)
16744 (when org-read-date-overlay
16745 (delete-overlay org-read-date-overlay)
16746 (setq org-read-date-overlay nil)))))
16747 (bury-buffer "*Calendar*")
16748 (when cal-frame
16749 (delete-frame cal-frame)
16750 (select-frame-set-input-focus cur-frame))))))
16752 (t ; Naked prompt only
16753 (unwind-protect
16754 (setq ans (read-string prompt default-input
16755 'org-read-date-history timestr))
16756 (when org-read-date-overlay
16757 (delete-overlay org-read-date-overlay)
16758 (setq org-read-date-overlay nil)))))
16760 (setq final (org-read-date-analyze ans org-def org-defdecode))
16762 (when org-read-date-analyze-forced-year
16763 (message "Year was forced into %s"
16764 (if org-read-date-force-compatible-dates
16765 "compatible range (1970-2037)"
16766 "range representable on this machine"))
16767 (ding))
16769 ;; One round trip to get rid of 34th of August and stuff like that....
16770 (setq final (decode-time (apply 'encode-time final)))
16772 (setq org-read-date-final-answer ans)
16774 (if to-time
16775 (apply 'encode-time final)
16776 (if (and (boundp 'org-time-was-given) org-time-was-given)
16777 (format "%04d-%02d-%02d %02d:%02d"
16778 (nth 5 final) (nth 4 final) (nth 3 final)
16779 (nth 2 final) (nth 1 final))
16780 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16782 (defun org-read-date-display ()
16783 "Display the current date prompt interpretation in the minibuffer."
16784 (when org-read-date-display-live
16785 (when org-read-date-overlay
16786 (delete-overlay org-read-date-overlay))
16787 (when (minibufferp (current-buffer))
16788 (save-excursion
16789 (end-of-line 1)
16790 (while (not (equal (buffer-substring
16791 (max (point-min) (- (point) 4)) (point))
16792 " "))
16793 (insert " ")))
16794 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16795 " " (or org-ans1 org-ans2)))
16796 (org-end-time-was-given nil)
16797 (f (org-read-date-analyze ans org-def org-defdecode))
16798 (fmts (if org-dcst
16799 org-time-stamp-custom-formats
16800 org-time-stamp-formats))
16801 (fmt (if (or org-with-time
16802 (and (boundp 'org-time-was-given) org-time-was-given))
16803 (cdr fmts)
16804 (car fmts)))
16805 (txt (format-time-string fmt (apply 'encode-time f)))
16806 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16807 (txt (concat "=> " txt)))
16808 (when (and org-end-time-was-given
16809 (string-match org-plain-time-of-day-regexp txt))
16810 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16811 org-end-time-was-given
16812 (substring txt (match-end 0)))))
16813 (when org-read-date-analyze-futurep
16814 (setq txt (concat txt " (=>F)")))
16815 (setq org-read-date-overlay
16816 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16817 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16819 (defun org-read-date-analyze (ans org-def org-defdecode)
16820 "Analyze the combined answer of the date prompt."
16821 ;; FIXME: cleanup and comment
16822 (let ((nowdecode (decode-time (current-time)))
16823 delta deltan deltaw deltadef year month day
16824 hour minute second wday pm h2 m2 tl wday1
16825 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16826 (setq org-read-date-analyze-futurep nil
16827 org-read-date-analyze-forced-year nil)
16828 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16829 (setq ans "+0"))
16831 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16832 (setq ans (replace-match "" t t ans)
16833 deltan (car delta)
16834 deltaw (nth 1 delta)
16835 deltadef (nth 2 delta)))
16837 ;; Check if there is an iso week date in there. If yes, store the
16838 ;; info and postpone interpreting it until the rest of the parsing
16839 ;; is done.
16840 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16841 (setq iso-year (if (match-end 1)
16842 (org-small-year-to-year
16843 (string-to-number (match-string 1 ans))))
16844 iso-weekday (if (match-end 3)
16845 (string-to-number (match-string 3 ans)))
16846 iso-week (string-to-number (match-string 2 ans)))
16847 (setq ans (replace-match "" t t ans)))
16849 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16850 (when (string-match
16851 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16852 (setq year (if (match-end 2)
16853 (string-to-number (match-string 2 ans))
16854 (progn (setq kill-year t)
16855 (string-to-number (format-time-string "%Y"))))
16856 month (string-to-number (match-string 3 ans))
16857 day (string-to-number (match-string 4 ans)))
16858 (if (< year 100) (setq year (+ 2000 year)))
16859 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16860 t nil ans)))
16862 ;; Help matching dotted european dates
16863 (when (string-match
16864 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16865 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16866 (setq kill-year t)
16867 (string-to-number (format-time-string "%Y")))
16868 day (string-to-number (match-string 1 ans))
16869 month (string-to-number (match-string 2 ans))
16870 ans (replace-match (format "%04d-%02d-%02d" year month day)
16871 t nil ans)))
16873 ;; Help matching american dates, like 5/30 or 5/30/7
16874 (when (string-match
16875 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16876 (setq year (if (match-end 4)
16877 (string-to-number (match-string 4 ans))
16878 (progn (setq kill-year t)
16879 (string-to-number (format-time-string "%Y"))))
16880 month (string-to-number (match-string 1 ans))
16881 day (string-to-number (match-string 2 ans)))
16882 (if (< year 100) (setq year (+ 2000 year)))
16883 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16884 t nil ans)))
16885 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16886 ;; If there is a time with am/pm, and *no* time without it, we convert
16887 ;; so that matching will be successful.
16888 (loop for i from 1 to 2 do ; twice, for end time as well
16889 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16890 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16891 (setq hour (string-to-number (match-string 1 ans))
16892 minute (if (match-end 3)
16893 (string-to-number (match-string 3 ans))
16895 pm (equal ?p
16896 (string-to-char (downcase (match-string 4 ans)))))
16897 (if (and (= hour 12) (not pm))
16898 (setq hour 0)
16899 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16900 (setq ans (replace-match (format "%02d:%02d" hour minute)
16901 t t ans))))
16903 ;; Check if a time range is given as a duration
16904 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16905 (setq hour (string-to-number (match-string 1 ans))
16906 h2 (+ hour (string-to-number (match-string 3 ans)))
16907 minute (string-to-number (match-string 2 ans))
16908 m2 (+ minute (if (match-end 5) (string-to-number
16909 (match-string 5 ans))0)))
16910 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16911 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16912 t t ans)))
16914 ;; Check if there is a time range
16915 (when (boundp 'org-end-time-was-given)
16916 (setq org-time-was-given nil)
16917 (when (and (string-match org-plain-time-of-day-regexp ans)
16918 (match-end 8))
16919 (setq org-end-time-was-given (match-string 8 ans))
16920 (setq ans (concat (substring ans 0 (match-beginning 7))
16921 (substring ans (match-end 7))))))
16923 (setq tl (parse-time-string ans)
16924 day (or (nth 3 tl) (nth 3 org-defdecode))
16925 month
16926 (cond ((nth 4 tl))
16927 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
16928 ;; Day was specified. Make sure DAY+MONTH
16929 ;; combination happens in the future.
16930 ((nth 3 tl)
16931 (setq futurep t)
16932 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
16933 (nth 4 nowdecode)))
16934 (t (nth 4 org-defdecode)))
16935 year
16936 (cond ((and (not kill-year) (nth 5 tl)))
16937 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
16938 ;; Month was guessed in the future and is at least
16939 ;; equal to NOWDECODE's. Fix year accordingly.
16940 (futurep
16941 (if (or (> month (nth 4 nowdecode))
16942 (>= day (nth 3 nowdecode)))
16943 (nth 5 nowdecode)
16944 (1+ (nth 5 nowdecode))))
16945 ;; Month was specified. Make sure MONTH+YEAR
16946 ;; combination happens in the future.
16947 ((nth 4 tl)
16948 (setq futurep t)
16949 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
16950 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
16951 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
16952 (t (nth 5 nowdecode))))
16953 (t (nth 5 org-defdecode)))
16954 hour (or (nth 2 tl) (nth 2 org-defdecode))
16955 minute (or (nth 1 tl) (nth 1 org-defdecode))
16956 second (or (nth 0 tl) 0)
16957 wday (nth 6 tl))
16959 (when (and (eq org-read-date-prefer-future 'time)
16960 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16961 (equal day (nth 3 nowdecode))
16962 (equal month (nth 4 nowdecode))
16963 (equal year (nth 5 nowdecode))
16964 (nth 2 tl)
16965 (or (< (nth 2 tl) (nth 2 nowdecode))
16966 (and (= (nth 2 tl) (nth 2 nowdecode))
16967 (nth 1 tl)
16968 (< (nth 1 tl) (nth 1 nowdecode)))))
16969 (setq day (1+ day)
16970 futurep t))
16972 ;; Special date definitions below
16973 (cond
16974 (iso-week
16975 ;; There was an iso week
16976 (require 'cal-iso)
16977 (setq futurep nil)
16978 (setq year (or iso-year year)
16979 day (or iso-weekday wday 1)
16980 wday nil ; to make sure that the trigger below does not match
16981 iso-date (calendar-gregorian-from-absolute
16982 (calendar-iso-to-absolute
16983 (list iso-week day year))))
16984 ; FIXME: Should we also push ISO weeks into the future?
16985 ; (when (and org-read-date-prefer-future
16986 ; (not iso-year)
16987 ; (< (calendar-absolute-from-gregorian iso-date)
16988 ; (time-to-days (current-time))))
16989 ; (setq year (1+ year)
16990 ; iso-date (calendar-gregorian-from-absolute
16991 ; (calendar-iso-to-absolute
16992 ; (list iso-week day year)))))
16993 (setq month (car iso-date)
16994 year (nth 2 iso-date)
16995 day (nth 1 iso-date)))
16996 (deltan
16997 (setq futurep nil)
16998 (unless deltadef
16999 (let ((now (decode-time (current-time))))
17000 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17001 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17002 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17003 ((equal deltaw "m") (setq month (+ month deltan)))
17004 ((equal deltaw "y") (setq year (+ year deltan)))))
17005 ((and wday (not (nth 3 tl)))
17006 ;; Weekday was given, but no day, so pick that day in the week
17007 ;; on or after the derived date.
17008 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17009 (unless (equal wday wday1)
17010 (setq day (+ day (% (- wday wday1 -7) 7))))))
17011 (if (and (boundp 'org-time-was-given)
17012 (nth 2 tl))
17013 (setq org-time-was-given t))
17014 (if (< year 100) (setq year (+ 2000 year)))
17015 ;; Check of the date is representable
17016 (if org-read-date-force-compatible-dates
17017 (progn
17018 (if (< year 1970)
17019 (setq year 1970 org-read-date-analyze-forced-year t))
17020 (if (> year 2037)
17021 (setq year 2037 org-read-date-analyze-forced-year t)))
17022 (condition-case nil
17023 (ignore (encode-time second minute hour day month year))
17024 (error
17025 (setq year (nth 5 org-defdecode))
17026 (setq org-read-date-analyze-forced-year t))))
17027 (setq org-read-date-analyze-futurep futurep)
17028 (list second minute hour day month year)))
17030 (defvar parse-time-weekdays)
17031 (defun org-read-date-get-relative (s today default)
17032 "Check string S for special relative date string.
17033 TODAY and DEFAULT are internal times, for today and for a default.
17034 Return shift list (N what def-flag)
17035 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17036 N is the number of WHATs to shift.
17037 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17038 the DEFAULT date rather than TODAY."
17039 (require 'parse-time)
17040 (when (and
17041 (string-match
17042 (concat
17043 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17044 "\\([0-9]+\\)?"
17045 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17046 "\\([ \t]\\|$\\)") s)
17047 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17048 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17049 (string-to-char (substring (match-string 1 s) -1))
17050 ?+))
17051 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17052 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17053 (what (if (match-end 3) (match-string 3 s) "d"))
17054 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17055 (date (if rel default today))
17056 (wday (nth 6 (decode-time date)))
17057 delta)
17058 (if wday1
17059 (progn
17060 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17061 (if (= delta 0) (setq delta 7))
17062 (if (= dir ?-)
17063 (progn
17064 (setq delta (- delta 7))
17065 (if (= delta 0) (setq delta -7))))
17066 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17067 (list delta "d" rel))
17068 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17070 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17071 "Turn a user-specified date into the internal representation.
17072 The internal representation needed by the calendar is (month day year).
17073 This is a wrapper to handle the brain-dead convention in calendar that
17074 user function argument order change dependent on argument order."
17075 (if (boundp 'calendar-date-style)
17076 (cond
17077 ((eq calendar-date-style 'american)
17078 (list arg1 arg2 arg3))
17079 ((eq calendar-date-style 'european)
17080 (list arg2 arg1 arg3))
17081 ((eq calendar-date-style 'iso)
17082 (list arg2 arg3 arg1)))
17083 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17084 (if (org-bound-and-true-p european-calendar-style)
17085 (list arg2 arg1 arg3)
17086 (list arg1 arg2 arg3)))))
17088 (defun org-eval-in-calendar (form &optional keepdate)
17089 "Eval FORM in the calendar window and return to current window.
17090 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17091 otherwise stick to the current value of `org-ans2'."
17092 (let ((sf (selected-frame))
17093 (sw (selected-window)))
17094 (select-window (get-buffer-window "*Calendar*" t))
17095 (eval form)
17096 (when (and (not keepdate) (calendar-cursor-to-date))
17097 (let* ((date (calendar-cursor-to-date))
17098 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17099 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17100 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17101 (select-window sw)
17102 (org-select-frame-set-input-focus sf)))
17104 (defun org-calendar-select ()
17105 "Return to `org-read-date' with the date currently selected.
17106 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17107 (interactive)
17108 (when (calendar-cursor-to-date)
17109 (let* ((date (calendar-cursor-to-date))
17110 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17111 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17112 (if (active-minibuffer-window) (exit-minibuffer))))
17114 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17115 "Insert a date stamp for the date given by the internal TIME.
17116 See `format-time-string' for the format of TIME.
17117 WITH-HM means use the stamp format that includes the time of the day.
17118 INACTIVE means use square brackets instead of angular ones, so that the
17119 stamp will not contribute to the agenda.
17120 PRE and POST are optional strings to be inserted before and after the
17121 stamp.
17122 The command returns the inserted time stamp."
17123 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17124 stamp)
17125 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17126 (insert-before-markers (or pre ""))
17127 (when (listp extra)
17128 (setq extra (car extra))
17129 (if (and (stringp extra)
17130 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17131 (setq extra (format "-%02d:%02d"
17132 (string-to-number (match-string 1 extra))
17133 (string-to-number (match-string 2 extra))))
17134 (setq extra nil)))
17135 (when extra
17136 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17137 (insert-before-markers (setq stamp (format-time-string fmt time)))
17138 (insert-before-markers (or post ""))
17139 (setq org-last-inserted-timestamp stamp)))
17141 (defun org-toggle-time-stamp-overlays ()
17142 "Toggle the use of custom time stamp formats."
17143 (interactive)
17144 (setq org-display-custom-times (not org-display-custom-times))
17145 (unless org-display-custom-times
17146 (let ((p (point-min)) (bmp (buffer-modified-p)))
17147 (while (setq p (next-single-property-change p 'display))
17148 (if (and (get-text-property p 'display)
17149 (eq (get-text-property p 'face) 'org-date))
17150 (remove-text-properties
17151 p (setq p (next-single-property-change p 'display))
17152 '(display t))))
17153 (set-buffer-modified-p bmp)))
17154 (if (featurep 'xemacs)
17155 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17156 (org-restart-font-lock)
17157 (setq org-table-may-need-update t)
17158 (if org-display-custom-times
17159 (message "Time stamps are overlaid with custom format")
17160 (message "Time stamp overlays removed")))
17162 (defun org-display-custom-time (beg end)
17163 "Overlay modified time stamp format over timestamp between BEG and END."
17164 (let* ((ts (buffer-substring beg end))
17165 t1 w1 with-hm tf time str w2 (off 0))
17166 (save-match-data
17167 (setq t1 (org-parse-time-string ts t))
17168 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17169 (setq off (- (match-end 0) (match-beginning 0)))))
17170 (setq end (- end off))
17171 (setq w1 (- end beg)
17172 with-hm (and (nth 1 t1) (nth 2 t1))
17173 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17174 time (org-fix-decoded-time t1)
17175 str (org-add-props
17176 (format-time-string
17177 (substring tf 1 -1) (apply 'encode-time time))
17178 nil 'mouse-face 'highlight)
17179 w2 (length str))
17180 (if (not (= w2 w1))
17181 (add-text-properties (1+ beg) (+ 2 beg)
17182 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17183 (if (featurep 'xemacs)
17184 (progn
17185 (put-text-property beg end 'invisible t)
17186 (put-text-property beg end 'end-glyph (make-glyph str)))
17187 (put-text-property beg end 'display str))))
17189 (defun org-fix-decoded-time (time)
17190 "Set 0 instead of nil for the first 6 elements of time.
17191 Don't touch the rest."
17192 (let ((n 0))
17193 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17195 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17197 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17198 "Difference between TIMESTAMP-STRING and now in days.
17199 If SECONDS is non-nil, return the difference in seconds."
17200 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17201 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17202 (funcall fdiff (current-time)))))
17204 (defun org-deadline-close (timestamp-string &optional ndays)
17205 "Is the time in TIMESTAMP-STRING close to the current date?"
17206 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17207 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17208 (not (org-entry-is-done-p))))
17210 (defun org-get-wdays (ts &optional delay zero-delay)
17211 "Get the deadline lead time appropriate for timestring TS.
17212 When DELAY is non-nil, get the delay time for scheduled items
17213 instead of the deadline lead time. When ZERO-DELAY is non-nil
17214 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17215 don't try to find the delay cookie in the scheduled timestamp."
17216 (let ((tv (if delay org-scheduled-delay-days
17217 org-deadline-warning-days)))
17218 (cond
17219 ((or (and delay (< tv 0))
17220 (and delay zero-delay (<= tv 0))
17221 (and (not delay) (<= tv 0)))
17222 ;; Enforce this value no matter what
17223 (- tv))
17224 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17225 ;; lead time is specified.
17226 (floor (* (string-to-number (match-string 1 ts))
17227 (cdr (assoc (match-string 2 ts)
17228 '(("d" . 1) ("w" . 7)
17229 ("m" . 30.4) ("y" . 365.25)
17230 ("h" . 0.041667)))))))
17231 ;; go for the default.
17232 (t tv))))
17234 (defun org-calendar-select-mouse (ev)
17235 "Return to `org-read-date' with the date currently selected.
17236 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17237 (interactive "e")
17238 (mouse-set-point ev)
17239 (when (calendar-cursor-to-date)
17240 (let* ((date (calendar-cursor-to-date))
17241 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17242 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17243 (if (active-minibuffer-window) (exit-minibuffer))))
17245 (defun org-check-deadlines (ndays)
17246 "Check if there are any deadlines due or past due.
17247 A deadline is considered due if it happens within `org-deadline-warning-days'
17248 days from today's date. If the deadline appears in an entry marked DONE,
17249 it is not shown. The prefix arg NDAYS can be used to test that many
17250 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17251 (interactive "P")
17252 (let* ((org-warn-days
17253 (cond
17254 ((equal ndays '(4)) 100000)
17255 (ndays (prefix-numeric-value ndays))
17256 (t (abs org-deadline-warning-days))))
17257 (case-fold-search nil)
17258 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17259 (callback
17260 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17262 (message "%d deadlines past-due or due within %d days"
17263 (org-occur regexp nil callback)
17264 org-warn-days)))
17266 (defsubst org-re-timestamp (type)
17267 "Return a regexp for timestamp TYPE.
17268 Allowed values for TYPE are:
17270 all: all timestamps
17271 active: only active timestamps (<...>)
17272 inactive: only inactive timestamps ([...])
17273 scheduled: only scheduled timestamps
17274 deadline: only deadline timestamps
17275 closed: only closed time-stamps
17277 When TYPE is nil, fall back on returning a regexp that matches
17278 both scheduled and deadline timestamps."
17279 (case type
17280 (all org-ts-regexp-both)
17281 (active org-ts-regexp)
17282 (inactive org-ts-regexp-inactive)
17283 (scheduled org-scheduled-time-regexp)
17284 (deadline org-deadline-time-regexp)
17285 (closed org-closed-time-regexp)
17286 (otherwise
17287 (concat "\\<"
17288 (regexp-opt (list org-deadline-string org-scheduled-string))
17289 " *<\\([^>]+\\)>"))))
17291 (defun org-check-before-date (date)
17292 "Check if there are deadlines or scheduled entries before DATE."
17293 (interactive (list (org-read-date)))
17294 (let ((case-fold-search nil)
17295 (regexp (org-re-timestamp org-ts-type))
17296 (callback
17297 `(lambda ()
17298 (and ,(if (memq org-ts-type '(active inactive all))
17299 '(eq (org-element-type (org-element-context) 'timestamp))
17300 '(org-at-planning-p))
17301 (time-less-p
17302 (org-time-string-to-time (match-string 1))
17303 (org-time-string-to-time date))))))
17304 (message "%d entries before %s"
17305 (org-occur regexp nil callback) date)))
17307 (defun org-check-after-date (date)
17308 "Check if there are deadlines or scheduled entries after DATE."
17309 (interactive (list (org-read-date)))
17310 (let ((case-fold-search nil)
17311 (regexp (org-re-timestamp org-ts-type))
17312 (callback
17313 `(lambda ()
17314 (and ,(if (memq org-ts-type '(active inactive all))
17315 '(eq (org-element-type (org-element-context) 'timestamp))
17316 '(org-at-planning-p))
17317 (not (time-less-p
17318 (org-time-string-to-time (match-string 1))
17319 (org-time-string-to-time date)))))))
17320 (message "%d entries after %s"
17321 (org-occur regexp nil callback) date)))
17323 (defun org-check-dates-range (start-date end-date)
17324 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17325 (interactive (list (org-read-date nil nil nil "Range starts")
17326 (org-read-date nil nil nil "Range end")))
17327 (let ((case-fold-search nil)
17328 (regexp (org-re-timestamp org-ts-type))
17329 (callback
17330 `(lambda ()
17331 (let ((match (match-string 1)))
17332 (and
17333 ,(if (memq org-ts-type '(active inactive all))
17334 '(eq (org-element-type (org-element-context) 'timestamp))
17335 '(org-at-planning-p))
17336 (not (time-less-p
17337 (org-time-string-to-time match)
17338 (org-time-string-to-time start-date)))
17339 (time-less-p
17340 (org-time-string-to-time match)
17341 (org-time-string-to-time end-date)))))))
17342 (message "%d entries between %s and %s"
17343 (org-occur regexp nil callback) start-date end-date)))
17345 (defun org-evaluate-time-range (&optional to-buffer)
17346 "Evaluate a time range by computing the difference between start and end.
17347 Normally the result is just printed in the echo area, but with prefix arg
17348 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17349 If the time range is actually in a table, the result is inserted into the
17350 next column.
17351 For time difference computation, a year is assumed to be exactly 365
17352 days in order to avoid rounding problems."
17353 (interactive "P")
17355 (org-clock-update-time-maybe)
17356 (save-excursion
17357 (unless (org-at-date-range-p t)
17358 (goto-char (point-at-bol))
17359 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17360 (if (not (org-at-date-range-p t))
17361 (user-error "Not at a time-stamp range, and none found in current line")))
17362 (let* ((ts1 (match-string 1))
17363 (ts2 (match-string 2))
17364 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17365 (match-end (match-end 0))
17366 (time1 (org-time-string-to-time ts1))
17367 (time2 (org-time-string-to-time ts2))
17368 (t1 (org-float-time time1))
17369 (t2 (org-float-time time2))
17370 (diff (abs (- t2 t1)))
17371 (negative (< (- t2 t1) 0))
17372 ;; (ys (floor (* 365 24 60 60)))
17373 (ds (* 24 60 60))
17374 (hs (* 60 60))
17375 (fy "%dy %dd %02d:%02d")
17376 (fy1 "%dy %dd")
17377 (fd "%dd %02d:%02d")
17378 (fd1 "%dd")
17379 (fh "%02d:%02d")
17380 y d h m align)
17381 (if havetime
17382 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17384 d (floor (/ diff ds)) diff (mod diff ds)
17385 h (floor (/ diff hs)) diff (mod diff hs)
17386 m (floor (/ diff 60)))
17387 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17389 d (floor (+ (/ diff ds) 0.5))
17390 h 0 m 0))
17391 (if (not to-buffer)
17392 (message "%s" (org-make-tdiff-string y d h m))
17393 (if (org-at-table-p)
17394 (progn
17395 (goto-char match-end)
17396 (setq align t)
17397 (and (looking-at " *|") (goto-char (match-end 0))))
17398 (goto-char match-end))
17399 (if (looking-at
17400 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17401 (replace-match ""))
17402 (if negative (insert " -"))
17403 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17404 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17405 (insert " " (format fh h m))))
17406 (if align (org-table-align))
17407 (message "Time difference inserted")))))
17409 (defun org-make-tdiff-string (y d h m)
17410 (let ((fmt "")
17411 (l nil))
17412 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17413 l (push y l)))
17414 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17415 l (push d l)))
17416 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17417 l (push h l)))
17418 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17419 l (push m l)))
17420 (apply 'format fmt (nreverse l))))
17422 (defun org-time-string-to-time (s &optional buffer pos)
17423 "Convert a timestamp string into internal time."
17424 (condition-case errdata
17425 (apply 'encode-time (org-parse-time-string s))
17426 (error (error "Bad timestamp `%s'%s\nError was: %s"
17427 s (if (not (and buffer pos))
17429 (format " at %d in buffer `%s'" pos buffer))
17430 (cdr errdata)))))
17432 (defun org-time-string-to-seconds (s)
17433 "Convert a timestamp string to a number of seconds."
17434 (org-float-time (org-time-string-to-time s)))
17436 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17437 "Convert a time stamp to an absolute day number.
17438 If there is a specifier for a cyclic time stamp, get the closest
17439 date to DAYNR.
17440 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17441 The variable `date' is bound by the calendar when this is called."
17442 (cond
17443 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17444 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17445 daynr
17446 (+ daynr 1000)))
17447 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17448 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17449 (time-to-days (current-time))) (match-string 0 s)
17450 prefer show-all))
17451 (t (time-to-days
17452 (condition-case errdata
17453 (apply 'encode-time (org-parse-time-string s))
17454 (error (error "Bad timestamp `%s'%s\nError was: %s"
17455 s (if (not (and buffer pos))
17457 (format " at %d in buffer `%s'" pos buffer))
17458 (cdr errdata))))))))
17460 (defun org-days-to-iso-week (days)
17461 "Return the iso week number."
17462 (require 'cal-iso)
17463 (car (calendar-iso-from-absolute days)))
17465 (defun org-small-year-to-year (year)
17466 "Convert 2-digit years into 4-digit years.
17467 YEAR is expanded into one of the 30 next years, if possible, or
17468 into a past one. Any year larger than 99 is returned unchanged."
17469 (if (>= year 100) year
17470 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17471 (century (/ current 100))
17472 (offset (- year (% current 100))))
17473 (cond ((> offset 30) (+ (* (1- century) 100) year))
17474 ((> offset -70) (+ (* century 100) year))
17475 (t (+ (* (1+ century) 100) year))))))
17477 (defun org-time-from-absolute (d)
17478 "Return the time corresponding to date D.
17479 D may be an absolute day number, or a calendar-type list (month day year)."
17480 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17481 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17483 (defun org-calendar-holiday ()
17484 "List of holidays, for Diary display in Org-mode."
17485 (require 'holidays)
17486 (let ((hl (funcall
17487 (if (fboundp 'calendar-check-holidays)
17488 'calendar-check-holidays 'check-calendar-holidays) date)))
17489 (if hl (mapconcat 'identity hl "; "))))
17491 (defun org-diary-sexp-entry (sexp entry date)
17492 "Process a SEXP diary ENTRY for DATE."
17493 (require 'diary-lib)
17494 (let ((result (if calendar-debug-sexp
17495 (let ((stack-trace-on-error t))
17496 (eval (car (read-from-string sexp))))
17497 (condition-case nil
17498 (eval (car (read-from-string sexp)))
17499 (error
17500 (beep)
17501 (message "Bad sexp at line %d in %s: %s"
17502 (org-current-line)
17503 (buffer-file-name) sexp)
17504 (sleep-for 2))))))
17505 (cond ((stringp result) (split-string result "; "))
17506 ((and (consp result)
17507 (not (consp (cdr result)))
17508 (stringp (cdr result))) (cdr result))
17509 ((and (consp result)
17510 (stringp (car result))) result)
17511 (result entry))))
17513 (defun org-diary-to-ical-string (frombuf)
17514 "Get iCalendar entries from diary entries in buffer FROMBUF.
17515 This uses the icalendar.el library."
17516 (let* ((tmpdir (if (featurep 'xemacs)
17517 (temp-directory)
17518 temporary-file-directory))
17519 (tmpfile (make-temp-name
17520 (expand-file-name "orgics" tmpdir)))
17521 buf rtn b e)
17522 (with-current-buffer frombuf
17523 (icalendar-export-region (point-min) (point-max) tmpfile)
17524 (setq buf (find-buffer-visiting tmpfile))
17525 (set-buffer buf)
17526 (goto-char (point-min))
17527 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17528 (setq b (match-beginning 0)))
17529 (goto-char (point-max))
17530 (if (re-search-backward "^END:VEVENT" nil t)
17531 (setq e (match-end 0)))
17532 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17533 (kill-buffer buf)
17534 (delete-file tmpfile)
17535 rtn))
17537 (defun org-closest-date (start current change prefer show-all)
17538 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17539 When PREFER is `past', return a date that is either CURRENT or past.
17540 When PREFER is `future', return a date that is either CURRENT or future.
17541 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17542 ;; Make the proper lists from the dates
17543 (catch 'exit
17544 (let ((a1 '(("h" . hour)
17545 ("d" . day)
17546 ("w" . week)
17547 ("m" . month)
17548 ("y" . year)))
17549 (shour (nth 2 (org-parse-time-string start)))
17550 dn dw sday cday n1 n2 n0
17551 d m y y1 y2 date1 date2 nmonths nm ny m2)
17553 (setq start (org-date-to-gregorian start)
17554 current (org-date-to-gregorian
17555 (if show-all
17556 current
17557 (time-to-days (current-time))))
17558 sday (calendar-absolute-from-gregorian start)
17559 cday (calendar-absolute-from-gregorian current))
17561 (if (<= cday sday) (throw 'exit sday))
17563 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17564 (setq dn (string-to-number (match-string 1 change))
17565 dw (cdr (assoc (match-string 2 change) a1)))
17566 (user-error "Invalid change specifier: %s" change))
17567 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17568 (cond
17569 ((eq dw 'hour)
17570 (let ((missing-hours
17571 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17572 dn)))
17573 (setq n1 (if (zerop missing-hours) cday
17574 (- cday (1+ (floor (/ missing-hours 24)))))
17575 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17576 ((eq dw 'day)
17577 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17578 n2 (+ n1 dn)))
17579 ((eq dw 'year)
17580 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17581 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17582 (setq date1 (list m d y1)
17583 n1 (calendar-absolute-from-gregorian date1)
17584 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17585 n2 (calendar-absolute-from-gregorian date2)))
17586 ((eq dw 'month)
17587 ;; approx number of month between the two dates
17588 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17589 ;; How often does dn fit in there?
17590 (setq d (nth 1 start) m (car start) y (nth 2 start)
17591 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17592 m (+ m nm)
17593 ny (floor (/ m 12))
17594 y (+ y ny)
17595 m (- m (* ny 12)))
17596 (while (> m 12) (setq m (- m 12) y (1+ y)))
17597 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17598 (setq m2 (+ m dn) y2 y)
17599 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17600 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17601 (while (<= n2 cday)
17602 (setq n1 n2 m m2 y y2)
17603 (setq m2 (+ m dn) y2 y)
17604 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17605 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17606 ;; Make sure n1 is the earlier date
17607 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17608 (if show-all
17609 (cond
17610 ((eq prefer 'past) (if (= cday n2) n2 n1))
17611 ((eq prefer 'future) (if (= cday n1) n1 n2))
17612 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17613 (cond
17614 ((eq prefer 'past) (if (= cday n2) n2 n1))
17615 ((eq prefer 'future) (if (= cday n1) n1 n2))
17616 (t (if (= cday n1) n1 n2)))))))
17618 (defun org-date-to-gregorian (date)
17619 "Turn any specification of DATE into a Gregorian date for the calendar."
17620 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17621 ((and (listp date) (= (length date) 3)) date)
17622 ((stringp date)
17623 (setq date (org-parse-time-string date))
17624 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17625 ((listp date)
17626 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17628 (defun org-parse-time-string (s &optional nodefault)
17629 "Parse the standard Org-mode time string.
17630 This should be a lot faster than the normal `parse-time-string'.
17631 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17632 hour and minute fields will be nil if not given."
17633 (cond ((string-match org-ts-regexp0 s)
17634 (list 0
17635 (if (or (match-beginning 8) (not nodefault))
17636 (string-to-number (or (match-string 8 s) "0")))
17637 (if (or (match-beginning 7) (not nodefault))
17638 (string-to-number (or (match-string 7 s) "0")))
17639 (string-to-number (match-string 4 s))
17640 (string-to-number (match-string 3 s))
17641 (string-to-number (match-string 2 s))
17642 nil nil nil))
17643 ((string-match "^<[^>]+>$" s)
17644 (decode-time (seconds-to-time (org-matcher-time s))))
17645 (t (error "Not a standard Org-mode time string: %s" s))))
17647 (defun org-timestamp-up (&optional arg)
17648 "Increase the date item at the cursor by one.
17649 If the cursor is on the year, change the year. If it is on the month,
17650 the day or the time, change that.
17651 With prefix ARG, change by that many units."
17652 (interactive "p")
17653 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17655 (defun org-timestamp-down (&optional arg)
17656 "Decrease the date item at the cursor by one.
17657 If the cursor is on the year, change the year. If it is on the month,
17658 the day or the time, change that.
17659 With prefix ARG, change by that many units."
17660 (interactive "p")
17661 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17663 (defun org-timestamp-up-day (&optional arg)
17664 "Increase the date in the time stamp by one day.
17665 With prefix ARG, change that many days."
17666 (interactive "p")
17667 (if (and (not (org-at-timestamp-p t))
17668 (org-at-heading-p))
17669 (org-todo 'up)
17670 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17672 (defun org-timestamp-down-day (&optional arg)
17673 "Decrease the date in the time stamp by one day.
17674 With prefix ARG, change that many days."
17675 (interactive "p")
17676 (if (and (not (org-at-timestamp-p t))
17677 (org-at-heading-p))
17678 (org-todo 'down)
17679 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17681 (defun org-at-timestamp-p (&optional inactive-ok)
17682 "Determine if the cursor is in or at a timestamp."
17683 (interactive)
17684 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17685 (pos (point))
17686 (ans (or (looking-at tsr)
17687 (save-excursion
17688 (skip-chars-backward "^[<\n\r\t")
17689 (if (> (point) (point-min)) (backward-char 1))
17690 (and (looking-at tsr)
17691 (> (- (match-end 0) pos) -1))))))
17692 (and ans
17693 (boundp 'org-ts-what)
17694 (setq org-ts-what
17695 (cond
17696 ((= pos (match-beginning 0)) 'bracket)
17697 ;; Point is considered to be "on the bracket" whether
17698 ;; it's really on it or right after it.
17699 ((= pos (1- (match-end 0))) 'bracket)
17700 ((= pos (match-end 0)) 'after)
17701 ((org-pos-in-match-range pos 2) 'year)
17702 ((org-pos-in-match-range pos 3) 'month)
17703 ((org-pos-in-match-range pos 7) 'hour)
17704 ((org-pos-in-match-range pos 8) 'minute)
17705 ((or (org-pos-in-match-range pos 4)
17706 (org-pos-in-match-range pos 5)) 'day)
17707 ((and (> pos (or (match-end 8) (match-end 5)))
17708 (< pos (match-end 0)))
17709 (- pos (or (match-end 8) (match-end 5))))
17710 (t 'day))))
17711 ans))
17713 (defun org-toggle-timestamp-type ()
17714 "Toggle the type (<active> or [inactive]) of a time stamp."
17715 (interactive)
17716 (when (org-at-timestamp-p t)
17717 (let ((beg (match-beginning 0)) (end (match-end 0))
17718 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17719 (save-excursion
17720 (goto-char beg)
17721 (while (re-search-forward "[][<>]" end t)
17722 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17723 t t)))
17724 (message "Timestamp is now %sactive"
17725 (if (equal (char-after beg) ?<) "" "in")))))
17727 (defun org-at-clock-log-p nil
17728 "Is the cursor on the clock log line?"
17729 (save-excursion
17730 (move-beginning-of-line 1)
17731 (looking-at org-clock-line-re)))
17733 (defvar org-clock-history) ; defined in org-clock.el
17734 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17735 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17736 "Change the date in the time stamp at point.
17737 The date will be changed by N times WHAT. WHAT can be `day', `month',
17738 `year', `minute', `second'. If WHAT is not given, the cursor position
17739 in the timestamp determines what will be changed.
17740 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17741 (let ((origin (point)) origin-cat
17742 with-hm inactive
17743 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17744 org-ts-what
17745 extra rem
17746 ts time time0 fixnext clrgx)
17747 (if (not (org-at-timestamp-p t))
17748 (user-error "Not at a timestamp"))
17749 (if (and (not what) (eq org-ts-what 'bracket))
17750 (org-toggle-timestamp-type)
17751 ;; Point isn't on brackets. Remember the part of the time-stamp
17752 ;; the point was in. Indeed, size of time-stamps may change,
17753 ;; but point must be kept in the same category nonetheless.
17754 (setq origin-cat org-ts-what)
17755 (if (and (not what) (not (eq org-ts-what 'day))
17756 org-display-custom-times
17757 (get-text-property (point) 'display)
17758 (not (get-text-property (1- (point)) 'display)))
17759 (setq org-ts-what 'day))
17760 (setq org-ts-what (or what org-ts-what)
17761 inactive (= (char-after (match-beginning 0)) ?\[)
17762 ts (match-string 0))
17763 (replace-match "")
17764 (when (string-match
17765 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17767 (setq extra (match-string 1 ts))
17768 (if suppress-tmp-delay
17769 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17770 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17771 (setq with-hm t))
17772 (setq time0 (org-parse-time-string ts))
17773 (when (and updown
17774 (eq org-ts-what 'minute)
17775 (not current-prefix-arg))
17776 ;; This looks like s-up and s-down. Change by one rounding step.
17777 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17778 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17779 (setcar (cdr time0) (+ (nth 1 time0)
17780 (if (> n 0) (- rem) (- dm rem))))))
17781 (setq time
17782 (encode-time (or (car time0) 0)
17783 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17784 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17785 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17786 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17787 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17788 (nthcdr 6 time0)))
17789 (when (and (member org-ts-what '(hour minute))
17790 extra
17791 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17792 (setq extra (org-modify-ts-extra
17793 extra
17794 (if (eq org-ts-what 'hour) 2 5)
17795 n dm)))
17796 (when (integerp org-ts-what)
17797 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17798 (if (eq what 'calendar)
17799 (let ((cal-date (org-get-date-from-calendar)))
17800 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17801 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17802 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17803 (setcar time0 (or (car time0) 0))
17804 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17805 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17806 (setq time (apply 'encode-time time0))))
17807 ;; Insert the new time-stamp, and ensure point stays in the same
17808 ;; category as before (i.e. not after the last position in that
17809 ;; category).
17810 (let ((pos (point)))
17811 ;; Stay before inserted string. `save-excursion' is of no use.
17812 (setq org-last-changed-timestamp
17813 (org-insert-time-stamp time with-hm inactive nil nil extra))
17814 (goto-char pos))
17815 (save-match-data
17816 (looking-at org-ts-regexp3)
17817 (goto-char (cond
17818 ;; `day' category ends before `hour' if any, or at
17819 ;; the end of the day name.
17820 ((eq origin-cat 'day)
17821 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17822 ((eq origin-cat 'hour) (min (match-end 7) origin))
17823 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17824 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17825 ;; `year' and `month' have both fixed size: point
17826 ;; couldn't have moved into another part.
17827 (t origin))))
17828 ;; Update clock if on a CLOCK line.
17829 (org-clock-update-time-maybe)
17830 ;; Maybe adjust the closest clock in `org-clock-history'
17831 (when org-clock-adjust-closest
17832 (if (not (and (org-at-clock-log-p)
17833 (< 1 (length (delq nil (mapcar 'marker-position
17834 org-clock-history))))))
17835 (message "No clock to adjust")
17836 (cond ((save-excursion ; fix previous clock?
17837 (re-search-backward org-ts-regexp0 nil t)
17838 (org-looking-back (concat org-clock-string " \\[")))
17839 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17840 ((save-excursion ; fix next clock?
17841 (re-search-backward org-ts-regexp0 nil t)
17842 (looking-at (concat org-ts-regexp0 "\\] =>")))
17843 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17844 (save-window-excursion
17845 ;; Find closest clock to point, adjust the previous/next one in history
17846 (let* ((p (save-excursion (org-back-to-heading t)))
17847 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17848 (clfixnth
17849 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17850 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17851 (if (not clfixpos)
17852 (message "No clock to adjust")
17853 (save-excursion
17854 (org-goto-marker-or-bmk clfixpos)
17855 (org-show-subtree)
17856 (when (re-search-forward clrgx nil t)
17857 (goto-char (match-beginning 1))
17858 (let (org-clock-adjust-closest)
17859 (org-timestamp-change n org-ts-what updown))
17860 (message "Clock adjusted in %s for heading: %s"
17861 (file-name-nondirectory (buffer-file-name))
17862 (org-get-heading t t)))))))))
17863 ;; Try to recenter the calendar window, if any.
17864 (if (and org-calendar-follow-timestamp-change
17865 (get-buffer-window "*Calendar*" t)
17866 (memq org-ts-what '(day month year)))
17867 (org-recenter-calendar (time-to-days time))))))
17869 (defun org-modify-ts-extra (s pos n dm)
17870 "Change the different parts of the lead-time and repeat fields in timestamp."
17871 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17872 ng h m new rem)
17873 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17874 (cond
17875 ((or (org-pos-in-match-range pos 2)
17876 (org-pos-in-match-range pos 3))
17877 (setq m (string-to-number (match-string 3 s))
17878 h (string-to-number (match-string 2 s)))
17879 (if (org-pos-in-match-range pos 2)
17880 (setq h (+ h n))
17881 (setq n (* dm (org-no-warnings (signum n))))
17882 (when (not (= 0 (setq rem (% m dm))))
17883 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17884 (setq m (+ m n)))
17885 (if (< m 0) (setq m (+ m 60) h (1- h)))
17886 (if (> m 59) (setq m (- m 60) h (1+ h)))
17887 (setq h (min 24 (max 0 h)))
17888 (setq ng 1 new (format "-%02d:%02d" h m)))
17889 ((org-pos-in-match-range pos 6)
17890 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17891 ((org-pos-in-match-range pos 5)
17892 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17894 ((org-pos-in-match-range pos 9)
17895 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17896 ((org-pos-in-match-range pos 8)
17897 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17899 (when ng
17900 (setq s (concat
17901 (substring s 0 (match-beginning ng))
17903 (substring s (match-end ng))))))
17906 (defun org-recenter-calendar (date)
17907 "If the calendar is visible, recenter it to DATE."
17908 (let ((cwin (get-buffer-window "*Calendar*" t)))
17909 (when cwin
17910 (let ((calendar-move-hook nil))
17911 (with-selected-window cwin
17912 (calendar-goto-date (if (listp date) date
17913 (calendar-gregorian-from-absolute date))))))))
17915 (defun org-goto-calendar (&optional arg)
17916 "Go to the Emacs calendar at the current date.
17917 If there is a time stamp in the current line, go to that date.
17918 A prefix ARG can be used to force the current date."
17919 (interactive "P")
17920 (let ((tsr org-ts-regexp) diff
17921 (calendar-move-hook nil)
17922 (calendar-view-holidays-initially-flag nil)
17923 (calendar-view-diary-initially-flag nil))
17924 (if (or (org-at-timestamp-p)
17925 (save-excursion
17926 (beginning-of-line 1)
17927 (looking-at (concat ".*" tsr))))
17928 (let ((d1 (time-to-days (current-time)))
17929 (d2 (time-to-days
17930 (org-time-string-to-time (match-string 1)))))
17931 (setq diff (- d2 d1))))
17932 (calendar)
17933 (calendar-goto-today)
17934 (if (and diff (not arg)) (calendar-forward-day diff))))
17936 (defun org-get-date-from-calendar ()
17937 "Return a list (month day year) of date at point in calendar."
17938 (with-current-buffer "*Calendar*"
17939 (save-match-data
17940 (calendar-cursor-to-date))))
17942 (defun org-date-from-calendar ()
17943 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17944 If there is already a time stamp at the cursor position, update it."
17945 (interactive)
17946 (if (org-at-timestamp-p t)
17947 (org-timestamp-change 0 'calendar)
17948 (let ((cal-date (org-get-date-from-calendar)))
17949 (org-insert-time-stamp
17950 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17952 (defcustom org-effort-durations
17953 `(("min" . 1)
17954 ("h" . 60)
17955 ("d" . ,(* 60 8))
17956 ("w" . ,(* 60 8 5))
17957 ("m" . ,(* 60 8 5 4))
17958 ("y" . ,(* 60 8 5 40)))
17959 "Conversion factor to minutes for an effort modifier.
17961 Each entry has the form (MODIFIER . MINUTES).
17963 In an effort string, a number followed by MODIFIER is multiplied
17964 by the specified number of MINUTES to obtain an effort in
17965 minutes.
17967 For example, if the value of this variable is ((\"hours\" . 60)), then an
17968 effort string \"2hours\" is equivalent to 120 minutes."
17969 :group 'org-agenda
17970 :version "25.1"
17971 :package-version '(Org . "8.3")
17972 :type '(alist :key-type (string :tag "Modifier")
17973 :value-type (number :tag "Minutes")))
17975 (defun org-minutes-to-clocksum-string (m)
17976 "Format number of minutes as a clocksum string.
17977 The format is determined by `org-time-clocksum-format',
17978 `org-time-clocksum-use-fractional' and
17979 `org-time-clocksum-fractional-format' and
17980 `org-time-clocksum-use-effort-durations'."
17981 (let ((clocksum "")
17982 (m (round m)) ; Don't allow fractions of minutes
17983 h d w mo y fmt n)
17984 (setq h (if org-time-clocksum-use-effort-durations
17985 (cdr (assoc "h" org-effort-durations)) 60)
17986 d (if org-time-clocksum-use-effort-durations
17987 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17988 w (if org-time-clocksum-use-effort-durations
17989 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17990 mo (if org-time-clocksum-use-effort-durations
17991 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17992 y (if org-time-clocksum-use-effort-durations
17993 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17994 ;; fractional format
17995 (if org-time-clocksum-use-fractional
17996 (cond
17997 ;; single format string
17998 ((stringp org-time-clocksum-fractional-format)
17999 (format org-time-clocksum-fractional-format (/ m (float h))))
18000 ;; choice of fractional formats for different time units
18001 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18002 (> (/ (truncate m) (* y d h)) 0))
18003 (format fmt (/ m (* y d (float h)))))
18004 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18005 (> (/ (truncate m) (* mo d h)) 0))
18006 (format fmt (/ m (* mo d (float h)))))
18007 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18008 (> (/ (truncate m) (* w d h)) 0))
18009 (format fmt (/ m (* w d (float h)))))
18010 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18011 (> (/ (truncate m) (* d h)) 0))
18012 (format fmt (/ m (* d (float h)))))
18013 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18014 (> (/ (truncate m) h) 0))
18015 (format fmt (/ m (float h))))
18016 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18017 (format fmt m))
18018 ;; fall back to smallest time unit with a format
18019 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18020 (format fmt (/ m (float h))))
18021 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18022 (format fmt (/ m (* d (float h)))))
18023 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18024 (format fmt (/ m (* w d (float h)))))
18025 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18026 (format fmt (/ m (* mo d (float h)))))
18027 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18028 (format fmt (/ m (* y d (float h))))))
18029 ;; standard (non-fractional) format, with single format string
18030 (if (stringp org-time-clocksum-format)
18031 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18032 ;; separate formats components
18033 (and (setq fmt (plist-get org-time-clocksum-format :years))
18034 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18035 (plist-get org-time-clocksum-format :require-years))
18036 (setq clocksum (concat clocksum (format fmt n))
18037 m (- m (* n y d h))))
18038 (and (setq fmt (plist-get org-time-clocksum-format :months))
18039 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18040 (plist-get org-time-clocksum-format :require-months))
18041 (setq clocksum (concat clocksum (format fmt n))
18042 m (- m (* n mo d h))))
18043 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18044 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18045 (plist-get org-time-clocksum-format :require-weeks))
18046 (setq clocksum (concat clocksum (format fmt n))
18047 m (- m (* n w d h))))
18048 (and (setq fmt (plist-get org-time-clocksum-format :days))
18049 (or (> (setq n (/ (truncate m) (* d h))) 0)
18050 (plist-get org-time-clocksum-format :require-days))
18051 (setq clocksum (concat clocksum (format fmt n))
18052 m (- m (* n d h))))
18053 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18054 (or (> (setq n (/ (truncate m) h)) 0)
18055 (plist-get org-time-clocksum-format :require-hours))
18056 (setq clocksum (concat clocksum (format fmt n))
18057 m (- m (* n h))))
18058 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18059 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18060 (setq clocksum (concat clocksum (format fmt m))))
18061 ;; return formatted time duration
18062 clocksum))))
18064 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18065 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18066 "Org mode version 8.0")
18068 (defun org-hours-to-clocksum-string (n)
18069 (org-minutes-to-clocksum-string (* n 60)))
18071 (defun org-hh:mm-string-to-minutes (s)
18072 "Convert a string H:MM to a number of minutes.
18073 If the string is just a number, interpret it as minutes.
18074 In fact, the first hh:mm or number in the string will be taken,
18075 there can be extra stuff in the string.
18076 If no number is found, the return value is 0."
18077 (cond
18078 ((integerp s) s)
18079 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18080 (+ (* (string-to-number (match-string 1 s)) 60)
18081 (string-to-number (match-string 2 s))))
18082 ((string-match "\\([0-9]+\\)" s)
18083 (string-to-number (match-string 1 s)))
18084 (t 0)))
18086 (defcustom org-image-actual-width t
18087 "Should we use the actual width of images when inlining them?
18089 When set to `t', always use the image width.
18091 When set to a number, use imagemagick (when available) to set
18092 the image's width to this value.
18094 When set to a number in a list, try to get the width from any
18095 #+ATTR.* keyword if it matches a width specification like
18097 #+ATTR_HTML: :width 300px
18099 and fall back on that number if none is found.
18101 When set to nil, try to get the width from an #+ATTR.* keyword
18102 and fall back on the original width if none is found.
18104 This requires Emacs >= 24.1, build with imagemagick support."
18105 :group 'org-appearance
18106 :version "24.4"
18107 :package-version '(Org . "8.0")
18108 :type '(choice
18109 (const :tag "Use the image width" t)
18110 (integer :tag "Use a number of pixels")
18111 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18112 (const :tag "Use #+ATTR* or don't resize" nil)))
18114 (defcustom org-agenda-inhibit-startup nil
18115 "Inhibit startup when preparing agenda buffers.
18116 When this variable is `t', the initialization of the Org agenda
18117 buffers is inhibited: e.g. the visibility state is not set, the
18118 tables are not re-aligned, etc."
18119 :type 'boolean
18120 :version "24.3"
18121 :group 'org-agenda)
18123 (define-obsolete-variable-alias
18124 'org-agenda-ignore-drawer-properties
18125 'org-agenda-ignore-properties "25.1")
18127 (defcustom org-agenda-ignore-properties nil
18128 "Avoid updating text properties when building the agenda.
18129 Properties are used to prepare buffers for effort estimates,
18130 appointments, statistics and subtree-local categories.
18131 If you don't use these in the agenda, you can add them to this
18132 list and agenda building will be a bit faster.
18133 The value is a list, with zero or more of the symbols `effort', `appt',
18134 `stats' or `category'."
18135 :type '(set :greedy t
18136 (const effort)
18137 (const appt)
18138 (const stats)
18139 (const category))
18140 :version "25.1"
18141 :package-version '(Org . "8.3")
18142 :group 'org-agenda)
18144 (defun org-duration-string-to-minutes (s &optional output-to-string)
18145 "Convert a duration string S to minutes.
18147 A bare number is interpreted as minutes, modifiers can be set by
18148 customizing `org-effort-durations' (which see).
18150 Entries containing a colon are interpreted as H:MM by
18151 `org-hh:mm-string-to-minutes'."
18152 (let ((result 0)
18153 (re (concat "\\([0-9.]+\\) *\\("
18154 (regexp-opt (mapcar 'car org-effort-durations))
18155 "\\)")))
18156 (while (string-match re s)
18157 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18158 (string-to-number (match-string 1 s))))
18159 (setq s (replace-match "" nil t s)))
18160 (setq result (floor result))
18161 (incf result (org-hh:mm-string-to-minutes s))
18162 (if output-to-string (number-to-string result) result)))
18164 ;;;; Files
18166 (defun org-save-all-org-buffers ()
18167 "Save all Org-mode buffers without user confirmation."
18168 (interactive)
18169 (message "Saving all Org-mode buffers...")
18170 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18171 (when (featurep 'org-id) (org-id-locations-save))
18172 (message "Saving all Org-mode buffers... done"))
18174 (defun org-revert-all-org-buffers ()
18175 "Revert all Org-mode buffers.
18176 Prompt for confirmation when there are unsaved changes.
18177 Be sure you know what you are doing before letting this function
18178 overwrite your changes.
18180 This function is useful in a setup where one tracks org files
18181 with a version control system, to revert on one machine after pulling
18182 changes from another. I believe the procedure must be like this:
18184 1. M-x org-save-all-org-buffers
18185 2. Pull changes from the other machine, resolve conflicts
18186 3. M-x org-revert-all-org-buffers"
18187 (interactive)
18188 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18189 (user-error "Abort"))
18190 (save-excursion
18191 (save-window-excursion
18192 (mapc
18193 (lambda (b)
18194 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18195 (with-current-buffer b buffer-file-name))
18196 (org-pop-to-buffer-same-window b)
18197 (revert-buffer t 'no-confirm)))
18198 (buffer-list))
18199 (when (and (featurep 'org-id) org-id-track-globally)
18200 (org-id-locations-load)))))
18202 ;;;; Agenda files
18204 ;;;###autoload
18205 (defun org-switchb (&optional arg)
18206 "Switch between Org buffers.
18207 With one prefix argument, restrict available buffers to files.
18208 With two prefix arguments, restrict available buffers to agenda files.
18210 Defaults to `iswitchb' for buffer name completion.
18211 Set `org-completion-use-ido' to make it use ido instead."
18212 (interactive "P")
18213 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18214 ((equal arg '(16)) (org-buffer-list 'agenda))
18215 (t (org-buffer-list))))
18216 (org-completion-use-iswitchb org-completion-use-iswitchb)
18217 (org-completion-use-ido org-completion-use-ido))
18218 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18219 (setq org-completion-use-iswitchb t))
18220 (org-pop-to-buffer-same-window
18221 (org-icompleting-read "Org buffer: "
18222 (mapcar 'list (mapcar 'buffer-name blist))
18223 nil t))))
18225 ;;; Define some older names previously used for this functionality
18226 ;;;###autoload
18227 (defalias 'org-ido-switchb 'org-switchb)
18228 ;;;###autoload
18229 (defalias 'org-iswitchb 'org-switchb)
18231 (defun org-buffer-list (&optional predicate exclude-tmp)
18232 "Return a list of Org buffers.
18233 PREDICATE can be `export', `files' or `agenda'.
18235 export restrict the list to Export buffers.
18236 files restrict the list to buffers visiting Org files.
18237 agenda restrict the list to buffers visiting agenda files.
18239 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18240 (let* ((bfn nil)
18241 (agenda-files (and (eq predicate 'agenda)
18242 (mapcar 'file-truename (org-agenda-files t))))
18243 (filter
18244 (cond
18245 ((eq predicate 'files)
18246 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18247 ((eq predicate 'export)
18248 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18249 ((eq predicate 'agenda)
18250 (lambda (b)
18251 (with-current-buffer b
18252 (and (derived-mode-p 'org-mode)
18253 (setq bfn (buffer-file-name b))
18254 (member (file-truename bfn) agenda-files)))))
18255 (t (lambda (b) (with-current-buffer b
18256 (or (derived-mode-p 'org-mode)
18257 (string-match "\*Org .*Export"
18258 (buffer-name b)))))))))
18259 (delq nil
18260 (mapcar
18261 (lambda(b)
18262 (if (and (funcall filter b)
18263 (or (not exclude-tmp)
18264 (not (string-match "tmp" (buffer-name b)))))
18266 nil))
18267 (buffer-list)))))
18269 (defun org-agenda-files (&optional unrestricted archives)
18270 "Get the list of agenda files.
18271 Optional UNRESTRICTED means return the full list even if a restriction
18272 is currently in place.
18273 When ARCHIVES is t, include all archive files that are really being
18274 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18275 `org-agenda-archives-mode' is t."
18276 (let ((files
18277 (cond
18278 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18279 ((stringp org-agenda-files) (org-read-agenda-file-list))
18280 ((listp org-agenda-files) org-agenda-files)
18281 (t (error "Invalid value of `org-agenda-files'")))))
18282 (setq files (apply 'append
18283 (mapcar (lambda (f)
18284 (if (file-directory-p f)
18285 (directory-files
18286 f t org-agenda-file-regexp)
18287 (list f)))
18288 files)))
18289 (when org-agenda-skip-unavailable-files
18290 (setq files (delq nil
18291 (mapcar (function
18292 (lambda (file)
18293 (and (file-readable-p file) file)))
18294 files))))
18295 (when (or (eq archives t)
18296 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18297 (setq files (org-add-archive-files files)))
18298 files))
18300 (defun org-agenda-file-p (&optional file)
18301 "Return non-nil, if FILE is an agenda file.
18302 If FILE is omitted, use the file associated with the current
18303 buffer."
18304 (let ((fname (or file (buffer-file-name))))
18305 (and fname
18306 (member (file-truename fname)
18307 (mapcar #'file-truename (org-agenda-files t))))))
18309 (defun org-edit-agenda-file-list ()
18310 "Edit the list of agenda files.
18311 Depending on setup, this either uses customize to edit the variable
18312 `org-agenda-files', or it visits the file that is holding the list. In the
18313 latter case, the buffer is set up in a way that saving it automatically kills
18314 the buffer and restores the previous window configuration."
18315 (interactive)
18316 (if (stringp org-agenda-files)
18317 (let ((cw (current-window-configuration)))
18318 (find-file org-agenda-files)
18319 (org-set-local 'org-window-configuration cw)
18320 (org-add-hook 'after-save-hook
18321 (lambda ()
18322 (set-window-configuration
18323 (prog1 org-window-configuration
18324 (kill-buffer (current-buffer))))
18325 (org-install-agenda-files-menu)
18326 (message "New agenda file list installed"))
18327 nil 'local)
18328 (message "%s" (substitute-command-keys
18329 "Edit list and finish with \\[save-buffer]")))
18330 (customize-variable 'org-agenda-files)))
18332 (defun org-store-new-agenda-file-list (list)
18333 "Set new value for the agenda file list and save it correctly."
18334 (if (stringp org-agenda-files)
18335 (let ((fe (org-read-agenda-file-list t)) b u)
18336 (while (setq b (find-buffer-visiting org-agenda-files))
18337 (kill-buffer b))
18338 (with-temp-file org-agenda-files
18339 (insert
18340 (mapconcat
18341 (lambda (f) ;; Keep un-expanded entries.
18342 (if (setq u (assoc f fe))
18343 (cdr u)
18345 list "\n")
18346 "\n")))
18347 (let ((org-mode-hook nil) (org-inhibit-startup t)
18348 (org-insert-mode-line-in-empty-file nil))
18349 (setq org-agenda-files list)
18350 (customize-save-variable 'org-agenda-files org-agenda-files))))
18352 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18353 "Read the list of agenda files from a file.
18354 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18355 filenames, used by `org-store-new-agenda-file-list' to write back
18356 un-expanded file names."
18357 (when (file-directory-p org-agenda-files)
18358 (error "`org-agenda-files' cannot be a single directory"))
18359 (when (stringp org-agenda-files)
18360 (with-temp-buffer
18361 (insert-file-contents org-agenda-files)
18362 (mapcar
18363 (lambda (f)
18364 (let ((e (expand-file-name (substitute-in-file-name f)
18365 org-directory)))
18366 (if pair-with-expansion
18367 (cons e f)
18368 e)))
18369 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18371 ;;;###autoload
18372 (defun org-cycle-agenda-files ()
18373 "Cycle through the files in `org-agenda-files'.
18374 If the current buffer visits an agenda file, find the next one in the list.
18375 If the current buffer does not, find the first agenda file."
18376 (interactive)
18377 (let* ((fs (org-agenda-files t))
18378 (files (append fs (list (car fs))))
18379 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18380 file)
18381 (unless files (user-error "No agenda files"))
18382 (catch 'exit
18383 (while (setq file (pop files))
18384 (if (equal (file-truename file) tcf)
18385 (when (car files)
18386 (find-file (car files))
18387 (throw 'exit t))))
18388 (find-file (car fs)))
18389 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18391 (defun org-agenda-file-to-front (&optional to-end)
18392 "Move/add the current file to the top of the agenda file list.
18393 If the file is not present in the list, it is added to the front. If it is
18394 present, it is moved there. With optional argument TO-END, add/move to the
18395 end of the list."
18396 (interactive "P")
18397 (let ((org-agenda-skip-unavailable-files nil)
18398 (file-alist (mapcar (lambda (x)
18399 (cons (file-truename x) x))
18400 (org-agenda-files t)))
18401 (ctf (file-truename
18402 (or buffer-file-name
18403 (user-error "Please save the current buffer to a file"))))
18404 x had)
18405 (setq x (assoc ctf file-alist) had x)
18407 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18408 (if to-end
18409 (setq file-alist (append (delq x file-alist) (list x)))
18410 (setq file-alist (cons x (delq x file-alist))))
18411 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18412 (org-install-agenda-files-menu)
18413 (message "File %s to %s of agenda file list"
18414 (if had "moved" "added") (if to-end "end" "front"))))
18416 (defun org-remove-file (&optional file)
18417 "Remove current file from the list of files in variable `org-agenda-files'.
18418 These are the files which are being checked for agenda entries.
18419 Optional argument FILE means use this file instead of the current."
18420 (interactive)
18421 (let* ((org-agenda-skip-unavailable-files nil)
18422 (file (or file buffer-file-name
18423 (user-error "Current buffer does not visit a file")))
18424 (true-file (file-truename file))
18425 (afile (abbreviate-file-name file))
18426 (files (delq nil (mapcar
18427 (lambda (x)
18428 (if (equal true-file
18429 (file-truename x))
18430 nil x))
18431 (org-agenda-files t)))))
18432 (if (not (= (length files) (length (org-agenda-files t))))
18433 (progn
18434 (org-store-new-agenda-file-list files)
18435 (org-install-agenda-files-menu)
18436 (message "Removed from Org Agenda list: %s" afile))
18437 (message "File was not in list: %s (not removed)" afile))))
18439 (defun org-file-menu-entry (file)
18440 (vector file (list 'find-file file) t))
18442 (defun org-check-agenda-file (file)
18443 "Make sure FILE exists. If not, ask user what to do."
18444 (when (not (file-exists-p file))
18445 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18446 (abbreviate-file-name file))
18447 (let ((r (downcase (read-char-exclusive))))
18448 (cond
18449 ((equal r ?r)
18450 (org-remove-file file)
18451 (throw 'nextfile t))
18452 (t (user-error "Abort"))))))
18454 (defun org-get-agenda-file-buffer (file)
18455 "Get an agenda buffer visiting FILE.
18456 If the buffer needs to be created, add it to the list of buffers
18457 which might be released later."
18458 (let ((buf (org-find-base-buffer-visiting file)))
18459 (if buf
18460 buf ; just return it
18461 ;; Make a new buffer and remember it
18462 (setq buf (find-file-noselect file))
18463 (if buf (push buf org-agenda-new-buffers))
18464 buf)))
18466 (defun org-release-buffers (blist)
18467 "Release all buffers in list, asking the user for confirmation when needed.
18468 When a buffer is unmodified, it is just killed. When modified, it is saved
18469 \(if the user agrees) and then killed."
18470 (let (buf file)
18471 (while (setq buf (pop blist))
18472 (setq file (buffer-file-name buf))
18473 (when (and (buffer-modified-p buf)
18474 file
18475 (y-or-n-p (format "Save file %s? " file)))
18476 (with-current-buffer buf (save-buffer)))
18477 (kill-buffer buf))))
18479 (defun org-agenda-prepare-buffers (files)
18480 "Create buffers for all agenda files, protect archived trees and comments."
18481 (interactive)
18482 (let ((pa '(:org-archived t))
18483 (pc '(:org-comment t))
18484 (pall '(:org-archived t :org-comment t))
18485 (inhibit-read-only t)
18486 (org-inhibit-startup org-agenda-inhibit-startup)
18487 (rea (concat ":" org-archive-tag ":"))
18488 file re pos)
18489 (setq org-tag-alist-for-agenda nil
18490 org-tag-groups-alist-for-agenda nil)
18491 (save-excursion
18492 (save-restriction
18493 (while (setq file (pop files))
18494 (catch 'nextfile
18495 (if (bufferp file)
18496 (set-buffer file)
18497 (org-check-agenda-file file)
18498 (set-buffer (org-get-agenda-file-buffer file)))
18499 (widen)
18500 (org-set-regexps-and-options 'tags-only)
18501 (setq pos (point))
18502 (or (memq 'category org-agenda-ignore-properties)
18503 (org-refresh-category-properties))
18504 (or (memq 'stats org-agenda-ignore-properties)
18505 (org-refresh-stats-properties))
18506 (or (memq 'effort org-agenda-ignore-properties)
18507 (org-refresh-effort-properties))
18508 (or (memq 'appt org-agenda-ignore-properties)
18509 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18510 (setq org-todo-keywords-for-agenda
18511 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18512 (setq org-done-keywords-for-agenda
18513 (append org-done-keywords-for-agenda org-done-keywords))
18514 (setq org-todo-keyword-alist-for-agenda
18515 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18516 (setq org-tag-alist-for-agenda
18517 (org-uniquify
18518 (append org-tag-alist-for-agenda
18519 org-tag-alist
18520 org-tag-persistent-alist)))
18521 (if org-group-tags
18522 (setq org-tag-groups-alist-for-agenda
18523 (org-uniquify-alist
18524 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18525 (org-with-silent-modifications
18526 (save-excursion
18527 (remove-text-properties (point-min) (point-max) pall)
18528 (when org-agenda-skip-archived-trees
18529 (goto-char (point-min))
18530 (while (re-search-forward rea nil t)
18531 (if (org-at-heading-p t)
18532 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18533 (goto-char (point-min))
18534 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18535 (while (re-search-forward re nil t)
18536 (when (save-match-data (org-in-commented-heading-p t))
18537 (add-text-properties
18538 (match-beginning 0) (org-end-of-subtree t) pc)))))
18539 (goto-char pos)))))
18540 (setq org-todo-keywords-for-agenda
18541 (org-uniquify org-todo-keywords-for-agenda))
18542 (setq org-todo-keyword-alist-for-agenda
18543 (org-uniquify org-todo-keyword-alist-for-agenda))))
18546 ;;;; CDLaTeX minor mode
18548 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18549 "Keymap for the minor `org-cdlatex-mode'.")
18551 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18552 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18553 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18554 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18555 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18557 (defvar org-cdlatex-texmathp-advice-is-done nil
18558 "Flag remembering if we have applied the advice to texmathp already.")
18560 (define-minor-mode org-cdlatex-mode
18561 "Toggle the minor `org-cdlatex-mode'.
18562 This mode supports entering LaTeX environment and math in LaTeX fragments
18563 in Org-mode.
18564 \\{org-cdlatex-mode-map}"
18565 nil " OCDL" nil
18566 (when org-cdlatex-mode
18567 (require 'cdlatex)
18568 (run-hooks 'cdlatex-mode-hook)
18569 (cdlatex-compute-tables))
18570 (unless org-cdlatex-texmathp-advice-is-done
18571 (setq org-cdlatex-texmathp-advice-is-done t)
18572 (defadvice texmathp (around org-math-always-on activate)
18573 "Always return t in org-mode buffers.
18574 This is because we want to insert math symbols without dollars even outside
18575 the LaTeX math segments. If Orgmode thinks that point is actually inside
18576 an embedded LaTeX fragment, let texmathp do its job.
18577 \\[org-cdlatex-mode-map]"
18578 (interactive)
18579 (let (p)
18580 (cond
18581 ((not (derived-mode-p 'org-mode)) ad-do-it)
18582 ((eq this-command 'cdlatex-math-symbol)
18583 (setq ad-return-value t
18584 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18586 (let ((p (org-inside-LaTeX-fragment-p)))
18587 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18588 (setq ad-return-value t
18589 texmathp-why '("Org-mode embedded math" . 0))
18590 (if p ad-do-it)))))))))
18592 (defun turn-on-org-cdlatex ()
18593 "Unconditionally turn on `org-cdlatex-mode'."
18594 (org-cdlatex-mode 1))
18596 (defun org-try-cdlatex-tab ()
18597 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18598 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18599 - inside a LaTeX fragment, or
18600 - after the first word in a line, where an abbreviation expansion could
18601 insert a LaTeX environment."
18602 (when org-cdlatex-mode
18603 (cond
18604 ;; Before any word on the line: No expansion possible.
18605 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18606 ;; Just after first word on the line: Expand it. Make sure it
18607 ;; cannot happen on headlines, though.
18608 ((save-excursion
18609 (skip-chars-backward "a-zA-Z0-9*")
18610 (skip-chars-backward " \t")
18611 (and (bolp) (not (org-at-heading-p))))
18612 (cdlatex-tab) t)
18613 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18615 (defun org-cdlatex-underscore-caret (&optional arg)
18616 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18617 Revert to the normal definition outside of these fragments."
18618 (interactive "P")
18619 (if (org-inside-LaTeX-fragment-p)
18620 (call-interactively 'cdlatex-sub-superscript)
18621 (let (org-cdlatex-mode)
18622 (call-interactively (key-binding (vector last-input-event))))))
18624 (defun org-cdlatex-math-modify (&optional arg)
18625 "Execute `cdlatex-math-modify' in LaTeX fragments.
18626 Revert to the normal definition outside of these fragments."
18627 (interactive "P")
18628 (if (org-inside-LaTeX-fragment-p)
18629 (call-interactively 'cdlatex-math-modify)
18630 (let (org-cdlatex-mode)
18631 (call-interactively (key-binding (vector last-input-event))))))
18633 (defun org-cdlatex-environment-indent (&optional environment item)
18634 "Execute `cdlatex-environment' and indent the inserted environment.
18636 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18638 The inserted environment is indented to current indentation
18639 unless point is at the beginning of the line, in which the
18640 environment remains unintended."
18641 (interactive)
18642 ;; cdlatex-environment always return nil. Therefore, capture output
18643 ;; first and determine if an environment was selected.
18644 (let* ((beg (point-marker))
18645 (end (copy-marker (point) t))
18646 (inserted (progn
18647 (ignore-errors (cdlatex-environment environment item))
18648 (< beg end)))
18649 ;; Figure out how many lines to move forward after the
18650 ;; environment has been inserted.
18651 (lines (when inserted
18652 (save-excursion
18653 (- (loop while (< beg (point))
18654 with x = 0
18655 do (forward-line -1)
18656 (incf x)
18657 finally return x)
18658 (if (progn (goto-char beg)
18659 (and (progn (skip-chars-forward " \t") (eolp))
18660 (progn (skip-chars-backward " \t") (bolp))))
18661 1 0)))))
18662 (env (org-trim (delete-and-extract-region beg end))))
18663 (when inserted
18664 ;; Get indentation of next line unless at column 0.
18665 (let ((ind (if (bolp) 0
18666 (save-excursion
18667 (org-return-indent)
18668 (prog1 (org-get-indentation)
18669 (when (progn (skip-chars-forward " \t") (eolp))
18670 (delete-region beg (point)))))))
18671 (bol (progn (skip-chars-backward " \t") (bolp))))
18672 ;; Insert a newline before environment unless at column zero
18673 ;; to "escape" the current line. Insert a newline if
18674 ;; something is one the same line as \end{ENVIRONMENT}.
18675 (insert
18676 (concat (unless bol "\n") env
18677 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18678 (unless (zerop ind)
18679 (save-excursion
18680 (goto-char beg)
18681 (while (< (point) end)
18682 (unless (eolp) (org-indent-line-to ind))
18683 (forward-line))))
18684 (goto-char beg)
18685 (forward-line lines)
18686 (org-indent-line-to ind)))
18687 (set-marker beg nil)
18688 (set-marker end nil)))
18691 ;;;; LaTeX fragments
18693 (defun org-inside-LaTeX-fragment-p ()
18694 "Test if point is inside a LaTeX fragment.
18695 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18696 sequence appearing also before point.
18697 Even though the matchers for math are configurable, this function assumes
18698 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18699 delimiters are skipped when they have been removed by customization.
18700 The return value is nil, or a cons cell with the delimiter and the
18701 position of this delimiter.
18703 This function does a reasonably good job, but can locally be fooled by
18704 for example currency specifications. For example it will assume being in
18705 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18706 fragments that are properly closed, but during editing, we have to live
18707 with the uncertainty caused by missing closing delimiters. This function
18708 looks only before point, not after."
18709 (catch 'exit
18710 (let ((pos (point))
18711 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18712 (lim (progn
18713 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18714 (point)))
18715 dd-on str (start 0) m re)
18716 (goto-char pos)
18717 (when dodollar
18718 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18719 re (nth 1 (assoc "$" org-latex-regexps)))
18720 (while (string-match re str start)
18721 (cond
18722 ((= (match-end 0) (length str))
18723 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18724 ((= (match-end 0) (- (length str) 5))
18725 (throw 'exit nil))
18726 (t (setq start (match-end 0))))))
18727 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18728 (goto-char pos)
18729 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18730 (and (match-beginning 2) (throw 'exit nil))
18731 ;; count $$
18732 (while (re-search-backward "\\$\\$" lim t)
18733 (setq dd-on (not dd-on)))
18734 (goto-char pos)
18735 (if dd-on (cons "$$" m))))))
18737 (defun org-inside-latex-macro-p ()
18738 "Is point inside a LaTeX macro or its arguments?"
18739 (save-match-data
18740 (org-in-regexp
18741 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18743 (defvar org-latex-fragment-image-overlays nil
18744 "List of overlays carrying the images of latex fragments.")
18745 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18747 (defun org-remove-latex-fragment-image-overlays ()
18748 "Remove all overlays with LaTeX fragment images in current buffer."
18749 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18750 (setq org-latex-fragment-image-overlays nil))
18752 (define-obsolete-function-alias
18753 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18754 (defun org-toggle-latex-fragment (&optional subtree)
18755 "Preview the LaTeX fragment at point, or all locally or globally.
18756 If the cursor is in a LaTeX fragment, create the image and overlay
18757 it over the source code. If there is no fragment at point, display
18758 all fragments in the current text, from one headline to the next. With
18759 prefix SUBTREE, display all fragments in the current subtree. With a
18760 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18761 the cursor is before the first headline,
18762 display all fragments in the buffer.
18763 The images can be removed again with \\[org-toggle-latex-fragment]."
18764 (interactive "P")
18765 (unless (buffer-file-name (buffer-base-buffer))
18766 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18767 (if org-latex-fragment-image-overlays
18768 (progn (org-remove-latex-fragment-image-overlays)
18769 (message "LaTeX fragments images removed"))
18770 (when (display-graphic-p)
18771 (org-remove-latex-fragment-image-overlays)
18772 (org-with-wide-buffer
18773 (let (beg end msg)
18774 (cond
18775 ((equal subtree '(16))
18776 (setq beg (point-min) end (point-max)
18777 msg "Creating images for buffer...%s"))
18778 ((equal subtree '(4))
18779 (org-back-to-heading)
18780 (setq beg (point) end (org-end-of-subtree t)
18781 msg "Creating images for subtree...%s"))
18782 ((let ((context (org-element-context)))
18783 (when (memq (org-element-type context)
18784 '(latex-environment latex-fragment))
18785 (setq beg (org-element-property :begin context)
18786 end (org-element-property :end context)
18787 msg "Creating image...%s"))))
18788 ((org-before-first-heading-p)
18789 (setq beg (point-min) end (point-max)
18790 msg "Creating images for buffer...%s"))
18792 (org-back-to-heading)
18793 (setq beg (point) end (progn (outline-next-heading) (point))
18794 msg "Creating images for entry...%s")))
18795 (message msg "")
18796 (narrow-to-region beg end)
18797 (goto-char beg)
18798 (org-format-latex
18799 (concat org-latex-preview-ltxpng-directory
18800 (file-name-sans-extension
18801 (file-name-nondirectory
18802 (buffer-file-name (buffer-base-buffer)))))
18803 default-directory 'overlays msg 'forbuffer
18804 org-latex-create-formula-image-program)
18805 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18807 (defun org-format-latex
18808 (prefix &optional dir overlays msg forbuffer processing-type)
18809 "Replace LaTeX fragments with links to an image, and produce images.
18810 Some of the options can be changed using the variable
18811 `org-format-latex-options'."
18812 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18813 (unless (eq processing-type 'verbatim)
18814 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18815 (cnt 0)
18816 checkdir-flag)
18817 (goto-char (point-min))
18818 (while (re-search-forward math-regexp nil t)
18819 (unless (and overlays
18820 (eq (get-char-property (point) 'org-overlay-type)
18821 'org-latex-overlay))
18822 (let* ((context (org-element-context))
18823 (type (org-element-type context)))
18824 (when (memq type '(latex-environment latex-fragment))
18825 (let ((block-type (eq type 'latex-environment))
18826 (value (org-element-property :value context))
18827 (beg (org-element-property :begin context))
18828 (end (save-excursion
18829 (goto-char (org-element-property :end context))
18830 (skip-chars-backward " \r\t\n")
18831 (point))))
18832 (case processing-type
18833 (mathjax
18834 ;; Prepare for MathJax processing.
18835 (if (eq (char-after beg) ?$)
18836 (save-excursion
18837 (delete-region beg end)
18838 (insert "\\(" (substring value 1 -1) "\\)"))
18839 (goto-char end)))
18840 ((dvipng imagemagick)
18841 ;; Process to an image.
18842 (incf cnt)
18843 (goto-char beg)
18844 (let* ((face (face-at-point))
18845 ;; Get the colors from the face at point.
18847 (let ((color (plist-get org-format-latex-options
18848 :foreground)))
18849 (if (and forbuffer (eq color 'auto))
18850 (face-attribute face :foreground nil 'default)
18851 color)))
18853 (let ((color (plist-get org-format-latex-options
18854 :background)))
18855 (if (and forbuffer (eq color 'auto))
18856 (face-attribute face :background nil 'default)
18857 color)))
18858 (hash (sha1 (prin1-to-string
18859 (list org-format-latex-header
18860 org-latex-default-packages-alist
18861 org-latex-packages-alist
18862 org-format-latex-options
18863 forbuffer value fg bg))))
18864 (absprefix (expand-file-name prefix dir))
18865 (linkfile (format "%s_%s.png" prefix hash))
18866 (movefile (format "%s_%s.png" absprefix hash))
18867 (sep (and block-type "\n\n"))
18868 (link (concat sep "[[file:" linkfile "]]" sep))
18869 (options
18870 (org-combine-plists
18871 org-format-latex-options
18872 `(:foreground ,fg :background ,bg))))
18873 (when msg (message msg cnt))
18874 (unless checkdir-flag ; Ensure the directory exists.
18875 (setq checkdir-flag t)
18876 (let ((todir (file-name-directory absprefix)))
18877 (unless (file-directory-p todir)
18878 (make-directory todir t))))
18879 (unless (file-exists-p movefile)
18880 (org-create-formula-image
18881 value movefile options forbuffer processing-type))
18882 (if overlays
18883 (progn
18884 (dolist (o (overlays-in beg end))
18885 (when (eq (overlay-get o 'org-overlay-type)
18886 'org-latex-overlay)
18887 (delete-overlay o)))
18888 (let ((ov (make-overlay beg end)))
18889 (overlay-put ov
18890 'org-overlay-type
18891 'org-latex-overlay)
18892 (if (featurep 'xemacs)
18893 (progn
18894 (overlay-put ov 'invisible t)
18895 (overlay-put
18896 ov 'end-glyph
18897 (make-glyph
18898 (vector 'png :file movefile))))
18899 (overlay-put
18900 ov 'display
18901 (list 'image
18902 :type 'png
18903 :file movefile
18904 :ascent 'center)))
18905 (push ov org-latex-fragment-image-overlays))
18906 (goto-char end))
18907 (delete-region beg end)
18908 (insert
18909 (org-add-props link
18910 (list 'org-latex-src
18911 (replace-regexp-in-string "\"" "" value)
18912 'org-latex-src-embed-type
18913 (if block-type 'paragraph 'character)))))))
18914 (mathml
18915 ;; Process to MathML.
18916 (unless (org-format-latex-mathml-available-p)
18917 (user-error "LaTeX to MathML converter not configured"))
18918 (incf cnt)
18919 (when msg (message msg cnt))
18920 (goto-char beg)
18921 (delete-region beg end)
18922 (insert (org-format-latex-as-mathml
18923 value block-type prefix dir)))
18924 (otherwise
18925 (error "Unknown conversion type %s for LaTeX fragments"
18926 processing-type)))))))))))
18928 (defun org-create-math-formula (latex-frag &optional mathml-file)
18929 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18930 Use `org-latex-to-mathml-convert-command'. If the conversion is
18931 sucessful, return the portion between \"<math...> </math>\"
18932 elements otherwise return nil. When MATHML-FILE is specified,
18933 write the results in to that file. When invoked as an
18934 interactive command, prompt for LATEX-FRAG, with initial value
18935 set to the current active region and echo the results for user
18936 inspection."
18937 (interactive (list (let ((frag (when (org-region-active-p)
18938 (buffer-substring-no-properties
18939 (region-beginning) (region-end)))))
18940 (read-string "LaTeX Fragment: " frag nil frag))))
18941 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18942 (let* ((tmp-in-file (file-relative-name
18943 (make-temp-name (expand-file-name "ltxmathml-in"))))
18944 (ignore (write-region latex-frag nil tmp-in-file))
18945 (tmp-out-file (file-relative-name
18946 (make-temp-name (expand-file-name "ltxmathml-out"))))
18947 (cmd (format-spec
18948 org-latex-to-mathml-convert-command
18949 `((?j . ,(shell-quote-argument
18950 (expand-file-name org-latex-to-mathml-jar-file)))
18951 (?I . ,(shell-quote-argument tmp-in-file))
18952 (?o . ,(shell-quote-argument tmp-out-file)))))
18953 mathml shell-command-output)
18954 (when (org-called-interactively-p 'any)
18955 (unless (org-format-latex-mathml-available-p)
18956 (user-error "LaTeX to MathML converter not configured")))
18957 (message "Running %s" cmd)
18958 (setq shell-command-output (shell-command-to-string cmd))
18959 (setq mathml
18960 (when (file-readable-p tmp-out-file)
18961 (with-current-buffer (find-file-noselect tmp-out-file t)
18962 (goto-char (point-min))
18963 (when (re-search-forward
18964 (concat
18965 (regexp-quote
18966 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18967 "\\(.\\|\n\\)*"
18968 (regexp-quote "</math>")) nil t)
18969 (prog1 (match-string 0) (kill-buffer))))))
18970 (cond
18971 (mathml
18972 (setq mathml
18973 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18974 (when mathml-file
18975 (write-region mathml nil mathml-file))
18976 (when (org-called-interactively-p 'any)
18977 (message mathml)))
18978 ((message "LaTeX to MathML conversion failed")
18979 (message shell-command-output)))
18980 (delete-file tmp-in-file)
18981 (when (file-exists-p tmp-out-file)
18982 (delete-file tmp-out-file))
18983 mathml))
18985 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18986 prefix &optional dir)
18987 "Use `org-create-math-formula' but check local cache first."
18988 (let* ((absprefix (expand-file-name prefix dir))
18989 (print-length nil) (print-level nil)
18990 (formula-id (concat
18991 "formula-"
18992 (sha1
18993 (prin1-to-string
18994 (list latex-frag
18995 org-latex-to-mathml-convert-command)))))
18996 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18997 (formula-cache-dir (file-name-directory formula-cache)))
18999 (unless (file-directory-p formula-cache-dir)
19000 (make-directory formula-cache-dir t))
19002 (unless (file-exists-p formula-cache)
19003 (org-create-math-formula latex-frag formula-cache))
19005 (if (file-exists-p formula-cache)
19006 ;; Successful conversion. Return the link to MathML file.
19007 (org-add-props
19008 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19009 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19010 'org-latex-src-embed-type (if latex-frag-type
19011 'paragraph 'character)))
19012 ;; Failed conversion. Return the LaTeX fragment verbatim
19013 latex-frag)))
19015 (defun org-create-formula-image (string tofile options buffer &optional type)
19016 "Create an image from LaTeX source using dvipng or convert.
19017 This function calls either `org-create-formula-image-with-dvipng'
19018 or `org-create-formula-image-with-imagemagick' depending on the
19019 value of `org-latex-create-formula-image-program' or on the value
19020 of the optional TYPE variable.
19022 Note: ultimately these two function should be combined as they
19023 share a good deal of logic."
19024 (org-check-external-command
19025 "latex" "needed to convert LaTeX fragments to images")
19026 (funcall
19027 (case (or type org-latex-create-formula-image-program)
19028 ('dvipng
19029 (org-check-external-command
19030 "dvipng" "needed to convert LaTeX fragments to images")
19031 'org-create-formula-image-with-dvipng)
19032 ('imagemagick
19033 (org-check-external-command
19034 "convert" "you need to install imagemagick")
19035 'org-create-formula-image-with-imagemagick)
19036 (t (error
19037 "Invalid value of `org-latex-create-formula-image-program'")))
19038 string tofile options buffer))
19040 (declare-function org-export-get-backend "ox" (name))
19041 (declare-function org-export--get-global-options "ox" (&optional backend))
19042 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19043 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19044 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19045 (defun org-create-formula--latex-header ()
19046 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19047 (let ((info (org-combine-plists (org-export--get-global-options
19048 (org-export-get-backend 'latex))
19049 (org-export--get-inbuffer-options
19050 (org-export-get-backend 'latex)))))
19051 (org-latex-guess-babel-language
19052 (org-latex-guess-inputenc
19053 (org-splice-latex-header
19054 org-format-latex-header
19055 org-latex-default-packages-alist
19056 org-latex-packages-alist t
19057 (plist-get info :latex-header)))
19058 info)))
19060 (defun org--get-display-dpi ()
19061 "Get the DPI of the display.
19063 Assumes that the display has the same pixel width in the
19064 horizontal and vertical directions."
19065 (if (display-graphic-p)
19066 (round (/ (display-pixel-height)
19067 (/ (display-mm-height) 25.4)))
19068 (error "Attempt to calculate the dpi of a non-graphic display")))
19070 ;; This function borrows from Ganesh Swami's latex2png.el
19071 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19072 "This calls dvipng."
19073 (require 'ox-latex)
19074 (let* ((tmpdir (if (featurep 'xemacs)
19075 (temp-directory)
19076 temporary-file-directory))
19077 (texfilebase (make-temp-name
19078 (expand-file-name "orgtex" tmpdir)))
19079 (texfile (concat texfilebase ".tex"))
19080 (dvifile (concat texfilebase ".dvi"))
19081 (pngfile (concat texfilebase ".png"))
19082 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19083 ;; This assumes that the display has the same pixel width in
19084 ;; the horizontal and vertical directions
19085 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19086 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19087 "Black"))
19088 (bg (or (plist-get options (if buffer :background :html-background))
19089 "Transparent")))
19090 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19091 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19092 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19093 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19094 (let ((latex-header (org-create-formula--latex-header)))
19095 (with-temp-file texfile
19096 (insert latex-header)
19097 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19098 (let ((dir default-directory))
19099 (ignore-errors
19100 (cd tmpdir)
19101 (call-process "latex" nil nil nil texfile))
19102 (cd dir))
19103 (if (not (file-exists-p dvifile))
19104 (progn (message "Failed to create dvi file from %s" texfile) nil)
19105 (ignore-errors
19106 (if (featurep 'xemacs)
19107 (call-process "dvipng" nil nil nil
19108 "-fg" fg "-bg" bg
19109 "-T" "tight"
19110 "-o" pngfile
19111 dvifile)
19112 (call-process "dvipng" nil nil nil
19113 "-fg" fg "-bg" bg
19114 "-D" dpi
19115 ;;"-x" scale "-y" scale
19116 "-T" "tight"
19117 "-o" pngfile
19118 dvifile)))
19119 (if (not (file-exists-p pngfile))
19120 (if org-format-latex-signal-error
19121 (error "Failed to create png file from %s" texfile)
19122 (message "Failed to create png file from %s" texfile)
19123 nil)
19124 ;; Use the requested file name and clean up
19125 (copy-file pngfile tofile 'replace)
19126 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19127 (if (file-exists-p (concat texfilebase e))
19128 (delete-file (concat texfilebase e))))
19129 pngfile))))
19131 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19132 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19133 "This calls convert, which is included into imagemagick."
19134 (require 'ox-latex)
19135 (let* ((tmpdir (if (featurep 'xemacs)
19136 (temp-directory)
19137 temporary-file-directory))
19138 (texfilebase (make-temp-name
19139 (expand-file-name "orgtex" tmpdir)))
19140 (texfile (concat texfilebase ".tex"))
19141 (pdffile (concat texfilebase ".pdf"))
19142 (pngfile (concat texfilebase ".png"))
19143 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19144 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19145 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19146 "black"))
19147 (bg (or (plist-get options (if buffer :background :html-background))
19148 "white")))
19149 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19150 (setq fg (org-latex-color-format fg)))
19151 (if (eq bg 'default) (setq bg (org-latex-color :background))
19152 (setq bg (org-latex-color-format
19153 (if (string= bg "Transparent") "white" bg))))
19154 (let ((latex-header (org-create-formula--latex-header)))
19155 (with-temp-file texfile
19156 (insert latex-header)
19157 (insert "\n\\begin{document}\n"
19158 "\\definecolor{fg}{rgb}{" fg "}\n"
19159 "\\definecolor{bg}{rgb}{" bg "}\n"
19160 "\n\\pagecolor{bg}\n"
19161 "\n{\\color{fg}\n"
19162 string
19163 "\n}\n"
19164 "\n\\end{document}\n")))
19165 (org-latex-compile texfile t)
19166 (if (not (file-exists-p pdffile))
19167 (progn (message "Failed to create pdf file from %s" texfile) nil)
19168 (ignore-errors
19169 (if (featurep 'xemacs)
19170 (call-process "convert" nil nil nil
19171 "-density" "96"
19172 "-trim"
19173 "-antialias"
19174 pdffile
19175 "-quality" "100"
19176 ;; "-sharpen" "0x1.0"
19177 pngfile)
19178 (call-process "convert" nil nil nil
19179 "-density" dpi
19180 "-trim"
19181 "-antialias"
19182 pdffile
19183 "-quality" "100"
19184 ;; "-sharpen" "0x1.0"
19185 pngfile)))
19186 (if (not (file-exists-p pngfile))
19187 (if org-format-latex-signal-error
19188 (error "Failed to create png file from %s" texfile)
19189 (message "Failed to create png file from %s" texfile)
19190 nil)
19191 ;; Use the requested file name and clean up
19192 (copy-file pngfile tofile 'replace)
19193 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19194 (if (file-exists-p (concat texfilebase e))
19195 (delete-file (concat texfilebase e))))
19196 pngfile))))
19198 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19199 "Fill a LaTeX header template TPL.
19200 In the template, the following place holders will be recognized:
19202 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19203 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19204 [PACKAGES] \\usepackage statements for PKG
19205 [NO-PACKAGES] do not include PKG
19206 [EXTRA] the string EXTRA
19207 [NO-EXTRA] do not include EXTRA
19209 For backward compatibility, if both the positive and the negative place
19210 holder is missing, the positive one (without the \"NO-\") will be
19211 assumed to be present at the end of the template.
19212 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19213 EXTRA is a string.
19214 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19215 (let (rpl (end ""))
19216 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19217 (setq rpl (if (or (match-end 1) (not def-pkg))
19218 "" (org-latex-packages-to-string def-pkg snippets-p t))
19219 tpl (replace-match rpl t t tpl))
19220 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19222 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19223 (setq rpl (if (or (match-end 1) (not pkg))
19224 "" (org-latex-packages-to-string pkg snippets-p t))
19225 tpl (replace-match rpl t t tpl))
19226 (if pkg (setq end
19227 (concat end "\n"
19228 (org-latex-packages-to-string pkg snippets-p)))))
19230 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19231 (setq rpl (if (or (match-end 1) (not extra))
19232 "" (concat extra "\n"))
19233 tpl (replace-match rpl t t tpl))
19234 (if (and extra (string-match "\\S-" extra))
19235 (setq end (concat end "\n" extra))))
19237 (if (string-match "\\S-" end)
19238 (concat tpl "\n" end)
19239 tpl)))
19241 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19242 "Turn an alist of packages into a string with the \\usepackage macros."
19243 (setq pkg (mapconcat (lambda(p)
19244 (cond
19245 ((stringp p) p)
19246 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19247 (format "%% Package %s omitted" (cadr p)))
19248 ((equal "" (car p))
19249 (format "\\usepackage{%s}" (cadr p)))
19251 (format "\\usepackage[%s]{%s}"
19252 (car p) (cadr p)))))
19254 "\n"))
19255 (if newline (concat pkg "\n") pkg))
19257 (defun org-dvipng-color (attr)
19258 "Return a RGB color specification for dvipng."
19259 (apply 'format "rgb %s %s %s"
19260 (mapcar 'org-normalize-color
19261 (if (featurep 'xemacs)
19262 (color-rgb-components
19263 (face-property 'default
19264 (cond ((eq attr :foreground) 'foreground)
19265 ((eq attr :background) 'background))))
19266 (color-values (face-attribute 'default attr nil))))))
19268 (defun org-dvipng-color-format (color-name)
19269 "Convert COLOR-NAME to a RGB color value for dvipng."
19270 (apply 'format "rgb %s %s %s"
19271 (mapcar 'org-normalize-color
19272 (color-values color-name))))
19274 (defun org-latex-color (attr)
19275 "Return a RGB color for the LaTeX color package."
19276 (apply 'format "%s,%s,%s"
19277 (mapcar 'org-normalize-color
19278 (if (featurep 'xemacs)
19279 (color-rgb-components
19280 (face-property 'default
19281 (cond ((eq attr :foreground) 'foreground)
19282 ((eq attr :background) 'background))))
19283 (color-values (face-attribute 'default attr nil))))))
19285 (defun org-latex-color-format (color-name)
19286 "Convert COLOR-NAME to a RGB color value."
19287 (apply 'format "%s,%s,%s"
19288 (mapcar 'org-normalize-color
19289 (color-values color-name))))
19291 (defun org-normalize-color (value)
19292 "Return string to be used as color value for an RGB component."
19293 (format "%g" (/ value 65535.0)))
19297 ;; Image display
19299 (defvar org-inline-image-overlays nil)
19300 (make-variable-buffer-local 'org-inline-image-overlays)
19302 (defun org-toggle-inline-images (&optional include-linked)
19303 "Toggle the display of inline images.
19304 INCLUDE-LINKED is passed to `org-display-inline-images'."
19305 (interactive "P")
19306 (if org-inline-image-overlays
19307 (progn
19308 (org-remove-inline-images)
19309 (when (org-called-interactively-p 'interactive)
19310 (message "Inline image display turned off")))
19311 (org-display-inline-images include-linked)
19312 (when (org-called-interactively-p 'interactive)
19313 (message (if org-inline-image-overlays
19314 (format "%d images displayed inline"
19315 (length org-inline-image-overlays))
19316 "No images to display inline")))))
19318 (defun org-redisplay-inline-images ()
19319 "Refresh the display of inline images."
19320 (interactive)
19321 (if (not org-inline-image-overlays)
19322 (org-toggle-inline-images)
19323 (org-toggle-inline-images)
19324 (org-toggle-inline-images)))
19326 (defun org-display-inline-images (&optional include-linked refresh beg end)
19327 "Display inline images.
19329 An inline image is a link which follows either of these
19330 conventions:
19332 1. Its path is a file with an extension matching return value
19333 from `image-file-name-regexp' and it has no contents.
19335 2. Its description consists in a single link of the previous
19336 type.
19338 When optional argument INCLUDE-LINKED is non-nil, also links with
19339 a text description part will be inlined. This can be nice for
19340 a quick look at those images, but it does not reflect what
19341 exported files will look like.
19343 When optional argument REFRESH is non-nil, refresh existing
19344 images between BEG and END. This will create new image displays
19345 only if necessary. BEG and END default to the buffer
19346 boundaries."
19347 (interactive "P")
19348 (when (display-graphic-p)
19349 (unless refresh
19350 (org-remove-inline-images)
19351 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19352 (org-with-wide-buffer
19353 (goto-char (or beg (point-min)))
19354 (let ((case-fold-search t)
19355 (file-extension-re (org-image-file-name-regexp)))
19356 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19357 (let ((link (save-match-data (org-element-context))))
19358 ;; Check if we're at an inline image.
19359 (when (and (equal (org-element-property :type link) "file")
19360 (or include-linked
19361 (not (org-element-property :contents-begin link)))
19362 (let ((parent (org-element-property :parent link)))
19363 (or (not (eq (org-element-type parent) 'link))
19364 (not (cdr (org-element-contents parent)))))
19365 (org-string-match-p file-extension-re
19366 (org-element-property :path link)))
19367 (let ((file (expand-file-name (org-element-property :path link))))
19368 (when (file-exists-p file)
19369 (let ((width
19370 ;; Apply `org-image-actual-width' specifications.
19371 (cond
19372 ((not (image-type-available-p 'imagemagick)) nil)
19373 ((eq org-image-actual-width t) nil)
19374 ((listp org-image-actual-width)
19376 ;; First try to find a width among
19377 ;; attributes associated to the paragraph
19378 ;; containing link.
19379 (let ((paragraph
19380 (let ((e link))
19381 (while (and (setq e (org-element-property
19382 :parent e))
19383 (not (eq (org-element-type e)
19384 'paragraph))))
19385 e)))
19386 (when paragraph
19387 (save-excursion
19388 (goto-char (org-element-property :begin paragraph))
19389 (when
19390 (re-search-forward
19391 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19392 (org-element-property
19393 :post-affiliated paragraph)
19395 (string-to-number (match-string 1))))))
19396 ;; Otherwise, fall-back to provided number.
19397 (car org-image-actual-width)))
19398 ((numberp org-image-actual-width)
19399 org-image-actual-width)))
19400 (old (get-char-property-and-overlay
19401 (org-element-property :begin link)
19402 'org-image-overlay)))
19403 (if (and (car-safe old) refresh)
19404 (image-refresh (overlay-get (cdr old) 'display))
19405 (let ((image (create-image file
19406 (and width 'imagemagick)
19408 :width width)))
19409 (when image
19410 (let* ((link
19411 ;; If inline image is the description
19412 ;; of another link, be sure to
19413 ;; consider the latter as the one to
19414 ;; apply the overlay on.
19415 (let ((parent
19416 (org-element-property :parent link)))
19417 (if (eq (org-element-type parent) 'link)
19418 parent
19419 link)))
19420 (ov (make-overlay
19421 (org-element-property :begin link)
19422 (progn
19423 (goto-char
19424 (org-element-property :end link))
19425 (skip-chars-backward " \t")
19426 (point)))))
19427 (overlay-put ov 'display image)
19428 (overlay-put ov 'face 'default)
19429 (overlay-put ov 'org-image-overlay t)
19430 (overlay-put
19431 ov 'modification-hooks
19432 (list 'org-display-inline-remove-overlay))
19433 (push ov org-inline-image-overlays)))))))))))))))
19435 (define-obsolete-function-alias
19436 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19438 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19439 "Remove inline-display overlay if a corresponding region is modified."
19440 (let ((inhibit-modification-hooks t))
19441 (when (and ov after)
19442 (delete ov org-inline-image-overlays)
19443 (delete-overlay ov))))
19445 (defun org-remove-inline-images ()
19446 "Remove inline display of images."
19447 (interactive)
19448 (mapc 'delete-overlay org-inline-image-overlays)
19449 (setq org-inline-image-overlays nil))
19451 ;;;; Key bindings
19453 ;; Outline functions from `outline-mode-prefix-map'
19454 ;; that can be remapped in Org:
19455 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19456 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19457 (define-key org-mode-map [remap outline-forward-same-level]
19458 'org-forward-heading-same-level)
19459 (define-key org-mode-map [remap outline-backward-same-level]
19460 'org-backward-heading-same-level)
19461 (define-key org-mode-map [remap show-branches]
19462 'org-kill-note-or-show-branches)
19463 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19464 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19465 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19466 (define-key org-mode-map [remap outline-next-visible-heading]
19467 'org-next-visible-heading)
19468 (define-key org-mode-map [remap outline-previous-visible-heading]
19469 'org-previous-visible-heading)
19471 ;; Outline functions from `outline-mode-prefix-map' that can not
19472 ;; be remapped in Org:
19474 ;; - the column "key binding" shows whether the Outline function is still
19475 ;; available in Org mode on the same key that it has been bound to in
19476 ;; Outline mode:
19477 ;; - "overridden": key used for a different functionality in Org mode
19478 ;; - else: key still bound to the same Outline function in Org mode
19480 ;; | Outline function | key binding | Org replacement |
19481 ;; |------------------------------------+-------------+--------------------------|
19482 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19483 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19484 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19485 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19486 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19487 ;; | `show-entry' | overridden | no replacement |
19488 ;; | `show-children' | `C-c C-i' | visibility cycling |
19489 ;; | `show-branches' | `C-c C-k' | still same function |
19490 ;; | `show-subtree' | overridden | visibility cycling |
19491 ;; | `show-all' | overridden | no replacement |
19492 ;; | `hide-subtree' | overridden | visibility cycling |
19493 ;; | `hide-body' | overridden | no replacement |
19494 ;; | `hide-entry' | overridden | visibility cycling |
19495 ;; | `hide-leaves' | overridden | no replacement |
19496 ;; | `hide-sublevels' | overridden | no replacement |
19497 ;; | `hide-other' | overridden | no replacement |
19499 ;; Make `C-c C-x' a prefix key
19500 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19502 ;; TAB key with modifiers
19503 (org-defkey org-mode-map "\C-i" 'org-cycle)
19504 (org-defkey org-mode-map [(tab)] 'org-cycle)
19505 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19506 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19507 ;; The following line is necessary under Suse GNU/Linux
19508 (unless (featurep 'xemacs)
19509 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19510 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19511 (define-key org-mode-map [backtab] 'org-shifttab)
19513 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19514 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19515 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19517 ;; Cursor keys with modifiers
19518 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19519 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19520 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19521 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19523 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19524 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19525 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19526 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19527 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19528 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19530 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19531 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19532 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19533 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19535 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19536 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19537 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19538 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19540 ;; Babel keys
19541 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19542 (mapc (lambda (pair)
19543 (define-key org-babel-map (car pair) (cdr pair)))
19544 org-babel-key-bindings)
19546 ;;; Extra keys for tty access.
19547 ;; We only set them when really needed because otherwise the
19548 ;; menus don't show the simple keys
19550 (when (or org-use-extra-keys
19551 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19552 (not window-system))
19553 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19554 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19555 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19556 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19557 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19558 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19559 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19560 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19561 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19562 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19563 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19564 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19565 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19566 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19567 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19568 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19569 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19570 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19571 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19572 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19573 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19574 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19575 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19576 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19577 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19578 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19579 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19580 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19582 ;; All the other keys
19584 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19585 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19586 (if (boundp 'narrow-map)
19587 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19588 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19589 (if (boundp 'narrow-map)
19590 (org-defkey narrow-map "b" 'org-narrow-to-block)
19591 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19592 (if (boundp 'narrow-map)
19593 (org-defkey narrow-map "e" 'org-narrow-to-element)
19594 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19595 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19596 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19597 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19598 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19599 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19600 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19601 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19602 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19603 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19604 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19605 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19606 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19607 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19608 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19609 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19610 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19611 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19612 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19613 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19614 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19615 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19616 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19617 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19618 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19619 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19620 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19621 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19622 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19623 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19624 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19625 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19626 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19627 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19628 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19629 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19630 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19631 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19632 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19633 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19634 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19635 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19636 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19637 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19638 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19639 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19640 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19641 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19642 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19643 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19644 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19645 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19646 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19647 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19648 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19649 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19650 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19651 (org-defkey org-mode-map "\C-c^" 'org-sort)
19652 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19653 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19654 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19655 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19656 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19657 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19658 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19659 (org-defkey org-mode-map "\C-m" 'org-return)
19660 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19661 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19662 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19663 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19664 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19665 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19666 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19667 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19668 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19669 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19670 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19671 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19672 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19673 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19674 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19675 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19676 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19677 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19678 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19679 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19680 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19681 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19682 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19683 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19684 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19686 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19687 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19688 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19690 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19691 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19692 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19693 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19694 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19695 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19696 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19697 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19698 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19699 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19700 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19701 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19702 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19703 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19704 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19705 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19706 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19707 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19708 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19709 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19710 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19711 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19712 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19714 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19715 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19716 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19717 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19718 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19720 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19722 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19724 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19725 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19727 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19730 (when (featurep 'xemacs)
19731 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19734 (defconst org-speed-commands-default
19736 ("Outline Navigation")
19737 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19738 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19739 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19740 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19741 ("F" . org-next-block)
19742 ("B" . org-previous-block)
19743 ("u" . (org-speed-move-safe 'outline-up-heading))
19744 ("j" . org-goto)
19745 ("g" . (org-refile t))
19746 ("Outline Visibility")
19747 ("c" . org-cycle)
19748 ("C" . org-shifttab)
19749 (" " . org-display-outline-path)
19750 ("s" . org-narrow-to-subtree)
19751 ("=" . org-columns)
19752 ("Outline Structure Editing")
19753 ("U" . org-metaup)
19754 ("D" . org-metadown)
19755 ("r" . org-metaright)
19756 ("l" . org-metaleft)
19757 ("R" . org-shiftmetaright)
19758 ("L" . org-shiftmetaleft)
19759 ("i" . (progn (forward-char 1) (call-interactively
19760 'org-insert-heading-respect-content)))
19761 ("^" . org-sort)
19762 ("w" . org-refile)
19763 ("a" . org-archive-subtree-default-with-confirmation)
19764 ("@" . org-mark-subtree)
19765 ("#" . org-toggle-comment)
19766 ("Clock Commands")
19767 ("I" . org-clock-in)
19768 ("O" . org-clock-out)
19769 ("Meta Data Editing")
19770 ("t" . org-todo)
19771 ("," . (org-priority))
19772 ("0" . (org-priority ?\ ))
19773 ("1" . (org-priority ?A))
19774 ("2" . (org-priority ?B))
19775 ("3" . (org-priority ?C))
19776 (":" . org-set-tags-command)
19777 ("e" . org-set-effort)
19778 ("E" . org-inc-effort)
19779 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19780 (org-entry-put (point) "APPT_WARNTIME" m)))
19781 ("Agenda Views etc")
19782 ("v" . org-agenda)
19783 ("/" . org-sparse-tree)
19784 ("Misc")
19785 ("o" . org-open-at-point)
19786 ("?" . org-speed-command-help)
19787 ("<" . (org-agenda-set-restriction-lock 'subtree))
19788 (">" . (org-agenda-remove-restriction-lock))
19790 "The default speed commands.")
19792 (defun org-print-speed-command (e)
19793 (if (> (length (car e)) 1)
19794 (progn
19795 (princ "\n")
19796 (princ (car e))
19797 (princ "\n")
19798 (princ (make-string (length (car e)) ?-))
19799 (princ "\n"))
19800 (princ (car e))
19801 (princ " ")
19802 (if (symbolp (cdr e))
19803 (princ (symbol-name (cdr e)))
19804 (prin1 (cdr e)))
19805 (princ "\n")))
19807 (defun org-speed-command-help ()
19808 "Show the available speed commands."
19809 (interactive)
19810 (if (not org-use-speed-commands)
19811 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19812 (with-output-to-temp-buffer "*Help*"
19813 (princ "User-defined Speed commands\n===========================\n")
19814 (mapc 'org-print-speed-command org-speed-commands-user)
19815 (princ "\n")
19816 (princ "Built-in Speed commands\n=======================\n")
19817 (mapc 'org-print-speed-command org-speed-commands-default))
19818 (with-current-buffer "*Help*"
19819 (setq truncate-lines t))))
19821 (defun org-speed-move-safe (cmd)
19822 "Execute CMD, but make sure that the cursor always ends up in a headline.
19823 If not, return to the original position and throw an error."
19824 (interactive)
19825 (let ((pos (point)))
19826 (call-interactively cmd)
19827 (unless (and (bolp) (org-at-heading-p))
19828 (goto-char pos)
19829 (error "Boundary reached while executing %s" cmd))))
19831 (defvar org-self-insert-command-undo-counter 0)
19833 (defvar org-table-auto-blank-field) ; defined in org-table.el
19834 (defvar org-speed-command nil)
19836 (define-obsolete-function-alias
19837 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19839 (defun org-speed-command-activate (keys)
19840 "Hook for activating single-letter speed commands.
19841 `org-speed-commands-default' specifies a minimal command set.
19842 Use `org-speed-commands-user' for further customization."
19843 (when (or (and (bolp) (looking-at org-outline-regexp))
19844 (and (functionp org-use-speed-commands)
19845 (funcall org-use-speed-commands)))
19846 (cdr (assoc keys (append org-speed-commands-user
19847 org-speed-commands-default)))))
19849 (define-obsolete-function-alias
19850 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19852 (defun org-babel-speed-command-activate (keys)
19853 "Hook for activating single-letter code block commands."
19854 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19855 (cdr (assoc keys org-babel-key-bindings))))
19857 (defcustom org-speed-command-hook
19858 '(org-speed-command-default-hook org-babel-speed-command-hook)
19859 "Hook for activating speed commands at strategic locations.
19860 Hook functions are called in sequence until a valid handler is
19861 found.
19863 Each hook takes a single argument, a user-pressed command key
19864 which is also a `self-insert-command' from the global map.
19866 Within the hook, examine the cursor position and the command key
19867 and return nil or a valid handler as appropriate. Handler could
19868 be one of an interactive command, a function, or a form.
19870 Set `org-use-speed-commands' to non-nil value to enable this
19871 hook. The default setting is `org-speed-command-activate'."
19872 :group 'org-structure
19873 :version "24.1"
19874 :type 'hook)
19876 (defun org-self-insert-command (N)
19877 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19878 If the cursor is in a table looking at whitespace, the whitespace is
19879 overwritten, and the table is not marked as requiring realignment."
19880 (interactive "p")
19881 (org-check-before-invisible-edit 'insert)
19882 (cond
19883 ((and org-use-speed-commands
19884 (let ((kv (this-command-keys-vector)))
19885 (setq org-speed-command
19886 (run-hook-with-args-until-success
19887 'org-speed-command-hook
19888 (make-string 1 (aref kv (1- (length kv))))))))
19889 (cond
19890 ((commandp org-speed-command)
19891 (setq this-command org-speed-command)
19892 (call-interactively org-speed-command))
19893 ((functionp org-speed-command)
19894 (funcall org-speed-command))
19895 ((and org-speed-command (listp org-speed-command))
19896 (eval org-speed-command))
19897 (t (let (org-use-speed-commands)
19898 (call-interactively 'org-self-insert-command)))))
19899 ((and
19900 (org-table-p)
19901 (progn
19902 ;; check if we blank the field, and if that triggers align
19903 (and (featurep 'org-table) org-table-auto-blank-field
19904 (memq last-command
19905 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
19906 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19907 ;; got extra space, this field does not determine column width
19908 (let (org-table-may-need-update) (org-table-blank-field))
19909 ;; no extra space, this field may determine column width
19910 (org-table-blank-field)))
19912 (eq N 1)
19913 (looking-at "[^|\n]* |"))
19914 (let (org-table-may-need-update)
19915 (goto-char (1- (match-end 0)))
19916 (backward-delete-char 1)
19917 (goto-char (match-beginning 0))
19918 (self-insert-command N)))
19920 (setq org-table-may-need-update t)
19921 (self-insert-command N)
19922 (org-fix-tags-on-the-fly)
19923 (if org-self-insert-cluster-for-undo
19924 (if (not (eq last-command 'org-self-insert-command))
19925 (setq org-self-insert-command-undo-counter 1)
19926 (if (>= org-self-insert-command-undo-counter 20)
19927 (setq org-self-insert-command-undo-counter 1)
19928 (and (> org-self-insert-command-undo-counter 0)
19929 buffer-undo-list (listp buffer-undo-list)
19930 (not (cadr buffer-undo-list)) ; remove nil entry
19931 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19932 (setq org-self-insert-command-undo-counter
19933 (1+ org-self-insert-command-undo-counter))))))))
19935 (defun org-check-before-invisible-edit (kind)
19936 "Check is editing if kind KIND would be dangerous with invisible text around.
19937 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19938 ;; First, try to get out of here as quickly as possible, to reduce overhead
19939 (if (and org-catch-invisible-edits
19940 (or (not (boundp 'visible-mode)) (not visible-mode))
19941 (or (get-char-property (point) 'invisible)
19942 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19943 ;; OK, we need to take a closer look
19944 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19945 (invisible-before-point (if (bobp) nil (get-char-property
19946 (1- (point)) 'invisible)))
19947 (border-and-ok-direction
19949 ;; Check if we are acting predictably before invisible text
19950 (and invisible-at-point (not invisible-before-point)
19951 (memq kind '(insert delete-backward)))
19952 ;; Check if we are acting predictably after invisible text
19953 ;; This works not well, and I have turned it off. It seems
19954 ;; better to always show and stop after invisible text.
19955 ;; (and (not invisible-at-point) invisible-before-point
19956 ;; (memq kind '(insert delete)))
19958 (when (or (memq invisible-at-point '(outline org-hide-block t))
19959 (memq invisible-before-point '(outline org-hide-block t)))
19960 (if (eq org-catch-invisible-edits 'error)
19961 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19962 (if (and org-custom-properties-overlays
19963 (y-or-n-p "Display invisible properties in this buffer? "))
19964 (org-toggle-custom-properties-visibility)
19965 ;; Make the area visible
19966 (save-excursion
19967 (if invisible-before-point
19968 (goto-char (previous-single-char-property-change
19969 (point) 'invisible)))
19970 (show-subtree))
19971 (cond
19972 ((eq org-catch-invisible-edits 'show)
19973 ;; That's it, we do the edit after showing
19974 (message
19975 "Unfolding invisible region around point before editing")
19976 (sit-for 1))
19977 ((and (eq org-catch-invisible-edits 'smart)
19978 border-and-ok-direction)
19979 (message "Unfolding invisible region around point before editing"))
19981 ;; Don't do the edit, make the user repeat it in full visibility
19982 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19984 (defun org-fix-tags-on-the-fly ()
19985 (when (and (equal (char-after (point-at-bol)) ?*)
19986 (org-at-heading-p))
19987 (org-align-tags-here org-tags-column)))
19989 (defun org-delete-backward-char (N)
19990 "Like `delete-backward-char', insert whitespace at field end in tables.
19991 When deleting backwards, in tables this function will insert whitespace in
19992 front of the next \"|\" separator, to keep the table aligned. The table will
19993 still be marked for re-alignment if the field did fill the entire column,
19994 because, in this case the deletion might narrow the column."
19995 (interactive "p")
19996 (save-match-data
19997 (org-check-before-invisible-edit 'delete-backward)
19998 (if (and (org-table-p)
19999 (eq N 1)
20000 (string-match "|" (buffer-substring (point-at-bol) (point)))
20001 (looking-at ".*?|"))
20002 (let ((pos (point))
20003 (noalign (looking-at "[^|\n\r]* |"))
20004 (c org-table-may-need-update))
20005 (backward-delete-char N)
20006 (if (not overwrite-mode)
20007 (progn
20008 (skip-chars-forward "^|")
20009 (insert " ")
20010 (goto-char (1- pos))))
20011 ;; noalign: if there were two spaces at the end, this field
20012 ;; does not determine the width of the column.
20013 (if noalign (setq org-table-may-need-update c)))
20014 (backward-delete-char N)
20015 (org-fix-tags-on-the-fly))))
20017 (defun org-delete-char (N)
20018 "Like `delete-char', but insert whitespace at field end in tables.
20019 When deleting characters, in tables this function will insert whitespace in
20020 front of the next \"|\" separator, to keep the table aligned. The table will
20021 still be marked for re-alignment if the field did fill the entire column,
20022 because, in this case the deletion might narrow the column."
20023 (interactive "p")
20024 (save-match-data
20025 (org-check-before-invisible-edit 'delete)
20026 (if (and (org-table-p)
20027 (not (bolp))
20028 (not (= (char-after) ?|))
20029 (eq N 1))
20030 (if (looking-at ".*?|")
20031 (let ((pos (point))
20032 (noalign (looking-at "[^|\n\r]* |"))
20033 (c org-table-may-need-update))
20034 (replace-match
20035 (concat (substring (match-string 0) 1 -1) " |") nil t)
20036 (goto-char pos)
20037 ;; noalign: if there were two spaces at the end, this field
20038 ;; does not determine the width of the column.
20039 (if noalign (setq org-table-may-need-update c)))
20040 (delete-char N))
20041 (delete-char N)
20042 (org-fix-tags-on-the-fly))))
20044 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20045 (put 'org-self-insert-command 'delete-selection
20046 (lambda ()
20047 (not (run-hook-with-args-until-success
20048 'self-insert-uses-region-functions))))
20049 (put 'orgtbl-self-insert-command 'delete-selection
20050 (lambda ()
20051 (not (run-hook-with-args-until-success
20052 'self-insert-uses-region-functions))))
20053 (put 'org-delete-char 'delete-selection 'supersede)
20054 (put 'org-delete-backward-char 'delete-selection 'supersede)
20055 (put 'org-yank 'delete-selection 'yank)
20057 ;; Make `flyspell-mode' delay after some commands
20058 (put 'org-self-insert-command 'flyspell-delayed t)
20059 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20060 (put 'org-delete-char 'flyspell-delayed t)
20061 (put 'org-delete-backward-char 'flyspell-delayed t)
20063 ;; Make pabbrev-mode expand after org-mode commands
20064 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20065 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20067 (defun org-remap (map &rest commands)
20068 "In MAP, remap the functions given in COMMANDS.
20069 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20070 (let (new old)
20071 (while commands
20072 (setq old (pop commands) new (pop commands))
20073 (if (fboundp 'command-remapping)
20074 (org-defkey map (vector 'remap old) new)
20075 (substitute-key-definition old new map global-map)))))
20077 (defun org-transpose-words ()
20078 "Transpose words for Org.
20079 This uses the `org-mode-transpose-word-syntax-table' syntax
20080 table, which interprets characters in `org-emphasis-alist' as
20081 word constituents."
20082 (interactive)
20083 (with-syntax-table org-mode-transpose-word-syntax-table
20084 (call-interactively 'transpose-words)))
20085 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20087 (when (eq org-enable-table-editor 'optimized)
20088 ;; If the user wants maximum table support, we need to hijack
20089 ;; some standard editing functions
20090 (org-remap org-mode-map
20091 'self-insert-command 'org-self-insert-command
20092 'delete-char 'org-delete-char
20093 'delete-backward-char 'org-delete-backward-char)
20094 (org-defkey org-mode-map "|" 'org-force-self-insert))
20096 (defvar org-ctrl-c-ctrl-c-hook nil
20097 "Hook for functions attaching themselves to `C-c C-c'.
20099 This can be used to add additional functionality to the C-c C-c
20100 key which executes context-dependent commands. This hook is run
20101 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20102 run after the last test.
20104 Each function will be called with no arguments. The function
20105 must check if the context is appropriate for it to act. If yes,
20106 it should do its thing and then return a non-nil value. If the
20107 context is wrong, just do nothing and return nil.")
20109 (defvar org-ctrl-c-ctrl-c-final-hook nil
20110 "Hook for functions attaching themselves to `C-c C-c'.
20112 This can be used to add additional functionality to the C-c C-c
20113 key which executes context-dependent commands. This hook is run
20114 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20115 before the first test.
20117 Each function will be called with no arguments. The function
20118 must check if the context is appropriate for it to act. If yes,
20119 it should do its thing and then return a non-nil value. If the
20120 context is wrong, just do nothing and return nil.")
20122 (defvar org-tab-first-hook nil
20123 "Hook for functions to attach themselves to TAB.
20124 See `org-ctrl-c-ctrl-c-hook' for more information.
20125 This hook runs as the first action when TAB is pressed, even before
20126 `org-cycle' messes around with the `outline-regexp' to cater for
20127 inline tasks and plain list item folding.
20128 If any function in this hook returns t, any other actions that
20129 would have been caused by TAB (such as table field motion or visibility
20130 cycling) will not occur.")
20132 (defvar org-tab-after-check-for-table-hook nil
20133 "Hook for functions to attach themselves to TAB.
20134 See `org-ctrl-c-ctrl-c-hook' for more information.
20135 This hook runs after it has been established that the cursor is not in a
20136 table, but before checking if the cursor is in a headline or if global cycling
20137 should be done.
20138 If any function in this hook returns t, not other actions like visibility
20139 cycling will be done.")
20141 (defvar org-tab-after-check-for-cycling-hook nil
20142 "Hook for functions to attach themselves to TAB.
20143 See `org-ctrl-c-ctrl-c-hook' for more information.
20144 This hook runs after it has been established that not table field motion and
20145 not visibility should be done because of current context. This is probably
20146 the place where a package like yasnippets can hook in.")
20148 (defvar org-tab-before-tab-emulation-hook nil
20149 "Hook for functions to attach themselves to TAB.
20150 See `org-ctrl-c-ctrl-c-hook' for more information.
20151 This hook runs after every other options for TAB have been exhausted, but
20152 before indentation and \t insertion takes place.")
20154 (defvar org-metaleft-hook nil
20155 "Hook for functions attaching themselves to `M-left'.
20156 See `org-ctrl-c-ctrl-c-hook' for more information.")
20157 (defvar org-metaright-hook nil
20158 "Hook for functions attaching themselves to `M-right'.
20159 See `org-ctrl-c-ctrl-c-hook' for more information.")
20160 (defvar org-metaup-hook nil
20161 "Hook for functions attaching themselves to `M-up'.
20162 See `org-ctrl-c-ctrl-c-hook' for more information.")
20163 (defvar org-metadown-hook nil
20164 "Hook for functions attaching themselves to `M-down'.
20165 See `org-ctrl-c-ctrl-c-hook' for more information.")
20166 (defvar org-shiftmetaleft-hook nil
20167 "Hook for functions attaching themselves to `M-S-left'.
20168 See `org-ctrl-c-ctrl-c-hook' for more information.")
20169 (defvar org-shiftmetaright-hook nil
20170 "Hook for functions attaching themselves to `M-S-right'.
20171 See `org-ctrl-c-ctrl-c-hook' for more information.")
20172 (defvar org-shiftmetaup-hook nil
20173 "Hook for functions attaching themselves to `M-S-up'.
20174 See `org-ctrl-c-ctrl-c-hook' for more information.")
20175 (defvar org-shiftmetadown-hook nil
20176 "Hook for functions attaching themselves to `M-S-down'.
20177 See `org-ctrl-c-ctrl-c-hook' for more information.")
20178 (defvar org-metareturn-hook nil
20179 "Hook for functions attaching themselves to `M-RET'.
20180 See `org-ctrl-c-ctrl-c-hook' for more information.")
20181 (defvar org-shiftup-hook nil
20182 "Hook for functions attaching themselves to `S-up'.
20183 See `org-ctrl-c-ctrl-c-hook' for more information.")
20184 (defvar org-shiftup-final-hook nil
20185 "Hook for functions attaching themselves to `S-up'.
20186 This one runs after all other options except shift-select have been excluded.
20187 See `org-ctrl-c-ctrl-c-hook' for more information.")
20188 (defvar org-shiftdown-hook nil
20189 "Hook for functions attaching themselves to `S-down'.
20190 See `org-ctrl-c-ctrl-c-hook' for more information.")
20191 (defvar org-shiftdown-final-hook nil
20192 "Hook for functions attaching themselves to `S-down'.
20193 This one runs after all other options except shift-select have been excluded.
20194 See `org-ctrl-c-ctrl-c-hook' for more information.")
20195 (defvar org-shiftleft-hook nil
20196 "Hook for functions attaching themselves to `S-left'.
20197 See `org-ctrl-c-ctrl-c-hook' for more information.")
20198 (defvar org-shiftleft-final-hook nil
20199 "Hook for functions attaching themselves to `S-left'.
20200 This one runs after all other options except shift-select have been excluded.
20201 See `org-ctrl-c-ctrl-c-hook' for more information.")
20202 (defvar org-shiftright-hook nil
20203 "Hook for functions attaching themselves to `S-right'.
20204 See `org-ctrl-c-ctrl-c-hook' for more information.")
20205 (defvar org-shiftright-final-hook nil
20206 "Hook for functions attaching themselves to `S-right'.
20207 This one runs after all other options except shift-select have been excluded.
20208 See `org-ctrl-c-ctrl-c-hook' for more information.")
20210 (defun org-modifier-cursor-error ()
20211 "Throw an error, a modified cursor command was applied in wrong context."
20212 (user-error "This command is active in special context like tables, headlines or items"))
20214 (defun org-shiftselect-error ()
20215 "Throw an error because Shift-Cursor command was applied in wrong context."
20216 (if (and (boundp 'shift-select-mode) shift-select-mode)
20217 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20218 (user-error "This command works only in special context like headlines or timestamps")))
20220 (defun org-call-for-shift-select (cmd)
20221 (let ((this-command-keys-shift-translated t))
20222 (call-interactively cmd)))
20224 (defun org-shifttab (&optional arg)
20225 "Global visibility cycling or move to previous table field.
20226 Call `org-table-previous-field' within a table.
20227 When ARG is nil, cycle globally through visibility states.
20228 When ARG is a numeric prefix, show contents of this level."
20229 (interactive "P")
20230 (cond
20231 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20232 ((integerp arg)
20233 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20234 (message "Content view to level: %d" arg)
20235 (org-content (prefix-numeric-value arg2))
20236 (org-cycle-show-empty-lines t)
20237 (setq org-cycle-global-status 'overview)))
20238 (t (call-interactively 'org-global-cycle))))
20240 (defun org-shiftmetaleft ()
20241 "Promote subtree or delete table column.
20242 Calls `org-promote-subtree', `org-outdent-item-tree', or
20243 `org-table-delete-column', depending on context. See the
20244 individual commands for more information."
20245 (interactive)
20246 (cond
20247 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20248 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20249 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20250 ((if (not (org-region-active-p)) (org-at-item-p)
20251 (save-excursion (goto-char (region-beginning))
20252 (org-at-item-p)))
20253 (call-interactively 'org-outdent-item-tree))
20254 (t (org-modifier-cursor-error))))
20256 (defun org-shiftmetaright ()
20257 "Demote subtree or insert table column.
20258 Calls `org-demote-subtree', `org-indent-item-tree', or
20259 `org-table-insert-column', depending on context. See the
20260 individual commands for more information."
20261 (interactive)
20262 (cond
20263 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20264 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20265 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20266 ((if (not (org-region-active-p)) (org-at-item-p)
20267 (save-excursion (goto-char (region-beginning))
20268 (org-at-item-p)))
20269 (call-interactively 'org-indent-item-tree))
20270 (t (org-modifier-cursor-error))))
20272 (defun org-shiftmetaup (&optional arg)
20273 "Drag the line at point up.
20274 In a table, kill the current row.
20275 On a clock timestamp, update the value of the timestamp like `S-<up>'
20276 but also adjust the previous clocked item in the clock history.
20277 Everywhere else, drag the line at point up."
20278 (interactive "P")
20279 (cond
20280 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20281 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20282 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20283 (call-interactively 'org-timestamp-up)))
20284 (t (call-interactively 'org-drag-line-backward))))
20286 (defun org-shiftmetadown (&optional arg)
20287 "Drag the line at point down.
20288 In a table, insert an empty row at the current line.
20289 On a clock timestamp, update the value of the timestamp like `S-<down>'
20290 but also adjust the previous clocked item in the clock history.
20291 Everywhere else, drag the line at point down."
20292 (interactive "P")
20293 (cond
20294 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20295 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20296 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20297 (call-interactively 'org-timestamp-down)))
20298 (t (call-interactively 'org-drag-line-forward))))
20300 (defsubst org-hidden-tree-error ()
20301 (user-error
20302 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20304 (defun org-metaleft (&optional arg)
20305 "Promote heading or move table column to left.
20306 Calls `org-do-promote' or `org-table-move-column', depending on context.
20307 With no specific context, calls the Emacs default `backward-word'.
20308 See the individual commands for more information."
20309 (interactive "P")
20310 (cond
20311 ((run-hook-with-args-until-success 'org-metaleft-hook))
20312 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20313 ((org-with-limited-levels
20314 (or (org-at-heading-p)
20315 (and (org-region-active-p)
20316 (save-excursion
20317 (goto-char (region-beginning))
20318 (org-at-heading-p)))))
20319 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20320 (call-interactively 'org-do-promote))
20321 ;; At an inline task.
20322 ((org-at-heading-p)
20323 (call-interactively 'org-inlinetask-promote))
20324 ((or (org-at-item-p)
20325 (and (org-region-active-p)
20326 (save-excursion
20327 (goto-char (region-beginning))
20328 (org-at-item-p))))
20329 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20330 (call-interactively 'org-outdent-item))
20331 (t (call-interactively 'backward-word))))
20333 (defun org-metaright (&optional arg)
20334 "Demote a subtree, a list item or move table column to right.
20335 In front of a drawer or a block keyword, indent it correctly.
20336 With no specific context, calls the Emacs default `forward-word'.
20337 See the individual commands for more information."
20338 (interactive "P")
20339 (cond
20340 ((run-hook-with-args-until-success 'org-metaright-hook))
20341 ((org-at-table-p) (call-interactively 'org-table-move-column))
20342 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20343 ((org-at-block-p) (call-interactively 'org-indent-block))
20344 ((org-with-limited-levels
20345 (or (org-at-heading-p)
20346 (and (org-region-active-p)
20347 (save-excursion
20348 (goto-char (region-beginning))
20349 (org-at-heading-p)))))
20350 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20351 (call-interactively 'org-do-demote))
20352 ;; At an inline task.
20353 ((org-at-heading-p)
20354 (call-interactively 'org-inlinetask-demote))
20355 ((or (org-at-item-p)
20356 (and (org-region-active-p)
20357 (save-excursion
20358 (goto-char (region-beginning))
20359 (org-at-item-p))))
20360 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20361 (call-interactively 'org-indent-item))
20362 (t (call-interactively 'forward-word))))
20364 (defun org-check-for-hidden (what)
20365 "Check if there are hidden headlines/items in the current visual line.
20366 WHAT can be either `headlines' or `items'. If the current line is
20367 an outline or item heading and it has a folded subtree below it,
20368 this function returns t, nil otherwise."
20369 (let ((re (cond
20370 ((eq what 'headlines) org-outline-regexp-bol)
20371 ((eq what 'items) (org-item-beginning-re))
20372 (t (error "This should not happen"))))
20373 beg end)
20374 (save-excursion
20375 (catch 'exit
20376 (unless (org-region-active-p)
20377 (setq beg (point-at-bol))
20378 (beginning-of-line 2)
20379 (while (and (not (eobp)) ;; this is like `next-line'
20380 (get-char-property (1- (point)) 'invisible))
20381 (beginning-of-line 2))
20382 (setq end (point))
20383 (goto-char beg)
20384 (goto-char (point-at-eol))
20385 (setq end (max end (point)))
20386 (while (re-search-forward re end t)
20387 (if (get-char-property (match-beginning 0) 'invisible)
20388 (throw 'exit t))))
20389 nil))))
20391 (defun org-metaup (&optional arg)
20392 "Move subtree up or move table row up.
20393 Calls `org-move-subtree-up' or `org-table-move-row' or
20394 `org-move-item-up', depending on context. See the individual commands
20395 for more information."
20396 (interactive "P")
20397 (cond
20398 ((run-hook-with-args-until-success 'org-metaup-hook))
20399 ((org-region-active-p)
20400 (let* ((a (min (region-beginning) (region-end)))
20401 (b (1- (max (region-beginning) (region-end))))
20402 (c (save-excursion (goto-char a)
20403 (move-beginning-of-line 0)))
20404 (d (save-excursion (goto-char a)
20405 (move-end-of-line 0) (point))))
20406 (transpose-regions a b c d)
20407 (goto-char c)))
20408 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20409 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20410 ((org-at-item-p) (call-interactively 'org-move-item-up))
20411 (t (org-drag-element-backward))))
20413 (defun org-metadown (&optional arg)
20414 "Move subtree down or move table row down.
20415 Calls `org-move-subtree-down' or `org-table-move-row' or
20416 `org-move-item-down', depending on context. See the individual
20417 commands for more information."
20418 (interactive "P")
20419 (cond
20420 ((run-hook-with-args-until-success 'org-metadown-hook))
20421 ((org-region-active-p)
20422 (let* ((a (min (region-beginning) (region-end)))
20423 (b (max (region-beginning) (region-end)))
20424 (c (save-excursion (goto-char b)
20425 (move-beginning-of-line 1)))
20426 (d (save-excursion (goto-char b)
20427 (move-end-of-line 1) (1+ (point)))))
20428 (transpose-regions a b c d)
20429 (goto-char d)))
20430 ((org-at-table-p) (call-interactively 'org-table-move-row))
20431 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20432 ((org-at-item-p) (call-interactively 'org-move-item-down))
20433 (t (org-drag-element-forward))))
20435 (defun org-shiftup (&optional arg)
20436 "Increase item in timestamp or increase priority of current headline.
20437 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20438 depending on context. See the individual commands for more information."
20439 (interactive "P")
20440 (cond
20441 ((run-hook-with-args-until-success 'org-shiftup-hook))
20442 ((and org-support-shift-select (org-region-active-p))
20443 (org-call-for-shift-select 'previous-line))
20444 ((org-at-timestamp-p t)
20445 (call-interactively (if org-edit-timestamp-down-means-later
20446 'org-timestamp-down 'org-timestamp-up)))
20447 ((and (not (eq org-support-shift-select 'always))
20448 org-enable-priority-commands
20449 (org-at-heading-p))
20450 (call-interactively 'org-priority-up))
20451 ((and (not org-support-shift-select) (org-at-item-p))
20452 (call-interactively 'org-previous-item))
20453 ((org-clocktable-try-shift 'up arg))
20454 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20455 (org-support-shift-select
20456 (org-call-for-shift-select 'previous-line))
20457 (t (org-shiftselect-error))))
20459 (defun org-shiftdown (&optional arg)
20460 "Decrease item in timestamp or decrease priority of current headline.
20461 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20462 depending on context. See the individual commands for more information."
20463 (interactive "P")
20464 (cond
20465 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20466 ((and org-support-shift-select (org-region-active-p))
20467 (org-call-for-shift-select 'next-line))
20468 ((org-at-timestamp-p t)
20469 (call-interactively (if org-edit-timestamp-down-means-later
20470 'org-timestamp-up 'org-timestamp-down)))
20471 ((and (not (eq org-support-shift-select 'always))
20472 org-enable-priority-commands
20473 (org-at-heading-p))
20474 (call-interactively 'org-priority-down))
20475 ((and (not org-support-shift-select) (org-at-item-p))
20476 (call-interactively 'org-next-item))
20477 ((org-clocktable-try-shift 'down arg))
20478 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20479 (org-support-shift-select
20480 (org-call-for-shift-select 'next-line))
20481 (t (org-shiftselect-error))))
20483 (defun org-shiftright (&optional arg)
20484 "Cycle the thing at point or in the current line, depending on context.
20485 Depending on context, this does one of the following:
20487 - switch a timestamp at point one day into the future
20488 - on a headline, switch to the next TODO keyword.
20489 - on an item, switch entire list to the next bullet type
20490 - on a property line, switch to the next allowed value
20491 - on a clocktable definition line, move time block into the future"
20492 (interactive "P")
20493 (cond
20494 ((run-hook-with-args-until-success 'org-shiftright-hook))
20495 ((and org-support-shift-select (org-region-active-p))
20496 (org-call-for-shift-select 'forward-char))
20497 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20498 ((and (not (eq org-support-shift-select 'always))
20499 (org-at-heading-p))
20500 (let ((org-inhibit-logging
20501 (not org-treat-S-cursor-todo-selection-as-state-change))
20502 (org-inhibit-blocking
20503 (not org-treat-S-cursor-todo-selection-as-state-change)))
20504 (org-call-with-arg 'org-todo 'right)))
20505 ((or (and org-support-shift-select
20506 (not (eq org-support-shift-select 'always))
20507 (org-at-item-bullet-p))
20508 (and (not org-support-shift-select) (org-at-item-p)))
20509 (org-call-with-arg 'org-cycle-list-bullet nil))
20510 ((and (not (eq org-support-shift-select 'always))
20511 (org-at-property-p))
20512 (call-interactively 'org-property-next-allowed-value))
20513 ((org-clocktable-try-shift 'right arg))
20514 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20515 (org-support-shift-select
20516 (org-call-for-shift-select 'forward-char))
20517 (t (org-shiftselect-error))))
20519 (defun org-shiftleft (&optional arg)
20520 "Cycle the thing at point or in the current line, depending on context.
20521 Depending on context, this does one of the following:
20523 - switch a timestamp at point one day into the past
20524 - on a headline, switch to the previous TODO keyword.
20525 - on an item, switch entire list to the previous bullet type
20526 - on a property line, switch to the previous allowed value
20527 - on a clocktable definition line, move time block into the past"
20528 (interactive "P")
20529 (cond
20530 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20531 ((and org-support-shift-select (org-region-active-p))
20532 (org-call-for-shift-select 'backward-char))
20533 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20534 ((and (not (eq org-support-shift-select 'always))
20535 (org-at-heading-p))
20536 (let ((org-inhibit-logging
20537 (not org-treat-S-cursor-todo-selection-as-state-change))
20538 (org-inhibit-blocking
20539 (not org-treat-S-cursor-todo-selection-as-state-change)))
20540 (org-call-with-arg 'org-todo 'left)))
20541 ((or (and org-support-shift-select
20542 (not (eq org-support-shift-select 'always))
20543 (org-at-item-bullet-p))
20544 (and (not org-support-shift-select) (org-at-item-p)))
20545 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20546 ((and (not (eq org-support-shift-select 'always))
20547 (org-at-property-p))
20548 (call-interactively 'org-property-previous-allowed-value))
20549 ((org-clocktable-try-shift 'left arg))
20550 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20551 (org-support-shift-select
20552 (org-call-for-shift-select 'backward-char))
20553 (t (org-shiftselect-error))))
20555 (defun org-shiftcontrolright ()
20556 "Switch to next TODO set."
20557 (interactive)
20558 (cond
20559 ((and org-support-shift-select (org-region-active-p))
20560 (org-call-for-shift-select 'forward-word))
20561 ((and (not (eq org-support-shift-select 'always))
20562 (org-at-heading-p))
20563 (org-call-with-arg 'org-todo 'nextset))
20564 (org-support-shift-select
20565 (org-call-for-shift-select 'forward-word))
20566 (t (org-shiftselect-error))))
20568 (defun org-shiftcontrolleft ()
20569 "Switch to previous TODO set."
20570 (interactive)
20571 (cond
20572 ((and org-support-shift-select (org-region-active-p))
20573 (org-call-for-shift-select 'backward-word))
20574 ((and (not (eq org-support-shift-select 'always))
20575 (org-at-heading-p))
20576 (org-call-with-arg 'org-todo 'previousset))
20577 (org-support-shift-select
20578 (org-call-for-shift-select 'backward-word))
20579 (t (org-shiftselect-error))))
20581 (defun org-shiftcontrolup (&optional n)
20582 "Change timestamps synchronously up in CLOCK log lines.
20583 Optional argument N tells to change by that many units."
20584 (interactive "P")
20585 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20586 (let (org-support-shift-select)
20587 (org-clock-timestamps-up n))
20588 (user-error "Not at a clock log")))
20590 (defun org-shiftcontroldown (&optional n)
20591 "Change timestamps synchronously down in CLOCK log lines.
20592 Optional argument N tells to change by that many units."
20593 (interactive "P")
20594 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20595 (let (org-support-shift-select)
20596 (org-clock-timestamps-down n))
20597 (user-error "Not at a clock log")))
20599 (defun org-increase-number-at-point (&optional inc)
20600 "Increment the number at point.
20601 With an optional prefix numeric argument INC, increment using
20602 this numeric value."
20603 (interactive "p")
20604 (if (not (number-at-point))
20605 (user-error "Not on a number")
20606 (unless inc (setq inc 1))
20607 (let ((pos (point))
20608 (beg (skip-chars-backward "-+^/*0-9eE."))
20609 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20610 (setq nap (buffer-substring-no-properties
20611 (+ pos beg) (+ pos beg end)))
20612 (delete-region (+ pos beg) (+ pos beg end))
20613 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20614 (when (org-at-table-p)
20615 (org-table-align)
20616 (org-table-end-of-field 1))))
20618 (defun org-decrease-number-at-point (&optional inc)
20619 "Decrement the number at point.
20620 With an optional prefix numeric argument INC, decrement using
20621 this numeric value."
20622 (interactive "p")
20623 (org-increase-number-at-point (- inc)))
20625 (defun org-ctrl-c-ret ()
20626 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20627 (interactive)
20628 (cond
20629 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20630 (t (call-interactively 'org-insert-heading))))
20632 (defun org-find-visible ()
20633 (let ((s (point)))
20634 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20635 (get-char-property s 'invisible)))
20637 (defun org-find-invisible ()
20638 (let ((s (point)))
20639 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20640 (not (get-char-property s 'invisible))))
20643 (defun org-copy-visible (beg end)
20644 "Copy the visible parts of the region."
20645 (interactive "r")
20646 (let (snippets s)
20647 (save-excursion
20648 (save-restriction
20649 (narrow-to-region beg end)
20650 (setq s (goto-char (point-min)))
20651 (while (not (= (point) (point-max)))
20652 (goto-char (org-find-invisible))
20653 (push (buffer-substring s (point)) snippets)
20654 (setq s (goto-char (org-find-visible))))))
20655 (kill-new (apply 'concat (nreverse snippets)))))
20657 (defun org-copy-special ()
20658 "Copy region in table or copy current subtree.
20659 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20660 See the individual commands for more information."
20661 (interactive)
20662 (call-interactively
20663 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20665 (defun org-cut-special ()
20666 "Cut region in table or cut current subtree.
20667 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20668 See the individual commands for more information."
20669 (interactive)
20670 (call-interactively
20671 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20673 (defun org-paste-special (arg)
20674 "Paste rectangular region into table, or past subtree relative to level.
20675 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20676 See the individual commands for more information."
20677 (interactive "P")
20678 (if (org-at-table-p)
20679 (org-table-paste-rectangle)
20680 (org-paste-subtree arg)))
20682 (defsubst org-in-fixed-width-region-p ()
20683 "Is point in a fixed-width region?"
20684 (save-match-data
20685 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20687 (defun org-edit-special (&optional arg)
20688 "Call a special editor for the element at point.
20689 When at a table, call the formula editor with `org-table-edit-formulas'.
20690 When in a source code block, call `org-edit-src-code'.
20691 When in a fixed-width region, call `org-edit-fixed-width-region'.
20692 When in an export block, call `org-edit-export-block'.
20693 When at an #+INCLUDE keyword, visit the included file.
20694 On a link, call `ffap' to visit the link at point.
20695 Otherwise, return a user error."
20696 (interactive "P")
20697 (let ((element (org-element-at-point)))
20698 (assert (not buffer-read-only) nil
20699 "Buffer is read-only: %s" (buffer-name))
20700 (case (org-element-type element)
20701 (src-block
20702 (if (not arg) (org-edit-src-code)
20703 (let* ((info (org-babel-get-src-block-info))
20704 (lang (nth 0 info))
20705 (params (nth 2 info))
20706 (session (cdr (assq :session params))))
20707 (if (not session) (org-edit-src-code)
20708 ;; At a src-block with a session and function called with
20709 ;; an ARG: switch to the buffer related to the inferior
20710 ;; process.
20711 (switch-to-buffer
20712 (funcall (intern (concat "org-babel-prep-session:" lang))
20713 session params))))))
20714 (keyword
20715 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20716 (org-open-link-from-string
20717 (format "[[%s]]"
20718 (expand-file-name
20719 (let ((value (org-element-property :value element)))
20720 (cond ((not (org-string-nw-p value))
20721 (user-error "No file to edit"))
20722 ((string-match "\\`\"\\(.*?\\)\"" value)
20723 (match-string 1 value))
20724 ((string-match "\\`[^ \t\"]\\S-*" value)
20725 (match-string 0 value))
20726 (t (user-error "No valid file specified")))))))
20727 (user-error "No special environment to edit here")))
20728 (table
20729 (if (eq (org-element-property :type element) 'table.el)
20730 (org-edit-table.el)
20731 (call-interactively 'org-table-edit-formulas)))
20732 ;; Only Org tables contain `table-row' type elements.
20733 (table-row (call-interactively 'org-table-edit-formulas))
20734 ((example-block src-block) (org-edit-src-code))
20735 (export-block (org-edit-export-block))
20736 (fixed-width (org-edit-fixed-width-region))
20737 (otherwise
20738 ;; No notable element at point. Though, we may be at a link,
20739 ;; which is an object. Thus, scan deeper.
20740 (if (eq (org-element-type (org-element-context element)) 'link)
20741 (call-interactively 'ffap)
20742 (user-error "No special environment to edit here"))))))
20744 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20745 (defun org-ctrl-c-ctrl-c (&optional arg)
20746 "Set tags in headline, or update according to changed information at point.
20748 This command does many different things, depending on context:
20750 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20751 this is what we do.
20753 - If the cursor is on a statistics cookie, update it.
20755 - If the cursor is in a headline, prompt for tags and insert them
20756 into the current line, aligned to `org-tags-column'. When called
20757 with prefix arg, realign all tags in the current buffer.
20759 - If the cursor is in one of the special #+KEYWORD lines, this
20760 triggers scanning the buffer for these lines and updating the
20761 information.
20763 - If the cursor is inside a table, realign the table. This command
20764 works even if the automatic table editor has been turned off.
20766 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20767 the entire table.
20769 - If the cursor is at a footnote reference or definition, jump to
20770 the corresponding definition or references, respectively.
20772 - If the cursor is a the beginning of a dynamic block, update it.
20774 - If the current buffer is a capture buffer, close note and file it.
20776 - If the cursor is on a <<<target>>>, update radio targets and
20777 corresponding links in this buffer.
20779 - If the cursor is on a numbered item in a plain list, renumber the
20780 ordered list.
20782 - If the cursor is on a checkbox, toggle it.
20784 - If the cursor is on a code block, evaluate it. The variable
20785 `org-confirm-babel-evaluate' can be used to control prompting
20786 before code block evaluation, by default every code block
20787 evaluation requires confirmation. Code block evaluation can be
20788 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20789 (interactive "P")
20790 (cond
20791 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20792 org-occur-highlights)
20793 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20794 (org-remove-occur-highlights)
20795 (message "Temporary highlights/overlays removed from current buffer"))
20796 ((and (local-variable-p 'org-finish-function (current-buffer))
20797 (fboundp org-finish-function))
20798 (funcall org-finish-function))
20799 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20801 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20802 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20803 (user-error "C-c C-c can do nothing useful at this location"))
20804 (let* ((context (org-element-context))
20805 (type (org-element-type context)))
20806 (case type
20807 ;; When at a link, act according to the parent instead.
20808 (link (setq context (org-element-property :parent context))
20809 (setq type (org-element-type context)))
20810 ;; Unsupported object types: refer to the first supported
20811 ;; element or object containing it.
20812 ((bold code entity export-snippet inline-babel-call inline-src-block
20813 italic latex-fragment line-break macro strike-through subscript
20814 superscript underline verbatim)
20815 (setq context
20816 (org-element-lineage
20817 context '(radio-target paragraph verse-block table-cell)))))
20818 ;; For convenience: at the first line of a paragraph on the
20819 ;; same line as an item, apply function on that item instead.
20820 (when (eq type 'paragraph)
20821 (let ((parent (org-element-property :parent context)))
20822 (when (and (eq (org-element-type parent) 'item)
20823 (= (line-beginning-position)
20824 (org-element-property :begin parent)))
20825 (setq context parent type 'item))))
20826 ;; Act according to type of element or object at point.
20827 (case type
20828 (clock (org-clock-update-time-maybe))
20829 (dynamic-block
20830 (save-excursion
20831 (goto-char (org-element-property :post-affiliated context))
20832 (org-update-dblock)))
20833 (footnote-definition
20834 (goto-char (org-element-property :post-affiliated context))
20835 (call-interactively 'org-footnote-action))
20836 (footnote-reference (call-interactively 'org-footnote-action))
20837 ((headline inlinetask)
20838 (save-excursion (goto-char (org-element-property :begin context))
20839 (call-interactively 'org-set-tags)))
20840 (item
20841 ;; At an item: a double C-u set checkbox to "[-]"
20842 ;; unconditionally, whereas a single one will toggle its
20843 ;; presence. Without an universal argument, if the item
20844 ;; has a checkbox, toggle it. Otherwise repair the list.
20845 (let* ((box (org-element-property :checkbox context))
20846 (struct (org-element-property :structure context))
20847 (old-struct (copy-tree struct))
20848 (parents (org-list-parents-alist struct))
20849 (prevs (org-list-prevs-alist struct))
20850 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20851 (org-list-set-checkbox
20852 (org-element-property :begin context) struct
20853 (cond ((equal arg '(16)) "[-]")
20854 ((and (not box) (equal arg '(4))) "[ ]")
20855 ((or (not box) (equal arg '(4))) nil)
20856 ((eq box 'on) "[ ]")
20857 (t "[X]")))
20858 ;; Mimic `org-list-write-struct' but with grabbing
20859 ;; a return value from `org-list-struct-fix-box'.
20860 (org-list-struct-fix-ind struct parents 2)
20861 (org-list-struct-fix-item-end struct)
20862 (org-list-struct-fix-bul struct prevs)
20863 (org-list-struct-fix-ind struct parents)
20864 (let ((block-item
20865 (org-list-struct-fix-box struct parents prevs orderedp)))
20866 (if (and box (equal struct old-struct))
20867 (if (equal arg '(16))
20868 (message "Checkboxes already reset")
20869 (user-error "Cannot toggle this checkbox: %s"
20870 (if (eq box 'on)
20871 "all subitems checked"
20872 "unchecked subitems")))
20873 (org-list-struct-apply-struct struct old-struct)
20874 (org-update-checkbox-count-maybe))
20875 (when block-item
20876 (message "Checkboxes were removed due to empty box at line %d"
20877 (org-current-line block-item))))))
20878 (keyword
20879 (let ((org-inhibit-startup-visibility-stuff t)
20880 (org-startup-align-all-tables nil))
20881 (when (boundp 'org-table-coordinate-overlays)
20882 (mapc 'delete-overlay org-table-coordinate-overlays)
20883 (setq org-table-coordinate-overlays nil))
20884 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20885 (message "Local setup has been refreshed"))
20886 (plain-list
20887 ;; At a plain list, with a double C-u argument, set
20888 ;; checkboxes of each item to "[-]", whereas a single one
20889 ;; will toggle their presence according to the state of the
20890 ;; first item in the list. Without an argument, repair the
20891 ;; list.
20892 (let* ((begin (org-element-property :contents-begin context))
20893 (beginm (move-marker (make-marker) begin))
20894 (struct (org-element-property :structure context))
20895 (old-struct (copy-tree struct))
20896 (first-box (save-excursion
20897 (goto-char begin)
20898 (looking-at org-list-full-item-re)
20899 (match-string-no-properties 3)))
20900 (new-box (cond ((equal arg '(16)) "[-]")
20901 ((equal arg '(4)) (unless first-box "[ ]"))
20902 ((equal first-box "[X]") "[ ]")
20903 (t "[X]"))))
20904 (cond
20905 (arg
20906 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20907 (org-list-get-all-items
20908 begin struct (org-list-prevs-alist struct))))
20909 ((and first-box (eq (point) begin))
20910 ;; For convenience, when point is at bol on the first
20911 ;; item of the list and no argument is provided, simply
20912 ;; toggle checkbox of that item, if any.
20913 (org-list-set-checkbox begin struct new-box)))
20914 (org-list-write-struct
20915 struct (org-list-parents-alist struct) old-struct)
20916 (org-update-checkbox-count-maybe)
20917 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20918 ((property-drawer node-property)
20919 (call-interactively 'org-property-action))
20920 ((radio-target target)
20921 (call-interactively 'org-update-radio-target-regexp))
20922 (statistics-cookie
20923 (call-interactively 'org-update-statistics-cookies))
20924 ((table table-cell table-row)
20925 ;; At a table, recalculate every field and align it. Also
20926 ;; send the table if necessary. If the table has
20927 ;; a `table.el' type, just give up. At a table row or
20928 ;; cell, maybe recalculate line but always align table.
20929 (if (eq (org-element-property :type context) 'table.el)
20930 (message "Use C-c ' to edit table.el tables")
20931 (let ((org-enable-table-editor t))
20932 (if (or (eq type 'table)
20933 ;; Check if point is at a TBLFM line.
20934 (and (eq type 'table-row)
20935 (= (point) (org-element-property :end context))))
20936 (save-excursion
20937 (if (org-at-TBLFM-p)
20938 (progn (require 'org-table)
20939 (org-table-calc-current-TBLFM))
20940 (goto-char (org-element-property :contents-begin context))
20941 (org-call-with-arg 'org-table-recalculate (or arg t))
20942 (orgtbl-send-table 'maybe)))
20943 (org-table-maybe-eval-formula)
20944 (cond (arg (call-interactively 'org-table-recalculate))
20945 ((org-table-maybe-recalculate-line))
20946 (t (org-table-align)))))))
20947 (timestamp (org-timestamp-change 0 'day))
20948 (otherwise
20949 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20950 (user-error
20951 "C-c C-c can do nothing useful at this location")))))))))
20953 (defun org-mode-restart ()
20954 (interactive)
20955 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20956 (funcall major-mode)
20957 (hack-local-variables)
20958 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20959 (org-indent-mode -1)))
20960 (message "%s restarted" major-mode))
20962 (defun org-kill-note-or-show-branches ()
20963 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20964 (interactive)
20965 (if (not org-finish-function)
20966 (progn
20967 (hide-subtree)
20968 (call-interactively 'show-branches))
20969 (let ((org-note-abort t))
20970 (funcall org-finish-function))))
20972 (defun org-open-line (n)
20973 "Insert a new row in tables, call `open-line' elsewhere.
20974 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20975 (interactive "*p")
20976 (cond
20977 ((not org-special-ctrl-o)
20978 (open-line n))
20979 ((org-at-table-p)
20980 (org-table-insert-row))
20982 (open-line n))))
20984 (defun org-return (&optional indent)
20985 "Goto next table row or insert a newline.
20987 Calls `org-table-next-row' or `newline', depending on context.
20989 When optional INDENT argument is non-nil, call
20990 `newline-and-indent' instead of `newline'.
20992 When `org-return-follows-link' is non-nil and point is on
20993 a timestamp or a link, call `org-open-at-point'. However, it
20994 will not happen if point is in a table or on a \"dead\"
20995 object (e.g., within a comment). In these case, you need to use
20996 `org-open-at-point' directly."
20997 (interactive)
20998 (if (and (save-excursion
20999 (beginning-of-line)
21000 (looking-at org-todo-line-regexp))
21001 (match-beginning 3)
21002 (>= (point) (match-beginning 3)))
21003 ;; Point is on headline tags. Do not break them: add a newline
21004 ;; after the headline instead.
21005 (progn (org-show-entry)
21006 (end-of-line)
21007 (if indent (newline-and-indent) (newline)))
21008 (let* ((context (if org-return-follows-link (org-element-context)
21009 (org-element-at-point)))
21010 (type (org-element-type context)))
21011 (cond
21012 ;; In a table, call `org-table-next-row'.
21013 ((or (and (eq type 'table)
21014 (>= (point) (org-element-property :contents-begin context))
21015 (< (point) (org-element-property :contents-end context)))
21016 (org-element-lineage context '(table-row table-cell) t))
21017 (org-table-justify-field-maybe)
21018 (call-interactively #'org-table-next-row))
21019 ;; On a link or a timestamp but not on white spaces after it,
21020 ;; call `org-open-line' if `org-return-follows-link' allows it.
21021 ((and org-return-follows-link
21022 (memq type '(link timestamp))
21023 (< (point)
21024 (save-excursion (goto-char (org-element-property :end context))
21025 (skip-chars-backward " \t")
21026 (point))))
21027 (call-interactively #'org-open-at-point))
21028 ;; In a list, make sure indenting keeps trailing text within.
21029 ((and indent
21030 (not (eolp))
21031 (org-element-lineage context '(item)))
21032 (let ((trailing-data
21033 (delete-and-extract-region (point) (line-end-position))))
21034 (newline-and-indent)
21035 (save-excursion (insert trailing-data))))
21036 (t (if indent (newline-and-indent) (newline)))))))
21038 (defun org-return-indent ()
21039 "Goto next table row or insert a newline and indent.
21040 Calls `org-table-next-row' or `newline-and-indent', depending on
21041 context. See the individual commands for more information."
21042 (interactive)
21043 (org-return t))
21045 (defun org-ctrl-c-star ()
21046 "Compute table, or change heading status of lines.
21047 Calls `org-table-recalculate' or `org-toggle-heading',
21048 depending on context."
21049 (interactive)
21050 (cond
21051 ((org-at-table-p)
21052 (call-interactively 'org-table-recalculate))
21054 ;; Convert all lines in region to list items
21055 (call-interactively 'org-toggle-heading))))
21057 (defun org-ctrl-c-minus ()
21058 "Insert separator line in table or modify bullet status of line.
21059 Also turns a plain line or a region of lines into list items.
21060 Calls `org-table-insert-hline', `org-toggle-item', or
21061 `org-cycle-list-bullet', depending on context."
21062 (interactive)
21063 (cond
21064 ((org-at-table-p)
21065 (call-interactively 'org-table-insert-hline))
21066 ((org-region-active-p)
21067 (call-interactively 'org-toggle-item))
21068 ((org-in-item-p)
21069 (call-interactively 'org-cycle-list-bullet))
21071 (call-interactively 'org-toggle-item))))
21073 (defun org-toggle-item (arg)
21074 "Convert headings or normal lines to items, items to normal lines.
21075 If there is no active region, only the current line is considered.
21077 If the first non blank line in the region is a headline, convert
21078 all headlines to items, shifting text accordingly.
21080 If it is an item, convert all items to normal lines.
21082 If it is normal text, change region into a list of items.
21083 With a prefix argument ARG, change the region in a single item."
21084 (interactive "P")
21085 (let ((shift-text
21086 (function
21087 ;; Shift text in current section to IND, from point to END.
21088 ;; The function leaves point to END line.
21089 (lambda (ind end)
21090 (let ((min-i 1000) (end (copy-marker end)))
21091 ;; First determine the minimum indentation (MIN-I) of
21092 ;; the text.
21093 (save-excursion
21094 (catch 'exit
21095 (while (< (point) end)
21096 (let ((i (org-get-indentation)))
21097 (cond
21098 ;; Skip blank lines and inline tasks.
21099 ((looking-at "^[ \t]*$"))
21100 ((looking-at org-outline-regexp-bol))
21101 ;; We can't find less than 0 indentation.
21102 ((zerop i) (throw 'exit (setq min-i 0)))
21103 ((< i min-i) (setq min-i i))))
21104 (forward-line))))
21105 ;; Then indent each line so that a line indented to
21106 ;; MIN-I becomes indented to IND. Ignore blank lines
21107 ;; and inline tasks in the process.
21108 (let ((delta (- ind min-i)))
21109 (while (< (point) end)
21110 (unless (or (looking-at "^[ \t]*$")
21111 (looking-at org-outline-regexp-bol))
21112 (org-indent-line-to (+ (org-get-indentation) delta)))
21113 (forward-line)))))))
21114 (skip-blanks
21115 (function
21116 ;; Return beginning of first non-blank line, starting from
21117 ;; line at POS.
21118 (lambda (pos)
21119 (save-excursion
21120 (goto-char pos)
21121 (skip-chars-forward " \r\t\n")
21122 (point-at-bol)))))
21123 beg end)
21124 ;; Determine boundaries of changes.
21125 (if (org-region-active-p)
21126 (setq beg (funcall skip-blanks (region-beginning))
21127 end (copy-marker (region-end)))
21128 (setq beg (funcall skip-blanks (point-at-bol))
21129 end (copy-marker (point-at-eol))))
21130 ;; Depending on the starting line, choose an action on the text
21131 ;; between BEG and END.
21132 (org-with-limited-levels
21133 (save-excursion
21134 (goto-char beg)
21135 (cond
21136 ;; Case 1. Start at an item: de-itemize. Note that it only
21137 ;; happens when a region is active: `org-ctrl-c-minus'
21138 ;; would call `org-cycle-list-bullet' otherwise.
21139 ((org-at-item-p)
21140 (while (< (point) end)
21141 (when (org-at-item-p)
21142 (skip-chars-forward " \t")
21143 (delete-region (point) (match-end 0)))
21144 (forward-line)))
21145 ;; Case 2. Start at an heading: convert to items.
21146 ((org-at-heading-p)
21147 (let* ((bul (org-list-bullet-string "-"))
21148 (bul-len (length bul))
21149 (done (org-entry-is-done-p))
21150 (todo (org-entry-is-todo-p))
21151 ;; Indentation of the first heading. It should be
21152 ;; relative to the indentation of its parent, if any.
21153 (start-ind (save-excursion
21154 (cond
21155 ((not org-adapt-indentation) 0)
21156 ((not (outline-previous-heading)) 0)
21157 (t (length (match-string 0))))))
21158 ;; Level of first heading. Further headings will be
21159 ;; compared to it to determine hierarchy in the list.
21160 (ref-level (org-reduced-level (org-outline-level))))
21161 (when (or done todo) (org-todo ""))
21162 (while (< (point) end)
21163 (let* ((level (org-reduced-level (org-outline-level)))
21164 (delta (max 0 (- level ref-level))))
21165 ;; If current headline is less indented than the first
21166 ;; one, set it as reference, in order to preserve
21167 ;; subtrees.
21168 (when (< level ref-level) (setq ref-level level))
21169 (replace-match bul t t)
21170 (org-indent-line-to (+ start-ind (* delta bul-len)))
21171 (when (or done todo)
21172 (let* ((struct (org-list-struct))
21173 (old (copy-tree struct)))
21174 (org-list-set-checkbox (line-beginning-position)
21175 struct
21176 (if done "[X]" "[ ]"))
21177 (org-list-write-struct struct
21178 (org-list-parents-alist struct)
21179 old)))
21180 ;; Ensure all text down to END (or SECTION-END) belongs
21181 ;; to the newly created item.
21182 (let ((section-end (save-excursion
21183 (or (outline-next-heading) (point)))))
21184 (forward-line)
21185 (funcall shift-text
21186 (+ start-ind (* (1+ delta) bul-len))
21187 (min end section-end)))))))
21188 ;; Case 3. Normal line with ARG: make the first line of region
21189 ;; an item, and shift indentation of others lines to
21190 ;; set them as item's body.
21191 (arg (let* ((bul (org-list-bullet-string "-"))
21192 (bul-len (length bul))
21193 (ref-ind (org-get-indentation)))
21194 (skip-chars-forward " \t")
21195 (insert bul)
21196 (forward-line)
21197 (while (< (point) end)
21198 ;; Ensure that lines less indented than first one
21199 ;; still get included in item body.
21200 (funcall shift-text
21201 (+ ref-ind bul-len)
21202 (min end (save-excursion (or (outline-next-heading)
21203 (point)))))
21204 (forward-line))))
21205 ;; Case 4. Normal line without ARG: turn each non-item line
21206 ;; into an item.
21208 (while (< (point) end)
21209 (unless (or (org-at-heading-p) (org-at-item-p))
21210 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21211 (replace-match
21212 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21213 (forward-line))))))))
21215 (defun org-toggle-heading (&optional nstars)
21216 "Convert headings to normal text, or items or text to headings.
21217 If there is no active region, only convert the current line.
21219 With a \\[universal-argument] prefix, convert the whole list at
21220 point into heading.
21222 In a region:
21224 - If the first non blank line is a headline, remove the stars
21225 from all headlines in the region.
21227 - If it is a normal line, turn each and every normal line (i.e.,
21228 not an heading or an item) in the region into headings. If you
21229 want to convert only the first line of this region, use one
21230 universal prefix argument.
21232 - If it is a plain list item, turn all plain list items into headings.
21234 When converting a line into a heading, the number of stars is chosen
21235 such that the lines become children of the current entry. However,
21236 when a numeric prefix argument is given, its value determines the
21237 number of stars to add."
21238 (interactive "P")
21239 (let ((skip-blanks
21240 (function
21241 ;; Return beginning of first non-blank line, starting from
21242 ;; line at POS.
21243 (lambda (pos)
21244 (save-excursion
21245 (goto-char pos)
21246 (while (org-at-comment-p) (forward-line))
21247 (skip-chars-forward " \r\t\n")
21248 (point-at-bol)))))
21249 beg end toggled)
21250 ;; Determine boundaries of changes. If a universal prefix has
21251 ;; been given, put the list in a region. If region ends at a bol,
21252 ;; do not consider the last line to be in the region.
21254 (when (and current-prefix-arg (org-at-item-p))
21255 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21256 (org-mark-element))
21258 (if (org-region-active-p)
21259 (setq beg (funcall skip-blanks (region-beginning))
21260 end (copy-marker (save-excursion
21261 (goto-char (region-end))
21262 (if (bolp) (point) (point-at-eol)))))
21263 (setq beg (funcall skip-blanks (point-at-bol))
21264 end (copy-marker (point-at-eol))))
21265 ;; Ensure inline tasks don't count as headings.
21266 (org-with-limited-levels
21267 (save-excursion
21268 (goto-char beg)
21269 (cond
21270 ;; Case 1. Started at an heading: de-star headings.
21271 ((org-at-heading-p)
21272 (while (< (point) end)
21273 (when (org-at-heading-p t)
21274 (looking-at org-outline-regexp) (replace-match "")
21275 (setq toggled t))
21276 (forward-line)))
21277 ;; Case 2. Started at an item: change items into headlines.
21278 ;; One star will be added by `org-list-to-subtree'.
21279 ((org-at-item-p)
21280 (while (< (point) end)
21281 (when (org-at-item-p)
21282 ;; Pay attention to cases when region ends before list.
21283 (let* ((struct (org-list-struct))
21284 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21285 (save-restriction
21286 (narrow-to-region (point) list-end)
21287 (insert (org-list-to-subtree (org-list-parse-list t)))))
21288 (setq toggled t))
21289 (forward-line)))
21290 ;; Case 3. Started at normal text: make every line an heading,
21291 ;; skipping headlines and items.
21292 (t (let* ((stars
21293 (make-string
21294 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21295 (add-stars
21296 (cond (nstars "") ; stars from prefix only
21297 ((equal stars "") "*") ; before first heading
21298 (org-odd-levels-only "**") ; inside heading, odd
21299 (t "*"))) ; inside heading, oddeven
21300 (rpl (concat stars add-stars " "))
21301 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21302 (while (< (point) (if (equal nstars '(4)) lend end))
21303 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21304 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21305 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21306 (forward-line)))))))
21307 (unless toggled (message "Cannot toggle heading from here"))))
21309 (defun org-meta-return (&optional arg)
21310 "Insert a new heading or wrap a region in a table.
21311 Calls `org-insert-heading' or `org-table-wrap-region', depending
21312 on context. See the individual commands for more information."
21313 (interactive "P")
21314 (org-check-before-invisible-edit 'insert)
21315 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21316 (let* ((element (org-element-at-point))
21317 (type (org-element-type element)))
21318 (when (eq type 'table-row)
21319 (setq element (org-element-property :parent element))
21320 (setq type 'table))
21321 (if (and (eq type 'table)
21322 (eq (org-element-property :type element) 'org)
21323 (>= (point) (org-element-property :contents-begin element))
21324 (< (point) (org-element-property :contents-end element)))
21325 (call-interactively 'org-table-wrap-region)
21326 (call-interactively 'org-insert-heading)))))
21328 ;;; Menu entries
21330 (defsubst org-in-subtree-not-table-p ()
21331 "Are we in a subtree and not in a table?"
21332 (and (not (org-before-first-heading-p))
21333 (not (org-at-table-p))))
21335 ;; Define the Org-mode menus
21336 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21337 '("Tbl"
21338 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21339 ["Next Field" org-cycle (org-at-table-p)]
21340 ["Previous Field" org-shifttab (org-at-table-p)]
21341 ["Next Row" org-return (org-at-table-p)]
21342 "--"
21343 ["Blank Field" org-table-blank-field (org-at-table-p)]
21344 ["Edit Field" org-table-edit-field (org-at-table-p)]
21345 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21346 "--"
21347 ("Column"
21348 ["Move Column Left" org-metaleft (org-at-table-p)]
21349 ["Move Column Right" org-metaright (org-at-table-p)]
21350 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21351 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21352 ("Row"
21353 ["Move Row Up" org-metaup (org-at-table-p)]
21354 ["Move Row Down" org-metadown (org-at-table-p)]
21355 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21356 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21357 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21358 "--"
21359 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21360 ("Rectangle"
21361 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21362 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21363 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21364 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21365 "--"
21366 ("Calculate"
21367 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21368 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21369 ["Edit Formulas" org-edit-special (org-at-table-p)]
21370 "--"
21371 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21372 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21373 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21374 "--"
21375 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21376 "--"
21377 ["Sum Column/Rectangle" org-table-sum
21378 (or (org-at-table-p) (org-region-active-p))]
21379 ["Which Column?" org-table-current-column (org-at-table-p)])
21380 ["Debug Formulas"
21381 org-table-toggle-formula-debugger
21382 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21383 ["Show Col/Row Numbers"
21384 org-table-toggle-coordinate-overlays
21385 :style toggle
21386 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21387 "--"
21388 ["Create" org-table-create (and (not (org-at-table-p))
21389 org-enable-table-editor)]
21390 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21391 ["Import from File" org-table-import (not (org-at-table-p))]
21392 ["Export to File" org-table-export (org-at-table-p)]
21393 "--"
21394 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21395 "--"
21396 ("Plot"
21397 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21398 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21400 (easy-menu-define org-org-menu org-mode-map "Org menu"
21401 '("Org"
21402 ("Show/Hide"
21403 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21404 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21405 ["Sparse Tree..." org-sparse-tree t]
21406 ["Reveal Context" org-reveal t]
21407 ["Show All" show-all t]
21408 "--"
21409 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21410 "--"
21411 ["New Heading" org-insert-heading t]
21412 ("Navigate Headings"
21413 ["Up" outline-up-heading t]
21414 ["Next" outline-next-visible-heading t]
21415 ["Previous" outline-previous-visible-heading t]
21416 ["Next Same Level" outline-forward-same-level t]
21417 ["Previous Same Level" outline-backward-same-level t]
21418 "--"
21419 ["Jump" org-goto t])
21420 ("Edit Structure"
21421 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21422 "--"
21423 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21424 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21425 "--"
21426 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21427 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21428 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21429 "--"
21430 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21431 "--"
21432 ["Copy visible text" org-copy-visible t]
21433 "--"
21434 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21435 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21436 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21437 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21438 "--"
21439 ["Sort Region/Children" org-sort t]
21440 "--"
21441 ["Convert to odd levels" org-convert-to-odd-levels t]
21442 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21443 ("Editing"
21444 ["Emphasis..." org-emphasize t]
21445 ["Edit Source Example" org-edit-special t]
21446 "--"
21447 ["Footnote new/jump" org-footnote-action t]
21448 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21449 ("Archive"
21450 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21451 "--"
21452 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21453 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21454 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21456 "--"
21457 ("Hyperlinks"
21458 ["Store Link (Global)" org-store-link t]
21459 ["Find existing link to here" org-occur-link-in-agenda-files t]
21460 ["Insert Link" org-insert-link t]
21461 ["Follow Link" org-open-at-point t]
21462 "--"
21463 ["Next link" org-next-link t]
21464 ["Previous link" org-previous-link t]
21465 "--"
21466 ["Descriptive Links"
21467 org-toggle-link-display
21468 :style radio
21469 :selected org-descriptive-links
21471 ["Literal Links"
21472 org-toggle-link-display
21473 :style radio
21474 :selected (not org-descriptive-links)])
21475 "--"
21476 ("TODO Lists"
21477 ["TODO/DONE/-" org-todo t]
21478 ("Select keyword"
21479 ["Next keyword" org-shiftright (org-at-heading-p)]
21480 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21481 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21482 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21483 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21484 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21485 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21486 "--"
21487 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21488 :selected org-enforce-todo-dependencies :style toggle :active t]
21489 "Settings for tree at point"
21490 ["Do Children sequentially" org-toggle-ordered-property :style radio
21491 :selected (org-entry-get nil "ORDERED")
21492 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21493 ["Do Children parallel" org-toggle-ordered-property :style radio
21494 :selected (not (org-entry-get nil "ORDERED"))
21495 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21496 "--"
21497 ["Set Priority" org-priority t]
21498 ["Priority Up" org-shiftup t]
21499 ["Priority Down" org-shiftdown t]
21500 "--"
21501 ["Get news from all feeds" org-feed-update-all t]
21502 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21503 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21504 ("TAGS and Properties"
21505 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21506 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21507 "--"
21508 ["Set property" org-set-property (not (org-before-first-heading-p))]
21509 ["Column view of properties" org-columns t]
21510 ["Insert Column View DBlock" org-insert-columns-dblock t])
21511 ("Dates and Scheduling"
21512 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21513 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21514 ("Change Date"
21515 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21516 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21517 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21518 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21519 ["Compute Time Range" org-evaluate-time-range t]
21520 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21521 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21522 "--"
21523 ["Custom time format" org-toggle-time-stamp-overlays
21524 :style radio :selected org-display-custom-times]
21525 "--"
21526 ["Goto Calendar" org-goto-calendar t]
21527 ["Date from Calendar" org-date-from-calendar t]
21528 "--"
21529 ["Start/Restart Timer" org-timer-start t]
21530 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21531 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21532 ["Insert Timer String" org-timer t]
21533 ["Insert Timer Item" org-timer-item t])
21534 ("Logging work"
21535 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21536 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21537 ["Clock out" org-clock-out t]
21538 ["Clock cancel" org-clock-cancel t]
21539 "--"
21540 ["Mark as default task" org-clock-mark-default-task t]
21541 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21542 ["Goto running clock" org-clock-goto t]
21543 "--"
21544 ["Display times" org-clock-display t]
21545 ["Create clock table" org-clock-report t]
21546 "--"
21547 ["Record DONE time"
21548 (progn (setq org-log-done (not org-log-done))
21549 (message "Switching to %s will %s record a timestamp"
21550 (car org-done-keywords)
21551 (if org-log-done "automatically" "not")))
21552 :style toggle :selected org-log-done])
21553 "--"
21554 ["Agenda Command..." org-agenda t]
21555 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21556 ("File List for Agenda")
21557 ("Special views current file"
21558 ["TODO Tree" org-show-todo-tree t]
21559 ["Check Deadlines" org-check-deadlines t]
21560 ["Timeline" org-timeline t]
21561 ["Tags/Property tree" org-match-sparse-tree t])
21562 "--"
21563 ["Export/Publish..." org-export-dispatch t]
21564 ("LaTeX"
21565 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21566 :selected org-cdlatex-mode]
21567 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21568 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21569 ["Modify math symbol" org-cdlatex-math-modify
21570 (org-inside-LaTeX-fragment-p)]
21571 ["Insert citation" org-reftex-citation t]
21572 "--"
21573 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21574 "--"
21575 ("MobileOrg"
21576 ["Push Files and Views" org-mobile-push t]
21577 ["Get Captured and Flagged" org-mobile-pull t]
21578 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21579 "--"
21580 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21581 "--"
21582 ("Documentation"
21583 ["Show Version" org-version t]
21584 ["Info Documentation" org-info t])
21585 ("Customize"
21586 ["Browse Org Group" org-customize t]
21587 "--"
21588 ["Expand This Menu" org-create-customize-menu
21589 (fboundp 'customize-menu-create)])
21590 ["Send bug report" org-submit-bug-report t]
21591 "--"
21592 ("Refresh/Reload"
21593 ["Refresh setup current buffer" org-mode-restart t]
21594 ["Reload Org (after update)" org-reload t]
21595 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21598 (defun org-info (&optional node)
21599 "Read documentation for Org-mode in the info system.
21600 With optional NODE, go directly to that node."
21601 (interactive)
21602 (info (format "(org)%s" (or node ""))))
21604 ;;;###autoload
21605 (defun org-submit-bug-report ()
21606 "Submit a bug report on Org-mode via mail.
21608 Don't hesitate to report any problems or inaccurate documentation.
21610 If you don't have setup sending mail from (X)Emacs, please copy the
21611 output buffer into your mail program, as it gives us important
21612 information about your Org-mode version and configuration."
21613 (interactive)
21614 (require 'reporter)
21615 (org-load-modules-maybe)
21616 (org-require-autoloaded-modules)
21617 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21618 (reporter-submit-bug-report
21619 "emacs-orgmode@gnu.org"
21620 (org-version nil 'full)
21621 (let (list)
21622 (save-window-excursion
21623 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21624 (delete-other-windows)
21625 (erase-buffer)
21626 (insert "You are about to submit a bug report to the Org-mode mailing list.
21628 We would like to add your full Org-mode and Outline configuration to the
21629 bug report. This greatly simplifies the work of the maintainer and
21630 other experts on the mailing list.
21632 HOWEVER, some variables you have customized may contain private
21633 information. The names of customers, colleagues, or friends, might
21634 appear in the form of file names, tags, todo states, or search strings.
21635 If you answer yes to the prompt, you might want to check and remove
21636 such private information before sending the email.")
21637 (add-text-properties (point-min) (point-max) '(face org-warning))
21638 (when (yes-or-no-p "Include your Org-mode configuration ")
21639 (mapatoms
21640 (lambda (v)
21641 (and (boundp v)
21642 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21643 (or (and (symbol-value v)
21644 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21645 (and
21646 (get v 'custom-type) (get v 'standard-value)
21647 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21648 (push v list)))))
21649 (kill-buffer (get-buffer "*Warn about privacy*"))
21650 list))
21651 nil nil
21652 "Remember to cover the basics, that is, what you expected to happen and
21653 what in fact did happen. You don't know how to make a good report? See
21655 http://orgmode.org/manual/Feedback.html#Feedback
21657 Your bug report will be posted to the Org-mode mailing list.
21658 ------------------------------------------------------------------------")
21659 (save-excursion
21660 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21661 (replace-match "\\1Bug: \\3 [\\2]")))))
21664 (defun org-install-agenda-files-menu ()
21665 (let ((bl (buffer-list)))
21666 (save-excursion
21667 (while bl
21668 (set-buffer (pop bl))
21669 (if (derived-mode-p 'org-mode) (setq bl nil)))
21670 (when (derived-mode-p 'org-mode)
21671 (easy-menu-change
21672 '("Org") "File List for Agenda"
21673 (append
21674 (list
21675 ["Edit File List" (org-edit-agenda-file-list) t]
21676 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21677 ["Remove Current File from List" org-remove-file t]
21678 ["Cycle through agenda files" org-cycle-agenda-files t]
21679 ["Occur in all agenda files" org-occur-in-agenda-files t]
21680 "--")
21681 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21683 ;;;; Documentation
21685 (defun org-require-autoloaded-modules ()
21686 (interactive)
21687 (mapc 'require
21688 '(org-agenda org-archive org-attach org-clock org-colview org-id
21689 org-table org-timer)))
21691 ;;;###autoload
21692 (defun org-reload (&optional uncompiled)
21693 "Reload all org lisp files.
21694 With prefix arg UNCOMPILED, load the uncompiled versions."
21695 (interactive "P")
21696 (require 'loadhist)
21697 (let* ((org-dir (org-find-library-dir "org"))
21698 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21699 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21700 (remove-re (mapconcat 'identity
21701 (mapcar (lambda (f) (concat "^" f "$"))
21702 (list (if (featurep 'xemacs)
21703 "org-colview"
21704 "org-colview-xemacs")
21705 "org" "org-loaddefs" "org-version"))
21706 "\\|"))
21707 (feats (delete-dups
21708 (mapcar 'file-name-sans-extension
21709 (mapcar 'file-name-nondirectory
21710 (delq nil
21711 (mapcar 'feature-file
21712 features))))))
21713 (lfeat (append
21714 (sort
21715 (setq feats
21716 (delq nil (mapcar
21717 (lambda (f)
21718 (if (and (string-match feature-re f)
21719 (not (string-match remove-re f)))
21720 f nil))
21721 feats)))
21722 'string-lessp)
21723 (list "org-version" "org")))
21724 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21725 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21726 load-uncore load-misses)
21727 (setq load-misses
21728 (delq 't
21729 (mapcar (lambda (f)
21730 (or (org-load-noerror-mustsuffix (concat org-dir f))
21731 (and (string= org-dir contrib-dir)
21732 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21733 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21734 (add-to-list 'load-uncore f 'append)
21737 lfeat)))
21738 (if load-uncore
21739 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21740 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21741 (if load-misses
21742 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21743 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21744 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21746 ;;;###autoload
21747 (defun org-customize ()
21748 "Call the customize function with org as argument."
21749 (interactive)
21750 (org-load-modules-maybe)
21751 (org-require-autoloaded-modules)
21752 (customize-browse 'org))
21754 (defun org-create-customize-menu ()
21755 "Create a full customization menu for Org-mode, insert it into the menu."
21756 (interactive)
21757 (org-load-modules-maybe)
21758 (org-require-autoloaded-modules)
21759 (if (fboundp 'customize-menu-create)
21760 (progn
21761 (easy-menu-change
21762 '("Org") "Customize"
21763 `(["Browse Org group" org-customize t]
21764 "--"
21765 ,(customize-menu-create 'org)
21766 ["Set" Custom-set t]
21767 ["Save" Custom-save t]
21768 ["Reset to Current" Custom-reset-current t]
21769 ["Reset to Saved" Custom-reset-saved t]
21770 ["Reset to Standard Settings" Custom-reset-standard t]))
21771 (message "\"Org\"-menu now contains full customization menu"))
21772 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21774 ;;;; Miscellaneous stuff
21776 ;;; Generally useful functions
21778 (defsubst org-get-at-eol (property n)
21779 "Get text property PROPERTY at the end of line less N characters."
21780 (get-text-property (- (point-at-eol) n) property))
21782 (defun org-find-text-property-in-string (prop s)
21783 "Return the first non-nil value of property PROP in string S."
21784 (or (get-text-property 0 prop s)
21785 (get-text-property (or (next-single-property-change 0 prop s) 0)
21786 prop s)))
21788 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21789 "Display the given MESSAGE as a warning."
21790 (if (fboundp 'display-warning)
21791 (display-warning 'org message
21792 (if (featurep 'xemacs) 'warning :warning))
21793 (let ((buf (get-buffer-create "*Org warnings*")))
21794 (with-current-buffer buf
21795 (goto-char (point-max))
21796 (insert "Warning (Org): " message)
21797 (unless (bolp)
21798 (newline)))
21799 (display-buffer buf)
21800 (sit-for 0))))
21802 (defun org-eval (form)
21803 "Eval FORM and return result."
21804 (condition-case error
21805 (eval form)
21806 (error (format "%%![Error: %s]" error))))
21808 (defun org-in-clocktable-p ()
21809 "Check if the cursor is in a clocktable."
21810 (let ((pos (point)) start)
21811 (save-excursion
21812 (end-of-line 1)
21813 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21814 (setq start (match-beginning 0))
21815 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21816 (>= (match-end 0) pos)
21817 start))))
21819 (defun org-in-verbatim-emphasis ()
21820 (save-match-data
21821 (and (org-in-regexp org-emph-re 2)
21822 (>= (point) (match-beginning 3))
21823 (<= (point) (match-end 4))
21824 (member (match-string 3) '("=" "~")))))
21826 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21827 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21828 (if (and marker (marker-buffer marker)
21829 (buffer-live-p (marker-buffer marker)))
21830 (progn
21831 (org-pop-to-buffer-same-window (marker-buffer marker))
21832 (if (or (> marker (point-max)) (< marker (point-min)))
21833 (widen))
21834 (goto-char marker)
21835 (org-show-context 'org-goto))
21836 (if bookmark
21837 (bookmark-jump bookmark)
21838 (error "Cannot find location"))))
21840 (defun org-quote-csv-field (s)
21841 "Quote field for inclusion in CSV material."
21842 (if (string-match "[\",]" s)
21843 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21846 (defun org-force-self-insert (N)
21847 "Needed to enforce self-insert under remapping."
21848 (interactive "p")
21849 (self-insert-command N))
21851 (defun org-string-width (s)
21852 "Compute width of string, ignoring invisible characters.
21853 This ignores character with invisibility property `org-link', and also
21854 characters with property `org-cwidth', because these will become invisible
21855 upon the next fontification round."
21856 (let (b l)
21857 (when (or (eq t buffer-invisibility-spec)
21858 (assq 'org-link buffer-invisibility-spec))
21859 (while (setq b (text-property-any 0 (length s)
21860 'invisible 'org-link s))
21861 (setq s (concat (substring s 0 b)
21862 (substring s (or (next-single-property-change
21863 b 'invisible s) (length s)))))))
21864 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21865 (setq s (concat (substring s 0 b)
21866 (substring s (or (next-single-property-change
21867 b 'org-cwidth s) (length s))))))
21868 (setq l (string-width s) b -1)
21869 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21870 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21873 (defun org-shorten-string (s maxlength)
21874 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21875 If the string is shorter or has length MAXLENGTH, just return the
21876 original string. If it is longer, the functions finds a space in the
21877 string, breaks this string off at that locations and adds three dots
21878 as ellipsis. Including the ellipsis, the string will not be longer
21879 than MAXLENGTH. If finding a good breaking point in the string does
21880 not work, the string is just chopped off in the middle of a word
21881 if necessary."
21882 (if (<= (length s) maxlength)
21884 (let* ((n (max (- maxlength 4) 1))
21885 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21886 (if (string-match re s)
21887 (concat (match-string 1 s) "...")
21888 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21890 (defun org-get-indentation (&optional line)
21891 "Get the indentation of the current line, interpreting tabs.
21892 When LINE is given, assume it represents a line and compute its indentation."
21893 (if line
21894 (if (string-match "^ *" (org-remove-tabs line))
21895 (match-end 0))
21896 (save-excursion
21897 (beginning-of-line 1)
21898 (skip-chars-forward " \t")
21899 (current-column))))
21901 (defun org-get-string-indentation (s)
21902 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21903 (let ((n -1) (i 0) (w tab-width) c)
21904 (catch 'exit
21905 (while (< (setq n (1+ n)) (length s))
21906 (setq c (aref s n))
21907 (cond ((= c ?\ ) (setq i (1+ i)))
21908 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21909 (t (throw 'exit t)))))
21912 (defun org-remove-tabs (s &optional width)
21913 "Replace tabulators in S with spaces.
21914 Assumes that s is a single line, starting in column 0."
21915 (setq width (or width tab-width))
21916 (while (string-match "\t" s)
21917 (setq s (replace-match
21918 (make-string
21919 (- (* width (/ (+ (match-beginning 0) width) width))
21920 (match-beginning 0)) ?\ )
21921 t t s)))
21924 (defun org-fix-indentation (line ind)
21925 "Fix indentation in LINE.
21926 IND is a cons cell with target and minimum indentation.
21927 If the current indentation in LINE is smaller than the minimum,
21928 leave it alone. If it is larger than ind, set it to the target."
21929 (let* ((l (org-remove-tabs line))
21930 (i (org-get-indentation l))
21931 (i1 (car ind)) (i2 (cdr ind)))
21932 (if (>= i i2) (setq l (substring line i2)))
21933 (if (> i1 0)
21934 (concat (make-string i1 ?\ ) l)
21935 l)))
21937 (defun org-remove-indentation (code &optional n)
21938 "Remove the maximum common indentation from the lines in CODE.
21939 N may optionally be the number of spaces to remove."
21940 (with-temp-buffer
21941 (insert code)
21942 (org-do-remove-indentation n)
21943 (buffer-string)))
21945 (defun org-do-remove-indentation (&optional n)
21946 "Remove the maximum common indentation from the buffer."
21947 (untabify (point-min) (point-max))
21948 (let ((min 10000) re)
21949 (if n
21950 (setq min n)
21951 (goto-char (point-min))
21952 (while (re-search-forward "^ *[^ \n]" nil t)
21953 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21954 (unless (or (= min 0) (= min 10000))
21955 (setq re (format "^ \\{%d\\}" min))
21956 (goto-char (point-min))
21957 (while (re-search-forward re nil t)
21958 (replace-match "")
21959 (end-of-line 1))
21960 min)))
21962 (defun org-fill-template (template alist)
21963 "Find each %key of ALIST in TEMPLATE and replace it."
21964 (let ((case-fold-search nil)
21965 entry key value)
21966 (setq alist (sort (copy-sequence alist)
21967 (lambda (a b) (< (length (car a)) (length (car b))))))
21968 (while (setq entry (pop alist))
21969 (setq template
21970 (replace-regexp-in-string
21971 (concat "%" (regexp-quote (car entry)))
21972 (or (cdr entry) "") template t t)))
21973 template))
21975 (defun org-base-buffer (buffer)
21976 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21977 (if (not buffer)
21978 buffer
21979 (or (buffer-base-buffer buffer)
21980 buffer)))
21982 (defun org-wrap (string &optional width lines)
21983 "Wrap string to either a number of lines, or a width in characters.
21984 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21985 that costs. If there is a word longer than WIDTH, the text is actually
21986 wrapped to the length of that word.
21987 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21988 many lines, whatever width that takes.
21989 The return value is a list of lines, without newlines at the end."
21990 (let* ((words (org-split-string string "[ \t\n]+"))
21991 (maxword (apply 'max (mapcar 'org-string-width words)))
21992 w ll)
21993 (cond (width
21994 (org-do-wrap words (max maxword width)))
21995 (lines
21996 (setq w maxword)
21997 (setq ll (org-do-wrap words maxword))
21998 (if (<= (length ll) lines)
22000 (setq ll words)
22001 (while (> (length ll) lines)
22002 (setq w (1+ w))
22003 (setq ll (org-do-wrap words w)))
22004 ll))
22005 (t (error "Cannot wrap this")))))
22007 (defun org-do-wrap (words width)
22008 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22009 (let (lines line)
22010 (while words
22011 (setq line (pop words))
22012 (while (and words (< (+ (length line) (length (car words))) width))
22013 (setq line (concat line " " (pop words))))
22014 (setq lines (push line lines)))
22015 (nreverse lines)))
22017 (defun org-split-string (string &optional separators)
22018 "Splits STRING into substrings at SEPARATORS.
22019 No empty strings are returned if there are matches at the beginning
22020 and end of string."
22021 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22022 (start 0)
22023 notfirst
22024 (list nil))
22025 (while (and (string-match rexp string
22026 (if (and notfirst
22027 (= start (match-beginning 0))
22028 (< start (length string)))
22029 (1+ start) start))
22030 (< (match-beginning 0) (length string)))
22031 (setq notfirst t)
22032 (or (eq (match-beginning 0) 0)
22033 (and (eq (match-beginning 0) (match-end 0))
22034 (eq (match-beginning 0) start))
22035 (setq list
22036 (cons (substring string start (match-beginning 0))
22037 list)))
22038 (setq start (match-end 0)))
22039 (or (eq start (length string))
22040 (setq list
22041 (cons (substring string start)
22042 list)))
22043 (nreverse list)))
22045 (defun org-quote-vert (s)
22046 "Replace \"|\" with \"\\vert\"."
22047 (while (string-match "|" s)
22048 (setq s (replace-match "\\vert" t t s)))
22051 (defun org-uuidgen-p (s)
22052 "Is S an ID created by UUIDGEN?"
22053 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22055 (defun org-in-src-block-p (&optional inside)
22056 "Whether point is in a code source block.
22057 When INSIDE is non-nil, don't consider we are within a src block
22058 when point is at #+BEGIN_SRC or #+END_SRC."
22059 (let ((case-fold-search t) ov)
22060 (or (and (eq (get-char-property (point) 'src-block) t))
22061 (and (not inside)
22062 (save-match-data
22063 (save-excursion
22064 (beginning-of-line)
22065 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22067 (defun org-context ()
22068 "Return a list of contexts of the current cursor position.
22069 If several contexts apply, all are returned.
22070 Each context entry is a list with a symbol naming the context, and
22071 two positions indicating start and end of the context. Possible
22072 contexts are:
22074 :headline anywhere in a headline
22075 :headline-stars on the leading stars in a headline
22076 :todo-keyword on a TODO keyword (including DONE) in a headline
22077 :tags on the TAGS in a headline
22078 :priority on the priority cookie in a headline
22079 :item on the first line of a plain list item
22080 :item-bullet on the bullet/number of a plain list item
22081 :checkbox on the checkbox in a plain list item
22082 :table in an org-mode table
22083 :table-special on a special filed in a table
22084 :table-table in a table.el table
22085 :clocktable in a clocktable
22086 :src-block in a source block
22087 :link on a hyperlink
22088 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22089 :target on a <<target>>
22090 :radio-target on a <<<radio-target>>>
22091 :latex-fragment on a LaTeX fragment
22092 :latex-preview on a LaTeX fragment with overlaid preview image
22094 This function expects the position to be visible because it uses font-lock
22095 faces as a help to recognize the following contexts: :table-special, :link,
22096 and :keyword."
22097 (let* ((f (get-text-property (point) 'face))
22098 (faces (if (listp f) f (list f)))
22099 (case-fold-search t)
22100 (p (point)) clist o)
22101 ;; First the large context
22102 (cond
22103 ((org-at-heading-p t)
22104 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22105 (when (progn
22106 (beginning-of-line 1)
22107 (looking-at org-todo-line-tags-regexp))
22108 (push (org-point-in-group p 1 :headline-stars) clist)
22109 (push (org-point-in-group p 2 :todo-keyword) clist)
22110 (push (org-point-in-group p 4 :tags) clist))
22111 (goto-char p)
22112 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22113 (if (looking-at "\\[#[A-Z0-9]\\]")
22114 (push (org-point-in-group p 0 :priority) clist)))
22116 ((org-at-item-p)
22117 (push (org-point-in-group p 2 :item-bullet) clist)
22118 (push (list :item (point-at-bol)
22119 (save-excursion (org-end-of-item) (point)))
22120 clist)
22121 (and (org-at-item-checkbox-p)
22122 (push (org-point-in-group p 0 :checkbox) clist)))
22124 ((org-at-table-p)
22125 (push (list :table (org-table-begin) (org-table-end)) clist)
22126 (if (memq 'org-formula faces)
22127 (push (list :table-special
22128 (previous-single-property-change p 'face)
22129 (next-single-property-change p 'face)) clist)))
22130 ((org-at-table-p 'any)
22131 (push (list :table-table) clist)))
22132 (goto-char p)
22134 (let ((case-fold-search t))
22135 ;; New the "medium" contexts: clocktables, source blocks
22136 (cond ((org-in-clocktable-p)
22137 (push (list :clocktable
22138 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22139 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22140 (match-beginning 1))
22141 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22142 (match-end 0))) clist))
22143 ((org-in-src-block-p)
22144 (push (list :src-block
22145 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22146 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22147 (match-beginning 1))
22148 (and (search-forward "#+END_SRC" nil t)
22149 (match-beginning 0))) clist))))
22150 (goto-char p)
22152 ;; Now the small context
22153 (cond
22154 ((org-at-timestamp-p)
22155 (push (org-point-in-group p 0 :timestamp) clist))
22156 ((memq 'org-link faces)
22157 (push (list :link
22158 (previous-single-property-change p 'face)
22159 (next-single-property-change p 'face)) clist))
22160 ((memq 'org-special-keyword faces)
22161 (push (list :keyword
22162 (previous-single-property-change p 'face)
22163 (next-single-property-change p 'face)) clist))
22164 ((org-at-target-p)
22165 (push (org-point-in-group p 0 :target) clist)
22166 (goto-char (1- (match-beginning 0)))
22167 (if (looking-at org-radio-target-regexp)
22168 (push (org-point-in-group p 0 :radio-target) clist))
22169 (goto-char p))
22170 ((setq o (car (delq nil
22171 (mapcar
22172 (lambda (x)
22173 (if (memq x org-latex-fragment-image-overlays) x))
22174 (overlays-at (point))))))
22175 (push (list :latex-fragment
22176 (overlay-start o) (overlay-end o)) clist)
22177 (push (list :latex-preview
22178 (overlay-start o) (overlay-end o)) clist))
22179 ((org-inside-LaTeX-fragment-p)
22180 ;; FIXME: positions wrong.
22181 (push (list :latex-fragment (point) (point)) clist)))
22183 (setq clist (nreverse (delq nil clist)))
22184 clist))
22186 (defun org-in-regexp (re &optional nlines visually)
22187 "Check if point is inside a match of RE.
22189 Normally only the current line is checked, but you can include
22190 NLINES extra lines after point into the search. If VISUALLY is
22191 set, require that the cursor is not after the match but really
22192 on, so that the block visually is on the match."
22193 (catch 'exit
22194 (let ((pos (point))
22195 (eol (point-at-eol (+ 1 (or nlines 0))))
22196 (inc (if visually 1 0)))
22197 (save-excursion
22198 (beginning-of-line (- 1 (or nlines 0)))
22199 (while (re-search-forward re eol t)
22200 (if (and (<= (match-beginning 0) pos)
22201 (>= (+ inc (match-end 0)) pos))
22202 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22203 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22204 "Org mode 8.3")
22206 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22207 "Non-nil when point is between matches of START-RE and END-RE.
22209 Also return a non-nil value when point is on one of the matches.
22211 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22212 buffer positions. Default values are the positions of headlines
22213 surrounding the point.
22215 The functions returns a cons cell whose car (resp. cdr) is the
22216 position before START-RE (resp. after END-RE)."
22217 (save-match-data
22218 (let ((pos (point))
22219 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22220 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22221 beg end)
22222 (save-excursion
22223 ;; Point is on a block when on START-RE or if START-RE can be
22224 ;; found before it...
22225 (and (or (org-in-regexp start-re)
22226 (re-search-backward start-re limit-up t))
22227 (setq beg (match-beginning 0))
22228 ;; ... and END-RE after it...
22229 (goto-char (match-end 0))
22230 (re-search-forward end-re limit-down t)
22231 (> (setq end (match-end 0)) pos)
22232 ;; ... without another START-RE in-between.
22233 (goto-char (match-beginning 0))
22234 (not (re-search-backward start-re (1+ beg) t))
22235 ;; Return value.
22236 (cons beg end))))))
22238 (defun org-in-block-p (names)
22239 "Non-nil when point belongs to a block whose name belongs to NAMES.
22241 NAMES is a list of strings containing names of blocks.
22243 Return first block name matched, or nil. Beware that in case of
22244 nested blocks, the returned name may not belong to the closest
22245 block from point."
22246 (save-match-data
22247 (catch 'exit
22248 (let ((case-fold-search t)
22249 (lim-up (save-excursion (outline-previous-heading)))
22250 (lim-down (save-excursion (outline-next-heading))))
22251 (mapc (lambda (name)
22252 (let ((n (regexp-quote name)))
22253 (when (org-between-regexps-p
22254 (concat "^[ \t]*#\\+begin_" n)
22255 (concat "^[ \t]*#\\+end_" n)
22256 lim-up lim-down)
22257 (throw 'exit n))))
22258 names))
22259 nil)))
22261 (defun org-occur-in-agenda-files (regexp &optional nlines)
22262 "Call `multi-occur' with buffers for all agenda files."
22263 (interactive "sOrg-files matching: \np")
22264 (let* ((files (org-agenda-files))
22265 (tnames (mapcar 'file-truename files))
22266 (extra org-agenda-text-search-extra-files)
22268 (when (eq (car extra) 'agenda-archives)
22269 (setq extra (cdr extra))
22270 (setq files (org-add-archive-files files)))
22271 (while (setq f (pop extra))
22272 (unless (member (file-truename f) tnames)
22273 (add-to-list 'files f 'append)
22274 (add-to-list 'tnames (file-truename f) 'append)))
22275 (multi-occur
22276 (mapcar (lambda (x)
22277 (with-current-buffer
22278 (or (get-file-buffer x) (find-file-noselect x))
22279 (widen)
22280 (current-buffer)))
22281 files)
22282 regexp)))
22284 (if (boundp 'occur-mode-find-occurrence-hook)
22285 ;; Emacs 23
22286 (add-hook 'occur-mode-find-occurrence-hook
22287 (lambda ()
22288 (when (derived-mode-p 'org-mode)
22289 (org-reveal))))
22290 ;; Emacs 22
22291 (defadvice occur-mode-goto-occurrence
22292 (after org-occur-reveal activate)
22293 (and (derived-mode-p 'org-mode) (org-reveal)))
22294 (defadvice occur-mode-goto-occurrence-other-window
22295 (after org-occur-reveal activate)
22296 (and (derived-mode-p 'org-mode) (org-reveal)))
22297 (defadvice occur-mode-display-occurrence
22298 (after org-occur-reveal activate)
22299 (when (derived-mode-p 'org-mode)
22300 (let ((pos (occur-mode-find-occurrence)))
22301 (with-current-buffer (marker-buffer pos)
22302 (save-excursion
22303 (goto-char pos)
22304 (org-reveal)))))))
22306 (defun org-occur-link-in-agenda-files ()
22307 "Create a link and search for it in the agendas.
22308 The link is not stored in `org-stored-links', it is just created
22309 for the search purpose."
22310 (interactive)
22311 (let ((link (condition-case nil
22312 (org-store-link nil)
22313 (error "Unable to create a link to here"))))
22314 (org-occur-in-agenda-files (regexp-quote link))))
22316 (defun org-reverse-string (string)
22317 "Return the reverse of STRING."
22318 (apply 'string (reverse (string-to-list string))))
22320 ;; defsubst org-uniquify must be defined before first use
22322 (defun org-uniquify-alist (alist)
22323 "Merge elements of ALIST with the same key.
22325 For example, in this alist:
22327 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22328 => '((a 1 3) (b 2))
22330 merge (a 1) and (a 3) into (a 1 3).
22332 The function returns the new ALIST."
22333 (let (rtn)
22334 (mapc
22335 (lambda (e)
22336 (let (n)
22337 (if (not (assoc (car e) rtn))
22338 (push e rtn)
22339 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22340 (setq rtn (assq-delete-all (car e) rtn))
22341 (push n rtn))))
22342 alist)
22343 rtn))
22345 (defun org-delete-all (elts list)
22346 "Remove all elements in ELTS from LIST."
22347 (while elts
22348 (setq list (delete (pop elts) list)))
22349 list)
22351 (defun org-count (cl-item cl-seq)
22352 "Count the number of occurrences of ITEM in SEQ.
22353 Taken from `count' in cl-seq.el with all keyword arguments removed."
22354 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22355 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22356 (while (< cl-start cl-end)
22357 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22358 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22359 (setq cl-start (1+ cl-start)))
22360 cl-count))
22362 (defun org-remove-if (predicate seq)
22363 "Remove everything from SEQ that fulfills PREDICATE."
22364 (let (res e)
22365 (while seq
22366 (setq e (pop seq))
22367 (if (not (funcall predicate e)) (push e res)))
22368 (nreverse res)))
22370 (defun org-remove-if-not (predicate seq)
22371 "Remove everything from SEQ that does not fulfill PREDICATE."
22372 (let (res e)
22373 (while seq
22374 (setq e (pop seq))
22375 (if (funcall predicate e) (push e res)))
22376 (nreverse res)))
22378 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22379 "Reduce two-argument FUNCTION across SEQ.
22380 Taken from `reduce' in cl-seq.el with all keyword arguments but
22381 \":initial-value\" removed."
22382 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22383 (cadr (memq :initial-value cl-keys)))
22384 (cl-seq (pop cl-seq))
22385 (t (funcall cl-func)))))
22386 (while cl-seq
22387 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22388 cl-accum))
22390 (defun org-every (pred seq)
22391 "Return true if PREDICATE is true of every element of SEQ.
22392 Adapted from `every' in cl.el."
22393 (catch 'org-every
22394 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22397 (defun org-some (pred seq)
22398 "Return true if PREDICATE is true of any element of SEQ.
22399 Adapted from `some' in cl.el."
22400 (catch 'org-some
22401 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22402 nil))
22404 (defun org-back-over-empty-lines ()
22405 "Move backwards over whitespace, to the beginning of the first empty line.
22406 Returns the number of empty lines passed."
22407 (let ((pos (point)))
22408 (if (cdr (assoc 'heading org-blank-before-new-entry))
22409 (skip-chars-backward " \t\n\r")
22410 (unless (eobp)
22411 (forward-line -1)))
22412 (beginning-of-line 2)
22413 (goto-char (min (point) pos))
22414 (count-lines (point) pos)))
22416 (defun org-skip-whitespace ()
22417 (skip-chars-forward " \t\n\r"))
22419 (defun org-point-in-group (point group &optional context)
22420 "Check if POINT is in match-group GROUP.
22421 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22422 match. If the match group does not exist or point is not inside it,
22423 return nil."
22424 (and (match-beginning group)
22425 (>= point (match-beginning group))
22426 (<= point (match-end group))
22427 (if context
22428 (list context (match-beginning group) (match-end group))
22429 t)))
22431 (defun org-switch-to-buffer-other-window (&rest args)
22432 "Switch to buffer in a second window on the current frame.
22433 In particular, do not allow pop-up frames.
22434 Returns the newly created buffer."
22435 (org-no-popups
22436 (apply 'switch-to-buffer-other-window args)))
22438 (defun org-combine-plists (&rest plists)
22439 "Create a single property list from all plists in PLISTS.
22440 The process starts by copying the first list, and then setting properties
22441 from the other lists. Settings in the last list are the most significant
22442 ones and overrule settings in the other lists."
22443 (let ((rtn (copy-sequence (pop plists)))
22444 p v ls)
22445 (while plists
22446 (setq ls (pop plists))
22447 (while ls
22448 (setq p (pop ls) v (pop ls))
22449 (setq rtn (plist-put rtn p v))))
22450 rtn))
22452 (defun org-replace-escapes (string table)
22453 "Replace %-escapes in STRING with values in TABLE.
22454 TABLE is an association list with keys like \"%a\" and string values.
22455 The sequences in STRING may contain normal field width and padding information,
22456 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22457 so values can contain further %-escapes if they are define later in TABLE."
22458 (let ((tbl (copy-alist table))
22459 (case-fold-search nil)
22460 (pchg 0)
22461 e re rpl)
22462 (while (setq e (pop tbl))
22463 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22464 (when (and (cdr e) (string-match re (cdr e)))
22465 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22466 (safe "SREF"))
22467 (add-text-properties 0 3 (list 'sref sref) safe)
22468 (setcdr e (replace-match safe t t (cdr e)))))
22469 (while (string-match re string)
22470 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22471 (cdr e)))
22472 (setq string (replace-match rpl t t string))))
22473 (while (setq pchg (next-property-change pchg string))
22474 (let ((sref (get-text-property pchg 'sref string)))
22475 (when (and sref (string-match "SREF" string pchg))
22476 (setq string (replace-match sref t t string)))))
22477 string))
22479 (defun org-sublist (list start end)
22480 "Return a section of LIST, from START to END.
22481 Counting starts at 1."
22482 (let (rtn (c start))
22483 (setq list (nthcdr (1- start) list))
22484 (while (and list (<= c end))
22485 (push (pop list) rtn)
22486 (setq c (1+ c)))
22487 (nreverse rtn)))
22489 (defun org-find-base-buffer-visiting (file)
22490 "Like `find-buffer-visiting' but always return the base buffer and
22491 not an indirect buffer."
22492 (let ((buf (or (get-file-buffer file)
22493 (find-buffer-visiting file))))
22494 (if buf
22495 (or (buffer-base-buffer buf) buf)
22496 nil)))
22498 (defun org-image-file-name-regexp (&optional extensions)
22499 "Return regexp matching the file names of images.
22500 If EXTENSIONS is given, only match these."
22501 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22502 (image-file-name-regexp)
22503 (let ((image-file-name-extensions
22504 (or extensions
22505 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22506 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22507 (concat "\\."
22508 (regexp-opt (nconc (mapcar 'upcase
22509 image-file-name-extensions)
22510 image-file-name-extensions)
22512 "\\'"))))
22514 (defun org-file-image-p (file &optional extensions)
22515 "Return non-nil if FILE is an image."
22516 (save-match-data
22517 (string-match (org-image-file-name-regexp extensions) file)))
22519 (defun org-get-cursor-date (&optional with-time)
22520 "Return the date at cursor in as a time.
22521 This works in the calendar and in the agenda, anywhere else it just
22522 returns the current time.
22523 If WITH-TIME is non-nil, returns the time of the event at point (in
22524 the agenda) or the current time of the day."
22525 (let (date day defd tp tm hod mod)
22526 (when with-time
22527 (setq tp (get-text-property (point) 'time))
22528 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22529 (setq hod (string-to-number (match-string 1 tp))
22530 mod (string-to-number (match-string 2 tp))))
22531 (or tp (setq hod (nth 2 (decode-time (current-time)))
22532 mod (nth 1 (decode-time (current-time))))))
22533 (cond
22534 ((eq major-mode 'calendar-mode)
22535 (setq date (calendar-cursor-to-date)
22536 defd (encode-time 0 (or mod 0) (or hod 0)
22537 (nth 1 date) (nth 0 date) (nth 2 date))))
22538 ((eq major-mode 'org-agenda-mode)
22539 (setq day (get-text-property (point) 'day))
22540 (if day
22541 (setq date (calendar-gregorian-from-absolute day)
22542 defd (encode-time 0 (or mod 0) (or hod 0)
22543 (nth 1 date) (nth 0 date) (nth 2 date))))))
22544 (or defd (current-time))))
22546 (defun org-mark-subtree (&optional up)
22547 "Mark the current subtree.
22548 This puts point at the start of the current subtree, and mark at
22549 the end. If a numeric prefix UP is given, move up into the
22550 hierarchy of headlines by UP levels before marking the subtree."
22551 (interactive "P")
22552 (org-with-limited-levels
22553 (cond ((org-at-heading-p) (beginning-of-line))
22554 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22555 (t (outline-previous-visible-heading 1))))
22556 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22557 (if (org-called-interactively-p 'any)
22558 (call-interactively 'org-mark-element)
22559 (org-mark-element)))
22562 ;;; Indentation
22564 (defun org--get-expected-indentation (element contentsp)
22565 "Expected indentation column for current line, according to ELEMENT.
22566 ELEMENT is an element containing point. CONTENTSP is non-nil
22567 when indentation is to be computed according to contents of
22568 ELEMENT."
22569 (let ((type (org-element-type element))
22570 (start (org-element-property :begin element)))
22571 (org-with-wide-buffer
22572 (cond
22573 (contentsp
22574 (case type
22575 (footnote-definition 0)
22576 ((headline inlinetask nil)
22577 (if (not org-adapt-indentation) 0
22578 (let ((level (org-current-level)))
22579 (if level (1+ level) 0))))
22580 (item
22581 (org-list-item-body-column
22582 (org-element-property :post-affiliated element)))
22583 (plain-list
22584 (save-excursion
22585 (goto-char (org-element-property :post-affiliated element))
22586 (org-get-indentation)))
22587 (otherwise
22588 (goto-char start)
22589 (org-get-indentation))))
22590 ((memq type '(headline inlinetask nil))
22591 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22592 (org--get-expected-indentation element t)
22594 ((eq type 'footnote-definition) 0)
22595 ;; First paragraph of a footnote definition or an item.
22596 ;; Indent like parent.
22597 ((< (line-beginning-position) start)
22598 (org--get-expected-indentation
22599 (org-element-property :parent element) t))
22600 ;; At first line: indent according to previous sibling, if any,
22601 ;; ignoring footnote definitions and inline tasks, or parent's
22602 ;; contents.
22603 ((= (line-beginning-position) start)
22604 (catch 'exit
22605 (while t
22606 (if (= (point-min) start) (throw 'exit 0)
22607 (goto-char (1- start))
22608 (let* ((previous (org-element-at-point))
22609 (parent previous))
22610 (while (and parent (<= (org-element-property :end parent) start))
22611 (setq previous parent
22612 parent (org-element-property :parent parent)))
22613 (cond
22614 ((not previous) (throw 'exit 0))
22615 ((> (org-element-property :end previous) start)
22616 (throw 'exit (org--get-expected-indentation previous t)))
22617 ((memq (org-element-type previous)
22618 '(footnote-definition inlinetask))
22619 (setq start (org-element-property :begin previous)))
22620 (t (goto-char (org-element-property :begin previous))
22621 (throw 'exit
22622 (if (bolp) (org-get-indentation)
22623 ;; At first paragraph in an item or
22624 ;; a footnote definition.
22625 (org--get-expected-indentation
22626 (org-element-property :parent previous) t))))))))))
22627 ;; Otherwise, move to the first non-blank line above.
22629 (beginning-of-line)
22630 (let ((pos (point)))
22631 (skip-chars-backward " \r\t\n")
22632 (cond
22633 ;; Two blank lines end a footnote definition or a plain
22634 ;; list. When we indent an empty line after them, the
22635 ;; containing list or footnote definition is over, so it
22636 ;; qualifies as a previous sibling. Therefore, we indent
22637 ;; like its first line.
22638 ((and (memq type '(footnote-definition plain-list))
22639 (> (count-lines (point) pos) 2))
22640 (goto-char start)
22641 (org-get-indentation))
22642 ;; Line above is the first one of a paragraph at the
22643 ;; beginning of an item or a footnote definition. Indent
22644 ;; like parent.
22645 ((< (line-beginning-position) start)
22646 (org--get-expected-indentation
22647 (org-element-property :parent element) t))
22648 ;; POS is after contents in a greater element. Indent like
22649 ;; the beginning of the element.
22651 ;; As a special case, if point is at the end of a footnote
22652 ;; definition or an item, indent like the very last element
22653 ;; within.
22654 ((and (not (eq type 'paragraph))
22655 (let ((cend (org-element-property :contents-end element)))
22656 (and cend (<= cend pos))))
22657 (if (memq type '(footnote-definition item plain-list))
22658 (org--get-expected-indentation (org-element-at-point) nil)
22659 (goto-char start)
22660 (org-get-indentation)))
22661 ;; In any other case, indent like the current line.
22662 (t (org-get-indentation)))))))))
22664 (defun org--align-node-property ()
22665 "Align node property at point.
22666 Alignment is done according to `org-property-format', which see."
22667 (when (save-excursion
22668 (beginning-of-line)
22669 (looking-at org-property-re))
22670 (replace-match
22671 (concat (match-string 4)
22672 (org-trim
22673 (format org-property-format (match-string 1) (match-string 3))))
22674 t t)))
22676 (defun org-indent-line ()
22677 "Indent line depending on context.
22679 Indentation is done according to the following rules:
22681 - Footnote definitions, headlines and inline tasks have to
22682 start at column 0.
22684 - On the very first line of an element, consider, in order, the
22685 next rules until one matches:
22687 1. If there's a sibling element before, ignoring footnote
22688 definitions and inline tasks, indent like its first line.
22690 2. If element has a parent, indent like its contents. More
22691 precisely, if parent is an item, indent after the
22692 description part, if any, or the bullet (see
22693 `org-list-description-max-indent'). Else, indent like
22694 parent's first line.
22696 3. Otherwise, indent relatively to current level, if
22697 `org-adapt-indentation' is non-nil, or to left margin.
22699 - On a blank line at the end of an element, indent according to
22700 the type of the element. More precisely
22702 1. If element is a plain list, an item, or a footnote
22703 definition, indent like the very last element within.
22705 2. If element is a paragraph, indent like its last non blank
22706 line.
22708 3. Otherwise, indent like its very first line.
22710 - In the code part of a source block, use language major mode
22711 to indent current line if `org-src-tab-acts-natively' is
22712 non-nil. If it is nil, do nothing.
22714 - Otherwise, indent like the first non-blank line above.
22716 The function doesn't indent an item as it could break the whole
22717 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22718 \\[org-shiftmetaright].
22720 Also align node properties according to `org-property-format'."
22721 (interactive)
22722 (cond
22723 (orgstruct-is-++
22724 (let ((indent-line-function
22725 (cadadr (assq 'indent-line-function org-fb-vars))))
22726 (indent-according-to-mode)))
22727 ((org-at-heading-p) 'noindent)
22729 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22730 (type (org-element-type element)))
22731 (cond ((and (memq type '(plain-list item))
22732 (= (line-beginning-position)
22733 (org-element-property :post-affiliated element)))
22734 'noindent)
22735 ((and (eq type 'src-block)
22736 org-src-tab-acts-natively
22737 (> (line-beginning-position)
22738 (org-element-property :post-affiliated element))
22739 (< (line-beginning-position)
22740 (org-with-wide-buffer
22741 (goto-char (org-element-property :end element))
22742 (skip-chars-backward " \r\t\n")
22743 (line-beginning-position))))
22744 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22746 (let ((column (org--get-expected-indentation element nil)))
22747 ;; Preserve current column.
22748 (if (<= (current-column) (current-indentation))
22749 (org-indent-line-to column)
22750 (save-excursion (org-indent-line-to column))))
22751 ;; Align node property. Also preserve current column.
22752 (when (eq type 'node-property)
22753 (let ((column (current-column)))
22754 (org--align-node-property)
22755 (org-move-to-column column)))))))))
22757 (defun org-indent-region (start end)
22758 "Indent each non-blank line in the region.
22759 Called from a program, START and END specify the region to
22760 indent. The function will not indent contents of example blocks,
22761 verse blocks and export blocks as leading white spaces are
22762 assumed to be significant there."
22763 (interactive "r")
22764 (save-excursion
22765 (goto-char start)
22766 (skip-chars-forward " \r\t\n")
22767 (unless (eobp) (beginning-of-line))
22768 (let ((indent-to
22769 (lambda (ind pos)
22770 ;; Set IND as indentation for all lines between point and
22771 ;; POS or END, whichever comes first. Blank lines are
22772 ;; ignored. Leave point after POS once done.
22773 (let ((limit (copy-marker (min end pos))))
22774 (while (< (point) limit)
22775 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22776 (forward-line))
22777 (set-marker limit nil))))
22778 (end (copy-marker end)))
22779 (while (< (point) end)
22780 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22781 (let* ((element (org-element-at-point))
22782 (type (org-element-type element))
22783 (element-end (copy-marker (org-element-property :end element)))
22784 (ind (org--get-expected-indentation element nil)))
22785 (cond
22786 ((or (memq type '(paragraph table table-row))
22787 (not (or (org-element-property :contents-begin element)
22788 (memq type
22789 '(example-block export-block src-block)))))
22790 ;; Elements here are indented as a single block. Also
22791 ;; align node properties.
22792 (when (eq type 'node-property)
22793 (org--align-node-property)
22794 (beginning-of-line))
22795 (funcall indent-to ind element-end))
22797 ;; Elements in this category consist of three parts:
22798 ;; before the contents, the contents, and after the
22799 ;; contents. The contents are treated specially,
22800 ;; according to the element type, or not indented at
22801 ;; all. Other parts are indented as a single block.
22802 (let* ((post (copy-marker
22803 (org-element-property :post-affiliated element)))
22804 (cbeg
22805 (copy-marker
22806 (cond
22807 ((not (org-element-property :contents-begin element))
22808 ;; Fake contents for source blocks.
22809 (org-with-wide-buffer
22810 (goto-char post)
22811 (forward-line)
22812 (point)))
22813 ((memq type '(footnote-definition item plain-list))
22814 ;; Contents in these elements could start on
22815 ;; the same line as the beginning of the
22816 ;; element. Make sure we start indenting
22817 ;; from the second line.
22818 (org-with-wide-buffer
22819 (goto-char post)
22820 (end-of-line)
22821 (skip-chars-forward " \r\t\n")
22822 (if (eobp) (point) (line-beginning-position))))
22823 (t (org-element-property :contents-begin element)))))
22824 (cend (copy-marker
22825 (or (org-element-property :contents-end element)
22826 ;; Fake contents for source blocks.
22827 (org-with-wide-buffer
22828 (goto-char element-end)
22829 (skip-chars-backward " \r\t\n")
22830 (line-beginning-position)))
22831 t)))
22832 ;; Do not change items indentation individually as it
22833 ;; might break the list as a whole. On the other
22834 ;; hand, when at a plain list, indent it as a whole.
22835 (cond ((eq type 'plain-list)
22836 (let ((offset (- ind (org-get-indentation))))
22837 (unless (zerop offset)
22838 (indent-rigidly (org-element-property :begin element)
22839 (org-element-property :end element)
22840 offset))
22841 (goto-char cbeg)))
22842 ((eq type 'item) (goto-char cbeg))
22843 (t (funcall indent-to ind cbeg)))
22844 (when (< (point) end)
22845 (case type
22846 ((example-block export-block verse-block))
22847 (src-block
22848 ;; In a source block, indent source code
22849 ;; according to language major mode, but only if
22850 ;; `org-src-tab-acts-natively' is non-nil.
22851 (when (and (< (point) end) org-src-tab-acts-natively)
22852 (ignore-errors
22853 (org-babel-do-in-edit-buffer
22854 (indent-region (point-min) (point-max))))))
22855 (t (org-indent-region (point) (min cend end))))
22856 (goto-char (min cend end))
22857 (when (< (point) end) (funcall indent-to ind element-end)))
22858 (set-marker post nil)
22859 (set-marker cbeg nil)
22860 (set-marker cend nil))))
22861 (set-marker element-end nil))))
22862 (set-marker end nil))))
22864 (defun org-indent-drawer ()
22865 "Indent the drawer at point."
22866 (interactive)
22867 (unless (save-excursion
22868 (beginning-of-line)
22869 (org-looking-at-p org-drawer-regexp))
22870 (user-error "Not at a drawer"))
22871 (let ((element (org-element-at-point)))
22872 (unless (memq (org-element-type element) '(drawer property-drawer))
22873 (user-error "Not at a drawer"))
22874 (org-with-wide-buffer
22875 (org-indent-region (org-element-property :begin element)
22876 (org-element-property :end element))))
22877 (message "Drawer at point indented"))
22879 (defun org-indent-block ()
22880 "Indent the block at point."
22881 (interactive)
22882 (unless (save-excursion
22883 (beginning-of-line)
22884 (let ((case-fold-search t))
22885 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22886 (user-error "Not at a block"))
22887 (let ((element (org-element-at-point)))
22888 (unless (memq (org-element-type element)
22889 '(comment-block center-block dynamic-block example-block
22890 export-block quote-block special-block
22891 src-block verse-block))
22892 (user-error "Not at a block"))
22893 (org-with-wide-buffer
22894 (org-indent-region (org-element-property :begin element)
22895 (org-element-property :end element))))
22896 (message "Block at point indented"))
22899 ;;; Filling
22901 ;; We use our own fill-paragraph and auto-fill functions.
22903 ;; `org-fill-paragraph' relies on adaptive filling and context
22904 ;; checking. Appropriate `fill-prefix' is computed with
22905 ;; `org-adaptive-fill-function'.
22907 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22908 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22909 ;; `org-adaptive-fill-function' value. Internally,
22910 ;; `org-comment-line-break-function' breaks the line.
22912 ;; `org-setup-filling' installs filling and auto-filling related
22913 ;; variables during `org-mode' initialization.
22915 (defvar org-element-paragraph-separate) ; org-element.el
22916 (defun org-setup-filling ()
22917 (require 'org-element)
22918 ;; Prevent auto-fill from inserting unwanted new items.
22919 (when (boundp 'fill-nobreak-predicate)
22920 (org-set-local
22921 'fill-nobreak-predicate
22922 (org-uniquify
22923 (append fill-nobreak-predicate
22924 '(org-fill-line-break-nobreak-p
22925 org-fill-paragraph-with-timestamp-nobreak-p)))))
22926 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22927 (org-set-local 'paragraph-start paragraph-ending)
22928 (org-set-local 'paragraph-separate paragraph-ending))
22929 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22930 (org-set-local 'auto-fill-inhibit-regexp nil)
22931 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22932 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22933 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22935 (defun org-fill-line-break-nobreak-p ()
22936 "Non-nil when a new line at point would create an Org line break."
22937 (save-excursion
22938 (skip-chars-backward "[ \t]")
22939 (skip-chars-backward "\\\\")
22940 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22942 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22943 "Non-nil when a new line at point would split a timestamp."
22944 (and (org-at-timestamp-p t)
22945 (not (looking-at org-ts-regexp-both))))
22947 (declare-function message-in-body-p "message" ())
22948 (defvar orgtbl-line-start-regexp) ; From org-table.el
22949 (defun org-adaptive-fill-function ()
22950 "Compute a fill prefix for the current line.
22951 Return fill prefix, as a string, or nil if current line isn't
22952 meant to be filled. For convenience, if `adaptive-fill-regexp'
22953 matches in paragraphs or comments, use it."
22954 (catch 'exit
22955 (when (derived-mode-p 'message-mode)
22956 (save-excursion
22957 (beginning-of-line)
22958 (cond ((or (not (message-in-body-p))
22959 (looking-at orgtbl-line-start-regexp))
22960 (throw 'exit nil))
22961 ((looking-at message-cite-prefix-regexp)
22962 (throw 'exit (match-string-no-properties 0)))
22963 ((looking-at org-outline-regexp)
22964 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22965 (org-with-wide-buffer
22966 (unless (org-at-heading-p)
22967 (let* ((p (line-beginning-position))
22968 (element (save-excursion
22969 (beginning-of-line)
22970 (org-element-at-point)))
22971 (type (org-element-type element))
22972 (post-affiliated (org-element-property :post-affiliated element)))
22973 (unless (< p post-affiliated)
22974 (case type
22975 (comment
22976 (save-excursion
22977 (beginning-of-line)
22978 (looking-at "[ \t]*")
22979 (concat (match-string 0) "# ")))
22980 (footnote-definition "")
22981 ((item plain-list)
22982 (make-string (org-list-item-body-column post-affiliated) ?\s))
22983 (paragraph
22984 ;; Fill prefix is usually the same as the current line,
22985 ;; unless the paragraph is at the beginning of an item.
22986 (let ((parent (org-element-property :parent element)))
22987 (save-excursion
22988 (beginning-of-line)
22989 (cond ((eq (org-element-type parent) 'item)
22990 (make-string (org-list-item-body-column
22991 (org-element-property :begin parent))
22992 ?\s))
22993 ((and adaptive-fill-regexp
22994 ;; Locally disable
22995 ;; `adaptive-fill-function' to let
22996 ;; `fill-context-prefix' handle
22997 ;; `adaptive-fill-regexp' variable.
22998 (let (adaptive-fill-function)
22999 (fill-context-prefix
23000 post-affiliated
23001 (org-element-property :end element)))))
23002 ((looking-at "[ \t]+") (match-string 0))
23003 (t "")))))
23004 (comment-block
23005 ;; Only fill contents if P is within block boundaries.
23006 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23007 (forward-line)
23008 (point)))
23009 (cend (save-excursion
23010 (goto-char (org-element-property :end element))
23011 (skip-chars-backward " \r\t\n")
23012 (line-beginning-position))))
23013 (when (and (>= p cbeg) (< p cend))
23014 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23015 (match-string 0)
23016 "")))))))))))
23018 (declare-function message-goto-body "message" ())
23019 (defvar message-cite-prefix-regexp) ; From message.el
23020 (defun org-fill-paragraph (&optional justify)
23021 "Fill element at point, when applicable.
23023 This function only applies to comment blocks, comments, example
23024 blocks and paragraphs. Also, as a special case, re-align table
23025 when point is at one.
23027 If JUSTIFY is non-nil (interactively, with prefix argument),
23028 justify as well. If `sentence-end-double-space' is non-nil, then
23029 period followed by one space does not end a sentence, so don't
23030 break a line there. The variable `fill-column' controls the
23031 width for filling.
23033 For convenience, when point is at a plain list, an item or
23034 a footnote definition, try to fill the first paragraph within."
23035 (interactive)
23036 (if (and (derived-mode-p 'message-mode)
23037 (or (not (message-in-body-p))
23038 (save-excursion (move-beginning-of-line 1)
23039 (looking-at message-cite-prefix-regexp))))
23040 ;; First ensure filling is correct in message-mode.
23041 (let ((fill-paragraph-function
23042 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23043 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23044 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23045 (paragraph-separate
23046 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23047 (fill-paragraph nil))
23048 (with-syntax-table org-mode-transpose-word-syntax-table
23049 ;; Move to end of line in order to get the first paragraph
23050 ;; within a plain list or a footnote definition.
23051 (let ((element (save-excursion
23052 (end-of-line)
23053 (or (ignore-errors (org-element-at-point))
23054 (user-error "An element cannot be parsed line %d"
23055 (line-number-at-pos (point)))))))
23056 ;; First check if point is in a blank line at the beginning of
23057 ;; the buffer. In that case, ignore filling.
23058 (case (org-element-type element)
23059 ;; Use major mode filling function is src blocks.
23060 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23061 ;; Align Org tables, leave table.el tables as-is.
23062 (table-row (org-table-align) t)
23063 (table
23064 (when (eq (org-element-property :type element) 'org)
23065 (save-excursion
23066 (goto-char (org-element-property :post-affiliated element))
23067 (org-table-align)))
23069 (paragraph
23070 ;; Paragraphs may contain `line-break' type objects.
23071 (let ((beg (max (point-min)
23072 (org-element-property :contents-begin element)))
23073 (end (min (point-max)
23074 (org-element-property :contents-end element))))
23075 ;; Do nothing if point is at an affiliated keyword.
23076 (if (< (line-end-position) beg) t
23077 (when (derived-mode-p 'message-mode)
23078 ;; In `message-mode', do not fill following citation
23079 ;; in current paragraph nor text before message body.
23080 (let ((body-start (save-excursion (message-goto-body))))
23081 (when body-start (setq beg (max body-start beg))))
23082 (when (save-excursion
23083 (re-search-forward
23084 (concat "^" message-cite-prefix-regexp) end t))
23085 (setq end (match-beginning 0))))
23086 ;; Fill paragraph, taking line breaks into account.
23087 (save-excursion
23088 (goto-char beg)
23089 (let ((cuts (list beg)))
23090 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23091 (when (eq 'line-break
23092 (org-element-type
23093 (save-excursion (backward-char)
23094 (org-element-context))))
23095 (push (point) cuts)))
23096 (dolist (c (delq end cuts))
23097 (fill-region-as-paragraph c end justify)
23098 (setq end c))))
23099 t)))
23100 ;; Contents of `comment-block' type elements should be
23101 ;; filled as plain text, but only if point is within block
23102 ;; markers.
23103 (comment-block
23104 (let* ((case-fold-search t)
23105 (beg (save-excursion
23106 (goto-char (org-element-property :begin element))
23107 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23108 (forward-line)
23109 (point)))
23110 (end (save-excursion
23111 (goto-char (org-element-property :end element))
23112 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23113 (line-beginning-position))))
23114 (if (or (< (point) beg) (> (point) end)) t
23115 (fill-region-as-paragraph
23116 (save-excursion (end-of-line)
23117 (re-search-backward "^[ \t]*$" beg 'move)
23118 (line-beginning-position))
23119 (save-excursion (beginning-of-line)
23120 (re-search-forward "^[ \t]*$" end 'move)
23121 (line-beginning-position))
23122 justify))))
23123 ;; Fill comments.
23124 (comment
23125 (let ((begin (org-element-property :post-affiliated element))
23126 (end (org-element-property :end element)))
23127 (when (and (>= (point) begin) (<= (point) end))
23128 (let ((begin (save-excursion
23129 (end-of-line)
23130 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23131 (progn (forward-line) (point))
23132 begin)))
23133 (end (save-excursion
23134 (end-of-line)
23135 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23136 (1- (line-beginning-position))
23137 (skip-chars-backward " \r\t\n")
23138 (line-end-position)))))
23139 ;; Do not fill comments when at a blank line.
23140 (when (> end begin)
23141 (let ((fill-prefix
23142 (save-excursion
23143 (beginning-of-line)
23144 (looking-at "[ \t]*#")
23145 (let ((comment-prefix (match-string 0)))
23146 (goto-char (match-end 0))
23147 (if (looking-at adaptive-fill-regexp)
23148 (concat comment-prefix (match-string 0))
23149 (concat comment-prefix " "))))))
23150 (save-excursion
23151 (fill-region-as-paragraph begin end justify))))))
23153 ;; Ignore every other element.
23154 (otherwise t))))))
23156 (defun org-auto-fill-function ()
23157 "Auto-fill function."
23158 ;; Check if auto-filling is meaningful.
23159 (let ((fc (current-fill-column)))
23160 (when (and fc (> (current-column) fc))
23161 (let* ((fill-prefix (org-adaptive-fill-function))
23162 ;; Enforce empty fill prefix, if required. Otherwise, it
23163 ;; will be computed again.
23164 (adaptive-fill-mode (not (equal fill-prefix ""))))
23165 (when fill-prefix (do-auto-fill))))))
23167 (defun org-comment-line-break-function (&optional soft)
23168 "Break line at point and indent, continuing comment if within one.
23169 The inserted newline is marked hard if variable
23170 `use-hard-newlines' is true, unless optional argument SOFT is
23171 non-nil."
23172 (if soft (insert-and-inherit ?\n) (newline 1))
23173 (save-excursion (forward-char -1) (delete-horizontal-space))
23174 (delete-horizontal-space)
23175 (indent-to-left-margin)
23176 (insert-before-markers-and-inherit fill-prefix))
23179 ;;; Fixed Width Areas
23181 (defun org-toggle-fixed-width ()
23182 "Toggle fixed-width markup.
23184 Add or remove fixed-width markup on current line, whenever it
23185 makes sense. Return an error otherwise.
23187 If a region is active and if it contains only fixed-width areas
23188 or blank lines, remove all fixed-width markup in it. If the
23189 region contains anything else, convert all non-fixed-width lines
23190 to fixed-width ones.
23192 Blank lines at the end of the region are ignored unless the
23193 region only contains such lines."
23194 (interactive)
23195 (if (not (org-region-active-p))
23196 ;; No region:
23198 ;; Remove fixed width marker only in a fixed-with element.
23200 ;; Add fixed width maker in paragraphs, in blank lines after
23201 ;; elements or at the beginning of a headline or an inlinetask,
23202 ;; and before any one-line elements (e.g., a clock).
23203 (progn
23204 (beginning-of-line)
23205 (let* ((element (org-element-at-point))
23206 (type (org-element-type element)))
23207 (cond
23208 ((and (eq type 'fixed-width)
23209 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23210 (replace-match
23211 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23212 ((and (memq type '(babel-call clock comment diary-sexp headline
23213 horizontal-rule keyword paragraph
23214 planning))
23215 (<= (org-element-property :post-affiliated element) (point)))
23216 (skip-chars-forward " \t")
23217 (insert ": "))
23218 ((and (org-looking-at-p "[ \t]*$")
23219 (or (eq type 'inlinetask)
23220 (save-excursion
23221 (skip-chars-forward " \r\t\n")
23222 (<= (org-element-property :end element) (point)))))
23223 (delete-region (point) (line-end-position))
23224 (org-indent-line)
23225 (insert ": "))
23226 (t (user-error "Cannot insert a fixed-width line here")))))
23227 ;; Region active.
23228 (let* ((begin (save-excursion
23229 (goto-char (region-beginning))
23230 (line-beginning-position)))
23231 (end (copy-marker
23232 (save-excursion
23233 (goto-char (region-end))
23234 (unless (eolp) (beginning-of-line))
23235 (if (save-excursion (re-search-backward "\\S-" begin t))
23236 (progn (skip-chars-backward " \r\t\n") (point))
23237 (point)))))
23238 (all-fixed-width-p
23239 (catch 'not-all-p
23240 (save-excursion
23241 (goto-char begin)
23242 (skip-chars-forward " \r\t\n")
23243 (when (eobp) (throw 'not-all-p nil))
23244 (while (< (point) end)
23245 (let ((element (org-element-at-point)))
23246 (if (eq (org-element-type element) 'fixed-width)
23247 (goto-char (org-element-property :end element))
23248 (throw 'not-all-p nil))))
23249 t))))
23250 (if all-fixed-width-p
23251 (save-excursion
23252 (goto-char begin)
23253 (while (< (point) end)
23254 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23255 (replace-match
23256 "" nil nil nil
23257 (if (= (line-end-position) (match-end 0)) 0 1)))
23258 (forward-line)))
23259 (let ((min-ind (point-max)))
23260 ;; Find minimum indentation across all lines.
23261 (save-excursion
23262 (goto-char begin)
23263 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23264 (setq min-ind 0)
23265 (catch 'zerop
23266 (while (< (point) end)
23267 (unless (org-looking-at-p "[ \t]*$")
23268 (let ((ind (org-get-indentation)))
23269 (setq min-ind (min min-ind ind))
23270 (when (zerop ind) (throw 'zerop t))))
23271 (forward-line)))))
23272 ;; Loop over all lines and add fixed-width markup everywhere
23273 ;; but in fixed-width lines.
23274 (save-excursion
23275 (goto-char begin)
23276 (while (< (point) end)
23277 (cond
23278 ((org-at-heading-p)
23279 (insert ": ")
23280 (forward-line)
23281 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23282 (insert ":")
23283 (forward-line)))
23284 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23285 (let* ((element (org-element-at-point))
23286 (element-end (org-element-property :end element)))
23287 (if (eq (org-element-type element) 'fixed-width)
23288 (progn (goto-char element-end)
23289 (skip-chars-backward " \r\t\n")
23290 (forward-line))
23291 (let ((limit (min end element-end)))
23292 (while (< (point) limit)
23293 (org-move-to-column min-ind t)
23294 (insert ": ")
23295 (forward-line))))))
23297 (org-move-to-column min-ind t)
23298 (insert ": ")
23299 (forward-line)))))))
23300 (set-marker end nil))))
23303 ;;; Comments
23305 ;; Org comments syntax is quite complex. It requires the entire line
23306 ;; to be just a comment. Also, even with the right syntax at the
23307 ;; beginning of line, some some elements (i.e. verse-block or
23308 ;; example-block) don't accept comments. Usual Emacs comment commands
23309 ;; cannot cope with those requirements. Therefore, Org replaces them.
23311 ;; Org still relies on `comment-dwim', but cannot trust
23312 ;; `comment-only-p'. So, `comment-region-function' and
23313 ;; `uncomment-region-function' both point
23314 ;; to`org-comment-or-uncomment-region'. Eventually,
23315 ;; `org-insert-comment' takes care of insertion of comments at the
23316 ;; beginning of line.
23318 ;; `org-setup-comments-handling' install comments related variables
23319 ;; during `org-mode' initialization.
23321 (defun org-setup-comments-handling ()
23322 (interactive)
23323 (org-set-local 'comment-use-syntax nil)
23324 (org-set-local 'comment-start "# ")
23325 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23326 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23327 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23328 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23330 (defun org-insert-comment ()
23331 "Insert an empty comment above current line.
23332 If the line is empty, insert comment at its beginning. When
23333 point is within a source block, comment according to the related
23334 major mode."
23335 (if (let ((element (org-element-at-point)))
23336 (and (eq (org-element-type element) 'src-block)
23337 (< (save-excursion
23338 (goto-char (org-element-property :post-affiliated element))
23339 (line-end-position))
23340 (point))
23341 (> (save-excursion
23342 (goto-char (org-element-property :end element))
23343 (skip-chars-backward " \r\t\n")
23344 (line-beginning-position))
23345 (point))))
23346 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23347 (beginning-of-line)
23348 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23349 (open-line 1))
23350 (org-indent-line)
23351 (insert "# ")))
23353 (defvar comment-empty-lines) ; From newcomment.el.
23354 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23355 "Comment or uncomment each non-blank line in the region.
23356 Uncomment each non-blank line between BEG and END if it only
23357 contains commented lines. Otherwise, comment them. If region is
23358 strictly within a source block, use appropriate comment syntax."
23359 (if (let ((element (org-element-at-point)))
23360 (and (eq (org-element-type element) 'src-block)
23361 (< (save-excursion
23362 (goto-char (org-element-property :post-affiliated element))
23363 (line-end-position))
23364 beg)
23365 (>= (save-excursion
23366 (goto-char (org-element-property :end element))
23367 (skip-chars-backward " \r\t\n")
23368 (line-beginning-position))
23369 end)))
23370 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23371 (save-restriction
23372 ;; Restrict region
23373 (narrow-to-region (save-excursion (goto-char beg)
23374 (skip-chars-forward " \r\t\n" end)
23375 (line-beginning-position))
23376 (save-excursion (goto-char end)
23377 (skip-chars-backward " \r\t\n" beg)
23378 (line-end-position)))
23379 (let ((uncommentp
23380 ;; UNCOMMENTP is non-nil when every non blank line between
23381 ;; BEG and END is a comment.
23382 (save-excursion
23383 (goto-char (point-min))
23384 (while (and (not (eobp))
23385 (let ((element (org-element-at-point)))
23386 (and (eq (org-element-type element) 'comment)
23387 (goto-char (min (point-max)
23388 (org-element-property
23389 :end element)))))))
23390 (eobp))))
23391 (if uncommentp
23392 ;; Only blank lines and comments in region: uncomment it.
23393 (save-excursion
23394 (goto-char (point-min))
23395 (while (not (eobp))
23396 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23397 (replace-match "" nil nil nil 1))
23398 (forward-line)))
23399 ;; Comment each line in region.
23400 (let ((min-indent (point-max)))
23401 ;; First find the minimum indentation across all lines.
23402 (save-excursion
23403 (goto-char (point-min))
23404 (while (and (not (eobp)) (not (zerop min-indent)))
23405 (unless (looking-at "[ \t]*$")
23406 (setq min-indent (min min-indent (current-indentation))))
23407 (forward-line)))
23408 ;; Then loop over all lines.
23409 (save-excursion
23410 (goto-char (point-min))
23411 (while (not (eobp))
23412 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23413 ;; Don't get fooled by invisible text (e.g. link path)
23414 ;; when moving to column MIN-INDENT.
23415 (let ((buffer-invisibility-spec nil))
23416 (org-move-to-column min-indent t))
23417 (insert comment-start))
23418 (forward-line)))))))))
23420 (defun org-comment-dwim (arg)
23421 "Call `comment-dwim' within a source edit buffer if needed."
23422 (interactive "*P")
23423 (if (org-in-src-block-p)
23424 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23425 (call-interactively 'comment-dwim)))
23428 ;;; Timestamps API
23430 ;; This section contains tools to operate on timestamp objects, as
23431 ;; returned by, e.g. `org-element-context'.
23433 (defun org-timestamp-has-time-p (timestamp)
23434 "Non-nil when TIMESTAMP has a time specified."
23435 (org-element-property :hour-start timestamp))
23437 (defun org-timestamp-format (timestamp format &optional end utc)
23438 "Format a TIMESTAMP element into a string.
23440 FORMAT is a format specifier to be passed to
23441 `format-time-string'.
23443 When optional argument END is non-nil, use end of date-range or
23444 time-range, if possible.
23446 When optional argument UTC is non-nil, time will be expressed as
23447 Universal Time."
23448 (format-time-string
23449 format
23450 (apply 'encode-time
23451 (cons 0
23452 (mapcar
23453 (lambda (prop) (or (org-element-property prop timestamp) 0))
23454 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23455 '(:minute-start :hour-start :day-start :month-start
23456 :year-start)))))
23457 utc))
23459 (defun org-timestamp-split-range (timestamp &optional end)
23460 "Extract a timestamp object from a date or time range.
23462 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23463 the end of the range. Otherwise, extract its start.
23465 Return a new timestamp object."
23466 (let ((type (org-element-property :type timestamp)))
23467 (if (memq type '(active inactive diary)) timestamp
23468 (let ((split-ts (org-element-copy timestamp)))
23469 ;; Set new type.
23470 (org-element-put-property
23471 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23472 ;; Copy start properties over end properties if END is
23473 ;; non-nil. Otherwise, copy end properties over `start' ones.
23474 (let ((p-alist '((:minute-start . :minute-end)
23475 (:hour-start . :hour-end)
23476 (:day-start . :day-end)
23477 (:month-start . :month-end)
23478 (:year-start . :year-end))))
23479 (dolist (p-cell p-alist)
23480 (org-element-put-property
23481 split-ts
23482 (funcall (if end #'car #'cdr) p-cell)
23483 (org-element-property
23484 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23485 ;; Eventually refresh `:raw-value'.
23486 (org-element-put-property split-ts :raw-value nil)
23487 (org-element-put-property
23488 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23490 (defun org-timestamp-translate (timestamp &optional boundary)
23491 "Translate TIMESTAMP object to custom format.
23493 Format string is defined in `org-time-stamp-custom-formats',
23494 which see.
23496 When optional argument BOUNDARY is non-nil, it is either the
23497 symbol `start' or `end'. In this case, only translate the
23498 starting or ending part of TIMESTAMP if it is a date or time
23499 range. Otherwise, translate both parts.
23501 Return timestamp as-is if `org-display-custom-times' is nil or if
23502 it has a `diary' type."
23503 (let ((type (org-element-property :type timestamp)))
23504 (if (or (not org-display-custom-times) (eq type 'diary))
23505 (org-element-interpret-data timestamp)
23506 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23507 org-time-stamp-custom-formats)))
23508 (if (and (not boundary) (memq type '(active-range inactive-range)))
23509 (concat (org-timestamp-format timestamp fmt)
23510 "--"
23511 (org-timestamp-format timestamp fmt t))
23512 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23516 ;;; Other stuff.
23518 (defun org-reftex-citation ()
23519 "Use reftex-citation to insert a citation into the buffer.
23520 This looks for a line like
23522 #+BIBLIOGRAPHY: foo plain option:-d
23524 and derives from it that foo.bib is the bibliography file relevant
23525 for this document. It then installs the necessary environment for RefTeX
23526 to work in this buffer and calls `reftex-citation' to insert a citation
23527 into the buffer.
23529 Export of such citations to both LaTeX and HTML is handled by the contributed
23530 package ox-bibtex by Taru Karttunen."
23531 (interactive)
23532 (let ((reftex-docstruct-symbol 'rds)
23533 (reftex-cite-format "\\cite{%l}")
23534 rds bib)
23535 (save-excursion
23536 (save-restriction
23537 (widen)
23538 (let ((case-fold-search t)
23539 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23540 (if (not (save-excursion
23541 (or (re-search-forward re nil t)
23542 (re-search-backward re nil t))))
23543 (user-error "No bibliography defined in file")
23544 (setq bib (concat (match-string 1) ".bib")
23545 rds (list (list 'bib bib)))))))
23546 (call-interactively 'reftex-citation)))
23548 ;;;; Functions extending outline functionality
23550 (defun org-beginning-of-line (&optional arg)
23551 "Go to the beginning of the current line. If that is invisible, continue
23552 to a visible line beginning. This makes the function of C-a more intuitive.
23553 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23554 first attempt, and only move to after the tags when the cursor is already
23555 beyond the end of the headline."
23556 (interactive "P")
23557 (let ((pos (point))
23558 (special (if (consp org-special-ctrl-a/e)
23559 (car org-special-ctrl-a/e)
23560 org-special-ctrl-a/e))
23561 deactivate-mark refpos)
23562 (if (org-bound-and-true-p visual-line-mode)
23563 (beginning-of-visual-line 1)
23564 (beginning-of-line 1))
23565 (if (and arg (fboundp 'move-beginning-of-line))
23566 (call-interactively 'move-beginning-of-line)
23567 (if (bobp)
23569 (backward-char 1)
23570 (if (org-truely-invisible-p)
23571 (while (and (not (bobp)) (org-truely-invisible-p))
23572 (backward-char 1)
23573 (beginning-of-line 1))
23574 (forward-char 1))))
23575 (when special
23576 (cond
23577 ((and (looking-at org-complex-heading-regexp)
23578 (= (char-after (match-end 1)) ?\ ))
23579 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23580 (point-at-eol)))
23581 (goto-char
23582 (if (eq special t)
23583 (cond ((> pos refpos) refpos)
23584 ((= pos (point)) refpos)
23585 (t (point)))
23586 (cond ((> pos (point)) (point))
23587 ((not (eq last-command this-command)) (point))
23588 (t refpos)))))
23589 ((org-at-item-p)
23590 ;; Being at an item and not looking at an the item means point
23591 ;; was previously moved to beginning of a visual line, which
23592 ;; doesn't contain the item. Therefore, do nothing special,
23593 ;; just stay here.
23594 (when (looking-at org-list-full-item-re)
23595 ;; Set special position at first white space character after
23596 ;; bullet, and check-box, if any.
23597 (let ((after-bullet
23598 (let ((box (match-end 3)))
23599 (if (not box) (match-end 1)
23600 (let ((after (char-after box)))
23601 (if (and after (= after ? )) (1+ box) box))))))
23602 ;; Special case: Move point to special position when
23603 ;; currently after it or at beginning of line.
23604 (if (eq special t)
23605 (when (or (> pos after-bullet) (= (point) pos))
23606 (goto-char after-bullet))
23607 ;; Reversed case: Move point to special position when
23608 ;; point was already at beginning of line and command is
23609 ;; repeated.
23610 (when (and (= (point) pos) (eq last-command this-command))
23611 (goto-char after-bullet))))))))
23612 (org-no-warnings
23613 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23614 (setq disable-point-adjustment
23615 (or (not (invisible-p (point)))
23616 (not (invisible-p (max (point-min) (1- (point))))))))
23618 (defun org-end-of-line (&optional arg)
23619 "Go to the end of the line.
23620 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23621 tags on the first attempt, and only move to after the tags when
23622 the cursor is already beyond the end of the headline."
23623 (interactive "P")
23624 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23625 org-special-ctrl-a/e))
23626 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23627 'end-of-visual-line)
23628 ((fboundp 'move-end-of-line) 'move-end-of-line)
23629 (t 'end-of-line)))
23630 deactivate-mark)
23631 (if (or (not special) arg) (call-interactively move-fun)
23632 (let* ((element (save-excursion (beginning-of-line)
23633 (org-element-at-point)))
23634 (type (org-element-type element)))
23635 (cond
23636 ((memq type '(headline inlinetask))
23637 (let ((pos (point)))
23638 (beginning-of-line 1)
23639 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23640 (if (eq special t)
23641 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23642 (goto-char (match-beginning 1))
23643 (goto-char (match-end 0)))
23644 (if (or (< pos (match-end 0))
23645 (not (eq this-command last-command)))
23646 (goto-char (match-end 0))
23647 (goto-char (match-beginning 1))))
23648 (call-interactively move-fun))))
23649 ((outline-invisible-p (line-end-position))
23650 ;; If element is hidden, `move-end-of-line' would put point
23651 ;; after it. Use `end-of-line' to stay on current line.
23652 (call-interactively 'end-of-line))
23653 (t (call-interactively move-fun)))))
23654 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23655 (setq disable-point-adjustment
23656 (or (not (invisible-p (point)))
23657 (not (invisible-p (max (point-min) (1- (point))))))))
23659 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23660 (define-key org-mode-map "\C-e" 'org-end-of-line)
23662 (defun org-backward-sentence (&optional arg)
23663 "Go to beginning of sentence, or beginning of table field.
23664 This will call `backward-sentence' or `org-table-beginning-of-field',
23665 depending on context."
23666 (interactive "P")
23667 (cond
23668 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23669 (t (call-interactively 'backward-sentence))))
23671 (defun org-forward-sentence (&optional arg)
23672 "Go to end of sentence, or end of table field.
23673 This will call `forward-sentence' or `org-table-end-of-field',
23674 depending on context."
23675 (interactive "P")
23676 (cond
23677 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23678 (t (call-interactively 'forward-sentence))))
23680 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23681 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23683 (defun org-kill-line (&optional arg)
23684 "Kill line, to tags or end of line."
23685 (interactive "P")
23686 (cond
23687 ((or (not org-special-ctrl-k)
23688 (bolp)
23689 (not (org-at-heading-p)))
23690 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23691 org-ctrl-k-protect-subtree)
23692 (if (or (eq org-ctrl-k-protect-subtree 'error)
23693 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23694 (user-error "C-k aborted as it would kill a hidden subtree")))
23695 (call-interactively
23696 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23697 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23698 (kill-region (point) (match-beginning 1))
23699 (org-set-tags nil t))
23700 (t (kill-region (point) (point-at-eol)))))
23702 (define-key org-mode-map "\C-k" 'org-kill-line)
23704 (defun org-yank (&optional arg)
23705 "Yank. If the kill is a subtree, treat it specially.
23706 This command will look at the current kill and check if is a single
23707 subtree, or a series of subtrees[1]. If it passes the test, and if the
23708 cursor is at the beginning of a line or after the stars of a currently
23709 empty headline, then the yank is handled specially. How exactly depends
23710 on the value of the following variables, both set by default.
23712 `org-yank-folded-subtrees'
23713 When set, the subtree(s) will be folded after insertion, but only
23714 if doing so would now swallow text after the yanked text.
23716 `org-yank-adjusted-subtrees'
23717 When set, the subtree will be promoted or demoted in order to
23718 fit into the local outline tree structure, which means that the
23719 level will be adjusted so that it becomes the smaller one of the
23720 two *visible* surrounding headings.
23722 Any prefix to this command will cause `yank' to be called directly with
23723 no special treatment. In particular, a simple \\[universal-argument] prefix \
23724 will just
23725 plainly yank the text as it is.
23727 \[1] The test checks if the first non-white line is a heading
23728 and if there are no other headings with fewer stars."
23729 (interactive "P")
23730 (org-yank-generic 'yank arg))
23732 (defun org-yank-generic (command arg)
23733 "Perform some yank-like command.
23735 This function implements the behavior described in the `org-yank'
23736 documentation. However, it has been generalized to work for any
23737 interactive command with similar behavior."
23739 ;; pretend to be command COMMAND
23740 (setq this-command command)
23742 (if arg
23743 (call-interactively command)
23745 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23746 (and (org-kill-is-subtree-p)
23747 (or (bolp)
23748 (and (looking-at "[ \t]*$")
23749 (string-match
23750 "\\`\\*+\\'"
23751 (buffer-substring (point-at-bol) (point)))))))
23752 swallowp)
23753 (cond
23754 ((and subtreep org-yank-folded-subtrees)
23755 (let ((beg (point))
23756 end)
23757 (if (and subtreep org-yank-adjusted-subtrees)
23758 (org-paste-subtree nil nil 'for-yank)
23759 (call-interactively command))
23761 (setq end (point))
23762 (goto-char beg)
23763 (when (and (bolp) subtreep
23764 (not (setq swallowp
23765 (org-yank-folding-would-swallow-text beg end))))
23766 (org-with-limited-levels
23767 (or (looking-at org-outline-regexp)
23768 (re-search-forward org-outline-regexp-bol end t))
23769 (while (and (< (point) end) (looking-at org-outline-regexp))
23770 (hide-subtree)
23771 (org-cycle-show-empty-lines 'folded)
23772 (condition-case nil
23773 (outline-forward-same-level 1)
23774 (error (goto-char end))))))
23775 (when swallowp
23776 (message
23777 "Inserted text not folded because that would swallow text"))
23779 (goto-char end)
23780 (skip-chars-forward " \t\n\r")
23781 (beginning-of-line 1)
23782 (push-mark beg 'nomsg)))
23783 ((and subtreep org-yank-adjusted-subtrees)
23784 (let ((beg (point-at-bol)))
23785 (org-paste-subtree nil nil 'for-yank)
23786 (push-mark beg 'nomsg)))
23788 (call-interactively command))))))
23790 (defun org-yank-folding-would-swallow-text (beg end)
23791 "Would hide-subtree at BEG swallow any text after END?"
23792 (let (level)
23793 (org-with-limited-levels
23794 (save-excursion
23795 (goto-char beg)
23796 (when (or (looking-at org-outline-regexp)
23797 (re-search-forward org-outline-regexp-bol end t))
23798 (setq level (org-outline-level)))
23799 (goto-char end)
23800 (skip-chars-forward " \t\r\n\v\f")
23801 (if (or (eobp)
23802 (and (bolp) (looking-at org-outline-regexp)
23803 (<= (org-outline-level) level)))
23804 nil ; Nothing would be swallowed
23805 t))))) ; something would swallow
23807 (define-key org-mode-map "\C-y" 'org-yank)
23809 (defun org-truely-invisible-p ()
23810 "Check if point is at a character currently not visible.
23811 This version does not only check the character property, but also
23812 `visible-mode'."
23813 ;; Early versions of noutline don't have `outline-invisible-p'.
23814 (if (org-bound-and-true-p visible-mode)
23816 (outline-invisible-p)))
23818 (defun org-invisible-p2 ()
23819 "Check if point is at a character currently not visible."
23820 (save-excursion
23821 (if (and (eolp) (not (bobp))) (backward-char 1))
23822 ;; Early versions of noutline don't have `outline-invisible-p'.
23823 (outline-invisible-p)))
23825 (defun org-back-to-heading (&optional invisible-ok)
23826 "Call `outline-back-to-heading', but provide a better error message."
23827 (condition-case nil
23828 (outline-back-to-heading invisible-ok)
23829 (error (error "Before first headline at position %d in buffer %s"
23830 (point) (current-buffer)))))
23832 (defun org-before-first-heading-p ()
23833 "Before first heading?"
23834 (save-excursion
23835 (end-of-line)
23836 (null (re-search-backward org-outline-regexp-bol nil t))))
23838 (defun org-at-heading-p (&optional ignored)
23839 (outline-on-heading-p t))
23840 ;; Compatibility alias with Org versions < 7.8.03
23841 (defalias 'org-on-heading-p 'org-at-heading-p)
23843 (defun org-in-commented-heading-p (&optional no-inheritance)
23844 "Non-nil if point is under a commented heading.
23845 This function also checks ancestors of the current headline,
23846 unless optional argument NO-INHERITANCE is non-nil."
23847 (cond
23848 ((org-before-first-heading-p) nil)
23849 ((let ((headline (nth 4 (org-heading-components))))
23850 (and headline
23851 (let ((case-fold-search nil))
23852 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23853 headline)))))
23854 (no-inheritance nil)
23856 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23858 (defun org-at-comment-p nil
23859 "Is cursor in a commented line?"
23860 (save-excursion
23861 (save-match-data
23862 (beginning-of-line)
23863 (looking-at "^[ \t]*# "))))
23865 (defun org-at-drawer-p nil
23866 "Is cursor at a drawer keyword?"
23867 (save-excursion
23868 (move-beginning-of-line 1)
23869 (looking-at org-drawer-regexp)))
23871 (defun org-at-block-p nil
23872 "Is cursor at a block keyword?"
23873 (save-excursion
23874 (move-beginning-of-line 1)
23875 (looking-at org-block-regexp)))
23877 (defun org-point-at-end-of-empty-headline ()
23878 "If point is at the end of an empty headline, return t, else nil.
23879 If the heading only contains a TODO keyword, it is still still considered
23880 empty."
23881 (and (looking-at "[ \t]*$")
23882 (when org-todo-line-regexp
23883 (save-excursion
23884 (beginning-of-line 1)
23885 (let ((case-fold-search nil))
23886 (looking-at org-todo-line-regexp)
23887 (string= (match-string 3) ""))))))
23889 (defun org-at-heading-or-item-p ()
23890 (or (org-at-heading-p) (org-at-item-p)))
23892 (defun org-at-target-p ()
23893 (or (org-in-regexp org-radio-target-regexp)
23894 (org-in-regexp org-target-regexp)))
23895 ;; Compatibility alias with Org versions < 7.8.03
23896 (defalias 'org-on-target-p 'org-at-target-p)
23898 (defun org-up-heading-all (arg)
23899 "Move to the heading line of which the present line is a subheading.
23900 This function considers both visible and invisible heading lines.
23901 With argument, move up ARG levels."
23902 (if (fboundp 'outline-up-heading-all)
23903 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23904 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23906 (defun org-up-heading-safe ()
23907 "Move to the heading line of which the present line is a subheading.
23908 This version will not throw an error. It will return the level of the
23909 headline found, or nil if no higher level is found.
23911 Also, this function will be a lot faster than `outline-up-heading',
23912 because it relies on stars being the outline starters. This can really
23913 make a significant difference in outlines with very many siblings."
23914 (when (ignore-errors (org-back-to-heading t))
23915 (let ((level-up (1- (funcall outline-level))))
23916 (and (> level-up 0)
23917 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23918 (funcall outline-level)))))
23920 (defun org-first-sibling-p ()
23921 "Is this heading the first child of its parents?"
23922 (interactive)
23923 (let ((re org-outline-regexp-bol)
23924 level l)
23925 (unless (org-at-heading-p t)
23926 (user-error "Not at a heading"))
23927 (setq level (funcall outline-level))
23928 (save-excursion
23929 (if (not (re-search-backward re nil t))
23931 (setq l (funcall outline-level))
23932 (< l level)))))
23934 (defun org-goto-sibling (&optional previous)
23935 "Goto the next sibling, even if it is invisible.
23936 When PREVIOUS is set, go to the previous sibling instead. Returns t
23937 when a sibling was found. When none is found, return nil and don't
23938 move point."
23939 (let ((fun (if previous 're-search-backward 're-search-forward))
23940 (pos (point))
23941 (re org-outline-regexp-bol)
23942 level l)
23943 (when (ignore-errors (org-back-to-heading t))
23944 (setq level (funcall outline-level))
23945 (catch 'exit
23946 (or previous (forward-char 1))
23947 (while (funcall fun re nil t)
23948 (setq l (funcall outline-level))
23949 (when (< l level) (goto-char pos) (throw 'exit nil))
23950 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23951 (goto-char pos)
23952 nil))))
23954 (defun org-show-siblings ()
23955 "Show all siblings of the current headline."
23956 (save-excursion
23957 (while (org-goto-sibling) (org-flag-heading nil)))
23958 (save-excursion
23959 (while (org-goto-sibling 'previous)
23960 (org-flag-heading nil))))
23962 (defun org-goto-first-child ()
23963 "Goto the first child, even if it is invisible.
23964 Return t when a child was found. Otherwise don't move point and
23965 return nil."
23966 (let (level (pos (point)) (re org-outline-regexp-bol))
23967 (when (ignore-errors (org-back-to-heading t))
23968 (setq level (outline-level))
23969 (forward-char 1)
23970 (if (and (re-search-forward re nil t) (> (outline-level) level))
23971 (progn (goto-char (match-beginning 0)) t)
23972 (goto-char pos) nil))))
23974 (defun org-show-hidden-entry ()
23975 "Show an entry where even the heading is hidden."
23976 (save-excursion
23977 (org-show-entry)))
23979 (defun org-flag-heading (flag &optional entry)
23980 "Flag the current heading. FLAG non-nil means make invisible.
23981 When ENTRY is non-nil, show the entire entry."
23982 (save-excursion
23983 (org-back-to-heading t)
23984 ;; Check if we should show the entire entry
23985 (if entry
23986 (progn
23987 (org-show-entry)
23988 (save-excursion
23989 (and (outline-next-heading)
23990 (org-flag-heading nil))))
23991 (outline-flag-region (max (point-min) (1- (point)))
23992 (save-excursion (outline-end-of-heading) (point))
23993 flag))))
23995 (defun org-get-next-sibling ()
23996 "Move to next heading of the same level, and return point.
23997 If there is no such heading, return nil.
23998 This is like outline-next-sibling, but invisible headings are ok."
23999 (let ((level (funcall outline-level)))
24000 (outline-next-heading)
24001 (while (and (not (eobp)) (> (funcall outline-level) level))
24002 (outline-next-heading))
24003 (if (or (eobp) (< (funcall outline-level) level))
24005 (point))))
24007 (defun org-get-last-sibling ()
24008 "Move to previous heading of the same level, and return point.
24009 If there is no such heading, return nil."
24010 (let ((opoint (point))
24011 (level (funcall outline-level)))
24012 (outline-previous-heading)
24013 (when (and (/= (point) opoint) (outline-on-heading-p t))
24014 (while (and (> (funcall outline-level) level)
24015 (not (bobp)))
24016 (outline-previous-heading))
24017 (if (< (funcall outline-level) level)
24019 (point)))))
24021 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24022 "Goto to the end of a subtree."
24023 ;; This contains an exact copy of the original function, but it uses
24024 ;; `org-back-to-heading', to make it work also in invisible
24025 ;; trees. And is uses an invisible-ok argument.
24026 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24027 ;; Furthermore, when used inside Org, finding the end of a large subtree
24028 ;; with many children and grandchildren etc, this can be much faster
24029 ;; than the outline version.
24030 (org-back-to-heading invisible-ok)
24031 (let ((first t)
24032 (level (funcall outline-level)))
24033 (if (and (derived-mode-p 'org-mode) (< level 1000))
24034 ;; A true heading (not a plain list item), in Org-mode
24035 ;; This means we can easily find the end by looking
24036 ;; only for the right number of stars. Using a regexp to do
24037 ;; this is so much faster than using a Lisp loop.
24038 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24039 (forward-char 1)
24040 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24041 ;; something else, do it the slow way
24042 (while (and (not (eobp))
24043 (or first (> (funcall outline-level) level)))
24044 (setq first nil)
24045 (outline-next-heading)))
24046 (unless to-heading
24047 (if (memq (preceding-char) '(?\n ?\^M))
24048 (progn
24049 ;; Go to end of line before heading
24050 (forward-char -1)
24051 (if (memq (preceding-char) '(?\n ?\^M))
24052 ;; leave blank line before heading
24053 (forward-char -1))))))
24054 (point))
24056 (defun org-end-of-meta-data (&optional full)
24057 "Skip planning line and properties drawer in current entry.
24058 When optional argument FULL is non-nil, also skip empty lines,
24059 clocking lines and regular drawers at the beginning of the
24060 entry."
24061 (org-back-to-heading t)
24062 (forward-line)
24063 (when (org-looking-at-p org-planning-line-re) (forward-line))
24064 (when (looking-at org-property-drawer-re)
24065 (goto-char (match-end 0))
24066 (forward-line))
24067 (when (and full (not (org-at-heading-p)))
24068 (catch 'exit
24069 (let ((end (save-excursion (outline-next-heading) (point)))
24070 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24071 (while (not (eobp))
24072 (cond ((org-looking-at-p org-drawer-regexp)
24073 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24074 (forward-line)
24075 (throw 'exit t)))
24076 ((org-looking-at-p re) (forward-line))
24077 (t (throw 'exit t))))))))
24079 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24080 "Move forward to the ARG'th subheading at same level as this one.
24081 Stop at the first and last subheadings of a superior heading.
24082 Normally this only looks at visible headings, but when INVISIBLE-OK is
24083 non-nil it will also look at invisible ones."
24084 (interactive "p")
24085 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24086 (if (and arg (< arg 0))
24087 (goto-char (point-min))
24088 (outline-next-heading))
24089 (org-at-heading-p)
24090 (let ((level (- (match-end 0) (match-beginning 0) 1))
24091 (f (if (and arg (< arg 0))
24092 're-search-backward
24093 're-search-forward))
24094 (count (if arg (abs arg) 1))
24095 (result (point)))
24096 (while (and (prog1 (> count 0)
24097 (forward-char (if (and arg (< arg 0)) -1 1)))
24098 (funcall f org-outline-regexp-bol nil 'move))
24099 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24100 (cond ((< l level) (setq count 0))
24101 ((and (= l level)
24102 (or invisible-ok
24103 (progn
24104 (goto-char (line-beginning-position))
24105 (not (outline-invisible-p)))))
24106 (setq count (1- count))
24107 (when (eq l level)
24108 (setq result (point)))))))
24109 (goto-char result))
24110 (beginning-of-line 1)))
24112 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24113 "Move backward to the ARG'th subheading at same level as this one.
24114 Stop at the first and last subheadings of a superior heading."
24115 (interactive "p")
24116 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24118 (defun org-next-visible-heading (arg)
24119 "Move to the next visible heading.
24121 This function wraps `outline-next-visible-heading' with
24122 `org-with-limited-levels' in order to skip over inline tasks and
24123 respect customization of `org-odd-levels-only'."
24124 (interactive "p")
24125 (org-with-limited-levels
24126 (outline-next-visible-heading arg)))
24128 (defun org-previous-visible-heading (arg)
24129 "Move to the next visible heading.
24131 This function wraps `outline-previous-visible-heading' with
24132 `org-with-limited-levels' in order to skip over inline tasks and
24133 respect customization of `org-odd-levels-only'."
24134 (interactive "p")
24135 (org-with-limited-levels
24136 (outline-previous-visible-heading arg)))
24138 (defun org-next-block (arg &optional backward block-regexp)
24139 "Jump to the next block.
24140 With a prefix argument ARG, jump forward ARG many source blocks.
24141 When BACKWARD is non-nil, jump to the previous block.
24142 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24143 (interactive "p")
24144 (let ((re (or block-regexp org-block-regexp))
24145 (re-search-fn (or (and backward 're-search-backward)
24146 're-search-forward)))
24147 (if (looking-at re) (forward-char 1))
24148 (condition-case nil
24149 (funcall re-search-fn re nil nil arg)
24150 (error (user-error "No %s code blocks"
24151 (if backward "previous" "further" ))))
24152 (goto-char (match-beginning 0)) (org-show-context)))
24154 (defun org-previous-block (arg &optional block-regexp)
24155 "Jump to the previous block.
24156 With a prefix argument ARG, jump backward ARG many source blocks.
24157 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24158 (interactive "p")
24159 (org-next-block arg t block-regexp))
24161 (defun org-forward-paragraph ()
24162 "Move forward to beginning of next paragraph or equivalent.
24164 The function moves point to the beginning of the next visible
24165 structural element, which can be a paragraph, a table, a list
24166 item, etc. It also provides some special moves for convenience:
24168 - On an affiliated keyword, jump to the beginning of the
24169 relative element.
24170 - On an item or a footnote definition, move to the second
24171 element inside, if any.
24172 - On a table or a property drawer, jump after it.
24173 - On a verse or source block, stop after blank lines."
24174 (interactive)
24175 (when (eobp) (user-error "Cannot move further down"))
24176 (let* ((deactivate-mark nil)
24177 (element (org-element-at-point))
24178 (type (org-element-type element))
24179 (post-affiliated (org-element-property :post-affiliated element))
24180 (contents-begin (org-element-property :contents-begin element))
24181 (contents-end (org-element-property :contents-end element))
24182 (end (let ((end (org-element-property :end element)) (parent element))
24183 (while (and (setq parent (org-element-property :parent parent))
24184 (= (org-element-property :contents-end parent) end))
24185 (setq end (org-element-property :end parent)))
24186 end)))
24187 (cond ((not element)
24188 (skip-chars-forward " \r\t\n")
24189 (or (eobp) (beginning-of-line)))
24190 ;; On affiliated keywords, move to element's beginning.
24191 ((< (point) post-affiliated)
24192 (goto-char post-affiliated))
24193 ;; At a table row, move to the end of the table. Similarly,
24194 ;; at a node property, move to the end of the property
24195 ;; drawer.
24196 ((memq type '(node-property table-row))
24197 (goto-char (org-element-property
24198 :end (org-element-property :parent element))))
24199 ((memq type '(property-drawer table)) (goto-char end))
24200 ;; Consider blank lines as separators in verse and source
24201 ;; blocks to ease editing.
24202 ((memq type '(src-block verse-block))
24203 (when (eq type 'src-block)
24204 (setq contents-end
24205 (save-excursion (goto-char end)
24206 (skip-chars-backward " \r\t\n")
24207 (line-beginning-position))))
24208 (beginning-of-line)
24209 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24210 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24211 (goto-char end)
24212 (skip-chars-forward " \r\t\n")
24213 (if (= (point) contents-end) (goto-char end)
24214 (beginning-of-line))))
24215 ;; With no contents, just skip element.
24216 ((not contents-begin) (goto-char end))
24217 ;; If contents are invisible, skip the element altogether.
24218 ((outline-invisible-p (line-end-position))
24219 (case type
24220 (headline
24221 (org-with-limited-levels (outline-next-visible-heading 1)))
24222 ;; At a plain list, make sure we move to the next item
24223 ;; instead of skipping the whole list.
24224 (plain-list (forward-char)
24225 (org-forward-paragraph))
24226 (otherwise (goto-char end))))
24227 ((>= (point) contents-end) (goto-char end))
24228 ((>= (point) contents-begin)
24229 ;; This can only happen on paragraphs and plain lists.
24230 (case type
24231 (paragraph (goto-char end))
24232 ;; At a plain list, try to move to second element in
24233 ;; first item, if possible.
24234 (plain-list (end-of-line)
24235 (org-forward-paragraph))))
24236 ;; When contents start on the middle of a line (e.g. in
24237 ;; items and footnote definitions), try to reach first
24238 ;; element starting after current line.
24239 ((> (line-end-position) contents-begin)
24240 (end-of-line)
24241 (org-forward-paragraph))
24242 (t (goto-char contents-begin)))))
24244 (defun org-backward-paragraph ()
24245 "Move backward to start of previous paragraph or equivalent.
24247 The function moves point to the beginning of the current
24248 structural element, which can be a paragraph, a table, a list
24249 item, etc., or to the beginning of the previous visible one if
24250 point is already there. It also provides some special moves for
24251 convenience:
24253 - On an affiliated keyword, jump to the first one.
24254 - On a table or a property drawer, move to its beginning.
24255 - On a verse or source block, stop before blank lines."
24256 (interactive)
24257 (when (bobp) (user-error "Cannot move further up"))
24258 (let* ((deactivate-mark nil)
24259 (element (org-element-at-point))
24260 (type (org-element-type element))
24261 (contents-begin (org-element-property :contents-begin element))
24262 (contents-end (org-element-property :contents-end element))
24263 (post-affiliated (org-element-property :post-affiliated element))
24264 (begin (org-element-property :begin element)))
24265 (cond
24266 ((not element) (goto-char (point-min)))
24267 ((= (point) begin)
24268 (backward-char)
24269 (org-backward-paragraph))
24270 ((<= (point) post-affiliated) (goto-char begin))
24271 ((memq type '(node-property table-row))
24272 (goto-char (org-element-property
24273 :post-affiliated (org-element-property :parent element))))
24274 ((memq type '(property-drawer table)) (goto-char begin))
24275 ((memq type '(src-block verse-block))
24276 (when (eq type 'src-block)
24277 (setq contents-begin
24278 (save-excursion (goto-char begin) (forward-line) (point))))
24279 (if (= (point) contents-begin) (goto-char post-affiliated)
24280 ;; Inside a verse block, see blank lines as paragraph
24281 ;; separators.
24282 (let ((origin (point)))
24283 (skip-chars-backward " \r\t\n" contents-begin)
24284 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24285 (skip-chars-forward " \r\t\n" origin)
24286 (if (= (point) origin) (goto-char contents-begin)
24287 (beginning-of-line))))))
24288 ((not contents-begin) (goto-char (or post-affiliated begin)))
24289 ((eq type 'paragraph)
24290 (goto-char contents-begin)
24291 ;; When at first paragraph in an item or a footnote definition,
24292 ;; move directly to beginning of line.
24293 (let ((parent-contents
24294 (org-element-property
24295 :contents-begin (org-element-property :parent element))))
24296 (when (and parent-contents (= parent-contents contents-begin))
24297 (beginning-of-line))))
24298 ;; At the end of a greater element, move to the beginning of the
24299 ;; last element within.
24300 ((>= (point) contents-end)
24301 (goto-char (1- contents-end))
24302 (org-backward-paragraph))
24303 (t (goto-char (or post-affiliated begin))))
24304 ;; Ensure we never leave point invisible.
24305 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24307 (defun org-forward-element ()
24308 "Move forward by one element.
24309 Move to the next element at the same level, when possible."
24310 (interactive)
24311 (cond ((eobp) (user-error "Cannot move further down"))
24312 ((org-with-limited-levels (org-at-heading-p))
24313 (let ((origin (point)))
24314 (goto-char (org-end-of-subtree nil t))
24315 (unless (org-with-limited-levels (org-at-heading-p))
24316 (goto-char origin)
24317 (user-error "Cannot move further down"))))
24319 (let* ((elem (org-element-at-point))
24320 (end (org-element-property :end elem))
24321 (parent (org-element-property :parent elem)))
24322 (cond ((and parent (= (org-element-property :contents-end parent) end))
24323 (goto-char (org-element-property :end parent)))
24324 ((integer-or-marker-p end) (goto-char end))
24325 (t (message "No element at point")))))))
24327 (defun org-backward-element ()
24328 "Move backward by one element.
24329 Move to the previous element at the same level, when possible."
24330 (interactive)
24331 (cond ((bobp) (user-error "Cannot move further up"))
24332 ((org-with-limited-levels (org-at-heading-p))
24333 ;; At a headline, move to the previous one, if any, or stay
24334 ;; here.
24335 (let ((origin (point)))
24336 (org-with-limited-levels (org-backward-heading-same-level 1))
24337 ;; When current headline has no sibling above, move to its
24338 ;; parent.
24339 (when (= (point) origin)
24340 (or (org-with-limited-levels (org-up-heading-safe))
24341 (progn (goto-char origin)
24342 (user-error "Cannot move further up"))))))
24344 (let* ((elem (org-element-at-point))
24345 (beg (org-element-property :begin elem)))
24346 (cond
24347 ;; Move to beginning of current element if point isn't
24348 ;; there already.
24349 ((null beg) (message "No element at point"))
24350 ((/= (point) beg) (goto-char beg))
24351 (t (goto-char beg)
24352 (skip-chars-backward " \r\t\n")
24353 (unless (bobp)
24354 (let ((prev (org-element-at-point)))
24355 (goto-char (org-element-property :begin prev))
24356 (while (and (setq prev (org-element-property :parent prev))
24357 (<= (org-element-property :end prev) beg))
24358 (goto-char (org-element-property :begin prev)))))))))))
24360 (defun org-up-element ()
24361 "Move to upper element."
24362 (interactive)
24363 (if (org-with-limited-levels (org-at-heading-p))
24364 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24365 (let* ((elem (org-element-at-point))
24366 (parent (org-element-property :parent elem)))
24367 (if parent (goto-char (org-element-property :begin parent))
24368 (if (org-with-limited-levels (org-before-first-heading-p))
24369 (user-error "No surrounding element")
24370 (org-with-limited-levels (org-back-to-heading)))))))
24372 (defvar org-element-greater-elements)
24373 (defun org-down-element ()
24374 "Move to inner element."
24375 (interactive)
24376 (let ((element (org-element-at-point)))
24377 (cond
24378 ((memq (org-element-type element) '(plain-list table))
24379 (goto-char (org-element-property :contents-begin element))
24380 (forward-char))
24381 ((memq (org-element-type element) org-element-greater-elements)
24382 ;; If contents are hidden, first disclose them.
24383 (when (outline-invisible-p (line-end-position)) (org-cycle))
24384 (goto-char (or (org-element-property :contents-begin element)
24385 (user-error "No content for this element"))))
24386 (t (user-error "No inner element")))))
24388 (defun org-drag-element-backward ()
24389 "Move backward element at point."
24390 (interactive)
24391 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24392 (let* ((elem (org-element-at-point))
24393 (prev-elem
24394 (save-excursion
24395 (goto-char (org-element-property :begin elem))
24396 (skip-chars-backward " \r\t\n")
24397 (unless (bobp)
24398 (let* ((beg (org-element-property :begin elem))
24399 (prev (org-element-at-point))
24400 (up prev))
24401 (while (and (setq up (org-element-property :parent up))
24402 (<= (org-element-property :end up) beg))
24403 (setq prev up))
24404 prev)))))
24405 ;; Error out if no previous element or previous element is
24406 ;; a parent of the current one.
24407 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24408 (user-error "Cannot drag element backward")
24409 (let ((pos (point)))
24410 (org-element-swap-A-B prev-elem elem)
24411 (goto-char (+ (org-element-property :begin prev-elem)
24412 (- pos (org-element-property :begin elem)))))))))
24414 (defun org-drag-element-forward ()
24415 "Move forward element at point."
24416 (interactive)
24417 (let* ((pos (point))
24418 (elem (org-element-at-point)))
24419 (when (= (point-max) (org-element-property :end elem))
24420 (user-error "Cannot drag element forward"))
24421 (goto-char (org-element-property :end elem))
24422 (let ((next-elem (org-element-at-point)))
24423 (when (or (org-element-nested-p elem next-elem)
24424 (and (eq (org-element-type next-elem) 'headline)
24425 (not (eq (org-element-type elem) 'headline))))
24426 (goto-char pos)
24427 (user-error "Cannot drag element forward"))
24428 ;; Compute new position of point: it's shifted by NEXT-ELEM
24429 ;; body's length (without final blanks) and by the length of
24430 ;; blanks between ELEM and NEXT-ELEM.
24431 (let ((size-next (- (save-excursion
24432 (goto-char (org-element-property :end next-elem))
24433 (skip-chars-backward " \r\t\n")
24434 (forward-line)
24435 ;; Small correction if buffer doesn't end
24436 ;; with a newline character.
24437 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24438 (org-element-property :begin next-elem)))
24439 (size-blank (- (org-element-property :end elem)
24440 (save-excursion
24441 (goto-char (org-element-property :end elem))
24442 (skip-chars-backward " \r\t\n")
24443 (forward-line)
24444 (point)))))
24445 (org-element-swap-A-B elem next-elem)
24446 (goto-char (+ pos size-next size-blank))))))
24448 (defun org-drag-line-forward (arg)
24449 "Drag the line at point ARG lines forward."
24450 (interactive "p")
24451 (dotimes (n (abs arg))
24452 (let ((c (current-column)))
24453 (if (< 0 arg)
24454 (progn
24455 (beginning-of-line 2)
24456 (transpose-lines 1)
24457 (beginning-of-line 0))
24458 (transpose-lines 1)
24459 (beginning-of-line -1))
24460 (org-move-to-column c))))
24462 (defun org-drag-line-backward (arg)
24463 "Drag the line at point ARG lines backward."
24464 (interactive "p")
24465 (org-drag-line-forward (- arg)))
24467 (defun org-mark-element ()
24468 "Put point at beginning of this element, mark at end.
24470 Interactively, if this command is repeated or (in Transient Mark
24471 mode) if the mark is active, it marks the next element after the
24472 ones already marked."
24473 (interactive)
24474 (let (deactivate-mark)
24475 (if (and (org-called-interactively-p 'any)
24476 (or (and (eq last-command this-command) (mark t))
24477 (and transient-mark-mode mark-active)))
24478 (set-mark
24479 (save-excursion
24480 (goto-char (mark))
24481 (goto-char (org-element-property :end (org-element-at-point)))))
24482 (let ((element (org-element-at-point)))
24483 (end-of-line)
24484 (push-mark (org-element-property :end element) t t)
24485 (goto-char (org-element-property :begin element))))))
24487 (defun org-narrow-to-element ()
24488 "Narrow buffer to current element."
24489 (interactive)
24490 (let ((elem (org-element-at-point)))
24491 (cond
24492 ((eq (car elem) 'headline)
24493 (narrow-to-region
24494 (org-element-property :begin elem)
24495 (org-element-property :end elem)))
24496 ((memq (car elem) org-element-greater-elements)
24497 (narrow-to-region
24498 (org-element-property :contents-begin elem)
24499 (org-element-property :contents-end elem)))
24501 (narrow-to-region
24502 (org-element-property :begin elem)
24503 (org-element-property :end elem))))))
24505 (defun org-transpose-element ()
24506 "Transpose current and previous elements, keeping blank lines between.
24507 Point is moved after both elements."
24508 (interactive)
24509 (org-skip-whitespace)
24510 (let ((end (org-element-property :end (org-element-at-point))))
24511 (org-drag-element-backward)
24512 (goto-char end)))
24514 (defun org-unindent-buffer ()
24515 "Un-indent the visible part of the buffer.
24516 Relative indentation (between items, inside blocks, etc.) isn't
24517 modified."
24518 (interactive)
24519 (unless (eq major-mode 'org-mode)
24520 (user-error "Cannot un-indent a buffer not in Org mode"))
24521 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24522 unindent-tree ; For byte-compiler.
24523 (unindent-tree
24524 (function
24525 (lambda (contents)
24526 (mapc
24527 (lambda (element)
24528 (if (memq (org-element-type element) '(headline section))
24529 (funcall unindent-tree (org-element-contents element))
24530 (save-excursion
24531 (save-restriction
24532 (narrow-to-region
24533 (org-element-property :begin element)
24534 (org-element-property :end element))
24535 (org-do-remove-indentation)))))
24536 (reverse contents))))))
24537 (funcall unindent-tree (org-element-contents parse-tree))))
24539 (defun org-show-subtree ()
24540 "Show everything after this heading at deeper levels."
24541 (interactive)
24542 (outline-flag-region
24543 (point)
24544 (save-excursion
24545 (org-end-of-subtree t t))
24546 nil))
24548 (defun org-show-entry ()
24549 "Show the body directly following this heading.
24550 Show the heading too, if it is currently invisible."
24551 (interactive)
24552 (save-excursion
24553 (ignore-errors
24554 (org-back-to-heading t)
24555 (outline-flag-region
24556 (max (point-min) (1- (point)))
24557 (save-excursion
24558 (if (re-search-forward
24559 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24560 (match-beginning 1)
24561 (point-max)))
24562 nil)
24563 (org-cycle-hide-drawers 'children))))
24565 (defun org-make-options-regexp (kwds &optional extra)
24566 "Make a regular expression for keyword lines.
24567 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24568 when non-nil, is a regexp matching keywords names."
24569 (concat "^[ \t]*#\\+\\("
24570 (regexp-opt kwds)
24571 (and extra (concat (and kwds "\\|") extra))
24572 "\\):[ \t]*\\(.*\\)"))
24574 ;; Make isearch reveal the necessary context
24575 (defun org-isearch-end ()
24576 "Reveal context after isearch exits."
24577 (when isearch-success ; only if search was successful
24578 (if (featurep 'xemacs)
24579 ;; Under XEmacs, the hook is run in the correct place,
24580 ;; we directly show the context.
24581 (org-show-context 'isearch)
24582 ;; In Emacs the hook runs *before* restoring the overlays.
24583 ;; So we have to use a one-time post-command-hook to do this.
24584 ;; (Emacs 22 has a special variable, see function `org-mode')
24585 (unless (and (boundp 'isearch-mode-end-hook-quit)
24586 isearch-mode-end-hook-quit)
24587 ;; Only when the isearch was not quitted.
24588 (org-add-hook 'post-command-hook 'org-isearch-post-command
24589 'append 'local)))))
24591 (defun org-isearch-post-command ()
24592 "Remove self from hook, and show context."
24593 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24594 (org-show-context 'isearch))
24597 ;;;; Integration with and fixes for other packages
24599 ;;; Imenu support
24601 (defvar org-imenu-markers nil
24602 "All markers currently used by Imenu.")
24603 (make-variable-buffer-local 'org-imenu-markers)
24605 (defun org-imenu-new-marker (&optional pos)
24606 "Return a new marker for use by Imenu, and remember the marker."
24607 (let ((m (make-marker)))
24608 (move-marker m (or pos (point)))
24609 (push m org-imenu-markers)
24612 (defun org-imenu-get-tree ()
24613 "Produce the index for Imenu."
24614 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24615 (setq org-imenu-markers nil)
24616 (let* ((n org-imenu-depth)
24617 (re (concat "^" (org-get-limited-outline-regexp)))
24618 (subs (make-vector (1+ n) nil))
24619 (last-level 0)
24620 m level head0 head)
24621 (save-excursion
24622 (save-restriction
24623 (widen)
24624 (goto-char (point-max))
24625 (while (re-search-backward re nil t)
24626 (setq level (org-reduced-level (funcall outline-level)))
24627 (when (and (<= level n)
24628 (looking-at org-complex-heading-regexp)
24629 (setq head0 (org-match-string-no-properties 4)))
24630 (setq head (org-link-display-format head0)
24631 m (org-imenu-new-marker))
24632 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24633 (if (>= level last-level)
24634 (push (cons head m) (aref subs level))
24635 (push (cons head (aref subs (1+ level))) (aref subs level))
24636 (loop for i from (1+ level) to n do (aset subs i nil)))
24637 (setq last-level level)))))
24638 (aref subs 1)))
24640 (eval-after-load "imenu"
24641 '(progn
24642 (add-hook 'imenu-after-jump-hook
24643 (lambda ()
24644 (if (derived-mode-p 'org-mode)
24645 (org-show-context 'org-goto))))))
24647 (defun org-link-display-format (link)
24648 "Replace a link with its the description.
24649 If there is no description, use the link target."
24650 (save-match-data
24651 (if (string-match org-bracket-link-analytic-regexp link)
24652 (replace-match (if (match-end 5)
24653 (match-string 5 link)
24654 (concat (match-string 1 link)
24655 (match-string 3 link)))
24656 nil t link)
24657 link)))
24659 (defun org-toggle-link-display ()
24660 "Toggle the literal or descriptive display of links."
24661 (interactive)
24662 (if org-descriptive-links
24663 (progn (org-remove-from-invisibility-spec '(org-link))
24664 (org-restart-font-lock)
24665 (setq org-descriptive-links nil))
24666 (progn (add-to-invisibility-spec '(org-link))
24667 (org-restart-font-lock)
24668 (setq org-descriptive-links t))))
24670 ;; Speedbar support
24672 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24673 "Overlay marking the agenda restriction line in speedbar.")
24674 (overlay-put org-speedbar-restriction-lock-overlay
24675 'face 'org-agenda-restriction-lock)
24676 (overlay-put org-speedbar-restriction-lock-overlay
24677 'help-echo "Agendas are currently limited to this item.")
24678 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24680 (defun org-speedbar-set-agenda-restriction ()
24681 "Restrict future agenda commands to the location at point in speedbar.
24682 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24683 (interactive)
24684 (require 'org-agenda)
24685 (let (p m tp np dir txt)
24686 (cond
24687 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24688 'org-imenu t))
24689 (setq m (get-text-property p 'org-imenu-marker))
24690 (with-current-buffer (marker-buffer m)
24691 (goto-char m)
24692 (org-agenda-set-restriction-lock 'subtree)))
24693 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24694 'speedbar-function 'speedbar-find-file))
24695 (setq tp (previous-single-property-change
24696 (1+ p) 'speedbar-function)
24697 np (next-single-property-change
24698 tp 'speedbar-function)
24699 dir (speedbar-line-directory)
24700 txt (buffer-substring-no-properties (or tp (point-min))
24701 (or np (point-max))))
24702 (with-current-buffer (find-file-noselect
24703 (let ((default-directory dir))
24704 (expand-file-name txt)))
24705 (unless (derived-mode-p 'org-mode)
24706 (user-error "Cannot restrict to non-Org-mode file"))
24707 (org-agenda-set-restriction-lock 'file)))
24708 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24709 (move-overlay org-speedbar-restriction-lock-overlay
24710 (point-at-bol) (point-at-eol))
24711 (setq current-prefix-arg nil)
24712 (org-agenda-maybe-redo)))
24714 (defvar speedbar-file-key-map)
24715 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24716 (eval-after-load "speedbar"
24717 '(progn
24718 (speedbar-add-supported-extension ".org")
24719 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24720 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24721 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24722 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24723 (add-hook 'speedbar-visiting-tag-hook
24724 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24726 ;;; Fixes and Hacks for problems with other packages
24728 (defun org--flyspell-object-check-p (element)
24729 "Non-nil when Flyspell can check object at point.
24730 ELEMENT is the element at point."
24731 (let ((object (save-excursion
24732 (when (org-looking-at-p "\\>") (backward-char))
24733 (org-element-context element))))
24734 (case (org-element-type object)
24735 ;; Prevent checks in links due to keybinding conflict with
24736 ;; Flyspell.
24737 ((code entity export-snippet inline-babel-call
24738 inline-src-block line-break latex-fragment link macro
24739 statistics-cookie target timestamp verbatim)
24740 nil)
24741 (footnote-reference
24742 ;; Only in inline footnotes, within the definition.
24743 (and (eq (org-element-property :type object) 'inline)
24744 (< (save-excursion
24745 (goto-char (org-element-property :begin object))
24746 (search-forward ":" nil t 2))
24747 (point))))
24748 (otherwise t))))
24750 (defun org-mode-flyspell-verify ()
24751 "Function used for `flyspell-generic-check-word-predicate'."
24752 (if (org-at-heading-p)
24753 ;; At a headline or an inlinetask, check title only. This is
24754 ;; faster than relying on `org-element-at-point'.
24755 (and (save-excursion (beginning-of-line)
24756 (and (let ((case-fold-search t))
24757 (not (looking-at "\\*+ END[ \t]*$")))
24758 (looking-at org-complex-heading-regexp)))
24759 (match-beginning 4)
24760 (>= (point) (match-beginning 4))
24761 (or (not (match-beginning 5))
24762 (< (point) (match-beginning 5))))
24763 (let* ((element (org-element-at-point))
24764 (post-affiliated (org-element-property :post-affiliated element)))
24765 (cond
24766 ;; Ignore checks in all affiliated keywords but captions.
24767 ((< (point) post-affiliated)
24768 (and (save-excursion
24769 (beginning-of-line)
24770 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24771 (> (point) (match-end 0))
24772 (org--flyspell-object-check-p element)))
24773 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24774 ((let ((log (org-log-into-drawer)))
24775 (and log
24776 (let ((drawer (org-element-lineage element '(drawer))))
24777 (and drawer
24778 (eq (compare-strings
24779 log nil nil
24780 (org-element-property :drawer-name drawer) nil nil t)
24781 t)))))
24782 nil)
24784 (case (org-element-type element)
24785 ((comment quote-section) t)
24786 (comment-block
24787 ;; Allow checks between block markers, not on them.
24788 (and (> (line-beginning-position) post-affiliated)
24789 (save-excursion
24790 (end-of-line)
24791 (skip-chars-forward " \r\t\n")
24792 (< (point) (org-element-property :end element)))))
24793 ;; Arbitrary list of keywords where checks are meaningful.
24794 ;; Make sure point is on the value part of the element.
24795 (keyword
24796 (and (member (org-element-property :key element)
24797 '("DESCRIPTION" "TITLE"))
24798 (save-excursion
24799 (search-backward ":" (line-beginning-position) t))))
24800 ;; Check is globally allowed in paragraphs verse blocks and
24801 ;; table rows (after affiliated keywords) but some objects
24802 ;; must not be affected.
24803 ((paragraph table-row verse-block)
24804 (let ((cbeg (org-element-property :contents-begin element))
24805 (cend (org-element-property :contents-end element)))
24806 (and cbeg (>= (point) cbeg) (< (point) cend)
24807 (org--flyspell-object-check-p element))))))))))
24808 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24810 (defun org-remove-flyspell-overlays-in (beg end)
24811 "Remove flyspell overlays in region."
24812 (and (org-bound-and-true-p flyspell-mode)
24813 (fboundp 'flyspell-delete-region-overlays)
24814 (flyspell-delete-region-overlays beg end)))
24816 (defvar flyspell-delayed-commands)
24817 (eval-after-load "flyspell"
24818 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24820 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24821 (eval-after-load "bookmark"
24822 '(if (boundp 'bookmark-after-jump-hook)
24823 ;; We can use the hook
24824 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24825 ;; Hook not available, use advice
24826 (defadvice bookmark-jump (after org-make-visible activate)
24827 "Make the position visible."
24828 (org-bookmark-jump-unhide))))
24830 ;; Make sure saveplace shows the location if it was hidden
24831 (eval-after-load "saveplace"
24832 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24833 "Make the position visible."
24834 (org-bookmark-jump-unhide)))
24836 ;; Make sure ecb shows the location if it was hidden
24837 (eval-after-load "ecb"
24838 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24839 "Make hierarchy visible when jumping into location from ECB tree buffer."
24840 (if (derived-mode-p 'org-mode)
24841 (org-show-context))))
24843 (defun org-bookmark-jump-unhide ()
24844 "Unhide the current position, to show the bookmark location."
24845 (and (derived-mode-p 'org-mode)
24846 (or (outline-invisible-p)
24847 (save-excursion (goto-char (max (point-min) (1- (point))))
24848 (outline-invisible-p)))
24849 (org-show-context 'bookmark-jump)))
24851 (defun org-mark-jump-unhide ()
24852 "Make the point visible with `org-show-context' after jumping to the mark."
24853 (when (and (derived-mode-p 'org-mode)
24854 (outline-invisible-p))
24855 (org-show-context 'mark-goto)))
24857 (eval-after-load "simple"
24858 '(defadvice pop-to-mark-command (after org-make-visible activate)
24859 "Make the point visible with `org-show-context'."
24860 (org-mark-jump-unhide)))
24862 (eval-after-load "simple"
24863 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24864 "Make the point visible with `org-show-context'."
24865 (org-mark-jump-unhide)))
24867 (eval-after-load "simple"
24868 '(defadvice pop-global-mark (after org-make-visible activate)
24869 "Make the point visible with `org-show-context'."
24870 (org-mark-jump-unhide)))
24872 ;; Make session.el ignore our circular variable
24873 (defvar session-globals-exclude)
24874 (eval-after-load "session"
24875 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24877 ;;;; Finish up
24879 (provide 'org)
24881 (run-hooks 'org-load-hook)
24883 ;;; org.el ends here