Fix `org-delete-property-globally'
[org-mode.git] / lisp / org.el
blob7beef2de18e6fccd78d1ffeb6eb7f85519fa54ec
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
185 (declare-function org-element-update-syntax "org-element" ())
187 (defsubst org-uniquify (list)
188 "Non-destructively remove duplicate elements from LIST."
189 (let ((res (copy-sequence list))) (delete-dups res)))
191 (defsubst org-get-at-bol (property)
192 "Get text property PROPERTY at the beginning of line."
193 (get-text-property (point-at-bol) property))
195 (defsubst org-trim (s)
196 "Remove whitespace at the beginning and the end of string S."
197 (replace-regexp-in-string
198 "\\`[ \t\n\r]+" ""
199 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
201 ;; load languages based on value of `org-babel-load-languages'
202 (defvar org-babel-load-languages)
204 ;;;###autoload
205 (defun org-babel-do-load-languages (sym value)
206 "Load the languages defined in `org-babel-load-languages'."
207 (set-default sym value)
208 (mapc (lambda (pair)
209 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
210 (if active
211 (progn
212 (require (intern (concat "ob-" lang))))
213 (progn
214 (funcall 'fmakunbound
215 (intern (concat "org-babel-execute:" lang)))
216 (funcall 'fmakunbound
217 (intern (concat "org-babel-expand-body:" lang)))))))
218 org-babel-load-languages))
220 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
221 ;;;###autoload
222 (defun org-babel-load-file (file &optional compile)
223 "Load Emacs Lisp source code blocks in the Org-mode FILE.
224 This function exports the source code using `org-babel-tangle'
225 and then loads the resulting file using `load-file'. With prefix
226 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
227 file to byte-code before it is loaded."
228 (interactive "fFile to load: \nP")
229 (let* ((age (lambda (file)
230 (float-time
231 (time-subtract (current-time)
232 (nth 5 (or (file-attributes (file-truename file))
233 (file-attributes file)))))))
234 (base-name (file-name-sans-extension file))
235 (exported-file (concat base-name ".el")))
236 ;; tangle if the org-mode file is newer than the elisp file
237 (unless (and (file-exists-p exported-file)
238 (> (funcall age file) (funcall age exported-file)))
239 ;; Tangle-file traversal returns reversed list of tangled files
240 ;; and we want to evaluate the first target.
241 (setq exported-file
242 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
243 (message "%s %s"
244 (if compile
245 (progn (byte-compile-file exported-file 'load)
246 "Compiled and loaded")
247 (progn (load-file exported-file) "Loaded"))
248 exported-file)))
250 (defcustom org-babel-load-languages '((emacs-lisp . t))
251 "Languages which can be evaluated in Org-mode buffers.
252 This list can be used to load support for any of the languages
253 below, note that each language will depend on a different set of
254 system executables and/or Emacs modes. When a language is
255 \"loaded\", then code blocks in that language can be evaluated
256 with `org-babel-execute-src-block' bound by default to C-c
257 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
258 be set to remove code block evaluation from the C-c C-c
259 keybinding. By default only Emacs Lisp (which has no
260 requirements) is loaded."
261 :group 'org-babel
262 :set 'org-babel-do-load-languages
263 :version "24.1"
264 :type '(alist :tag "Babel Languages"
265 :key-type
266 (choice
267 (const :tag "Awk" awk)
268 (const :tag "C" C)
269 (const :tag "R" R)
270 (const :tag "Asymptote" asymptote)
271 (const :tag "Calc" calc)
272 (const :tag "Clojure" clojure)
273 (const :tag "CSS" css)
274 (const :tag "Ditaa" ditaa)
275 (const :tag "Dot" dot)
276 (const :tag "Emacs Lisp" emacs-lisp)
277 (const :tag "Forth" forth)
278 (const :tag "Fortran" fortran)
279 (const :tag "Gnuplot" gnuplot)
280 (const :tag "Haskell" haskell)
281 (const :tag "IO" io)
282 (const :tag "J" J)
283 (const :tag "Java" java)
284 (const :tag "Javascript" js)
285 (const :tag "LaTeX" latex)
286 (const :tag "Ledger" ledger)
287 (const :tag "Lilypond" lilypond)
288 (const :tag "Lisp" lisp)
289 (const :tag "Makefile" makefile)
290 (const :tag "Maxima" maxima)
291 (const :tag "Matlab" matlab)
292 (const :tag "Mscgen" mscgen)
293 (const :tag "Ocaml" ocaml)
294 (const :tag "Octave" octave)
295 (const :tag "Org" org)
296 (const :tag "Perl" perl)
297 (const :tag "Pico Lisp" picolisp)
298 (const :tag "PlantUML" plantuml)
299 (const :tag "Python" python)
300 (const :tag "Ruby" ruby)
301 (const :tag "Sass" sass)
302 (const :tag "Scala" scala)
303 (const :tag "Scheme" scheme)
304 (const :tag "Screen" screen)
305 (const :tag "Shell Script" shell)
306 (const :tag "Shen" shen)
307 (const :tag "Sql" sql)
308 (const :tag "Sqlite" sqlite)
309 (const :tag "ebnf2ps" ebnf2ps))
310 :value-type (boolean :tag "Activate" :value t)))
312 ;;;; Customization variables
313 (defcustom org-clone-delete-id nil
314 "Remove ID property of clones of a subtree.
315 When non-nil, clones of a subtree don't inherit the ID property.
316 Otherwise they inherit the ID property with a new unique
317 identifier."
318 :type 'boolean
319 :version "24.1"
320 :group 'org-id)
322 ;;; Version
323 (org-check-version)
325 ;;;###autoload
326 (defun org-version (&optional here full message)
327 "Show the org-mode version.
328 Interactively, or when MESSAGE is non-nil, show it in echo area.
329 With prefix argument, or when HERE is non-nil, insert it at point.
330 In non-interactive uses, a reduced version string is output unless
331 FULL is given."
332 (interactive (list current-prefix-arg t (not current-prefix-arg)))
333 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
334 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
335 (load-suffixes (list ".el"))
336 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
337 (org-trash (or
338 (and (fboundp 'org-release) (fboundp 'org-git-version))
339 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
340 (load-suffixes save-load-suffixes)
341 (org-version (org-release))
342 (git-version (org-git-version))
343 (version (format "Org-mode version %s (%s @ %s)"
344 org-version
345 git-version
346 (if org-install-dir
347 (if (string= org-dir org-install-dir)
348 org-install-dir
349 (concat "mixed installation! " org-install-dir " and " org-dir))
350 "org-loaddefs.el can not be found!")))
351 (version1 (if full version org-version)))
352 (when here (insert version1))
353 (when message (message "%s" version1))
354 version1))
356 (defconst org-version (org-version))
359 ;;; Syntax Constants
361 ;;;; Block
363 (defconst org-block-regexp
364 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
365 "Regular expression for hiding blocks.")
367 (defconst org-dblock-start-re
368 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
369 "Matches the start line of a dynamic block, with parameters.")
371 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
372 "Matches the end of a dynamic block.")
374 ;;;; Clock and Planning
376 (defconst org-clock-string "CLOCK:"
377 "String used as prefix for timestamps clocking work hours on an item.")
379 (defvar org-closed-string "CLOSED:"
380 "String used as the prefix for timestamps logging closing a TODO entry.")
382 (defvar org-deadline-string "DEADLINE:"
383 "String to mark deadline entries.
384 A deadline is this string, followed by a time stamp. Should be a word,
385 terminated by a colon. You can insert a schedule keyword and
386 a timestamp with \\[org-deadline].")
388 (defvar org-scheduled-string "SCHEDULED:"
389 "String to mark scheduled TODO entries.
390 A schedule is this string, followed by a time stamp. Should be a word,
391 terminated by a colon. You can insert a schedule keyword and
392 a timestamp with \\[org-schedule].")
394 (defconst org-ds-keyword-length
395 (+ 2
396 (apply #'max
397 (mapcar #'length
398 (list org-deadline-string org-scheduled-string
399 org-clock-string org-closed-string))))
400 "Maximum length of the DEADLINE and SCHEDULED keywords.")
402 (defconst org-planning-line-re
403 (concat "^[ \t]*"
404 (regexp-opt
405 (list org-closed-string org-deadline-string org-scheduled-string)
407 "Matches a line with planning info.
408 Matched keyword is in group 1.")
410 (defconst org-clock-line-re
411 (concat "^[ \t]*" org-clock-string)
412 "Matches a line with clock info.")
414 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
415 "Matches the DEADLINE keyword.")
417 (defconst org-deadline-time-regexp
418 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
419 "Matches the DEADLINE keyword together with a time stamp.")
421 (defconst org-deadline-time-hour-regexp
422 (concat "\\<" org-deadline-string
423 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
424 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
426 (defconst org-deadline-line-regexp
427 (concat "\\<\\(" org-deadline-string "\\).*")
428 "Matches the DEADLINE keyword and the rest of the line.")
430 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
431 "Matches the SCHEDULED keyword.")
433 (defconst org-scheduled-time-regexp
434 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
435 "Matches the SCHEDULED keyword together with a time stamp.")
437 (defconst org-scheduled-time-hour-regexp
438 (concat "\\<" org-scheduled-string
439 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
440 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
442 (defconst org-closed-time-regexp
443 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
444 "Matches the CLOSED keyword together with a time stamp.")
446 (defconst org-keyword-time-regexp
447 (concat "\\<"
448 (regexp-opt
449 (list org-scheduled-string org-deadline-string org-closed-string
450 org-clock-string)
452 " *[[<]\\([^]>]+\\)[]>]")
453 "Matches any of the 4 keywords, together with the time stamp.")
455 (defconst org-keyword-time-not-clock-regexp
456 (concat
457 "\\<"
458 (regexp-opt
459 (list org-scheduled-string org-deadline-string org-closed-string) t)
460 " *[[<]\\([^]>]+\\)[]>]")
461 "Matches any of the 3 keywords, together with the time stamp.")
463 (defconst org-maybe-keyword-time-regexp
464 (concat "\\(\\<"
465 (regexp-opt
466 (list org-scheduled-string org-deadline-string org-closed-string
467 org-clock-string)
469 "\\)?"
470 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
471 "\\|"
472 "<%%([^\r\n>]*>\\)")
473 "Matches a timestamp, possibly preceded by a keyword.")
475 (defconst org-all-time-keywords
476 (mapcar (lambda (w) (substring w 0 -1))
477 (list org-scheduled-string org-deadline-string
478 org-clock-string org-closed-string))
479 "List of time keywords.")
481 ;;;; Drawer
483 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
484 "Matches first or last line of a hidden block.
485 Group 1 contains drawer's name or \"END\".")
487 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
488 "Regular expression matching the first line of a property drawer.")
490 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
491 "Regular expression matching the last line of a property drawer.")
493 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
494 "Regular expression matching the first line of a clock drawer.")
496 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
497 "Regular expression matching the last line of a clock drawer.")
499 (defconst org-property-drawer-re
500 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
501 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
502 "[ \t]*:END:[ \t]*$")
503 "Matches an entire property drawer.")
505 (defconst org-clock-drawer-re
506 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
507 org-clock-drawer-end-re "\\)\n?")
508 "Matches an entire clock drawer.")
510 ;;;; Headline
512 (defconst org-heading-keyword-regexp-format
513 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
514 "Printf format for a regexp matching a headline with some keyword.
515 This regexp will match the headline of any node which has the
516 exact keyword that is put into the format. The keyword isn't in
517 any group by default, but the stars and the body are.")
519 (defconst org-heading-keyword-maybe-regexp-format
520 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
521 "Printf format for a regexp matching a headline, possibly with some keyword.
522 This regexp can match any headline with the specified keyword, or
523 without a keyword. The keyword isn't in any group by default,
524 but the stars and the body are.")
526 (defconst org-archive-tag "ARCHIVE"
527 "The tag that marks a subtree as archived.
528 An archived subtree does not open during visibility cycling, and does
529 not contribute to the agenda listings.")
531 (defconst org-comment-string "COMMENT"
532 "Entries starting with this keyword will never be exported.
533 An entry can be toggled between COMMENT and normal with
534 \\[org-toggle-comment].")
537 ;;;; LaTeX Environments and Fragments
539 (defconst org-latex-regexps
540 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
541 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
542 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
543 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
544 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
545 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
546 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
547 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
548 "Regular expressions for matching embedded LaTeX.")
550 ;;;; Node Property
552 (defconst org-effort-property "Effort"
553 "The property that is being used to keep track of effort estimates.
554 Effort estimates given in this property need to have the format H:MM.")
556 ;;;; Table
558 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
559 "Detect an org-type or table-type table.")
561 (defconst org-table-line-regexp "^[ \t]*|"
562 "Detect an org-type table line.")
564 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
565 "Detect an org-type table line.")
567 (defconst org-table-hline-regexp "^[ \t]*|-"
568 "Detect an org-type table hline.")
570 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
571 "Detect a table-type table hline.")
573 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
574 "Detect the first line outside a table when searching from within it.
575 This works for both table types.")
577 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
578 "Detect a #+TBLFM line.")
580 ;;;; Timestamp
582 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
583 "Regular expression for fast time stamp matching.")
585 (defconst org-ts-regexp-inactive
586 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
587 "Regular expression for fast inactive time stamp matching.")
589 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
590 "Regular expression for fast time stamp matching.")
592 (defconst org-ts-regexp0
593 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
594 "Regular expression matching time strings for analysis.
595 This one does not require the space after the date, so it can be used
596 on a string that terminates immediately after the date.")
598 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
599 "Regular expression matching time strings for analysis.")
601 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
602 "Regular expression matching time stamps, with groups.")
604 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
605 "Regular expression matching time stamps (also [..]), with groups.")
607 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
608 "Regular expression matching a time stamp range.")
610 (defconst org-tr-regexp-both
611 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
612 "Regular expression matching a time stamp range.")
614 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
615 org-ts-regexp "\\)?")
616 "Regular expression matching a time stamp or time stamp range.")
618 (defconst org-tsr-regexp-both
619 (concat org-ts-regexp-both "\\(--?-?"
620 org-ts-regexp-both "\\)?")
621 "Regular expression matching a time stamp or time stamp range.
622 The time stamps may be either active or inactive.")
624 (defconst org-repeat-re
625 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
626 "Regular expression for specifying repeated events.
627 After a match, group 1 contains the repeat expression.")
629 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
630 "Formats for `format-time-string' which are used for time stamps.")
633 ;;; The custom variables
635 (defgroup org nil
636 "Outline-based notes management and organizer."
637 :tag "Org"
638 :group 'outlines
639 :group 'calendar)
641 (defcustom org-mode-hook nil
642 "Mode hook for Org-mode, run after the mode was turned on."
643 :group 'org
644 :type 'hook)
646 (defcustom org-load-hook nil
647 "Hook that is run after org.el has been loaded."
648 :group 'org
649 :type 'hook)
651 (defcustom org-log-buffer-setup-hook nil
652 "Hook that is run after an Org log buffer is created."
653 :group 'org
654 :version "24.1"
655 :type 'hook)
657 (defvar org-modules) ; defined below
658 (defvar org-modules-loaded nil
659 "Have the modules been loaded already?")
661 (defun org-load-modules-maybe (&optional force)
662 "Load all extensions listed in `org-modules'."
663 (when (or force (not org-modules-loaded))
664 (mapc (lambda (ext)
665 (condition-case nil (require ext)
666 (error (message "Problems while trying to load feature `%s'" ext))))
667 org-modules)
668 (setq org-modules-loaded t)))
670 (defun org-set-modules (var value)
671 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
672 (set var value)
673 (when (featurep 'org)
674 (org-load-modules-maybe 'force)
675 (org-element-cache-reset 'all)))
677 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
678 "Modules that should always be loaded together with org.el.
680 If a description starts with <C>, the file is not part of Emacs
681 and loading it will require that you have downloaded and properly
682 installed the Org mode distribution.
684 You can also use this system to load external packages (i.e. neither Org
685 core modules, nor modules from the CONTRIB directory). Just add symbols
686 to the end of the list. If the package is called org-xyz.el, then you need
687 to add the symbol `xyz', and the package must have a call to:
689 \(provide 'org-xyz)
691 For export specific modules, see also `org-export-backends'."
692 :group 'org
693 :set 'org-set-modules
694 :version "24.4"
695 :package-version '(Org . "8.0")
696 :type
697 '(set :greedy t
698 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
699 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
700 (const :tag " crypt: Encryption of subtrees" org-crypt)
701 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
702 (const :tag " docview: Links to doc-view buffers" org-docview)
703 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
704 (const :tag " habit: Track your consistency with habits" org-habit)
705 (const :tag " id: Global IDs for identifying entries" org-id)
706 (const :tag " info: Links to Info nodes" org-info)
707 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
708 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
709 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
710 (const :tag " mouse: Additional mouse support" org-mouse)
711 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
712 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
713 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
715 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
716 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
717 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
718 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
719 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
720 (const :tag "C collector: Collect properties into tables" org-collector)
721 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
722 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
723 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
724 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
725 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
726 (const :tag "C eval: Include command output as text" org-eval)
727 (const :tag "C eww: Store link to url of eww" org-eww)
728 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
729 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
730 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
731 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
732 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
733 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
734 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
735 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
736 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
737 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
738 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
739 (const :tag "C mew: Links to Mew folders/messages" org-mew)
740 (const :tag "C mtags: Support for muse-like tags" org-mtags)
741 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
742 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
743 (const :tag "C registry: A registry for Org-mode links" org-registry)
744 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
745 (const :tag "C secretary: Team management with org-mode" org-secretary)
746 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
747 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
748 (const :tag "C track: Keep up with Org-mode development" org-track)
749 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
750 (const :tag "C vm: Links to VM folders/messages" org-vm)
751 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
752 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
753 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
755 (defvar org-export--registered-backends) ; From ox.el.
756 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
757 (declare-function org-export-backend-name "ox" (backend))
758 (defcustom org-export-backends '(ascii html icalendar latex)
759 "List of export back-ends that should be always available.
761 If a description starts with <C>, the file is not part of Emacs
762 and loading it will require that you have downloaded and properly
763 installed the Org mode distribution.
765 Unlike to `org-modules', libraries in this list will not be
766 loaded along with Org, but only once the export framework is
767 needed.
769 This variable needs to be set before org.el is loaded. If you
770 need to make a change while Emacs is running, use the customize
771 interface or run the following code, where VAL stands for the new
772 value of the variable, after updating it:
774 \(progn
775 \(setq org-export--registered-backends
776 \(org-remove-if-not
777 \(lambda (backend)
778 \(let ((name (org-export-backend-name backend)))
779 \(or (memq name val)
780 \(catch 'parentp
781 \(dolist (b val)
782 \(and (org-export-derived-backend-p b name)
783 \(throw 'parentp t)))))))
784 org-export--registered-backends))
785 \(let ((new-list (mapcar 'org-export-backend-name
786 org-export--registered-backends)))
787 \(dolist (backend val)
788 \(cond
789 \((not (load (format \"ox-%s\" backend) t t))
790 \(message \"Problems while trying to load export back-end `%s'\"
791 backend))
792 \((not (memq backend new-list)) (push backend new-list))))
793 \(set-default 'org-export-backends new-list)))
795 Adding a back-end to this list will also pull the back-end it
796 depends on, if any."
797 :group 'org
798 :group 'org-export
799 :version "24.4"
800 :package-version '(Org . "8.0")
801 :initialize 'custom-initialize-set
802 :set (lambda (var val)
803 (if (not (featurep 'ox)) (set-default var val)
804 ;; Any back-end not required anymore (not present in VAL and not
805 ;; a parent of any back-end in the new value) is removed from the
806 ;; list of registered back-ends.
807 (setq org-export--registered-backends
808 (org-remove-if-not
809 (lambda (backend)
810 (let ((name (org-export-backend-name backend)))
811 (or (memq name val)
812 (catch 'parentp
813 (dolist (b val)
814 (and (org-export-derived-backend-p b name)
815 (throw 'parentp t)))))))
816 org-export--registered-backends))
817 ;; Now build NEW-LIST of both new back-ends and required
818 ;; parents.
819 (let ((new-list (mapcar 'org-export-backend-name
820 org-export--registered-backends)))
821 (dolist (backend val)
822 (cond
823 ((not (load (format "ox-%s" backend) t t))
824 (message "Problems while trying to load export back-end `%s'"
825 backend))
826 ((not (memq backend new-list)) (push backend new-list))))
827 ;; Set VAR to that list with fixed dependencies.
828 (set-default var new-list))))
829 :type '(set :greedy t
830 (const :tag " ascii Export buffer to ASCII format" ascii)
831 (const :tag " beamer Export buffer to Beamer presentation" beamer)
832 (const :tag " html Export buffer to HTML format" html)
833 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
834 (const :tag " latex Export buffer to LaTeX format" latex)
835 (const :tag " man Export buffer to MAN format" man)
836 (const :tag " md Export buffer to Markdown format" md)
837 (const :tag " odt Export buffer to ODT format" odt)
838 (const :tag " org Export buffer to Org format" org)
839 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
840 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
841 (const :tag "C deck Export buffer to deck.js presentations" deck)
842 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
843 (const :tag "C groff Export buffer to Groff format" groff)
844 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
845 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
846 (const :tag "C s5 Export buffer to s5 presentations" s5)
847 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
849 (eval-after-load 'ox
850 '(mapc
851 (lambda (backend)
852 (condition-case nil (require (intern (format "ox-%s" backend)))
853 (error (message "Problems while trying to load export back-end `%s'"
854 backend))))
855 org-export-backends))
857 (defcustom org-support-shift-select nil
858 "Non-nil means make shift-cursor commands select text when possible.
860 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
861 start selecting a region, or enlarge regions started in this way.
862 In Org-mode, in special contexts, these same keys are used for
863 other purposes, important enough to compete with shift selection.
864 Org tries to balance these needs by supporting `shift-select-mode'
865 outside these special contexts, under control of this variable.
867 The default of this variable is nil, to avoid confusing behavior. Shifted
868 cursor keys will then execute Org commands in the following contexts:
869 - on a headline, changing TODO state (left/right) and priority (up/down)
870 - on a time stamp, changing the time
871 - in a plain list item, changing the bullet type
872 - in a property definition line, switching between allowed values
873 - in the BEGIN line of a clock table (changing the time block).
874 Outside these contexts, the commands will throw an error.
876 When this variable is t and the cursor is not in a special
877 context, Org-mode will support shift-selection for making and
878 enlarging regions. To make this more effective, the bullet
879 cycling will no longer happen anywhere in an item line, but only
880 if the cursor is exactly on the bullet.
882 If you set this variable to the symbol `always', then the keys
883 will not be special in headlines, property lines, and item lines,
884 to make shift selection work there as well. If this is what you
885 want, you can use the following alternative commands: `C-c C-t'
886 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
887 can be used to switch TODO sets, `C-c -' to cycle item bullet
888 types, and properties can be edited by hand or in column view.
890 However, when the cursor is on a timestamp, shift-cursor commands
891 will still edit the time stamp - this is just too good to give up.
893 XEmacs user should have this variable set to nil, because
894 `shift-select-mode' is in Emacs 23 or later only."
895 :group 'org
896 :type '(choice
897 (const :tag "Never" nil)
898 (const :tag "When outside special context" t)
899 (const :tag "Everywhere except timestamps" always)))
901 (defcustom org-loop-over-headlines-in-active-region nil
902 "Shall some commands act upon headlines in the active region?
904 When set to `t', some commands will be performed in all headlines
905 within the active region.
907 When set to `start-level', some commands will be performed in all
908 headlines within the active region, provided that these headlines
909 are of the same level than the first one.
911 When set to a string, those commands will be performed on the
912 matching headlines within the active region. Such string must be
913 a tags/property/todo match as it is used in the agenda tags view.
915 The list of commands is: `org-schedule', `org-deadline',
916 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
917 `org-archive-to-archive-sibling'. The archiving commands skip
918 already archived entries."
919 :type '(choice (const :tag "Don't loop" nil)
920 (const :tag "All headlines in active region" t)
921 (const :tag "In active region, headlines at the same level than the first one" start-level)
922 (string :tag "Tags/Property/Todo matcher"))
923 :version "24.1"
924 :group 'org-todo
925 :group 'org-archive)
927 (defgroup org-startup nil
928 "Options concerning startup of Org-mode."
929 :tag "Org Startup"
930 :group 'org)
932 (defcustom org-startup-folded t
933 "Non-nil means entering Org-mode will switch to OVERVIEW.
934 This can also be configured on a per-file basis by adding one of
935 the following lines anywhere in the buffer:
937 #+STARTUP: fold (or `overview', this is equivalent)
938 #+STARTUP: nofold (or `showall', this is equivalent)
939 #+STARTUP: content
940 #+STARTUP: showeverything
942 By default, this option is ignored when Org opens agenda files
943 for the first time. If you want the agenda to honor the startup
944 option, set `org-agenda-inhibit-startup' to nil."
945 :group 'org-startup
946 :type '(choice
947 (const :tag "nofold: show all" nil)
948 (const :tag "fold: overview" t)
949 (const :tag "content: all headlines" content)
950 (const :tag "show everything, even drawers" showeverything)))
952 (defcustom org-startup-truncated t
953 "Non-nil means entering Org-mode will set `truncate-lines'.
954 This is useful since some lines containing links can be very long and
955 uninteresting. Also tables look terrible when wrapped."
956 :group 'org-startup
957 :type 'boolean)
959 (defcustom org-startup-indented nil
960 "Non-nil means turn on `org-indent-mode' on startup.
961 This can also be configured on a per-file basis by adding one of
962 the following lines anywhere in the buffer:
964 #+STARTUP: indent
965 #+STARTUP: noindent"
966 :group 'org-structure
967 :type '(choice
968 (const :tag "Not" nil)
969 (const :tag "Globally (slow on startup in large files)" t)))
971 (defcustom org-use-sub-superscripts t
972 "Non-nil means interpret \"_\" and \"^\" for display.
974 If you want to control how Org exports those characters, see
975 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
976 used to be an alias for `org-export-with-sub-superscripts' in
977 Org <8.0, it is not anymore.
979 When this option is turned on, you can use TeX-like syntax for
980 sub- and superscripts within the buffer. Several characters after
981 \"_\" or \"^\" will be considered as a single item - so grouping
982 with {} is normally not needed. For example, the following things
983 will be parsed as single sub- or superscripts:
985 10^24 or 10^tau several digits will be considered 1 item.
986 10^-12 or 10^-tau a leading sign with digits or a word
987 x^2-y^3 will be read as x^2 - y^3, because items are
988 terminated by almost any nonword/nondigit char.
989 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
991 Still, ambiguity is possible. So when in doubt, use {} to enclose
992 the sub/superscript. If you set this variable to the symbol `{}',
993 the braces are *required* in order to trigger interpretations as
994 sub/superscript. This can be helpful in documents that need \"_\"
995 frequently in plain text."
996 :group 'org-startup
997 :version "24.4"
998 :package-version '(Org . "8.0")
999 :type '(choice
1000 (const :tag "Always interpret" t)
1001 (const :tag "Only with braces" {})
1002 (const :tag "Never interpret" nil)))
1004 (defcustom org-startup-with-beamer-mode nil
1005 "Non-nil means turn on `org-beamer-mode' on startup.
1006 This can also be configured on a per-file basis by adding one of
1007 the following lines anywhere in the buffer:
1009 #+STARTUP: beamer"
1010 :group 'org-startup
1011 :version "24.1"
1012 :type 'boolean)
1014 (defcustom org-startup-align-all-tables nil
1015 "Non-nil means align all tables when visiting a file.
1016 This is useful when the column width in tables is forced with <N> cookies
1017 in table fields. Such tables will look correct only after the first re-align.
1018 This can also be configured on a per-file basis by adding one of
1019 the following lines anywhere in the buffer:
1020 #+STARTUP: align
1021 #+STARTUP: noalign"
1022 :group 'org-startup
1023 :type 'boolean)
1025 (defcustom org-startup-with-inline-images nil
1026 "Non-nil means show inline images when loading a new Org file.
1027 This can also be configured on a per-file basis by adding one of
1028 the following lines anywhere in the buffer:
1029 #+STARTUP: inlineimages
1030 #+STARTUP: noinlineimages"
1031 :group 'org-startup
1032 :version "24.1"
1033 :type 'boolean)
1035 (defcustom org-startup-with-latex-preview nil
1036 "Non-nil means preview LaTeX fragments when loading a new Org file.
1038 This can also be configured on a per-file basis by adding one of
1039 the following lines anywhere in the buffer:
1040 #+STARTUP: latexpreview
1041 #+STARTUP: nolatexpreview"
1042 :group 'org-startup
1043 :version "24.4"
1044 :package-version '(Org . "8.0")
1045 :type 'boolean)
1047 (defcustom org-insert-mode-line-in-empty-file nil
1048 "Non-nil means insert the first line setting Org-mode in empty files.
1049 When the function `org-mode' is called interactively in an empty file, this
1050 normally means that the file name does not automatically trigger Org-mode.
1051 To ensure that the file will always be in Org-mode in the future, a
1052 line enforcing Org-mode will be inserted into the buffer, if this option
1053 has been set."
1054 :group 'org-startup
1055 :type 'boolean)
1057 (defcustom org-replace-disputed-keys nil
1058 "Non-nil means use alternative key bindings for some keys.
1059 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1060 These keys are also used by other packages like shift-selection-mode'
1061 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1062 If you want to use Org-mode together with one of these other modes,
1063 or more generally if you would like to move some Org-mode commands to
1064 other keys, set this variable and configure the keys with the variable
1065 `org-disputed-keys'.
1067 This option is only relevant at load-time of Org-mode, and must be set
1068 *before* org.el is loaded. Changing it requires a restart of Emacs to
1069 become effective."
1070 :group 'org-startup
1071 :type 'boolean)
1073 (defcustom org-use-extra-keys nil
1074 "Non-nil means use extra key sequence definitions for certain commands.
1075 This happens automatically if you run XEmacs or if `window-system'
1076 is nil. This variable lets you do the same manually. You must
1077 set it before loading org.
1079 Example: on Carbon Emacs 22 running graphically, with an external
1080 keyboard on a Powerbook, the default way of setting M-left might
1081 not work for either Alt or ESC. Setting this variable will make
1082 it work for ESC."
1083 :group 'org-startup
1084 :type 'boolean)
1086 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1088 (defcustom org-disputed-keys
1089 '(([(shift up)] . [(meta p)])
1090 ([(shift down)] . [(meta n)])
1091 ([(shift left)] . [(meta -)])
1092 ([(shift right)] . [(meta +)])
1093 ([(control shift right)] . [(meta shift +)])
1094 ([(control shift left)] . [(meta shift -)]))
1095 "Keys for which Org-mode and other modes compete.
1096 This is an alist, cars are the default keys, second element specifies
1097 the alternative to use when `org-replace-disputed-keys' is t.
1099 Keys can be specified in any syntax supported by `define-key'.
1100 The value of this option takes effect only at Org-mode's startup,
1101 therefore you'll have to restart Emacs to apply it after changing."
1102 :group 'org-startup
1103 :type 'alist)
1105 (defun org-key (key)
1106 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1107 Or return the original if not disputed.
1108 Also apply the translations defined in `org-xemacs-key-equivalents'."
1109 (when org-replace-disputed-keys
1110 (let* ((nkey (key-description key))
1111 (x (org-find-if (lambda (x)
1112 (equal (key-description (car x)) nkey))
1113 org-disputed-keys)))
1114 (setq key (if x (cdr x) key))))
1115 (when (featurep 'xemacs)
1116 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1117 key)
1119 (defun org-find-if (predicate seq)
1120 (catch 'exit
1121 (while seq
1122 (if (funcall predicate (car seq))
1123 (throw 'exit (car seq))
1124 (pop seq)))))
1126 (defun org-defkey (keymap key def)
1127 "Define a key, possibly translated, as returned by `org-key'."
1128 (define-key keymap (org-key key) def))
1130 (defcustom org-ellipsis nil
1131 "The ellipsis to use in the Org-mode outline.
1132 When nil, just use the standard three dots.
1133 When a string, use that string instead.
1134 When a face, use the standard 3 dots, but with the specified face.
1135 The change affects only Org-mode (which will then use its own display table).
1136 Changing this requires executing \\[org-mode] in a buffer to become
1137 effective."
1138 :group 'org-startup
1139 :type '(choice (const :tag "Default" nil)
1140 (face :tag "Face" :value org-warning)
1141 (string :tag "String" :value "...#")))
1143 (defvar org-display-table nil
1144 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1146 (defgroup org-keywords nil
1147 "Keywords in Org-mode."
1148 :tag "Org Keywords"
1149 :group 'org)
1151 (defcustom org-closed-keep-when-no-todo nil
1152 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1153 :group 'org-todo
1154 :group 'org-keywords
1155 :version "24.4"
1156 :package-version '(Org . "8.0")
1157 :type 'boolean)
1159 (defgroup org-structure nil
1160 "Options concerning the general structure of Org-mode files."
1161 :tag "Org Structure"
1162 :group 'org)
1164 (defgroup org-reveal-location nil
1165 "Options about how to make context of a location visible."
1166 :tag "Org Reveal Location"
1167 :group 'org-structure)
1169 (defcustom org-show-context-detail '((isearch . lineage)
1170 (bookmark-jump . lineage)
1171 (default . ancestors))
1172 "Alist between context and visibility span when revealing a location.
1174 \\<org-mode-map>Some actions may move point into invisible
1175 locations. As a consequence, Org always expose a neighborhood
1176 around point. How much is shown depends on the initial action,
1177 or context. Valid contexts are
1179 agenda when exposing an entry from the agenda
1180 org-goto when using the command `org-goto' (\\[org-goto])
1181 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1182 tags-tree when constructing a sparse tree based on tags matches
1183 link-search when exposing search matches associated with a link
1184 mark-goto when exposing the jump goal of a mark
1185 bookmark-jump when exposing a bookmark location
1186 isearch when exiting from an incremental search
1187 default default for all contexts not set explicitly
1189 Allowed visibility spans are
1191 minimal show current headline; if point is not on headline,
1192 also show entry
1194 local show current headline, entry and next headline
1196 ancestors show current headline and its direct ancestors; if
1197 point is not on headline, also show entry
1199 lineage show current headline, its direct ancestors and all
1200 their children; if point is not on headline, also show
1201 entry and first child
1203 tree show current headline, its direct ancestors and all
1204 their children; if point is not on headline, also show
1205 entry and all children
1207 canonical show current headline, its direct ancestors along with
1208 their entries and children; if point is not located on
1209 the headline, also show current entry and all children
1211 As special cases, a nil or t value means show all contexts in
1212 `minimal' or `canonical' view, respectively.
1214 Some views can make displayed information very compact, but also
1215 make it harder to edit the location of the match. In such
1216 a case, use the command `org-reveal' (\\[org-reveal]) to show
1217 more context."
1218 :group 'org-reveal-location
1219 :version "25.1"
1220 :package-version '(Org . "8.3")
1221 :type '(choice
1222 (const :tag "Canonical" t)
1223 (const :tag "Minimal" nil)
1224 (repeat :greedy t :tag "Individual contexts"
1225 (cons
1226 (choice :tag "Context"
1227 (const agenda)
1228 (const org-goto)
1229 (const occur-tree)
1230 (const tags-tree)
1231 (const link-search)
1232 (const mark-goto)
1233 (const bookmark-jump)
1234 (const isearch)
1235 (const default))
1236 (choice :tag "Detail level"
1237 (const minimal)
1238 (const local)
1239 (const ancestors)
1240 (const lineage)
1241 (const tree)
1242 (const canonical))))))
1244 (defcustom org-indirect-buffer-display 'other-window
1245 "How should indirect tree buffers be displayed?
1246 This applies to indirect buffers created with the commands
1247 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1248 Valid values are:
1249 current-window Display in the current window
1250 other-window Just display in another window.
1251 dedicated-frame Create one new frame, and re-use it each time.
1252 new-frame Make a new frame each time. Note that in this case
1253 previously-made indirect buffers are kept, and you need to
1254 kill these buffers yourself."
1255 :group 'org-structure
1256 :group 'org-agenda-windows
1257 :type '(choice
1258 (const :tag "In current window" current-window)
1259 (const :tag "In current frame, other window" other-window)
1260 (const :tag "Each time a new frame" new-frame)
1261 (const :tag "One dedicated frame" dedicated-frame)))
1263 (defcustom org-use-speed-commands nil
1264 "Non-nil means activate single letter commands at beginning of a headline.
1265 This may also be a function to test for appropriate locations where speed
1266 commands should be active.
1268 For example, to activate speed commands when the point is on any
1269 star at the beginning of the headline, you can do this:
1271 (setq org-use-speed-commands
1272 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1273 :group 'org-structure
1274 :type '(choice
1275 (const :tag "Never" nil)
1276 (const :tag "At beginning of headline stars" t)
1277 (function)))
1279 (defcustom org-speed-commands-user nil
1280 "Alist of additional speed commands.
1281 This list will be checked before `org-speed-commands-default'
1282 when the variable `org-use-speed-commands' is non-nil
1283 and when the cursor is at the beginning of a headline.
1284 The car if each entry is a string with a single letter, which must
1285 be assigned to `self-insert-command' in the global map.
1286 The cdr is either a command to be called interactively, a function
1287 to be called, or a form to be evaluated.
1288 An entry that is just a list with a single string will be interpreted
1289 as a descriptive headline that will be added when listing the speed
1290 commands in the Help buffer using the `?' speed command."
1291 :group 'org-structure
1292 :type '(repeat :value ("k" . ignore)
1293 (choice :value ("k" . ignore)
1294 (list :tag "Descriptive Headline" (string :tag "Headline"))
1295 (cons :tag "Letter and Command"
1296 (string :tag "Command letter")
1297 (choice
1298 (function)
1299 (sexp))))))
1301 (defcustom org-bookmark-names-plist
1302 '(:last-capture "org-capture-last-stored"
1303 :last-refile "org-refile-last-stored"
1304 :last-capture-marker "org-capture-last-stored-marker")
1305 "Names for bookmarks automatically set by some Org commands.
1306 This can provide strings as names for a number of bookmarks Org sets
1307 automatically. The following keys are currently implemented:
1308 :last-capture
1309 :last-capture-marker
1310 :last-refile
1311 When a key does not show up in the property list, the corresponding bookmark
1312 is not set."
1313 :group 'org-structure
1314 :type 'plist)
1316 (defgroup org-cycle nil
1317 "Options concerning visibility cycling in Org-mode."
1318 :tag "Org Cycle"
1319 :group 'org-structure)
1321 (defcustom org-cycle-skip-children-state-if-no-children t
1322 "Non-nil means skip CHILDREN state in entries that don't have any."
1323 :group 'org-cycle
1324 :type 'boolean)
1326 (defcustom org-cycle-max-level nil
1327 "Maximum level which should still be subject to visibility cycling.
1328 Levels higher than this will, for cycling, be treated as text, not a headline.
1329 When `org-odd-levels-only' is set, a value of N in this variable actually
1330 means 2N-1 stars as the limiting headline.
1331 When nil, cycle all levels.
1332 Note that the limiting level of cycling is also influenced by
1333 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1334 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1335 than its value."
1336 :group 'org-cycle
1337 :type '(choice
1338 (const :tag "No limit" nil)
1339 (integer :tag "Maximum level")))
1341 (defcustom org-hide-block-startup nil
1342 "Non-nil means entering Org-mode will fold all blocks.
1343 This can also be set in on a per-file basis with
1345 #+STARTUP: hideblocks
1346 #+STARTUP: showblocks"
1347 :group 'org-startup
1348 :group 'org-cycle
1349 :type 'boolean)
1351 (defcustom org-cycle-global-at-bob nil
1352 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1353 This makes it possible to do global cycling without having to use S-TAB or
1354 \\[universal-argument] TAB. For this special case to work, the first line
1355 of the buffer must not be a headline -- it may be empty or some other text.
1356 When used in this way, `org-cycle-hook' is disabled temporarily to make
1357 sure the cursor stays at the beginning of the buffer. When this option is
1358 nil, don't do anything special at the beginning of the buffer."
1359 :group 'org-cycle
1360 :type 'boolean)
1362 (defcustom org-cycle-level-after-item/entry-creation t
1363 "Non-nil means cycle entry level or item indentation in new empty entries.
1365 When the cursor is at the end of an empty headline, i.e., with only stars
1366 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1367 and then all possible ancestor states, before returning to the original state.
1368 This makes data entry extremely fast: M-RET to create a new headline,
1369 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1371 When the cursor is at the end of an empty plain list item, one TAB will
1372 make it a subitem, two or more tabs will back up to make this an item
1373 higher up in the item hierarchy."
1374 :group 'org-cycle
1375 :type 'boolean)
1377 (defcustom org-cycle-emulate-tab t
1378 "Where should `org-cycle' emulate TAB.
1379 nil Never
1380 white Only in completely white lines
1381 whitestart Only at the beginning of lines, before the first non-white char
1382 t Everywhere except in headlines
1383 exc-hl-bol Everywhere except at the start of a headline
1384 If TAB is used in a place where it does not emulate TAB, the current subtree
1385 visibility is cycled."
1386 :group 'org-cycle
1387 :type '(choice (const :tag "Never" nil)
1388 (const :tag "Only in completely white lines" white)
1389 (const :tag "Before first char in a line" whitestart)
1390 (const :tag "Everywhere except in headlines" t)
1391 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1393 (defcustom org-cycle-separator-lines 2
1394 "Number of empty lines needed to keep an empty line between collapsed trees.
1395 If you leave an empty line between the end of a subtree and the following
1396 headline, this empty line is hidden when the subtree is folded.
1397 Org-mode will leave (exactly) one empty line visible if the number of
1398 empty lines is equal or larger to the number given in this variable.
1399 So the default 2 means at least 2 empty lines after the end of a subtree
1400 are needed to produce free space between a collapsed subtree and the
1401 following headline.
1403 If the number is negative, and the number of empty lines is at least -N,
1404 all empty lines are shown.
1406 Special case: when 0, never leave empty lines in collapsed view."
1407 :group 'org-cycle
1408 :type 'integer)
1409 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1411 (defcustom org-pre-cycle-hook nil
1412 "Hook that is run before visibility cycling is happening.
1413 The function(s) in this hook must accept a single argument which indicates
1414 the new state that will be set right after running this hook. The
1415 argument is a symbol. Before a global state change, it can have the values
1416 `overview', `content', or `all'. Before a local state change, it can have
1417 the values `folded', `children', or `subtree'."
1418 :group 'org-cycle
1419 :type 'hook)
1421 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1422 org-cycle-hide-drawers
1423 org-cycle-hide-inline-tasks
1424 org-cycle-show-empty-lines
1425 org-optimize-window-after-visibility-change)
1426 "Hook that is run after `org-cycle' has changed the buffer visibility.
1427 The function(s) in this hook must accept a single argument which indicates
1428 the new state that was set by the most recent `org-cycle' command. The
1429 argument is a symbol. After a global state change, it can have the values
1430 `overview', `contents', or `all'. After a local state change, it can have
1431 the values `folded', `children', or `subtree'."
1432 :group 'org-cycle
1433 :type 'hook)
1435 (defgroup org-edit-structure nil
1436 "Options concerning structure editing in Org-mode."
1437 :tag "Org Edit Structure"
1438 :group 'org-structure)
1440 (defcustom org-odd-levels-only nil
1441 "Non-nil means skip even levels and only use odd levels for the outline.
1442 This has the effect that two stars are being added/taken away in
1443 promotion/demotion commands. It also influences how levels are
1444 handled by the exporters.
1445 Changing it requires restart of `font-lock-mode' to become effective
1446 for fontification also in regions already fontified.
1447 You may also set this on a per-file basis by adding one of the following
1448 lines to the buffer:
1450 #+STARTUP: odd
1451 #+STARTUP: oddeven"
1452 :group 'org-edit-structure
1453 :group 'org-appearance
1454 :type 'boolean)
1456 (defcustom org-adapt-indentation t
1457 "Non-nil means adapt indentation to outline node level.
1459 When this variable is set, Org assumes that you write outlines by
1460 indenting text in each node to align with the headline (after the
1461 stars). The following issues are influenced by this variable:
1463 - The indentation is increased by one space in a demotion
1464 command, and decreased by one in a promotion command. However,
1465 in the latter case, if shifting some line in the entry body
1466 would alter document structure (e.g., insert a new headline),
1467 indentation is not changed at all.
1469 - Property drawers and planning information is inserted indented
1470 when this variable is set. When nil, they will not be indented.
1472 - TAB indents a line relative to current level. The lines below
1473 a headline will be indented when this variable is set.
1475 Note that this is all about true indentation, by adding and
1476 removing space characters. See also `org-indent.el' which does
1477 level-dependent indentation in a virtual way, i.e. at display
1478 time in Emacs."
1479 :group 'org-edit-structure
1480 :type 'boolean)
1482 (defcustom org-special-ctrl-a/e nil
1483 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1485 When t, `C-a' will bring back the cursor to the beginning of the
1486 headline text, i.e. after the stars and after a possible TODO
1487 keyword. In an item, this will be the position after bullet and
1488 check-box, if any. When the cursor is already at that position,
1489 another `C-a' will bring it to the beginning of the line.
1491 `C-e' will jump to the end of the headline, ignoring the presence
1492 of tags in the headline. A second `C-e' will then jump to the
1493 true end of the line, after any tags. This also means that, when
1494 this variable is non-nil, `C-e' also will never jump beyond the
1495 end of the heading of a folded section, i.e. not after the
1496 ellipses.
1498 When set to the symbol `reversed', the first `C-a' or `C-e' works
1499 normally, going to the true line boundary first. Only a directly
1500 following, identical keypress will bring the cursor to the
1501 special positions.
1503 This may also be a cons cell where the behavior for `C-a' and
1504 `C-e' is set separately."
1505 :group 'org-edit-structure
1506 :type '(choice
1507 (const :tag "off" nil)
1508 (const :tag "on: after stars/bullet and before tags first" t)
1509 (const :tag "reversed: true line boundary first" reversed)
1510 (cons :tag "Set C-a and C-e separately"
1511 (choice :tag "Special C-a"
1512 (const :tag "off" nil)
1513 (const :tag "on: after stars/bullet first" t)
1514 (const :tag "reversed: before stars/bullet first" reversed))
1515 (choice :tag "Special C-e"
1516 (const :tag "off" nil)
1517 (const :tag "on: before tags first" t)
1518 (const :tag "reversed: after tags first" reversed)))))
1519 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1521 (defcustom org-special-ctrl-k nil
1522 "Non-nil means `C-k' will behave specially in headlines.
1523 When nil, `C-k' will call the default `kill-line' command.
1524 When t, the following will happen while the cursor is in the headline:
1526 - When the cursor is at the beginning of a headline, kill the entire
1527 line and possible the folded subtree below the line.
1528 - When in the middle of the headline text, kill the headline up to the tags.
1529 - When after the headline text, kill the tags."
1530 :group 'org-edit-structure
1531 :type 'boolean)
1533 (defcustom org-ctrl-k-protect-subtree nil
1534 "Non-nil means, do not delete a hidden subtree with C-k.
1535 When set to the symbol `error', simply throw an error when C-k is
1536 used to kill (part-of) a headline that has hidden text behind it.
1537 Any other non-nil value will result in a query to the user, if it is
1538 OK to kill that hidden subtree. When nil, kill without remorse."
1539 :group 'org-edit-structure
1540 :version "24.1"
1541 :type '(choice
1542 (const :tag "Do not protect hidden subtrees" nil)
1543 (const :tag "Protect hidden subtrees with a security query" t)
1544 (const :tag "Never kill a hidden subtree with C-k" error)))
1546 (defcustom org-special-ctrl-o t
1547 "Non-nil means, make `C-o' insert a row in tables."
1548 :group 'org-edit-structure
1549 :type 'boolean)
1551 (defcustom org-catch-invisible-edits nil
1552 "Check if in invisible region before inserting or deleting a character.
1553 Valid values are:
1555 nil Do not check, so just do invisible edits.
1556 error Throw an error and do nothing.
1557 show Make point visible, and do the requested edit.
1558 show-and-error Make point visible, then throw an error and abort the edit.
1559 smart Make point visible, and do insertion/deletion if it is
1560 adjacent to visible text and the change feels predictable.
1561 Never delete a previously invisible character or add in the
1562 middle or right after an invisible region. Basically, this
1563 allows insertion and backward-delete right before ellipses.
1564 FIXME: maybe in this case we should not even show?"
1565 :group 'org-edit-structure
1566 :version "24.1"
1567 :type '(choice
1568 (const :tag "Do not check" nil)
1569 (const :tag "Throw error when trying to edit" error)
1570 (const :tag "Unhide, but do not do the edit" show-and-error)
1571 (const :tag "Show invisible part and do the edit" show)
1572 (const :tag "Be smart and do the right thing" smart)))
1574 (defcustom org-yank-folded-subtrees t
1575 "Non-nil means when yanking subtrees, fold them.
1576 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1577 it starts with a heading and all other headings in it are either children
1578 or siblings, then fold all the subtrees. However, do this only if no
1579 text after the yank would be swallowed into a folded tree by this action."
1580 :group 'org-edit-structure
1581 :type 'boolean)
1583 (defcustom org-yank-adjusted-subtrees nil
1584 "Non-nil means when yanking subtrees, adjust the level.
1585 With this setting, `org-paste-subtree' is used to insert the subtree, see
1586 this function for details."
1587 :group 'org-edit-structure
1588 :type 'boolean)
1590 (defcustom org-M-RET-may-split-line '((default . t))
1591 "Non-nil means M-RET will split the line at the cursor position.
1592 When nil, it will go to the end of the line before making a
1593 new line.
1594 You may also set this option in a different way for different
1595 contexts. Valid contexts are:
1597 headline when creating a new headline
1598 item when creating a new item
1599 table in a table field
1600 default the value to be used for all contexts not explicitly
1601 customized"
1602 :group 'org-structure
1603 :group 'org-table
1604 :type '(choice
1605 (const :tag "Always" t)
1606 (const :tag "Never" nil)
1607 (repeat :greedy t :tag "Individual contexts"
1608 (cons
1609 (choice :tag "Context"
1610 (const headline)
1611 (const item)
1612 (const table)
1613 (const default))
1614 (boolean)))))
1617 (defcustom org-insert-heading-respect-content nil
1618 "Non-nil means insert new headings after the current subtree.
1619 When nil, the new heading is created directly after the current line.
1620 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1621 this variable on for the duration of the command."
1622 :group 'org-structure
1623 :type 'boolean)
1625 (defcustom org-blank-before-new-entry '((heading . auto)
1626 (plain-list-item . auto))
1627 "Should `org-insert-heading' leave a blank line before new heading/item?
1628 The value is an alist, with `heading' and `plain-list-item' as CAR,
1629 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1630 which case Org will look at the surrounding headings/items and try to
1631 make an intelligent decision whether to insert a blank line or not.
1633 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1634 the setting here is ignored and no empty line is inserted to avoid breaking
1635 the list structure."
1636 :group 'org-edit-structure
1637 :type '(list
1638 (cons (const heading)
1639 (choice (const :tag "Never" nil)
1640 (const :tag "Always" t)
1641 (const :tag "Auto" auto)))
1642 (cons (const plain-list-item)
1643 (choice (const :tag "Never" nil)
1644 (const :tag "Always" t)
1645 (const :tag "Auto" auto)))))
1647 (defcustom org-insert-heading-hook nil
1648 "Hook being run after inserting a new heading."
1649 :group 'org-edit-structure
1650 :type 'hook)
1652 (defcustom org-enable-fixed-width-editor t
1653 "Non-nil means lines starting with \":\" are treated as fixed-width.
1654 This currently only means they are never auto-wrapped.
1655 When nil, such lines will be treated like ordinary lines."
1656 :group 'org-edit-structure
1657 :type 'boolean)
1659 (defcustom org-goto-auto-isearch t
1660 "Non-nil means typing characters in `org-goto' starts incremental search.
1661 When nil, you can use these keybindings to navigate the buffer:
1663 q Quit the org-goto interface
1664 n Go to the next visible heading
1665 p Go to the previous visible heading
1666 f Go one heading forward on same level
1667 b Go one heading backward on same level
1668 u Go one heading up"
1669 :group 'org-edit-structure
1670 :type 'boolean)
1672 (defgroup org-sparse-trees nil
1673 "Options concerning sparse trees in Org-mode."
1674 :tag "Org Sparse Trees"
1675 :group 'org-structure)
1677 (defcustom org-highlight-sparse-tree-matches t
1678 "Non-nil means highlight all matches that define a sparse tree.
1679 The highlights will automatically disappear the next time the buffer is
1680 changed by an edit command."
1681 :group 'org-sparse-trees
1682 :type 'boolean)
1684 (defcustom org-remove-highlights-with-change t
1685 "Non-nil means any change to the buffer will remove temporary highlights.
1686 Such highlights are created by `org-occur' and `org-clock-display'.
1687 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1688 The highlights created by `org-toggle-latex-fragment' always need
1689 `C-c C-x C-l' to be removed."
1690 :group 'org-sparse-trees
1691 :group 'org-time
1692 :type 'boolean)
1695 (defcustom org-occur-hook '(org-first-headline-recenter)
1696 "Hook that is run after `org-occur' has constructed a sparse tree.
1697 This can be used to recenter the window to show as much of the structure
1698 as possible."
1699 :group 'org-sparse-trees
1700 :type 'hook)
1702 (defgroup org-imenu-and-speedbar nil
1703 "Options concerning imenu and speedbar in Org-mode."
1704 :tag "Org Imenu and Speedbar"
1705 :group 'org-structure)
1707 (defcustom org-imenu-depth 2
1708 "The maximum level for Imenu access to Org-mode headlines.
1709 This also applied for speedbar access."
1710 :group 'org-imenu-and-speedbar
1711 :type 'integer)
1713 (defgroup org-table nil
1714 "Options concerning tables in Org-mode."
1715 :tag "Org Table"
1716 :group 'org)
1718 (defcustom org-enable-table-editor 'optimized
1719 "Non-nil means lines starting with \"|\" are handled by the table editor.
1720 When nil, such lines will be treated like ordinary lines.
1722 When equal to the symbol `optimized', the table editor will be optimized to
1723 do the following:
1724 - Automatic overwrite mode in front of whitespace in table fields.
1725 This makes the structure of the table stay in tact as long as the edited
1726 field does not exceed the column width.
1727 - Minimize the number of realigns. Normally, the table is aligned each time
1728 TAB or RET are pressed to move to another field. With optimization this
1729 happens only if changes to a field might have changed the column width.
1730 Optimization requires replacing the functions `self-insert-command',
1731 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1732 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1733 very good at guessing when a re-align will be necessary, but you can always
1734 force one with \\[org-ctrl-c-ctrl-c].
1736 If you would like to use the optimized version in Org-mode, but the
1737 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1739 This variable can be used to turn on and off the table editor during a session,
1740 but in order to toggle optimization, a restart is required.
1742 See also the variable `org-table-auto-blank-field'."
1743 :group 'org-table
1744 :type '(choice
1745 (const :tag "off" nil)
1746 (const :tag "on" t)
1747 (const :tag "on, optimized" optimized)))
1749 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1750 (version<= emacs-version "24.1"))
1751 "Non-nil means cluster self-insert commands for undo when possible.
1752 If this is set, then, like in the Emacs command loop, 20 consecutive
1753 characters will be undone together.
1754 This is configurable, because there is some impact on typing performance."
1755 :group 'org-table
1756 :type 'boolean)
1758 (defcustom org-table-tab-recognizes-table.el t
1759 "Non-nil means TAB will automatically notice a table.el table.
1760 When it sees such a table, it moves point into it and - if necessary -
1761 calls `table-recognize-table'."
1762 :group 'org-table-editing
1763 :type 'boolean)
1765 (defgroup org-link nil
1766 "Options concerning links in Org-mode."
1767 :tag "Org Link"
1768 :group 'org)
1770 (defvar org-link-abbrev-alist-local nil
1771 "Buffer-local version of `org-link-abbrev-alist', which see.
1772 The value of this is taken from the #+LINK lines.")
1773 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1775 (defcustom org-link-abbrev-alist nil
1776 "Alist of link abbreviations.
1777 The car of each element is a string, to be replaced at the start of a link.
1778 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1779 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1781 [[linkkey:tag][description]]
1783 The 'linkkey' must be a word word, starting with a letter, followed
1784 by letters, numbers, '-' or '_'.
1786 If REPLACE is a string, the tag will simply be appended to create the link.
1787 If the string contains \"%s\", the tag will be inserted there. If the string
1788 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1789 at that point (see the function `url-hexify-string'). If the string contains
1790 the specifier \"%(my-function)\", then the custom function `my-function' will
1791 be invoked: this function takes the tag as its only argument and must return
1792 a string.
1794 REPLACE may also be a function that will be called with the tag as the
1795 only argument to create the link, which should be returned as a string.
1797 See the manual for examples."
1798 :group 'org-link
1799 :type '(repeat
1800 (cons
1801 (string :tag "Protocol")
1802 (choice
1803 (string :tag "Format")
1804 (function)))))
1806 (defcustom org-descriptive-links t
1807 "Non-nil means Org will display descriptive links.
1808 E.g. [[http://orgmode.org][Org website]] will be displayed as
1809 \"Org Website\", hiding the link itself and just displaying its
1810 description. When set to `nil', Org will display the full links
1811 literally.
1813 You can interactively set the value of this variable by calling
1814 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1815 :group 'org-link
1816 :type 'boolean)
1818 (defcustom org-link-file-path-type 'adaptive
1819 "How the path name in file links should be stored.
1820 Valid values are:
1822 relative Relative to the current directory, i.e. the directory of the file
1823 into which the link is being inserted.
1824 absolute Absolute path, if possible with ~ for home directory.
1825 noabbrev Absolute path, no abbreviation of home directory.
1826 adaptive Use relative path for files in the current directory and sub-
1827 directories of it. For other files, use an absolute path."
1828 :group 'org-link
1829 :type '(choice
1830 (const relative)
1831 (const absolute)
1832 (const noabbrev)
1833 (const adaptive)))
1835 (defvaralias 'org-activate-links 'org-highlight-links)
1836 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1837 "Types of links that should be highlighted in Org-mode files.
1839 This is a list of symbols, each one of them leading to the
1840 highlighting of a certain link type.
1842 You can still open links that are not highlighted.
1844 In principle, it does not hurt to turn on highlighting for all
1845 link types. There may be a small gain when turning off unused
1846 link types. The types are:
1848 bracket The recommended [[link][description]] or [[link]] links with hiding.
1849 angle Links in angular brackets that may contain whitespace like
1850 <bbdb:Carsten Dominik>.
1851 plain Plain links in normal text, no whitespace, like http://google.com.
1852 radio Text that is matched by a radio target, see manual for details.
1853 tag Tag settings in a headline (link to tag search).
1854 date Time stamps (link to calendar).
1855 footnote Footnote labels.
1857 If you set this variable during an Emacs session, use `org-mode-restart'
1858 in the Org buffer so that the change takes effect."
1859 :group 'org-link
1860 :group 'org-appearance
1861 :type '(set :greedy t
1862 (const :tag "Double bracket links" bracket)
1863 (const :tag "Angular bracket links" angle)
1864 (const :tag "Plain text links" plain)
1865 (const :tag "Radio target matches" radio)
1866 (const :tag "Tags" tag)
1867 (const :tag "Timestamps" date)
1868 (const :tag "Footnotes" footnote)))
1870 (defcustom org-make-link-description-function nil
1871 "Function to use for generating link descriptions from links.
1872 When nil, the link location will be used. This function must take
1873 two parameters: the first one is the link, the second one is the
1874 description generated by `org-insert-link'. The function should
1875 return the description to use."
1876 :group 'org-link
1877 :type '(choice (const nil) (function)))
1879 (defgroup org-link-store nil
1880 "Options concerning storing links in Org-mode."
1881 :tag "Org Store Link"
1882 :group 'org-link)
1884 (defcustom org-url-hexify-p t
1885 "When non-nil, hexify URL when creating a link."
1886 :type 'boolean
1887 :version "24.3"
1888 :group 'org-link-store)
1890 (defcustom org-email-link-description-format "Email %c: %.30s"
1891 "Format of the description part of a link to an email or usenet message.
1892 The following %-escapes will be replaced by corresponding information:
1894 %F full \"From\" field
1895 %f name, taken from \"From\" field, address if no name
1896 %T full \"To\" field
1897 %t first name in \"To\" field, address if no name
1898 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1899 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1900 %s subject
1901 %d date
1902 %m message-id.
1904 You may use normal field width specification between the % and the letter.
1905 This is for example useful to limit the length of the subject.
1907 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1908 :group 'org-link-store
1909 :type 'string)
1911 (defcustom org-from-is-user-regexp
1912 (let (r1 r2)
1913 (when (and user-mail-address (not (string= user-mail-address "")))
1914 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1915 (when (and user-full-name (not (string= user-full-name "")))
1916 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1917 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1918 "Regexp matched against the \"From:\" header of an email or usenet message.
1919 It should match if the message is from the user him/herself."
1920 :group 'org-link-store
1921 :type 'regexp)
1923 (defcustom org-context-in-file-links t
1924 "Non-nil means file links from `org-store-link' contain context.
1925 A search string will be added to the file name with :: as separator and
1926 used to find the context when the link is activated by the command
1927 `org-open-at-point'. When this option is t, the entire active region
1928 will be placed in the search string of the file link. If set to a
1929 positive integer, only the first n lines of context will be stored.
1931 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1932 negates this setting for the duration of the command."
1933 :group 'org-link-store
1934 :type '(choice boolean integer))
1936 (defcustom org-keep-stored-link-after-insertion nil
1937 "Non-nil means keep link in list for entire session.
1939 The command `org-store-link' adds a link pointing to the current
1940 location to an internal list. These links accumulate during a session.
1941 The command `org-insert-link' can be used to insert links into any
1942 Org-mode file (offering completion for all stored links). When this
1943 option is nil, every link which has been inserted once using \\[org-insert-link]
1944 will be removed from the list, to make completing the unused links
1945 more efficient."
1946 :group 'org-link-store
1947 :type 'boolean)
1949 (defgroup org-link-follow nil
1950 "Options concerning following links in Org-mode."
1951 :tag "Org Follow Link"
1952 :group 'org-link)
1954 (defcustom org-link-translation-function nil
1955 "Function to translate links with different syntax to Org syntax.
1956 This can be used to translate links created for example by the Planner
1957 or emacs-wiki packages to Org syntax.
1958 The function must accept two parameters, a TYPE containing the link
1959 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1960 which is everything after the link protocol. It should return a cons
1961 with possibly modified values of type and path.
1962 Org contains a function for this, so if you set this variable to
1963 `org-translate-link-from-planner', you should be able follow many
1964 links created by planner."
1965 :group 'org-link-follow
1966 :type '(choice (const nil) (function)))
1968 (defcustom org-follow-link-hook nil
1969 "Hook that is run after a link has been followed."
1970 :group 'org-link-follow
1971 :type 'hook)
1973 (defcustom org-tab-follows-link nil
1974 "Non-nil means on links TAB will follow the link.
1975 Needs to be set before org.el is loaded.
1976 This really should not be used, it does not make sense, and the
1977 implementation is bad."
1978 :group 'org-link-follow
1979 :type 'boolean)
1981 (defcustom org-return-follows-link nil
1982 "Non-nil means on links RET will follow the link.
1983 In tables, the special behavior of RET has precedence."
1984 :group 'org-link-follow
1985 :type 'boolean)
1987 (defcustom org-mouse-1-follows-link
1988 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1989 "Non-nil means mouse-1 on a link will follow the link.
1990 A longer mouse click will still set point. Does not work on XEmacs.
1991 Needs to be set before org.el is loaded."
1992 :group 'org-link-follow
1993 :version "24.4"
1994 :package-version '(Org . "8.3")
1995 :type '(choice
1996 (const :tag "A double click follows the link" double)
1997 (const :tag "Unconditionally follow the link with mouse-1" t)
1998 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2000 (defcustom org-mark-ring-length 4
2001 "Number of different positions to be recorded in the ring.
2002 Changing this requires a restart of Emacs to work correctly."
2003 :group 'org-link-follow
2004 :type 'integer)
2006 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2007 "Non-nil means internal links in Org files must exactly match a headline.
2008 When nil, the link search tries to match a phrase with all words
2009 in the search text."
2010 :group 'org-link-follow
2011 :version "24.1"
2012 :type '(choice
2013 (const :tag "Use fuzzy text search" nil)
2014 (const :tag "Match only exact headline" t)
2015 (const :tag "Match exact headline or query to create it"
2016 query-to-create)))
2018 (defcustom org-link-frame-setup
2019 '((vm . vm-visit-folder-other-frame)
2020 (vm-imap . vm-visit-imap-folder-other-frame)
2021 (gnus . org-gnus-no-new-news)
2022 (file . find-file-other-window)
2023 (wl . wl-other-frame))
2024 "Setup the frame configuration for following links.
2025 When following a link with Emacs, it may often be useful to display
2026 this link in another window or frame. This variable can be used to
2027 set this up for the different types of links.
2028 For VM, use any of
2029 `vm-visit-folder'
2030 `vm-visit-folder-other-window'
2031 `vm-visit-folder-other-frame'
2032 For Gnus, use any of
2033 `gnus'
2034 `gnus-other-frame'
2035 `org-gnus-no-new-news'
2036 For FILE, use any of
2037 `find-file'
2038 `find-file-other-window'
2039 `find-file-other-frame'
2040 For Wanderlust use any of
2041 `wl'
2042 `wl-other-frame'
2043 For the calendar, use the variable `calendar-setup'.
2044 For BBDB, it is currently only possible to display the matches in
2045 another window."
2046 :group 'org-link-follow
2047 :type '(list
2048 (cons (const vm)
2049 (choice
2050 (const vm-visit-folder)
2051 (const vm-visit-folder-other-window)
2052 (const vm-visit-folder-other-frame)))
2053 (cons (const vm-imap)
2054 (choice
2055 (const vm-visit-imap-folder)
2056 (const vm-visit-imap-folder-other-window)
2057 (const vm-visit-imap-folder-other-frame)))
2058 (cons (const gnus)
2059 (choice
2060 (const gnus)
2061 (const gnus-other-frame)
2062 (const org-gnus-no-new-news)))
2063 (cons (const file)
2064 (choice
2065 (const find-file)
2066 (const find-file-other-window)
2067 (const find-file-other-frame)))
2068 (cons (const wl)
2069 (choice
2070 (const wl)
2071 (const wl-other-frame)))))
2073 (defcustom org-display-internal-link-with-indirect-buffer nil
2074 "Non-nil means use indirect buffer to display infile links.
2075 Activating internal links (from one location in a file to another location
2076 in the same file) normally just jumps to the location. When the link is
2077 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2078 is displayed in
2079 another window. When this option is set, the other window actually displays
2080 an indirect buffer clone of the current buffer, to avoid any visibility
2081 changes to the current buffer."
2082 :group 'org-link-follow
2083 :type 'boolean)
2085 (defcustom org-open-non-existing-files nil
2086 "Non-nil means `org-open-file' will open non-existing files.
2087 When nil, an error will be generated.
2088 This variable applies only to external applications because they
2089 might choke on non-existing files. If the link is to a file that
2090 will be opened in Emacs, the variable is ignored."
2091 :group 'org-link-follow
2092 :type 'boolean)
2094 (defcustom org-open-directory-means-index-dot-org nil
2095 "Non-nil means a link to a directory really means to index.org.
2096 When nil, following a directory link will run dired or open a finder/explorer
2097 window on that directory."
2098 :group 'org-link-follow
2099 :type 'boolean)
2101 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2102 "Non-nil means ask for confirmation before executing shell links.
2103 Shell links can be dangerous: just think about a link
2105 [[shell:rm -rf ~/*][Google Search]]
2107 This link would show up in your Org-mode document as \"Google Search\",
2108 but really it would remove your entire home directory.
2109 Therefore we advise against setting this variable to nil.
2110 Just change it to `y-or-n-p' if you want to confirm with a
2111 single keystroke rather than having to type \"yes\"."
2112 :group 'org-link-follow
2113 :type '(choice
2114 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2115 (const :tag "with y-or-n (faster)" y-or-n-p)
2116 (const :tag "no confirmation (dangerous)" nil)))
2117 (put 'org-confirm-shell-link-function
2118 'safe-local-variable
2119 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2121 (defcustom org-confirm-shell-link-not-regexp ""
2122 "A regexp to skip confirmation for shell links."
2123 :group 'org-link-follow
2124 :version "24.1"
2125 :type 'regexp)
2127 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2128 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2129 Elisp links can be dangerous: just think about a link
2131 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2133 This link would show up in your Org-mode document as \"Google Search\",
2134 but really it would remove your entire home directory.
2135 Therefore we advise against setting this variable to nil.
2136 Just change it to `y-or-n-p' if you want to confirm with a
2137 single keystroke rather than having to type \"yes\"."
2138 :group 'org-link-follow
2139 :type '(choice
2140 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2141 (const :tag "with y-or-n (faster)" y-or-n-p)
2142 (const :tag "no confirmation (dangerous)" nil)))
2143 (put 'org-confirm-shell-link-function
2144 'safe-local-variable
2145 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2147 (defcustom org-confirm-elisp-link-not-regexp ""
2148 "A regexp to skip confirmation for Elisp links."
2149 :group 'org-link-follow
2150 :version "24.1"
2151 :type 'regexp)
2153 (defconst org-file-apps-defaults-gnu
2154 '((remote . emacs)
2155 (system . mailcap)
2156 (t . mailcap))
2157 "Default file applications on a UNIX or GNU/Linux system.
2158 See `org-file-apps'.")
2160 (defconst org-file-apps-defaults-macosx
2161 '((remote . emacs)
2162 (t . "open %s")
2163 (system . "open %s")
2164 ("ps.gz" . "gv %s")
2165 ("eps.gz" . "gv %s")
2166 ("dvi" . "xdvi %s")
2167 ("fig" . "xfig %s"))
2168 "Default file applications on a MacOS X system.
2169 The system \"open\" is known as a default, but we use X11 applications
2170 for some files for which the OS does not have a good default.
2171 See `org-file-apps'.")
2173 (defconst org-file-apps-defaults-windowsnt
2174 (list
2175 '(remote . emacs)
2176 (cons t
2177 (list (if (featurep 'xemacs)
2178 'mswindows-shell-execute
2179 'w32-shell-execute)
2180 "open" 'file))
2181 (cons 'system
2182 (list (if (featurep 'xemacs)
2183 'mswindows-shell-execute
2184 'w32-shell-execute)
2185 "open" 'file)))
2186 "Default file applications on a Windows NT system.
2187 The system \"open\" is used for most files.
2188 See `org-file-apps'.")
2190 (defcustom org-file-apps
2191 '((auto-mode . emacs)
2192 ("\\.mm\\'" . default)
2193 ("\\.x?html?\\'" . default)
2194 ("\\.pdf\\'" . default))
2195 "External applications for opening `file:path' items in a document.
2196 Org-mode uses system defaults for different file types, but
2197 you can use this variable to set the application for a given file
2198 extension. The entries in this list are cons cells where the car identifies
2199 files and the cdr the corresponding command. Possible values for the
2200 file identifier are
2201 \"string\" A string as a file identifier can be interpreted in different
2202 ways, depending on its contents:
2204 - Alphanumeric characters only:
2205 Match links with this file extension.
2206 Example: (\"pdf\" . \"evince %s\")
2207 to open PDFs with evince.
2209 - Regular expression: Match links where the
2210 filename matches the regexp. If you want to
2211 use groups here, use shy groups.
2213 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2214 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2215 to open *.html and *.xhtml with firefox.
2217 - Regular expression which contains (non-shy) groups:
2218 Match links where the whole link, including \"::\", and
2219 anything after that, matches the regexp.
2220 In a custom command string, %1, %2, etc. are replaced with
2221 the parts of the link that were matched by the groups.
2222 For backwards compatibility, if a command string is given
2223 that does not use any of the group matches, this case is
2224 handled identically to the second one (i.e. match against
2225 file name only).
2226 In a custom lisp form, you can access the group matches with
2227 (match-string n link).
2229 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2230 to open [[file:document.pdf::5]] with evince at page 5.
2232 `directory' Matches a directory
2233 `remote' Matches a remote file, accessible through tramp or efs.
2234 Remote files most likely should be visited through Emacs
2235 because external applications cannot handle such paths.
2236 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2237 so all files Emacs knows how to handle. Using this with
2238 command `emacs' will open most files in Emacs. Beware that this
2239 will also open html files inside Emacs, unless you add
2240 (\"html\" . default) to the list as well.
2241 t Default for files not matched by any of the other options.
2242 `system' The system command to open files, like `open' on Windows
2243 and Mac OS X, and mailcap under GNU/Linux. This is the command
2244 that will be selected if you call `C-c C-o' with a double
2245 \\[universal-argument] \\[universal-argument] prefix.
2247 Possible values for the command are:
2248 `emacs' The file will be visited by the current Emacs process.
2249 `default' Use the default application for this file type, which is the
2250 association for t in the list, most likely in the system-specific
2251 part.
2252 This can be used to overrule an unwanted setting in the
2253 system-specific variable.
2254 `system' Use the system command for opening files, like \"open\".
2255 This command is specified by the entry whose car is `system'.
2256 Most likely, the system-specific version of this variable
2257 does define this command, but you can overrule/replace it
2258 here.
2259 string A command to be executed by a shell; %s will be replaced
2260 by the path to the file.
2261 sexp A Lisp form which will be evaluated. The file path will
2262 be available in the Lisp variable `file'.
2263 For more examples, see the system specific constants
2264 `org-file-apps-defaults-macosx'
2265 `org-file-apps-defaults-windowsnt'
2266 `org-file-apps-defaults-gnu'."
2267 :group 'org-link-follow
2268 :type '(repeat
2269 (cons (choice :value ""
2270 (string :tag "Extension")
2271 (const :tag "System command to open files" system)
2272 (const :tag "Default for unrecognized files" t)
2273 (const :tag "Remote file" remote)
2274 (const :tag "Links to a directory" directory)
2275 (const :tag "Any files that have Emacs modes"
2276 auto-mode))
2277 (choice :value ""
2278 (const :tag "Visit with Emacs" emacs)
2279 (const :tag "Use default" default)
2280 (const :tag "Use the system command" system)
2281 (string :tag "Command")
2282 (sexp :tag "Lisp form")))))
2284 (defcustom org-doi-server-url "http://dx.doi.org/"
2285 "The URL of the DOI server."
2286 :type 'string
2287 :version "24.3"
2288 :group 'org-link-follow)
2290 (defgroup org-refile nil
2291 "Options concerning refiling entries in Org-mode."
2292 :tag "Org Refile"
2293 :group 'org)
2295 (defcustom org-directory "~/org"
2296 "Directory with org files.
2297 This is just a default location to look for Org files. There is no need
2298 at all to put your files into this directory. It is only used in the
2299 following situations:
2301 1. When a capture template specifies a target file that is not an
2302 absolute path. The path will then be interpreted relative to
2303 `org-directory'
2304 2. When a capture note is filed away in an interactive way (when exiting the
2305 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2306 with `org-directory' as the default path."
2307 :group 'org-refile
2308 :group 'org-capture
2309 :type 'directory)
2311 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2312 "Default target for storing notes.
2313 Used as a fall back file for org-capture.el, for templates that
2314 do not specify a target file."
2315 :group 'org-refile
2316 :group 'org-capture
2317 :type '(choice
2318 (const :tag "Default from remember-data-file" nil)
2319 file))
2321 (defcustom org-goto-interface 'outline
2322 "The default interface to be used for `org-goto'.
2323 Allowed values are:
2324 outline The interface shows an outline of the relevant file
2325 and the correct heading is found by moving through
2326 the outline or by searching with incremental search.
2327 outline-path-completion Headlines in the current buffer are offered via
2328 completion. This is the interface also used by
2329 the refile command."
2330 :group 'org-refile
2331 :type '(choice
2332 (const :tag "Outline" outline)
2333 (const :tag "Outline-path-completion" outline-path-completion)))
2335 (defcustom org-goto-max-level 5
2336 "Maximum target level when running `org-goto' with refile interface."
2337 :group 'org-refile
2338 :type 'integer)
2340 (defcustom org-reverse-note-order nil
2341 "Non-nil means store new notes at the beginning of a file or entry.
2342 When nil, new notes will be filed to the end of a file or entry.
2343 This can also be a list with cons cells of regular expressions that
2344 are matched against file names, and values."
2345 :group 'org-capture
2346 :group 'org-refile
2347 :type '(choice
2348 (const :tag "Reverse always" t)
2349 (const :tag "Reverse never" nil)
2350 (repeat :tag "By file name regexp"
2351 (cons regexp boolean))))
2353 (defcustom org-log-refile nil
2354 "Information to record when a task is refiled.
2356 Possible values are:
2358 nil Don't add anything
2359 time Add a time stamp to the task
2360 note Prompt for a note and add it with template `org-log-note-headings'
2362 This option can also be set with on a per-file-basis with
2364 #+STARTUP: nologrefile
2365 #+STARTUP: logrefile
2366 #+STARTUP: lognoterefile
2368 You can have local logging settings for a subtree by setting the LOGGING
2369 property to one or more of these keywords.
2371 When bulk-refiling from the agenda, the value `note' is forbidden and
2372 will temporarily be changed to `time'."
2373 :group 'org-refile
2374 :group 'org-progress
2375 :version "24.1"
2376 :type '(choice
2377 (const :tag "No logging" nil)
2378 (const :tag "Record timestamp" time)
2379 (const :tag "Record timestamp with note." note)))
2381 (defcustom org-refile-targets nil
2382 "Targets for refiling entries with \\[org-refile].
2383 This is a list of cons cells. Each cell contains:
2384 - a specification of the files to be considered, either a list of files,
2385 or a symbol whose function or variable value will be used to retrieve
2386 a file name or a list of file names. If you use `org-agenda-files' for
2387 that, all agenda files will be scanned for targets. Nil means consider
2388 headings in the current buffer.
2389 - A specification of how to find candidate refile targets. This may be
2390 any of:
2391 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2392 This tag has to be present in all target headlines, inheritance will
2393 not be considered.
2394 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2395 todo keyword.
2396 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2397 headlines that are refiling targets.
2398 - a cons cell (:level . N). Any headline of level N is considered a target.
2399 Note that, when `org-odd-levels-only' is set, level corresponds to
2400 order in hierarchy, not to the number of stars.
2401 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2402 Note that, when `org-odd-levels-only' is set, level corresponds to
2403 order in hierarchy, not to the number of stars.
2405 Each element of this list generates a set of possible targets.
2406 The union of these sets is presented (with completion) to
2407 the user by `org-refile'.
2409 You can set the variable `org-refile-target-verify-function' to a function
2410 to verify each headline found by the simple criteria above.
2412 When this variable is nil, all top-level headlines in the current buffer
2413 are used, equivalent to the value `((nil . (:level . 1))'."
2414 :group 'org-refile
2415 :type '(repeat
2416 (cons
2417 (choice :value org-agenda-files
2418 (const :tag "All agenda files" org-agenda-files)
2419 (const :tag "Current buffer" nil)
2420 (function) (variable) (file))
2421 (choice :tag "Identify target headline by"
2422 (cons :tag "Specific tag" (const :value :tag) (string))
2423 (cons :tag "TODO keyword" (const :value :todo) (string))
2424 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2425 (cons :tag "Level number" (const :value :level) (integer))
2426 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2428 (defcustom org-refile-target-verify-function nil
2429 "Function to verify if the headline at point should be a refile target.
2430 The function will be called without arguments, with point at the
2431 beginning of the headline. It should return t and leave point
2432 where it is if the headline is a valid target for refiling.
2434 If the target should not be selected, the function must return nil.
2435 In addition to this, it may move point to a place from where the search
2436 should be continued. For example, the function may decide that the entire
2437 subtree of the current entry should be excluded and move point to the end
2438 of the subtree."
2439 :group 'org-refile
2440 :type '(choice
2441 (const nil)
2442 (function)))
2444 (defcustom org-refile-use-cache nil
2445 "Non-nil means cache refile targets to speed up the process.
2446 The cache for a particular file will be updated automatically when
2447 the buffer has been killed, or when any of the marker used for flagging
2448 refile targets no longer points at a live buffer.
2449 If you have added new entries to a buffer that might themselves be targets,
2450 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2451 find that easier, `C-u C-u C-u C-c C-w'."
2452 :group 'org-refile
2453 :version "24.1"
2454 :type 'boolean)
2456 (defcustom org-refile-use-outline-path nil
2457 "Non-nil means provide refile targets as paths.
2458 So a level 3 headline will be available as level1/level2/level3.
2460 When the value is `file', also include the file name (without directory)
2461 into the path. In this case, you can also stop the completion after
2462 the file name, to get entries inserted as top level in the file.
2464 When `full-file-path', include the full file path."
2465 :group 'org-refile
2466 :type '(choice
2467 (const :tag "Not" nil)
2468 (const :tag "Yes" t)
2469 (const :tag "Start with file name" file)
2470 (const :tag "Start with full file path" full-file-path)))
2472 (defcustom org-outline-path-complete-in-steps t
2473 "Non-nil means complete the outline path in hierarchical steps.
2474 When Org-mode uses the refile interface to select an outline path
2475 \(see variable `org-refile-use-outline-path'), the completion of
2476 the path can be done is a single go, or if can be done in steps down
2477 the headline hierarchy. Going in steps is probably the best if you
2478 do not use a special completion package like `ido' or `icicles'.
2479 However, when using these packages, going in one step can be very
2480 fast, while still showing the whole path to the entry."
2481 :group 'org-refile
2482 :type 'boolean)
2484 (defcustom org-refile-allow-creating-parent-nodes nil
2485 "Non-nil means allow to create new nodes as refile targets.
2486 New nodes are then created by adding \"/new node name\" to the completion
2487 of an existing node. When the value of this variable is `confirm',
2488 new node creation must be confirmed by the user (recommended).
2489 When nil, the completion must match an existing entry.
2491 Note that, if the new heading is not seen by the criteria
2492 listed in `org-refile-targets', multiple instances of the same
2493 heading would be created by trying again to file under the new
2494 heading."
2495 :group 'org-refile
2496 :type '(choice
2497 (const :tag "Never" nil)
2498 (const :tag "Always" t)
2499 (const :tag "Prompt for confirmation" confirm)))
2501 (defcustom org-refile-active-region-within-subtree nil
2502 "Non-nil means also refile active region within a subtree.
2504 By default `org-refile' doesn't allow refiling regions if they
2505 don't contain a set of subtrees, but it might be convenient to
2506 do so sometimes: in that case, the first line of the region is
2507 converted to a headline before refiling."
2508 :group 'org-refile
2509 :version "24.1"
2510 :type 'boolean)
2512 (defgroup org-todo nil
2513 "Options concerning TODO items in Org-mode."
2514 :tag "Org TODO"
2515 :group 'org)
2517 (defgroup org-progress nil
2518 "Options concerning Progress logging in Org-mode."
2519 :tag "Org Progress"
2520 :group 'org-time)
2522 (defvar org-todo-interpretation-widgets
2523 '((:tag "Sequence (cycling hits every state)" sequence)
2524 (:tag "Type (cycling directly to DONE)" type))
2525 "The available interpretation symbols for customizing `org-todo-keywords'.
2526 Interested libraries should add to this list.")
2528 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2529 "List of TODO entry keyword sequences and their interpretation.
2530 \\<org-mode-map>This is a list of sequences.
2532 Each sequence starts with a symbol, either `sequence' or `type',
2533 indicating if the keywords should be interpreted as a sequence of
2534 action steps, or as different types of TODO items. The first
2535 keywords are states requiring action - these states will select a headline
2536 for inclusion into the global TODO list Org-mode produces. If one of
2537 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2538 signify that no further action is necessary. If \"|\" is not found,
2539 the last keyword is treated as the only DONE state of the sequence.
2541 The command \\[org-todo] cycles an entry through these states, and one
2542 additional state where no keyword is present. For details about this
2543 cycling, see the manual.
2545 TODO keywords and interpretation can also be set on a per-file basis with
2546 the special #+SEQ_TODO and #+TYP_TODO lines.
2548 Each keyword can optionally specify a character for fast state selection
2549 \(in combination with the variable `org-use-fast-todo-selection')
2550 and specifiers for state change logging, using the same syntax that
2551 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2552 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2553 indicates to record a time stamp each time this state is selected.
2555 Each keyword may also specify if a timestamp or a note should be
2556 recorded when entering or leaving the state, by adding additional
2557 characters in the parenthesis after the keyword. This looks like this:
2558 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2559 record only the time of the state change. With X and Y being either
2560 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2561 Y when leaving the state if and only if the *target* state does not
2562 define X. You may omit any of the fast-selection key or X or /Y,
2563 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2565 For backward compatibility, this variable may also be just a list
2566 of keywords. In this case the interpretation (sequence or type) will be
2567 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2568 :group 'org-todo
2569 :group 'org-keywords
2570 :type '(choice
2571 (repeat :tag "Old syntax, just keywords"
2572 (string :tag "Keyword"))
2573 (repeat :tag "New syntax"
2574 (cons
2575 (choice
2576 :tag "Interpretation"
2577 ;;Quick and dirty way to see
2578 ;;`org-todo-interpretations'. This takes the
2579 ;;place of item arguments
2580 :convert-widget
2581 (lambda (widget)
2582 (widget-put widget
2583 :args (mapcar
2584 (lambda (x)
2585 (widget-convert
2586 (cons 'const x)))
2587 org-todo-interpretation-widgets))
2588 widget))
2589 (repeat
2590 (string :tag "Keyword"))))))
2592 (defvar org-todo-keywords-1 nil
2593 "All TODO and DONE keywords active in a buffer.")
2594 (make-variable-buffer-local 'org-todo-keywords-1)
2595 (defvar org-todo-keywords-for-agenda nil)
2596 (defvar org-done-keywords-for-agenda nil)
2597 (defvar org-todo-keyword-alist-for-agenda nil)
2598 (defvar org-tag-alist-for-agenda nil
2599 "Alist of all tags from all agenda files.")
2600 (defvar org-tag-groups-alist-for-agenda nil
2601 "Alist of all groups tags from all current agenda files.")
2602 (defvar org-tag-groups-alist nil)
2603 (make-variable-buffer-local 'org-tag-groups-alist)
2604 (defvar org-agenda-contributing-files nil)
2605 (defvar org-not-done-keywords nil)
2606 (make-variable-buffer-local 'org-not-done-keywords)
2607 (defvar org-done-keywords nil)
2608 (make-variable-buffer-local 'org-done-keywords)
2609 (defvar org-todo-heads nil)
2610 (make-variable-buffer-local 'org-todo-heads)
2611 (defvar org-todo-sets nil)
2612 (make-variable-buffer-local 'org-todo-sets)
2613 (defvar org-todo-log-states nil)
2614 (make-variable-buffer-local 'org-todo-log-states)
2615 (defvar org-todo-kwd-alist nil)
2616 (make-variable-buffer-local 'org-todo-kwd-alist)
2617 (defvar org-todo-key-alist nil)
2618 (make-variable-buffer-local 'org-todo-key-alist)
2619 (defvar org-todo-key-trigger nil)
2620 (make-variable-buffer-local 'org-todo-key-trigger)
2622 (defcustom org-todo-interpretation 'sequence
2623 "Controls how TODO keywords are interpreted.
2624 This variable is in principle obsolete and is only used for
2625 backward compatibility, if the interpretation of todo keywords is
2626 not given already in `org-todo-keywords'. See that variable for
2627 more information."
2628 :group 'org-todo
2629 :group 'org-keywords
2630 :type '(choice (const sequence)
2631 (const type)))
2633 (defcustom org-use-fast-todo-selection t
2634 "Non-nil means use the fast todo selection scheme with C-c C-t.
2635 This variable describes if and under what circumstances the cycling
2636 mechanism for TODO keywords will be replaced by a single-key, direct
2637 selection scheme.
2639 When nil, fast selection is never used.
2641 When the symbol `prefix', it will be used when `org-todo' is called
2642 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2643 `C-u t' in an agenda buffer.
2645 When t, fast selection is used by default. In this case, the prefix
2646 argument forces cycling instead.
2648 In all cases, the special interface is only used if access keys have
2649 actually been assigned by the user, i.e. if keywords in the configuration
2650 are followed by a letter in parenthesis, like TODO(t)."
2651 :group 'org-todo
2652 :type '(choice
2653 (const :tag "Never" nil)
2654 (const :tag "By default" t)
2655 (const :tag "Only with C-u C-c C-t" prefix)))
2657 (defcustom org-provide-todo-statistics t
2658 "Non-nil means update todo statistics after insert and toggle.
2659 ALL-HEADLINES means update todo statistics by including headlines
2660 with no TODO keyword as well, counting them as not done.
2661 A list of TODO keywords means the same, but skip keywords that are
2662 not in this list.
2663 When set to a list of two lists, the first list contains keywords
2664 to consider as TODO keywords, the second list contains keywords
2665 to consider as DONE keywords.
2667 When this is set, todo statistics is updated in the parent of the
2668 current entry each time a todo state is changed."
2669 :group 'org-todo
2670 :type '(choice
2671 (const :tag "Yes, only for TODO entries" t)
2672 (const :tag "Yes, including all entries" all-headlines)
2673 (repeat :tag "Yes, for TODOs in this list"
2674 (string :tag "TODO keyword"))
2675 (list :tag "Yes, for TODOs and DONEs in these lists"
2676 (repeat (string :tag "TODO keyword"))
2677 (repeat (string :tag "DONE keyword")))
2678 (other :tag "No TODO statistics" nil)))
2680 (defcustom org-hierarchical-todo-statistics t
2681 "Non-nil means TODO statistics covers just direct children.
2682 When nil, all entries in the subtree are considered.
2683 This has only an effect if `org-provide-todo-statistics' is set.
2684 To set this to nil for only a single subtree, use a COOKIE_DATA
2685 property and include the word \"recursive\" into the value."
2686 :group 'org-todo
2687 :type 'boolean)
2689 (defcustom org-after-todo-state-change-hook nil
2690 "Hook which is run after the state of a TODO item was changed.
2691 The new state (a string with a TODO keyword, or nil) is available in the
2692 Lisp variable `org-state'."
2693 :group 'org-todo
2694 :type 'hook)
2696 (defvar org-blocker-hook nil
2697 "Hook for functions that are allowed to block a state change.
2699 Functions in this hook should not modify the buffer.
2700 Each function gets as its single argument a property list,
2701 see `org-trigger-hook' for more information about this list.
2703 If any of the functions in this hook returns nil, the state change
2704 is blocked.")
2706 (defvar org-trigger-hook nil
2707 "Hook for functions that are triggered by a state change.
2709 Each function gets as its single argument a property list with at
2710 least the following elements:
2712 (:type type-of-change :position pos-at-entry-start
2713 :from old-state :to new-state)
2715 Depending on the type, more properties may be present.
2717 This mechanism is currently implemented for:
2719 TODO state changes
2720 ------------------
2721 :type todo-state-change
2722 :from previous state (keyword as a string), or nil, or a symbol
2723 'todo' or 'done', to indicate the general type of state.
2724 :to new state, like in :from")
2726 (defcustom org-enforce-todo-dependencies nil
2727 "Non-nil means undone TODO entries will block switching the parent to DONE.
2728 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2729 be blocked if any prior sibling is not yet done.
2730 Finally, if the parent is blocked because of ordered siblings of its own,
2731 the child will also be blocked."
2732 :set (lambda (var val)
2733 (set var val)
2734 (if val
2735 (add-hook 'org-blocker-hook
2736 'org-block-todo-from-children-or-siblings-or-parent)
2737 (remove-hook 'org-blocker-hook
2738 'org-block-todo-from-children-or-siblings-or-parent)))
2739 :group 'org-todo
2740 :type 'boolean)
2742 (defcustom org-enforce-todo-checkbox-dependencies nil
2743 "Non-nil means unchecked boxes will block switching the parent to DONE.
2744 When this is nil, checkboxes have no influence on switching TODO states.
2745 When non-nil, you first need to check off all check boxes before the TODO
2746 entry can be switched to DONE.
2747 This variable needs to be set before org.el is loaded, and you need to
2748 restart Emacs after a change to make the change effective. The only way
2749 to change is while Emacs is running is through the customize interface."
2750 :set (lambda (var val)
2751 (set var val)
2752 (if val
2753 (add-hook 'org-blocker-hook
2754 'org-block-todo-from-checkboxes)
2755 (remove-hook 'org-blocker-hook
2756 'org-block-todo-from-checkboxes)))
2757 :group 'org-todo
2758 :type 'boolean)
2760 (defcustom org-treat-insert-todo-heading-as-state-change nil
2761 "Non-nil means inserting a TODO heading is treated as state change.
2762 So when the command \\[org-insert-todo-heading] is used, state change
2763 logging will apply if appropriate. When nil, the new TODO item will
2764 be inserted directly, and no logging will take place."
2765 :group 'org-todo
2766 :type 'boolean)
2768 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2769 "Non-nil means switching TODO states with S-cursor counts as state change.
2770 This is the default behavior. However, setting this to nil allows a
2771 convenient way to select a TODO state and bypass any logging associated
2772 with that."
2773 :group 'org-todo
2774 :type 'boolean)
2776 (defcustom org-todo-state-tags-triggers nil
2777 "Tag changes that should be triggered by TODO state changes.
2778 This is a list. Each entry is
2780 (state-change (tag . flag) .......)
2782 State-change can be a string with a state, and empty string to indicate the
2783 state that has no TODO keyword, or it can be one of the symbols `todo'
2784 or `done', meaning any not-done or done state, respectively."
2785 :group 'org-todo
2786 :group 'org-tags
2787 :type '(repeat
2788 (cons (choice :tag "When changing to"
2789 (const :tag "Not-done state" todo)
2790 (const :tag "Done state" done)
2791 (string :tag "State"))
2792 (repeat
2793 (cons :tag "Tag action"
2794 (string :tag "Tag")
2795 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2797 (defcustom org-log-done nil
2798 "Information to record when a task moves to the DONE state.
2800 Possible values are:
2802 nil Don't add anything, just change the keyword
2803 time Add a time stamp to the task
2804 note Prompt for a note and add it with template `org-log-note-headings'
2806 This option can also be set with on a per-file-basis with
2808 #+STARTUP: nologdone
2809 #+STARTUP: logdone
2810 #+STARTUP: lognotedone
2812 You can have local logging settings for a subtree by setting the LOGGING
2813 property to one or more of these keywords."
2814 :group 'org-todo
2815 :group 'org-progress
2816 :type '(choice
2817 (const :tag "No logging" nil)
2818 (const :tag "Record CLOSED timestamp" time)
2819 (const :tag "Record CLOSED timestamp with note." note)))
2821 ;; Normalize old uses of org-log-done.
2822 (cond
2823 ((eq org-log-done t) (setq org-log-done 'time))
2824 ((and (listp org-log-done) (memq 'done org-log-done))
2825 (setq org-log-done 'note)))
2827 (defcustom org-log-reschedule nil
2828 "Information to record when the scheduling date of a tasks is modified.
2830 Possible values are:
2832 nil Don't add anything, just change the date
2833 time Add a time stamp to the task
2834 note Prompt for a note and add it with template `org-log-note-headings'
2836 This option can also be set with on a per-file-basis with
2838 #+STARTUP: nologreschedule
2839 #+STARTUP: logreschedule
2840 #+STARTUP: lognotereschedule"
2841 :group 'org-todo
2842 :group 'org-progress
2843 :type '(choice
2844 (const :tag "No logging" nil)
2845 (const :tag "Record timestamp" time)
2846 (const :tag "Record timestamp with note." note)))
2848 (defcustom org-log-redeadline nil
2849 "Information to record when the deadline date of a tasks is modified.
2851 Possible values are:
2853 nil Don't add anything, just change the date
2854 time Add a time stamp to the task
2855 note Prompt for a note and add it with template `org-log-note-headings'
2857 This option can also be set with on a per-file-basis with
2859 #+STARTUP: nologredeadline
2860 #+STARTUP: logredeadline
2861 #+STARTUP: lognoteredeadline
2863 You can have local logging settings for a subtree by setting the LOGGING
2864 property to one or more of these keywords."
2865 :group 'org-todo
2866 :group 'org-progress
2867 :type '(choice
2868 (const :tag "No logging" nil)
2869 (const :tag "Record timestamp" time)
2870 (const :tag "Record timestamp with note." note)))
2872 (defcustom org-log-note-clock-out nil
2873 "Non-nil means record a note when clocking out of an item.
2874 This can also be configured on a per-file basis by adding one of
2875 the following lines anywhere in the buffer:
2877 #+STARTUP: lognoteclock-out
2878 #+STARTUP: nolognoteclock-out"
2879 :group 'org-todo
2880 :group 'org-progress
2881 :type 'boolean)
2883 (defcustom org-log-done-with-time t
2884 "Non-nil means the CLOSED time stamp will contain date and time.
2885 When nil, only the date will be recorded."
2886 :group 'org-progress
2887 :type 'boolean)
2889 (defcustom org-log-note-headings
2890 '((done . "CLOSING NOTE %t")
2891 (state . "State %-12s from %-12S %t")
2892 (note . "Note taken on %t")
2893 (reschedule . "Rescheduled from %S on %t")
2894 (delschedule . "Not scheduled, was %S on %t")
2895 (redeadline . "New deadline from %S on %t")
2896 (deldeadline . "Removed deadline, was %S on %t")
2897 (refile . "Refiled on %t")
2898 (clock-out . ""))
2899 "Headings for notes added to entries.
2900 The value is an alist, with the car being a symbol indicating the note
2901 context, and the cdr is the heading to be used. The heading may also be the
2902 empty string.
2903 %t in the heading will be replaced by a time stamp.
2904 %T will be an active time stamp instead the default inactive one
2905 %d will be replaced by a short-format time stamp.
2906 %D will be replaced by an active short-format time stamp.
2907 %s will be replaced by the new TODO state, in double quotes.
2908 %S will be replaced by the old TODO state, in double quotes.
2909 %u will be replaced by the user name.
2910 %U will be replaced by the full user name.
2912 In fact, it is not a good idea to change the `state' entry, because
2913 agenda log mode depends on the format of these entries."
2914 :group 'org-todo
2915 :group 'org-progress
2916 :type '(list :greedy t
2917 (cons (const :tag "Heading when closing an item" done) string)
2918 (cons (const :tag
2919 "Heading when changing todo state (todo sequence only)"
2920 state) string)
2921 (cons (const :tag "Heading when just taking a note" note) string)
2922 (cons (const :tag "Heading when rescheduling" reschedule) string)
2923 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2924 (cons (const :tag "Heading when changing deadline" redeadline) string)
2925 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2926 (cons (const :tag "Heading when refiling" refile) string)
2927 (cons (const :tag "Heading when clocking out" clock-out) string)))
2929 (unless (assq 'note org-log-note-headings)
2930 (push '(note . "%t") org-log-note-headings))
2932 (defcustom org-log-into-drawer nil
2933 "Non-nil means insert state change notes and time stamps into a drawer.
2934 When nil, state changes notes will be inserted after the headline and
2935 any scheduling and clock lines, but not inside a drawer.
2937 The value of this variable should be the name of the drawer to use.
2938 LOGBOOK is proposed as the default drawer for this purpose, you can
2939 also set this to a string to define the drawer of your choice.
2941 A value of t is also allowed, representing \"LOGBOOK\".
2943 A value of t or nil can also be set with on a per-file-basis with
2945 #+STARTUP: logdrawer
2946 #+STARTUP: nologdrawer
2948 If this variable is set, `org-log-state-notes-insert-after-drawers'
2949 will be ignored.
2951 You can set the property LOG_INTO_DRAWER to overrule this setting for
2952 a subtree.
2954 Do not check directly this variable in a Lisp program. Call
2955 function `org-log-into-drawer' instead."
2956 :group 'org-todo
2957 :group 'org-progress
2958 :type '(choice
2959 (const :tag "Not into a drawer" nil)
2960 (const :tag "LOGBOOK" t)
2961 (string :tag "Other")))
2963 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2965 (defun org-log-into-drawer ()
2966 "Name of the log drawer, as a string, or nil.
2967 This is the value of `org-log-into-drawer'. However, if the
2968 current entry has or inherits a LOG_INTO_DRAWER property, it will
2969 be used instead of the default value."
2970 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2971 (cond ((equal p "nil") nil)
2972 ((equal p "t") "LOGBOOK")
2973 ((stringp p) p)
2974 (p "LOGBOOK")
2975 ((stringp org-log-into-drawer) org-log-into-drawer)
2976 (org-log-into-drawer "LOGBOOK"))))
2978 (defcustom org-log-state-notes-insert-after-drawers nil
2979 "Non-nil means insert state change notes after any drawers in entry.
2980 Only the drawers that *immediately* follow the headline and the
2981 deadline/scheduled line are skipped.
2982 When nil, insert notes right after the heading and perhaps the line
2983 with deadline/scheduling if present.
2985 This variable will have no effect if `org-log-into-drawer' is
2986 set."
2987 :group 'org-todo
2988 :group 'org-progress
2989 :type 'boolean)
2991 (defcustom org-log-states-order-reversed t
2992 "Non-nil means the latest state note will be directly after heading.
2993 When nil, the state change notes will be ordered according to time.
2995 This option can also be set with on a per-file-basis with
2997 #+STARTUP: logstatesreversed
2998 #+STARTUP: nologstatesreversed"
2999 :group 'org-todo
3000 :group 'org-progress
3001 :type 'boolean)
3003 (defcustom org-todo-repeat-to-state nil
3004 "The TODO state to which a repeater should return the repeating task.
3005 By default this is the first task in a TODO sequence, or the previous state
3006 in a TODO_TYP set. But you can specify another task here.
3007 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3008 :group 'org-todo
3009 :version "24.1"
3010 :type '(choice (const :tag "Head of sequence" nil)
3011 (string :tag "Specific state")))
3013 (defcustom org-log-repeat 'time
3014 "Non-nil means record moving through the DONE state when triggering repeat.
3015 An auto-repeating task is immediately switched back to TODO when
3016 marked DONE. If you are not logging state changes (by adding \"@\"
3017 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3018 record a closing note, there will be no record of the task moving
3019 through DONE. This variable forces taking a note anyway.
3021 nil Don't force a record
3022 time Record a time stamp
3023 note Prompt for a note and add it with template `org-log-note-headings'
3025 This option can also be set with on a per-file-basis with
3027 #+STARTUP: nologrepeat
3028 #+STARTUP: logrepeat
3029 #+STARTUP: lognoterepeat
3031 You can have local logging settings for a subtree by setting the LOGGING
3032 property to one or more of these keywords."
3033 :group 'org-todo
3034 :group 'org-progress
3035 :type '(choice
3036 (const :tag "Don't force a record" nil)
3037 (const :tag "Force recording the DONE state" time)
3038 (const :tag "Force recording a note with the DONE state" note)))
3041 (defgroup org-priorities nil
3042 "Priorities in Org-mode."
3043 :tag "Org Priorities"
3044 :group 'org-todo)
3046 (defcustom org-enable-priority-commands t
3047 "Non-nil means priority commands are active.
3048 When nil, these commands will be disabled, so that you never accidentally
3049 set a priority."
3050 :group 'org-priorities
3051 :type 'boolean)
3053 (defcustom org-highest-priority ?A
3054 "The highest priority of TODO items. A character like ?A, ?B etc.
3055 Must have a smaller ASCII number than `org-lowest-priority'."
3056 :group 'org-priorities
3057 :type 'character)
3059 (defcustom org-lowest-priority ?C
3060 "The lowest priority of TODO items. A character like ?A, ?B etc.
3061 Must have a larger ASCII number than `org-highest-priority'."
3062 :group 'org-priorities
3063 :type 'character)
3065 (defcustom org-default-priority ?B
3066 "The default priority of TODO items.
3067 This is the priority an item gets if no explicit priority is given.
3068 When starting to cycle on an empty priority the first step in the cycle
3069 depends on `org-priority-start-cycle-with-default'. The resulting first
3070 step priority must not exceed the range from `org-highest-priority' to
3071 `org-lowest-priority' which means that `org-default-priority' has to be
3072 in this range exclusive or inclusive the range boundaries. Else the
3073 first step refuses to set the default and the second will fall back
3074 to (depending on the command used) the highest or lowest priority."
3075 :group 'org-priorities
3076 :type 'character)
3078 (defcustom org-priority-start-cycle-with-default t
3079 "Non-nil means start with default priority when starting to cycle.
3080 When this is nil, the first step in the cycle will be (depending on the
3081 command used) one higher or lower than the default priority.
3082 See also `org-default-priority'."
3083 :group 'org-priorities
3084 :type 'boolean)
3086 (defcustom org-get-priority-function nil
3087 "Function to extract the priority from a string.
3088 The string is normally the headline. If this is nil Org computes the
3089 priority from the priority cookie like [#A] in the headline. It returns
3090 an integer, increasing by 1000 for each priority level.
3091 The user can set a different function here, which should take a string
3092 as an argument and return the numeric priority."
3093 :group 'org-priorities
3094 :version "24.1"
3095 :type '(choice
3096 (const nil)
3097 (function)))
3099 (defgroup org-time nil
3100 "Options concerning time stamps and deadlines in Org-mode."
3101 :tag "Org Time"
3102 :group 'org)
3104 (defcustom org-time-stamp-rounding-minutes '(0 5)
3105 "Number of minutes to round time stamps to.
3106 These are two values, the first applies when first creating a time stamp.
3107 The second applies when changing it with the commands `S-up' and `S-down'.
3108 When changing the time stamp, this means that it will change in steps
3109 of N minutes, as given by the second value.
3111 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3112 numbers should be factors of 60, so for example 5, 10, 15.
3114 When this is larger than 1, you can still force an exact time stamp by using
3115 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3116 and by using a prefix arg to `S-up/down' to specify the exact number
3117 of minutes to shift."
3118 :group 'org-time
3119 :get (lambda (var) ; Make sure both elements are there
3120 (if (integerp (default-value var))
3121 (list (default-value var) 5)
3122 (default-value var)))
3123 :type '(list
3124 (integer :tag "when inserting times")
3125 (integer :tag "when modifying times")))
3127 ;; Normalize old customizations of this variable.
3128 (when (integerp org-time-stamp-rounding-minutes)
3129 (setq org-time-stamp-rounding-minutes
3130 (list org-time-stamp-rounding-minutes
3131 org-time-stamp-rounding-minutes)))
3133 (defcustom org-display-custom-times nil
3134 "Non-nil means overlay custom formats over all time stamps.
3135 The formats are defined through the variable `org-time-stamp-custom-formats'.
3136 To turn this on on a per-file basis, insert anywhere in the file:
3137 #+STARTUP: customtime"
3138 :group 'org-time
3139 :set 'set-default
3140 :type 'sexp)
3141 (make-variable-buffer-local 'org-display-custom-times)
3143 (defcustom org-time-stamp-custom-formats
3144 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3145 "Custom formats for time stamps. See `format-time-string' for the syntax.
3146 These are overlaid over the default ISO format if the variable
3147 `org-display-custom-times' is set. Time like %H:%M should be at the
3148 end of the second format. The custom formats are also honored by export
3149 commands, if custom time display is turned on at the time of export."
3150 :group 'org-time
3151 :type 'sexp)
3153 (defun org-time-stamp-format (&optional long inactive)
3154 "Get the right format for a time string."
3155 (let ((f (if long (cdr org-time-stamp-formats)
3156 (car org-time-stamp-formats))))
3157 (if inactive
3158 (concat "[" (substring f 1 -1) "]")
3159 f)))
3161 (defcustom org-time-clocksum-format
3162 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3163 "The format string used when creating CLOCKSUM lines.
3164 This is also used when Org mode generates a time duration.
3166 The value can be a single format string containing two
3167 %-sequences, which will be filled with the number of hours and
3168 minutes in that order.
3170 Alternatively, the value can be a plist associating any of the
3171 keys :years, :months, :weeks, :days, :hours or :minutes with
3172 format strings. The time duration is formatted using only the
3173 time components that are needed and concatenating the results.
3174 If a time unit in absent, it falls back to the next smallest
3175 unit.
3177 The keys :require-years, :require-months, :require-days,
3178 :require-weeks, :require-hours, :require-minutes are also
3179 meaningful. A non-nil value for these keys indicates that the
3180 corresponding time component should always be included, even if
3181 its value is 0.
3184 For example,
3186 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3187 :require-minutes t)
3189 means durations longer than a day will be expressed in days,
3190 hours and minutes, and durations less than a day will always be
3191 expressed in hours and minutes (even for durations less than an
3192 hour).
3194 The value
3196 \(:days \"%dd\" :minutes \"%dm\")
3198 means durations longer than a day will be expressed in days and
3199 minutes, and durations less than a day will be expressed entirely
3200 in minutes (even for durations longer than an hour)."
3201 :group 'org-time
3202 :group 'org-clock
3203 :version "24.4"
3204 :package-version '(Org . "8.0")
3205 :type '(choice (string :tag "Format string")
3206 (set :tag "Plist"
3207 (group :inline t (const :tag "Years" :years)
3208 (string :tag "Format string"))
3209 (group :inline t
3210 (const :tag "Always show years" :require-years)
3211 (const t))
3212 (group :inline t (const :tag "Months" :months)
3213 (string :tag "Format string"))
3214 (group :inline t
3215 (const :tag "Always show months" :require-months)
3216 (const t))
3217 (group :inline t (const :tag "Weeks" :weeks)
3218 (string :tag "Format string"))
3219 (group :inline t
3220 (const :tag "Always show weeks" :require-weeks)
3221 (const t))
3222 (group :inline t (const :tag "Days" :days)
3223 (string :tag "Format string"))
3224 (group :inline t
3225 (const :tag "Always show days" :require-days)
3226 (const t))
3227 (group :inline t (const :tag "Hours" :hours)
3228 (string :tag "Format string"))
3229 (group :inline t
3230 (const :tag "Always show hours" :require-hours)
3231 (const t))
3232 (group :inline t (const :tag "Minutes" :minutes)
3233 (string :tag "Format string"))
3234 (group :inline t
3235 (const :tag "Always show minutes" :require-minutes)
3236 (const t)))))
3238 (defcustom org-time-clocksum-use-fractional nil
3239 "When non-nil, \\[org-clock-display] uses fractional times.
3240 See `org-time-clocksum-format' for more on time clock formats."
3241 :group 'org-time
3242 :group 'org-clock
3243 :version "24.3"
3244 :type 'boolean)
3246 (defcustom org-time-clocksum-use-effort-durations nil
3247 "When non-nil, \\[org-clock-display] uses effort durations.
3248 E.g. by default, one day is considered to be a 8 hours effort,
3249 so a task that has been clocked for 16 hours will be displayed
3250 as during 2 days in the clock display or in the clocktable.
3252 See `org-effort-durations' on how to set effort durations
3253 and `org-time-clocksum-format' for more on time clock formats."
3254 :group 'org-time
3255 :group 'org-clock
3256 :version "24.4"
3257 :package-version '(Org . "8.0")
3258 :type 'boolean)
3260 (defcustom org-time-clocksum-fractional-format "%.2f"
3261 "The format string used when creating CLOCKSUM lines,
3262 or when Org mode generates a time duration, if
3263 `org-time-clocksum-use-fractional' is enabled.
3265 The value can be a single format string containing one
3266 %-sequence, which will be filled with the number of hours as
3267 a float.
3269 Alternatively, the value can be a plist associating any of the
3270 keys :years, :months, :weeks, :days, :hours or :minutes with
3271 a format string. The time duration is formatted using the
3272 largest time unit which gives a non-zero integer part. If all
3273 specified formats have zero integer part, the smallest time unit
3274 is used."
3275 :group 'org-time
3276 :type '(choice (string :tag "Format string")
3277 (set (group :inline t (const :tag "Years" :years)
3278 (string :tag "Format string"))
3279 (group :inline t (const :tag "Months" :months)
3280 (string :tag "Format string"))
3281 (group :inline t (const :tag "Weeks" :weeks)
3282 (string :tag "Format string"))
3283 (group :inline t (const :tag "Days" :days)
3284 (string :tag "Format string"))
3285 (group :inline t (const :tag "Hours" :hours)
3286 (string :tag "Format string"))
3287 (group :inline t (const :tag "Minutes" :minutes)
3288 (string :tag "Format string")))))
3290 (defcustom org-deadline-warning-days 14
3291 "Number of days before expiration during which a deadline becomes active.
3292 This variable governs the display in sparse trees and in the agenda.
3293 When 0 or negative, it means use this number (the absolute value of it)
3294 even if a deadline has a different individual lead time specified.
3296 Custom commands can set this variable in the options section."
3297 :group 'org-time
3298 :group 'org-agenda-daily/weekly
3299 :type 'integer)
3301 (defcustom org-scheduled-delay-days 0
3302 "Number of days before a scheduled item becomes active.
3303 This variable governs the display in sparse trees and in the agenda.
3304 The default value (i.e. 0) means: don't delay scheduled item.
3305 When negative, it means use this number (the absolute value of it)
3306 even if a scheduled item has a different individual delay time
3307 specified.
3309 Custom commands can set this variable in the options section."
3310 :group 'org-time
3311 :group 'org-agenda-daily/weekly
3312 :version "24.4"
3313 :package-version '(Org . "8.0")
3314 :type 'integer)
3316 (defcustom org-read-date-prefer-future t
3317 "Non-nil means assume future for incomplete date input from user.
3318 This affects the following situations:
3319 1. The user gives a month but not a year.
3320 For example, if it is April and you enter \"feb 2\", this will be read
3321 as Feb 2, *next* year. \"May 5\", however, will be this year.
3322 2. The user gives a day, but no month.
3323 For example, if today is the 15th, and you enter \"3\", Org-mode will
3324 read this as the third of *next* month. However, if you enter \"17\",
3325 it will be considered as *this* month.
3327 If you set this variable to the symbol `time', then also the following
3328 will work:
3330 3. If the user gives a time.
3331 If the time is before now, it will be interpreted as tomorrow.
3333 Currently none of this works for ISO week specifications.
3335 When this option is nil, the current day, month and year will always be
3336 used as defaults.
3338 See also `org-agenda-jump-prefer-future'."
3339 :group 'org-time
3340 :type '(choice
3341 (const :tag "Never" nil)
3342 (const :tag "Check month and day" t)
3343 (const :tag "Check month, day, and time" time)))
3345 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3346 "Should the agenda jump command prefer the future for incomplete dates?
3347 The default is to do the same as configured in `org-read-date-prefer-future'.
3348 But you can also set a deviating value here.
3349 This may t or nil, or the symbol `org-read-date-prefer-future'."
3350 :group 'org-agenda
3351 :group 'org-time
3352 :version "24.1"
3353 :type '(choice
3354 (const :tag "Use org-read-date-prefer-future"
3355 org-read-date-prefer-future)
3356 (const :tag "Never" nil)
3357 (const :tag "Always" t)))
3359 (defcustom org-read-date-force-compatible-dates t
3360 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3362 Depending on the system Emacs is running on, certain dates cannot
3363 be represented with the type used internally to represent time.
3364 Dates between 1970-1-1 and 2038-1-1 can always be represented
3365 correctly. Some systems allow for earlier dates, some for later,
3366 some for both. One way to find out it to insert any date into an
3367 Org buffer, putting the cursor on the year and hitting S-up and
3368 S-down to test the range.
3370 When this variable is set to t, the date/time prompt will not let
3371 you specify dates outside the 1970-2037 range, so it is certain that
3372 these dates will work in whatever version of Emacs you are
3373 running, and also that you can move a file from one Emacs implementation
3374 to another. WHenever Org is forcing the year for you, it will display
3375 a message and beep.
3377 When this variable is nil, Org will check if the date is
3378 representable in the specific Emacs implementation you are using.
3379 If not, it will force a year, usually the current year, and beep
3380 to remind you. Currently this setting is not recommended because
3381 the likelihood that you will open your Org files in an Emacs that
3382 has limited date range is not negligible.
3384 A workaround for this problem is to use diary sexp dates for time
3385 stamps outside of this range."
3386 :group 'org-time
3387 :version "24.1"
3388 :type 'boolean)
3390 (defcustom org-read-date-display-live t
3391 "Non-nil means display current interpretation of date prompt live.
3392 This display will be in an overlay, in the minibuffer."
3393 :group 'org-time
3394 :type 'boolean)
3396 (defcustom org-read-date-popup-calendar t
3397 "Non-nil means pop up a calendar when prompting for a date.
3398 In the calendar, the date can be selected with mouse-1. However, the
3399 minibuffer will also be active, and you can simply enter the date as well.
3400 When nil, only the minibuffer will be available."
3401 :group 'org-time
3402 :type 'boolean)
3403 (org-defvaralias 'org-popup-calendar-for-date-prompt
3404 'org-read-date-popup-calendar)
3406 (make-obsolete-variable
3407 'org-read-date-minibuffer-setup-hook
3408 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3409 (defcustom org-read-date-minibuffer-setup-hook nil
3410 "Hook to be used to set up keys for the date/time interface.
3411 Add key definitions to `minibuffer-local-map', which will be a
3412 temporary copy.
3414 WARNING: This option is obsolete, you should use
3415 `org-read-date-minibuffer-local-map' to set up keys."
3416 :group 'org-time
3417 :type 'hook)
3419 (defcustom org-extend-today-until 0
3420 "The hour when your day really ends. Must be an integer.
3421 This has influence for the following applications:
3422 - When switching the agenda to \"today\". It it is still earlier than
3423 the time given here, the day recognized as TODAY is actually yesterday.
3424 - When a date is read from the user and it is still before the time given
3425 here, the current date and time will be assumed to be yesterday, 23:59.
3426 Also, timestamps inserted in capture templates follow this rule.
3428 IMPORTANT: This is a feature whose implementation is and likely will
3429 remain incomplete. Really, it is only here because past midnight seems to
3430 be the favorite working time of John Wiegley :-)"
3431 :group 'org-time
3432 :type 'integer)
3434 (defcustom org-use-effective-time nil
3435 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3436 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3437 \"effective time\" of any timestamps between midnight and 8am will be
3438 23:59 of the previous day."
3439 :group 'org-time
3440 :version "24.1"
3441 :type 'boolean)
3443 (defcustom org-use-last-clock-out-time-as-effective-time nil
3444 "When non-nil, use the last clock out time for `org-todo'.
3445 Note that this option has precedence over the combined use of
3446 `org-use-effective-time' and `org-extend-today-until'."
3447 :group 'org-time
3448 :version "24.4"
3449 :package-version '(Org . "8.0")
3450 :type 'boolean)
3452 (defcustom org-edit-timestamp-down-means-later nil
3453 "Non-nil means S-down will increase the time in a time stamp.
3454 When nil, S-up will increase."
3455 :group 'org-time
3456 :type 'boolean)
3458 (defcustom org-calendar-follow-timestamp-change t
3459 "Non-nil means make the calendar window follow timestamp changes.
3460 When a timestamp is modified and the calendar window is visible, it will be
3461 moved to the new date."
3462 :group 'org-time
3463 :type 'boolean)
3465 (defgroup org-tags nil
3466 "Options concerning tags in Org-mode."
3467 :tag "Org Tags"
3468 :group 'org)
3470 (defcustom org-tag-alist nil
3471 "List of tags allowed in Org-mode files.
3472 When this list is nil, Org-mode will base TAG input on what is already in the
3473 buffer.
3474 The value of this variable is an alist, the car of each entry must be a
3475 keyword as a string, the cdr may be a character that is used to select
3476 that tag through the fast-tag-selection interface.
3477 See the manual for details."
3478 :group 'org-tags
3479 :type '(repeat
3480 (choice
3481 (cons (string :tag "Tag name")
3482 (character :tag "Access char"))
3483 (list :tag "Start radio group"
3484 (const :startgroup)
3485 (option (string :tag "Group description")))
3486 (list :tag "Group tags delimiter"
3487 (const :grouptags))
3488 (list :tag "End radio group"
3489 (const :endgroup)
3490 (option (string :tag "Group description")))
3491 (const :tag "New line" (:newline)))))
3493 (defcustom org-tag-persistent-alist nil
3494 "List of tags that will always appear in all Org-mode files.
3495 This is in addition to any in buffer settings or customizations
3496 of `org-tag-alist'.
3497 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3498 The value of this variable is an alist, the car of each entry must be a
3499 keyword as a string, the cdr may be a character that is used to select
3500 that tag through the fast-tag-selection interface.
3501 See the manual for details.
3502 To disable these tags on a per-file basis, insert anywhere in the file:
3503 #+STARTUP: noptag"
3504 :group 'org-tags
3505 :type '(repeat
3506 (choice
3507 (cons (string :tag "Tag name")
3508 (character :tag "Access char"))
3509 (const :tag "Start radio group" (:startgroup))
3510 (const :tag "Group tags delimiter" (:grouptags))
3511 (const :tag "End radio group" (:endgroup))
3512 (const :tag "New line" (:newline)))))
3514 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3515 "If non-nil, always offer completion for all tags of all agenda files.
3516 Instead of customizing this variable directly, you might want to
3517 set it locally for capture buffers, because there no list of
3518 tags in that file can be created dynamically (there are none).
3520 (add-hook 'org-capture-mode-hook
3521 (lambda ()
3522 (set (make-local-variable
3523 'org-complete-tags-always-offer-all-agenda-tags)
3524 t)))"
3525 :group 'org-tags
3526 :version "24.1"
3527 :type 'boolean)
3529 (defvar org-file-tags nil
3530 "List of tags that can be inherited by all entries in the file.
3531 The tags will be inherited if the variable `org-use-tag-inheritance'
3532 says they should be.
3533 This variable is populated from #+FILETAGS lines.")
3535 (defcustom org-use-fast-tag-selection 'auto
3536 "Non-nil means use fast tag selection scheme.
3537 This is a special interface to select and deselect tags with single keys.
3538 When nil, fast selection is never used.
3539 When the symbol `auto', fast selection is used if and only if selection
3540 characters for tags have been configured, either through the variable
3541 `org-tag-alist' or through a #+TAGS line in the buffer.
3542 When t, fast selection is always used and selection keys are assigned
3543 automatically if necessary."
3544 :group 'org-tags
3545 :type '(choice
3546 (const :tag "Always" t)
3547 (const :tag "Never" nil)
3548 (const :tag "When selection characters are configured" auto)))
3550 (defcustom org-fast-tag-selection-single-key nil
3551 "Non-nil means fast tag selection exits after first change.
3552 When nil, you have to press RET to exit it.
3553 During fast tag selection, you can toggle this flag with `C-c'.
3554 This variable can also have the value `expert'. In this case, the window
3555 displaying the tags menu is not even shown, until you press C-c again."
3556 :group 'org-tags
3557 :type '(choice
3558 (const :tag "No" nil)
3559 (const :tag "Yes" t)
3560 (const :tag "Expert" expert)))
3562 (defvar org-fast-tag-selection-include-todo nil
3563 "Non-nil means fast tags selection interface will also offer TODO states.
3564 This is an undocumented feature, you should not rely on it.")
3566 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3567 "The column to which tags should be indented in a headline.
3568 If this number is positive, it specifies the column. If it is negative,
3569 it means that the tags should be flushright to that column. For example,
3570 -80 works well for a normal 80 character screen.
3571 When 0, place tags directly after headline text, with only one space in
3572 between."
3573 :group 'org-tags
3574 :type 'integer)
3576 (defcustom org-auto-align-tags t
3577 "Non-nil keeps tags aligned when modifying headlines.
3578 Some operations (i.e. demoting) change the length of a headline and
3579 therefore shift the tags around. With this option turned on, after
3580 each such operation the tags are again aligned to `org-tags-column'."
3581 :group 'org-tags
3582 :type 'boolean)
3584 (defcustom org-use-tag-inheritance t
3585 "Non-nil means tags in levels apply also for sublevels.
3586 When nil, only the tags directly given in a specific line apply there.
3587 This may also be a list of tags that should be inherited, or a regexp that
3588 matches tags that should be inherited. Additional control is possible
3589 with the variable `org-tags-exclude-from-inheritance' which gives an
3590 explicit list of tags to be excluded from inheritance, even if the value of
3591 `org-use-tag-inheritance' would select it for inheritance.
3593 If this option is t, a match early-on in a tree can lead to a large
3594 number of matches in the subtree when constructing the agenda or creating
3595 a sparse tree. If you only want to see the first match in a tree during
3596 a search, check out the variable `org-tags-match-list-sublevels'."
3597 :group 'org-tags
3598 :type '(choice
3599 (const :tag "Not" nil)
3600 (const :tag "Always" t)
3601 (repeat :tag "Specific tags" (string :tag "Tag"))
3602 (regexp :tag "Tags matched by regexp")))
3604 (defcustom org-tags-exclude-from-inheritance nil
3605 "List of tags that should never be inherited.
3606 This is a way to exclude a few tags from inheritance. For way to do
3607 the opposite, to actively allow inheritance for selected tags,
3608 see the variable `org-use-tag-inheritance'."
3609 :group 'org-tags
3610 :type '(repeat (string :tag "Tag")))
3612 (defun org-tag-inherit-p (tag)
3613 "Check if TAG is one that should be inherited."
3614 (cond
3615 ((member tag org-tags-exclude-from-inheritance) nil)
3616 ((eq org-use-tag-inheritance t) t)
3617 ((not org-use-tag-inheritance) nil)
3618 ((stringp org-use-tag-inheritance)
3619 (string-match org-use-tag-inheritance tag))
3620 ((listp org-use-tag-inheritance)
3621 (member tag org-use-tag-inheritance))
3622 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3624 (defcustom org-tags-match-list-sublevels t
3625 "Non-nil means list also sublevels of headlines matching a search.
3626 This variable applies to tags/property searches, and also to stuck
3627 projects because this search is based on a tags match as well.
3629 When set to the symbol `indented', sublevels are indented with
3630 leading dots.
3632 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3633 the sublevels of a headline matching a tag search often also match
3634 the same search. Listing all of them can create very long lists.
3635 Setting this variable to nil causes subtrees of a match to be skipped.
3637 This variable is semi-obsolete and probably should always be true. It
3638 is better to limit inheritance to certain tags using the variables
3639 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3640 :group 'org-tags
3641 :type '(choice
3642 (const :tag "No, don't list them" nil)
3643 (const :tag "Yes, do list them" t)
3644 (const :tag "List them, indented with leading dots" indented)))
3646 (defcustom org-tags-sort-function nil
3647 "When set, tags are sorted using this function as a comparator."
3648 :group 'org-tags
3649 :type '(choice
3650 (const :tag "No sorting" nil)
3651 (const :tag "Alphabetical" string<)
3652 (const :tag "Reverse alphabetical" string>)
3653 (function :tag "Custom function" nil)))
3655 (defvar org-tags-history nil
3656 "History of minibuffer reads for tags.")
3657 (defvar org-last-tags-completion-table nil
3658 "The last used completion table for tags.")
3659 (defvar org-after-tags-change-hook nil
3660 "Hook that is run after the tags in a line have changed.")
3662 (defgroup org-properties nil
3663 "Options concerning properties in Org-mode."
3664 :tag "Org Properties"
3665 :group 'org)
3667 (defcustom org-property-format "%-10s %s"
3668 "How property key/value pairs should be formatted by `indent-line'.
3669 When `indent-line' hits a property definition, it will format the line
3670 according to this format, mainly to make sure that the values are
3671 lined-up with respect to each other."
3672 :group 'org-properties
3673 :type 'string)
3675 (defcustom org-properties-postprocess-alist nil
3676 "Alist of properties and functions to adjust inserted values.
3677 Elements of this alist must be of the form
3679 ([string] [function])
3681 where [string] must be a property name and [function] must be a
3682 lambda expression: this lambda expression must take one argument,
3683 the value to adjust, and return the new value as a string.
3685 For example, this element will allow the property \"Remaining\"
3686 to be updated wrt the relation between the \"Effort\" property
3687 and the clock summary:
3689 ((\"Remaining\" (lambda(value)
3690 (let ((clocksum (org-clock-sum-current-item))
3691 (effort (org-duration-string-to-minutes
3692 (org-entry-get (point) \"Effort\"))))
3693 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3694 :group 'org-properties
3695 :version "24.1"
3696 :type '(alist :key-type (string :tag "Property")
3697 :value-type (function :tag "Function")))
3699 (defcustom org-use-property-inheritance nil
3700 "Non-nil means properties apply also for sublevels.
3702 This setting is chiefly used during property searches. Turning it on can
3703 cause significant overhead when doing a search, which is why it is not
3704 on by default.
3706 When nil, only the properties directly given in the current entry count.
3707 When t, every property is inherited. The value may also be a list of
3708 properties that should have inheritance, or a regular expression matching
3709 properties that should be inherited.
3711 However, note that some special properties use inheritance under special
3712 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3713 and the properties ending in \"_ALL\" when they are used as descriptor
3714 for valid values of a property.
3716 Note for programmers:
3717 When querying an entry with `org-entry-get', you can control if inheritance
3718 should be used. By default, `org-entry-get' looks only at the local
3719 properties. You can request inheritance by setting the inherit argument
3720 to t (to force inheritance) or to `selective' (to respect the setting
3721 in this variable)."
3722 :group 'org-properties
3723 :type '(choice
3724 (const :tag "Not" nil)
3725 (const :tag "Always" t)
3726 (repeat :tag "Specific properties" (string :tag "Property"))
3727 (regexp :tag "Properties matched by regexp")))
3729 (defun org-property-inherit-p (property)
3730 "Check if PROPERTY is one that should be inherited."
3731 (cond
3732 ((eq org-use-property-inheritance t) t)
3733 ((not org-use-property-inheritance) nil)
3734 ((stringp org-use-property-inheritance)
3735 (string-match org-use-property-inheritance property))
3736 ((listp org-use-property-inheritance)
3737 (member property org-use-property-inheritance))
3738 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3740 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3741 "The default column format, if no other format has been defined.
3742 This variable can be set on the per-file basis by inserting a line
3744 #+COLUMNS: %25ITEM ....."
3745 :group 'org-properties
3746 :type 'string)
3748 (defcustom org-columns-ellipses ".."
3749 "The ellipses to be used when a field in column view is truncated.
3750 When this is the empty string, as many characters as possible are shown,
3751 but then there will be no visual indication that the field has been truncated.
3752 When this is a string of length N, the last N characters of a truncated
3753 field are replaced by this string. If the column is narrower than the
3754 ellipses string, only part of the ellipses string will be shown."
3755 :group 'org-properties
3756 :type 'string)
3758 (defcustom org-columns-modify-value-for-display-function nil
3759 "Function that modifies values for display in column view.
3760 For example, it can be used to cut out a certain part from a time stamp.
3761 The function must take 2 arguments:
3763 column-title The title of the column (*not* the property name)
3764 value The value that should be modified.
3766 The function should return the value that should be displayed,
3767 or nil if the normal value should be used."
3768 :group 'org-properties
3769 :type '(choice (const nil) (function)))
3771 (defconst org-global-properties-fixed
3772 '(("VISIBILITY_ALL" . "folded children content all")
3773 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3774 "List of property/value pairs that can be inherited by any entry.
3776 These are fixed values, for the preset properties. The user variable
3777 that can be used to add to this list is `org-global-properties'.
3779 The entries in this list are cons cells where the car is a property
3780 name and cdr is a string with the value. If the value represents
3781 multiple items like an \"_ALL\" property, separate the items by
3782 spaces.")
3784 (defcustom org-global-properties nil
3785 "List of property/value pairs that can be inherited by any entry.
3787 This list will be combined with the constant `org-global-properties-fixed'.
3789 The entries in this list are cons cells where the car is a property
3790 name and cdr is a string with the value.
3792 You can set buffer-local values for the same purpose in the variable
3793 `org-file-properties' this by adding lines like
3795 #+PROPERTY: NAME VALUE"
3796 :group 'org-properties
3797 :type '(repeat
3798 (cons (string :tag "Property")
3799 (string :tag "Value"))))
3801 (defvar org-file-properties nil
3802 "List of property/value pairs that can be inherited by any entry.
3803 Valid for the current buffer.
3804 This variable is populated from #+PROPERTY lines.")
3805 (make-variable-buffer-local 'org-file-properties)
3807 (defgroup org-agenda nil
3808 "Options concerning agenda views in Org-mode."
3809 :tag "Org Agenda"
3810 :group 'org)
3812 (defvar org-category nil
3813 "Variable used by org files to set a category for agenda display.
3814 Such files should use a file variable to set it, for example
3816 # -*- mode: org; org-category: \"ELisp\"
3818 or contain a special line
3820 #+CATEGORY: ELisp
3822 If the file does not specify a category, then file's base name
3823 is used instead.")
3824 (make-variable-buffer-local 'org-category)
3825 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3827 (defcustom org-agenda-files nil
3828 "The files to be used for agenda display.
3829 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3830 \\[org-remove-file]. You can also use customize to edit the list.
3832 If an entry is a directory, all files in that directory that are matched by
3833 `org-agenda-file-regexp' will be part of the file list.
3835 If the value of the variable is not a list but a single file name, then
3836 the list of agenda files is actually stored and maintained in that file, one
3837 agenda file per line. In this file paths can be given relative to
3838 `org-directory'. Tilde expansion and environment variable substitution
3839 are also made."
3840 :group 'org-agenda
3841 :type '(choice
3842 (repeat :tag "List of files and directories" file)
3843 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3845 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3846 "Regular expression to match files for `org-agenda-files'.
3847 If any element in the list in that variable contains a directory instead
3848 of a normal file, all files in that directory that are matched by this
3849 regular expression will be included."
3850 :group 'org-agenda
3851 :type 'regexp)
3853 (defcustom org-agenda-text-search-extra-files nil
3854 "List of extra files to be searched by text search commands.
3855 These files will be searched in addition to the agenda files by the
3856 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3857 Note that these files will only be searched for text search commands,
3858 not for the other agenda views like todo lists, tag searches or the weekly
3859 agenda. This variable is intended to list notes and possibly archive files
3860 that should also be searched by these two commands.
3861 In fact, if the first element in the list is the symbol `agenda-archives',
3862 then all archive files of all agenda files will be added to the search
3863 scope."
3864 :group 'org-agenda
3865 :type '(set :greedy t
3866 (const :tag "Agenda Archives" agenda-archives)
3867 (repeat :inline t (file))))
3869 (org-defvaralias 'org-agenda-multi-occur-extra-files
3870 'org-agenda-text-search-extra-files)
3872 (defcustom org-agenda-skip-unavailable-files nil
3873 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3874 A nil value means to remove them, after a query, from the list."
3875 :group 'org-agenda
3876 :type 'boolean)
3878 (defcustom org-calendar-to-agenda-key [?c]
3879 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3880 The command `org-calendar-goto-agenda' will be bound to this key. The
3881 default is the character `c' because then `c' can be used to switch back and
3882 forth between agenda and calendar."
3883 :group 'org-agenda
3884 :type 'sexp)
3886 (defcustom org-calendar-insert-diary-entry-key [?i]
3887 "The key to be installed in `calendar-mode-map' for adding diary entries.
3888 This option is irrelevant until `org-agenda-diary-file' has been configured
3889 to point to an Org-mode file. When that is the case, the command
3890 `org-agenda-diary-entry' will be bound to the key given here, by default
3891 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3892 if you want to continue doing this, you need to change this to a different
3893 key."
3894 :group 'org-agenda
3895 :type 'sexp)
3897 (defcustom org-agenda-diary-file 'diary-file
3898 "File to which to add new entries with the `i' key in agenda and calendar.
3899 When this is the symbol `diary-file', the functionality in the Emacs
3900 calendar will be used to add entries to the `diary-file'. But when this
3901 points to a file, `org-agenda-diary-entry' will be used instead."
3902 :group 'org-agenda
3903 :type '(choice
3904 (const :tag "The standard Emacs diary file" diary-file)
3905 (file :tag "Special Org file diary entries")))
3907 (eval-after-load "calendar"
3908 '(progn
3909 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3910 'org-calendar-goto-agenda)
3911 (add-hook 'calendar-mode-hook
3912 (lambda ()
3913 (unless (eq org-agenda-diary-file 'diary-file)
3914 (define-key calendar-mode-map
3915 org-calendar-insert-diary-entry-key
3916 'org-agenda-diary-entry))))))
3918 (defgroup org-latex nil
3919 "Options for embedding LaTeX code into Org-mode."
3920 :tag "Org LaTeX"
3921 :group 'org)
3923 (defcustom org-format-latex-options
3924 '(:foreground default :background default :scale 1.0
3925 :html-foreground "Black" :html-background "Transparent"
3926 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3927 "Options for creating images from LaTeX fragments.
3928 This is a property list with the following properties:
3929 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3930 `default' means use the foreground of the default face.
3931 `auto' means use the foreground from the text face.
3932 :background the background color, or \"Transparent\".
3933 `default' means use the background of the default face.
3934 `auto' means use the background from the text face.
3935 :scale a scaling factor for the size of the images, to get more pixels
3936 :html-foreground, :html-background, :html-scale
3937 the same numbers for HTML export.
3938 :matchers a list indicating which matchers should be used to
3939 find LaTeX fragments. Valid members of this list are:
3940 \"begin\" find environments
3941 \"$1\" find single characters surrounded by $.$
3942 \"$\" find math expressions surrounded by $...$
3943 \"$$\" find math expressions surrounded by $$....$$
3944 \"\\(\" find math expressions surrounded by \\(...\\)
3945 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3946 :group 'org-latex
3947 :type 'plist)
3949 (defcustom org-format-latex-signal-error t
3950 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3951 When nil, just push out a message."
3952 :group 'org-latex
3953 :version "24.1"
3954 :type 'boolean)
3956 (defcustom org-latex-to-mathml-jar-file nil
3957 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3958 Use this to specify additional executable file say a jar file.
3960 When using MathToWeb as the converter, specify the full-path to
3961 your mathtoweb.jar file."
3962 :group 'org-latex
3963 :version "24.1"
3964 :type '(choice
3965 (const :tag "None" nil)
3966 (file :tag "JAR file" :must-match t)))
3968 (defcustom org-latex-to-mathml-convert-command nil
3969 "Command to convert LaTeX fragments to MathML.
3970 Replace format-specifiers in the command as noted below and use
3971 `shell-command' to convert LaTeX to MathML.
3972 %j: Executable file in fully expanded form as specified by
3973 `org-latex-to-mathml-jar-file'.
3974 %I: Input LaTeX file in fully expanded form.
3975 %i: The latex fragment to be converted.
3976 %o: Output MathML file.
3977 This command is used by `org-create-math-formula'.
3979 When using MathToWeb as the converter, set this to
3980 \"java -jar %j -unicode -force -df %o %I\".
3982 When using LaTeXML set this to
3983 \"latexmlmath \"%i\" --presentationmathml=%o\"."
3984 :group 'org-latex
3985 :version "24.1"
3986 :type '(choice
3987 (const :tag "None" nil)
3988 (string :tag "\nShell command")))
3990 (defcustom org-latex-create-formula-image-program 'dvipng
3991 "Program to convert LaTeX fragments with.
3993 dvipng Process the LaTeX fragments to dvi file, then convert
3994 dvi files to png files using dvipng.
3995 This will also include processing of non-math environments.
3996 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3997 to convert pdf files to png files"
3998 :group 'org-latex
3999 :version "24.1"
4000 :type '(choice
4001 (const :tag "dvipng" dvipng)
4002 (const :tag "imagemagick" imagemagick)))
4004 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4005 "Path to store latex preview images.
4006 A relative path here creates many directories relative to the
4007 processed org files paths. An absolute path puts all preview
4008 images at the same place."
4009 :group 'org-latex
4010 :version "24.3"
4011 :type 'string)
4013 (defun org-format-latex-mathml-available-p ()
4014 "Return t if `org-latex-to-mathml-convert-command' is usable."
4015 (save-match-data
4016 (when (and (boundp 'org-latex-to-mathml-convert-command)
4017 org-latex-to-mathml-convert-command)
4018 (let ((executable (car (split-string
4019 org-latex-to-mathml-convert-command))))
4020 (when (executable-find executable)
4021 (if (string-match
4022 "%j" org-latex-to-mathml-convert-command)
4023 (file-readable-p org-latex-to-mathml-jar-file)
4024 t))))))
4026 (defcustom org-format-latex-header "\\documentclass{article}
4027 \\usepackage[usenames]{color}
4028 \[PACKAGES]
4029 \[DEFAULT-PACKAGES]
4030 \\pagestyle{empty} % do not remove
4031 % The settings below are copied from fullpage.sty
4032 \\setlength{\\textwidth}{\\paperwidth}
4033 \\addtolength{\\textwidth}{-3cm}
4034 \\setlength{\\oddsidemargin}{1.5cm}
4035 \\addtolength{\\oddsidemargin}{-2.54cm}
4036 \\setlength{\\evensidemargin}{\\oddsidemargin}
4037 \\setlength{\\textheight}{\\paperheight}
4038 \\addtolength{\\textheight}{-\\headheight}
4039 \\addtolength{\\textheight}{-\\headsep}
4040 \\addtolength{\\textheight}{-\\footskip}
4041 \\addtolength{\\textheight}{-3cm}
4042 \\setlength{\\topmargin}{1.5cm}
4043 \\addtolength{\\topmargin}{-2.54cm}"
4044 "The document header used for processing LaTeX fragments.
4045 It is imperative that this header make sure that no page number
4046 appears on the page. The package defined in the variables
4047 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4048 will either replace the placeholder \"[PACKAGES]\" in this
4049 header, or they will be appended."
4050 :group 'org-latex
4051 :type 'string)
4053 (defun org-set-packages-alist (var val)
4054 "Set the packages alist and make sure it has 3 elements per entry."
4055 (set var (mapcar (lambda (x)
4056 (if (and (consp x) (= (length x) 2))
4057 (list (car x) (nth 1 x) t)
4059 val)))
4061 (defun org-get-packages-alist (var)
4062 "Get the packages alist and make sure it has 3 elements per entry."
4063 (mapcar (lambda (x)
4064 (if (and (consp x) (= (length x) 2))
4065 (list (car x) (nth 1 x) t)
4067 (default-value var)))
4069 (defcustom org-latex-default-packages-alist
4070 '(("AUTO" "inputenc" t)
4071 ("T1" "fontenc" t)
4072 ("" "fixltx2e" nil)
4073 ("" "graphicx" t)
4074 ("" "longtable" nil)
4075 ("" "float" nil)
4076 ("" "wrapfig" nil)
4077 ("" "rotating" nil)
4078 ("normalem" "ulem" t)
4079 ("" "amsmath" t)
4080 ("" "textcomp" t)
4081 ("" "marvosym" t)
4082 ("" "wasysym" t)
4083 ("" "amssymb" t)
4084 ("" "capt-of" nil)
4085 ("" "hyperref" nil)
4086 "\\tolerance=1000")
4087 "Alist of default packages to be inserted in the header.
4089 Change this only if one of the packages here causes an
4090 incompatibility with another package you are using.
4092 The packages in this list are needed by one part or another of
4093 Org mode to function properly:
4095 - inputenc, fontenc: for basic font and character selection
4096 - fixltx2e: Important patches of LaTeX itself
4097 - graphicx: for including images
4098 - longtable: For multipage tables
4099 - float, wrapfig: for figure placement
4100 - rotating: for sideways figures and tables
4101 - ulem: for underline and strike-through
4102 - amsmath: for subscript and superscript and math environments
4103 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4104 for interpreting the entities in `org-entities'. You can skip
4105 some of these packages if you don't use any of their symbols.
4106 - capt-of: for captions outside of floats
4107 - hyperref: for cross references
4109 Therefore you should not modify this variable unless you know
4110 what you are doing. The one reason to change it anyway is that
4111 you might be loading some other package that conflicts with one
4112 of the default packages. Each element is either a cell or
4113 a string.
4115 A cell is of the format:
4117 \( \"options\" \"package\" SNIPPET-FLAG).
4119 If SNIPPET-FLAG is non-nil, the package also needs to be included
4120 when compiling LaTeX snippets into images for inclusion into
4121 non-LaTeX output.
4123 A string will be inserted as-is in the header of the document."
4124 :group 'org-latex
4125 :group 'org-export-latex
4126 :set 'org-set-packages-alist
4127 :get 'org-get-packages-alist
4128 :version "24.1"
4129 :type '(repeat
4130 (choice
4131 (list :tag "options/package pair"
4132 (string :tag "options")
4133 (string :tag "package")
4134 (boolean :tag "Snippet"))
4135 (string :tag "A line of LaTeX"))))
4137 (defcustom org-latex-packages-alist nil
4138 "Alist of packages to be inserted in every LaTeX header.
4140 These will be inserted after `org-latex-default-packages-alist'.
4141 Each element is either a cell or a string.
4143 A cell is of the format:
4145 \(\"options\" \"package\" SNIPPET-FLAG)
4147 SNIPPET-FLAG, when non-nil, indicates that this package is also
4148 needed when turning LaTeX snippets into images for inclusion into
4149 non-LaTeX output.
4151 A string will be inserted as-is in the header of the document.
4153 Make sure that you only list packages here which:
4155 - you want in every file;
4156 - do not conflict with the setup in `org-format-latex-header';
4157 - do not conflict with the default packages in
4158 `org-latex-default-packages-alist'."
4159 :group 'org-latex
4160 :group 'org-export-latex
4161 :set 'org-set-packages-alist
4162 :get 'org-get-packages-alist
4163 :type '(repeat
4164 (choice
4165 (list :tag "options/package pair"
4166 (string :tag "options")
4167 (string :tag "package")
4168 (boolean :tag "Snippet"))
4169 (string :tag "A line of LaTeX"))))
4171 (defgroup org-appearance nil
4172 "Settings for Org-mode appearance."
4173 :tag "Org Appearance"
4174 :group 'org)
4176 (defcustom org-level-color-stars-only nil
4177 "Non-nil means fontify only the stars in each headline.
4178 When nil, the entire headline is fontified.
4179 Changing it requires restart of `font-lock-mode' to become effective
4180 also in regions already fontified."
4181 :group 'org-appearance
4182 :type 'boolean)
4184 (defcustom org-hide-leading-stars nil
4185 "Non-nil means hide the first N-1 stars in a headline.
4186 This works by using the face `org-hide' for these stars. This
4187 face is white for a light background, and black for a dark
4188 background. You may have to customize the face `org-hide' to
4189 make this work.
4190 Changing it requires restart of `font-lock-mode' to become effective
4191 also in regions already fontified.
4192 You may also set this on a per-file basis by adding one of the following
4193 lines to the buffer:
4195 #+STARTUP: hidestars
4196 #+STARTUP: showstars"
4197 :group 'org-appearance
4198 :type 'boolean)
4200 (defcustom org-hidden-keywords nil
4201 "List of symbols corresponding to keywords to be hidden the org buffer.
4202 For example, a value '(title) for this list will make the document's title
4203 appear in the buffer without the initial #+TITLE: keyword."
4204 :group 'org-appearance
4205 :version "24.1"
4206 :type '(set (const :tag "#+AUTHOR" author)
4207 (const :tag "#+DATE" date)
4208 (const :tag "#+EMAIL" email)
4209 (const :tag "#+TITLE" title)))
4211 (defcustom org-custom-properties nil
4212 "List of properties (as strings) with a special meaning.
4213 The default use of these custom properties is to let the user
4214 hide them with `org-toggle-custom-properties-visibility'."
4215 :group 'org-properties
4216 :group 'org-appearance
4217 :version "24.3"
4218 :type '(repeat (string :tag "Property Name")))
4220 (defcustom org-fontify-done-headline nil
4221 "Non-nil means change the face of a headline if it is marked DONE.
4222 Normally, only the TODO/DONE keyword indicates the state of a headline.
4223 When this is non-nil, the headline after the keyword is set to the
4224 `org-headline-done' as an additional indication."
4225 :group 'org-appearance
4226 :type 'boolean)
4228 (defcustom org-fontify-emphasized-text t
4229 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4230 Changing this variable requires a restart of Emacs to take effect."
4231 :group 'org-appearance
4232 :type 'boolean)
4234 (defcustom org-fontify-whole-heading-line nil
4235 "Non-nil means fontify the whole line for headings.
4236 This is useful when setting a background color for the
4237 org-level-* faces."
4238 :group 'org-appearance
4239 :type 'boolean)
4241 (defcustom org-highlight-latex-and-related nil
4242 "Non-nil means highlight LaTeX related syntax in the buffer.
4243 When non nil, the value should be a list containing any of the
4244 following symbols:
4245 `latex' Highlight LaTeX snippets and environments.
4246 `script' Highlight subscript and superscript.
4247 `entities' Highlight entities."
4248 :group 'org-appearance
4249 :version "24.4"
4250 :package-version '(Org . "8.0")
4251 :type '(choice
4252 (const :tag "No highlighting" nil)
4253 (set :greedy t :tag "Highlight"
4254 (const :tag "LaTeX snippets and environments" latex)
4255 (const :tag "Subscript and superscript" script)
4256 (const :tag "Entities" entities))))
4258 (defcustom org-hide-emphasis-markers nil
4259 "Non-nil mean font-lock should hide the emphasis marker characters."
4260 :group 'org-appearance
4261 :type 'boolean)
4263 (defcustom org-hide-macro-markers nil
4264 "Non-nil mean font-lock should hide the brackets marking macro calls."
4265 :group 'org-appearance
4266 :type 'boolean)
4268 (defcustom org-pretty-entities nil
4269 "Non-nil means show entities as UTF8 characters.
4270 When nil, the \\name form remains in the buffer."
4271 :group 'org-appearance
4272 :version "24.1"
4273 :type 'boolean)
4275 (defcustom org-pretty-entities-include-sub-superscripts t
4276 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4277 :group 'org-appearance
4278 :version "24.1"
4279 :type 'boolean)
4281 (defvar org-emph-re nil
4282 "Regular expression for matching emphasis.
4283 After a match, the match groups contain these elements:
4284 0 The match of the full regular expression, including the characters
4285 before and after the proper match
4286 1 The character before the proper match, or empty at beginning of line
4287 2 The proper match, including the leading and trailing markers
4288 3 The leading marker like * or /, indicating the type of highlighting
4289 4 The text between the emphasis markers, not including the markers
4290 5 The character after the match, empty at the end of a line")
4291 (defvar org-verbatim-re nil
4292 "Regular expression for matching verbatim text.")
4293 (defvar org-emphasis-regexp-components) ; defined just below
4294 (defvar org-emphasis-alist) ; defined just below
4295 (defun org-set-emph-re (var val)
4296 "Set variable and compute the emphasis regular expression."
4297 (set var val)
4298 (when (and (boundp 'org-emphasis-alist)
4299 (boundp 'org-emphasis-regexp-components)
4300 org-emphasis-alist org-emphasis-regexp-components)
4301 (let* ((e org-emphasis-regexp-components)
4302 (pre (car e))
4303 (post (nth 1 e))
4304 (border (nth 2 e))
4305 (body (nth 3 e))
4306 (nl (nth 4 e))
4307 (body1 (concat body "*?"))
4308 (markers (mapconcat 'car org-emphasis-alist ""))
4309 (vmarkers (mapconcat
4310 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4311 org-emphasis-alist "")))
4312 ;; make sure special characters appear at the right position in the class
4313 (if (string-match "\\^" markers)
4314 (setq markers (concat (replace-match "" t t markers) "^")))
4315 (if (string-match "-" markers)
4316 (setq markers (concat (replace-match "" t t markers) "-")))
4317 (if (string-match "\\^" vmarkers)
4318 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4319 (if (string-match "-" vmarkers)
4320 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4321 (if (> nl 0)
4322 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4323 (int-to-string nl) "\\}")))
4324 ;; Make the regexp
4325 (setq org-emph-re
4326 (concat "\\([" pre "]\\|^\\)"
4327 "\\("
4328 "\\([" markers "]\\)"
4329 "\\("
4330 "[^" border "]\\|"
4331 "[^" border "]"
4332 body1
4333 "[^" border "]"
4334 "\\)"
4335 "\\3\\)"
4336 "\\([" post "]\\|$\\)"))
4337 (setq org-verbatim-re
4338 (concat "\\([" pre "]\\|^\\)"
4339 "\\("
4340 "\\([" vmarkers "]\\)"
4341 "\\("
4342 "[^" border "]\\|"
4343 "[^" border "]"
4344 body1
4345 "[^" border "]"
4346 "\\)"
4347 "\\3\\)"
4348 "\\([" post "]\\|$\\)")))))
4350 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4351 ;; set this option proved cumbersome. See this message/thread:
4352 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4353 (defvar org-emphasis-regexp-components
4354 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4355 "Components used to build the regular expression for emphasis.
4356 This is a list with five entries. Terminology: In an emphasis string
4357 like \" *strong word* \", we call the initial space PREMATCH, the final
4358 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4359 and \"trong wor\" is the body. The different components in this variable
4360 specify what is allowed/forbidden in each part:
4362 pre Chars allowed as prematch. Beginning of line will be allowed too.
4363 post Chars allowed as postmatch. End of line will be allowed too.
4364 border The chars *forbidden* as border characters.
4365 body-regexp A regexp like \".\" to match a body character. Don't use
4366 non-shy groups here, and don't allow newline here.
4367 newline The maximum number of newlines allowed in an emphasis exp.
4369 You need to reload Org or to restart Emacs after customizing this.")
4371 (defcustom org-emphasis-alist
4372 `(("*" bold)
4373 ("/" italic)
4374 ("_" underline)
4375 ("=" org-verbatim verbatim)
4376 ("~" org-code verbatim)
4377 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4378 "Alist of characters and faces to emphasize text.
4379 Text starting and ending with a special character will be emphasized,
4380 for example *bold*, _underlined_ and /italic/. This variable sets the
4381 marker characters and the face to be used by font-lock for highlighting
4382 in Org-mode Emacs buffers.
4384 You need to reload Org or to restart Emacs after customizing this."
4385 :group 'org-appearance
4386 :set 'org-set-emph-re
4387 :version "24.4"
4388 :package-version '(Org . "8.0")
4389 :type '(repeat
4390 (list
4391 (string :tag "Marker character")
4392 (choice
4393 (face :tag "Font-lock-face")
4394 (plist :tag "Face property list"))
4395 (option (const verbatim)))))
4397 (defvar org-protecting-blocks
4398 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4399 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4400 This is needed for font-lock setup.")
4402 ;;; Miscellaneous options
4404 (defgroup org-completion nil
4405 "Completion in Org-mode."
4406 :tag "Org Completion"
4407 :group 'org)
4409 (defcustom org-completion-use-ido nil
4410 "Non-nil means use ido completion wherever possible.
4411 Note that `ido-mode' must be active for this variable to be relevant.
4412 If you decide to turn this variable on, you might well want to turn off
4413 `org-outline-path-complete-in-steps'.
4414 See also `org-completion-use-iswitchb'."
4415 :group 'org-completion
4416 :type 'boolean)
4418 (defcustom org-completion-use-iswitchb nil
4419 "Non-nil means use iswitchb completion wherever possible.
4420 Note that `iswitchb-mode' must be active for this variable to be relevant.
4421 If you decide to turn this variable on, you might well want to turn off
4422 `org-outline-path-complete-in-steps'.
4423 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4424 :group 'org-completion
4425 :type 'boolean)
4427 (defcustom org-completion-fallback-command 'hippie-expand
4428 "The expansion command called by \\[pcomplete] in normal context.
4429 Normal means, no org-mode-specific context."
4430 :group 'org-completion
4431 :type 'function)
4433 ;;; Functions and variables from their packages
4434 ;; Declared here to avoid compiler warnings
4436 ;; XEmacs only
4437 (defvar outline-mode-menu-heading)
4438 (defvar outline-mode-menu-show)
4439 (defvar outline-mode-menu-hide)
4440 (defvar zmacs-regions) ; XEmacs regions
4442 ;; Emacs only
4443 (defvar mark-active)
4445 ;; Various packages
4446 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4447 (declare-function calendar-forward-day "cal-move" (arg))
4448 (declare-function calendar-goto-date "cal-move" (date))
4449 (declare-function calendar-goto-today "cal-move" ())
4450 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4451 (defvar calc-embedded-close-formula)
4452 (defvar calc-embedded-open-formula)
4453 (declare-function cdlatex-tab "ext:cdlatex" ())
4454 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4455 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4456 (defvar font-lock-unfontify-region-function)
4457 (declare-function iswitchb-read-buffer "iswitchb"
4458 (prompt &optional default require-match start matches-set))
4459 (defvar iswitchb-temp-buflist)
4460 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4461 (defvar org-agenda-tags-todo-honor-ignore-options)
4462 (declare-function org-agenda-skip "org-agenda" ())
4463 (declare-function
4464 org-agenda-format-item "org-agenda"
4465 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4466 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4467 (declare-function org-agenda-change-all-lines "org-agenda"
4468 (newhead hdmarker &optional fixface just-this))
4469 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4470 (declare-function org-agenda-maybe-redo "org-agenda" ())
4471 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4472 (beg end))
4473 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4474 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4475 "org-agenda" (&optional end))
4476 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4477 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4478 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4479 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4480 (declare-function org-indent-mode "org-indent" (&optional arg))
4481 (declare-function parse-time-string "parse-time" (string))
4482 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4483 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4484 (defvar remember-data-file)
4485 (defvar texmathp-why)
4486 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4487 (declare-function table--at-cell-p "table" (position &optional object at-column))
4488 (declare-function calc-eval "calc" (str &optional separator &rest args))
4490 ;;;###autoload
4491 (defun turn-on-orgtbl ()
4492 "Unconditionally turn on `orgtbl-mode'."
4493 (require 'org-table)
4494 (orgtbl-mode 1))
4496 (defun org-at-table-p (&optional table-type)
4497 "Return t if the cursor is inside an org-type table.
4498 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4499 (if org-enable-table-editor
4500 (save-excursion
4501 (beginning-of-line 1)
4502 (looking-at (if table-type org-table-any-line-regexp
4503 org-table-line-regexp)))
4504 nil))
4505 (defsubst org-table-p () (org-at-table-p))
4507 (defun org-at-table.el-p ()
4508 "Return t if and only if we are at a table.el table."
4509 (and (org-at-table-p 'any)
4510 (save-excursion
4511 (goto-char (org-table-begin 'any))
4512 (looking-at org-table1-hline-regexp))))
4514 (defun org-table-recognize-table.el ()
4515 "If there is a table.el table nearby, recognize it and move into it."
4516 (if org-table-tab-recognizes-table.el
4517 (if (org-at-table.el-p)
4518 (progn
4519 (beginning-of-line 1)
4520 (if (looking-at org-table-dataline-regexp)
4522 (if (looking-at org-table1-hline-regexp)
4523 (progn
4524 (beginning-of-line 2)
4525 (if (looking-at org-table-any-border-regexp)
4526 (beginning-of-line -1)))))
4527 (if (re-search-forward "|" (org-table-end t) t)
4528 (progn
4529 (require 'table)
4530 (if (table--at-cell-p (point))
4532 (message "recognizing table.el table...")
4533 (table-recognize-table)
4534 (message "recognizing table.el table...done")))
4535 (error "This should not happen"))
4537 nil)
4538 nil))
4540 (defun org-at-table-hline-p ()
4541 "Return t if the cursor is inside a hline in a table."
4542 (if org-enable-table-editor
4543 (save-excursion
4544 (beginning-of-line 1)
4545 (looking-at org-table-hline-regexp))
4546 nil))
4548 (defun org-table-map-tables (function &optional quietly)
4549 "Apply FUNCTION to the start of all tables in the buffer."
4550 (save-excursion
4551 (save-restriction
4552 (widen)
4553 (goto-char (point-min))
4554 (while (re-search-forward org-table-any-line-regexp nil t)
4555 (unless quietly
4556 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4557 (beginning-of-line 1)
4558 (when (and (looking-at org-table-line-regexp)
4559 ;; Exclude tables in src/example/verbatim/clocktable blocks
4560 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4561 (save-excursion (funcall function))
4562 (or (looking-at org-table-line-regexp)
4563 (forward-char 1)))
4564 (re-search-forward org-table-any-border-regexp nil 1))))
4565 (unless quietly (message "Mapping tables: done")))
4567 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4568 (declare-function org-clock-update-mode-line "org-clock" ())
4569 (declare-function org-resolve-clocks "org-clock"
4570 (&optional also-non-dangling-p prompt last-valid))
4572 (defun org-at-TBLFM-p (&optional pos)
4573 "Return t when point (or POS) is in #+TBLFM line."
4574 (save-excursion
4575 (let ((pos pos)))
4576 (goto-char (or pos (point)))
4577 (beginning-of-line 1)
4578 (looking-at org-TBLFM-regexp)))
4580 (defvar org-clock-start-time)
4581 (defvar org-clock-marker (make-marker)
4582 "Marker recording the last clock-in.")
4583 (defvar org-clock-hd-marker (make-marker)
4584 "Marker recording the last clock-in, but the headline position.")
4585 (defvar org-clock-heading ""
4586 "The heading of the current clock entry.")
4587 (defun org-clock-is-active ()
4588 "Return the buffer where the clock is currently running.
4589 Return nil if no clock is running."
4590 (marker-buffer org-clock-marker))
4592 (defun org-check-running-clock ()
4593 "Check if the current buffer contains the running clock.
4594 If yes, offer to stop it and to save the buffer with the changes."
4595 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4596 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4597 (buffer-name))))
4598 (org-clock-out)
4599 (when (y-or-n-p "Save changed buffer?")
4600 (save-buffer))))
4602 (defun org-clocktable-try-shift (dir n)
4603 "Check if this line starts a clock table, if yes, shift the time block."
4604 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4605 (org-clocktable-shift dir n)))
4607 ;;;###autoload
4608 (defun org-clock-persistence-insinuate ()
4609 "Set up hooks for clock persistence."
4610 (require 'org-clock)
4611 (add-hook 'org-mode-hook 'org-clock-load)
4612 (add-hook 'kill-emacs-hook 'org-clock-save))
4614 (defgroup org-archive nil
4615 "Options concerning archiving in Org-mode."
4616 :tag "Org Archive"
4617 :group 'org-structure)
4619 (defcustom org-archive-location "%s_archive::"
4620 "The location where subtrees should be archived.
4622 The value of this variable is a string, consisting of two parts,
4623 separated by a double-colon. The first part is a filename and
4624 the second part is a headline.
4626 When the filename is omitted, archiving happens in the same file.
4627 %s in the filename will be replaced by the current file
4628 name (without the directory part). Archiving to a different file
4629 is useful to keep archived entries from contributing to the
4630 Org-mode Agenda.
4632 The archived entries will be filed as subtrees of the specified
4633 headline. When the headline is omitted, the subtrees are simply
4634 filed away at the end of the file, as top-level entries. Also in
4635 the heading you can use %s to represent the file name, this can be
4636 useful when using the same archive for a number of different files.
4638 Here are a few examples:
4639 \"%s_archive::\"
4640 If the current file is Projects.org, archive in file
4641 Projects.org_archive, as top-level trees. This is the default.
4643 \"::* Archived Tasks\"
4644 Archive in the current file, under the top-level headline
4645 \"* Archived Tasks\".
4647 \"~/org/archive.org::\"
4648 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4650 \"~/org/archive.org::* From %s\"
4651 Archive in file ~/org/archive.org (absolute path), under headlines
4652 \"From FILENAME\" where file name is the current file name.
4654 \"~/org/datetree.org::datetree/* Finished Tasks\"
4655 The \"datetree/\" string is special, signifying to archive
4656 items to the datetree. Items are placed in either the CLOSED
4657 date of the item, or the current date if there is no CLOSED date.
4658 The heading will be a subentry to the current date. There doesn't
4659 need to be a heading, but there always needs to be a slash after
4660 datetree. For example, to store archived items directly in the
4661 datetree, use \"~/org/datetree.org::datetree/\".
4663 \"basement::** Finished Tasks\"
4664 Archive in file ./basement (relative path), as level 3 trees
4665 below the level 2 heading \"** Finished Tasks\".
4667 You may set this option on a per-file basis by adding to the buffer a
4668 line like
4670 #+ARCHIVE: basement::** Finished Tasks
4672 You may also define it locally for a subtree by setting an ARCHIVE property
4673 in the entry. If such a property is found in an entry, or anywhere up
4674 the hierarchy, it will be used."
4675 :group 'org-archive
4676 :type 'string)
4678 (defcustom org-agenda-skip-archived-trees t
4679 "Non-nil means the agenda will skip any items located in archived trees.
4680 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4681 variable is no longer recommended, you should leave it at the value t.
4682 Instead, use the key `v' to cycle the archives-mode in the agenda."
4683 :group 'org-archive
4684 :group 'org-agenda-skip
4685 :type 'boolean)
4687 (defcustom org-columns-skip-archived-trees t
4688 "Non-nil means ignore archived trees when creating column view."
4689 :group 'org-archive
4690 :group 'org-properties
4691 :type 'boolean)
4693 (defcustom org-cycle-open-archived-trees nil
4694 "Non-nil means `org-cycle' will open archived trees.
4695 An archived tree is a tree marked with the tag ARCHIVE.
4696 When nil, archived trees will stay folded. You can still open them with
4697 normal outline commands like `show-all', but not with the cycling commands."
4698 :group 'org-archive
4699 :group 'org-cycle
4700 :type 'boolean)
4702 (defcustom org-sparse-tree-open-archived-trees nil
4703 "Non-nil means sparse tree construction shows matches in archived trees.
4704 When nil, matches in these trees are highlighted, but the trees are kept in
4705 collapsed state."
4706 :group 'org-archive
4707 :group 'org-sparse-trees
4708 :type 'boolean)
4710 (defcustom org-sparse-tree-default-date-type nil
4711 "The default date type when building a sparse tree.
4712 When this is nil, a date is a scheduled or a deadline timestamp.
4713 Otherwise, these types are allowed:
4715 all: all timestamps
4716 active: only active timestamps (<...>)
4717 inactive: only inactive timestamps ([...])
4718 scheduled: only scheduled timestamps
4719 deadline: only deadline timestamps"
4720 :type '(choice (const :tag "Scheduled or deadline" nil)
4721 (const :tag "All timestamps" all)
4722 (const :tag "Only active timestamps" active)
4723 (const :tag "Only inactive timestamps" inactive)
4724 (const :tag "Only scheduled timestamps" scheduled)
4725 (const :tag "Only deadline timestamps" deadline)
4726 (const :tag "Only closed timestamps" closed))
4727 :version "25.1"
4728 :package-version '(Org . "8.3")
4729 :group 'org-sparse-trees)
4731 (defun org-cycle-hide-archived-subtrees (state)
4732 "Re-hide all archived subtrees after a visibility state change."
4733 (when (and (not org-cycle-open-archived-trees)
4734 (not (memq state '(overview folded))))
4735 (save-excursion
4736 (let* ((globalp (memq state '(contents all)))
4737 (beg (if globalp (point-min) (point)))
4738 (end (if globalp (point-max) (org-end-of-subtree t))))
4739 (org-hide-archived-subtrees beg end)
4740 (goto-char beg)
4741 (if (looking-at (concat ".*:" org-archive-tag ":"))
4742 (message "%s" (substitute-command-keys
4743 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4745 (defun org-force-cycle-archived ()
4746 "Cycle subtree even if it is archived."
4747 (interactive)
4748 (setq this-command 'org-cycle)
4749 (let ((org-cycle-open-archived-trees t))
4750 (call-interactively 'org-cycle)))
4752 (defun org-hide-archived-subtrees (beg end)
4753 "Re-hide all archived subtrees after a visibility state change."
4754 (org-with-wide-buffer
4755 (let ((case-fold-search nil)
4756 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4757 (goto-char beg)
4758 (while (and (< (point) end) (re-search-forward re end t))
4759 (when (member org-archive-tag (org-get-tags))
4760 (org-flag-subtree t)
4761 (org-end-of-subtree t))))))
4763 (declare-function outline-end-of-heading "outline" ())
4764 (declare-function outline-flag-region "outline" (from to flag))
4765 (defun org-flag-subtree (flag)
4766 (save-excursion
4767 (org-back-to-heading t)
4768 (outline-end-of-heading)
4769 (outline-flag-region (point)
4770 (progn (org-end-of-subtree t) (point))
4771 flag)))
4773 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4775 ;; Declare Column View Code
4777 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4778 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4779 (declare-function org-columns-compute "org-colview" (property))
4781 ;; Declare ID code
4783 (declare-function org-id-store-link "org-id")
4784 (declare-function org-id-locations-load "org-id")
4785 (declare-function org-id-locations-save "org-id")
4786 (defvar org-id-track-globally)
4788 ;;; Variables for pre-computed regular expressions, all buffer local
4790 (defvar org-todo-regexp nil
4791 "Matches any of the TODO state keywords.")
4792 (make-variable-buffer-local 'org-todo-regexp)
4793 (defvar org-not-done-regexp nil
4794 "Matches any of the TODO state keywords except the last one.")
4795 (make-variable-buffer-local 'org-not-done-regexp)
4796 (defvar org-not-done-heading-regexp nil
4797 "Matches a TODO headline that is not done.")
4798 (make-variable-buffer-local 'org-not-done-regexp)
4799 (defvar org-todo-line-regexp nil
4800 "Matches a headline and puts TODO state into group 2 if present.")
4801 (make-variable-buffer-local 'org-todo-line-regexp)
4802 (defvar org-complex-heading-regexp nil
4803 "Matches a headline and puts everything into groups:
4804 group 1: the stars
4805 group 2: The todo keyword, maybe
4806 group 3: Priority cookie
4807 group 4: True headline
4808 group 5: Tags")
4809 (make-variable-buffer-local 'org-complex-heading-regexp)
4810 (defvar org-complex-heading-regexp-format nil
4811 "Printf format to make regexp to match an exact headline.
4812 This regexp will match the headline of any node which has the
4813 exact headline text that is put into the format, but may have any
4814 TODO state, priority and tags.")
4815 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4816 (defvar org-todo-line-tags-regexp nil
4817 "Matches a headline and puts TODO state into group 2 if present.
4818 Also put tags into group 4 if tags are present.")
4819 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4821 (defconst org-plain-time-of-day-regexp
4822 (concat
4823 "\\(\\<[012]?[0-9]"
4824 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4825 "\\(--?"
4826 "\\(\\<[012]?[0-9]"
4827 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4828 "\\)?")
4829 "Regular expression to match a plain time or time range.
4830 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4831 groups carry important information:
4832 0 the full match
4833 1 the first time, range or not
4834 8 the second time, if it is a range.")
4836 (defconst org-plain-time-extension-regexp
4837 (concat
4838 "\\(\\<[012]?[0-9]"
4839 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4840 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4841 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4842 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4843 groups carry important information:
4844 0 the full match
4845 7 hours of duration
4846 9 minutes of duration")
4848 (defconst org-stamp-time-of-day-regexp
4849 (concat
4850 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4851 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4852 "\\(--?"
4853 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4854 "Regular expression to match a timestamp time or time range.
4855 After a match, the following groups carry important information:
4856 0 the full match
4857 1 date plus weekday, for back referencing to make sure both times are on the same day
4858 2 the first time, range or not
4859 4 the second time, if it is a range.")
4861 (defconst org-startup-options
4862 '(("fold" org-startup-folded t)
4863 ("overview" org-startup-folded t)
4864 ("nofold" org-startup-folded nil)
4865 ("showall" org-startup-folded nil)
4866 ("showeverything" org-startup-folded showeverything)
4867 ("content" org-startup-folded content)
4868 ("indent" org-startup-indented t)
4869 ("noindent" org-startup-indented nil)
4870 ("hidestars" org-hide-leading-stars t)
4871 ("showstars" org-hide-leading-stars nil)
4872 ("odd" org-odd-levels-only t)
4873 ("oddeven" org-odd-levels-only nil)
4874 ("align" org-startup-align-all-tables t)
4875 ("noalign" org-startup-align-all-tables nil)
4876 ("inlineimages" org-startup-with-inline-images t)
4877 ("noinlineimages" org-startup-with-inline-images nil)
4878 ("latexpreview" org-startup-with-latex-preview t)
4879 ("nolatexpreview" org-startup-with-latex-preview nil)
4880 ("customtime" org-display-custom-times t)
4881 ("logdone" org-log-done time)
4882 ("lognotedone" org-log-done note)
4883 ("nologdone" org-log-done nil)
4884 ("lognoteclock-out" org-log-note-clock-out t)
4885 ("nolognoteclock-out" org-log-note-clock-out nil)
4886 ("logrepeat" org-log-repeat state)
4887 ("lognoterepeat" org-log-repeat note)
4888 ("logdrawer" org-log-into-drawer t)
4889 ("nologdrawer" org-log-into-drawer nil)
4890 ("logstatesreversed" org-log-states-order-reversed t)
4891 ("nologstatesreversed" org-log-states-order-reversed nil)
4892 ("nologrepeat" org-log-repeat nil)
4893 ("logreschedule" org-log-reschedule time)
4894 ("lognotereschedule" org-log-reschedule note)
4895 ("nologreschedule" org-log-reschedule nil)
4896 ("logredeadline" org-log-redeadline time)
4897 ("lognoteredeadline" org-log-redeadline note)
4898 ("nologredeadline" org-log-redeadline nil)
4899 ("logrefile" org-log-refile time)
4900 ("lognoterefile" org-log-refile note)
4901 ("nologrefile" org-log-refile nil)
4902 ("fninline" org-footnote-define-inline t)
4903 ("nofninline" org-footnote-define-inline nil)
4904 ("fnlocal" org-footnote-section nil)
4905 ("fnauto" org-footnote-auto-label t)
4906 ("fnprompt" org-footnote-auto-label nil)
4907 ("fnconfirm" org-footnote-auto-label confirm)
4908 ("fnplain" org-footnote-auto-label plain)
4909 ("fnadjust" org-footnote-auto-adjust t)
4910 ("nofnadjust" org-footnote-auto-adjust nil)
4911 ("constcgs" constants-unit-system cgs)
4912 ("constSI" constants-unit-system SI)
4913 ("noptag" org-tag-persistent-alist nil)
4914 ("hideblocks" org-hide-block-startup t)
4915 ("nohideblocks" org-hide-block-startup nil)
4916 ("beamer" org-startup-with-beamer-mode t)
4917 ("entitiespretty" org-pretty-entities t)
4918 ("entitiesplain" org-pretty-entities nil))
4919 "Variable associated with STARTUP options for org-mode.
4920 Each element is a list of three items: the startup options (as written
4921 in the #+STARTUP line), the corresponding variable, and the value to set
4922 this variable to if the option is found. An optional forth element PUSH
4923 means to push this value onto the list in the variable.")
4925 (defcustom org-group-tags t
4926 "When non-nil (the default), use group tags.
4927 This can be turned on/off through `org-toggle-tags-groups'."
4928 :group 'org-tags
4929 :group 'org-startup
4930 :type 'boolean)
4932 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4934 (defun org-toggle-tags-groups ()
4935 "Toggle support for group tags.
4936 Support for group tags is controlled by the option
4937 `org-group-tags', which is non-nil by default."
4938 (interactive)
4939 (setq org-group-tags (not org-group-tags))
4940 (cond ((and (derived-mode-p 'org-agenda-mode)
4941 org-group-tags)
4942 (org-agenda-redo))
4943 ((derived-mode-p 'org-mode)
4944 (let ((org-inhibit-startup t)) (org-mode))))
4945 (message "Groups tags support has been turned %s"
4946 (if org-group-tags "on" "off")))
4948 (defun org-set-regexps-and-options (&optional tags-only)
4949 "Precompute regular expressions used in the current buffer.
4950 When optional argument TAGS-ONLY is non-nil, only compute tags
4951 related expressions."
4952 (when (derived-mode-p 'org-mode)
4953 (let ((alist (org--setup-collect-keywords
4954 (org-make-options-regexp
4955 (append '("FILETAGS" "TAGS" "SETUPFILE")
4956 (and (not tags-only)
4957 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4958 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4959 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4960 (org--setup-process-tags
4961 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4962 (unless tags-only
4963 ;; File properties.
4964 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4965 ;; Archive location.
4966 (let ((archive (cdr (assq 'archive alist))))
4967 (when archive (org-set-local 'org-archive-location archive)))
4968 ;; Category.
4969 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4970 (when cat
4971 (org-set-local 'org-category (intern cat))
4972 (org-set-local 'org-file-properties
4973 (org--update-property-plist
4974 "CATEGORY" cat org-file-properties))))
4975 ;; Columns.
4976 (let ((column (cdr (assq 'columns alist))))
4977 (when column (org-set-local 'org-columns-default-format column)))
4978 ;; Constants.
4979 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4980 ;; Link abbreviations.
4981 (let ((links (cdr (assq 'link alist))))
4982 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4983 ;; Priorities.
4984 (let ((priorities (cdr (assq 'priorities alist))))
4985 (when priorities
4986 (org-set-local 'org-highest-priority (nth 0 priorities))
4987 (org-set-local 'org-lowest-priority (nth 1 priorities))
4988 (org-set-local 'org-default-priority (nth 2 priorities))))
4989 ;; Scripts.
4990 (let ((scripts (assq 'scripts alist)))
4991 (when scripts
4992 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
4993 ;; Startup options.
4994 (let ((startup (cdr (assq 'startup alist))))
4995 (dolist (option startup)
4996 (let ((entry (assoc-string option org-startup-options t)))
4997 (when entry
4998 (let ((var (nth 1 entry))
4999 (val (nth 2 entry)))
5000 (if (not (nth 3 entry)) (org-set-local var val)
5001 (unless (listp (symbol-value var))
5002 (org-set-local var nil))
5003 (add-to-list var val)))))))
5004 ;; TODO keywords.
5005 (org-set-local 'org-todo-kwd-alist nil)
5006 (org-set-local 'org-todo-key-alist nil)
5007 (org-set-local 'org-todo-key-trigger nil)
5008 (org-set-local 'org-todo-keywords-1 nil)
5009 (org-set-local 'org-done-keywords nil)
5010 (org-set-local 'org-todo-heads nil)
5011 (org-set-local 'org-todo-sets nil)
5012 (org-set-local 'org-todo-log-states nil)
5013 (let ((todo-sequences
5014 (or (nreverse (cdr (assq 'todo alist)))
5015 (let ((d (default-value 'org-todo-keywords)))
5016 (if (not (stringp (car d))) d
5017 ;; XXX: Backward compatibility code.
5018 (list (cons org-todo-interpretation d)))))))
5019 (dolist (sequence todo-sequences)
5020 (let* ((sequence (or (run-hook-with-args-until-success
5021 'org-todo-setup-filter-hook sequence)
5022 sequence))
5023 (sequence-type (car sequence))
5024 (keywords (cdr sequence))
5025 (sep (member "|" keywords))
5026 names alist)
5027 (dolist (k (remove "|" keywords))
5028 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5030 (error "Invalid TODO keyword %s" k))
5031 (let ((name (match-string 1 k))
5032 (key (match-string 2 k))
5033 (log (org-extract-log-state-settings k)))
5034 (push name names)
5035 (push (cons name (and key (string-to-char key))) alist)
5036 (when log (push log org-todo-log-states))))
5037 (let* ((names (nreverse names))
5038 (done (if sep (org-remove-keyword-keys (cdr sep))
5039 (last names)))
5040 (head (car names))
5041 (tail (list sequence-type head (car done) (org-last done))))
5042 (add-to-list 'org-todo-heads head 'append)
5043 (push names org-todo-sets)
5044 (setq org-done-keywords (append org-done-keywords done nil))
5045 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5046 (setq org-todo-key-alist
5047 (append org-todo-key-alist
5048 (and alist
5049 (append '((:startgroup))
5050 (nreverse alist)
5051 '((:endgroup))))))
5052 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5053 (setq org-todo-sets (nreverse org-todo-sets)
5054 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5055 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5056 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5057 ;; Compute the regular expressions and other local variables.
5058 ;; Using `org-outline-regexp-bol' would complicate them much,
5059 ;; because of the fixed white space at the end of that string.
5060 (if (not org-done-keywords)
5061 (setq org-done-keywords
5062 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5063 (setq org-not-done-keywords
5064 (org-delete-all org-done-keywords
5065 (copy-sequence org-todo-keywords-1))
5066 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5067 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5068 org-not-done-heading-regexp
5069 (format org-heading-keyword-regexp-format org-not-done-regexp)
5070 org-todo-line-regexp
5071 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5072 org-complex-heading-regexp
5073 (concat "^\\(\\*+\\)"
5074 "\\(?: +" org-todo-regexp "\\)?"
5075 "\\(?: +\\(\\[#.\\]\\)\\)?"
5076 "\\(?: +\\(.*?\\)\\)??"
5077 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5078 "[ \t]*$")
5079 org-complex-heading-regexp-format
5080 (concat "^\\(\\*+\\)"
5081 "\\(?: +" org-todo-regexp "\\)?"
5082 "\\(?: +\\(\\[#.\\]\\)\\)?"
5083 "\\(?: +"
5084 ;; Stats cookies can be stuck to body.
5085 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5086 "\\(%s\\)"
5087 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5088 "\\)"
5089 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5090 "[ \t]*$")
5091 org-todo-line-tags-regexp
5092 (concat "^\\(\\*+\\)"
5093 "\\(?: +" org-todo-regexp "\\)?"
5094 "\\(?: +\\(.*?\\)\\)??"
5095 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5096 "[ \t]*$"))
5097 (org-compute-latex-and-related-regexp)))))
5099 (defun org--setup-collect-keywords (regexp &optional files alist)
5100 "Return setup keywords values as an alist.
5102 REGEXP matches a subset of setup keywords. FILES is a list of
5103 file names already visited. It is used to avoid circular setup
5104 files. ALIST, when non-nil, is the alist computed so far.
5106 Return value contains the following keys: `archive', `category',
5107 `columns', `constants', `filetags', `link', `priorities',
5108 `property', `scripts', `startup', `tags' and `todo'."
5109 (org-with-wide-buffer
5110 (goto-char (point-min))
5111 (let ((case-fold-search t))
5112 (while (re-search-forward regexp nil t)
5113 (let ((element (org-element-at-point)))
5114 (when (eq (org-element-type element) 'keyword)
5115 (let ((key (org-element-property :key element))
5116 (value (org-element-property :value element)))
5117 (cond
5118 ((equal key "ARCHIVE")
5119 (when (org-string-nw-p value)
5120 (push (cons 'archive value) alist)))
5121 ((equal key "CATEGORY") (push (cons 'category value) alist))
5122 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5123 ((equal key "CONSTANTS")
5124 (let* ((constants (assq 'constants alist))
5125 (store (cdr constants)))
5126 (dolist (pair (org-split-string value))
5127 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5128 pair)
5129 (let* ((name (match-string 1 pair))
5130 (value (match-string 2 pair))
5131 (old (assoc name store)))
5132 (if old (setcdr old value)
5133 (push (cons name value) store)))))
5134 (if constants (setcdr constants store)
5135 (push (cons 'constants store) alist))))
5136 ((equal key "FILETAGS")
5137 (when (org-string-nw-p value)
5138 (let ((old (assq 'filetags alist))
5139 (new (apply #'nconc
5140 (mapcar (lambda (x) (org-split-string x ":"))
5141 (org-split-string value)))))
5142 (if old (setcdr old (append new (cdr old)))
5143 (push (cons 'filetags new) alist)))))
5144 ((equal key "LINK")
5145 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5146 (let ((links (assq 'link alist))
5147 (pair (cons (org-match-string-no-properties 1 value)
5148 (org-match-string-no-properties 2 value))))
5149 (if links (push pair (cdr links))
5150 (push (list 'link pair) alist)))))
5151 ((equal key "OPTIONS")
5152 (when (and (org-string-nw-p value)
5153 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5154 (push (cons 'scripts (read (match-string 1 value))) alist)))
5155 ((equal key "PRIORITIES")
5156 (push (cons 'priorities
5157 (let ((prio (org-split-string value)))
5158 (if (< (length prio) 3) '(?A ?C ?B)
5159 (mapcar #'string-to-char prio))))
5160 alist))
5161 ((equal key "PROPERTY")
5162 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5163 (let* ((property (assq 'property alist))
5164 (value (org--update-property-plist
5165 (org-match-string-no-properties 1 value)
5166 (org-match-string-no-properties 2 value)
5167 (cdr property))))
5168 (if property (setcdr property value)
5169 (push (cons 'property value) alist)))))
5170 ((equal key "STARTUP")
5171 (let ((startup (assq 'startup alist)))
5172 (if startup
5173 (setcdr startup
5174 (append (cdr startup) (org-split-string value)))
5175 (push (cons 'startup (org-split-string value)) alist))))
5176 ((equal key "TAGS")
5177 (let ((tag-cell (assq 'tags alist)))
5178 (if tag-cell
5179 (setcdr tag-cell
5180 (append (cdr tag-cell)
5181 '("\\n")
5182 (org-split-string value)))
5183 (push (cons 'tags (org-split-string value)) alist))))
5184 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5185 (let ((todo (assq 'todo alist))
5186 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5187 (org-split-string value))))
5188 (if todo (push value (cdr todo))
5189 (push (list 'todo value) alist))))
5190 ((equal key "SETUPFILE")
5191 (unless buffer-read-only ; Do not check in Gnus messages.
5192 (let ((f (and (org-string-nw-p value)
5193 (expand-file-name
5194 (org-remove-double-quotes value)))))
5195 (when (and f (file-readable-p f) (not (member f files)))
5196 (with-temp-buffer
5197 (insert-file-contents f)
5198 (setq alist
5199 ;; Fake Org mode to benefit from cache
5200 ;; without recurring needlessly.
5201 (let ((major-mode 'org-mode))
5202 (org--setup-collect-keywords
5203 regexp (cons f files) alist)))))))))))))))
5204 alist)
5206 (defun org--setup-process-tags (tags filetags)
5207 "Precompute variables used for tags.
5208 TAGS is a list of tags and tag group symbols, as strings.
5209 FILETAGS is a list of tags, as strings."
5210 ;; Process the file tags.
5211 (org-set-local 'org-file-tags
5212 (mapcar #'org-add-prop-inherited filetags))
5213 ;; Provide default tags if no local tags are found.
5214 (when (and (not tags) org-tag-alist)
5215 (setq tags
5216 (mapcar (lambda (tag)
5217 (case (car tag)
5218 (:startgroup "{")
5219 (:endgroup "}")
5220 (:grouptags ":")
5221 (:newline "\\n")
5222 (otherwise (concat (car tag)
5223 (and (characterp (cdr tag))
5224 (format "(%c)" (cdr tag)))))))
5225 org-tag-alist)))
5226 ;; Process the tags.
5227 (org-set-local 'org-tag-groups-alist nil)
5228 (org-set-local 'org-tag-alist nil)
5229 (let (group-flag)
5230 (while tags
5231 (let ((e (car tags)))
5232 (setq tags (cdr tags))
5233 (cond
5234 ((equal e "{")
5235 (push '(:startgroup) org-tag-alist)
5236 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5237 ((equal e "}")
5238 (push '(:endgroup) org-tag-alist)
5239 (setq group-flag nil))
5240 ((equal e ":")
5241 (push '(:grouptags) org-tag-alist)
5242 (setq group-flag 'append))
5243 ((equal e "\\n") (push '(:newline) org-tag-alist))
5244 ((string-match
5245 (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'") e)
5246 (let ((tag (match-string 1 e))
5247 (key (and (match-beginning 2)
5248 (string-to-char (match-string 2 e)))))
5249 (cond ((eq group-flag 'append)
5250 (setcar org-tag-groups-alist
5251 (append (car org-tag-groups-alist) (list tag))))
5252 (group-flag (push (list tag) org-tag-groups-alist)))
5253 (unless (assoc tag org-tag-alist)
5254 (push (cons tag key) org-tag-alist))))))))
5255 (setq org-tag-alist (nreverse org-tag-alist)))
5257 (defun org-file-contents (file &optional noerror)
5258 "Return the contents of FILE, as a string."
5259 (if (and file (file-readable-p file))
5260 (with-temp-buffer
5261 (insert-file-contents file)
5262 (buffer-string))
5263 (funcall (if noerror 'message 'error)
5264 "Cannot read file \"%s\"%s"
5265 file
5266 (let ((from (buffer-file-name (buffer-base-buffer))))
5267 (if from (concat " (referenced in file \"" from "\")") "")))))
5269 (defun org-extract-log-state-settings (x)
5270 "Extract the log state setting from a TODO keyword string.
5271 This will extract info from a string like \"WAIT(w@/!)\"."
5272 (let (kw key log1 log2)
5273 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5274 (setq kw (match-string 1 x)
5275 key (and (match-end 2) (match-string 2 x))
5276 log1 (and (match-end 3) (match-string 3 x))
5277 log2 (and (match-end 4) (match-string 4 x)))
5278 (and (or log1 log2)
5279 (list kw
5280 (and log1 (if (equal log1 "!") 'time 'note))
5281 (and log2 (if (equal log2 "!") 'time 'note)))))))
5283 (defun org-remove-keyword-keys (list)
5284 "Remove a pair of parenthesis at the end of each string in LIST."
5285 (mapcar (lambda (x)
5286 (if (string-match "(.*)$" x)
5287 (substring x 0 (match-beginning 0))
5289 list))
5291 (defun org-assign-fast-keys (alist)
5292 "Assign fast keys to a keyword-key alist.
5293 Respect keys that are already there."
5294 (let (new e (alt ?0))
5295 (while (setq e (pop alist))
5296 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5297 (cdr e)) ;; Key already assigned.
5298 (push e new)
5299 (let ((clist (string-to-list (downcase (car e))))
5300 (used (append new alist)))
5301 (when (= (car clist) ?@)
5302 (pop clist))
5303 (while (and clist (rassoc (car clist) used))
5304 (pop clist))
5305 (unless clist
5306 (while (rassoc alt used)
5307 (incf alt)))
5308 (push (cons (car e) (or (car clist) alt)) new))))
5309 (nreverse new)))
5311 ;;; Some variables used in various places
5313 (defvar org-window-configuration nil
5314 "Used in various places to store a window configuration.")
5315 (defvar org-selected-window nil
5316 "Used in various places to store a window configuration.")
5317 (defvar org-finish-function nil
5318 "Function to be called when `C-c C-c' is used.
5319 This is for getting out of special buffers like capture.")
5322 ;; FIXME: Occasionally check by commenting these, to make sure
5323 ;; no other functions uses these, forgetting to let-bind them.
5324 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5325 (defvar org-last-state)
5326 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5328 ;; Defined somewhere in this file, but used before definition.
5329 (defvar org-entities) ;; defined in org-entities.el
5330 (defvar org-struct-menu)
5331 (defvar org-org-menu)
5332 (defvar org-tbl-menu)
5334 ;;;; Define the Org-mode
5336 ;; We use a before-change function to check if a table might need
5337 ;; an update.
5338 (defvar org-table-may-need-update t
5339 "Indicates that a table might need an update.
5340 This variable is set by `org-before-change-function'.
5341 `org-table-align' sets it back to nil.")
5342 (defun org-before-change-function (beg end)
5343 "Every change indicates that a table might need an update."
5344 (setq org-table-may-need-update t))
5345 (defvar org-mode-map)
5346 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5347 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5348 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5349 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5350 (defvar org-table-buffer-is-an nil)
5352 (defvar bidi-paragraph-direction)
5353 (defvar buffer-face-mode-face)
5355 (require 'outline)
5356 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5357 (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"))
5358 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5360 ;; Other stuff we need.
5361 (require 'time-date)
5362 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5363 (require 'easymenu)
5364 (require 'overlay)
5366 ;; (require 'org-macs) moved higher up in the file before it is first used
5367 (require 'org-entities)
5368 ;; (require 'org-compat) moved higher up in the file before it is first used
5369 (require 'org-faces)
5370 (require 'org-list)
5371 (require 'org-pcomplete)
5372 (require 'org-src)
5373 (require 'org-footnote)
5374 (require 'org-macro)
5376 ;; babel
5377 (require 'ob)
5379 ;;;###autoload
5380 (define-derived-mode org-mode outline-mode "Org"
5381 "Outline-based notes management and organizer, alias
5382 \"Carsten's outline-mode for keeping track of everything.\"
5384 Org-mode develops organizational tasks around a NOTES file which
5385 contains information about projects as plain text. Org-mode is
5386 implemented on top of outline-mode, which is ideal to keep the content
5387 of large files well structured. It supports ToDo items, deadlines and
5388 time stamps, which magically appear in the diary listing of the Emacs
5389 calendar. Tables are easily created with a built-in table editor.
5390 Plain text URL-like links connect to websites, emails (VM), Usenet
5391 messages (Gnus), BBDB entries, and any files related to the project.
5392 For printing and sharing of notes, an Org-mode file (or a part of it)
5393 can be exported as a structured ASCII or HTML file.
5395 The following commands are available:
5397 \\{org-mode-map}"
5399 ;; Get rid of Outline menus, they are not needed
5400 ;; Need to do this here because define-derived-mode sets up
5401 ;; the keymap so late. Still, it is a waste to call this each time
5402 ;; we switch another buffer into org-mode.
5403 (if (featurep 'xemacs)
5404 (when (boundp 'outline-mode-menu-heading)
5405 ;; Assume this is Greg's port, it uses easymenu
5406 (easy-menu-remove outline-mode-menu-heading)
5407 (easy-menu-remove outline-mode-menu-show)
5408 (easy-menu-remove outline-mode-menu-hide))
5409 (define-key org-mode-map [menu-bar headings] 'undefined)
5410 (define-key org-mode-map [menu-bar hide] 'undefined)
5411 (define-key org-mode-map [menu-bar show] 'undefined))
5413 (org-load-modules-maybe)
5414 (easy-menu-add org-org-menu)
5415 (easy-menu-add org-tbl-menu)
5416 (org-install-agenda-files-menu)
5417 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5418 (add-to-invisibility-spec '(org-cwidth))
5419 (add-to-invisibility-spec '(org-hide-block . t))
5420 (when (featurep 'xemacs)
5421 (org-set-local 'line-move-ignore-invisible t))
5422 (org-set-local 'outline-regexp org-outline-regexp)
5423 (org-set-local 'outline-level 'org-outline-level)
5424 (setq bidi-paragraph-direction 'left-to-right)
5425 (when (and org-ellipsis
5426 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5427 (fboundp 'make-glyph-code))
5428 (unless org-display-table
5429 (setq org-display-table (make-display-table)))
5430 (set-display-table-slot
5431 org-display-table 4
5432 (vconcat (mapcar
5433 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5434 org-ellipsis)))
5435 (if (stringp org-ellipsis) org-ellipsis "..."))))
5436 (setq buffer-display-table org-display-table))
5437 (org-set-regexps-and-options)
5438 (org-set-font-lock-defaults)
5439 (when (and org-tag-faces (not org-tags-special-faces-re))
5440 ;; tag faces set outside customize.... force initialization.
5441 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5442 ;; Calc embedded
5443 (org-set-local 'calc-embedded-open-mode "# ")
5444 ;; Modify a few syntax entries
5445 (modify-syntax-entry ?@ "w")
5446 (modify-syntax-entry ?\" "\"")
5447 (modify-syntax-entry ?\\ "_")
5448 (modify-syntax-entry ?~ "_")
5449 (if org-startup-truncated (setq truncate-lines t))
5450 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5451 (org-set-local 'font-lock-unfontify-region-function
5452 'org-unfontify-region)
5453 ;; Activate before-change-function
5454 (org-set-local 'org-table-may-need-update t)
5455 (org-add-hook 'before-change-functions 'org-before-change-function nil
5456 'local)
5457 ;; Check for running clock before killing a buffer
5458 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5459 ;; Initialize macros templates.
5460 (org-macro-initialize-templates)
5461 ;; Initialize radio targets.
5462 (org-update-radio-target-regexp)
5463 ;; Indentation.
5464 (org-set-local 'indent-line-function 'org-indent-line)
5465 (org-set-local 'indent-region-function 'org-indent-region)
5466 ;; Filling and auto-filling.
5467 (org-setup-filling)
5468 ;; Comments.
5469 (org-setup-comments-handling)
5470 ;; Initialize cache.
5471 (org-element-cache-reset)
5472 ;; Beginning/end of defun
5473 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5474 (org-set-local 'end-of-defun-function
5475 (lambda ()
5476 (if (not (org-at-heading-p))
5477 (org-forward-element)
5478 (org-forward-element)
5479 (forward-char -1))))
5480 ;; Next error for sparse trees
5481 (org-set-local 'next-error-function 'org-occur-next-match)
5482 ;; Make sure dependence stuff works reliably, even for users who set it
5483 ;; too late :-(
5484 (if org-enforce-todo-dependencies
5485 (add-hook 'org-blocker-hook
5486 'org-block-todo-from-children-or-siblings-or-parent)
5487 (remove-hook 'org-blocker-hook
5488 'org-block-todo-from-children-or-siblings-or-parent))
5489 (if org-enforce-todo-checkbox-dependencies
5490 (add-hook 'org-blocker-hook
5491 'org-block-todo-from-checkboxes)
5492 (remove-hook 'org-blocker-hook
5493 'org-block-todo-from-checkboxes))
5495 ;; Align options lines
5496 (org-set-local
5497 'align-mode-rules-list
5498 '((org-in-buffer-settings
5499 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5500 (modes . '(org-mode)))))
5502 ;; Imenu
5503 (org-set-local 'imenu-create-index-function
5504 'org-imenu-get-tree)
5506 ;; Make isearch reveal context
5507 (if (or (featurep 'xemacs)
5508 (not (boundp 'outline-isearch-open-invisible-function)))
5509 ;; Emacs 21 and XEmacs make use of the hook
5510 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5511 ;; Emacs 22 deals with this through a special variable
5512 (org-set-local 'outline-isearch-open-invisible-function
5513 (lambda (&rest ignore) (org-show-context 'isearch))))
5515 ;; Setup the pcomplete hooks
5516 (set (make-local-variable 'pcomplete-command-completion-function)
5517 'org-pcomplete-initial)
5518 (set (make-local-variable 'pcomplete-command-name-function)
5519 'org-command-at-point)
5520 (set (make-local-variable 'pcomplete-default-completion-function)
5521 'ignore)
5522 (set (make-local-variable 'pcomplete-parse-arguments-function)
5523 'org-parse-arguments)
5524 (set (make-local-variable 'pcomplete-termination-string) "")
5525 (when (>= emacs-major-version 23)
5526 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5528 ;; If empty file that did not turn on org-mode automatically, make it to.
5529 (if (and org-insert-mode-line-in-empty-file
5530 (org-called-interactively-p 'any)
5531 (= (point-min) (point-max)))
5532 (insert "# -*- mode: org -*-\n\n"))
5533 (unless org-inhibit-startup
5534 (org-unmodified
5535 (and org-startup-with-beamer-mode (org-beamer-mode))
5536 (when org-startup-align-all-tables
5537 (org-table-map-tables 'org-table-align 'quietly))
5538 (when org-startup-with-inline-images
5539 (org-display-inline-images))
5540 (when org-startup-with-latex-preview
5541 (org-toggle-latex-fragment))
5542 (unless org-inhibit-startup-visibility-stuff
5543 (org-set-startup-visibility))
5544 (org-refresh-effort-properties)))
5545 ;; Try to set org-hide correctly
5546 (let ((foreground (org-find-invisible-foreground)))
5547 (if foreground
5548 (set-face-foreground 'org-hide foreground))))
5550 ;; Update `customize-package-emacs-version-alist'
5551 (add-to-list 'customize-package-emacs-version-alist
5552 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5553 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5554 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5556 (defvar org-mode-transpose-word-syntax-table
5557 (let ((st (make-syntax-table text-mode-syntax-table)))
5558 (mapc (lambda(c) (modify-syntax-entry
5559 (string-to-char (car c)) "w p" st))
5560 org-emphasis-alist)
5561 st))
5563 (when (fboundp 'abbrev-table-put)
5564 (abbrev-table-put org-mode-abbrev-table
5565 :parents (list text-mode-abbrev-table)))
5567 (defun org-find-invisible-foreground ()
5568 (let ((candidates (remove
5569 "unspecified-bg"
5570 (nconc
5571 (list (face-background 'default)
5572 (face-background 'org-default))
5573 (mapcar
5574 (lambda (alist)
5575 (when (boundp alist)
5576 (cdr (assoc 'background-color (symbol-value alist)))))
5577 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5578 (list (face-foreground 'org-hide))))))
5579 (car (remove nil candidates))))
5581 (defun org-current-time (&optional rounding-minutes past)
5582 "Current time, possibly rounded to ROUNDING-MINUTES.
5583 When ROUNDING-MINUTES is not an integer, fall back on the car of
5584 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5585 the rounding returns a past time."
5586 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5587 (car org-time-stamp-rounding-minutes)))
5588 (time (decode-time)) res)
5589 (if (< r 1)
5590 (current-time)
5591 (setq res
5592 (apply 'encode-time
5593 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5594 (nthcdr 2 time))))
5595 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5596 (seconds-to-time (- (org-float-time res) (* r 60)))
5597 res))))
5599 (defun org-today ()
5600 "Return today date, considering `org-extend-today-until'."
5601 (time-to-days
5602 (time-subtract (current-time)
5603 (list 0 (* 3600 org-extend-today-until) 0))))
5605 ;;;; Font-Lock stuff, including the activators
5607 (defvar org-mouse-map (make-sparse-keymap))
5608 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5609 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5610 (when org-mouse-1-follows-link
5611 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5612 (when org-tab-follows-link
5613 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5614 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5616 (require 'font-lock)
5618 (defconst org-non-link-chars "]\t\n\r<>")
5619 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5620 "file+sys" "news" "shell" "elisp" "doi" "message"
5621 "help"))
5622 (defvar org-link-types-re nil
5623 "Matches a link that has a url-like prefix like \"http:\"")
5624 (defvar org-link-re-with-space nil
5625 "Matches a link with spaces, optional angular brackets around it.")
5626 (defvar org-link-re-with-space2 nil
5627 "Matches a link with spaces, optional angular brackets around it.")
5628 (defvar org-link-re-with-space3 nil
5629 "Matches a link with spaces, only for internal part in bracket links.")
5630 (defvar org-angle-link-re nil
5631 "Matches link with angular brackets, spaces are allowed.")
5632 (defvar org-plain-link-re nil
5633 "Matches plain link, without spaces.")
5634 (defvar org-bracket-link-regexp nil
5635 "Matches a link in double brackets.")
5636 (defvar org-bracket-link-analytic-regexp nil
5637 "Regular expression used to analyze links.
5638 Here is what the match groups contain after a match:
5639 1: http:
5640 2: http
5641 3: path
5642 4: [desc]
5643 5: desc")
5644 (defvar org-bracket-link-analytic-regexp++ nil
5645 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5646 (defvar org-any-link-re nil
5647 "Regular expression matching any link.")
5649 (defconst org-match-sexp-depth 3
5650 "Number of stacked braces for sub/superscript matching.")
5652 (defun org-create-multibrace-regexp (left right n)
5653 "Create a regular expression which will match a balanced sexp.
5654 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5655 as single character strings.
5656 The regexp returned will match the entire expression including the
5657 delimiters. It will also define a single group which contains the
5658 match except for the outermost delimiters. The maximum depth of
5659 stacked delimiters is N. Escaping delimiters is not possible."
5660 (let* ((nothing (concat "[^" left right "]*?"))
5661 (or "\\|")
5662 (re nothing)
5663 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5664 (while (> n 1)
5665 (setq n (1- n)
5666 re (concat re or next)
5667 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5668 (concat left "\\(" re "\\)" right)))
5670 (defconst org-match-substring-regexp
5671 (concat
5672 "\\(\\S-\\)\\([_^]\\)\\("
5673 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5674 "\\|"
5675 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5676 "\\|"
5677 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5678 "The regular expression matching a sub- or superscript.")
5680 (defconst org-match-substring-with-braces-regexp
5681 (concat
5682 "\\(\\S-\\)\\([_^]\\)"
5683 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5684 "The regular expression matching a sub- or superscript, forcing braces.")
5686 (defun org-make-link-regexps ()
5687 "Update the link regular expressions.
5688 This should be called after the variable `org-link-types' has changed."
5689 (let ((types-re (regexp-opt org-link-types t)))
5690 (setq org-link-types-re
5691 (concat "\\`" types-re ":")
5692 org-link-re-with-space
5693 (concat "<?" types-re ":"
5694 "\\([^" org-non-link-chars " ]"
5695 "[^" org-non-link-chars "]*"
5696 "[^" org-non-link-chars " ]\\)>?")
5697 org-link-re-with-space2
5698 (concat "<?" types-re ":"
5699 "\\([^" org-non-link-chars " ]"
5700 "[^\t\n\r]*"
5701 "[^" org-non-link-chars " ]\\)>?")
5702 org-link-re-with-space3
5703 (concat "<?" types-re ":"
5704 "\\([^" org-non-link-chars " ]"
5705 "[^\t\n\r]*\\)")
5706 org-angle-link-re
5707 (concat "<" types-re ":"
5708 "\\([^" org-non-link-chars " ]"
5709 "[^" org-non-link-chars "]*"
5710 "\\)>")
5711 org-plain-link-re
5712 (concat
5713 "\\<" types-re ":"
5714 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5715 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5716 org-bracket-link-regexp
5717 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5718 org-bracket-link-analytic-regexp
5719 (concat
5720 "\\[\\["
5721 "\\(" types-re ":\\)?"
5722 "\\([^]]+\\)"
5723 "\\]"
5724 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5725 "\\]")
5726 org-bracket-link-analytic-regexp++
5727 (concat
5728 "\\[\\["
5729 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5730 "\\([^]]+\\)"
5731 "\\]"
5732 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5733 "\\]")
5734 org-any-link-re
5735 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5736 org-angle-link-re "\\)\\|\\("
5737 org-plain-link-re "\\)"))))
5739 (org-make-link-regexps)
5741 (defvar org-emph-face nil)
5743 (defun org-do-emphasis-faces (limit)
5744 "Run through the buffer and emphasize strings."
5745 (let (rtn a)
5746 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5747 (let* ((border (char-after (match-beginning 3)))
5748 (bre (regexp-quote (char-to-string border))))
5749 (if (and (not (= border (char-after (match-beginning 4))))
5750 (not (save-match-data
5751 (string-match (concat bre ".*" bre)
5752 (replace-regexp-in-string
5753 "\n" " "
5754 (substring (match-string 2) 1 -1))))))
5755 (progn
5756 (setq rtn t)
5757 (setq a (assoc (match-string 3) org-emphasis-alist))
5758 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5759 'face
5760 (nth 1 a))
5761 (and (nth 2 a)
5762 (org-remove-flyspell-overlays-in
5763 (match-beginning 0) (match-end 0)))
5764 (add-text-properties (match-beginning 2) (match-end 2)
5765 '(font-lock-multiline t org-emphasis t))
5766 (when org-hide-emphasis-markers
5767 (add-text-properties (match-end 4) (match-beginning 5)
5768 '(invisible org-link))
5769 (add-text-properties (match-beginning 3) (match-end 3)
5770 '(invisible org-link))))))
5771 (goto-char (1+ (match-beginning 0))))
5772 rtn))
5774 (defun org-emphasize (&optional char)
5775 "Insert or change an emphasis, i.e. a font like bold or italic.
5776 If there is an active region, change that region to a new emphasis.
5777 If there is no region, just insert the marker characters and position
5778 the cursor between them.
5779 CHAR should be the marker character. If it is a space, it means to
5780 remove the emphasis of the selected region.
5781 If CHAR is not given (for example in an interactive call) it will be
5782 prompted for."
5783 (interactive)
5784 (let ((erc org-emphasis-regexp-components)
5785 (prompt "")
5786 (string "") beg end move c s)
5787 (if (org-region-active-p)
5788 (setq beg (region-beginning) end (region-end)
5789 string (buffer-substring beg end))
5790 (setq move t))
5792 (unless char
5793 (message "Emphasis marker or tag: [%s]"
5794 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5795 (setq char (read-char-exclusive)))
5796 (if (equal char ?\ )
5797 (setq s "" move nil)
5798 (unless (assoc (char-to-string char) org-emphasis-alist)
5799 (user-error "No such emphasis marker: \"%c\"" char))
5800 (setq s (char-to-string char)))
5801 (while (and (> (length string) 1)
5802 (equal (substring string 0 1) (substring string -1))
5803 (assoc (substring string 0 1) org-emphasis-alist))
5804 (setq string (substring string 1 -1)))
5805 (setq string (concat s string s))
5806 (if beg (delete-region beg end))
5807 (unless (or (bolp)
5808 (string-match (concat "[" (nth 0 erc) "\n]")
5809 (char-to-string (char-before (point)))))
5810 (insert " "))
5811 (unless (or (eobp)
5812 (string-match (concat "[" (nth 1 erc) "\n]")
5813 (char-to-string (char-after (point)))))
5814 (insert " ") (backward-char 1))
5815 (insert string)
5816 (and move (backward-char 1))))
5818 (defconst org-nonsticky-props
5819 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5821 (defsubst org-rear-nonsticky-at (pos)
5822 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5824 (defun org-activate-plain-links (limit)
5825 "Add link properties for plain links."
5826 (let (f hl)
5827 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5828 (not (member 'org-tag
5829 (get-text-property (1- (match-beginning 0)) 'face)))
5830 (not (org-in-src-block-p)))
5831 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5832 (setq f (get-text-property (match-beginning 0) 'face))
5833 (setq hl (org-match-string-no-properties 0))
5834 (if (or (eq f 'org-tag)
5835 (and (listp f) (memq 'org-tag f)))
5837 (add-text-properties (match-beginning 0) (match-end 0)
5838 (list 'mouse-face 'highlight
5839 'face 'org-link
5840 'htmlize-link `(:uri ,hl)
5841 'keymap org-mouse-map))
5842 (org-rear-nonsticky-at (match-end 0)))
5843 t)))
5845 (defun org-activate-code (limit)
5846 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5847 (progn
5848 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5849 (remove-text-properties (match-beginning 0) (match-end 0)
5850 '(display t invisible t intangible t))
5851 t)))
5853 (defcustom org-src-fontify-natively t
5854 "When non-nil, fontify code in code blocks."
5855 :type 'boolean
5856 :version "24.4"
5857 :package-version '(Org . "8.3")
5858 :group 'org-appearance
5859 :group 'org-babel)
5861 (defcustom org-allow-promoting-top-level-subtree nil
5862 "When non-nil, allow promoting a top level subtree.
5863 The leading star of the top level headline will be replaced
5864 by a #."
5865 :type 'boolean
5866 :version "24.1"
5867 :group 'org-appearance)
5869 (defun org-fontify-meta-lines-and-blocks (limit)
5870 (condition-case nil
5871 (org-fontify-meta-lines-and-blocks-1 limit)
5872 (error (message "org-mode fontification error"))))
5874 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5875 "Fontify #+ lines and blocks."
5876 (let ((case-fold-search t))
5877 (if (re-search-forward
5878 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5879 limit t)
5880 (let ((beg (match-beginning 0))
5881 (block-start (match-end 0))
5882 (block-end nil)
5883 (lang (match-string 7))
5884 (beg1 (line-beginning-position 2))
5885 (dc1 (downcase (match-string 2)))
5886 (dc3 (downcase (match-string 3)))
5887 end end1 quoting block-type ovl)
5888 (cond
5889 ((and (match-end 4) (equal dc3 "+begin"))
5890 ;; Truly a block
5891 (setq block-type (downcase (match-string 5))
5892 quoting (member block-type org-protecting-blocks))
5893 (when (re-search-forward
5894 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5895 nil t) ;; on purpose, we look further than LIMIT
5896 (setq end (min (point-max) (match-end 0))
5897 end1 (min (point-max) (1- (match-beginning 0))))
5898 (setq block-end (match-beginning 0))
5899 (when quoting
5900 (org-remove-flyspell-overlays-in beg1 end1)
5901 (remove-text-properties beg end
5902 '(display t invisible t intangible t)))
5903 (add-text-properties
5904 beg end '(font-lock-fontified t font-lock-multiline t))
5905 (add-text-properties beg beg1 '(face org-meta-line))
5906 (org-remove-flyspell-overlays-in beg beg1)
5907 (add-text-properties ; For end_src
5908 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5909 (org-remove-flyspell-overlays-in end1 end)
5910 (cond
5911 ((and lang (not (string= lang "")) org-src-fontify-natively)
5912 (org-src-font-lock-fontify-block lang block-start block-end)
5913 (add-text-properties beg1 block-end '(src-block t)))
5914 (quoting
5915 (add-text-properties beg1 (min (point-max) (1+ end1))
5916 '(face org-block))) ; end of source block
5917 ((not org-fontify-quote-and-verse-blocks))
5918 ((string= block-type "quote")
5919 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5920 ((string= block-type "verse")
5921 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5922 (add-text-properties beg beg1 '(face org-block-begin-line))
5923 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5924 '(face org-block-end-line))
5926 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5927 (org-remove-flyspell-overlays-in
5928 (match-beginning 0)
5929 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5930 (add-text-properties
5931 beg (match-end 3)
5932 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5933 '(font-lock-fontified t invisible t)
5934 '(font-lock-fontified t face org-document-info-keyword)))
5935 (add-text-properties
5936 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5937 (if (string-equal dc1 "+title:")
5938 '(font-lock-fontified t face org-document-title)
5939 '(font-lock-fontified t face org-document-info))))
5940 ((equal dc1 "+caption:")
5941 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5942 (remove-text-properties (match-beginning 0) (match-end 0)
5943 '(display t invisible t intangible t))
5944 (add-text-properties (match-beginning 1) (match-end 3)
5945 '(font-lock-fontified t face org-meta-line))
5946 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5947 '(font-lock-fontified t face org-block))
5949 ((member dc3 '(" " ""))
5950 (org-remove-flyspell-overlays-in beg (match-end 0))
5951 (add-text-properties
5952 beg (match-end 0)
5953 '(font-lock-fontified t face font-lock-comment-face)))
5954 (t ;; just any other in-buffer setting, but not indented
5955 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5956 (remove-text-properties (match-beginning 0) (match-end 0)
5957 '(display t invisible t intangible t))
5958 (add-text-properties beg (match-end 0)
5959 '(font-lock-fontified t face org-meta-line))
5960 t))))))
5962 (defun org-fontify-drawers (limit)
5963 "Fontify drawers."
5964 (when (re-search-forward org-drawer-regexp limit t)
5965 (add-text-properties
5966 (match-beginning 0) (match-end 0)
5967 '(font-lock-fontified t face org-special-keyword))
5968 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5971 (defun org-fontify-macros (limit)
5972 "Fontify macros."
5973 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5974 (add-text-properties
5975 (match-beginning 0) (match-end 0)
5976 '(font-lock-fontified t face org-macro))
5977 (when org-hide-macro-markers
5978 (add-text-properties (match-end 2) (match-beginning 2)
5979 '(invisible t))
5980 (add-text-properties (match-beginning 1) (match-end 1)
5981 '(invisible t)))
5982 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5985 (defun org-activate-angle-links (limit)
5986 "Add text properties for angle links."
5987 (if (and (re-search-forward org-angle-link-re limit t)
5988 (not (org-in-src-block-p)))
5989 (progn
5990 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5991 (add-text-properties (match-beginning 0) (match-end 0)
5992 (list 'mouse-face 'highlight
5993 'keymap org-mouse-map))
5994 (org-rear-nonsticky-at (match-end 0))
5995 t)))
5997 (defun org-activate-footnote-links (limit)
5998 "Add text properties for footnotes."
5999 (let ((fn (org-footnote-next-reference-or-definition limit)))
6000 (when fn
6001 (let* ((beg (nth 1 fn))
6002 (end (nth 2 fn))
6003 (label (car fn))
6004 (referencep (/= (line-beginning-position) beg)))
6005 (when (and referencep (nth 3 fn))
6006 (save-excursion
6007 (goto-char beg)
6008 (search-forward (or label "fn:"))
6009 (org-remove-flyspell-overlays-in beg (match-end 0))))
6010 (add-text-properties beg end
6011 (list 'mouse-face 'highlight
6012 'keymap org-mouse-map
6013 'help-echo
6014 (if referencep "Footnote reference"
6015 "Footnote definition")
6016 'font-lock-fontified t
6017 'font-lock-multiline t
6018 'face 'org-footnote))))))
6020 (defun org-activate-bracket-links (limit)
6021 "Add text properties for bracketed links."
6022 (if (and (re-search-forward org-bracket-link-regexp limit t)
6023 (not (org-in-src-block-p)))
6024 (let* ((hl (org-match-string-no-properties 1))
6025 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6026 (ip (org-maybe-intangible
6027 (list 'invisible 'org-link
6028 'keymap org-mouse-map 'mouse-face 'highlight
6029 'font-lock-multiline t 'help-echo help
6030 'htmlize-link `(:uri ,hl))))
6031 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6032 'font-lock-multiline t 'help-echo help
6033 'htmlize-link `(:uri ,hl))))
6034 ;; We need to remove the invisible property here. Table narrowing
6035 ;; may have made some of this invisible.
6036 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6037 (remove-text-properties (match-beginning 0) (match-end 0)
6038 '(invisible nil))
6039 (if (match-end 3)
6040 (progn
6041 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6042 (org-rear-nonsticky-at (match-beginning 3))
6043 (add-text-properties (match-beginning 3) (match-end 3) vp)
6044 (org-rear-nonsticky-at (match-end 3))
6045 (add-text-properties (match-end 3) (match-end 0) ip)
6046 (org-rear-nonsticky-at (match-end 0)))
6047 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6048 (org-rear-nonsticky-at (match-beginning 1))
6049 (add-text-properties (match-beginning 1) (match-end 1) vp)
6050 (org-rear-nonsticky-at (match-end 1))
6051 (add-text-properties (match-end 1) (match-end 0) ip)
6052 (org-rear-nonsticky-at (match-end 0)))
6053 t)))
6055 (defun org-activate-dates (limit)
6056 "Add text properties for dates."
6057 (if (and (re-search-forward org-tsr-regexp-both limit t)
6058 (not (equal (char-before (match-beginning 0)) 91)))
6059 (progn
6060 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6061 (add-text-properties (match-beginning 0) (match-end 0)
6062 (list 'mouse-face 'highlight
6063 'keymap org-mouse-map))
6064 (org-rear-nonsticky-at (match-end 0))
6065 (when org-display-custom-times
6066 (if (match-end 3)
6067 (org-display-custom-time (match-beginning 3) (match-end 3)))
6068 (org-display-custom-time (match-beginning 1) (match-end 1)))
6069 t)))
6071 (defvar org-target-link-regexp nil
6072 "Regular expression matching radio targets in plain text.")
6073 (make-variable-buffer-local 'org-target-link-regexp)
6075 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6076 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6077 border border border))
6078 "Regular expression matching a link target.")
6080 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6081 "Regular expression matching a radio target.")
6083 (defconst org-any-target-regexp
6084 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6085 "Regular expression matching any target.")
6087 (defun org-activate-target-links (limit)
6088 "Add text properties for target matches."
6089 (when org-target-link-regexp
6090 (let ((case-fold-search t))
6091 (if (re-search-forward org-target-link-regexp limit t)
6092 (progn
6093 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6094 (add-text-properties (match-beginning 1) (match-end 1)
6095 (list 'mouse-face 'highlight
6096 'keymap org-mouse-map
6097 'help-echo "Radio target link"
6098 'org-linked-text t))
6099 (org-rear-nonsticky-at (match-end 1))
6100 t)))))
6102 (defun org-update-radio-target-regexp ()
6103 "Find all radio targets in this file and update the regular expression.
6104 Also refresh fontification if needed."
6105 (interactive)
6106 (let ((old-regexp org-target-link-regexp)
6107 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6108 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6109 (targets
6110 (org-with-wide-buffer
6111 (goto-char (point-min))
6112 (let (rtn)
6113 (while (re-search-forward org-radio-target-regexp nil t)
6114 ;; Make sure point is really within the object.
6115 (backward-char)
6116 (let ((obj (org-element-context)))
6117 (when (eq (org-element-type obj) 'radio-target)
6118 (add-to-list 'rtn (org-element-property :value obj)))))
6119 rtn))))
6120 (setq org-target-link-regexp
6121 (and targets
6122 (concat before-re
6123 (mapconcat
6124 (lambda (x)
6125 (replace-regexp-in-string
6126 " +" "\\s-+" (regexp-quote x) t t))
6127 targets
6128 "\\|")
6129 after-re)))
6130 (unless (equal old-regexp org-target-link-regexp)
6131 ;; Clean-up cache.
6132 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6133 ((not org-target-link-regexp) old-regexp)
6135 (concat before-re
6136 (mapconcat
6137 (lambda (re)
6138 (substring re (length before-re)
6139 (- (length after-re))))
6140 (list old-regexp org-target-link-regexp)
6141 "\\|")
6142 after-re)))))
6143 (org-with-wide-buffer
6144 (goto-char (point-min))
6145 (while (re-search-forward regexp nil t)
6146 (org-element-cache-refresh (match-beginning 1)))))
6147 ;; Re fontify buffer.
6148 (when (memq 'radio org-highlight-links)
6149 (org-restart-font-lock)))))
6151 (defun org-hide-wide-columns (limit)
6152 (let (s e)
6153 (setq s (text-property-any (point) (or limit (point-max))
6154 'org-cwidth t))
6155 (when s
6156 (setq e (next-single-property-change s 'org-cwidth))
6157 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6158 (goto-char e)
6159 t)))
6161 (defvar org-latex-and-related-regexp nil
6162 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6164 (defun org-compute-latex-and-related-regexp ()
6165 "Compute regular expression for LaTeX, entities and sub/superscript.
6166 Result depends on variable `org-highlight-latex-and-related'."
6167 (org-set-local
6168 'org-latex-and-related-regexp
6169 (let* ((re-sub
6170 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6171 ((eq org-use-sub-superscripts '{})
6172 (list org-match-substring-with-braces-regexp))
6173 (org-use-sub-superscripts (list org-match-substring-regexp))))
6174 (re-latex
6175 (when (memq 'latex org-highlight-latex-and-related)
6176 (let ((matchers (plist-get org-format-latex-options :matchers)))
6177 (delq nil
6178 (mapcar (lambda (x)
6179 (and (member (car x) matchers) (nth 1 x)))
6180 org-latex-regexps)))))
6181 (re-entities
6182 (when (memq 'entities org-highlight-latex-and-related)
6183 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6184 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6186 (defun org-do-latex-and-related (limit)
6187 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6188 LIMIT bounds the search for syntax to highlight. Stop at first
6189 highlighted object, if any. Return t if some highlighting was
6190 done, nil otherwise."
6191 (when (org-string-nw-p org-latex-and-related-regexp)
6192 (catch 'found
6193 (while (re-search-forward org-latex-and-related-regexp limit t)
6194 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6195 'face))
6196 '(org-code org-verbatim underline))
6197 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6198 '(?_ ?^))
6200 0)))
6201 (font-lock-prepend-text-property
6202 (+ offset (match-beginning 0)) (match-end 0)
6203 'face 'org-latex-and-related)
6204 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6205 '(font-lock-multiline t)))
6206 (throw 'found t)))
6207 nil)))
6209 (defun org-restart-font-lock ()
6210 "Restart `font-lock-mode', to force refontification."
6211 (when (and (boundp 'font-lock-mode) font-lock-mode)
6212 (font-lock-mode -1)
6213 (font-lock-mode 1)))
6215 (defun org-activate-tags (limit)
6216 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6217 (progn
6218 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6219 (add-text-properties (match-beginning 1) (match-end 1)
6220 (list 'mouse-face 'highlight
6221 'keymap org-mouse-map))
6222 (org-rear-nonsticky-at (match-end 1))
6223 t)))
6225 (defun org-outline-level ()
6226 "Compute the outline level of the heading at point.
6228 If this is called at a normal headline, the level is the number
6229 of stars. Use `org-reduced-level' to remove the effect of
6230 `org-odd-levels'. Unlike to `org-current-level', this function
6231 takes into consideration inlinetasks."
6232 (org-with-wide-buffer
6233 (end-of-line)
6234 (if (re-search-backward org-outline-regexp-bol nil t)
6235 (1- (- (match-end 0) (match-beginning 0)))
6236 0)))
6238 (defvar org-font-lock-keywords nil)
6240 (defsubst org-re-property (property &optional literal allow-null)
6241 "Return a regexp matching a PROPERTY line.
6243 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6244 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6245 non-nil, match properties even without a value.
6247 Match group 3 is set to the value when it exists. If there is no
6248 value and ALLOW-NULL is non-nil, it is set to the empty string."
6249 (concat
6250 "^\\(?4:[ \t]*\\)"
6251 (format "\\(?1::\\(?2:%s\\):\\)"
6252 (if literal property (regexp-quote property)))
6253 (if allow-null
6254 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6255 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6257 (defconst org-property-re
6258 (org-re-property "\\S-+" 'literal t)
6259 "Regular expression matching a property line.
6260 There are four matching groups:
6261 1: :PROPKEY: including the leading and trailing colon,
6262 2: PROPKEY without the leading and trailing colon,
6263 3: PROPVAL without leading or trailing spaces,
6264 4: the indentation of the current line,
6265 5: trailing whitespace.")
6267 (defvar org-font-lock-hook nil
6268 "Functions to be called for special font lock stuff.")
6270 (defvar org-font-lock-set-keywords-hook nil
6271 "Functions that can manipulate `org-font-lock-extra-keywords'.
6272 This is called after `org-font-lock-extra-keywords' is defined, but before
6273 it is installed to be used by font lock. This can be useful if something
6274 needs to be inserted at a specific position in the font-lock sequence.")
6276 (defun org-font-lock-hook (limit)
6277 "Run `org-font-lock-hook' within LIMIT."
6278 (run-hook-with-args 'org-font-lock-hook limit))
6280 (defun org-set-font-lock-defaults ()
6281 "Set font lock defaults for the current buffer."
6282 (let* ((em org-fontify-emphasized-text)
6283 (lk org-highlight-links)
6284 (org-font-lock-extra-keywords
6285 (list
6286 ;; Call the hook
6287 '(org-font-lock-hook)
6288 ;; Headlines
6289 `(,(if org-fontify-whole-heading-line
6290 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6291 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6292 (1 (org-get-level-face 1))
6293 (2 (org-get-level-face 2))
6294 (3 (org-get-level-face 3)))
6295 ;; Table lines
6296 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6297 (1 'org-table t))
6298 ;; Table internals
6299 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6300 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6301 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6302 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6303 ;; Drawers
6304 '(org-fontify-drawers)
6305 ;; Properties
6306 (list org-property-re
6307 '(1 'org-special-keyword t)
6308 '(3 'org-property-value t))
6309 ;; Links
6310 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6311 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6312 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6313 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6314 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6315 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6316 (if (memq 'footnote lk) '(org-activate-footnote-links))
6317 ;; Targets.
6318 (list org-any-target-regexp '(0 'org-target t))
6319 ;; Diary sexps.
6320 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6321 ;; Macro
6322 '(org-fontify-macros)
6323 '(org-hide-wide-columns (0 nil append))
6324 ;; TODO keyword
6325 (list (format org-heading-keyword-regexp-format
6326 org-todo-regexp)
6327 '(2 (org-get-todo-face 2) t))
6328 ;; DONE
6329 (if org-fontify-done-headline
6330 (list (format org-heading-keyword-regexp-format
6331 (concat
6332 "\\(?:"
6333 (mapconcat 'regexp-quote org-done-keywords "\\|")
6334 "\\)"))
6335 '(2 'org-headline-done t))
6336 nil)
6337 ;; Priorities
6338 '(org-font-lock-add-priority-faces)
6339 ;; Tags
6340 '(org-font-lock-add-tag-faces)
6341 ;; Tags groups
6342 (if (and org-group-tags org-tag-groups-alist)
6343 (list (concat org-outline-regexp-bol ".+\\(:"
6344 (regexp-opt (mapcar 'car org-tag-groups-alist))
6345 ":\\).*$")
6346 '(1 'org-tag-group prepend)))
6347 ;; Special keywords
6348 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6349 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6350 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6351 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6352 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6353 ;; Emphasis
6354 (if em
6355 (if (featurep 'xemacs)
6356 '(org-do-emphasis-faces (0 nil append))
6357 '(org-do-emphasis-faces)))
6358 ;; Checkboxes
6359 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6360 1 'org-checkbox prepend)
6361 (if (cdr (assq 'checkbox org-list-automatic-rules))
6362 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6363 (0 (org-get-checkbox-statistics-face) t)))
6364 ;; Description list items
6365 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6366 1 'org-list-dt prepend)
6367 ;; ARCHIVEd headings
6368 (list (concat
6369 org-outline-regexp-bol
6370 "\\(.*:" org-archive-tag ":.*\\)")
6371 '(1 'org-archived prepend))
6372 ;; Specials
6373 '(org-do-latex-and-related)
6374 '(org-fontify-entities)
6375 '(org-raise-scripts)
6376 ;; Code
6377 '(org-activate-code (1 'org-code t))
6378 ;; COMMENT
6379 (list (format
6380 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6381 org-todo-regexp
6382 org-comment-string)
6383 '(9 'org-special-keyword t))
6384 ;; Blocks and meta lines
6385 '(org-fontify-meta-lines-and-blocks))))
6386 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6387 (run-hooks 'org-font-lock-set-keywords-hook)
6388 ;; Now set the full font-lock-keywords
6389 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6390 (org-set-local 'font-lock-defaults
6391 '(org-font-lock-keywords t nil nil backward-paragraph))
6392 (kill-local-variable 'font-lock-keywords) nil))
6394 (defun org-toggle-pretty-entities ()
6395 "Toggle the composition display of entities as UTF8 characters."
6396 (interactive)
6397 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6398 (org-restart-font-lock)
6399 (if org-pretty-entities
6400 (message "Entities are now displayed as UTF8 characters")
6401 (save-restriction
6402 (widen)
6403 (org-decompose-region (point-min) (point-max))
6404 (message "Entities are now displayed as plain text"))))
6406 (defvar org-custom-properties-overlays nil
6407 "List of overlays used for custom properties.")
6408 (make-variable-buffer-local 'org-custom-properties-overlays)
6410 (defun org-toggle-custom-properties-visibility ()
6411 "Display or hide properties in `org-custom-properties'."
6412 (interactive)
6413 (if org-custom-properties-overlays
6414 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6415 (setq org-custom-properties-overlays nil))
6416 (when org-custom-properties
6417 (org-with-wide-buffer
6418 (goto-char (point-min))
6419 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6420 (while (re-search-forward regexp nil t)
6421 (let ((end (cdr (save-match-data (org-get-property-block)))))
6422 (when (and end (< (point) end))
6423 ;; Hide first custom property in current drawer.
6424 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6425 (overlay-put o 'invisible t)
6426 (overlay-put o 'org-custom-property t)
6427 (push o org-custom-properties-overlays))
6428 ;; Hide additional custom properties in the same drawer.
6429 (while (re-search-forward regexp end t)
6430 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6431 (overlay-put o 'invisible t)
6432 (overlay-put o 'org-custom-property t)
6433 (push o org-custom-properties-overlays)))))
6434 ;; Each entry is limited to a single property drawer.
6435 (outline-next-heading)))))))
6437 (defun org-fontify-entities (limit)
6438 "Find an entity to fontify."
6439 (let (ee)
6440 (when org-pretty-entities
6441 (catch 'match
6442 (while (re-search-forward
6443 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6444 limit t)
6445 (if (and (not (org-at-comment-p))
6446 (setq ee (org-entity-get (match-string 1)))
6447 (= (length (nth 6 ee)) 1))
6448 (let*
6449 ((end (if (equal (match-string 2) "{}")
6450 (match-end 2)
6451 (match-end 1))))
6452 (add-text-properties
6453 (match-beginning 0) end
6454 (list 'font-lock-fontified t))
6455 (compose-region (match-beginning 0) end
6456 (nth 6 ee) nil)
6457 (backward-char 1)
6458 (throw 'match t))))
6459 nil))))
6461 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6462 "Fontify string S like in Org-mode."
6463 (with-temp-buffer
6464 (insert s)
6465 (let ((org-odd-levels-only odd-levels))
6466 (org-mode)
6467 (font-lock-ensure)
6468 (buffer-string))))
6470 (defvar org-m nil)
6471 (defvar org-l nil)
6472 (defvar org-f nil)
6473 (defun org-get-level-face (n)
6474 "Get the right face for match N in font-lock matching of headlines."
6475 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6476 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6477 (if org-cycle-level-faces
6478 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6479 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6480 (cond
6481 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6482 ((eq n 2) org-f)
6483 (t (if org-level-color-stars-only nil org-f))))
6486 (defun org-get-todo-face (kwd)
6487 "Get the right face for a TODO keyword KWD.
6488 If KWD is a number, get the corresponding match group."
6489 (if (numberp kwd) (setq kwd (match-string kwd)))
6490 (or (org-face-from-face-or-color
6491 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6492 (and (member kwd org-done-keywords) 'org-done)
6493 'org-todo))
6495 (defun org-face-from-face-or-color (context inherit face-or-color)
6496 "Create a face list that inherits INHERIT, but sets the foreground color.
6497 When FACE-OR-COLOR is not a string, just return it."
6498 (if (stringp face-or-color)
6499 (list :inherit inherit
6500 (cdr (assoc context org-faces-easy-properties))
6501 face-or-color)
6502 face-or-color))
6504 (defun org-font-lock-add-tag-faces (limit)
6505 "Add the special tag faces."
6506 (when (and org-tag-faces org-tags-special-faces-re)
6507 (while (re-search-forward org-tags-special-faces-re limit t)
6508 (add-text-properties (match-beginning 1) (match-end 1)
6509 (list 'face (org-get-tag-face 1)
6510 'font-lock-fontified t))
6511 (backward-char 1))))
6513 (defun org-font-lock-add-priority-faces (limit)
6514 "Add the special priority faces."
6515 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6516 (when (save-match-data (org-at-heading-p))
6517 (add-text-properties
6518 (match-beginning 0) (match-end 0)
6519 (list 'face (or (org-face-from-face-or-color
6520 'priority 'org-priority
6521 (cdr (assoc (char-after (match-beginning 1))
6522 org-priority-faces)))
6523 'org-priority)
6524 'font-lock-fontified t)))))
6526 (defun org-get-tag-face (kwd)
6527 "Get the right face for a TODO keyword KWD.
6528 If KWD is a number, get the corresponding match group."
6529 (if (numberp kwd) (setq kwd (match-string kwd)))
6530 (or (org-face-from-face-or-color
6531 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6532 'org-tag))
6534 (defun org-unfontify-region (beg end &optional maybe_loudly)
6535 "Remove fontification and activation overlays from links."
6536 (font-lock-default-unfontify-region beg end)
6537 (let* ((buffer-undo-list t)
6538 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6539 (inhibit-modification-hooks t)
6540 deactivate-mark buffer-file-name buffer-file-truename)
6541 (org-decompose-region beg end)
6542 (remove-text-properties beg end
6543 '(mouse-face t keymap t org-linked-text t
6544 invisible t intangible t
6545 org-emphasis t))
6546 (org-remove-font-lock-display-properties beg end)))
6548 (defconst org-script-display '(((raise -0.3) (height 0.7))
6549 ((raise 0.3) (height 0.7))
6550 ((raise -0.5))
6551 ((raise 0.5)))
6552 "Display properties for showing superscripts and subscripts.")
6554 (defun org-remove-font-lock-display-properties (beg end)
6555 "Remove specific display properties that have been added by font lock.
6556 The will remove the raise properties that are used to show superscripts
6557 and subscripts."
6558 (let (next prop)
6559 (while (< beg end)
6560 (setq next (next-single-property-change beg 'display nil end)
6561 prop (get-text-property beg 'display))
6562 (if (member prop org-script-display)
6563 (put-text-property beg next 'display nil))
6564 (setq beg next))))
6566 (defun org-raise-scripts (limit)
6567 "Add raise properties to sub/superscripts."
6568 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6569 (if (re-search-forward
6570 (if (eq org-use-sub-superscripts t)
6571 org-match-substring-regexp
6572 org-match-substring-with-braces-regexp)
6573 limit t)
6574 (let* ((pos (point)) table-p comment-p
6575 (mpos (match-beginning 3))
6576 (emph-p (get-text-property mpos 'org-emphasis))
6577 (link-p (get-text-property mpos 'mouse-face))
6578 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6579 (goto-char (point-at-bol))
6580 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6581 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6582 (goto-char pos)
6583 ;; Handle a_b^c
6584 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6585 (if (or comment-p emph-p link-p keyw-p)
6587 (put-text-property (match-beginning 3) (match-end 0)
6588 'display
6589 (if (equal (char-after (match-beginning 2)) ?^)
6590 (nth (if table-p 3 1) org-script-display)
6591 (nth (if table-p 2 0) org-script-display)))
6592 (add-text-properties (match-beginning 2) (match-end 2)
6593 (list 'invisible t
6594 'org-dwidth t 'org-dwidth-n 1))
6595 (if (and (eq (char-after (match-beginning 3)) ?{)
6596 (eq (char-before (match-end 3)) ?}))
6597 (progn
6598 (add-text-properties
6599 (match-beginning 3) (1+ (match-beginning 3))
6600 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6601 (add-text-properties
6602 (1- (match-end 3)) (match-end 3)
6603 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6604 t)))))
6606 ;;;; Visibility cycling, including org-goto and indirect buffer
6608 ;;; Cycling
6610 (defvar org-cycle-global-status nil)
6611 (make-variable-buffer-local 'org-cycle-global-status)
6612 (put 'org-cycle-global-status 'org-state t)
6613 (defvar org-cycle-subtree-status nil)
6614 (make-variable-buffer-local 'org-cycle-subtree-status)
6615 (put 'org-cycle-subtree-status 'org-state t)
6617 (defvar org-inlinetask-min-level)
6619 (defun org-unlogged-message (&rest args)
6620 "Display a message, but avoid logging it in the *Messages* buffer."
6621 (let ((message-log-max nil))
6622 (apply 'message args)))
6624 ;;;###autoload
6625 (defun org-cycle (&optional arg)
6626 "TAB-action and visibility cycling for Org-mode.
6628 This is the command invoked in Org-mode by the TAB key. Its main purpose
6629 is outline visibility cycling, but it also invokes other actions
6630 in special contexts.
6632 - When this function is called with a prefix argument, rotate the entire
6633 buffer through 3 states (global cycling)
6634 1. OVERVIEW: Show only top-level headlines.
6635 2. CONTENTS: Show all headlines of all levels, but no body text.
6636 3. SHOW ALL: Show everything.
6637 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6638 determined by the variable `org-startup-folded', and by any VISIBILITY
6639 properties in the buffer.
6640 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6641 including any drawers.
6643 - When inside a table, re-align the table and move to the next field.
6645 - When point is at the beginning of a headline, rotate the subtree started
6646 by this line through 3 different states (local cycling)
6647 1. FOLDED: Only the main headline is shown.
6648 2. CHILDREN: The main headline and the direct children are shown.
6649 From this state, you can move to one of the children
6650 and zoom in further.
6651 3. SUBTREE: Show the entire subtree, including body text.
6652 If there is no subtree, switch directly from CHILDREN to FOLDED.
6654 - When point is at the beginning of an empty headline and the variable
6655 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6656 of the headline by demoting and promoting it to likely levels. This
6657 speeds up creation document structure by pressing TAB once or several
6658 times right after creating a new headline.
6660 - When there is a numeric prefix, go up to a heading with level ARG, do
6661 a `show-subtree' and return to the previous cursor position. If ARG
6662 is negative, go up that many levels.
6664 - When point is not at the beginning of a headline, execute the global
6665 binding for TAB, which is re-indenting the line. See the option
6666 `org-cycle-emulate-tab' for details.
6668 - Special case: if point is at the beginning of the buffer and there is
6669 no headline in line 1, this function will act as if called with prefix arg
6670 (C-u TAB, same as S-TAB) also when called without prefix arg.
6671 But only if also the variable `org-cycle-global-at-bob' is t."
6672 (interactive "P")
6673 (org-load-modules-maybe)
6674 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6675 (and org-cycle-level-after-item/entry-creation
6676 (or (org-cycle-level)
6677 (org-cycle-item-indentation))))
6678 (let* ((limit-level
6679 (or org-cycle-max-level
6680 (and (boundp 'org-inlinetask-min-level)
6681 org-inlinetask-min-level
6682 (1- org-inlinetask-min-level))))
6683 (nstars (and limit-level
6684 (if org-odd-levels-only
6685 (and limit-level (1- (* limit-level 2)))
6686 limit-level)))
6687 (org-outline-regexp
6688 (if (not (derived-mode-p 'org-mode))
6689 outline-regexp
6690 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6691 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6692 (not (looking-at org-outline-regexp))))
6693 (org-cycle-hook
6694 (if bob-special
6695 (delq 'org-optimize-window-after-visibility-change
6696 (copy-sequence org-cycle-hook))
6697 org-cycle-hook))
6698 (pos (point)))
6700 (if (or bob-special (equal arg '(4)))
6701 ;; special case: use global cycling
6702 (setq arg t))
6704 (cond
6706 ((equal arg '(16))
6707 (setq last-command 'dummy)
6708 (org-set-startup-visibility)
6709 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6711 ((equal arg '(64))
6712 (show-all)
6713 (org-unlogged-message "Entire buffer visible, including drawers"))
6715 ;; Try cdlatex TAB completion
6716 ((org-try-cdlatex-tab))
6718 ;; Table: enter it or move to the next field.
6719 ((org-at-table-p 'any)
6720 (if (org-at-table.el-p)
6721 (message "Use C-c ' to edit table.el tables")
6722 (if arg (org-table-edit-field t)
6723 (org-table-justify-field-maybe)
6724 (call-interactively 'org-table-next-field))))
6726 ((run-hook-with-args-until-success
6727 'org-tab-after-check-for-table-hook))
6729 ;; Global cycling: delegate to `org-cycle-internal-global'.
6730 ((eq arg t) (org-cycle-internal-global))
6732 ;; Drawers: delegate to `org-flag-drawer'.
6733 ((save-excursion
6734 (beginning-of-line 1)
6735 (looking-at org-drawer-regexp))
6736 (org-flag-drawer ; toggle block visibility
6737 (not (get-char-property (match-end 0) 'invisible))))
6739 ;; Show-subtree, ARG levels up from here.
6740 ((integerp arg)
6741 (save-excursion
6742 (org-back-to-heading)
6743 (outline-up-heading (if (< arg 0) (- arg)
6744 (- (funcall outline-level) arg)))
6745 (org-show-subtree)))
6747 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6748 ((and (featurep 'org-inlinetask)
6749 (org-inlinetask-at-task-p)
6750 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6751 (org-inlinetask-toggle-visibility))
6753 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6754 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6755 (save-excursion (beginning-of-line 1)
6756 (looking-at org-outline-regexp)))
6757 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6758 (org-cycle-internal-local))
6760 ;; From there: TAB emulation and template completion.
6761 (buffer-read-only (org-back-to-heading))
6763 ((run-hook-with-args-until-success
6764 'org-tab-after-check-for-cycling-hook))
6766 ((org-try-structure-completion))
6768 ((run-hook-with-args-until-success
6769 'org-tab-before-tab-emulation-hook))
6771 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6772 (or (not (bolp))
6773 (not (looking-at org-outline-regexp))))
6774 (call-interactively (global-key-binding "\t")))
6776 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6777 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6778 (or (and (eq org-cycle-emulate-tab 'white)
6779 (= (match-end 0) (point-at-eol)))
6780 (and (eq org-cycle-emulate-tab 'whitestart)
6781 (>= (match-end 0) pos))))
6783 (eq org-cycle-emulate-tab t))
6784 (call-interactively (global-key-binding "\t")))
6786 (t (save-excursion
6787 (org-back-to-heading)
6788 (org-cycle)))))))
6790 (defun org-cycle-internal-global ()
6791 "Do the global cycling action."
6792 ;; Hack to avoid display of messages for .org attachments in Gnus
6793 (let ((ga (string-match "\\*fontification" (buffer-name))))
6794 (cond
6795 ((and (eq last-command this-command)
6796 (eq org-cycle-global-status 'overview))
6797 ;; We just created the overview - now do table of contents
6798 ;; This can be slow in very large buffers, so indicate action
6799 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6800 (unless ga (org-unlogged-message "CONTENTS..."))
6801 (org-content)
6802 (unless ga (org-unlogged-message "CONTENTS...done"))
6803 (setq org-cycle-global-status 'contents)
6804 (run-hook-with-args 'org-cycle-hook 'contents))
6806 ((and (eq last-command this-command)
6807 (eq org-cycle-global-status 'contents))
6808 ;; We just showed the table of contents - now show everything
6809 (run-hook-with-args 'org-pre-cycle-hook 'all)
6810 (show-all)
6811 (unless ga (org-unlogged-message "SHOW ALL"))
6812 (setq org-cycle-global-status 'all)
6813 (run-hook-with-args 'org-cycle-hook 'all))
6816 ;; Default action: go to overview
6817 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6818 (org-overview)
6819 (unless ga (org-unlogged-message "OVERVIEW"))
6820 (setq org-cycle-global-status 'overview)
6821 (run-hook-with-args 'org-cycle-hook 'overview)))))
6823 (defvar org-called-with-limited-levels nil
6824 "Non-nil when `org-with-limited-levels' is currently active.")
6826 (defun org-cycle-internal-local ()
6827 "Do the local cycling action."
6828 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6829 ;; First, determine end of headline (EOH), end of subtree or item
6830 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6831 (save-excursion
6832 (if (org-at-item-p)
6833 (progn
6834 (beginning-of-line)
6835 (setq struct (org-list-struct))
6836 (setq eoh (point-at-eol))
6837 (setq eos (org-list-get-item-end-before-blank (point) struct))
6838 (setq has-children (org-list-has-child-p (point) struct)))
6839 (org-back-to-heading)
6840 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6841 (setq eos (save-excursion (org-end-of-subtree t t)
6842 (when (bolp) (backward-char)) (point)))
6843 (setq has-children
6844 (or (save-excursion
6845 (let ((level (funcall outline-level)))
6846 (outline-next-heading)
6847 (and (org-at-heading-p t)
6848 (> (funcall outline-level) level))))
6849 (save-excursion
6850 (org-list-search-forward (org-item-beginning-re) eos t)))))
6851 ;; Determine end invisible part of buffer (EOL)
6852 (beginning-of-line 2)
6853 ;; XEmacs doesn't have `next-single-char-property-change'
6854 (if (featurep 'xemacs)
6855 (while (and (not (eobp)) ;; this is like `next-line'
6856 (get-char-property (1- (point)) 'invisible))
6857 (beginning-of-line 2))
6858 (while (and (not (eobp)) ;; this is like `next-line'
6859 (get-char-property (1- (point)) 'invisible))
6860 (goto-char (next-single-char-property-change (point) 'invisible))
6861 (and (eolp) (beginning-of-line 2))))
6862 (setq eol (point)))
6863 ;; Find out what to do next and set `this-command'
6864 (cond
6865 ((= eos eoh)
6866 ;; Nothing is hidden behind this heading
6867 (unless (org-before-first-heading-p)
6868 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6869 (org-unlogged-message "EMPTY ENTRY")
6870 (setq org-cycle-subtree-status nil)
6871 (save-excursion
6872 (goto-char eos)
6873 (outline-next-heading)
6874 (if (outline-invisible-p) (org-flag-heading nil))))
6875 ((and (or (>= eol eos)
6876 (not (string-match "\\S-" (buffer-substring eol eos))))
6877 (or has-children
6878 (not (setq children-skipped
6879 org-cycle-skip-children-state-if-no-children))))
6880 ;; Entire subtree is hidden in one line: children view
6881 (unless (org-before-first-heading-p)
6882 (run-hook-with-args 'org-pre-cycle-hook 'children))
6883 (if (org-at-item-p)
6884 (org-list-set-item-visibility (point-at-bol) struct 'children)
6885 (org-show-entry)
6886 (org-with-limited-levels (show-children))
6887 ;; FIXME: This slows down the func way too much.
6888 ;; How keep drawers hidden in subtree anyway?
6889 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6890 ;; (org-cycle-hide-drawers 'subtree))
6892 ;; Fold every list in subtree to top-level items.
6893 (when (eq org-cycle-include-plain-lists 'integrate)
6894 (save-excursion
6895 (org-back-to-heading)
6896 (while (org-list-search-forward (org-item-beginning-re) eos t)
6897 (beginning-of-line 1)
6898 (let* ((struct (org-list-struct))
6899 (prevs (org-list-prevs-alist struct))
6900 (end (org-list-get-bottom-point struct)))
6901 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6902 (org-list-get-all-items (point) struct prevs))
6903 (goto-char (if (< end eos) end eos)))))))
6904 (org-unlogged-message "CHILDREN")
6905 (save-excursion
6906 (goto-char eos)
6907 (outline-next-heading)
6908 (if (outline-invisible-p) (org-flag-heading nil)))
6909 (setq org-cycle-subtree-status 'children)
6910 (unless (org-before-first-heading-p)
6911 (run-hook-with-args 'org-cycle-hook 'children)))
6912 ((or children-skipped
6913 (and (eq last-command this-command)
6914 (eq org-cycle-subtree-status 'children)))
6915 ;; We just showed the children, or no children are there,
6916 ;; now show everything.
6917 (unless (org-before-first-heading-p)
6918 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6919 (outline-flag-region eoh eos nil)
6920 (org-unlogged-message
6921 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6922 (setq org-cycle-subtree-status 'subtree)
6923 (unless (org-before-first-heading-p)
6924 (run-hook-with-args 'org-cycle-hook 'subtree)))
6926 ;; Default action: hide the subtree.
6927 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6928 (outline-flag-region eoh eos t)
6929 (org-unlogged-message "FOLDED")
6930 (setq org-cycle-subtree-status 'folded)
6931 (unless (org-before-first-heading-p)
6932 (run-hook-with-args 'org-cycle-hook 'folded))))))
6934 ;;;###autoload
6935 (defun org-global-cycle (&optional arg)
6936 "Cycle the global visibility. For details see `org-cycle'.
6937 With \\[universal-argument] prefix arg, switch to startup visibility.
6938 With a numeric prefix, show all headlines up to that level."
6939 (interactive "P")
6940 (let ((org-cycle-include-plain-lists
6941 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6942 (cond
6943 ((integerp arg)
6944 (show-all)
6945 (hide-sublevels arg)
6946 (setq org-cycle-global-status 'contents))
6947 ((equal arg '(4))
6948 (org-set-startup-visibility)
6949 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6951 (org-cycle '(4))))))
6953 (defun org-set-startup-visibility ()
6954 "Set the visibility required by startup options and properties."
6955 (cond
6956 ((eq org-startup-folded t)
6957 (org-overview))
6958 ((eq org-startup-folded 'content)
6959 (org-content))
6960 ((or (eq org-startup-folded 'showeverything)
6961 (eq org-startup-folded nil))
6962 (show-all)))
6963 (unless (eq org-startup-folded 'showeverything)
6964 (if org-hide-block-startup (org-hide-block-all))
6965 (org-set-visibility-according-to-property 'no-cleanup)
6966 (org-cycle-hide-archived-subtrees 'all)
6967 (org-cycle-hide-drawers 'all)
6968 (org-cycle-show-empty-lines t)))
6970 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6971 "Switch subtree visibilities according to :VISIBILITY: property."
6972 (interactive)
6973 (let (org-show-entry-below)
6974 (org-with-wide-buffer
6975 (goto-char (point-min))
6976 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
6977 (if (not (org-at-property-p)) (outline-next-heading)
6978 (let ((state (match-string 3)))
6979 (save-excursion
6980 (org-back-to-heading t)
6981 (hide-subtree)
6982 (org-reveal)
6983 (cond
6984 ((equal state "folded")
6985 (hide-subtree))
6986 ((equal state "children")
6987 (org-show-hidden-entry)
6988 (show-children))
6989 ((equal state "content")
6990 (save-excursion
6991 (save-restriction
6992 (org-narrow-to-subtree)
6993 (org-content))))
6994 ((member state '("all" "showall"))
6995 (show-subtree)))))))
6996 (unless no-cleanup
6997 (org-cycle-hide-archived-subtrees 'all)
6998 (org-cycle-hide-drawers 'all)
6999 (org-cycle-show-empty-lines 'all)))))
7001 ;; This function uses outline-regexp instead of the more fundamental
7002 ;; org-outline-regexp so that org-cycle-global works outside of Org
7003 ;; buffers, where outline-regexp is needed.
7004 (defun org-overview ()
7005 "Switch to overview mode, showing only top-level headlines.
7006 This shows all headlines with a level equal or greater than the level
7007 of the first headline in the buffer. This is important, because if the
7008 first headline is not level one, then (hide-sublevels 1) gives confusing
7009 results."
7010 (interactive)
7011 (save-excursion
7012 (let ((level
7013 (save-excursion
7014 (goto-char (point-min))
7015 (if (re-search-forward (concat "^" outline-regexp) nil t)
7016 (progn
7017 (goto-char (match-beginning 0))
7018 (funcall outline-level))))))
7019 (and level (hide-sublevels level)))))
7021 (defun org-content (&optional arg)
7022 "Show all headlines in the buffer, like a table of contents.
7023 With numerical argument N, show content up to level N."
7024 (interactive "P")
7025 (org-overview)
7026 (save-excursion
7027 ;; Visit all headings and show their offspring
7028 (and (integerp arg) (org-overview))
7029 (goto-char (point-max))
7030 (catch 'exit
7031 (while (and (progn (condition-case nil
7032 (outline-previous-visible-heading 1)
7033 (error (goto-char (point-min))))
7035 (looking-at org-outline-regexp))
7036 (if (integerp arg)
7037 (show-children (1- arg))
7038 (show-branches))
7039 (if (bobp) (throw 'exit nil))))))
7041 (defun org-optimize-window-after-visibility-change (state)
7042 "Adjust the window after a change in outline visibility.
7043 This function is the default value of the hook `org-cycle-hook'."
7044 (when (get-buffer-window (current-buffer))
7045 (cond
7046 ((eq state 'content) nil)
7047 ((eq state 'all) nil)
7048 ((eq state 'folded) nil)
7049 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7050 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7052 (defun org-remove-empty-overlays-at (pos)
7053 "Remove outline overlays that do not contain non-white stuff."
7054 (mapc
7055 (lambda (o)
7056 (and (eq 'outline (overlay-get o 'invisible))
7057 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7058 (overlay-end o))))
7059 (delete-overlay o)))
7060 (overlays-at pos)))
7062 (defun org-clean-visibility-after-subtree-move ()
7063 "Fix visibility issues after moving a subtree."
7064 ;; First, find a reasonable region to look at:
7065 ;; Start two siblings above, end three below
7066 (let* ((beg (save-excursion
7067 (and (org-get-last-sibling)
7068 (org-get-last-sibling))
7069 (point)))
7070 (end (save-excursion
7071 (and (org-get-next-sibling)
7072 (org-get-next-sibling)
7073 (org-get-next-sibling))
7074 (if (org-at-heading-p)
7075 (point-at-eol)
7076 (point))))
7077 (level (looking-at "\\*+"))
7078 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7079 (save-excursion
7080 (save-restriction
7081 (narrow-to-region beg end)
7082 (when re
7083 ;; Properly fold already folded siblings
7084 (goto-char (point-min))
7085 (while (re-search-forward re nil t)
7086 (if (and (not (outline-invisible-p))
7087 (save-excursion
7088 (goto-char (point-at-eol)) (outline-invisible-p)))
7089 (hide-entry))))
7090 (org-cycle-show-empty-lines 'overview)
7091 (org-cycle-hide-drawers 'overview)))))
7093 (defun org-cycle-show-empty-lines (state)
7094 "Show empty lines above all visible headlines.
7095 The region to be covered depends on STATE when called through
7096 `org-cycle-hook'. Lisp program can use t for STATE to get the
7097 entire buffer covered. Note that an empty line is only shown if there
7098 are at least `org-cycle-separator-lines' empty lines before the headline."
7099 (when (not (= org-cycle-separator-lines 0))
7100 (save-excursion
7101 (let* ((n (abs org-cycle-separator-lines))
7102 (re (cond
7103 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7104 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7105 (t (let ((ns (number-to-string (- n 2))))
7106 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7107 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7108 beg end b e)
7109 (cond
7110 ((memq state '(overview contents t))
7111 (setq beg (point-min) end (point-max)))
7112 ((memq state '(children folded))
7113 (setq beg (point) end (progn (org-end-of-subtree t t)
7114 (beginning-of-line 2)
7115 (point)))))
7116 (when beg
7117 (goto-char beg)
7118 (while (re-search-forward re end t)
7119 (unless (get-char-property (match-end 1) 'invisible)
7120 (setq e (match-end 1))
7121 (if (< org-cycle-separator-lines 0)
7122 (setq b (save-excursion
7123 (goto-char (match-beginning 0))
7124 (org-back-over-empty-lines)
7125 (if (save-excursion
7126 (goto-char (max (point-min) (1- (point))))
7127 (org-at-heading-p))
7128 (1- (point))
7129 (point))))
7130 (setq b (match-beginning 1)))
7131 (outline-flag-region b e nil)))))))
7132 ;; Never hide empty lines at the end of the file.
7133 (save-excursion
7134 (goto-char (point-max))
7135 (outline-previous-heading)
7136 (outline-end-of-heading)
7137 (if (and (looking-at "[ \t\n]+")
7138 (= (match-end 0) (point-max)))
7139 (outline-flag-region (point) (match-end 0) nil))))
7141 (defun org-show-empty-lines-in-parent ()
7142 "Move to the parent and re-show empty lines before visible headlines."
7143 (save-excursion
7144 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7145 (org-cycle-show-empty-lines context))))
7147 (defun org-files-list ()
7148 "Return `org-agenda-files' list, plus all open org-mode files.
7149 This is useful for operations that need to scan all of a user's
7150 open and agenda-wise Org files."
7151 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7152 (dolist (buf (buffer-list))
7153 (with-current-buffer buf
7154 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7155 (let ((file (expand-file-name (buffer-file-name))))
7156 (unless (member file files)
7157 (push file files))))))
7158 files))
7160 (defsubst org-entry-beginning-position ()
7161 "Return the beginning position of the current entry."
7162 (save-excursion (outline-back-to-heading t) (point)))
7164 (defsubst org-entry-end-position ()
7165 "Return the end position of the current entry."
7166 (save-excursion (outline-next-heading) (point)))
7168 (defun org-cycle-hide-drawers (state &optional exceptions)
7169 "Re-hide all drawers after a visibility state change.
7170 When non-nil, optional argument EXCEPTIONS is a list of strings
7171 specifying which drawers should not be hidden."
7172 (when (and (derived-mode-p 'org-mode)
7173 (not (memq state '(overview folded contents))))
7174 (save-excursion
7175 (let* ((globalp (memq state '(contents all)))
7176 (beg (if globalp (point-min) (point)))
7177 (end (if globalp (point-max)
7178 (if (eq state 'children)
7179 (save-excursion (outline-next-heading) (point))
7180 (org-end-of-subtree t)))))
7181 (goto-char beg)
7182 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7183 (unless (member-ignore-case (match-string 1) exceptions)
7184 (let ((drawer (org-element-at-point)))
7185 (when (memq (org-element-type drawer) '(drawer property-drawer))
7186 (org-flag-drawer t drawer)
7187 ;; Make sure to skip drawer entirely or we might flag
7188 ;; it another time when matching its ending line with
7189 ;; `org-drawer-regexp'.
7190 (goto-char (org-element-property :end drawer))))))))))
7192 (defun org-cycle-hide-inline-tasks (state)
7193 "Re-hide inline tasks when switching to 'contents or 'children
7194 visibility state."
7195 (case state
7196 (contents
7197 (when (org-bound-and-true-p org-inlinetask-min-level)
7198 (hide-sublevels (1- org-inlinetask-min-level))))
7199 (children
7200 (when (featurep 'org-inlinetask)
7201 (save-excursion
7202 (while (and (outline-next-heading)
7203 (org-inlinetask-at-task-p))
7204 (org-inlinetask-toggle-visibility)
7205 (org-inlinetask-goto-end)))))))
7207 (defun org-flag-drawer (flag &optional element)
7208 "When FLAG is non-nil, hide the drawer we are at.
7209 Otherwise make it visible. When optional argument ELEMENT is
7210 a parsed drawer, as returned by `org-element-at-point', hide or
7211 show that drawer instead."
7212 (when (save-excursion
7213 (beginning-of-line)
7214 (org-looking-at-p org-drawer-regexp))
7215 (let ((drawer (or element (org-element-at-point))))
7216 (when (memq (org-element-type drawer) '(drawer property-drawer))
7217 (let ((post (org-element-property :post-affiliated drawer)))
7218 (save-excursion
7219 (outline-flag-region
7220 (progn (goto-char post) (line-end-position))
7221 (progn (goto-char (org-element-property :end drawer))
7222 (skip-chars-backward " \r\t\n")
7223 (line-end-position))
7224 flag))
7225 ;; When the drawer is hidden away, make sure point lies in
7226 ;; a visible part of the buffer.
7227 (when (and flag (> (line-beginning-position) post))
7228 (goto-char post)))))))
7230 (defun org-subtree-end-visible-p ()
7231 "Is the end of the current subtree visible?"
7232 (pos-visible-in-window-p
7233 (save-excursion (org-end-of-subtree t) (point))))
7235 (defun org-first-headline-recenter ()
7236 "Move cursor to the first headline and recenter the headline."
7237 (goto-char (point-min))
7238 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7239 (set-window-start (selected-window) (point-at-bol))))
7241 ;;; Saving and restoring visibility
7243 (defun org-outline-overlay-data (&optional use-markers)
7244 "Return a list of the locations of all outline overlays.
7245 These are overlays with the `invisible' property value `outline'.
7246 The return value is a list of cons cells, with start and stop
7247 positions for each overlay.
7248 If USE-MARKERS is set, return the positions as markers."
7249 (let (beg end)
7250 (save-excursion
7251 (save-restriction
7252 (widen)
7253 (delq nil
7254 (mapcar (lambda (o)
7255 (when (eq (overlay-get o 'invisible) 'outline)
7256 (setq beg (overlay-start o)
7257 end (overlay-end o))
7258 (and beg end (> end beg)
7259 (if use-markers
7260 (cons (copy-marker beg)
7261 (copy-marker end t))
7262 (cons beg end)))))
7263 (overlays-in (point-min) (point-max))))))))
7265 (defun org-set-outline-overlay-data (data)
7266 "Create visibility overlays for all positions in DATA.
7267 DATA should have been made by `org-outline-overlay-data'."
7268 (let (o)
7269 (save-excursion
7270 (save-restriction
7271 (widen)
7272 (show-all)
7273 (mapc (lambda (c)
7274 (outline-flag-region (car c) (cdr c) t))
7275 data)))))
7277 ;;; Folding of blocks
7279 (defvar org-hide-block-overlays nil
7280 "Overlays hiding blocks.")
7281 (make-variable-buffer-local 'org-hide-block-overlays)
7283 (defun org-block-map (function &optional start end)
7284 "Call FUNCTION at the head of all source blocks in the current buffer.
7285 Optional arguments START and END can be used to limit the range."
7286 (let ((start (or start (point-min)))
7287 (end (or end (point-max))))
7288 (save-excursion
7289 (goto-char start)
7290 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7291 (save-excursion
7292 (save-match-data
7293 (goto-char (match-beginning 0))
7294 (funcall function)))))))
7296 (defun org-hide-block-toggle-all ()
7297 "Toggle the visibility of all blocks in the current buffer."
7298 (org-block-map 'org-hide-block-toggle))
7300 (defun org-hide-block-all ()
7301 "Fold all blocks in the current buffer."
7302 (interactive)
7303 (org-show-block-all)
7304 (org-block-map 'org-hide-block-toggle-maybe))
7306 (defun org-show-block-all ()
7307 "Unfold all blocks in the current buffer."
7308 (interactive)
7309 (mapc 'delete-overlay org-hide-block-overlays)
7310 (setq org-hide-block-overlays nil))
7312 (defun org-hide-block-toggle-maybe ()
7313 "Toggle visibility of block at point.
7314 Unlike to `org-hide-block-toggle', this function does not throw
7315 an error. Return a non-nil value when toggling is successful."
7316 (interactive)
7317 (ignore-errors (org-hide-block-toggle)))
7319 (defun org-hide-block-toggle (&optional force)
7320 "Toggle the visibility of the current block.
7321 When optional argument FORCE is `off', make block visible. If it
7322 is non-nil, hide it unconditionally. Throw an error when not at
7323 a block. Return a non-nil value when toggling is successful."
7324 (interactive)
7325 (let ((element (org-element-at-point)))
7326 (unless (memq (org-element-type element)
7327 '(center-block comment-block dynamic-block example-block
7328 export-block quote-block special-block
7329 src-block verse-block))
7330 (user-error "Not at a block"))
7331 (let* ((start (save-excursion
7332 (goto-char (org-element-property :post-affiliated element))
7333 (line-end-position)))
7334 (end (save-excursion
7335 (goto-char (org-element-property :end element))
7336 (skip-chars-backward " \r\t\n")
7337 (line-end-position)))
7338 (overlays (overlays-at start)))
7339 (cond
7340 ;; Do nothing when not before or at the block opening line or
7341 ;; at the block closing line.
7342 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7343 ((and (not (eq force 'off))
7344 (not (memq t (mapcar
7345 (lambda (o)
7346 (eq (overlay-get o 'invisible) 'org-hide-block))
7347 overlays))))
7348 (let ((ov (make-overlay start end)))
7349 (overlay-put ov 'invisible 'org-hide-block)
7350 ;; Make the block accessible to `isearch'.
7351 (overlay-put
7352 ov 'isearch-open-invisible
7353 (lambda (ov)
7354 (when (memq ov org-hide-block-overlays)
7355 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7356 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7357 (delete-overlay ov))))
7358 (push ov org-hide-block-overlays)
7359 ;; When the block is hidden away, make sure point is left in
7360 ;; a visible part of the buffer.
7361 (when (> (line-beginning-position) start)
7362 (goto-char start)
7363 (beginning-of-line))
7364 ;; Signal successful toggling.
7366 ((or (not force) (eq force 'off))
7367 (dolist (ov overlays t)
7368 (when (memq ov org-hide-block-overlays)
7369 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7370 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7371 (delete-overlay ov))))))))
7373 ;; org-tab-after-check-for-cycling-hook
7374 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7375 ;; Remove overlays when changing major mode
7376 (add-hook 'org-mode-hook
7377 (lambda () (org-add-hook 'change-major-mode-hook
7378 'org-show-block-all 'append 'local)))
7380 ;;; Org-goto
7382 (defvar org-goto-window-configuration nil)
7383 (defvar org-goto-marker nil)
7384 (defvar org-goto-map)
7385 (defun org-goto-map ()
7386 "Set the keymap `org-goto'."
7387 (setq org-goto-map
7388 (let ((map (make-sparse-keymap)))
7389 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7390 mouse-drag-region universal-argument org-occur))
7391 cmd)
7392 (while (setq cmd (pop cmds))
7393 (substitute-key-definition cmd cmd map global-map)))
7394 (suppress-keymap map)
7395 (org-defkey map "\C-m" 'org-goto-ret)
7396 (org-defkey map [(return)] 'org-goto-ret)
7397 (org-defkey map [(left)] 'org-goto-left)
7398 (org-defkey map [(right)] 'org-goto-right)
7399 (org-defkey map [(control ?g)] 'org-goto-quit)
7400 (org-defkey map "\C-i" 'org-cycle)
7401 (org-defkey map [(tab)] 'org-cycle)
7402 (org-defkey map [(down)] 'outline-next-visible-heading)
7403 (org-defkey map [(up)] 'outline-previous-visible-heading)
7404 (if org-goto-auto-isearch
7405 (if (fboundp 'define-key-after)
7406 (define-key-after map [t] 'org-goto-local-auto-isearch)
7407 nil)
7408 (org-defkey map "q" 'org-goto-quit)
7409 (org-defkey map "n" 'outline-next-visible-heading)
7410 (org-defkey map "p" 'outline-previous-visible-heading)
7411 (org-defkey map "f" 'outline-forward-same-level)
7412 (org-defkey map "b" 'outline-backward-same-level)
7413 (org-defkey map "u" 'outline-up-heading))
7414 (org-defkey map "/" 'org-occur)
7415 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7416 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7417 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7418 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7419 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7420 map)))
7422 (defconst org-goto-help
7423 "Browse buffer copy, to find location or copy text.%s
7424 RET=jump to location C-g=quit and return to previous location
7425 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7427 (defvar org-goto-start-pos) ; dynamically scoped parameter
7429 (defun org-goto (&optional alternative-interface)
7430 "Look up a different location in the current file, keeping current visibility.
7432 When you want look-up or go to a different location in a
7433 document, the fastest way is often to fold the entire buffer and
7434 then dive into the tree. This method has the disadvantage, that
7435 the previous location will be folded, which may not be what you
7436 want.
7438 This command works around this by showing a copy of the current
7439 buffer in an indirect buffer, in overview mode. You can dive
7440 into the tree in that copy, use org-occur and incremental search
7441 to find a location. When pressing RET or `Q', the command
7442 returns to the original buffer in which the visibility is still
7443 unchanged. After RET it will also jump to the location selected
7444 in the indirect buffer and expose the headline hierarchy above.
7446 With a prefix argument, use the alternative interface: e.g. if
7447 `org-goto-interface' is 'outline use 'outline-path-completion."
7448 (interactive "P")
7449 (org-goto-map)
7450 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7451 (org-refile-use-outline-path t)
7452 (org-refile-target-verify-function nil)
7453 (interface
7454 (if (not alternative-interface)
7455 org-goto-interface
7456 (if (eq org-goto-interface 'outline)
7457 'outline-path-completion
7458 'outline)))
7459 (org-goto-start-pos (point))
7460 (selected-point
7461 (if (eq interface 'outline)
7462 (car (org-get-location (current-buffer) org-goto-help))
7463 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7464 (org-refile-check-position pa)
7465 (nth 3 pa)))))
7466 (if selected-point
7467 (progn
7468 (org-mark-ring-push org-goto-start-pos)
7469 (goto-char selected-point)
7470 (if (or (outline-invisible-p) (org-invisible-p2))
7471 (org-show-context 'org-goto)))
7472 (message "Quit"))))
7474 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7475 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7476 (defvar org-goto-local-auto-isearch-map) ; defined below
7478 (defun org-get-location (buf help)
7479 "Let the user select a location in the Org-mode buffer BUF.
7480 This function uses a recursive edit. It returns the selected position
7481 or nil."
7482 (org-no-popups
7483 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7484 (isearch-hide-immediately nil)
7485 (isearch-search-fun-function
7486 (lambda () 'org-goto-local-search-headings))
7487 (org-goto-selected-point org-goto-exit-command))
7488 (save-excursion
7489 (save-window-excursion
7490 (delete-other-windows)
7491 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7492 (org-pop-to-buffer-same-window
7493 (condition-case nil
7494 (make-indirect-buffer (current-buffer) "*org-goto*")
7495 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7496 (with-output-to-temp-buffer "*Org Help*"
7497 (princ (format help (if org-goto-auto-isearch
7498 " Just type for auto-isearch."
7499 " n/p/f/b/u to navigate, q to quit."))))
7500 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7501 (setq buffer-read-only nil)
7502 (let ((org-startup-truncated t)
7503 (org-startup-folded nil)
7504 (org-startup-align-all-tables nil))
7505 (org-mode)
7506 (org-overview))
7507 (setq buffer-read-only t)
7508 (if (and (boundp 'org-goto-start-pos)
7509 (integer-or-marker-p org-goto-start-pos))
7510 (progn (goto-char org-goto-start-pos)
7511 (when (outline-invisible-p)
7512 (org-show-set-visibility 'lineage)))
7513 (goto-char (point-min)))
7514 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7515 (message "Select location and press RET")
7516 (use-local-map org-goto-map)
7517 (recursive-edit)))
7518 (kill-buffer "*org-goto*")
7519 (cons org-goto-selected-point org-goto-exit-command))))
7521 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7522 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7523 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7524 (if (fboundp 'isearch-other-control-char)
7525 (progn
7526 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7527 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7528 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7529 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7530 (define-key org-goto-local-auto-isearch-map [return] nil))
7532 (defun org-goto-local-search-headings (string bound noerror)
7533 "Search and make sure that any matches are in headlines."
7534 (catch 'return
7535 (while (if isearch-forward
7536 (search-forward string bound noerror)
7537 (search-backward string bound noerror))
7538 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7539 (and (member :headline context)
7540 (not (member :tags context))))
7541 (throw 'return (point))))))
7543 (defun org-goto-local-auto-isearch ()
7544 "Start isearch."
7545 (interactive)
7546 (goto-char (point-min))
7547 (let ((keys (this-command-keys)))
7548 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7549 (isearch-mode t)
7550 (isearch-process-search-char (string-to-char keys)))))
7552 (defun org-goto-ret (&optional arg)
7553 "Finish `org-goto' by going to the new location."
7554 (interactive "P")
7555 (setq org-goto-selected-point (point)
7556 org-goto-exit-command 'return)
7557 (throw 'exit nil))
7559 (defun org-goto-left ()
7560 "Finish `org-goto' by going to the new location."
7561 (interactive)
7562 (if (org-at-heading-p)
7563 (progn
7564 (beginning-of-line 1)
7565 (setq org-goto-selected-point (point)
7566 org-goto-exit-command 'left)
7567 (throw 'exit nil))
7568 (user-error "Not on a heading")))
7570 (defun org-goto-right ()
7571 "Finish `org-goto' by going to the new location."
7572 (interactive)
7573 (if (org-at-heading-p)
7574 (progn
7575 (setq org-goto-selected-point (point)
7576 org-goto-exit-command 'right)
7577 (throw 'exit nil))
7578 (user-error "Not on a heading")))
7580 (defun org-goto-quit ()
7581 "Finish `org-goto' without cursor motion."
7582 (interactive)
7583 (setq org-goto-selected-point nil)
7584 (setq org-goto-exit-command 'quit)
7585 (throw 'exit nil))
7587 ;;; Indirect buffer display of subtrees
7589 (defvar org-indirect-dedicated-frame nil
7590 "This is the frame being used for indirect tree display.")
7591 (defvar org-last-indirect-buffer nil)
7593 (defun org-tree-to-indirect-buffer (&optional arg)
7594 "Create indirect buffer and narrow it to current subtree.
7595 With a numerical prefix ARG, go up to this level and then take that tree.
7596 If ARG is negative, go up that many levels.
7598 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7599 indirect buffer previously made with this command, to avoid proliferation of
7600 indirect buffers. However, when you call the command with a \
7601 \\[universal-argument] prefix, or
7602 when `org-indirect-buffer-display' is `new-frame', the last buffer
7603 is kept so that you can work with several indirect buffers at the same time.
7604 If `org-indirect-buffer-display' is `dedicated-frame', the \
7605 \\[universal-argument] prefix also
7606 requests that a new frame be made for the new buffer, so that the dedicated
7607 frame is not changed."
7608 (interactive "P")
7609 (let ((cbuf (current-buffer))
7610 (cwin (selected-window))
7611 (pos (point))
7612 beg end level heading ibuf)
7613 (save-excursion
7614 (org-back-to-heading t)
7615 (when (numberp arg)
7616 (setq level (org-outline-level))
7617 (if (< arg 0) (setq arg (+ level arg)))
7618 (while (> (setq level (org-outline-level)) arg)
7619 (org-up-heading-safe)))
7620 (setq beg (point)
7621 heading (org-get-heading))
7622 (org-end-of-subtree t t)
7623 (if (org-at-heading-p) (backward-char 1))
7624 (setq end (point)))
7625 (if (and (buffer-live-p org-last-indirect-buffer)
7626 (not (eq org-indirect-buffer-display 'new-frame))
7627 (not arg))
7628 (kill-buffer org-last-indirect-buffer))
7629 (setq ibuf (org-get-indirect-buffer cbuf heading)
7630 org-last-indirect-buffer ibuf)
7631 (cond
7632 ((or (eq org-indirect-buffer-display 'new-frame)
7633 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7634 (select-frame (make-frame))
7635 (delete-other-windows)
7636 (org-pop-to-buffer-same-window ibuf)
7637 (org-set-frame-title heading))
7638 ((eq org-indirect-buffer-display 'dedicated-frame)
7639 (raise-frame
7640 (select-frame (or (and org-indirect-dedicated-frame
7641 (frame-live-p org-indirect-dedicated-frame)
7642 org-indirect-dedicated-frame)
7643 (setq org-indirect-dedicated-frame (make-frame)))))
7644 (delete-other-windows)
7645 (org-pop-to-buffer-same-window ibuf)
7646 (org-set-frame-title (concat "Indirect: " heading)))
7647 ((eq org-indirect-buffer-display 'current-window)
7648 (org-pop-to-buffer-same-window ibuf))
7649 ((eq org-indirect-buffer-display 'other-window)
7650 (pop-to-buffer ibuf))
7651 (t (error "Invalid value")))
7652 (if (featurep 'xemacs)
7653 (save-excursion (org-mode) (turn-on-font-lock)))
7654 (narrow-to-region beg end)
7655 (show-all)
7656 (goto-char pos)
7657 (run-hook-with-args 'org-cycle-hook 'all)
7658 (and (window-live-p cwin) (select-window cwin))))
7660 (defun org-get-indirect-buffer (&optional buffer heading)
7661 (setq buffer (or buffer (current-buffer)))
7662 (let ((n 1) (base (buffer-name buffer)) bname)
7663 (while (buffer-live-p
7664 (get-buffer
7665 (setq bname
7666 (concat base "-"
7667 (if heading (concat heading "-" (number-to-string n))
7668 (number-to-string n))))))
7669 (setq n (1+ n)))
7670 (condition-case nil
7671 (make-indirect-buffer buffer bname 'clone)
7672 (error (make-indirect-buffer buffer bname)))))
7674 (defun org-set-frame-title (title)
7675 "Set the title of the current frame to the string TITLE."
7676 ;; FIXME: how to name a single frame in XEmacs???
7677 (unless (featurep 'xemacs)
7678 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7680 ;;;; Structure editing
7682 ;;; Inserting headlines
7684 (defun org-previous-line-empty-p (&optional next)
7685 "Is the previous line a blank line?
7686 When NEXT is non-nil, check the next line instead."
7687 (save-excursion
7688 (and (not (bobp))
7689 (or (beginning-of-line (if next 2 0)) t)
7690 (save-match-data
7691 (looking-at "[ \t]*$")))))
7693 (defun org-insert-heading (&optional arg invisible-ok top-level)
7694 "Insert a new heading or an item with the same depth at point.
7696 If point is at the beginning of a heading or a list item, insert
7697 a new heading or a new item above the current one. If point is
7698 at the beginning of a normal line, turn the line into a heading.
7700 If point is in the middle of a headline or a list item, split the
7701 headline or the item and create a new headline/item with the text
7702 in the current line after point \(see `org-M-RET-may-split-line'
7703 on how to modify this behavior).
7705 With one universal prefix argument, set the user option
7706 `org-insert-heading-respect-content' to t for the duration of
7707 the command. This modifies the behavior described above in this
7708 ways: on list items and at the beginning of normal lines, force
7709 the insertion of a heading after the current subtree.
7711 With two universal prefix arguments, insert the heading at the
7712 end of the grandparent subtree. For example, if point is within
7713 a 2nd-level heading, then it will insert a 2nd-level heading at
7714 the end of the 1st-level parent heading.
7716 If point is at the beginning of a headline, insert a sibling
7717 before the current headline. If point is not at the beginning,
7718 split the line and create a new headline with the text in the
7719 current line after point \(see `org-M-RET-may-split-line' on how
7720 to modify this behavior).
7722 If point is at the beginning of a normal line, turn this line
7723 into a heading.
7725 When INVISIBLE-OK is set, stop at invisible headlines when going
7726 back. This is important for non-interactive uses of the
7727 command.
7729 When optional argument TOP-LEVEL is non-nil, insert a level 1
7730 heading, unconditionally."
7731 (interactive "P")
7732 (if (org-called-interactively-p 'any) (org-reveal))
7733 (let ((itemp (and (not top-level) (org-in-item-p)))
7734 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7735 (respect-content (or org-insert-heading-respect-content
7736 (equal arg '(4))))
7737 (initial-content "")
7738 (adjust-empty-lines t))
7740 (cond
7742 ((or (= (buffer-size) 0)
7743 (and (not (save-excursion
7744 (and (ignore-errors (org-back-to-heading invisible-ok))
7745 (org-at-heading-p))))
7746 (or arg (not itemp))))
7747 ;; At beginning of buffer or so high up that only a heading
7748 ;; makes sense.
7749 (cond ((and (bolp) (not respect-content)) (insert "* "))
7750 ((not respect-content)
7751 (unless may-split (end-of-line))
7752 (insert "\n* "))
7753 ((re-search-forward org-outline-regexp-bol nil t)
7754 (beginning-of-line)
7755 (insert "* \n")
7756 (backward-char))
7757 (t (goto-char (point-max))
7758 (insert "\n* ")))
7759 (run-hooks 'org-insert-heading-hook))
7761 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7764 ;; Maybe move at the end of the subtree
7765 (when (equal arg '(16))
7766 (org-up-heading-safe)
7767 (org-end-of-subtree t))
7768 ;; Insert a heading
7769 (save-restriction
7770 (widen)
7771 (let* ((level nil)
7772 (on-heading (org-at-heading-p))
7773 (empty-line-p (if on-heading
7774 (org-previous-line-empty-p)
7775 ;; We will decide later
7776 nil))
7777 ;; Get a level string to fall back on.
7778 (fix-level
7779 (if (org-before-first-heading-p) "*"
7780 (save-excursion
7781 (org-back-to-heading t)
7782 (if (org-previous-line-empty-p) (setq empty-line-p t))
7783 (looking-at org-outline-regexp)
7784 (make-string (1- (length (match-string 0))) ?*))))
7785 (stars
7786 (save-excursion
7787 (condition-case nil
7788 (if top-level "* "
7789 (org-back-to-heading invisible-ok)
7790 (when (and (not on-heading)
7791 (featurep 'org-inlinetask)
7792 (integerp org-inlinetask-min-level)
7793 (>= (length (match-string 0))
7794 org-inlinetask-min-level))
7795 ;; Find a heading level before the inline
7796 ;; task.
7797 (while (and (setq level (org-up-heading-safe))
7798 (>= level org-inlinetask-min-level)))
7799 (if (org-at-heading-p)
7800 (org-back-to-heading invisible-ok)
7801 (error "This should not happen")))
7802 (unless (and (save-excursion
7803 (save-match-data
7804 (org-backward-heading-same-level
7805 1 invisible-ok))
7806 (= (point) (match-beginning 0)))
7807 (not (org-previous-line-empty-p t)))
7808 (setq empty-line-p (or empty-line-p
7809 (org-previous-line-empty-p))))
7810 (match-string 0))
7811 (error (or fix-level "* ")))))
7812 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7813 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7814 pos hide-previous previous-pos)
7816 ;; If we insert after content, move there and clean up
7817 ;; whitespace.
7818 (when (and respect-content
7819 (not (org-looking-at-p org-outline-regexp-bol)))
7820 (if (not (org-before-first-heading-p))
7821 (org-end-of-subtree nil t)
7822 (re-search-forward org-outline-regexp-bol)
7823 (beginning-of-line 0))
7824 (skip-chars-backward " \r\t\n")
7825 (and (not (looking-back "^\\*+"))
7826 (looking-at "[ \t]+") (replace-match ""))
7827 (unless (eobp) (forward-char 1))
7828 (when (looking-at "^\\*")
7829 (unless (bobp) (backward-char 1))
7830 (insert "\n")))
7832 ;; If we are splitting, grab the text that should be moved
7833 ;; to the new headline.
7834 (when may-split
7835 (if (org-on-heading-p)
7836 ;; This is a heading: split intelligently (keeping
7837 ;; tags).
7838 (let ((pos (point)))
7839 (beginning-of-line)
7840 (unless (looking-at org-complex-heading-regexp)
7841 (error "This should not happen"))
7842 (when (and (match-beginning 4)
7843 (> pos (match-beginning 4))
7844 (< pos (match-end 4)))
7845 (setq initial-content (buffer-substring pos (match-end 4)))
7846 (goto-char pos)
7847 (delete-region (point) (match-end 4))
7848 (if (looking-at "[ \t]*$")
7849 (replace-match "")
7850 (insert (make-string (length initial-content) ?\s)))
7851 (setq initial-content (org-trim initial-content)))
7852 (goto-char pos))
7853 ;; A normal line.
7854 (setq initial-content
7855 (org-trim
7856 (delete-and-extract-region (point) (line-end-position))))))
7858 ;; If we are at the beginning of the line, insert before it.
7859 ;; Otherwise, after it.
7860 (cond
7861 ((and (bolp) (looking-at "[ \t]*$")))
7862 ((bolp) (open-line 1))
7863 (t (end-of-line)
7864 (insert "\n")))
7866 ;; Insert the new heading
7867 (insert stars)
7868 (just-one-space)
7869 (insert initial-content)
7870 (when (and adjust-empty-lines
7871 (not (and blank (org-previous-line-empty-p))))
7872 (org-N-empty-lines-before-current (if blank 1 0)))
7873 (run-hooks 'org-insert-heading-hook)))))))
7875 (defun org-N-empty-lines-before-current (N)
7876 "Make the number of empty lines before current exactly N.
7877 So this will delete or add empty lines."
7878 (save-excursion
7879 (beginning-of-line)
7880 (let ((p (point)))
7881 (skip-chars-backward " \r\t\n")
7882 (unless (bolp) (forward-line))
7883 (delete-region (point) p))
7884 (when (> N 0) (insert (make-string N ?\n)))))
7886 (defun org-get-heading (&optional no-tags no-todo)
7887 "Return the heading of the current entry, without the stars.
7888 When NO-TAGS is non-nil, don't include tags.
7889 When NO-TODO is non-nil, don't include TODO keywords."
7890 (save-excursion
7891 (org-back-to-heading t)
7892 (cond
7893 ((and no-tags no-todo)
7894 (looking-at org-complex-heading-regexp)
7895 (match-string 4))
7896 (no-tags
7897 (looking-at (concat org-outline-regexp
7898 "\\(.*?\\)"
7899 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7900 (match-string 1))
7901 (no-todo
7902 (looking-at org-todo-line-regexp)
7903 (match-string 3))
7904 (t (looking-at org-heading-regexp)
7905 (match-string 2)))))
7907 (defvar orgstruct-mode) ; defined below
7909 (defun org-heading-components ()
7910 "Return the components of the current heading.
7911 This is a list with the following elements:
7912 - the level as an integer
7913 - the reduced level, different if `org-odd-levels-only' is set.
7914 - the TODO keyword, or nil
7915 - the priority character, like ?A, or nil if no priority is given
7916 - the headline text itself, or the tags string if no headline text
7917 - the tags string, or nil."
7918 (save-excursion
7919 (org-back-to-heading t)
7920 (if (let (case-fold-search)
7921 (looking-at
7922 (if orgstruct-mode
7923 org-heading-regexp
7924 org-complex-heading-regexp)))
7925 (if orgstruct-mode
7926 (list (length (match-string 1))
7927 (org-reduced-level (length (match-string 1)))
7930 (match-string 2)
7931 nil)
7932 (list (length (match-string 1))
7933 (org-reduced-level (length (match-string 1)))
7934 (org-match-string-no-properties 2)
7935 (and (match-end 3) (aref (match-string 3) 2))
7936 (org-match-string-no-properties 4)
7937 (org-match-string-no-properties 5))))))
7939 (defun org-get-entry ()
7940 "Get the entry text, after heading, entire subtree."
7941 (save-excursion
7942 (org-back-to-heading t)
7943 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7945 (defun org-insert-heading-after-current ()
7946 "Insert a new heading with same level as current, after current subtree."
7947 (interactive)
7948 (org-back-to-heading)
7949 (org-insert-heading)
7950 (org-move-subtree-down)
7951 (end-of-line 1))
7953 (defun org-insert-heading-respect-content (&optional invisible-ok)
7954 "Insert heading with `org-insert-heading-respect-content' set to t."
7955 (interactive)
7956 (org-insert-heading '(4) invisible-ok))
7958 (defun org-insert-todo-heading-respect-content (&optional force-state)
7959 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7960 (interactive)
7961 (org-insert-todo-heading force-state '(4)))
7963 (defun org-insert-todo-heading (arg &optional force-heading)
7964 "Insert a new heading with the same level and TODO state as current heading.
7965 If the heading has no TODO state, or if the state is DONE, use the first
7966 state (TODO by default). Also with one prefix arg, force first state. With
7967 two prefix args, force inserting at the end of the parent subtree."
7968 (interactive "P")
7969 (when (or force-heading (not (org-insert-item 'checkbox)))
7970 (org-insert-heading (or (and (equal arg '(16)) '(16))
7971 force-heading))
7972 (save-excursion
7973 (org-back-to-heading)
7974 (outline-previous-heading)
7975 (looking-at org-todo-line-regexp))
7976 (let*
7977 ((new-mark-x
7978 (if (or (equal arg '(4))
7979 (not (match-beginning 2))
7980 (member (match-string 2) org-done-keywords))
7981 (car org-todo-keywords-1)
7982 (match-string 2)))
7983 (new-mark
7985 (run-hook-with-args-until-success
7986 'org-todo-get-default-hook new-mark-x nil)
7987 new-mark-x)))
7988 (beginning-of-line 1)
7989 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7990 (if org-treat-insert-todo-heading-as-state-change
7991 (org-todo new-mark)
7992 (insert new-mark " "))))
7993 (when org-provide-todo-statistics
7994 (org-update-parent-todo-statistics))))
7996 (defun org-insert-subheading (arg)
7997 "Insert a new subheading and demote it.
7998 Works for outline headings and for plain lists alike."
7999 (interactive "P")
8000 (org-insert-heading arg)
8001 (cond
8002 ((org-at-heading-p) (org-do-demote))
8003 ((org-at-item-p) (org-indent-item))))
8005 (defun org-insert-todo-subheading (arg)
8006 "Insert a new subheading with TODO keyword or checkbox and demote it.
8007 Works for outline headings and for plain lists alike."
8008 (interactive "P")
8009 (org-insert-todo-heading arg)
8010 (cond
8011 ((org-at-heading-p) (org-do-demote))
8012 ((org-at-item-p) (org-indent-item))))
8014 ;;; Promotion and Demotion
8016 (defvar org-after-demote-entry-hook nil
8017 "Hook run after an entry has been demoted.
8018 The cursor will be at the beginning of the entry.
8019 When a subtree is being demoted, the hook will be called for each node.")
8021 (defvar org-after-promote-entry-hook nil
8022 "Hook run after an entry has been promoted.
8023 The cursor will be at the beginning of the entry.
8024 When a subtree is being promoted, the hook will be called for each node.")
8026 (defun org-promote-subtree ()
8027 "Promote the entire subtree.
8028 See also `org-promote'."
8029 (interactive)
8030 (save-excursion
8031 (org-with-limited-levels (org-map-tree 'org-promote)))
8032 (org-fix-position-after-promote))
8034 (defun org-demote-subtree ()
8035 "Demote the entire subtree. See `org-demote'.
8036 See also `org-promote'."
8037 (interactive)
8038 (save-excursion
8039 (org-with-limited-levels (org-map-tree 'org-demote)))
8040 (org-fix-position-after-promote))
8043 (defun org-do-promote ()
8044 "Promote the current heading higher up the tree.
8045 If the region is active in `transient-mark-mode', promote all headings
8046 in the region."
8047 (interactive)
8048 (save-excursion
8049 (if (org-region-active-p)
8050 (org-map-region 'org-promote (region-beginning) (region-end))
8051 (org-promote)))
8052 (org-fix-position-after-promote))
8054 (defun org-do-demote ()
8055 "Demote the current heading lower down the tree.
8056 If the region is active in `transient-mark-mode', demote all headings
8057 in the region."
8058 (interactive)
8059 (save-excursion
8060 (if (org-region-active-p)
8061 (org-map-region 'org-demote (region-beginning) (region-end))
8062 (org-demote)))
8063 (org-fix-position-after-promote))
8065 (defun org-fix-position-after-promote ()
8066 "Make sure that after pro/demotion cursor position is right."
8067 (let ((pos (point)))
8068 (when (save-excursion
8069 (beginning-of-line 1)
8070 (looking-at org-todo-line-regexp)
8071 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8072 (cond ((eobp) (insert " "))
8073 ((eolp) (insert " "))
8074 ((equal (char-after) ?\ ) (forward-char 1))))))
8076 (defun org-current-level ()
8077 "Return the level of the current entry, or nil if before the first headline.
8078 The level is the number of stars at the beginning of the
8079 headline. Use `org-reduced-level' to remove the effect of
8080 `org-odd-levels'. Unlike to `org-outline-level', this function
8081 ignores inlinetasks."
8082 (let ((level (org-with-limited-levels (org-outline-level))))
8083 (and (> level 0) level)))
8085 (defun org-get-previous-line-level ()
8086 "Return the outline depth of the last headline before the current line.
8087 Returns 0 for the first headline in the buffer, and nil if before the
8088 first headline."
8089 (and (org-current-level)
8090 (or (and (/= (line-beginning-position) (point-min))
8091 (save-excursion (beginning-of-line 0) (org-current-level)))
8092 0)))
8094 (defun org-reduced-level (l)
8095 "Compute the effective level of a heading.
8096 This takes into account the setting of `org-odd-levels-only'."
8097 (cond
8098 ((zerop l) 0)
8099 (org-odd-levels-only (1+ (floor (/ l 2))))
8100 (t l)))
8102 (defun org-level-increment ()
8103 "Return the number of stars that will be added or removed at a
8104 time to headlines when structure editing, based on the value of
8105 `org-odd-levels-only'."
8106 (if org-odd-levels-only 2 1))
8108 (defun org-get-valid-level (level &optional change)
8109 "Rectify a level change under the influence of `org-odd-levels-only'
8110 LEVEL is a current level, CHANGE is by how much the level should be
8111 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8112 even level numbers will become the next higher odd number."
8113 (if org-odd-levels-only
8114 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8115 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8116 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8117 (max 1 (+ level (or change 0)))))
8119 (if (boundp 'define-obsolete-function-alias)
8120 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8121 (define-obsolete-function-alias 'org-get-legal-level
8122 'org-get-valid-level)
8123 (define-obsolete-function-alias 'org-get-legal-level
8124 'org-get-valid-level "23.1")))
8126 (defun org-promote ()
8127 "Promote the current heading higher up the tree."
8128 (org-with-wide-buffer
8129 (org-back-to-heading t)
8130 (let* ((after-change-functions (remq 'flyspell-after-change-function
8131 after-change-functions))
8132 (level (save-match-data (funcall outline-level)))
8133 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8134 (diff (abs (- level (length up-head) -1))))
8135 (cond
8136 ((and (= level 1) org-allow-promoting-top-level-subtree)
8137 (replace-match "# " nil t))
8138 ((= level 1)
8139 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8140 (t (replace-match up-head nil t)))
8141 (unless (= level 1)
8142 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8143 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8144 (run-hooks 'org-after-promote-entry-hook))))
8146 (defun org-demote ()
8147 "Demote the current heading lower down the tree."
8148 (org-with-wide-buffer
8149 (org-back-to-heading t)
8150 (let* ((after-change-functions (remq 'flyspell-after-change-function
8151 after-change-functions))
8152 (level (save-match-data (funcall outline-level)))
8153 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8154 (diff (abs (- level (length down-head) -1))))
8155 (replace-match down-head nil t)
8156 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8157 (when org-adapt-indentation (org-fixup-indentation diff))
8158 (run-hooks 'org-after-demote-entry-hook))))
8160 (defun org-cycle-level ()
8161 "Cycle the level of an empty headline through possible states.
8162 This goes first to child, then to parent, level, then up the hierarchy.
8163 After top level, it switches back to sibling level."
8164 (interactive)
8165 (let ((org-adapt-indentation nil))
8166 (when (org-point-at-end-of-empty-headline)
8167 (setq this-command 'org-cycle-level) ; Only needed for caching
8168 (let ((cur-level (org-current-level))
8169 (prev-level (org-get-previous-line-level)))
8170 (cond
8171 ;; If first headline in file, promote to top-level.
8172 ((= prev-level 0)
8173 (loop repeat (/ (- cur-level 1) (org-level-increment))
8174 do (org-do-promote)))
8175 ;; If same level as prev, demote one.
8176 ((= prev-level cur-level)
8177 (org-do-demote))
8178 ;; If parent is top-level, promote to top level if not already.
8179 ((= prev-level 1)
8180 (loop repeat (/ (- cur-level 1) (org-level-increment))
8181 do (org-do-promote)))
8182 ;; If top-level, return to prev-level.
8183 ((= cur-level 1)
8184 (loop repeat (/ (- prev-level 1) (org-level-increment))
8185 do (org-do-demote)))
8186 ;; If less than prev-level, promote one.
8187 ((< cur-level prev-level)
8188 (org-do-promote))
8189 ;; If deeper than prev-level, promote until higher than
8190 ;; prev-level.
8191 ((> cur-level prev-level)
8192 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8193 do (org-do-promote))))
8194 t))))
8196 (defun org-map-tree (fun)
8197 "Call FUN for every heading underneath the current one."
8198 (org-back-to-heading)
8199 (let ((level (funcall outline-level)))
8200 (save-excursion
8201 (funcall fun)
8202 (while (and (progn
8203 (outline-next-heading)
8204 (> (funcall outline-level) level))
8205 (not (eobp)))
8206 (funcall fun)))))
8208 (defun org-map-region (fun beg end)
8209 "Call FUN for every heading between BEG and END."
8210 (let ((org-ignore-region t))
8211 (save-excursion
8212 (setq end (copy-marker end))
8213 (goto-char beg)
8214 (if (and (re-search-forward org-outline-regexp-bol nil t)
8215 (< (point) end))
8216 (funcall fun))
8217 (while (and (progn
8218 (outline-next-heading)
8219 (< (point) end))
8220 (not (eobp)))
8221 (funcall fun)))))
8223 (defun org-fixup-indentation (diff)
8224 "Change the indentation in the current entry by DIFF.
8226 DIFF is an integer. Indentation is done according to the
8227 following rules:
8229 - Planning information and property drawers are always indented
8230 according to the new level of the headline;
8232 - Footnote definitions and their contents are ignored;
8234 - Inlinetasks' boundaries are not shifted;
8236 - Empty lines are ignored;
8238 - Other lines' indentation are shifted by DIFF columns, unless
8239 it would introduce a structural change in the document, in
8240 which case no shifting is done at all.
8242 Assume point is at a heading or an inlinetask beginning."
8243 (org-with-wide-buffer
8244 (narrow-to-region (line-beginning-position)
8245 (save-excursion
8246 (if (org-with-limited-levels (org-at-heading-p))
8247 (org-with-limited-levels (outline-next-heading))
8248 (org-inlinetask-goto-end))
8249 (point)))
8250 (forward-line)
8251 ;; Indent properly planning info and property drawer.
8252 (when (org-looking-at-p org-planning-line-re)
8253 (org-indent-line)
8254 (forward-line))
8255 (when (looking-at org-property-drawer-re)
8256 (goto-char (match-end 0))
8257 (forward-line)
8258 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8259 (catch 'no-shift
8260 (when (zerop diff) (throw 'no-shift nil))
8261 ;; If DIFF is negative, first check if a shift is possible at all
8262 ;; (e.g., it doesn't break structure). This can only happen if
8263 ;; some contents are not properly indented.
8264 (let ((case-fold-search t))
8265 (when (< diff 0)
8266 (let ((diff (- diff))
8267 (forbidden-re (concat org-outline-regexp
8268 "\\|"
8269 (substring org-footnote-definition-re 1))))
8270 (save-excursion
8271 (while (not (eobp))
8272 (cond
8273 ((org-looking-at-p "[ \t]*$") (forward-line))
8274 ((and (org-looking-at-p org-footnote-definition-re)
8275 (let ((e (org-element-at-point)))
8276 (and (eq (org-element-type e) 'footnote-definition)
8277 (goto-char (org-element-property :end e))))))
8278 ((org-looking-at-p org-outline-regexp) (forward-line))
8279 ;; Give up if shifting would move before column 0 or
8280 ;; if it would introduce a headline or a footnote
8281 ;; definition.
8283 (skip-chars-forward " \t")
8284 (let ((ind (current-column)))
8285 (when (or (< ind diff)
8286 (and (= ind diff) (org-looking-at-p forbidden-re)))
8287 (throw 'no-shift nil)))
8288 ;; Ignore contents of example blocks and source
8289 ;; blocks if their indentation is meant to be
8290 ;; preserved. Jump to block's closing line.
8291 (beginning-of-line)
8292 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8293 (let ((e (org-element-at-point)))
8294 (and (memq (org-element-type e)
8295 '(example-block src-block))
8296 (or org-src-preserve-indentation
8297 (org-element-property :preserve-indent e))
8298 (goto-char (org-element-property :end e))
8299 (progn (skip-chars-backward " \r\t\n")
8300 (beginning-of-line)
8301 t))))
8302 (forward-line))))))))
8303 ;; Shift lines but footnote definitions, inlinetasks boundaries
8304 ;; by DIFF. Also skip contents of source or example blocks
8305 ;; when indentation is meant to be preserved.
8306 (while (not (eobp))
8307 (cond
8308 ((and (org-looking-at-p org-footnote-definition-re)
8309 (let ((e (org-element-at-point)))
8310 (and (eq (org-element-type e) 'footnote-definition)
8311 (goto-char (org-element-property :end e))))))
8312 ((org-looking-at-p org-outline-regexp) (forward-line))
8313 ((org-looking-at-p "[ \t]*$") (forward-line))
8315 (org-indent-line-to (+ (org-get-indentation) diff))
8316 (beginning-of-line)
8317 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8318 (let ((e (org-element-at-point)))
8319 (and (memq (org-element-type e)
8320 '(example-block src-block))
8321 (or org-src-preserve-indentation
8322 (org-element-property :preserve-indent e))
8323 (goto-char (org-element-property :end e))
8324 (progn (skip-chars-backward " \r\t\n")
8325 (beginning-of-line)
8326 t))))
8327 (forward-line)))))))))
8329 (defun org-convert-to-odd-levels ()
8330 "Convert an org-mode file with all levels allowed to one with odd levels.
8331 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8332 level 5 etc."
8333 (interactive)
8334 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8335 (let ((outline-level 'org-outline-level)
8336 (org-odd-levels-only nil) n)
8337 (save-excursion
8338 (goto-char (point-min))
8339 (while (re-search-forward "^\\*\\*+ " nil t)
8340 (setq n (- (length (match-string 0)) 2))
8341 (while (>= (setq n (1- n)) 0)
8342 (org-demote))
8343 (end-of-line 1))))))
8345 (defun org-convert-to-oddeven-levels ()
8346 "Convert an org-mode file with only odd levels to one with odd/even levels.
8347 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8348 file contains a section with an even level, conversion would
8349 destroy the structure of the file. An error is signaled in this
8350 case."
8351 (interactive)
8352 (goto-char (point-min))
8353 ;; First check if there are no even levels
8354 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8355 (org-show-set-visibility 'canonical)
8356 (error "Not all levels are odd in this file. Conversion not possible"))
8357 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8358 (let ((outline-regexp org-outline-regexp)
8359 (outline-level 'org-outline-level)
8360 (org-odd-levels-only nil) n)
8361 (save-excursion
8362 (goto-char (point-min))
8363 (while (re-search-forward "^\\*\\*+ " nil t)
8364 (setq n (/ (1- (length (match-string 0))) 2))
8365 (while (>= (setq n (1- n)) 0)
8366 (org-promote))
8367 (end-of-line 1))))))
8369 (defun org-tr-level (n)
8370 "Make N odd if required."
8371 (if org-odd-levels-only (1+ (/ n 2)) n))
8373 ;;; Vertical tree motion, cutting and pasting of subtrees
8375 (defun org-move-subtree-up (&optional arg)
8376 "Move the current subtree up past ARG headlines of the same level."
8377 (interactive "p")
8378 (org-move-subtree-down (- (prefix-numeric-value arg))))
8380 (defun org-move-subtree-down (&optional arg)
8381 "Move the current subtree down past ARG headlines of the same level."
8382 (interactive "p")
8383 (setq arg (prefix-numeric-value arg))
8384 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8385 'org-get-last-sibling))
8386 (ins-point (make-marker))
8387 (cnt (abs arg))
8388 (col (current-column))
8389 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8390 ;; Select the tree
8391 (org-back-to-heading)
8392 (setq beg0 (point))
8393 (save-excursion
8394 (setq ne-beg (org-back-over-empty-lines))
8395 (setq beg (point)))
8396 (save-match-data
8397 (save-excursion (outline-end-of-heading)
8398 (setq folded (outline-invisible-p)))
8399 (progn (org-end-of-subtree nil t)
8400 (unless (eobp) (backward-char))))
8401 (outline-next-heading)
8402 (setq ne-end (org-back-over-empty-lines))
8403 (setq end (point))
8404 (goto-char beg0)
8405 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8406 ;; include less whitespace
8407 (save-excursion
8408 (goto-char beg)
8409 (forward-line (- ne-beg ne-end))
8410 (setq beg (point))))
8411 ;; Find insertion point, with error handling
8412 (while (> cnt 0)
8413 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8414 (progn (goto-char beg0)
8415 (user-error "Cannot move past superior level or buffer limit")))
8416 (setq cnt (1- cnt)))
8417 (if (> arg 0)
8418 ;; Moving forward - still need to move over subtree
8419 (progn (org-end-of-subtree t t)
8420 (save-excursion
8421 (org-back-over-empty-lines)
8422 (or (bolp) (newline)))))
8423 (setq ne-ins (org-back-over-empty-lines))
8424 (move-marker ins-point (point))
8425 (setq txt (buffer-substring beg end))
8426 (org-save-markers-in-region beg end)
8427 (delete-region beg end)
8428 (org-remove-empty-overlays-at beg)
8429 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8430 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8431 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8432 (let ((bbb (point)))
8433 (insert-before-markers txt)
8434 (org-reinstall-markers-in-region bbb)
8435 (move-marker ins-point bbb))
8436 (or (bolp) (insert "\n"))
8437 (setq ins-end (point))
8438 (goto-char ins-point)
8439 (org-skip-whitespace)
8440 (when (and (< arg 0)
8441 (org-first-sibling-p)
8442 (> ne-ins ne-beg))
8443 ;; Move whitespace back to beginning
8444 (save-excursion
8445 (goto-char ins-end)
8446 (let ((kill-whole-line t))
8447 (kill-line (- ne-ins ne-beg)) (point)))
8448 (insert (make-string (- ne-ins ne-beg) ?\n)))
8449 (move-marker ins-point nil)
8450 (if folded
8451 (hide-subtree)
8452 (org-show-entry)
8453 (show-children)
8454 (org-cycle-hide-drawers 'children))
8455 (org-clean-visibility-after-subtree-move)
8456 ;; move back to the initial column we were at
8457 (move-to-column col)))
8459 (defvar org-subtree-clip ""
8460 "Clipboard for cut and paste of subtrees.
8461 This is actually only a copy of the kill, because we use the normal kill
8462 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8464 (defvar org-subtree-clip-folded nil
8465 "Was the last copied subtree folded?
8466 This is used to fold the tree back after pasting.")
8468 (defun org-cut-subtree (&optional n)
8469 "Cut the current subtree into the clipboard.
8470 With prefix arg N, cut this many sequential subtrees.
8471 This is a short-hand for marking the subtree and then cutting it."
8472 (interactive "p")
8473 (org-copy-subtree n 'cut))
8475 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8476 "Copy the current subtree it in the clipboard.
8477 With prefix arg N, copy this many sequential subtrees.
8478 This is a short-hand for marking the subtree and then copying it.
8479 If CUT is non-nil, actually cut the subtree.
8480 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8481 of some markers in the region, even if CUT is non-nil. This is
8482 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8483 (interactive "p")
8484 (let (beg end folded (beg0 (point)))
8485 (if (org-called-interactively-p 'any)
8486 (org-back-to-heading nil) ; take what looks like a subtree
8487 (org-back-to-heading t)) ; take what is really there
8488 (setq beg (point))
8489 (skip-chars-forward " \t\r\n")
8490 (save-match-data
8491 (if nosubtrees
8492 (outline-next-heading)
8493 (save-excursion (outline-end-of-heading)
8494 (setq folded (outline-invisible-p)))
8495 (ignore-errors (org-forward-heading-same-level (1- n) t))
8496 (org-end-of-subtree t t)))
8497 (setq end (point))
8498 (goto-char beg0)
8499 (when (> end beg)
8500 (setq org-subtree-clip-folded folded)
8501 (when (or cut force-store-markers)
8502 (org-save-markers-in-region beg end))
8503 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8504 (setq org-subtree-clip (current-kill 0))
8505 (message "%s: Subtree(s) with %d characters"
8506 (if cut "Cut" "Copied")
8507 (length org-subtree-clip)))))
8509 (defun org-paste-subtree (&optional level tree for-yank remove)
8510 "Paste the clipboard as a subtree, with modification of headline level.
8511 The entire subtree is promoted or demoted in order to match a new headline
8512 level.
8514 If the cursor is at the beginning of a headline, the same level as
8515 that headline is used to paste the tree.
8517 If not, the new level is derived from the *visible* headings
8518 before and after the insertion point, and taken to be the inferior headline
8519 level of the two. So if the previous visible heading is level 3 and the
8520 next is level 4 (or vice versa), level 4 will be used for insertion.
8521 This makes sure that the subtree remains an independent subtree and does
8522 not swallow low level entries.
8524 You can also force a different level, either by using a numeric prefix
8525 argument, or by inserting the heading marker by hand. For example, if the
8526 cursor is after \"*****\", then the tree will be shifted to level 5.
8528 If optional TREE is given, use this text instead of the kill ring.
8530 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8531 move back over whitespace before inserting, and move point to the end of
8532 the inserted text when done.
8534 When REMOVE is non-nil, remove the subtree from the clipboard."
8535 (interactive "P")
8536 (setq tree (or tree (and kill-ring (current-kill 0))))
8537 (unless (org-kill-is-subtree-p tree)
8538 (user-error "%s"
8539 (substitute-command-keys
8540 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8541 (org-with-limited-levels
8542 (let* ((visp (not (outline-invisible-p)))
8543 (txt tree)
8544 (^re_ "\\(\\*+\\)[ \t]*")
8545 (old-level (if (string-match org-outline-regexp-bol txt)
8546 (- (match-end 0) (match-beginning 0) 1)
8547 -1))
8548 (force-level (cond (level (prefix-numeric-value level))
8549 ((and (looking-at "[ \t]*$")
8550 (string-match
8551 "^\\*+$" (buffer-substring
8552 (point-at-bol) (point))))
8553 (- (match-end 0) (match-beginning 0)))
8554 ((and (bolp)
8555 (looking-at org-outline-regexp))
8556 (- (match-end 0) (point) 1))))
8557 (previous-level (save-excursion
8558 (condition-case nil
8559 (progn
8560 (outline-previous-visible-heading 1)
8561 (if (looking-at ^re_)
8562 (- (match-end 0) (match-beginning 0) 1)
8564 (error 1))))
8565 (next-level (save-excursion
8566 (condition-case nil
8567 (progn
8568 (or (looking-at org-outline-regexp)
8569 (outline-next-visible-heading 1))
8570 (if (looking-at ^re_)
8571 (- (match-end 0) (match-beginning 0) 1)
8573 (error 1))))
8574 (new-level (or force-level (max previous-level next-level)))
8575 (shift (if (or (= old-level -1)
8576 (= new-level -1)
8577 (= old-level new-level))
8579 (- new-level old-level)))
8580 (delta (if (> shift 0) -1 1))
8581 (func (if (> shift 0) 'org-demote 'org-promote))
8582 (org-odd-levels-only nil)
8583 beg end newend)
8584 ;; Remove the forced level indicator
8585 (if force-level
8586 (delete-region (point-at-bol) (point)))
8587 ;; Paste
8588 (beginning-of-line (if (bolp) 1 2))
8589 (setq beg (point))
8590 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8591 (insert-before-markers txt)
8592 (unless (string-match "\n\\'" txt) (insert "\n"))
8593 (setq newend (point))
8594 (org-reinstall-markers-in-region beg)
8595 (setq end (point))
8596 (goto-char beg)
8597 (skip-chars-forward " \t\n\r")
8598 (setq beg (point))
8599 (if (and (outline-invisible-p) visp)
8600 (save-excursion (outline-show-heading)))
8601 ;; Shift if necessary
8602 (unless (= shift 0)
8603 (save-restriction
8604 (narrow-to-region beg end)
8605 (while (not (= shift 0))
8606 (org-map-region func (point-min) (point-max))
8607 (setq shift (+ delta shift)))
8608 (goto-char (point-min))
8609 (setq newend (point-max))))
8610 (when (or (org-called-interactively-p 'interactive) for-yank)
8611 (message "Clipboard pasted as level %d subtree" new-level))
8612 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8613 kill-ring
8614 (eq org-subtree-clip (current-kill 0))
8615 org-subtree-clip-folded)
8616 ;; The tree was folded before it was killed/copied
8617 (hide-subtree))
8618 (and for-yank (goto-char newend))
8619 (and remove (setq kill-ring (cdr kill-ring))))))
8621 (defun org-kill-is-subtree-p (&optional txt)
8622 "Check if the current kill is an outline subtree, or a set of trees.
8623 Returns nil if kill does not start with a headline, or if the first
8624 headline level is not the largest headline level in the tree.
8625 So this will actually accept several entries of equal levels as well,
8626 which is OK for `org-paste-subtree'.
8627 If optional TXT is given, check this string instead of the current kill."
8628 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8629 (re (org-get-limited-outline-regexp))
8630 (^re (concat "^" re))
8631 (start-level (and kill
8632 (string-match
8633 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8634 kill)
8635 (- (match-end 2) (match-beginning 2) 1)))
8636 (start (1+ (or (match-beginning 2) -1))))
8637 (if (not start-level)
8638 (progn
8639 nil) ;; does not even start with a heading
8640 (catch 'exit
8641 (while (setq start (string-match ^re kill (1+ start)))
8642 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8643 (throw 'exit nil)))
8644 t))))
8646 (defvar org-markers-to-move nil
8647 "Markers that should be moved with a cut-and-paste operation.
8648 Those markers are stored together with their positions relative to
8649 the start of the region.")
8651 (defun org-save-markers-in-region (beg end)
8652 "Check markers in region.
8653 If these markers are between BEG and END, record their position relative
8654 to BEG, so that after moving the block of text, we can put the markers back
8655 into place.
8656 This function gets called just before an entry or tree gets cut from the
8657 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8658 called immediately, to move the markers with the entries."
8659 (setq org-markers-to-move nil)
8660 (when (featurep 'org-clock)
8661 (org-clock-save-markers-for-cut-and-paste beg end))
8662 (when (featurep 'org-agenda)
8663 (org-agenda-save-markers-for-cut-and-paste beg end)))
8665 (defun org-check-and-save-marker (marker beg end)
8666 "Check if MARKER is between BEG and END.
8667 If yes, remember the marker and the distance to BEG."
8668 (when (and (marker-buffer marker)
8669 (equal (marker-buffer marker) (current-buffer)))
8670 (if (and (>= marker beg) (< marker end))
8671 (push (cons marker (- marker beg)) org-markers-to-move))))
8673 (defun org-reinstall-markers-in-region (beg)
8674 "Move all remembered markers to their position relative to BEG."
8675 (mapc (lambda (x)
8676 (move-marker (car x) (+ beg (cdr x))))
8677 org-markers-to-move)
8678 (setq org-markers-to-move nil))
8680 (defun org-narrow-to-subtree ()
8681 "Narrow buffer to the current subtree."
8682 (interactive)
8683 (save-excursion
8684 (save-match-data
8685 (org-with-limited-levels
8686 (narrow-to-region
8687 (progn (org-back-to-heading t) (point))
8688 (progn (org-end-of-subtree t t)
8689 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8690 (point)))))))
8692 (defun org-narrow-to-block ()
8693 "Narrow buffer to the current block."
8694 (interactive)
8695 (let* ((case-fold-search t)
8696 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8697 "^[ \t]*#\\+end_.*")))
8698 (if blockp
8699 (narrow-to-region (car blockp) (cdr blockp))
8700 (user-error "Not in a block"))))
8702 (defun org-clone-subtree-with-time-shift (n &optional shift)
8703 "Clone the task (subtree) at point N times.
8704 The clones will be inserted as siblings.
8706 In interactive use, the user will be prompted for the number of
8707 clones to be produced. If the entry has a timestamp, the user
8708 will also be prompted for a time shift, which may be a repeater
8709 as used in time stamps, for example `+3d'. To disable this,
8710 you can call the function with a universal prefix argument.
8712 When a valid repeater is given and the entry contains any time
8713 stamps, the clones will become a sequence in time, with time
8714 stamps in the subtree shifted for each clone produced. If SHIFT
8715 is nil or the empty string, time stamps will be left alone. The
8716 ID property of the original subtree is removed.
8718 If the original subtree did contain time stamps with a repeater,
8719 the following will happen:
8720 - the repeater will be removed in each clone
8721 - an additional clone will be produced, with the current, unshifted
8722 date(s) in the entry.
8723 - the original entry will be placed *after* all the clones, with
8724 repeater intact.
8725 - the start days in the repeater in the original entry will be shifted
8726 to past the last clone.
8727 In this way you can spell out a number of instances of a repeating task,
8728 and still retain the repeater to cover future instances of the task."
8729 (interactive "nNumber of clones to produce: ")
8730 (let ((shift
8731 (or shift
8732 (if (and (not (equal current-prefix-arg '(4)))
8733 (save-excursion
8734 (re-search-forward org-ts-regexp-both
8735 (save-excursion
8736 (org-end-of-subtree t)
8737 (point)) t)))
8738 (read-from-minibuffer
8739 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8740 ""))) ;; No time shift
8741 (n-no-remove -1)
8742 (drawer-re org-drawer-regexp)
8743 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8744 beg end template task idprop
8745 shift-n shift-what doshift nmin nmax)
8746 (if (not (and (integerp n) (> n 0)))
8747 (user-error "Invalid number of replications %s" n))
8748 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8749 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8750 shift)))
8751 (user-error "Invalid shift specification %s" shift))
8752 (when doshift
8753 (setq shift-n (string-to-number (match-string 1 shift))
8754 shift-what (cdr (assoc (match-string 2 shift)
8755 '(("d" . day) ("w" . week)
8756 ("m" . month) ("y" . year))))))
8757 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8758 (setq nmin 1 nmax n)
8759 (org-back-to-heading t)
8760 (setq beg (point))
8761 (setq idprop (org-entry-get nil "ID"))
8762 (org-end-of-subtree t t)
8763 (or (bolp) (insert "\n"))
8764 (setq end (point))
8765 (setq template (buffer-substring beg end))
8766 (when (and doshift
8767 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8768 (delete-region beg end)
8769 (setq end beg)
8770 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8771 (goto-char end)
8772 (loop for n from nmin to nmax do
8773 ;; prepare clone
8774 (with-temp-buffer
8775 (insert template)
8776 (org-mode)
8777 (goto-char (point-min))
8778 (org-show-subtree)
8779 (and idprop (if org-clone-delete-id
8780 (org-entry-delete nil "ID")
8781 (org-id-get-create t)))
8782 (unless (= n 0)
8783 (while (re-search-forward org-clock-re nil t)
8784 (kill-whole-line))
8785 (goto-char (point-min))
8786 (while (re-search-forward drawer-re nil t)
8787 (org-remove-empty-drawer-at (point))))
8788 (goto-char (point-min))
8789 (when doshift
8790 (while (re-search-forward org-ts-regexp-both nil t)
8791 (org-timestamp-change (* n shift-n) shift-what))
8792 (unless (= n n-no-remove)
8793 (goto-char (point-min))
8794 (while (re-search-forward org-ts-regexp nil t)
8795 (save-excursion
8796 (goto-char (match-beginning 0))
8797 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8798 (delete-region (match-beginning 1) (match-end 1)))))))
8799 (setq task (buffer-string)))
8800 (insert task))
8801 (goto-char beg)))
8803 ;;; Outline Sorting
8805 (defun org-sort (with-case)
8806 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8807 Optional argument WITH-CASE means sort case-sensitively."
8808 (interactive "P")
8809 (cond
8810 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8811 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8813 (org-call-with-arg 'org-sort-entries with-case))))
8815 (defun org-sort-remove-invisible (s)
8816 "Remove invisible links from string S."
8817 (remove-text-properties 0 (length s) org-rm-props s)
8818 (while (string-match org-bracket-link-regexp s)
8819 (setq s (replace-match (if (match-end 2)
8820 (match-string 3 s)
8821 (match-string 1 s)) t t s)))
8822 (let ((st (format " %s " s)))
8823 (while (string-match org-emph-re st)
8824 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8825 (setq s (substring st 1 -1)))
8828 (defvar org-priority-regexp) ; defined later in the file
8830 (defvar org-after-sorting-entries-or-items-hook nil
8831 "Hook that is run after a bunch of entries or items have been sorted.
8832 When children are sorted, the cursor is in the parent line when this
8833 hook gets called. When a region or a plain list is sorted, the cursor
8834 will be in the first entry of the sorted region/list.")
8836 (defun org-sort-entries
8837 (&optional with-case sorting-type getkey-func compare-func property)
8838 "Sort entries on a certain level of an outline tree.
8839 If there is an active region, the entries in the region are sorted.
8840 Else, if the cursor is before the first entry, sort the top-level items.
8841 Else, the children of the entry at point are sorted.
8843 Sorting can be alphabetically, numerically, by date/time as given by
8844 a time stamp, by a property, by priority order, or by a custom function.
8846 The command prompts for the sorting type unless it has been given to the
8847 function through the SORTING-TYPE argument, which needs to be a character,
8848 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8849 the precise meaning of each character:
8851 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8852 c By creation time, which is assumed to be the first inactive time stamp
8853 at the beginning of a line.
8854 d By deadline date/time.
8855 k By clocking time.
8856 n Numerically, by converting the beginning of the entry/item to a number.
8857 o By order of TODO keywords.
8858 p By priority according to the cookie.
8859 r By the value of a property.
8860 s By scheduled date/time.
8861 t By date/time, either the first active time stamp in the entry, or, if
8862 none exist, by the first inactive one.
8864 Capital letters will reverse the sort order.
8866 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8867 called with point at the beginning of the record. It must return either
8868 a string or a number that should serve as the sorting key for that record.
8870 Comparing entries ignores case by default. However, with an optional argument
8871 WITH-CASE, the sorting considers case as well.
8873 Sorting is done against the visible part of the headlines, it ignores hidden
8874 links.
8876 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8877 (interactive "P")
8878 (let ((case-func (if with-case 'identity 'downcase))
8879 (cmstr
8880 ;; The clock marker is lost when using `sort-subr', let's
8881 ;; store the clocking string.
8882 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8883 (save-excursion
8884 (goto-char org-clock-marker)
8885 (looking-back "^.*") (match-string-no-properties 0))))
8886 start beg end stars re re2
8887 txt what tmp)
8888 ;; Find beginning and end of region to sort
8889 (cond
8890 ((org-region-active-p)
8891 ;; we will sort the region
8892 (setq end (region-end)
8893 what "region")
8894 (goto-char (region-beginning))
8895 (if (not (org-at-heading-p)) (outline-next-heading))
8896 (setq start (point)))
8897 ((or (org-at-heading-p)
8898 (ignore-errors (progn (org-back-to-heading) t)))
8899 ;; we will sort the children of the current headline
8900 (org-back-to-heading)
8901 (setq start (point)
8902 end (progn (org-end-of-subtree t t)
8903 (or (bolp) (insert "\n"))
8904 (when (>= (org-back-over-empty-lines) 1)
8905 (forward-line 1))
8906 (point))
8907 what "children")
8908 (goto-char start)
8909 (show-subtree)
8910 (outline-next-heading))
8912 ;; we will sort the top-level entries in this file
8913 (goto-char (point-min))
8914 (or (org-at-heading-p) (outline-next-heading))
8915 (setq start (point))
8916 (goto-char (point-max))
8917 (beginning-of-line 1)
8918 (when (looking-at ".*?\\S-")
8919 ;; File ends in a non-white line
8920 (end-of-line 1)
8921 (insert "\n"))
8922 (setq end (point-max))
8923 (setq what "top-level")
8924 (goto-char start)
8925 (show-all)))
8927 (setq beg (point))
8928 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8930 (looking-at "\\(\\*+\\)")
8931 (setq stars (match-string 1)
8932 re (concat "^" (regexp-quote stars) " +")
8933 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8934 txt (buffer-substring beg end))
8935 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8936 (if (and (not (equal stars "*")) (string-match re2 txt))
8937 (user-error "Region to sort contains a level above the first entry"))
8939 (unless sorting-type
8940 (message
8941 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8942 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8943 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8944 what)
8945 (setq sorting-type (read-char-exclusive))
8947 (unless getkey-func
8948 (and (= (downcase sorting-type) ?f)
8949 (setq getkey-func
8950 (org-icompleting-read "Sort using function: "
8951 obarray 'fboundp t nil nil))
8952 (setq getkey-func (intern getkey-func))))
8954 (and (= (downcase sorting-type) ?r)
8955 (not property)
8956 (setq property
8957 (org-icompleting-read "Property: "
8958 (mapcar 'list (org-buffer-property-keys t))
8959 nil t))))
8961 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8962 (message "Sorting entries...")
8964 (save-restriction
8965 (narrow-to-region start end)
8966 (let ((dcst (downcase sorting-type))
8967 (case-fold-search nil)
8968 (now (current-time)))
8969 (sort-subr
8970 (/= dcst sorting-type)
8971 ;; This function moves to the beginning character of the "record" to
8972 ;; be sorted.
8973 (lambda nil
8974 (if (re-search-forward re nil t)
8975 (goto-char (match-beginning 0))
8976 (goto-char (point-max))))
8977 ;; This function moves to the last character of the "record" being
8978 ;; sorted.
8979 (lambda nil
8980 (save-match-data
8981 (condition-case nil
8982 (outline-forward-same-level 1)
8983 (error
8984 (goto-char (point-max))))))
8985 ;; This function returns the value that gets sorted against.
8986 (lambda nil
8987 (cond
8988 ((= dcst ?n)
8989 (if (looking-at org-complex-heading-regexp)
8990 (string-to-number (org-sort-remove-invisible (match-string 4)))
8991 nil))
8992 ((= dcst ?a)
8993 (if (looking-at org-complex-heading-regexp)
8994 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8995 nil))
8996 ((= dcst ?k)
8997 (or (get-text-property (point) :org-clock-minutes) 0))
8998 ((= dcst ?t)
8999 (let ((end (save-excursion (outline-next-heading) (point))))
9000 (if (or (re-search-forward org-ts-regexp end t)
9001 (re-search-forward org-ts-regexp-both end t))
9002 (org-time-string-to-seconds (match-string 0))
9003 (org-float-time now))))
9004 ((= dcst ?c)
9005 (let ((end (save-excursion (outline-next-heading) (point))))
9006 (if (re-search-forward
9007 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9008 end t)
9009 (org-time-string-to-seconds (match-string 0))
9010 (org-float-time now))))
9011 ((= dcst ?s)
9012 (let ((end (save-excursion (outline-next-heading) (point))))
9013 (if (re-search-forward org-scheduled-time-regexp end t)
9014 (org-time-string-to-seconds (match-string 1))
9015 (org-float-time now))))
9016 ((= dcst ?d)
9017 (let ((end (save-excursion (outline-next-heading) (point))))
9018 (if (re-search-forward org-deadline-time-regexp end t)
9019 (org-time-string-to-seconds (match-string 1))
9020 (org-float-time now))))
9021 ((= dcst ?p)
9022 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9023 (string-to-char (match-string 2))
9024 org-default-priority))
9025 ((= dcst ?r)
9026 (or (org-entry-get nil property) ""))
9027 ((= dcst ?o)
9028 (if (looking-at org-complex-heading-regexp)
9029 (let* ((m (match-string 2))
9030 (s (if (member m org-done-keywords) '- '+)))
9031 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9032 ((= dcst ?f)
9033 (if getkey-func
9034 (progn
9035 (setq tmp (funcall getkey-func))
9036 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9037 tmp)
9038 (error "Invalid key function `%s'" getkey-func)))
9039 (t (error "Invalid sorting type `%c'" sorting-type))))
9041 (cond
9042 ((= dcst ?a) 'string<)
9043 ((= dcst ?f) compare-func)
9044 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9045 (run-hooks 'org-after-sorting-entries-or-items-hook)
9046 ;; Reset the clock marker if needed
9047 (when cmstr
9048 (save-excursion
9049 (goto-char start)
9050 (search-forward cmstr nil t)
9051 (move-marker org-clock-marker (point))))
9052 (message "Sorting entries...done")))
9054 ;;; The orgstruct minor mode
9056 ;; Define a minor mode which can be used in other modes in order to
9057 ;; integrate the org-mode structure editing commands.
9059 ;; This is really a hack, because the org-mode structure commands use
9060 ;; keys which normally belong to the major mode. Here is how it
9061 ;; works: The minor mode defines all the keys necessary to operate the
9062 ;; structure commands, but wraps the commands into a function which
9063 ;; tests if the cursor is currently at a headline or a plain list
9064 ;; item. If that is the case, the structure command is used,
9065 ;; temporarily setting many Org-mode variables like regular
9066 ;; expressions for filling etc. However, when any of those keys is
9067 ;; used at a different location, function uses `key-binding' to look
9068 ;; up if the key has an associated command in another currently active
9069 ;; keymap (minor modes, major mode, global), and executes that
9070 ;; command. There might be problems if any of the keys is otherwise
9071 ;; used as a prefix key.
9073 (defcustom orgstruct-heading-prefix-regexp ""
9074 "Regexp that matches the custom prefix of Org headlines in
9075 orgstruct(++)-mode."
9076 :group 'org
9077 :version "24.4"
9078 :package-version '(Org . "8.3")
9079 :type 'regexp)
9080 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9082 (defcustom orgstruct-setup-hook nil
9083 "Hook run after orgstruct-mode-map is filled."
9084 :group 'org
9085 :version "24.4"
9086 :package-version '(Org . "8.0")
9087 :type 'hook)
9089 (defvar orgstruct-initialized nil)
9091 (defvar org-local-vars nil
9092 "List of local variables, for use by `orgstruct-mode'.")
9094 ;;;###autoload
9095 (define-minor-mode orgstruct-mode
9096 "Toggle the minor mode `orgstruct-mode'.
9097 This mode is for using Org-mode structure commands in other
9098 modes. The following keys behave as if Org-mode were active, if
9099 the cursor is on a headline, or on a plain list item (both as
9100 defined by Org-mode)."
9101 nil " OrgStruct" (make-sparse-keymap)
9102 (funcall (if orgstruct-mode
9103 'add-to-invisibility-spec
9104 'remove-from-invisibility-spec)
9105 '(outline . t))
9106 (when orgstruct-mode
9107 (org-load-modules-maybe)
9108 (unless orgstruct-initialized
9109 (orgstruct-setup)
9110 (setq orgstruct-initialized t))))
9112 ;;;###autoload
9113 (defun turn-on-orgstruct ()
9114 "Unconditionally turn on `orgstruct-mode'."
9115 (orgstruct-mode 1))
9117 (defvar org-fb-vars nil)
9118 (make-variable-buffer-local 'org-fb-vars)
9119 (defun orgstruct++-mode (&optional arg)
9120 "Toggle `orgstruct-mode', the enhanced version of it.
9121 In addition to setting orgstruct-mode, this also exports all
9122 indentation and autofilling variables from org-mode into the
9123 buffer. It will also recognize item context in multiline items."
9124 (interactive "P")
9125 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9126 (if (< arg 1)
9127 (progn (orgstruct-mode -1)
9128 (mapc (lambda(v)
9129 (org-set-local (car v)
9130 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9131 org-fb-vars))
9132 (orgstruct-mode 1)
9133 (setq org-fb-vars nil)
9134 (unless org-local-vars
9135 (setq org-local-vars (org-get-local-variables)))
9136 (let (var val)
9137 (mapc
9138 (lambda (x)
9139 (when (string-match
9140 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9141 (symbol-name (car x)))
9142 (setq var (car x) val (nth 1 x))
9143 (push (list var `(quote ,(eval var))) org-fb-vars)
9144 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9145 org-local-vars)
9146 (org-set-local 'orgstruct-is-++ t))))
9148 (defvar orgstruct-is-++ nil
9149 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9150 (make-variable-buffer-local 'orgstruct-is-++)
9152 ;;;###autoload
9153 (defun turn-on-orgstruct++ ()
9154 "Unconditionally turn on `orgstruct++-mode'."
9155 (orgstruct++-mode 1))
9157 (defun orgstruct-error ()
9158 "Error when there is no default binding for a structure key."
9159 (interactive)
9160 (funcall (if (fboundp 'user-error)
9161 'user-error
9162 'error)
9163 "This key has no function outside structure elements"))
9165 (defun orgstruct-setup ()
9166 "Setup orgstruct keymap."
9167 (dolist (cell '((org-demote . t)
9168 (org-metaleft . t)
9169 (org-metaright . t)
9170 (org-promote . t)
9171 (org-shiftmetaleft . t)
9172 (org-shiftmetaright . t)
9173 org-backward-element
9174 org-backward-heading-same-level
9175 org-ctrl-c-ret
9176 org-ctrl-c-minus
9177 org-ctrl-c-star
9178 org-cycle
9179 org-forward-heading-same-level
9180 org-insert-heading
9181 org-insert-heading-respect-content
9182 org-kill-note-or-show-branches
9183 org-mark-subtree
9184 org-meta-return
9185 org-metadown
9186 org-metaup
9187 org-narrow-to-subtree
9188 org-promote-subtree
9189 org-reveal
9190 org-shiftdown
9191 org-shiftleft
9192 org-shiftmetadown
9193 org-shiftmetaup
9194 org-shiftright
9195 org-shifttab
9196 org-shifttab
9197 org-shiftup
9198 org-show-subtree
9199 org-sort
9200 org-up-element
9201 outline-demote
9202 outline-next-visible-heading
9203 outline-previous-visible-heading
9204 outline-promote
9205 outline-up-heading
9206 show-children))
9207 (let ((f (or (car-safe cell) cell))
9208 (disable-when-heading-prefix (cdr-safe cell)))
9209 (when (fboundp f)
9210 (let ((new-bindings))
9211 (dolist (binding (nconc (where-is-internal f org-mode-map)
9212 (where-is-internal f outline-mode-map)))
9213 (push binding new-bindings)
9214 ;; TODO use local-function-key-map
9215 (dolist (rep '(("<tab>" . "TAB")
9216 ("<return>" . "RET")
9217 ("<escape>" . "ESC")
9218 ("<delete>" . "DEL")))
9219 (setq binding (read-kbd-macro
9220 (let ((case-fold-search))
9221 (replace-regexp-in-string
9222 (regexp-quote (cdr rep))
9223 (car rep)
9224 (key-description binding)))))
9225 (pushnew binding new-bindings :test 'equal)))
9226 (dolist (binding new-bindings)
9227 (let ((key (lookup-key orgstruct-mode-map binding)))
9228 (when (or (not key) (numberp key))
9229 (ignore-errors
9230 (org-defkey orgstruct-mode-map
9231 binding
9232 (orgstruct-make-binding
9233 f binding disable-when-heading-prefix))))))))))
9234 (run-hooks 'orgstruct-setup-hook))
9236 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9237 "Create a function for binding in the structure minor mode.
9238 FUN is the command to call inside a table. KEY is the key that
9239 should be checked in for a command to execute outside of tables.
9240 Non-nil `disable-when-heading-prefix' means to disable the command
9241 if `orgstruct-heading-prefix-regexp' is not empty."
9242 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9243 (let ((nname name)
9244 (i 0))
9245 (while (fboundp (intern nname))
9246 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9247 (setq name (intern nname)))
9248 (eval
9249 (let ((bindings '((org-heading-regexp
9250 (concat "^"
9251 orgstruct-heading-prefix-regexp
9252 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9253 (org-outline-regexp
9254 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9255 (org-outline-regexp-bol
9256 (concat "^" org-outline-regexp))
9257 (outline-regexp org-outline-regexp)
9258 (outline-heading-end-regexp "\n")
9259 (outline-level 'org-outline-level)
9260 (outline-heading-alist))))
9261 `(defun ,name (arg)
9262 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9263 "Outside of structure, run the binding of `"
9264 (key-description key) "'."
9265 (when disable-when-heading-prefix
9266 (concat
9267 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9268 "back to the default binding due to limitations of Org's implementation of\n"
9269 "`" (symbol-name fun) "'.")))
9270 (interactive "p")
9271 (let* ((disable
9272 ,(and disable-when-heading-prefix
9273 '(not (string= orgstruct-heading-prefix-regexp ""))))
9274 (fallback
9275 (or disable
9276 (not
9277 (let* ,bindings
9278 (org-context-p 'headline 'item
9279 ,(when (memq fun
9280 '(org-insert-heading
9281 org-insert-heading-respect-content
9282 org-meta-return))
9283 '(when orgstruct-is-++
9284 'item-body))))))))
9285 (if fallback
9286 (let* ((orgstruct-mode)
9287 (binding
9288 (let ((key ,key))
9289 (catch 'exit
9290 (dolist
9291 (rep
9292 '(nil
9293 ("<\\([^>]*\\)tab>" . "\\1TAB")
9294 ("<\\([^>]*\\)return>" . "\\1RET")
9295 ("<\\([^>]*\\)escape>" . "\\1ESC")
9296 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9297 nil)
9298 (when rep
9299 (setq key (read-kbd-macro
9300 (let ((case-fold-search))
9301 (replace-regexp-in-string
9302 (car rep)
9303 (cdr rep)
9304 (key-description key))))))
9305 (when (key-binding key)
9306 (throw 'exit (key-binding key))))))))
9307 (if (keymapp binding)
9308 (org-set-transient-map binding)
9309 (let ((func (or binding
9310 (unless disable
9311 'orgstruct-error))))
9312 (when func
9313 (call-interactively func)))))
9314 (org-run-like-in-org-mode
9315 (lambda ()
9316 (interactive)
9317 (let* ,bindings
9318 (call-interactively ',fun)))))))))
9319 name))
9321 (defun org-contextualize-keys (alist contexts)
9322 "Return valid elements in ALIST depending on CONTEXTS.
9324 `org-agenda-custom-commands' or `org-capture-templates' are the
9325 values used for ALIST, and `org-agenda-custom-commands-contexts'
9326 or `org-capture-templates-contexts' are the associated contexts
9327 definitions."
9328 (let ((contexts
9329 ;; normalize contexts
9330 (mapcar
9331 (lambda(c) (cond ((listp (cadr c))
9332 (list (car c) (car c) (cadr c)))
9333 ((string= "" (cadr c))
9334 (list (car c) (car c) (caddr c)))
9335 (t c))) contexts))
9336 (a alist) c r s)
9337 ;; loop over all commands or templates
9338 (while (setq c (pop a))
9339 (let (vrules repl)
9340 (cond
9341 ((not (assoc (car c) contexts))
9342 (push c r))
9343 ((and (assoc (car c) contexts)
9344 (setq vrules (org-contextualize-validate-key
9345 (car c) contexts)))
9346 (mapc (lambda (vr)
9347 (when (not (equal (car vr) (cadr vr)))
9348 (setq repl vr))) vrules)
9349 (if (not repl) (push c r)
9350 (push (cadr repl) s)
9351 (push
9352 (cons (car c)
9353 (cdr (or (assoc (cadr repl) alist)
9354 (error "Undefined key `%s' as contextual replacement for `%s'"
9355 (cadr repl) (car c)))))
9356 r))))))
9357 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9358 (delq
9360 (delete-dups
9361 (mapcar (lambda (x)
9362 (let ((tpl (car x)))
9363 (when (not (delq
9365 (mapcar (lambda(y)
9366 (equal y tpl)) s))) x)))
9367 (reverse r))))))
9369 (defun org-contextualize-validate-key (key contexts)
9370 "Check CONTEXTS for agenda or capture KEY."
9371 (let (r rr res)
9372 (while (setq r (pop contexts))
9373 (mapc
9374 (lambda (rr)
9375 (when
9376 (and (equal key (car r))
9377 (if (functionp rr) (funcall rr)
9378 (or (and (eq (car rr) 'in-file)
9379 (buffer-file-name)
9380 (string-match (cdr rr) (buffer-file-name)))
9381 (and (eq (car rr) 'in-mode)
9382 (string-match (cdr rr) (symbol-name major-mode)))
9383 (and (eq (car rr) 'in-buffer)
9384 (string-match (cdr rr) (buffer-name)))
9385 (when (and (eq (car rr) 'not-in-file)
9386 (buffer-file-name))
9387 (not (string-match (cdr rr) (buffer-file-name))))
9388 (when (eq (car rr) 'not-in-mode)
9389 (not (string-match (cdr rr) (symbol-name major-mode))))
9390 (when (eq (car rr) 'not-in-buffer)
9391 (not (string-match (cdr rr) (buffer-name)))))))
9392 (push r res)))
9393 (car (last r))))
9394 (delete-dups (delq nil res))))
9396 (defun org-context-p (&rest contexts)
9397 "Check if local context is any of CONTEXTS.
9398 Possible values in the list of contexts are `table', `headline', and `item'."
9399 (let ((pos (point)))
9400 (goto-char (point-at-bol))
9401 (prog1 (or (and (memq 'table contexts)
9402 (looking-at "[ \t]*|"))
9403 (and (memq 'headline contexts)
9404 (looking-at org-outline-regexp))
9405 (and (memq 'item contexts)
9406 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9407 (and (memq 'item-body contexts)
9408 (org-in-item-p)))
9409 (goto-char pos))))
9411 (defun org-get-local-variables ()
9412 "Return a list of all local variables in an Org mode buffer."
9413 (let (varlist)
9414 (with-current-buffer (get-buffer-create "*Org tmp*")
9415 (erase-buffer)
9416 (org-mode)
9417 (setq varlist (buffer-local-variables)))
9418 (kill-buffer "*Org tmp*")
9419 (delq nil
9420 (mapcar
9421 (lambda (x)
9422 (setq x
9423 (if (symbolp x)
9424 (list x)
9425 (list (car x) (cdr x))))
9426 (if (and (not (get (car x) 'org-state))
9427 (string-match
9428 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9429 (symbol-name (car x))))
9430 x nil))
9431 varlist))))
9433 (defun org-clone-local-variables (from-buffer &optional regexp)
9434 "Clone local variables from FROM-BUFFER.
9435 Optional argument REGEXP selects variables to clone."
9436 (mapc
9437 (lambda (pair)
9438 (and (symbolp (car pair))
9439 (or (null regexp)
9440 (string-match regexp (symbol-name (car pair))))
9441 (set (make-local-variable (car pair))
9442 (cdr pair))))
9443 (buffer-local-variables from-buffer)))
9445 ;;;###autoload
9446 (defun org-run-like-in-org-mode (cmd)
9447 "Run a command, pretending that the current buffer is in Org-mode.
9448 This will temporarily bind local variables that are typically bound in
9449 Org-mode to the values they have in Org-mode, and then interactively
9450 call CMD."
9451 (org-load-modules-maybe)
9452 (unless org-local-vars
9453 (setq org-local-vars (org-get-local-variables)))
9454 (let (binds)
9455 (dolist (var org-local-vars)
9456 (when (or (not (boundp (car var)))
9457 (eq (symbol-value (car var))
9458 (default-value (car var))))
9459 (push (list (car var) `(quote ,(cadr var))) binds)))
9460 (eval `(let ,binds
9461 (call-interactively (quote ,cmd))))))
9463 (defun org-get-category (&optional pos force-refresh)
9464 "Get the category applying to position POS."
9465 (save-match-data
9466 (if force-refresh (org-refresh-category-properties))
9467 (let ((pos (or pos (point))))
9468 (or (get-text-property pos 'org-category)
9469 (progn (org-refresh-category-properties)
9470 (get-text-property pos 'org-category))))))
9472 ;;; Refresh properties
9474 (defun org-refresh-properties (dprop tprop)
9475 "Refresh buffer text properties.
9476 DPROP is the drawer property and TPROP is either the
9477 corresponding text property to set, or an alist with each element
9478 being a text property (as a symbol) and a function to apply to
9479 the value of the drawer property."
9480 (let ((case-fold-search t)
9481 (inhibit-read-only t))
9482 (org-with-silent-modifications
9483 (save-excursion
9484 (save-restriction
9485 (widen)
9486 (goto-char (point-min))
9487 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9488 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9490 (defun org-refresh-property (tprop p)
9491 "Refresh the buffer text property TPROP from the drawer property P.
9492 The refresh happens only for the current tree (not subtree)."
9493 (save-excursion
9494 (org-back-to-heading t)
9495 ;; tprop is a text property symbol
9496 (if (symbolp tprop)
9497 (put-text-property
9498 (point) (or (outline-next-heading) (point-max)) tprop p)
9499 ;; tprop is an alist with (properties . function) elements
9500 (mapc (lambda(al)
9501 (save-excursion
9502 (put-text-property
9503 (point-at-bol) (or (outline-next-heading) (point-max))
9504 (car al)
9505 (funcall (cdr al) p))))
9506 tprop))))
9508 (defun org-refresh-category-properties ()
9509 "Refresh category text properties in the buffer."
9510 (let ((case-fold-search t)
9511 (inhibit-read-only t)
9512 (def-cat (cond
9513 ((null org-category)
9514 (if buffer-file-name
9515 (file-name-sans-extension
9516 (file-name-nondirectory buffer-file-name))
9517 "???"))
9518 ((symbolp org-category) (symbol-name org-category))
9519 (t org-category)))
9520 beg end cat pos optionp)
9521 (org-with-silent-modifications
9522 (save-excursion
9523 (save-restriction
9524 (widen)
9525 (goto-char (point-min))
9526 (put-text-property (point) (point-max) 'org-category def-cat)
9527 (while (re-search-forward
9528 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9529 (setq pos (match-end 0)
9530 optionp (equal (char-after (match-beginning 0)) ?#)
9531 cat (org-trim (match-string 2)))
9532 (if optionp
9533 (setq beg (point-at-bol) end (point-max))
9534 (org-back-to-heading t)
9535 (setq beg (point) end (org-end-of-subtree t t)))
9536 (put-text-property beg end 'org-category cat)
9537 (goto-char pos)))))))
9539 (defun org-refresh-stats-properties ()
9540 "Refresh stats text properties in the buffer."
9541 (let (stats)
9542 (org-with-silent-modifications
9543 (save-excursion
9544 (save-restriction
9545 (widen)
9546 (goto-char (point-min))
9547 (while (re-search-forward
9548 (concat org-outline-regexp-bol ".*"
9549 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9550 nil t)
9551 (setq stats (cond ((equal (match-string 3) "0") 0)
9552 ((match-string 2)
9553 (/ (* (string-to-number (match-string 2)) 100)
9554 (string-to-number (match-string 3))))
9555 (t (string-to-number (match-string 1)))))
9556 (org-back-to-heading t)
9557 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9558 'org-stats stats)))))))
9560 (defun org-refresh-effort-properties ()
9561 "Refresh effort properties"
9562 (org-refresh-properties
9563 org-effort-property
9564 '((effort . identity)
9565 (effort-minutes . org-duration-string-to-minutes))))
9567 ;;;; Link Stuff
9569 ;;; Link abbreviations
9571 (defun org-link-expand-abbrev (link)
9572 "Apply replacements as defined in `org-link-abbrev-alist'."
9573 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9574 (let* ((key (match-string 1 link))
9575 (as (or (assoc key org-link-abbrev-alist-local)
9576 (assoc key org-link-abbrev-alist)))
9577 (tag (and (match-end 2) (match-string 3 link)))
9578 rpl)
9579 (if (not as)
9580 link
9581 (setq rpl (cdr as))
9582 (cond
9583 ((symbolp rpl) (funcall rpl tag))
9584 ((string-match "%(\\([^)]+\\))" rpl)
9585 (replace-match
9586 (save-match-data
9587 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9588 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9589 ((string-match "%h" rpl)
9590 (replace-match (url-hexify-string (or tag "")) t t rpl))
9591 (t (concat rpl tag)))))
9592 link))
9594 ;;; Storing and inserting links
9596 (defvar org-insert-link-history nil
9597 "Minibuffer history for links inserted with `org-insert-link'.")
9599 (defvar org-stored-links nil
9600 "Contains the links stored with `org-store-link'.")
9602 (defvar org-store-link-plist nil
9603 "Plist with info about the most recently link created with `org-store-link'.")
9605 (defvar org-link-protocols nil
9606 "Link protocols added to Org-mode using `org-add-link-type'.")
9608 (defvar org-store-link-functions nil
9609 "List of functions that are called to create and store a link.
9610 Each function will be called in turn until one returns a non-nil
9611 value. Each function should check if it is responsible for creating
9612 this link (for example by looking at the major mode).
9613 If not, it must exit and return nil.
9614 If yes, it should return a non-nil value after a calling
9615 `org-store-link-props' with a list of properties and values.
9616 Special properties are:
9618 :type The link prefix, like \"http\". This must be given.
9619 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9620 This is obligatory as well.
9621 :description Optional default description for the second pair
9622 of brackets in an Org-mode link. The user can still change
9623 this when inserting this link into an Org-mode buffer.
9625 In addition to these, any additional properties can be specified
9626 and then used in capture templates.")
9628 (defun org-add-link-type (type &optional follow export)
9629 "Add TYPE to the list of `org-link-types'.
9630 Re-compute all regular expressions depending on `org-link-types'
9632 FOLLOW and EXPORT are two functions.
9634 FOLLOW should take the link path as the single argument and do whatever
9635 is necessary to follow the link, for example find a file or display
9636 a mail message.
9638 EXPORT should format the link path for export to one of the export formats.
9639 It should be a function accepting three arguments:
9641 path the path of the link, the text after the prefix (like \"http:\")
9642 desc the description of the link, if any
9643 format the export format, a symbol like `html' or `latex' or `ascii'.
9645 The function may use the FORMAT information to return different values
9646 depending on the format. The return value will be put literally into
9647 the exported file. If the return value is nil, this means Org should
9648 do what it normally does with links which do not have EXPORT defined.
9650 Org mode has a built-in default for exporting links. If you are happy with
9651 this default, there is no need to define an export function for the link
9652 type. For a simple example of an export function, see `org-bbdb.el'."
9653 (add-to-list 'org-link-types type t)
9654 (org-make-link-regexps)
9655 (org-element-update-syntax)
9656 (if (assoc type org-link-protocols)
9657 (setcdr (assoc type org-link-protocols) (list follow export))
9658 (push (list type follow export) org-link-protocols)))
9660 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9661 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9663 ;;;###autoload
9664 (defun org-store-link (arg)
9665 "\\<org-mode-map>Store an org-link to the current location.
9666 This link is added to `org-stored-links' and can later be inserted
9667 into an org-buffer with \\[org-insert-link].
9669 For some link types, a prefix arg is interpreted.
9670 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9671 For file links, arg negates `org-context-in-file-links'.
9673 A double prefix arg force skipping storing functions that are not
9674 part of Org's core.
9676 A triple prefix arg force storing a link for each line in the
9677 active region."
9678 (interactive "P")
9679 (org-load-modules-maybe)
9680 (if (and (equal arg '(64)) (org-region-active-p))
9681 (save-excursion
9682 (let ((end (region-end)))
9683 (goto-char (region-beginning))
9684 (set-mark (point))
9685 (while (< (point-at-eol) end)
9686 (move-end-of-line 1) (activate-mark)
9687 (let (current-prefix-arg)
9688 (call-interactively 'org-store-link))
9689 (move-beginning-of-line 2)
9690 (set-mark (point)))))
9691 (org-with-limited-levels
9692 (setq org-store-link-plist nil)
9693 (let (link cpltxt desc description search
9694 txt custom-id agenda-link sfuns sfunsn)
9695 (cond
9697 ;; Store a link using an external link type
9698 ((and (not (equal arg '(16)))
9699 (setq sfuns
9700 (delq
9701 nil (mapcar (lambda (f)
9702 (let (fs) (if (funcall f) (push f fs))))
9703 org-store-link-functions))
9704 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9705 (or (and (cdr sfuns)
9706 (funcall (intern
9707 (completing-read
9708 "Which function for creating the link? "
9709 sfunsn nil t (car sfunsn)))))
9710 (funcall (caar sfuns)))
9711 (setq link (plist-get org-store-link-plist :link)
9712 desc (or (plist-get org-store-link-plist
9713 :description) link))))
9715 ;; Store a link from a source code buffer
9716 ((org-src-edit-buffer-p)
9717 (let (label gc)
9718 (while (or (not label)
9719 (save-excursion
9720 (save-restriction
9721 (widen)
9722 (goto-char (point-min))
9723 (re-search-forward
9724 (regexp-quote (format org-coderef-label-format label))
9725 nil t))))
9726 (when label (message "Label exists already") (sit-for 2))
9727 (setq label (read-string "Code line label: " label)))
9728 (end-of-line 1)
9729 (setq link (format org-coderef-label-format label))
9730 (setq gc (- 79 (length link)))
9731 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9732 (insert link)
9733 (setq link (concat "(" label ")") desc nil)))
9735 ;; We are in the agenda, link to referenced location
9736 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9737 (let ((m (or (get-text-property (point) 'org-hd-marker)
9738 (get-text-property (point) 'org-marker))))
9739 (when m
9740 (org-with-point-at m
9741 (setq agenda-link
9742 (if (org-called-interactively-p 'any)
9743 (call-interactively 'org-store-link)
9744 (org-store-link nil)))))))
9746 ((eq major-mode 'calendar-mode)
9747 (let ((cd (calendar-cursor-to-date)))
9748 (setq link
9749 (format-time-string
9750 (car org-time-stamp-formats)
9751 (apply 'encode-time
9752 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9753 nil nil nil))))
9754 (org-store-link-props :type "calendar" :date cd)))
9756 ((eq major-mode 'help-mode)
9757 (setq link (concat "help:" (save-excursion
9758 (goto-char (point-min))
9759 (looking-at "^[^ ]+")
9760 (match-string 0))))
9761 (org-store-link-props :type "help"))
9763 ((eq major-mode 'w3-mode)
9764 (setq cpltxt (if (and (buffer-name)
9765 (not (string-match "Untitled" (buffer-name))))
9766 (buffer-name)
9767 (url-view-url t))
9768 link (url-view-url t))
9769 (org-store-link-props :type "w3" :url (url-view-url t)))
9771 ((eq major-mode 'image-mode)
9772 (setq cpltxt (concat "file:"
9773 (abbreviate-file-name buffer-file-name))
9774 link cpltxt)
9775 (org-store-link-props :type "image" :file buffer-file-name))
9777 ;; In dired, store a link to the file of the current line
9778 ((derived-mode-p 'dired-mode)
9779 (let ((file (dired-get-filename nil t)))
9780 (setq file (if file
9781 (abbreviate-file-name
9782 (expand-file-name (dired-get-filename nil t)))
9783 ;; otherwise, no file so use current directory.
9784 default-directory))
9785 (setq cpltxt (concat "file:" file)
9786 link cpltxt)))
9788 ((setq search (run-hook-with-args-until-success
9789 'org-create-file-search-functions))
9790 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9791 "::" search))
9792 (setq cpltxt (or description link)))
9794 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9795 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9796 (cond
9797 ;; Store a link using the target at point
9798 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9799 (setq cpltxt
9800 (concat "file:"
9801 (abbreviate-file-name
9802 (buffer-file-name (buffer-base-buffer)))
9803 "::" (match-string 1))
9804 link cpltxt))
9805 ((and (featurep 'org-id)
9806 (or (eq org-id-link-to-org-use-id t)
9807 (and (org-called-interactively-p 'any)
9808 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9809 (and (eq org-id-link-to-org-use-id
9810 'create-if-interactive-and-no-custom-id)
9811 (not custom-id))))
9812 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9813 ;; Store a link using the ID at point
9814 (setq link (condition-case nil
9815 (prog1 (org-id-store-link)
9816 (setq desc (or (plist-get org-store-link-plist
9817 :description)
9818 "")))
9819 (error
9820 ;; Probably before first headline, link only to file
9821 (concat "file:"
9822 (abbreviate-file-name
9823 (buffer-file-name (buffer-base-buffer))))))))
9825 ;; Just link to current headline
9826 (setq cpltxt (concat "file:"
9827 (abbreviate-file-name
9828 (buffer-file-name (buffer-base-buffer)))))
9829 ;; Add a context search string
9830 (when (org-xor org-context-in-file-links arg)
9831 (let* ((ee (org-element-at-point))
9832 (et (org-element-type ee))
9833 (ev (plist-get (cadr ee) :value))
9834 (ek (plist-get (cadr ee) :key))
9835 (eok (and (stringp ek) (string-match "name" ek))))
9836 (setq txt (cond
9837 ((org-at-heading-p) nil)
9838 ((and (eq et 'keyword) eok) ev)
9839 ((org-region-active-p)
9840 (buffer-substring (region-beginning) (region-end)))))
9841 (when (or (null txt) (string-match "\\S-" txt))
9842 (setq cpltxt
9843 (concat cpltxt "::"
9844 (condition-case nil
9845 (org-make-org-heading-search-string txt)
9846 (error "")))
9847 desc (or (and (eq et 'keyword) eok ev)
9848 (nth 4 (ignore-errors (org-heading-components)))
9849 "NONE")))))
9850 (if (string-match "::\\'" cpltxt)
9851 (setq cpltxt (substring cpltxt 0 -2)))
9852 (setq link cpltxt))))
9854 ((buffer-file-name (buffer-base-buffer))
9855 ;; Just link to this file here.
9856 (setq cpltxt (concat "file:"
9857 (abbreviate-file-name
9858 (buffer-file-name (buffer-base-buffer)))))
9859 ;; Add a context string.
9860 (when (org-xor org-context-in-file-links arg)
9861 (setq txt (if (org-region-active-p)
9862 (buffer-substring (region-beginning) (region-end))
9863 (buffer-substring (point-at-bol) (point-at-eol))))
9864 ;; Only use search option if there is some text.
9865 (when (string-match "\\S-" txt)
9866 (setq cpltxt
9867 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9868 desc "NONE")))
9869 (setq link cpltxt))
9871 ((org-called-interactively-p 'interactive)
9872 (user-error "No method for storing a link from this buffer"))
9874 (t (setq link nil)))
9876 ;; We're done setting link and desc, clean up
9877 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9878 (setq link (or link cpltxt)
9879 desc (or desc cpltxt))
9880 (cond ((equal desc "NONE") (setq desc nil))
9881 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9882 (let ((d0 (match-string 3 desc))
9883 (p0 (match-string 5 desc)))
9884 (setq desc
9885 (replace-regexp-in-string
9886 org-bracket-link-regexp
9887 (concat (or p0 d0)
9888 (if (equal (length (match-string 0 desc))
9889 (length desc)) "*" "")) desc)))))
9891 ;; Return the link
9892 (if (not (and (or (org-called-interactively-p 'any)
9893 executing-kbd-macro) link))
9894 (or agenda-link (and link (org-make-link-string link desc)))
9895 (push (list link desc) org-stored-links)
9896 (message "Stored: %s" (or desc link))
9897 (when custom-id
9898 (setq link (concat "file:" (abbreviate-file-name
9899 (buffer-file-name)) "::#" custom-id))
9900 (push (list link desc) org-stored-links))
9901 (car org-stored-links))))))
9903 (defun org-store-link-props (&rest plist)
9904 "Store link properties, extract names and addresses."
9905 (let (x adr)
9906 (when (setq x (plist-get plist :from))
9907 (setq adr (mail-extract-address-components x))
9908 (setq plist (plist-put plist :fromname (car adr)))
9909 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9910 (when (setq x (plist-get plist :to))
9911 (setq adr (mail-extract-address-components x))
9912 (setq plist (plist-put plist :toname (car adr)))
9913 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9914 (let ((from (plist-get plist :from))
9915 (to (plist-get plist :to)))
9916 (when (and from to org-from-is-user-regexp)
9917 (setq plist
9918 (plist-put plist :fromto
9919 (if (string-match org-from-is-user-regexp from)
9920 (concat "to %t")
9921 (concat "from %f"))))))
9922 (setq org-store-link-plist plist))
9924 (defun org-add-link-props (&rest plist)
9925 "Add these properties to the link property list."
9926 (let (key value)
9927 (while plist
9928 (setq key (pop plist) value (pop plist))
9929 (setq org-store-link-plist
9930 (plist-put org-store-link-plist key value)))))
9932 (defun org-email-link-description (&optional fmt)
9933 "Return the description part of an email link.
9934 This takes information from `org-store-link-plist' and formats it
9935 according to FMT (default from `org-email-link-description-format')."
9936 (setq fmt (or fmt org-email-link-description-format))
9937 (let* ((p org-store-link-plist)
9938 (to (plist-get p :toaddress))
9939 (from (plist-get p :fromaddress))
9940 (table
9941 (list
9942 (cons "%c" (plist-get p :fromto))
9943 (cons "%F" (plist-get p :from))
9944 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9945 (cons "%T" (plist-get p :to))
9946 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9947 (cons "%s" (plist-get p :subject))
9948 (cons "%d" (plist-get p :date))
9949 (cons "%m" (plist-get p :message-id)))))
9950 (when (string-match "%c" fmt)
9951 ;; Check if the user wrote this message
9952 (if (and org-from-is-user-regexp from to
9953 (save-match-data (string-match org-from-is-user-regexp from)))
9954 (setq fmt (replace-match "to %t" t t fmt))
9955 (setq fmt (replace-match "from %f" t t fmt))))
9956 (org-replace-escapes fmt table)))
9958 (defun org-make-org-heading-search-string (&optional string)
9959 "Make search string for the current headline or STRING."
9960 (let ((s (or string
9961 (and (derived-mode-p 'org-mode)
9962 (save-excursion
9963 (org-back-to-heading t)
9964 (org-element-property :raw-value (org-element-at-point))))))
9965 (lines org-context-in-file-links))
9966 (or string (setq s (concat "*" s))) ; Add * for headlines
9967 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9968 (when (and string (integerp lines) (> lines 0))
9969 (let ((slines (org-split-string s "\n")))
9970 (when (< lines (length slines))
9971 (setq s (mapconcat
9972 'identity
9973 (reverse (nthcdr (- (length slines) lines)
9974 (reverse slines))) "\n")))))
9975 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9977 (defun org-make-link-string (link &optional description)
9978 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9979 (unless (string-match "\\S-" link)
9980 (error "Empty link"))
9981 (when (and description
9982 (stringp description)
9983 (not (string-match "\\S-" description)))
9984 (setq description nil))
9985 (when (stringp description)
9986 ;; Remove brackets from the description, they are fatal.
9987 (while (string-match "\\[" description)
9988 (setq description (replace-match "{" t t description)))
9989 (while (string-match "\\]" description)
9990 (setq description (replace-match "}" t t description))))
9991 (when (equal link description)
9992 ;; No description needed, it is identical
9993 (setq description nil))
9994 (when (and (not description)
9995 (not (string-match (org-image-file-name-regexp) link))
9996 (not (equal link (org-link-escape link))))
9997 (setq description (org-extract-attributes link)))
9998 (setq link
9999 (cond ((string-match (org-image-file-name-regexp) link) link)
10000 ((string-match org-link-types-re link)
10001 (concat (match-string 1 link)
10002 (org-link-escape (substring link (match-end 1)))))
10003 (t (org-link-escape link))))
10004 (concat "[[" link "]"
10005 (if description (concat "[" description "]") "")
10006 "]"))
10008 (defconst org-link-escape-chars
10009 ;;%20 %5B %5D
10010 '(?\ ?\[ ?\])
10011 "List of characters that should be escaped in a link when stored to Org.
10012 This is the list that is used for internal purposes.")
10014 (defconst org-link-escape-chars-browser
10015 ;;%20 %22
10016 '(?\ ?\")
10017 "List of characters to be escaped before handing over to the browser.
10018 If you consider using this constant then you probably want to use
10019 the function `org-link-escape-browser' instead. See there why
10020 this constant is a candidate to be removed once Org drops support
10021 for Emacs 24.1 and 24.2.")
10023 (defun org-link-escape (text &optional table merge)
10024 "Return percent escaped representation of TEXT.
10025 TEXT is a string with the text to escape.
10026 Optional argument TABLE is a list with characters that should be
10027 escaped. When nil, `org-link-escape-chars' is used.
10028 If optional argument MERGE is set, merge TABLE into
10029 `org-link-escape-chars'."
10030 ;; Don't escape chars in internal links
10031 (if (string-match "^\\*[[:alnum:]]+" text)
10032 text
10033 (cond
10034 ((and table merge)
10035 (mapc (lambda (defchr)
10036 (unless (member defchr table)
10037 (setq table (cons defchr table))))
10038 org-link-escape-chars))
10039 ((null table)
10040 (setq table org-link-escape-chars)))
10041 (mapconcat
10042 (lambda (char)
10043 (if (or (member char table)
10044 (and (or (< char 32) (= char ?\%) (> char 126))
10045 org-url-hexify-p))
10046 (mapconcat (lambda (sequence-element)
10047 (format "%%%.2X" sequence-element))
10048 (or (encode-coding-char char 'utf-8)
10049 (error "Unable to percent escape character: %s"
10050 (char-to-string char))) "")
10051 (char-to-string char))) text "")))
10053 (defun org-link-escape-browser (text)
10054 "Escape some characters before handing over to the browser.
10055 This function is a candidate to be removed together with the
10056 constant `org-link-escape-chars-browser' once Org drops support
10057 for Emacs 24.1 and 24.2. All calls to this function will have to
10058 be replaced with `url-encode-url' which is available since Emacs
10059 24.3.1."
10060 ;; Example with the Org link
10061 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10062 ;; to open the browser with +subject:"Release 8.2" filled into the
10063 ;; query field: In this case the variable TEXT contains the
10064 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10065 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10066 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10067 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10068 (if (fboundp 'url-encode-url)
10069 (url-encode-url text)
10070 (if (org-string-match-p
10071 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10072 text)
10073 (org-link-escape text org-link-escape-chars-browser)
10074 text)))
10076 (defun org-link-unescape (str)
10077 "Unhex hexified Unicode strings as returned from the JavaScript function
10078 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10079 (unless (and (null str) (string= "" str))
10080 (let ((pos 0) (case-fold-search t) unhexed)
10081 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10082 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10083 (setq str (replace-match unhexed t t str))
10084 (setq pos (+ pos (length unhexed))))))
10085 str)
10087 (defun org-link-unescape-compound (hex)
10088 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10089 Note: this function also decodes single byte encodings like
10090 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10091 (save-match-data
10092 (let* ((bytes (cdr (split-string hex "%")))
10093 (ret "")
10094 (eat 0)
10095 (sum 0))
10096 (while bytes
10097 (let* ((val (string-to-number (pop bytes) 16))
10098 (shift-xor
10099 (if (= 0 eat)
10100 (cond
10101 ((>= val 252) (cons 6 252))
10102 ((>= val 248) (cons 5 248))
10103 ((>= val 240) (cons 4 240))
10104 ((>= val 224) (cons 3 224))
10105 ((>= val 192) (cons 2 192))
10106 (t (cons 0 0)))
10107 (cons 6 128))))
10108 (if (>= val 192) (setq eat (car shift-xor)))
10109 (setq val (logxor val (cdr shift-xor)))
10110 (setq sum (+ (lsh sum (car shift-xor)) val))
10111 (if (> eat 0) (setq eat (- eat 1)))
10112 (cond
10113 ((= 0 eat) ;multi byte
10114 (setq ret (concat ret (org-char-to-string sum)))
10115 (setq sum 0))
10116 ((not bytes) ; single byte(s)
10117 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10118 ret)))
10120 (defun org-link-unescape-single-byte-sequence (hex)
10121 "Unhexify hex-encoded single byte character sequences."
10122 (mapconcat (lambda (byte)
10123 (char-to-string (string-to-number byte 16)))
10124 (cdr (split-string hex "%")) ""))
10126 (defun org-xor (a b)
10127 "Exclusive or."
10128 (if a (not b) b))
10130 (defun org-fixup-message-id-for-http (s)
10131 "Replace special characters in a message id, so it can be used in an http query."
10132 (when (string-match "%" s)
10133 (setq s (mapconcat (lambda (c)
10134 (if (eq c ?%)
10135 "%25"
10136 (char-to-string c)))
10137 s "")))
10138 (while (string-match "<" s)
10139 (setq s (replace-match "%3C" t t s)))
10140 (while (string-match ">" s)
10141 (setq s (replace-match "%3E" t t s)))
10142 (while (string-match "@" s)
10143 (setq s (replace-match "%40" t t s)))
10146 (defun org-link-prettify (link)
10147 "Return a human-readable representation of LINK.
10148 The car of LINK must be a raw link.
10149 The cdr of LINK must be either a link description or nil."
10150 (let ((desc (or (cadr link) "<no description>")))
10151 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10152 "<" (car link) ">")))
10154 ;;;###autoload
10155 (defun org-insert-link-global ()
10156 "Insert a link like Org-mode does.
10157 This command can be called in any mode to insert a link in Org-mode syntax."
10158 (interactive)
10159 (org-load-modules-maybe)
10160 (org-run-like-in-org-mode 'org-insert-link))
10162 (defun org-insert-all-links (arg &optional pre post)
10163 "Insert all links in `org-stored-links'.
10164 When a universal prefix, do not delete the links from `org-stored-links'.
10165 When `ARG' is a number, insert the last N link(s).
10166 `PRE' and `POST' are optional arguments to define a string to
10167 prepend or to append."
10168 (interactive "P")
10169 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10170 (links (copy-seq org-stored-links))
10171 (pr (or pre "- "))
10172 (po (or post "\n"))
10173 (cnt 1) l)
10174 (if (null org-stored-links)
10175 (message "No link to insert")
10176 (while (and (or (listp arg) (>= arg cnt))
10177 (setq l (if (listp arg)
10178 (pop links)
10179 (pop org-stored-links))))
10180 (setq cnt (1+ cnt))
10181 (insert pr)
10182 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10183 (insert po)))))
10185 (defun org-insert-last-stored-link (arg)
10186 "Insert the last link stored in `org-stored-links'."
10187 (interactive "p")
10188 (org-insert-all-links arg "" "\n"))
10190 (defun org-link-fontify-links-to-this-file ()
10191 "Fontify links to the current file in `org-stored-links'."
10192 (let ((f (buffer-file-name)) a b)
10193 (setq a (mapcar (lambda(l)
10194 (let ((ll (car l)))
10195 (when (and (string-match "^file:\\(.+\\)::" ll)
10196 (equal f (expand-file-name (match-string 1 ll))))
10197 ll)))
10198 org-stored-links))
10199 (when (featurep 'org-id)
10200 (setq b (mapcar (lambda(l)
10201 (let ((ll (car l)))
10202 (when (and (string-match "^id:\\(.+\\)$" ll)
10203 (equal f (expand-file-name
10204 (or (org-id-find-id-file
10205 (match-string 1 ll)) ""))))
10206 ll)))
10207 org-stored-links)))
10208 (mapcar (lambda(l)
10209 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10210 (delq nil (append a b)))))
10212 (defvar org-link-links-in-this-file nil)
10213 (defun org-insert-link (&optional complete-file link-location default-description)
10214 "Insert a link. At the prompt, enter the link.
10216 Completion can be used to insert any of the link protocol prefixes like
10217 http or ftp in use.
10219 The history can be used to select a link previously stored with
10220 `org-store-link'. When the empty string is entered (i.e. if you just
10221 press RET at the prompt), the link defaults to the most recently
10222 stored link. As SPC triggers completion in the minibuffer, you need to
10223 use M-SPC or C-q SPC to force the insertion of a space character.
10225 You will also be prompted for a description, and if one is given, it will
10226 be displayed in the buffer instead of the link.
10228 If there is already a link at point, this command will allow you to edit link
10229 and description parts.
10231 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10232 be selected using completion. The path to the file will be relative to the
10233 current directory if the file is in the current directory or a subdirectory.
10234 Otherwise, the link will be the absolute path as completed in the minibuffer
10235 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10236 option `org-link-file-path-type'.
10238 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10239 the current directory or below.
10241 With three \\[universal-argument] prefixes, negate the meaning of
10242 `org-keep-stored-link-after-insertion'.
10244 If `org-make-link-description-function' is non-nil, this function will be
10245 called with the link target, and the result will be the default
10246 link description.
10248 If the LINK-LOCATION parameter is non-nil, this value will be
10249 used as the link location instead of reading one interactively.
10251 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10252 be used as the default description."
10253 (interactive "P")
10254 (let* ((wcf (current-window-configuration))
10255 (origbuf (current-buffer))
10256 (region (if (org-region-active-p)
10257 (buffer-substring (region-beginning) (region-end))))
10258 (remove (and region (list (region-beginning) (region-end))))
10259 (desc region)
10260 tmphist ; byte-compile incorrectly complains about this
10261 (link link-location)
10262 (abbrevs org-link-abbrev-alist-local)
10263 entry file all-prefixes auto-desc)
10264 (cond
10265 (link-location) ; specified by arg, just use it.
10266 ((org-in-regexp org-bracket-link-regexp 1)
10267 ;; We do have a link at point, and we are going to edit it.
10268 (setq remove (list (match-beginning 0) (match-end 0)))
10269 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10270 (setq link (read-string "Link: "
10271 (org-link-unescape
10272 (org-match-string-no-properties 1)))))
10273 ((or (org-in-regexp org-angle-link-re)
10274 (org-in-regexp org-plain-link-re))
10275 ;; Convert to bracket link
10276 (setq remove (list (match-beginning 0) (match-end 0))
10277 link (read-string "Link: "
10278 (org-remove-angle-brackets (match-string 0)))))
10279 ((member complete-file '((4) (16)))
10280 ;; Completing read for file names.
10281 (setq link (org-file-complete-link complete-file)))
10283 ;; Read link, with completion for stored links.
10284 (org-link-fontify-links-to-this-file)
10285 (org-switch-to-buffer-other-window "*Org Links*")
10286 (with-current-buffer "*Org Links*"
10287 (erase-buffer)
10288 (insert "Insert a link.
10289 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10290 (when org-stored-links
10291 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10292 (insert (mapconcat 'org-link-prettify
10293 (reverse org-stored-links) "\n")))
10294 (goto-char (point-min)))
10295 (let ((cw (selected-window)))
10296 (select-window (get-buffer-window "*Org Links*" 'visible))
10297 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10298 (unless (pos-visible-in-window-p (point-max))
10299 (org-fit-window-to-buffer))
10300 (and (window-live-p cw) (select-window cw)))
10301 ;; Fake a link history, containing the stored links.
10302 (setq tmphist (append (mapcar 'car org-stored-links)
10303 org-insert-link-history))
10304 (setq all-prefixes (append (mapcar 'car abbrevs)
10305 (mapcar 'car org-link-abbrev-alist)
10306 org-link-types))
10307 (unwind-protect
10308 (progn
10309 (setq link
10310 (org-completing-read
10311 "Link: "
10312 (append
10313 (mapcar (lambda (x) (concat x ":"))
10314 all-prefixes)
10315 (mapcar 'car org-stored-links))
10316 nil nil nil
10317 'tmphist
10318 (caar org-stored-links)))
10319 (if (not (string-match "\\S-" link))
10320 (user-error "No link selected"))
10321 (mapc (lambda(l)
10322 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10323 org-stored-links)
10324 (if (or (member link all-prefixes)
10325 (and (equal ":" (substring link -1))
10326 (member (substring link 0 -1) all-prefixes)
10327 (setq link (substring link 0 -1))))
10328 (setq link (with-current-buffer origbuf
10329 (org-link-try-special-completion link)))))
10330 (set-window-configuration wcf)
10331 (kill-buffer "*Org Links*"))
10332 (setq entry (assoc link org-stored-links))
10333 (or entry (push link org-insert-link-history))
10334 (setq desc (or desc (nth 1 entry)))))
10336 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10337 (not org-keep-stored-link-after-insertion))
10338 (setq org-stored-links (delq (assoc link org-stored-links)
10339 org-stored-links)))
10341 (if (and (string-match org-plain-link-re link)
10342 (not (string-match org-ts-regexp link)))
10343 ;; URL-like link, normalize the use of angular brackets.
10344 (setq link (org-remove-angle-brackets link)))
10346 ;; Check if we are linking to the current file with a search
10347 ;; option If yes, simplify the link by using only the search
10348 ;; option.
10349 (when (and buffer-file-name
10350 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10351 (let* ((path (match-string 1 link))
10352 (case-fold-search nil)
10353 (search (match-string 2 link)))
10354 (save-match-data
10355 (if (equal (file-truename buffer-file-name) (file-truename path))
10356 ;; We are linking to this same file, with a search option
10357 (setq link search)))))
10359 ;; Check if we can/should use a relative path. If yes, simplify the link
10360 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10361 (let* ((type (match-string 1 link))
10362 (path (match-string 2 link))
10363 (origpath path)
10364 (case-fold-search nil))
10365 (cond
10366 ((or (eq org-link-file-path-type 'absolute)
10367 (equal complete-file '(16)))
10368 (setq path (abbreviate-file-name (expand-file-name path))))
10369 ((eq org-link-file-path-type 'noabbrev)
10370 (setq path (expand-file-name path)))
10371 ((eq org-link-file-path-type 'relative)
10372 (setq path (file-relative-name path)))
10374 (save-match-data
10375 (if (string-match (concat "^" (regexp-quote
10376 (expand-file-name
10377 (file-name-as-directory
10378 default-directory))))
10379 (expand-file-name path))
10380 ;; We are linking a file with relative path name.
10381 (setq path (substring (expand-file-name path)
10382 (match-end 0)))
10383 (setq path (abbreviate-file-name (expand-file-name path)))))))
10384 (setq link (concat type path))
10385 (if (equal desc origpath)
10386 (setq desc path))))
10388 (if org-make-link-description-function
10389 (setq desc
10390 (or (condition-case nil
10391 (funcall org-make-link-description-function link desc)
10392 (error (progn (message "Can't get link description from `%s'"
10393 (symbol-name org-make-link-description-function))
10394 (sit-for 2) nil)))
10395 (read-string "Description: " default-description)))
10396 (if default-description (setq desc default-description)
10397 (setq desc (or (and auto-desc desc)
10398 (read-string "Description: " desc)))))
10400 (unless (string-match "\\S-" desc) (setq desc nil))
10401 (if remove (apply 'delete-region remove))
10402 (insert (org-make-link-string link desc))))
10404 (defun org-link-try-special-completion (type)
10405 "If there is completion support for link type TYPE, offer it."
10406 (let ((fun (intern (concat "org-" type "-complete-link"))))
10407 (if (functionp fun)
10408 (funcall fun)
10409 (read-string "Link (no completion support): " (concat type ":")))))
10411 (defun org-file-complete-link (&optional arg)
10412 "Create a file link using completion."
10413 (let (file link)
10414 (setq file (org-iread-file-name "File: "))
10415 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10416 (pwd1 (file-name-as-directory (abbreviate-file-name
10417 (expand-file-name ".")))))
10418 (cond
10419 ((equal arg '(16))
10420 (setq link (concat
10421 "file:"
10422 (abbreviate-file-name (expand-file-name file)))))
10423 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10424 (setq link (concat "file:" (match-string 1 file))))
10425 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10426 (expand-file-name file))
10427 (setq link (concat
10428 "file:" (match-string 1 (expand-file-name file)))))
10429 (t (setq link (concat "file:" file)))))
10430 link))
10432 (defun org-iread-file-name (&rest args)
10433 "Read-file-name using `ido-mode' speedup if available.
10434 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10435 See `read-file-name' for a description of parameters."
10436 (org-without-partial-completion
10437 (if (and org-completion-use-ido
10438 (fboundp 'ido-read-file-name)
10439 (boundp 'ido-mode) ido-mode
10440 (listp (second args)))
10441 (let ((ido-enter-matching-directory nil))
10442 (apply 'ido-read-file-name args))
10443 (apply 'read-file-name args))))
10445 (defun org-completing-read (&rest args)
10446 "Completing-read with SPACE being a normal character."
10447 (let ((enable-recursive-minibuffers t)
10448 (minibuffer-local-completion-map
10449 (copy-keymap minibuffer-local-completion-map)))
10450 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10451 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10452 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10453 (apply 'org-icompleting-read args)))
10455 (defun org-completing-read-no-i (&rest args)
10456 (let (org-completion-use-ido org-completion-use-iswitchb)
10457 (apply 'org-completing-read args)))
10459 (defun org-iswitchb-completing-read (prompt choices &rest args)
10460 "Use iswitch as a completing-read replacement to choose from choices.
10461 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10462 from."
10463 (let* ((iswitchb-use-virtual-buffers nil)
10464 (iswitchb-make-buflist-hook
10465 (lambda ()
10466 (setq iswitchb-temp-buflist choices))))
10467 (iswitchb-read-buffer prompt)))
10469 (defun org-icompleting-read (&rest args)
10470 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10471 (org-without-partial-completion
10472 (if (and org-completion-use-ido
10473 (fboundp 'ido-completing-read)
10474 (boundp 'ido-mode) ido-mode
10475 (listp (second args)))
10476 (let ((ido-enter-matching-directory nil))
10477 (apply 'ido-completing-read (concat (car args))
10478 (if (consp (car (nth 1 args)))
10479 (mapcar 'car (nth 1 args))
10480 (nth 1 args))
10481 (cddr args)))
10482 (if (and org-completion-use-iswitchb
10483 (boundp 'iswitchb-mode) iswitchb-mode
10484 (listp (second args)))
10485 (apply 'org-iswitchb-completing-read (concat (car args))
10486 (if (consp (car (nth 1 args)))
10487 (mapcar 'car (nth 1 args))
10488 (nth 1 args))
10489 (cddr args))
10490 (apply 'completing-read args)))))
10492 (defun org-extract-attributes (s)
10493 "Extract the attributes cookie from a string and set as text property."
10494 (let (a attr (start 0) key value)
10495 (save-match-data
10496 (when (string-match "{{\\([^}]+\\)}}$" s)
10497 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10498 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10499 (setq key (match-string 1 a) value (match-string 2 a)
10500 start (match-end 0)
10501 attr (plist-put attr (intern key) value))))
10502 (org-add-props s nil 'org-attr attr))
10505 ;;; Opening/following a link
10507 (defvar org-link-search-failed nil)
10509 (defvar org-open-link-functions nil
10510 "Hook for functions finding a plain text link.
10511 These functions must take a single argument, the link content.
10512 They will be called for links that look like [[link text][description]]
10513 when LINK TEXT does not have a protocol like \"http:\" and does not look
10514 like a filename (e.g. \"./blue.png\").
10516 These functions will be called *before* Org attempts to resolve the
10517 link by doing text searches in the current buffer - so if you want a
10518 link \"[[target]]\" to still find \"<<target>>\", your function should
10519 handle this as a special case.
10521 When the function does handle the link, it must return a non-nil value.
10522 If it decides that it is not responsible for this link, it must return
10523 nil to indicate that that Org-mode can continue with other options
10524 like exact and fuzzy text search.")
10526 (defun org-next-link (&optional search-backward)
10527 "Move forward to the next link.
10528 If the link is in hidden text, expose it."
10529 (interactive "P")
10530 (when (and org-link-search-failed (eq this-command last-command))
10531 (goto-char (point-min))
10532 (message "Link search wrapped back to beginning of buffer"))
10533 (setq org-link-search-failed nil)
10534 (let* ((pos (point))
10535 (ct (org-context))
10536 (a (assoc :link ct))
10537 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10538 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10539 ((looking-at org-any-link-re)
10540 ;; Don't stay stuck at link without an org-link face
10541 (forward-char (if search-backward -1 1))))
10542 (if (funcall srch-fun org-any-link-re nil t)
10543 (progn
10544 (goto-char (match-beginning 0))
10545 (if (outline-invisible-p) (org-show-context)))
10546 (goto-char pos)
10547 (setq org-link-search-failed t)
10548 (message "No further link found"))))
10550 (defun org-previous-link ()
10551 "Move backward to the previous link.
10552 If the link is in hidden text, expose it."
10553 (interactive)
10554 (funcall 'org-next-link t))
10556 (defun org-translate-link (s)
10557 "Translate a link string if a translation function has been defined."
10558 (if (and org-link-translation-function
10559 (fboundp org-link-translation-function)
10560 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10561 (progn
10562 (setq s (funcall org-link-translation-function
10563 (match-string 1 s) (match-string 2 s)))
10564 (concat (car s) ":" (cdr s)))
10567 (defun org-translate-link-from-planner (type path)
10568 "Translate a link from Emacs Planner syntax so that Org can follow it.
10569 This is still an experimental function, your mileage may vary."
10570 (cond
10571 ((member type '("http" "https" "news" "ftp"))
10572 ;; standard Internet links are the same.
10573 nil)
10574 ((and (equal type "irc") (string-match "^//" path))
10575 ;; Planner has two / at the beginning of an irc link, we have 1.
10576 ;; We should have zero, actually....
10577 (setq path (substring path 1)))
10578 ((and (equal type "lisp") (string-match "^/" path))
10579 ;; Planner has a slash, we do not.
10580 (setq type "elisp" path (substring path 1)))
10581 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10582 ;; A typical message link. Planner has the id after the final slash,
10583 ;; we separate it with a hash mark
10584 (setq path (concat (match-string 1 path) "#"
10585 (org-remove-angle-brackets (match-string 2 path))))))
10586 (cons type path))
10588 (defun org-find-file-at-mouse (ev)
10589 "Open file link or URL at mouse."
10590 (interactive "e")
10591 (mouse-set-point ev)
10592 (org-open-at-point 'in-emacs))
10594 (defun org-open-at-mouse (ev)
10595 "Open file link or URL at mouse.
10596 See the docstring of `org-open-file' for details."
10597 (interactive "e")
10598 (mouse-set-point ev)
10599 (if (eq major-mode 'org-agenda-mode)
10600 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10601 (org-open-at-point))
10603 (defvar org-window-config-before-follow-link nil
10604 "The window configuration before following a link.
10605 This is saved in case the need arises to restore it.")
10607 (defvar org-open-link-marker (make-marker)
10608 "Marker pointing to the location where `org-open-at-point' was called.")
10610 ;;;###autoload
10611 (defun org-open-at-point-global ()
10612 "Follow a link like Org-mode does.
10613 This command can be called in any mode to follow a link that has
10614 Org-mode syntax."
10615 (interactive)
10616 (org-run-like-in-org-mode 'org-open-at-point))
10618 ;;;###autoload
10619 (defun org-open-link-from-string (s &optional arg reference-buffer)
10620 "Open a link in the string S, as if it was in Org-mode."
10621 (interactive "sLink: \nP")
10622 (let ((reference-buffer (or reference-buffer (current-buffer))))
10623 (with-temp-buffer
10624 (let ((org-inhibit-startup (not reference-buffer)))
10625 (org-mode)
10626 (insert s)
10627 (goto-char (point-min))
10628 (when reference-buffer
10629 (setq org-link-abbrev-alist-local
10630 (with-current-buffer reference-buffer
10631 org-link-abbrev-alist-local)))
10632 (org-open-at-point arg reference-buffer)))))
10634 (defvar org-open-at-point-functions nil
10635 "Hook that is run when following a link at point.
10637 Functions in this hook must return t if they identify and follow
10638 a link at point. If they don't find anything interesting at point,
10639 they must return nil.")
10641 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10642 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10643 (defun org-open-at-point (&optional arg reference-buffer)
10644 "Open link, timestamp, footnote or tags at point.
10646 When point is on a link, follow it. Normally, files will be
10647 opened by an appropriate application. If the optional prefix
10648 argument ARG is non-nil, Emacs will visit the file. With
10649 a double prefix argument, try to open outside of Emacs, in the
10650 application the system uses for this file type.
10652 When point is on a timestamp, open the agenda at the day
10653 specified.
10655 When point is a footnote definition, move to the first reference
10656 found. If it is on a reference, move to the associated
10657 definition.
10659 When point is on a headline, display a list of every link in the
10660 entry, so it is possible to pick one, or all, of them. If point
10661 is on a tag, call `org-tags-view' instead.
10663 When optional argument REFERENCE-BUFFER is non-nil, it should
10664 specify a buffer from where the link search should happen. This
10665 is used internally by `org-open-link-from-string'.
10667 On top of syntactically correct links, this function will open
10668 the link at point in comments or comment blocks and the first
10669 link in a property drawer line."
10670 (interactive "P")
10671 ;; On a code block, open block's results.
10672 (unless (call-interactively 'org-babel-open-src-block-result)
10673 (org-load-modules-maybe)
10674 (move-marker org-open-link-marker (point))
10675 (setq org-window-config-before-follow-link (current-window-configuration))
10676 (org-remove-occur-highlights nil nil t)
10677 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10678 (let* ((context
10679 ;; Only consider supported types, even if they are not
10680 ;; the closest one.
10681 (org-element-lineage
10682 (org-element-context)
10683 '(comment comment-block footnote-definition footnote-reference
10684 headline inlinetask link node-property timestamp)
10686 (type (org-element-type context))
10687 (value (org-element-property :value context)))
10688 (cond
10689 ((not context) (user-error "No link found"))
10690 ;; Exception: open timestamps and links in properties drawers
10691 ;; and comments.
10692 ((memq type '(comment comment-block node-property))
10693 (cond ((org-in-regexp org-any-link-re)
10694 (org-open-link-from-string (match-string-no-properties 0)))
10695 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10696 (org-follow-timestamp-link))
10697 (t (user-error "No link found"))))
10698 ;; On a headline or an inlinetask, but not on a timestamp,
10699 ;; a link, a footnote reference or on tags.
10700 ((and (memq type '(headline inlinetask))
10701 ;; Not on tags.
10702 (progn (save-excursion (beginning-of-line)
10703 (looking-at org-complex-heading-regexp))
10704 (or (not (match-beginning 5))
10705 (< (point) (match-beginning 5)))))
10706 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10707 (links (car data))
10708 (links-end (cdr data)))
10709 (if links
10710 (dolist (link (if (stringp links) (list links) links))
10711 (search-forward link nil links-end)
10712 (goto-char (match-beginning 0))
10713 (org-open-at-point))
10714 (require 'org-attach)
10715 (org-attach-reveal 'if-exists))))
10716 ;; Do nothing on white spaces after an object, unless point
10717 ;; is right after it.
10718 ((> (point)
10719 (save-excursion
10720 (goto-char (org-element-property :end context))
10721 (skip-chars-backward " \t")
10722 (point)))
10723 (user-error "No link found"))
10724 ((eq type 'timestamp) (org-follow-timestamp-link))
10725 ;; On tags within a headline or an inlinetask.
10726 ((and (memq type '(headline inlinetask))
10727 (progn (save-excursion (beginning-of-line)
10728 (looking-at org-complex-heading-regexp))
10729 (and (match-beginning 5)
10730 (>= (point) (match-beginning 5)))))
10731 (org-tags-view arg (substring (match-string 5) 0 -1)))
10732 ((eq type 'link)
10733 ;; When link is located within the description of another
10734 ;; link (e.g., an inline image), always open the parent
10735 ;; link.
10736 (let*((link (let ((up (org-element-property :parent context)))
10737 (if (eq (org-element-type up) 'link) up context)))
10738 (type (org-element-property :type link))
10739 (path (org-link-unescape (org-element-property :path link))))
10740 ;; Switch back to REFERENCE-BUFFER needed when called in
10741 ;; a temporary buffer through `org-open-link-from-string'.
10742 (with-current-buffer (or reference-buffer (current-buffer))
10743 (cond
10744 ((equal type "file")
10745 (if (string-match "[*?{]" (file-name-nondirectory path))
10746 (dired path)
10747 ;; Look into `org-link-protocols' in order to find
10748 ;; a DEDICATED-FUNCTION to open file. The function
10749 ;; will be applied on raw link instead of parsed
10750 ;; link due to the limitation in `org-add-link-type'
10751 ;; ("open" function called with a single argument).
10752 ;; If no such function is found, fallback to
10753 ;; `org-open-file'.
10755 ;; Note : "file+emacs" and "file+sys" types are
10756 ;; hard-coded in order to escape the previous
10757 ;; limitation.
10758 (let* ((option (org-element-property :search-option link))
10759 (app (org-element-property :application link))
10760 (dedicated-function
10761 (nth 1 (assoc app org-link-protocols))))
10762 (if dedicated-function
10763 (funcall dedicated-function
10764 (concat path
10765 (and option (concat "::" option))))
10766 (apply 'org-open-file
10767 path
10768 (cond (arg)
10769 ((equal app "emacs") 'emacs)
10770 ((equal app "sys") 'system))
10771 (cond ((not option) nil)
10772 ((org-string-match-p "\\`[0-9]+\\'" option)
10773 (list (string-to-number option)))
10774 (t (list nil
10775 (org-link-unescape option)))))))))
10776 ((assoc type org-link-protocols)
10777 (funcall (nth 1 (assoc type org-link-protocols)) path))
10778 ((equal type "help")
10779 (let ((f-or-v (intern path)))
10780 (cond ((fboundp f-or-v) (describe-function f-or-v))
10781 ((boundp f-or-v) (describe-variable f-or-v))
10782 (t (error "Not a known function or variable")))))
10783 ((member type '("http" "https" "ftp" "mailto" "news"))
10784 (browse-url (org-link-escape-browser (concat type ":" path))))
10785 ((equal type "doi")
10786 (browse-url
10787 (org-link-escape-browser (concat org-doi-server-url path))))
10788 ((equal type "message") (browse-url (concat type ":" path)))
10789 ((equal type "shell")
10790 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10791 (cmd path))
10792 (if (or (and (org-string-nw-p
10793 org-confirm-shell-link-not-regexp)
10794 (string-match
10795 org-confirm-shell-link-not-regexp cmd))
10796 (not org-confirm-shell-link-function)
10797 (funcall org-confirm-shell-link-function
10798 (format "Execute \"%s\" in shell? "
10799 (org-add-props cmd nil
10800 'face 'org-warning))))
10801 (progn
10802 (message "Executing %s" cmd)
10803 (shell-command cmd buf)
10804 (when (featurep 'midnight)
10805 (setq clean-buffer-list-kill-buffer-names
10806 (cons buf
10807 clean-buffer-list-kill-buffer-names))))
10808 (user-error "Abort"))))
10809 ((equal type "elisp")
10810 (let ((cmd path))
10811 (if (or (and (org-string-nw-p
10812 org-confirm-elisp-link-not-regexp)
10813 (org-string-match-p
10814 org-confirm-elisp-link-not-regexp cmd))
10815 (not org-confirm-elisp-link-function)
10816 (funcall org-confirm-elisp-link-function
10817 (format "Execute \"%s\" as elisp? "
10818 (org-add-props cmd nil
10819 'face 'org-warning))))
10820 (message "%s => %s" cmd
10821 (if (eq (string-to-char cmd) ?\()
10822 (eval (read cmd))
10823 (call-interactively (read cmd))))
10824 (user-error "Abort"))))
10825 ((equal type "id")
10826 (require 'ord-id)
10827 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10828 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10829 (unless (run-hook-with-args-until-success
10830 'org-open-link-functions path)
10831 (if (not arg) (org-mark-ring-push)
10832 (switch-to-buffer-other-window
10833 (org-get-buffer-for-internal-link (current-buffer))))
10834 (let ((cmd `(org-link-search
10835 ,(if (member type '("custom-id" "coderef"))
10836 (org-element-property :raw-link link)
10837 path)
10838 ,(cond ((equal arg '(4)) 'occur)
10839 ((equal arg '(16)) 'org-occur))
10840 ,(org-element-property :begin link))))
10841 (condition-case nil
10842 (let ((org-link-search-inhibit-query t))
10843 (eval cmd))
10844 (error (progn (widen) (eval cmd)))))))
10845 (t (browse-url-at-point))))))
10846 ;; On a footnote reference or at a footnote definition's label.
10847 ((or (eq type 'footnote-reference)
10848 (and (eq type 'footnote-definition)
10849 (save-excursion
10850 ;; Do not validate action when point is on the
10851 ;; spaces right after the footnote label, in
10852 ;; order to be on par with behaviour on links.
10853 (skip-chars-forward " \t")
10854 (let ((begin
10855 (org-element-property :contents-begin context)))
10856 (if begin (< (point) begin)
10857 (= (org-element-property :post-affiliated context)
10858 (line-beginning-position)))))))
10859 (org-footnote-action))
10860 (t (user-error "No link found")))))
10861 (move-marker org-open-link-marker nil)
10862 (run-hook-with-args 'org-follow-link-hook)))
10864 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10865 "Offer links in the current entry and return the selected link.
10866 If there is only one link, return it.
10867 If NTH is an integer, return the NTH link found.
10868 If ZERO is a string, check also this string for a link, and if
10869 there is one, return it."
10870 (with-current-buffer buffer
10871 (save-excursion
10872 (save-restriction
10873 (widen)
10874 (goto-char marker)
10875 (let ((cnt ?0)
10876 (in-emacs (if (integerp nth) nil nth))
10877 have-zero end links link c)
10878 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10879 (push (match-string 0 zero) links)
10880 (setq cnt (1- cnt) have-zero t))
10881 (save-excursion
10882 (org-back-to-heading t)
10883 (setq end (save-excursion (outline-next-heading) (point)))
10884 (while (re-search-forward org-any-link-re end t)
10885 (push (match-string 0) links))
10886 (setq links (org-uniquify (reverse links))))
10887 (cond
10888 ((null links)
10889 (message "No links"))
10890 ((equal (length links) 1)
10891 (setq link (car links)))
10892 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10893 (setq link (nth (if have-zero nth (1- nth)) links)))
10894 (t ; we have to select a link
10895 (save-excursion
10896 (save-window-excursion
10897 (delete-other-windows)
10898 (with-output-to-temp-buffer "*Select Link*"
10899 (mapc (lambda (l)
10900 (if (not (string-match org-bracket-link-regexp l))
10901 (princ (format "[%c] %s\n" (incf cnt)
10902 (org-remove-angle-brackets l)))
10903 (if (match-end 3)
10904 (princ (format "[%c] %s (%s)\n" (incf cnt)
10905 (match-string 3 l) (match-string 1 l)))
10906 (princ (format "[%c] %s\n" (incf cnt)
10907 (match-string 1 l))))))
10908 links))
10909 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10910 (message "Select link to open, RET to open all:")
10911 (setq c (read-char-exclusive))
10912 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10913 (when (equal c ?q) (user-error "Abort"))
10914 (if (equal c ?\C-m)
10915 (setq link links)
10916 (setq nth (- c ?0))
10917 (if have-zero (setq nth (1+ nth)))
10918 (unless (and (integerp nth) (>= (length links) nth))
10919 (user-error "Invalid link selection"))
10920 (setq link (nth (1- nth) links)))))
10921 (cons link end))))))
10923 ;; TODO: These functions are deprecated since `org-open-at-point'
10924 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10925 (defun org-open-file-with-system (path)
10926 "Open file at PATH using the system way of opening it."
10927 (org-open-file path 'system))
10928 (defun org-open-file-with-emacs (path)
10929 "Open file at PATH in Emacs."
10930 (org-open-file path 'emacs))
10933 ;;; File search
10935 (defvar org-create-file-search-functions nil
10936 "List of functions to construct the right search string for a file link.
10937 These functions are called in turn with point at the location to
10938 which the link should point.
10940 A function in the hook should first test if it would like to
10941 handle this file type, for example by checking the `major-mode'
10942 or the file extension. If it decides not to handle this file, it
10943 should just return nil to give other functions a chance. If it
10944 does handle the file, it must return the search string to be used
10945 when following the link. The search string will be part of the
10946 file link, given after a double colon, and `org-open-at-point'
10947 will automatically search for it. If special measures must be
10948 taken to make the search successful, another function should be
10949 added to the companion hook `org-execute-file-search-functions',
10950 which see.
10952 A function in this hook may also use `setq' to set the variable
10953 `description' to provide a suggestion for the descriptive text to
10954 be used for this link when it gets inserted into an Org-mode
10955 buffer with \\[org-insert-link].")
10957 (defvar org-execute-file-search-functions nil
10958 "List of functions to execute a file search triggered by a link.
10960 Functions added to this hook must accept a single argument, the
10961 search string that was part of the file link, the part after the
10962 double colon. The function must first check if it would like to
10963 handle this search, for example by checking the `major-mode' or
10964 the file extension. If it decides not to handle this search, it
10965 should just return nil to give other functions a chance. If it
10966 does handle the search, it must return a non-nil value to keep
10967 other functions from trying.
10969 Each function can access the current prefix argument through the
10970 variable `current-prefix-arg'. Note that a single prefix is used
10971 to force opening a link in Emacs, so it may be good to only use a
10972 numeric or double prefix to guide the search function.
10974 In case this is needed, a function in this hook can also restore
10975 the window configuration before `org-open-at-point' was called using:
10977 (set-window-configuration org-window-config-before-follow-link)")
10979 (defun org-link-search (s &optional type avoid-pos stealth)
10980 "Search for a link search option.
10981 If S is surrounded by forward slashes, it is interpreted as a
10982 regular expression. In org-mode files, this will create an `org-occur'
10983 sparse tree. In ordinary files, `occur' will be used to list matches.
10984 If the current buffer is in `dired-mode', grep will be used to search
10985 in all files. If AVOID-POS is given, ignore matches near that position.
10987 When optional argument STEALTH is non-nil, do not modify
10988 visibility around point, thus ignoring `org-show-context-detail'
10989 variable."
10990 (let ((case-fold-search t)
10991 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10992 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10993 (append '(("") (" ") ("\t") ("\n"))
10994 org-emphasis-alist)
10995 "\\|") "\\)"))
10996 (pos (point))
10997 words re0 re2 re4_ re4 re5 re2a re2a_ reall)
10998 (cond
10999 ;; First check if there are any special search functions
11000 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11001 ;; Now try the builtin stuff
11002 ((and (eq (aref s0 0) ?#)
11003 (> (length s0) 1)
11004 (let ((match (org-find-property "CUSTOM_ID" (substring s0 1))))
11005 (and match (goto-char match) (setf type 'dedicated)))))
11006 ((save-excursion
11007 (goto-char (point-min))
11008 (and
11009 (re-search-forward
11010 (concat "<<" (regexp-quote s0) ">>") nil t)
11011 (setq type 'dedicated
11012 pos (match-beginning 0))))
11013 ;; There is an exact target for this
11014 (goto-char pos))
11015 ((save-excursion
11016 (goto-char (point-min))
11017 (and
11018 (re-search-forward
11019 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11020 (setq type 'dedicated pos (match-beginning 0))))
11021 ;; Found an element with a matching #+name affiliated keyword.
11022 (goto-char pos))
11023 ((and (string-match "^(\\(.*\\))$" s0)
11024 (save-excursion
11025 (goto-char (point-min))
11026 (and
11027 (re-search-forward
11028 (concat "[^[]" (regexp-quote
11029 (format org-coderef-label-format
11030 (match-string 1 s0))))
11031 nil t)
11032 (setq type 'dedicated
11033 pos (1+ (match-beginning 0))))))
11034 ;; There is a coderef target for this
11035 (goto-char pos))
11036 ((string-match "^/\\(.*\\)/$" s)
11037 ;; A regular expression
11038 (cond
11039 ((derived-mode-p 'org-mode)
11040 (org-occur (match-string 1 s)))
11041 (t (org-do-occur (match-string 1 s)))))
11042 ((and (derived-mode-p 'org-mode)
11043 (or (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11044 org-link-search-must-match-exact-headline))
11045 ;; Headline search.
11046 (goto-char (point-min))
11047 (cond
11048 ((let (case-fold-search)
11049 (re-search-forward
11050 (let* ((wspace "[ \t]")
11051 (wspaceopt (concat wspace "*"))
11052 (cookie (concat "\\(?:"
11053 wspaceopt
11054 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11055 wspaceopt
11056 "\\)"))
11057 (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)")))
11058 (concat
11059 org-outline-regexp-bol
11060 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11061 "\\(?:\\[#.\\][ \t]+\\)?"
11062 sep "*"
11063 (mapconcat #'identity
11064 (org-split-string (regexp-quote s))
11065 (concat sep "+"))
11066 sep "*"
11067 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11068 "[ \t]*$"))
11069 nil t))
11070 ;; OK, found a match
11071 (setq type 'dedicated)
11072 (goto-char (match-beginning 0)))
11073 ((and (not org-link-search-inhibit-query)
11074 (eq org-link-search-must-match-exact-headline 'query-to-create)
11075 (y-or-n-p "No match - create this as a new heading? "))
11076 (goto-char (point-max))
11077 (unless (bolp) (newline))
11078 (org-insert-heading nil t t)
11079 (insert s "\n")
11080 (beginning-of-line 0))
11082 (goto-char pos)
11083 (error "No match"))))
11085 ;; A normal search string
11086 (remove-text-properties
11087 0 (length s)
11088 '(face nil mouse-face nil keymap nil fontified nil) s)
11089 ;; Make a series of regular expressions to find a match
11090 (setq words (org-split-string s "[ \n\r\t]+")
11092 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11093 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11094 "\\)" markers)
11095 re2a_ (concat "\\(" (mapconcat 'downcase words
11096 "[ \t\r\n]+") "\\)[ \t\r\n]")
11097 re2a (concat "[ \t\r\n]" re2a_)
11098 re4_ (concat "\\(" (mapconcat 'downcase words
11099 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11100 re4 (concat "[^a-zA-Z_]" re4_)
11102 re5 (concat ".*" re4)
11103 reall (concat "\\(" re0 "\\)\\|\\(" re2 "\\)\\|\\(" re4
11104 "\\)\\|\\(" re5 "\\)"))
11105 (cond
11106 ((eq type 'org-occur) (org-occur reall))
11107 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11108 (t (goto-char (point-min))
11109 (setq type 'fuzzy)
11110 (if (or (and (org-search-not-self 1 re0 nil t)
11111 (setq type 'dedicated))
11112 (org-search-not-self 1 re2 nil t)
11113 (org-search-not-self 1 re2a nil t)
11114 (org-search-not-self 1 re4 nil t)
11115 (org-search-not-self 1 re5 nil t))
11116 (goto-char (match-beginning 1))
11117 (goto-char pos)
11118 (error "No match"))))))
11119 (and (derived-mode-p 'org-mode)
11120 (not stealth)
11121 (org-show-context 'link-search))
11122 type))
11124 (defun org-search-not-self (group &rest args)
11125 "Execute `re-search-forward', but only accept matches that do not
11126 enclose the position of `org-open-link-marker'."
11127 (let ((m org-open-link-marker))
11128 (catch 'exit
11129 (while (apply 're-search-forward args)
11130 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11131 (goto-char (match-end group))
11132 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11133 (> (match-beginning 0) (marker-position m))
11134 (< (match-end 0) (marker-position m)))
11135 (save-match-data
11136 (or (not (org-in-regexp
11137 org-bracket-link-analytic-regexp 1))
11138 (not (match-end 4)) ; no description
11139 (and (<= (match-beginning 4) (point))
11140 (>= (match-end 4) (point))))))
11141 (throw 'exit (point))))))))
11143 (defun org-get-buffer-for-internal-link (buffer)
11144 "Return a buffer to be used for displaying the link target of internal links."
11145 (cond
11146 ((not org-display-internal-link-with-indirect-buffer)
11147 buffer)
11148 ((string-match "(Clone)$" (buffer-name buffer))
11149 (message "Buffer is already a clone, not making another one")
11150 ;; we also do not modify visibility in this case
11151 buffer)
11152 (t ; make a new indirect buffer for displaying the link
11153 (let* ((bn (buffer-name buffer))
11154 (ibn (concat bn "(Clone)"))
11155 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11156 (with-current-buffer ib (org-overview))
11157 ib))))
11159 (defun org-do-occur (regexp &optional cleanup)
11160 "Call the Emacs command `occur'.
11161 If CLEANUP is non-nil, remove the printout of the regular expression
11162 in the *Occur* buffer. This is useful if the regex is long and not useful
11163 to read."
11164 (occur regexp)
11165 (when cleanup
11166 (let ((cwin (selected-window)) win beg end)
11167 (when (setq win (get-buffer-window "*Occur*"))
11168 (select-window win))
11169 (goto-char (point-min))
11170 (when (re-search-forward "match[a-z]+" nil t)
11171 (setq beg (match-end 0))
11172 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11173 (setq end (1- (match-beginning 0)))))
11174 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11175 (goto-char (point-min))
11176 (select-window cwin))))
11178 ;;; The mark ring for links jumps
11180 (defvar org-mark-ring nil
11181 "Mark ring for positions before jumps in Org-mode.")
11182 (defvar org-mark-ring-last-goto nil
11183 "Last position in the mark ring used to go back.")
11184 ;; Fill and close the ring
11185 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11186 (loop for i from 1 to org-mark-ring-length do
11187 (push (make-marker) org-mark-ring))
11188 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11189 org-mark-ring)
11191 (defun org-mark-ring-push (&optional pos buffer)
11192 "Put the current position or POS into the mark ring and rotate it."
11193 (interactive)
11194 (setq pos (or pos (point)))
11195 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11196 (move-marker (car org-mark-ring)
11197 (or pos (point))
11198 (or buffer (current-buffer)))
11199 (message "%s"
11200 (substitute-command-keys
11201 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11203 (defun org-mark-ring-goto (&optional n)
11204 "Jump to the previous position in the mark ring.
11205 With prefix arg N, jump back that many stored positions. When
11206 called several times in succession, walk through the entire ring.
11207 Org-mode commands jumping to a different position in the current file,
11208 or to another Org-mode file, automatically push the old position
11209 onto the ring."
11210 (interactive "p")
11211 (let (p m)
11212 (if (eq last-command this-command)
11213 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11214 (setq p org-mark-ring))
11215 (setq org-mark-ring-last-goto p)
11216 (setq m (car p))
11217 (org-pop-to-buffer-same-window (marker-buffer m))
11218 (goto-char m)
11219 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11221 (defun org-remove-angle-brackets (s)
11222 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11223 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11225 (defun org-add-angle-brackets (s)
11226 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11227 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11229 (defun org-remove-double-quotes (s)
11230 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11231 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11234 ;;; Following specific links
11236 (defun org-follow-timestamp-link ()
11237 "Open an agenda view for the time-stamp date/range at point."
11238 (cond
11239 ((org-at-date-range-p t)
11240 (let ((org-agenda-start-on-weekday)
11241 (t1 (match-string 1))
11242 (t2 (match-string 2)) tt1 tt2)
11243 (setq tt1 (time-to-days (org-time-string-to-time t1))
11244 tt2 (time-to-days (org-time-string-to-time t2)))
11245 (let ((org-agenda-buffer-tmp-name
11246 (format "*Org Agenda(a:%s)"
11247 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11248 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11249 ((org-at-timestamp-p t)
11250 (let ((org-agenda-buffer-tmp-name
11251 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11252 (org-agenda-list nil (time-to-days (org-time-string-to-time
11253 (substring (match-string 1) 0 10)))
11254 1)))
11255 (t (error "This should not happen"))))
11258 ;;; Following file links
11259 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11260 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11261 (declare-function mailcap-mime-info
11262 "mailcap" (string &optional request no-decode))
11263 (defvar org-wait nil)
11264 (defun org-open-file (path &optional in-emacs line search)
11265 "Open the file at PATH.
11266 First, this expands any special file name abbreviations. Then the
11267 configuration variable `org-file-apps' is checked if it contains an
11268 entry for this file type, and if yes, the corresponding command is launched.
11270 If no application is found, Emacs simply visits the file.
11272 With optional prefix argument IN-EMACS, Emacs will visit the file.
11273 With a double \\[universal-argument] \\[universal-argument] \
11274 prefix arg, Org tries to avoid opening in Emacs
11275 and to use an external application to visit the file.
11277 Optional LINE specifies a line to go to, optional SEARCH a string
11278 to search for. If LINE or SEARCH is given, the file will be
11279 opened in Emacs, unless an entry from org-file-apps that makes
11280 use of groups in a regexp matches.
11282 If you want to change the way frames are used when following a
11283 link, please customize `org-link-frame-setup'.
11285 If the file does not exist, an error is thrown."
11286 (let* ((file (if (equal path "")
11287 buffer-file-name
11288 (substitute-in-file-name (expand-file-name path))))
11289 (file-apps (append org-file-apps (org-default-apps)))
11290 (apps (org-remove-if
11291 'org-file-apps-entry-match-against-dlink-p file-apps))
11292 (apps-dlink (org-remove-if-not
11293 'org-file-apps-entry-match-against-dlink-p file-apps))
11294 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11295 (dirp (if remp nil (file-directory-p file)))
11296 (file (if (and dirp org-open-directory-means-index-dot-org)
11297 (concat (file-name-as-directory file) "index.org")
11298 file))
11299 (a-m-a-p (assq 'auto-mode apps))
11300 (dfile (downcase file))
11301 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11302 (link (cond ((and (eq line nil)
11303 (eq search nil))
11304 file)
11305 (line
11306 (concat file "::" (number-to-string line)))
11307 (search
11308 (concat file "::" search))))
11309 (dlink (downcase link))
11310 (old-buffer (current-buffer))
11311 (old-pos (point))
11312 (old-mode major-mode)
11313 ext cmd link-match-data)
11314 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11315 (setq ext (match-string 1 dfile))
11316 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11317 (setq ext (match-string 1 dfile))))
11318 (cond
11319 ((member in-emacs '((16) system))
11320 (setq cmd (cdr (assoc 'system apps))))
11321 (in-emacs (setq cmd 'emacs))
11323 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11324 (and dirp (cdr (assoc 'directory apps)))
11325 ; first, try matching against apps-dlink
11326 ; if we get a match here, store the match data for later
11327 (let ((match (assoc-default dlink apps-dlink
11328 'string-match)))
11329 (if match
11330 (progn (setq link-match-data (match-data))
11331 match)
11332 (progn (setq in-emacs (or in-emacs line search))
11333 nil))) ; if we have no match in apps-dlink,
11334 ; always open the file in emacs if line or search
11335 ; is given (for backwards compatibility)
11336 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11337 'string-match)
11338 (cdr (assoc ext apps))
11339 (cdr (assoc t apps))))))
11340 (when (eq cmd 'system)
11341 (setq cmd (cdr (assoc 'system apps))))
11342 (when (eq cmd 'default)
11343 (setq cmd (cdr (assoc t apps))))
11344 (when (eq cmd 'mailcap)
11345 (require 'mailcap)
11346 (mailcap-parse-mailcaps)
11347 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11348 (command (mailcap-mime-info mime-type)))
11349 (if (stringp command)
11350 (setq cmd command)
11351 (setq cmd 'emacs))))
11352 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11353 (not (file-exists-p file))
11354 (not org-open-non-existing-files))
11355 (user-error "No such file: %s" file))
11356 (cond
11357 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11358 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11359 (while (string-match "['\"]%s['\"]" cmd)
11360 (setq cmd (replace-match "%s" t t cmd)))
11361 (while (string-match "%s" cmd)
11362 (setq cmd (replace-match
11363 (save-match-data
11364 (shell-quote-argument
11365 (convert-standard-filename file)))
11366 t t cmd)))
11368 ;; Replace "%1", "%2" etc. in command with group matches from regex
11369 (save-match-data
11370 (let ((match-index 1)
11371 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11372 (set-match-data link-match-data)
11373 (while (<= match-index number-of-groups)
11374 (let ((regex (concat "%" (number-to-string match-index)))
11375 (replace-with (match-string match-index dlink)))
11376 (while (string-match regex cmd)
11377 (setq cmd (replace-match replace-with t t cmd))))
11378 (setq match-index (+ match-index 1)))))
11380 (save-window-excursion
11381 (message "Running %s...done" cmd)
11382 (start-process-shell-command cmd nil cmd)
11383 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11384 ((or (stringp cmd)
11385 (eq cmd 'emacs))
11386 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11387 (widen)
11388 (if line (progn (org-goto-line line)
11389 (if (derived-mode-p 'org-mode)
11390 (org-reveal)))
11391 (if search (org-link-search search))))
11392 ((consp cmd)
11393 (let ((file (convert-standard-filename file)))
11394 (save-match-data
11395 (set-match-data link-match-data)
11396 (eval cmd))))
11397 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11398 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11399 (or (not (equal old-buffer (current-buffer)))
11400 (not (equal old-pos (point))))
11401 (org-mark-ring-push old-pos old-buffer))))
11403 (defun org-file-apps-entry-match-against-dlink-p (entry)
11404 "This function returns non-nil if `entry' uses a regular
11405 expression which should be matched against the whole link by
11406 org-open-file.
11408 It assumes that is the case when the entry uses a regular
11409 expression which has at least one grouping construct and the
11410 action is either a lisp form or a command string containing
11411 '%1', i.e. using at least one subexpression match as a
11412 parameter."
11413 (let ((selector (car entry))
11414 (action (cdr entry)))
11415 (if (stringp selector)
11416 (and (> (regexp-opt-depth selector) 0)
11417 (or (and (stringp action)
11418 (string-match "%[0-9]" action))
11419 (consp action)))
11420 nil)))
11422 (defun org-default-apps ()
11423 "Return the default applications for this operating system."
11424 (cond
11425 ((eq system-type 'darwin)
11426 org-file-apps-defaults-macosx)
11427 ((eq system-type 'windows-nt)
11428 org-file-apps-defaults-windowsnt)
11429 (t org-file-apps-defaults-gnu)))
11431 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11432 "Convert extensions to regular expressions in the cars of LIST.
11433 Also, weed out any non-string entries, because the return value is used
11434 only for regexp matching.
11435 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11436 point to the symbol `emacs', indicating that the file should
11437 be opened in Emacs."
11438 (append
11439 (delq nil
11440 (mapcar (lambda (x)
11441 (if (not (stringp (car x)))
11443 (if (string-match "\\W" (car x))
11445 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11446 list))
11447 (if add-auto-mode
11448 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11450 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11451 (defun org-file-remote-p (file)
11452 "Test whether FILE specifies a location on a remote system.
11453 Return non-nil if the location is indeed remote.
11455 For example, the filename \"/user@host:/foo\" specifies a location
11456 on the system \"/user@host:\"."
11457 (cond ((fboundp 'file-remote-p)
11458 (file-remote-p file))
11459 ((fboundp 'tramp-handle-file-remote-p)
11460 (tramp-handle-file-remote-p file))
11461 ((and (boundp 'ange-ftp-name-format)
11462 (string-match (car ange-ftp-name-format) file))
11463 t)))
11466 ;;;; Refiling
11468 (defun org-get-org-file ()
11469 "Read a filename, with default directory `org-directory'."
11470 (let ((default (or org-default-notes-file remember-data-file)))
11471 (read-file-name (format "File name [%s]: " default)
11472 (file-name-as-directory org-directory)
11473 default)))
11475 (defun org-notes-order-reversed-p ()
11476 "Check if the current file should receive notes in reversed order."
11477 (cond
11478 ((not org-reverse-note-order) nil)
11479 ((eq t org-reverse-note-order) t)
11480 ((not (listp org-reverse-note-order)) nil)
11481 (t (catch 'exit
11482 (let ((all org-reverse-note-order)
11483 entry)
11484 (while (setq entry (pop all))
11485 (if (string-match (car entry) buffer-file-name)
11486 (throw 'exit (cdr entry))))
11487 nil)))))
11489 (defvar org-refile-target-table nil
11490 "The list of refile targets, created by `org-refile'.")
11492 (defvar org-agenda-new-buffers nil
11493 "Buffers created to visit agenda files.")
11495 (defvar org-refile-cache nil
11496 "Cache for refile targets.")
11498 (defvar org-refile-markers nil
11499 "All the markers used for caching refile locations.")
11501 (defun org-refile-marker (pos)
11502 "Get a new refile marker, but only if caching is in use."
11503 (if (not org-refile-use-cache)
11505 (let ((m (make-marker)))
11506 (move-marker m pos)
11507 (push m org-refile-markers)
11508 m)))
11510 (defun org-refile-cache-clear ()
11511 "Clear the refile cache and disable all the markers."
11512 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11513 (setq org-refile-markers nil)
11514 (setq org-refile-cache nil)
11515 (message "Refile cache has been cleared"))
11517 (defun org-refile-cache-check-set (set)
11518 "Check if all the markers in the cache still have live buffers."
11519 (let (marker)
11520 (catch 'exit
11521 (while (and set (setq marker (nth 3 (pop set))))
11522 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11523 (when (and marker (null (marker-buffer marker)))
11524 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11525 (sit-for 3)
11526 (throw 'exit nil)))
11527 t)))
11529 (defun org-refile-cache-put (set &rest identifiers)
11530 "Push the refile targets SET into the cache, under IDENTIFIERS."
11531 (let* ((key (sha1 (prin1-to-string identifiers)))
11532 (entry (assoc key org-refile-cache)))
11533 (if entry
11534 (setcdr entry set)
11535 (push (cons key set) org-refile-cache))))
11537 (defun org-refile-cache-get (&rest identifiers)
11538 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11539 (cond
11540 ((not org-refile-cache) nil)
11541 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11543 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11544 org-refile-cache))))
11545 (and set (org-refile-cache-check-set set) set)))))
11547 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11548 "Produce a table with refile targets."
11549 (let ((case-fold-search nil)
11550 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11551 (entries (or org-refile-targets '((nil . (:level . 1)))))
11552 targets tgs txt re files f desc descre fast-path-p level pos0)
11553 (message "Getting targets...")
11554 (with-current-buffer (or default-buffer (current-buffer))
11555 (while (setq entry (pop entries))
11556 (setq files (car entry) desc (cdr entry))
11557 (setq fast-path-p nil)
11558 (cond
11559 ((null files) (setq files (list (current-buffer))))
11560 ((eq files 'org-agenda-files)
11561 (setq files (org-agenda-files 'unrestricted)))
11562 ((and (symbolp files) (fboundp files))
11563 (setq files (funcall files)))
11564 ((and (symbolp files) (boundp files))
11565 (setq files (symbol-value files))))
11566 (if (stringp files) (setq files (list files)))
11567 (cond
11568 ((eq (car desc) :tag)
11569 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11570 ((eq (car desc) :todo)
11571 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11572 ((eq (car desc) :regexp)
11573 (setq descre (cdr desc)))
11574 ((eq (car desc) :level)
11575 (setq descre (concat "^\\*\\{" (number-to-string
11576 (if org-odd-levels-only
11577 (1- (* 2 (cdr desc)))
11578 (cdr desc)))
11579 "\\}[ \t]")))
11580 ((eq (car desc) :maxlevel)
11581 (setq fast-path-p t)
11582 (setq descre (concat "^\\*\\{1," (number-to-string
11583 (if org-odd-levels-only
11584 (1- (* 2 (cdr desc)))
11585 (cdr desc)))
11586 "\\}[ \t]")))
11587 (t (error "Bad refiling target description %s" desc)))
11588 (while (setq f (pop files))
11589 (with-current-buffer
11590 (if (bufferp f) f (org-get-agenda-file-buffer f))
11592 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11593 (progn
11594 (if (bufferp f) (setq f (buffer-file-name
11595 (buffer-base-buffer f))))
11596 (setq f (and f (expand-file-name f)))
11597 (if (eq org-refile-use-outline-path 'file)
11598 (push (list (file-name-nondirectory f) f nil nil) tgs))
11599 (save-excursion
11600 (save-restriction
11601 (widen)
11602 (goto-char (point-min))
11603 (while (re-search-forward descre nil t)
11604 (goto-char (setq pos0 (point-at-bol)))
11605 (catch 'next
11606 (when org-refile-target-verify-function
11607 (save-match-data
11608 (or (funcall org-refile-target-verify-function)
11609 (throw 'next t))))
11610 (when (and (looking-at org-complex-heading-regexp)
11611 (not (member (match-string 4) excluded-entries))
11612 (match-string 4))
11613 (setq level (org-reduced-level
11614 (- (match-end 1) (match-beginning 1)))
11615 txt (org-link-display-format (match-string 4))
11616 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11617 re (format org-complex-heading-regexp-format
11618 (regexp-quote (match-string 4))))
11619 (when org-refile-use-outline-path
11620 (setq txt (mapconcat
11621 'org-protect-slash
11622 (append
11623 (if (eq org-refile-use-outline-path
11624 'file)
11625 (list (file-name-nondirectory
11626 (buffer-file-name
11627 (buffer-base-buffer))))
11628 (if (eq org-refile-use-outline-path
11629 'full-file-path)
11630 (list (buffer-file-name
11631 (buffer-base-buffer)))))
11632 (org-get-outline-path fast-path-p
11633 level txt)
11634 (list txt))
11635 "/")))
11636 (push (list txt f re (org-refile-marker (point)))
11637 tgs)))
11638 (when (= (point) pos0)
11639 ;; verification function has not moved point
11640 (goto-char (point-at-eol))))))))
11641 (when org-refile-use-cache
11642 (org-refile-cache-put tgs (buffer-file-name) descre))
11643 (setq targets (append tgs targets))))))
11644 (message "Getting targets...done")
11645 (nreverse targets)))
11647 (defun org-protect-slash (s)
11648 (while (string-match "/" s)
11649 (setq s (replace-match "\\" t t s)))
11652 (defvar org-olpa (make-vector 20 nil))
11654 (defun org-get-outline-path (&optional fastp level heading)
11655 "Return the outline path to the current entry, as a list.
11657 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11658 routine which makes outline path derivations for an entire file,
11659 avoiding backtracing. Refile target collection makes use of that."
11660 (if fastp
11661 (progn
11662 (if (> level 19)
11663 (error "Outline path failure, more than 19 levels"))
11664 (loop for i from level upto 19 do
11665 (aset org-olpa i nil))
11666 (prog1
11667 (delq nil (append org-olpa nil))
11668 (aset org-olpa level heading)))
11669 (let (rtn case-fold-search)
11670 (save-excursion
11671 (save-restriction
11672 (widen)
11673 (while (org-up-heading-safe)
11674 (when (looking-at org-complex-heading-regexp)
11675 (push (org-trim
11676 (replace-regexp-in-string
11677 ;; Remove statistical/checkboxes cookies
11678 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11679 (org-match-string-no-properties 4)))
11680 rtn)))
11681 rtn)))))
11683 (defun org-format-outline-path (path &optional width prefix separator)
11684 "Format the outline path PATH for display.
11685 WIDTH is the maximum number of characters that is available.
11686 PREFIX is a prefix to be included in the returned string,
11687 such as the file name.
11688 SEPARATOR is inserted between the different parts of the path,
11689 the default is \"/\"."
11690 (setq width (or width 79))
11691 (if prefix (setq width (- width (length prefix))))
11692 (if (not path)
11693 (or prefix "")
11694 (let* ((nsteps (length path))
11695 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11696 (maxwidth (if (<= total-width width)
11697 10000 ;; everything fits
11698 ;; we need to shorten the level headings
11699 (/ (- width nsteps) nsteps)))
11700 (org-odd-levels-only nil)
11701 (n 0)
11702 (total (1+ (length prefix))))
11703 (setq maxwidth (max maxwidth 10))
11704 (concat prefix
11705 (if prefix (or separator "/"))
11706 (mapconcat
11707 (lambda (h)
11708 (setq n (1+ n))
11709 (if (and (= n nsteps) (< maxwidth 10000))
11710 (setq maxwidth (- total-width total)))
11711 (if (< (length h) maxwidth)
11712 (progn (setq total (+ total (length h) 1)) h)
11713 (setq h (substring h 0 (- maxwidth 2))
11714 total (+ total maxwidth 1))
11715 (if (string-match "[ \t]+\\'" h)
11716 (setq h (substring h 0 (match-beginning 0))))
11717 (setq h (concat h "..")))
11718 (org-add-props h nil 'face
11719 (nth (% (1- n) org-n-level-faces)
11720 org-level-faces))
11722 path (or separator "/"))))))
11724 (defun org-display-outline-path (&optional file current separator just-return-string)
11725 "Display the current outline path in the echo area.
11727 If FILE is non-nil, prepend the output with the file name.
11728 If CURRENT is non-nil, append the current heading to the output.
11729 SEPARATOR is passed through to `org-format-outline-path'. It separates
11730 the different parts of the path and defaults to \"/\".
11731 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11732 (interactive "P")
11733 (let* (case-fold-search
11734 (bfn (buffer-file-name (buffer-base-buffer)))
11735 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11736 res)
11737 (if current (setq path (append path
11738 (save-excursion
11739 (org-back-to-heading t)
11740 (if (looking-at org-complex-heading-regexp)
11741 (list (match-string 4)))))))
11742 (setq res
11743 (org-format-outline-path
11744 path
11745 (1- (frame-width))
11746 (and file bfn (concat (file-name-nondirectory bfn) separator))
11747 separator))
11748 (if just-return-string
11749 (org-no-properties res)
11750 (org-unlogged-message "%s" res))))
11752 (defvar org-refile-history nil
11753 "History for refiling operations.")
11755 (defvar org-after-refile-insert-hook nil
11756 "Hook run after `org-refile' has inserted its stuff at the new location.
11757 Note that this is still *before* the stuff will be removed from
11758 the *old* location.")
11760 (defvar org-capture-last-stored-marker)
11761 (defvar org-refile-keep nil
11762 "Non-nil means `org-refile' will copy instead of refile.")
11764 (defun org-copy ()
11765 "Like `org-refile', but copy."
11766 (interactive)
11767 (let ((org-refile-keep t))
11768 (funcall 'org-refile nil nil nil "Copy")))
11770 (defun org-refile (&optional arg default-buffer rfloc msg)
11771 "Move the entry or entries at point to another heading.
11772 The list of target headings is compiled using the information in
11773 `org-refile-targets', which see.
11775 At the target location, the entry is filed as a subitem of the
11776 target heading. Depending on `org-reverse-note-order', the new
11777 subitem will either be the first or the last subitem.
11779 If there is an active region, all entries in that region will be
11780 refiled. However, the region must fulfill the requirement that
11781 the first heading sets the top-level of the moved text.
11783 With prefix arg ARG, the command will only visit the target
11784 location and not actually move anything.
11786 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11787 refiling operation has put the subtree.
11789 With a numeric prefix argument of `2', refile to the running clock.
11791 With a numeric prefix argument of `3', emulate `org-refile-keep'
11792 being set to `t' and copy to the target location, don't move it.
11793 Beware that keeping refiled entries may result in duplicated ID
11794 properties.
11796 RFLOC can be a refile location obtained in a different way.
11798 MSG is a string to replace \"Refile\" in the default prompt with
11799 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11801 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11803 If you are using target caching (see `org-refile-use-cache'), you
11804 have to clear the target cache in order to find new targets.
11805 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11806 prefix argument (`C-u C-u C-u C-c C-w')."
11807 (interactive "P")
11808 (if (member arg '(0 (64)))
11809 (org-refile-cache-clear)
11810 (let* ((actionmsg (cond (msg msg)
11811 ((equal arg 3) "Refile (and keep)")
11812 (t "Refile")))
11813 (cbuf (current-buffer))
11814 (regionp (org-region-active-p))
11815 (region-start (and regionp (region-beginning)))
11816 (region-end (and regionp (region-end)))
11817 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11818 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11819 pos it nbuf file re level reversed)
11820 (setq last-command nil)
11821 (when regionp
11822 (goto-char region-start)
11823 (or (bolp) (goto-char (point-at-bol)))
11824 (setq region-start (point))
11825 (unless (or (org-kill-is-subtree-p
11826 (buffer-substring region-start region-end))
11827 (prog1 org-refile-active-region-within-subtree
11828 (let ((s (point-at-eol)))
11829 (org-toggle-heading)
11830 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11831 (user-error "The region is not a (sequence of) subtree(s)")))
11832 (if (equal arg '(16))
11833 (org-refile-goto-last-stored)
11834 (when (or
11835 (and (equal arg 2)
11836 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11837 (prog1
11838 (setq it (list (or org-clock-heading "running clock")
11839 (buffer-file-name
11840 (marker-buffer org-clock-hd-marker))
11842 (marker-position org-clock-hd-marker)))
11843 (setq arg nil)))
11844 (setq it (or rfloc
11845 (let (heading-text)
11846 (save-excursion
11847 (unless (and arg (listp arg))
11848 (org-back-to-heading t)
11849 (setq heading-text
11850 (replace-regexp-in-string
11851 org-bracket-link-regexp
11852 "\\3"
11853 (nth 4 (org-heading-components)))))
11854 (org-refile-get-location
11855 (cond ((and arg (listp arg)) "Goto")
11856 (regionp (concat actionmsg " region to"))
11857 (t (concat actionmsg " subtree \""
11858 heading-text "\" to")))
11859 default-buffer
11860 (and (not (equal '(4) arg))
11861 org-refile-allow-creating-parent-nodes)
11862 arg))))))
11863 (setq file (nth 1 it)
11864 re (nth 2 it)
11865 pos (nth 3 it))
11866 (if (and (not arg)
11868 (equal (buffer-file-name) file)
11869 (if regionp
11870 (and (>= pos region-start)
11871 (<= pos region-end))
11872 (and (>= pos (point))
11873 (< pos (save-excursion
11874 (org-end-of-subtree t t))))))
11875 (error "Cannot refile to position inside the tree or region"))
11876 (setq nbuf (or (find-buffer-visiting file)
11877 (find-file-noselect file)))
11878 (if (and arg (not (equal arg 3)))
11879 (progn
11880 (org-pop-to-buffer-same-window nbuf)
11881 (goto-char pos)
11882 (org-show-context 'org-goto))
11883 (if regionp
11884 (progn
11885 (org-kill-new (buffer-substring region-start region-end))
11886 (org-save-markers-in-region region-start region-end))
11887 (org-copy-subtree 1 nil t))
11888 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11889 (find-file-noselect file)))
11890 (setq reversed (org-notes-order-reversed-p))
11891 (save-excursion
11892 (save-restriction
11893 (widen)
11894 (if pos
11895 (progn
11896 (goto-char pos)
11897 (looking-at org-outline-regexp)
11898 (setq level (org-get-valid-level (funcall outline-level) 1))
11899 (goto-char
11900 (if reversed
11901 (or (outline-next-heading) (point-max))
11902 (or (save-excursion (org-get-next-sibling))
11903 (org-end-of-subtree t t)
11904 (point-max)))))
11905 (setq level 1)
11906 (if (not reversed)
11907 (goto-char (point-max))
11908 (goto-char (point-min))
11909 (or (outline-next-heading) (goto-char (point-max)))))
11910 (if (not (bolp)) (newline))
11911 (org-paste-subtree level nil nil t)
11912 (when org-log-refile
11913 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11914 (unless (eq org-log-refile 'note)
11915 (save-excursion (org-add-log-note))))
11916 (and org-auto-align-tags
11917 (let ((org-loop-over-headlines-in-active-region nil))
11918 (org-set-tags nil t)))
11919 (let ((bookmark-name (plist-get org-bookmark-names-plist
11920 :last-refile)))
11921 (when bookmark-name
11922 (with-demoted-errors
11923 (bookmark-set bookmark-name))))
11924 ;; If we are refiling for capture, make sure that the
11925 ;; last-capture pointers point here
11926 (when (org-bound-and-true-p org-refile-for-capture)
11927 (let ((bookmark-name (plist-get org-bookmark-names-plist
11928 :last-capture-marker)))
11929 (when bookmark-name
11930 (with-demoted-errors
11931 (bookmark-set bookmark-name))))
11932 (move-marker org-capture-last-stored-marker (point)))
11933 (if (fboundp 'deactivate-mark) (deactivate-mark))
11934 (run-hooks 'org-after-refile-insert-hook))))
11935 (unless org-refile-keep
11936 (if regionp
11937 (delete-region (point) (+ (point) (- region-end region-start)))
11938 (delete-region
11939 (and (org-back-to-heading t) (point))
11940 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11941 (when (featurep 'org-inlinetask)
11942 (org-inlinetask-remove-END-maybe))
11943 (setq org-markers-to-move nil)
11944 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11946 (defun org-refile-goto-last-stored ()
11947 "Go to the location where the last refile was stored."
11948 (interactive)
11949 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11950 (message "This is the location of the last refile"))
11952 (defun org-refile--get-location (refloc tbl)
11953 "When user refile to REFLOC, find the associated target in TBL.
11954 Also check `org-refile-target-table'."
11955 (car (delq
11957 (mapcar
11958 (lambda (r) (or (assoc r tbl)
11959 (assoc r org-refile-target-table)))
11960 (list (replace-regexp-in-string "/$" "" refloc)
11961 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11963 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11964 no-exclude)
11965 "Prompt the user for a refile location, using PROMPT.
11966 PROMPT should not be suffixed with a colon and a space, because
11967 this function appends the default value from
11968 `org-refile-history' automatically, if that is not empty.
11969 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11970 this is used for the GOTO interface."
11971 (let ((org-refile-targets org-refile-targets)
11972 (org-refile-use-outline-path org-refile-use-outline-path)
11973 excluded-entries)
11974 (when (and (derived-mode-p 'org-mode)
11975 (not org-refile-use-cache)
11976 (not no-exclude))
11977 (org-map-tree
11978 (lambda()
11979 (setq excluded-entries
11980 (append excluded-entries (list (org-get-heading t t)))))))
11981 (setq org-refile-target-table
11982 (org-refile-get-targets default-buffer excluded-entries)))
11983 (unless org-refile-target-table
11984 (user-error "No refile targets"))
11985 (let* ((cbuf (current-buffer))
11986 (partial-completion-mode nil)
11987 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11988 (cfunc (if (and org-refile-use-outline-path
11989 org-outline-path-complete-in-steps)
11990 'org-olpath-completing-read
11991 'org-icompleting-read))
11992 (extra (if org-refile-use-outline-path "/" ""))
11993 (cbnex (concat (buffer-name) extra))
11994 (filename (and cfn (expand-file-name cfn)))
11995 (tbl (mapcar
11996 (lambda (x)
11997 (if (and (not (member org-refile-use-outline-path
11998 '(file full-file-path)))
11999 (not (equal filename (nth 1 x))))
12000 (cons (concat (car x) extra " ("
12001 (file-name-nondirectory (nth 1 x)) ")")
12002 (cdr x))
12003 (cons (concat (car x) extra) (cdr x))))
12004 org-refile-target-table))
12005 (completion-ignore-case t)
12006 cdef
12007 (prompt (concat prompt
12008 (or (and (car org-refile-history)
12009 (concat " (default " (car org-refile-history) ")"))
12010 (and (assoc cbnex tbl) (setq cdef cbnex)
12011 (concat " (default " cbnex ")"))) ": "))
12012 pa answ parent-target child parent old-hist)
12013 (setq old-hist org-refile-history)
12014 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12015 nil 'org-refile-history (or cdef (car org-refile-history))))
12016 (if (setq pa (org-refile--get-location answ tbl))
12017 (progn
12018 (org-refile-check-position pa)
12019 (when (or (not org-refile-history)
12020 (not (eq old-hist org-refile-history))
12021 (not (equal (car pa) (car org-refile-history))))
12022 (setq org-refile-history
12023 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12024 org-refile-history
12025 (cdr org-refile-history))))
12026 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12027 (pop org-refile-history)))
12029 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12030 (progn
12031 (setq parent (match-string 1 answ)
12032 child (match-string 2 answ))
12033 (setq parent-target (org-refile--get-location parent tbl))
12034 (when (and parent-target
12035 (or (eq new-nodes t)
12036 (and (eq new-nodes 'confirm)
12037 (y-or-n-p (format "Create new node \"%s\"? "
12038 child)))))
12039 (org-refile-new-child parent-target child)))
12040 (user-error "Invalid target location")))))
12042 (declare-function org-string-nw-p "org-macs" (s))
12043 (defun org-refile-check-position (refile-pointer)
12044 "Check if the refile pointer matches the headline to which it points."
12045 (let* ((file (nth 1 refile-pointer))
12046 (re (nth 2 refile-pointer))
12047 (pos (nth 3 refile-pointer))
12048 buffer)
12049 (if (and (not (markerp pos)) (not file))
12050 (user-error "Please indicate a target file in the refile path")
12051 (when (org-string-nw-p re)
12052 (setq buffer (if (markerp pos)
12053 (marker-buffer pos)
12054 (or (find-buffer-visiting file)
12055 (find-file-noselect file))))
12056 (with-current-buffer buffer
12057 (save-excursion
12058 (save-restriction
12059 (widen)
12060 (goto-char pos)
12061 (beginning-of-line 1)
12062 (unless (org-looking-at-p re)
12063 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12065 (defun org-refile-new-child (parent-target child)
12066 "Use refile target PARENT-TARGET to add new CHILD below it."
12067 (unless parent-target
12068 (error "Cannot find parent for new node"))
12069 (let ((file (nth 1 parent-target))
12070 (pos (nth 3 parent-target))
12071 level)
12072 (with-current-buffer (or (find-buffer-visiting file)
12073 (find-file-noselect file))
12074 (save-excursion
12075 (save-restriction
12076 (widen)
12077 (if pos
12078 (goto-char pos)
12079 (goto-char (point-max))
12080 (if (not (bolp)) (newline)))
12081 (when (looking-at org-outline-regexp)
12082 (setq level (funcall outline-level))
12083 (org-end-of-subtree t t))
12084 (org-back-over-empty-lines)
12085 (insert "\n" (make-string
12086 (if pos (org-get-valid-level level 1) 1) ?*)
12087 " " child "\n")
12088 (beginning-of-line 0)
12089 (list (concat (car parent-target) "/" child) file "" (point)))))))
12091 (defun org-olpath-completing-read (prompt collection &rest args)
12092 "Read an outline path like a file name."
12093 (let ((thetable collection)
12094 (org-completion-use-ido nil) ; does not work with ido.
12095 (org-completion-use-iswitchb nil)) ; or iswitchb
12096 (apply
12097 'org-icompleting-read prompt
12098 (lambda (string predicate &optional flag)
12099 (let (rtn r f (l (length string)))
12100 (cond
12101 ((eq flag nil)
12102 ;; try completion
12103 (try-completion string thetable))
12104 ((eq flag t)
12105 ;; all-completions
12106 (setq rtn (all-completions string thetable predicate))
12107 (mapcar
12108 (lambda (x)
12109 (setq r (substring x l))
12110 (if (string-match " ([^)]*)$" x)
12111 (setq f (match-string 0 x))
12112 (setq f ""))
12113 (if (string-match "/" r)
12114 (concat string (substring r 0 (match-end 0)) f)
12116 rtn))
12117 ((eq flag 'lambda)
12118 ;; exact match?
12119 (assoc string thetable)))))
12120 args)))
12122 ;;;; Dynamic blocks
12124 (defun org-find-dblock (name)
12125 "Find the first dynamic block with name NAME in the buffer.
12126 If not found, stay at current position and return nil."
12127 (let ((case-fold-search t) pos)
12128 (save-excursion
12129 (goto-char (point-min))
12130 (setq pos (and (re-search-forward
12131 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12132 (match-beginning 0))))
12133 (if pos (goto-char pos))
12134 pos))
12136 (defun org-create-dblock (plist)
12137 "Create a dynamic block section, with parameters taken from PLIST.
12138 PLIST must contain a :name entry which is used as the name of the block."
12139 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12140 (end-of-line 1)
12141 (newline))
12142 (let ((col (current-column))
12143 (name (plist-get plist :name)))
12144 (insert "#+BEGIN: " name)
12145 (while plist
12146 (if (eq (car plist) :name)
12147 (setq plist (cddr plist))
12148 (insert " " (prin1-to-string (pop plist)))))
12149 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12150 (beginning-of-line -2)))
12152 (defun org-prepare-dblock ()
12153 "Prepare dynamic block for refresh.
12154 This empties the block, puts the cursor at the insert position and returns
12155 the property list including an extra property :name with the block name."
12156 (unless (looking-at org-dblock-start-re)
12157 (user-error "Not at a dynamic block"))
12158 (let* ((begdel (1+ (match-end 0)))
12159 (name (org-no-properties (match-string 1)))
12160 (params (append (list :name name)
12161 (read (concat "(" (match-string 3) ")")))))
12162 (save-excursion
12163 (beginning-of-line 1)
12164 (skip-chars-forward " \t")
12165 (setq params (plist-put params :indentation-column (current-column))))
12166 (unless (re-search-forward org-dblock-end-re nil t)
12167 (error "Dynamic block not terminated"))
12168 (setq params
12169 (append params
12170 (list :content (buffer-substring
12171 begdel (match-beginning 0)))))
12172 (delete-region begdel (match-beginning 0))
12173 (goto-char begdel)
12174 (open-line 1)
12175 params))
12177 (defun org-map-dblocks (&optional command)
12178 "Apply COMMAND to all dynamic blocks in the current buffer.
12179 If COMMAND is not given, use `org-update-dblock'."
12180 (let ((cmd (or command 'org-update-dblock)))
12181 (save-excursion
12182 (goto-char (point-min))
12183 (while (re-search-forward org-dblock-start-re nil t)
12184 (goto-char (match-beginning 0))
12185 (save-excursion
12186 (condition-case nil
12187 (funcall cmd)
12188 (error (message "Error during update of dynamic block"))))
12189 (unless (re-search-forward org-dblock-end-re nil t)
12190 (error "Dynamic block not terminated"))))))
12192 (defun org-dblock-update (&optional arg)
12193 "User command for updating dynamic blocks.
12194 Update the dynamic block at point. With prefix ARG, update all dynamic
12195 blocks in the buffer."
12196 (interactive "P")
12197 (if arg
12198 (org-update-all-dblocks)
12199 (or (looking-at org-dblock-start-re)
12200 (org-beginning-of-dblock))
12201 (org-update-dblock)))
12203 (defun org-update-dblock ()
12204 "Update the dynamic block at point.
12205 This means to empty the block, parse for parameters and then call
12206 the correct writing function."
12207 (interactive)
12208 (save-excursion
12209 (let* ((win (selected-window))
12210 (pos (point))
12211 (line (org-current-line))
12212 (params (org-prepare-dblock))
12213 (name (plist-get params :name))
12214 (indent (plist-get params :indentation-column))
12215 (cmd (intern (concat "org-dblock-write:" name))))
12216 (message "Updating dynamic block `%s' at line %d..." name line)
12217 (funcall cmd params)
12218 (message "Updating dynamic block `%s' at line %d...done" name line)
12219 (goto-char pos)
12220 (when (and indent (> indent 0))
12221 (setq indent (make-string indent ?\ ))
12222 (save-excursion
12223 (select-window win)
12224 (org-beginning-of-dblock)
12225 (forward-line 1)
12226 (while (not (looking-at org-dblock-end-re))
12227 (insert indent)
12228 (beginning-of-line 2))
12229 (when (looking-at org-dblock-end-re)
12230 (and (looking-at "[ \t]+")
12231 (replace-match ""))
12232 (insert indent)))))))
12234 (defun org-beginning-of-dblock ()
12235 "Find the beginning of the dynamic block at point.
12236 Error if there is no such block at point."
12237 (let ((pos (point))
12238 beg)
12239 (end-of-line 1)
12240 (if (and (re-search-backward org-dblock-start-re nil t)
12241 (setq beg (match-beginning 0))
12242 (re-search-forward org-dblock-end-re nil t)
12243 (> (match-end 0) pos))
12244 (goto-char beg)
12245 (goto-char pos)
12246 (error "Not in a dynamic block"))))
12248 (defun org-update-all-dblocks ()
12249 "Update all dynamic blocks in the buffer.
12250 This function can be used in a hook."
12251 (interactive)
12252 (when (derived-mode-p 'org-mode)
12253 (org-map-dblocks 'org-update-dblock)))
12256 ;;;; Completion
12258 (declare-function org-export-backend-name "org-export" (cl-x))
12259 (declare-function org-export-backend-options "org-export" (cl-x))
12260 (defun org-get-export-keywords ()
12261 "Return a list of all currently understood export keywords.
12262 Export keywords include options, block names, attributes and
12263 keywords relative to each registered export back-end."
12264 (let (keywords)
12265 (dolist (backend
12266 (org-bound-and-true-p org-export--registered-backends)
12267 (delq nil keywords))
12268 ;; Back-end name (for keywords, like #+LATEX:)
12269 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12270 (dolist (option-entry (org-export-backend-options backend))
12271 ;; Back-end options.
12272 (push (nth 1 option-entry) keywords)))))
12274 (defconst org-options-keywords
12275 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12276 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12277 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12278 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12279 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12281 (defcustom org-structure-template-alist
12282 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12283 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12284 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12285 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12286 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12287 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12288 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12289 ("L" "#+LaTeX: ")
12290 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12291 ("H" "#+HTML: ")
12292 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12293 ("A" "#+ASCII: ")
12294 ("i" "#+INDEX: ?")
12295 ("I" "#+INCLUDE: %file ?"))
12296 "Structure completion elements.
12297 This is a list of abbreviation keys and values. The value gets inserted
12298 if you type `<' followed by the key and then press the completion key,
12299 usually `TAB'. %file will be replaced by a file name after prompting
12300 for the file using completion. The cursor will be placed at the position
12301 of the `?` in the template.
12302 There are two templates for each key, the first uses the original Org syntax,
12303 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12304 the default when the /org-mtags.el/ module has been loaded. See also the
12305 variable `org-mtags-prefer-muse-templates'."
12306 :group 'org-completion
12307 :type '(repeat
12308 (list
12309 (string :tag "Key")
12310 (string :tag "Template")))
12311 :version "25.1"
12312 :package-version '(Org . "8.3"))
12314 (defun org-try-structure-completion ()
12315 "Try to complete a structure template before point.
12316 This looks for strings like \"<e\" on an otherwise empty line and
12317 expands them."
12318 (let ((l (buffer-substring (point-at-bol) (point)))
12320 (when (and (looking-at "[ \t]*$")
12321 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12322 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12323 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12324 (match-beginning 1)) a)
12325 t)))
12327 (defun org-complete-expand-structure-template (start cell)
12328 "Expand a structure template."
12329 (let ((rpl (nth 1 cell))
12330 (ind ""))
12331 (delete-region start (point))
12332 (when (string-match "\\`[ \t]*#\\+" rpl)
12333 (cond
12334 ((bolp))
12335 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12336 (setq ind (buffer-substring (point-at-bol) (point))))
12337 (t (newline))))
12338 (setq start (point))
12339 (if (string-match "%file" rpl)
12340 (setq rpl (replace-match
12341 (concat
12342 "\""
12343 (save-match-data
12344 (abbreviate-file-name (read-file-name "Include file: ")))
12345 "\"")
12346 t t rpl)))
12347 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12348 (concat "\n" ind)))
12349 (insert rpl)
12350 (if (re-search-backward "\\?" start t) (delete-char 1))))
12352 ;;;; TODO, DEADLINE, Comments
12354 (defun org-toggle-comment ()
12355 "Change the COMMENT state of an entry."
12356 (interactive)
12357 (save-excursion
12358 (org-back-to-heading)
12359 (looking-at org-complex-heading-regexp)
12360 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12361 (skip-chars-forward " \t")
12362 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12363 (if (org-in-commented-heading-p t)
12364 (delete-region (point)
12365 (progn (search-forward " " (line-end-position) 'move)
12366 (skip-chars-forward " \t")
12367 (point)))
12368 (insert org-comment-string)
12369 (unless (eolp) (insert " ")))))
12371 (defvar org-last-todo-state-is-todo nil
12372 "This is non-nil when the last TODO state change led to a TODO state.
12373 If the last change removed the TODO tag or switched to DONE, then
12374 this is nil.")
12376 (defvar org-setting-tags nil) ; dynamically skipped
12378 (defvar org-todo-setup-filter-hook nil
12379 "Hook for functions that pre-filter todo specs.
12380 Each function takes a todo spec and returns either nil or the spec
12381 transformed into canonical form." )
12383 (defvar org-todo-get-default-hook nil
12384 "Hook for functions that get a default item for todo.
12385 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12386 nil or a string to be used for the todo mark." )
12388 (defvar org-agenda-headline-snapshot-before-repeat)
12390 (defun org-current-effective-time ()
12391 "Return current time adjusted for `org-extend-today-until' variable."
12392 (let* ((ct (org-current-time))
12393 (dct (decode-time ct))
12394 (ct1
12395 (cond
12396 (org-use-last-clock-out-time-as-effective-time
12397 (or (org-clock-get-last-clock-out-time) ct))
12398 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12399 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12400 (t ct))))
12401 ct1))
12403 (defun org-todo-yesterday (&optional arg)
12404 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12405 (interactive "P")
12406 (if (eq major-mode 'org-agenda-mode)
12407 (apply 'org-agenda-todo-yesterday arg)
12408 (let* ((org-use-effective-time t)
12409 (hour (third (decode-time
12410 (org-current-time))))
12411 (org-extend-today-until (1+ hour)))
12412 (org-todo arg))))
12414 (defvar org-block-entry-blocking ""
12415 "First entry preventing the TODO state change.")
12417 (defun org-cancel-repeater ()
12418 "Cancel a repeater by setting its numeric value to zero."
12419 (interactive)
12420 (save-excursion
12421 (org-back-to-heading t)
12422 (let ((bound1 (point))
12423 (bound0 (save-excursion (outline-next-heading) (point))))
12424 (when (re-search-forward
12425 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12426 org-deadline-time-regexp "\\)\\|\\("
12427 org-ts-regexp "\\)")
12428 bound0 t)
12429 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12430 (replace-match "0" t nil nil 1))))))
12432 (defun org-todo (&optional arg)
12433 "Change the TODO state of an item.
12434 The state of an item is given by a keyword at the start of the heading,
12435 like
12436 *** TODO Write paper
12437 *** DONE Call mom
12439 The different keywords are specified in the variable `org-todo-keywords'.
12440 By default the available states are \"TODO\" and \"DONE\".
12441 So for this example: when the item starts with TODO, it is changed to DONE.
12442 When it starts with DONE, the DONE is removed. And when neither TODO nor
12443 DONE are present, add TODO at the beginning of the heading.
12445 With \\[universal-argument] prefix arg, use completion to determine the new \
12446 state.
12447 With numeric prefix arg, switch to that state.
12448 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12449 keywords (nextset).
12450 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12451 With a numeric prefix arg of 0, inhibit note taking for the change.
12452 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12454 When called through ELisp, arg is also interpreted in the following way:
12455 'none -> empty state
12456 \"\"(empty string) -> switch to empty state
12457 'done -> switch to DONE
12458 'nextset -> switch to the next set of keywords
12459 'previousset -> switch to the previous set of keywords
12460 \"WAITING\" -> switch to the specified keyword, but only if it
12461 really is a member of `org-todo-keywords'."
12462 (interactive "P")
12463 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12464 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12465 'region-start-level 'region))
12466 org-loop-over-headlines-in-active-region)
12467 (org-map-entries
12468 `(org-todo ,arg)
12469 org-loop-over-headlines-in-active-region
12470 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12471 (if (equal arg '(16)) (setq arg 'nextset))
12472 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12473 (let ((org-blocker-hook org-blocker-hook)
12474 commentp
12475 case-fold-search)
12476 (when (equal arg '(64))
12477 (setq arg nil org-blocker-hook nil))
12478 (when (and org-blocker-hook
12479 (or org-inhibit-blocking
12480 (org-entry-get nil "NOBLOCKING")))
12481 (setq org-blocker-hook nil))
12482 (save-excursion
12483 (catch 'exit
12484 (org-back-to-heading t)
12485 (when (org-in-commented-heading-p t)
12486 (org-toggle-comment)
12487 (setq commentp t))
12488 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12489 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12490 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12491 (let* ((match-data (match-data))
12492 (startpos (point-at-bol))
12493 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12494 (org-log-done org-log-done)
12495 (org-log-repeat org-log-repeat)
12496 (org-todo-log-states org-todo-log-states)
12497 (org-inhibit-logging
12498 (if (equal arg 0)
12499 (progn (setq arg nil) 'note) org-inhibit-logging))
12500 (this (match-string 1))
12501 (hl-pos (match-beginning 0))
12502 (head (org-get-todo-sequence-head this))
12503 (ass (assoc head org-todo-kwd-alist))
12504 (interpret (nth 1 ass))
12505 (done-word (nth 3 ass))
12506 (final-done-word (nth 4 ass))
12507 (org-last-state (or this ""))
12508 (completion-ignore-case t)
12509 (member (member this org-todo-keywords-1))
12510 (tail (cdr member))
12511 (org-state (cond
12512 ((and org-todo-key-trigger
12513 (or (and (equal arg '(4))
12514 (eq org-use-fast-todo-selection 'prefix))
12515 (and (not arg) org-use-fast-todo-selection
12516 (not (eq org-use-fast-todo-selection
12517 'prefix)))))
12518 ;; Use fast selection
12519 (org-fast-todo-selection))
12520 ((and (equal arg '(4))
12521 (or (not org-use-fast-todo-selection)
12522 (not org-todo-key-trigger)))
12523 ;; Read a state with completion
12524 (org-icompleting-read
12525 "State: " (mapcar 'list org-todo-keywords-1)
12526 nil t))
12527 ((eq arg 'right)
12528 (if this
12529 (if tail (car tail) nil)
12530 (car org-todo-keywords-1)))
12531 ((eq arg 'left)
12532 (if (equal member org-todo-keywords-1)
12534 (if this
12535 (nth (- (length org-todo-keywords-1)
12536 (length tail) 2)
12537 org-todo-keywords-1)
12538 (org-last org-todo-keywords-1))))
12539 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12540 (setq arg nil))) ; hack to fall back to cycling
12541 (arg
12542 ;; user or caller requests a specific state
12543 (cond
12544 ((equal arg "") nil)
12545 ((eq arg 'none) nil)
12546 ((eq arg 'done) (or done-word (car org-done-keywords)))
12547 ((eq arg 'nextset)
12548 (or (car (cdr (member head org-todo-heads)))
12549 (car org-todo-heads)))
12550 ((eq arg 'previousset)
12551 (let ((org-todo-heads (reverse org-todo-heads)))
12552 (or (car (cdr (member head org-todo-heads)))
12553 (car org-todo-heads))))
12554 ((car (member arg org-todo-keywords-1)))
12555 ((stringp arg)
12556 (user-error "State `%s' not valid in this file" arg))
12557 ((nth (1- (prefix-numeric-value arg))
12558 org-todo-keywords-1))))
12559 ((null member) (or head (car org-todo-keywords-1)))
12560 ((equal this final-done-word) nil) ;; -> make empty
12561 ((null tail) nil) ;; -> first entry
12562 ((memq interpret '(type priority))
12563 (if (eq this-command last-command)
12564 (car tail)
12565 (if (> (length tail) 0)
12566 (or done-word (car org-done-keywords))
12567 nil)))
12569 (car tail))))
12570 (org-state (or
12571 (run-hook-with-args-until-success
12572 'org-todo-get-default-hook org-state org-last-state)
12573 org-state))
12574 (next (if org-state (concat " " org-state " ") " "))
12575 (change-plist (list :type 'todo-state-change :from this :to org-state
12576 :position startpos))
12577 dolog now-done-p)
12578 (when org-blocker-hook
12579 (setq org-last-todo-state-is-todo
12580 (not (member this org-done-keywords)))
12581 (unless (save-excursion
12582 (save-match-data
12583 (org-with-wide-buffer
12584 (run-hook-with-args-until-failure
12585 'org-blocker-hook change-plist))))
12586 (if (org-called-interactively-p 'interactive)
12587 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12588 this org-state org-block-entry-blocking)
12589 ;; fail silently
12590 (message "TODO state change from %s to %s blocked (by \"%s\")"
12591 this org-state org-block-entry-blocking)
12592 (throw 'exit nil))))
12593 (store-match-data match-data)
12594 (replace-match next t t)
12595 (cond ((equal this org-state)
12596 (message "TODO state was already %s" (org-trim next)))
12597 ((pos-visible-in-window-p hl-pos)
12598 (message "TODO state changed to %s" (org-trim next))))
12599 (unless head
12600 (setq head (org-get-todo-sequence-head org-state)
12601 ass (assoc head org-todo-kwd-alist)
12602 interpret (nth 1 ass)
12603 done-word (nth 3 ass)
12604 final-done-word (nth 4 ass)))
12605 (when (memq arg '(nextset previousset))
12606 (message "Keyword-Set %d/%d: %s"
12607 (- (length org-todo-sets) -1
12608 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12609 (length org-todo-sets)
12610 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12611 (setq org-last-todo-state-is-todo
12612 (not (member org-state org-done-keywords)))
12613 (setq now-done-p (and (member org-state org-done-keywords)
12614 (not (member this org-done-keywords))))
12615 (and logging (org-local-logging logging))
12616 (when (and (or org-todo-log-states org-log-done)
12617 (not (eq org-inhibit-logging t))
12618 (not (memq arg '(nextset previousset))))
12619 ;; we need to look at recording a time and note
12620 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12621 (nth 2 (assoc this org-todo-log-states))))
12622 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12623 (setq dolog 'time))
12624 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12625 (and org-state
12626 (member org-state org-not-done-keywords)
12627 (not (member this org-not-done-keywords))))
12628 ;; This is now a todo state and was not one before
12629 ;; If there was a CLOSED time stamp, get rid of it.
12630 (org-add-planning-info nil nil 'closed))
12631 (when (and now-done-p org-log-done)
12632 ;; It is now done, and it was not done before
12633 (org-add-planning-info 'closed (org-current-effective-time))
12634 (if (and (not dolog) (eq 'note org-log-done))
12635 (org-add-log-setup 'done org-state this 'findpos 'note)))
12636 (when (and org-state dolog)
12637 ;; This is a non-nil state, and we need to log it
12638 (org-add-log-setup 'state org-state this 'findpos dolog)))
12639 ;; Fixup tag positioning
12640 (org-todo-trigger-tag-changes org-state)
12641 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12642 (when org-provide-todo-statistics
12643 (org-update-parent-todo-statistics))
12644 (run-hooks 'org-after-todo-state-change-hook)
12645 (if (and arg (not (member org-state org-done-keywords)))
12646 (setq head (org-get-todo-sequence-head org-state)))
12647 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12648 ;; Do we need to trigger a repeat?
12649 (when now-done-p
12650 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12651 ;; This is for the agenda, take a snapshot of the headline.
12652 (save-match-data
12653 (setq org-agenda-headline-snapshot-before-repeat
12654 (org-get-heading))))
12655 (org-auto-repeat-maybe org-state))
12656 ;; Fixup cursor location if close to the keyword
12657 (if (and (outline-on-heading-p)
12658 (not (bolp))
12659 (save-excursion (beginning-of-line 1)
12660 (looking-at org-todo-line-regexp))
12661 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12662 (progn
12663 (goto-char (or (match-end 2) (match-end 1)))
12664 (and (looking-at " ") (just-one-space))))
12665 (when org-trigger-hook
12666 (save-excursion
12667 (run-hook-with-args 'org-trigger-hook change-plist)))
12668 (when commentp (org-toggle-comment))))))))
12670 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12671 "Block turning an entry into a TODO, using the hierarchy.
12672 This checks whether the current task should be blocked from state
12673 changes. Such blocking occurs when:
12675 1. The task has children which are not all in a completed state.
12677 2. A task has a parent with the property :ORDERED:, and there
12678 are siblings prior to the current task with incomplete
12679 status.
12681 3. The parent of the task is blocked because it has siblings that should
12682 be done first, or is child of a block grandparent TODO entry."
12684 (if (not org-enforce-todo-dependencies)
12685 t ; if locally turned off don't block
12686 (catch 'dont-block
12687 ;; If this is not a todo state change, or if this entry is already DONE,
12688 ;; do not block
12689 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12690 (member (plist-get change-plist :from)
12691 (cons 'done org-done-keywords))
12692 (member (plist-get change-plist :to)
12693 (cons 'todo org-not-done-keywords))
12694 (not (plist-get change-plist :to)))
12695 (throw 'dont-block t))
12696 ;; If this task has children, and any are undone, it's blocked
12697 (save-excursion
12698 (org-back-to-heading t)
12699 (let ((this-level (funcall outline-level)))
12700 (outline-next-heading)
12701 (let ((child-level (funcall outline-level)))
12702 (while (and (not (eobp))
12703 (> child-level this-level))
12704 ;; this todo has children, check whether they are all
12705 ;; completed
12706 (if (and (not (org-entry-is-done-p))
12707 (org-entry-is-todo-p))
12708 (progn (setq org-block-entry-blocking (org-get-heading))
12709 (throw 'dont-block nil)))
12710 (outline-next-heading)
12711 (setq child-level (funcall outline-level))))))
12712 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12713 ;; any previous siblings are undone, it's blocked
12714 (save-excursion
12715 (org-back-to-heading t)
12716 (let* ((pos (point))
12717 (parent-pos (and (org-up-heading-safe) (point))))
12718 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12719 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12720 (forward-line 1)
12721 (re-search-forward org-not-done-heading-regexp pos t))
12722 (setq org-block-entry-blocking (match-string 0))
12723 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12724 ;; Search further up the hierarchy, to see if an ancestor is blocked
12725 (while t
12726 (goto-char parent-pos)
12727 (if (not (looking-at org-not-done-heading-regexp))
12728 (throw 'dont-block t)) ; do not block, parent is not a TODO
12729 (setq pos (point))
12730 (setq parent-pos (and (org-up-heading-safe) (point)))
12731 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12732 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12733 (forward-line 1)
12734 (re-search-forward org-not-done-heading-regexp pos t)
12735 (setq org-block-entry-blocking (org-get-heading)))
12736 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12738 (defcustom org-track-ordered-property-with-tag nil
12739 "Should the ORDERED property also be shown as a tag?
12740 The ORDERED property decides if an entry should require subtasks to be
12741 completed in sequence. Since a property is not very visible, setting
12742 this option means that toggling the ORDERED property with the command
12743 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12744 not relevant for the behavior, but it makes things more visible.
12746 Note that toggling the tag with tags commands will not change the property
12747 and therefore not influence behavior!
12749 This can be t, meaning the tag ORDERED should be used, It can also be a
12750 string to select a different tag for this task."
12751 :group 'org-todo
12752 :type '(choice
12753 (const :tag "No tracking" nil)
12754 (const :tag "Track with ORDERED tag" t)
12755 (string :tag "Use other tag")))
12757 (defun org-toggle-ordered-property ()
12758 "Toggle the ORDERED property of the current entry.
12759 For better visibility, you can track the value of this property with a tag.
12760 See variable `org-track-ordered-property-with-tag'."
12761 (interactive)
12762 (let* ((t1 org-track-ordered-property-with-tag)
12763 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12764 (save-excursion
12765 (org-back-to-heading)
12766 (if (org-entry-get nil "ORDERED")
12767 (progn
12768 (org-delete-property "ORDERED")
12769 (and tag (org-toggle-tag tag 'off))
12770 (message "Subtasks can be completed in arbitrary order"))
12771 (org-entry-put nil "ORDERED" "t")
12772 (and tag (org-toggle-tag tag 'on))
12773 (message "Subtasks must be completed in sequence")))))
12775 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12776 (defun org-block-todo-from-checkboxes (change-plist)
12777 "Block turning an entry into a TODO, using checkboxes.
12778 This checks whether the current task should be blocked from state
12779 changes because there are unchecked boxes in this entry."
12780 (if (not org-enforce-todo-checkbox-dependencies)
12781 t ; if locally turned off don't block
12782 (catch 'dont-block
12783 ;; If this is not a todo state change, or if this entry is already DONE,
12784 ;; do not block
12785 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12786 (member (plist-get change-plist :from)
12787 (cons 'done org-done-keywords))
12788 (member (plist-get change-plist :to)
12789 (cons 'todo org-not-done-keywords))
12790 (not (plist-get change-plist :to)))
12791 (throw 'dont-block t))
12792 ;; If this task has checkboxes that are not checked, it's blocked
12793 (save-excursion
12794 (org-back-to-heading t)
12795 (let ((beg (point)) end)
12796 (outline-next-heading)
12797 (setq end (point))
12798 (goto-char beg)
12799 (if (org-list-search-forward
12800 (concat (org-item-beginning-re)
12801 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12802 "\\[[- ]\\]")
12803 end t)
12804 (progn
12805 (if (boundp 'org-blocked-by-checkboxes)
12806 (setq org-blocked-by-checkboxes t))
12807 (throw 'dont-block nil)))))
12808 t))) ; do not block
12810 (defun org-entry-blocked-p ()
12811 "Is the current entry blocked?"
12812 (org-with-silent-modifications
12813 (if (org-entry-get nil "NOBLOCKING")
12814 nil ;; Never block this entry
12815 (not (run-hook-with-args-until-failure
12816 'org-blocker-hook
12817 (list :type 'todo-state-change
12818 :position (point)
12819 :from 'todo
12820 :to 'done))))))
12822 (defun org-update-statistics-cookies (all)
12823 "Update the statistics cookie, either from TODO or from checkboxes.
12824 This should be called with the cursor in a line with a statistics cookie."
12825 (interactive "P")
12826 (if all
12827 (progn
12828 (org-update-checkbox-count 'all)
12829 (org-map-entries 'org-update-parent-todo-statistics))
12830 (if (not (org-at-heading-p))
12831 (org-update-checkbox-count)
12832 (let ((pos (point-marker))
12833 end l1 l2)
12834 (ignore-errors (org-back-to-heading t))
12835 (if (not (org-at-heading-p))
12836 (org-update-checkbox-count)
12837 (setq l1 (org-outline-level))
12838 (setq end (save-excursion
12839 (outline-next-heading)
12840 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12841 (point)))
12842 (if (and (save-excursion
12843 (re-search-forward
12844 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12845 (not (save-excursion (re-search-forward
12846 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12847 (org-update-checkbox-count)
12848 (if (and l2 (> l2 l1))
12849 (progn
12850 (goto-char end)
12851 (org-update-parent-todo-statistics))
12852 (goto-char pos)
12853 (beginning-of-line 1)
12854 (while (re-search-forward
12855 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12856 (point-at-eol) t)
12857 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12858 (goto-char pos)
12859 (move-marker pos nil)))))
12861 (defvar org-entry-property-inherited-from) ;; defined below
12862 (defun org-update-parent-todo-statistics ()
12863 "Update any statistics cookie in the parent of the current headline.
12864 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12865 the entire subtree and this will travel up the hierarchy and update
12866 statistics everywhere."
12867 (let* ((prop (save-excursion (org-up-heading-safe)
12868 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12869 (recursive (or (not org-hierarchical-todo-statistics)
12870 (and prop (string-match "\\<recursive\\>" prop))))
12871 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12873 (first t)
12874 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12875 level ltoggle l1 new ndel
12876 (cnt-all 0) (cnt-done 0) is-percent kwd
12877 checkbox-beg ov ovs ove cookie-present)
12878 (catch 'exit
12879 (save-excursion
12880 (beginning-of-line 1)
12881 (setq ltoggle (funcall outline-level))
12882 ;; Three situations are to consider:
12884 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12885 ;; to the top-level ancestor on the headline;
12887 ;; 2. If parent has "recursive" property, repeat up to the
12888 ;; headline setting that property, taking inheritance into
12889 ;; account;
12891 ;; 3. Else, move up to direct parent and proceed only once.
12892 (while (and (setq level (org-up-heading-safe))
12893 (or recursive first)
12894 (>= (point) lim))
12895 (setq first nil cookie-present nil)
12896 (unless (and level
12897 (not (string-match
12898 "\\<checkbox\\>"
12899 (downcase (or (org-entry-get nil "COOKIE_DATA")
12900 "")))))
12901 (throw 'exit nil))
12902 (while (re-search-forward box-re (point-at-eol) t)
12903 (setq cnt-all 0 cnt-done 0 cookie-present t)
12904 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12905 (save-match-data
12906 (unless (outline-next-heading) (throw 'exit nil))
12907 (while (and (looking-at org-complex-heading-regexp)
12908 (> (setq l1 (length (match-string 1))) level))
12909 (setq kwd (and (or recursive (= l1 ltoggle))
12910 (match-string 2)))
12911 (if (or (eq org-provide-todo-statistics 'all-headlines)
12912 (and (eq org-provide-todo-statistics t)
12913 (or (member kwd org-done-keywords)))
12914 (and (listp org-provide-todo-statistics)
12915 (stringp (car org-provide-todo-statistics))
12916 (or (member kwd org-provide-todo-statistics)
12917 (member kwd org-done-keywords)))
12918 (and (listp org-provide-todo-statistics)
12919 (listp (car org-provide-todo-statistics))
12920 (or (member kwd (car org-provide-todo-statistics))
12921 (and (member kwd org-done-keywords)
12922 (member kwd (cadr org-provide-todo-statistics))))))
12923 (setq cnt-all (1+ cnt-all))
12924 (if (eq org-provide-todo-statistics t)
12925 (and kwd (setq cnt-all (1+ cnt-all)))))
12926 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12927 (member kwd org-done-keywords))
12928 (and (listp org-provide-todo-statistics)
12929 (listp (car org-provide-todo-statistics))
12930 (member kwd org-done-keywords)
12931 (member kwd (cadr org-provide-todo-statistics)))
12932 (and (listp org-provide-todo-statistics)
12933 (stringp (car org-provide-todo-statistics))
12934 (member kwd org-done-keywords)))
12935 (setq cnt-done (1+ cnt-done)))
12936 (outline-next-heading)))
12937 (setq new
12938 (if is-percent
12939 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12940 (format "[%d/%d]" cnt-done cnt-all))
12941 ndel (- (match-end 0) checkbox-beg))
12942 ;; handle overlays when updating cookie from column view
12943 (when (setq ov (car (overlays-at checkbox-beg)))
12944 (setq ovs (overlay-start ov) ove (overlay-end ov))
12945 (delete-overlay ov))
12946 (goto-char checkbox-beg)
12947 (insert new)
12948 (delete-region (point) (+ (point) ndel))
12949 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12950 (when ov (move-overlay ov ovs ove)))
12951 (when cookie-present
12952 (run-hook-with-args 'org-after-todo-statistics-hook
12953 cnt-done (- cnt-all cnt-done))))))
12954 (run-hooks 'org-todo-statistics-hook)))
12956 (defvar org-after-todo-statistics-hook nil
12957 "Hook that is called after a TODO statistics cookie has been updated.
12958 Each function is called with two arguments: the number of not-done entries
12959 and the number of done entries.
12961 For example, the following function, when added to this hook, will switch
12962 an entry to DONE when all children are done, and back to TODO when new
12963 entries are set to a TODO status. Note that this hook is only called
12964 when there is a statistics cookie in the headline!
12966 (defun org-summary-todo (n-done n-not-done)
12967 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12968 (let (org-log-done org-log-states) ; turn off logging
12969 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12972 (defvar org-todo-statistics-hook nil
12973 "Hook that is run whenever Org thinks TODO statistics should be updated.
12974 This hook runs even if there is no statistics cookie present, in which case
12975 `org-after-todo-statistics-hook' would not run.")
12977 (defun org-todo-trigger-tag-changes (state)
12978 "Apply the changes defined in `org-todo-state-tags-triggers'."
12979 (let ((l org-todo-state-tags-triggers)
12980 changes)
12981 (when (or (not state) (equal state ""))
12982 (setq changes (append changes (cdr (assoc "" l)))))
12983 (when (and (stringp state) (> (length state) 0))
12984 (setq changes (append changes (cdr (assoc state l)))))
12985 (when (member state org-not-done-keywords)
12986 (setq changes (append changes (cdr (assoc 'todo l)))))
12987 (when (member state org-done-keywords)
12988 (setq changes (append changes (cdr (assoc 'done l)))))
12989 (dolist (c changes)
12990 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12992 (defun org-local-logging (value)
12993 "Get logging settings from a property VALUE."
12994 (let* (words w a)
12995 ;; directly set the variables, they are already local.
12996 (setq org-log-done nil
12997 org-log-repeat nil
12998 org-todo-log-states nil)
12999 (setq words (org-split-string value))
13000 (while (setq w (pop words))
13001 (cond
13002 ((setq a (assoc w org-startup-options))
13003 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13004 (set (nth 1 a) (nth 2 a))))
13005 ((setq a (org-extract-log-state-settings w))
13006 (and (member (car a) org-todo-keywords-1)
13007 (push a org-todo-log-states)))))))
13009 (defun org-get-todo-sequence-head (kwd)
13010 "Return the head of the TODO sequence to which KWD belongs.
13011 If KWD is not set, check if there is a text property remembering the
13012 right sequence."
13013 (let (p)
13014 (cond
13015 ((not kwd)
13016 (or (get-text-property (point-at-bol) 'org-todo-head)
13017 (progn
13018 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13019 nil (point-at-eol)))
13020 (get-text-property p 'org-todo-head))))
13021 ((not (member kwd org-todo-keywords-1))
13022 (car org-todo-keywords-1))
13023 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13025 (defun org-fast-todo-selection ()
13026 "Fast TODO keyword selection with single keys.
13027 Returns the new TODO keyword, or nil if no state change should occur."
13028 (let* ((fulltable org-todo-key-alist)
13029 (done-keywords org-done-keywords) ;; needed for the faces.
13030 (maxlen (apply 'max (mapcar
13031 (lambda (x)
13032 (if (stringp (car x)) (string-width (car x)) 0))
13033 fulltable)))
13034 (expert nil)
13035 (fwidth (+ maxlen 3 1 3))
13036 (ncol (/ (- (window-width) 4) fwidth))
13037 tg cnt e c tbl
13038 groups ingroup)
13039 (save-excursion
13040 (save-window-excursion
13041 (if expert
13042 (set-buffer (get-buffer-create " *Org todo*"))
13043 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13044 (erase-buffer)
13045 (org-set-local 'org-done-keywords done-keywords)
13046 (setq tbl fulltable cnt 0)
13047 (while (setq e (pop tbl))
13048 (cond
13049 ((equal e '(:startgroup))
13050 (push '() groups) (setq ingroup t)
13051 (when (not (= cnt 0))
13052 (setq cnt 0)
13053 (insert "\n"))
13054 (insert "{ "))
13055 ((equal e '(:endgroup))
13056 (setq ingroup nil cnt 0)
13057 (insert "}\n"))
13058 ((equal e '(:newline))
13059 (when (not (= cnt 0))
13060 (setq cnt 0)
13061 (insert "\n")
13062 (setq e (car tbl))
13063 (while (equal (car tbl) '(:newline))
13064 (insert "\n")
13065 (setq tbl (cdr tbl)))))
13067 (setq tg (car e) c (cdr e))
13068 (if ingroup (push tg (car groups)))
13069 (setq tg (org-add-props tg nil 'face
13070 (org-get-todo-face tg)))
13071 (if (and (= cnt 0) (not ingroup)) (insert " "))
13072 (insert "[" c "] " tg (make-string
13073 (- fwidth 4 (length tg)) ?\ ))
13074 (when (= (setq cnt (1+ cnt)) ncol)
13075 (insert "\n")
13076 (if ingroup (insert " "))
13077 (setq cnt 0)))))
13078 (insert "\n")
13079 (goto-char (point-min))
13080 (if (not expert) (org-fit-window-to-buffer))
13081 (message "[a-z..]:Set [SPC]:clear")
13082 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13083 (cond
13084 ((or (= c ?\C-g)
13085 (and (= c ?q) (not (rassoc c fulltable))))
13086 (setq quit-flag t))
13087 ((= c ?\ ) nil)
13088 ((setq e (rassoc c fulltable) tg (car e))
13090 (t (setq quit-flag t)))))))
13092 (defun org-entry-is-todo-p ()
13093 (member (org-get-todo-state) org-not-done-keywords))
13095 (defun org-entry-is-done-p ()
13096 (member (org-get-todo-state) org-done-keywords))
13098 (defun org-get-todo-state ()
13099 "Return the TODO keyword of the current subtree."
13100 (save-excursion
13101 (org-back-to-heading t)
13102 (and (looking-at org-todo-line-regexp)
13103 (match-end 2)
13104 (match-string 2))))
13106 (defun org-at-date-range-p (&optional inactive-ok)
13107 "Is the cursor inside a date range?"
13108 (interactive)
13109 (save-excursion
13110 (catch 'exit
13111 (let ((pos (point)))
13112 (skip-chars-backward "^[<\r\n")
13113 (skip-chars-backward "<[")
13114 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13115 (>= (match-end 0) pos)
13116 (throw 'exit t))
13117 (skip-chars-backward "^<[\r\n")
13118 (skip-chars-backward "<[")
13119 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13120 (>= (match-end 0) pos)
13121 (throw 'exit t)))
13122 nil)))
13124 (defun org-get-repeat (&optional tagline)
13125 "Check if there is a deadline/schedule with repeater in this entry."
13126 (save-match-data
13127 (save-excursion
13128 (org-back-to-heading t)
13129 (and (re-search-forward (if tagline
13130 (concat tagline "\\s-*" org-repeat-re)
13131 org-repeat-re)
13132 (org-entry-end-position) t)
13133 (match-string-no-properties 1)))))
13135 (defvar org-last-changed-timestamp)
13136 (defvar org-last-inserted-timestamp)
13137 (defvar org-log-post-message)
13138 (defvar org-log-note-purpose)
13139 (defvar org-log-note-how nil)
13140 (defvar org-log-note-extra)
13141 (defun org-auto-repeat-maybe (done-word)
13142 "Check if the current headline contains a repeated deadline/schedule.
13143 If yes, set TODO state back to what it was and change the base date
13144 of repeating deadline/scheduled time stamps to new date.
13145 This function is run automatically after each state change to a DONE state."
13146 ;; last-state is dynamically scoped into this function
13147 (let* ((repeat (org-get-repeat))
13148 (aa (assoc org-last-state org-todo-kwd-alist))
13149 (interpret (nth 1 aa))
13150 (head (nth 2 aa))
13151 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13152 (msg "Entry repeats: ")
13153 (org-log-done nil)
13154 (org-todo-log-states nil)
13155 re type n what ts time to-state)
13156 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13157 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13158 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13159 org-todo-repeat-to-state))
13160 (unless (and to-state (member to-state org-todo-keywords-1))
13161 (setq to-state (if (eq interpret 'type) org-last-state head)))
13162 (org-todo to-state)
13163 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13164 (org-entry-put nil "LAST_REPEAT" (format-time-string
13165 (org-time-stamp-format t t))))
13166 (when org-log-repeat
13167 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13168 (memq 'org-add-log-note post-command-hook))
13169 ;; OK, we are already setup for some record
13170 (if (eq org-log-repeat 'note)
13171 ;; make sure we take a note, not only a time stamp
13172 (setq org-log-note-how 'note))
13173 ;; Set up for taking a record
13174 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13175 org-last-state
13176 'findpos org-log-repeat)))
13177 (org-back-to-heading t)
13178 (org-add-planning-info nil nil 'closed)
13179 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13180 org-deadline-time-regexp "\\)\\|\\("
13181 org-ts-regexp "\\)"))
13182 (while (re-search-forward
13183 re (save-excursion (outline-next-heading) (point)) t)
13184 (setq type (if (match-end 1) org-scheduled-string
13185 (if (match-end 3) org-deadline-string "Plain:"))
13186 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13187 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13188 (setq n (string-to-number (match-string 2 ts))
13189 what (match-string 3 ts))
13190 (if (equal what "w") (setq n (* n 7) what "d"))
13191 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13192 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13193 ;; Preparation, see if we need to modify the start date for the change
13194 (when (match-end 1)
13195 (setq time (save-match-data (org-time-string-to-time ts)))
13196 (cond
13197 ((equal (match-string 1 ts) ".")
13198 ;; Shift starting date to today
13199 (org-timestamp-change
13200 (- (org-today) (time-to-days time))
13201 'day))
13202 ((equal (match-string 1 ts) "+")
13203 (let ((nshiftmax 10) (nshift 0))
13204 (while (or (= nshift 0)
13205 (<= (time-to-days time)
13206 (time-to-days (current-time))))
13207 (when (= (incf nshift) nshiftmax)
13208 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13209 (user-error "Abort")))
13210 (org-timestamp-change n (cdr (assoc what whata)))
13211 (org-at-timestamp-p t)
13212 (setq ts (match-string 1))
13213 (setq time (save-match-data (org-time-string-to-time ts)))))
13214 (org-timestamp-change (- n) (cdr (assoc what whata)))
13215 ;; rematch, so that we have everything in place for the real shift
13216 (org-at-timestamp-p t)
13217 (setq ts (match-string 1))
13218 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13219 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13220 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13221 (setq org-log-post-message msg)
13222 (message "%s" msg))))
13224 (defun org-show-todo-tree (arg)
13225 "Make a compact tree which shows all headlines marked with TODO.
13226 The tree will show the lines where the regexp matches, and all higher
13227 headlines above the match.
13228 With a \\[universal-argument] prefix, prompt for a regexp to match.
13229 With a numeric prefix N, construct a sparse tree for the Nth element
13230 of `org-todo-keywords-1'."
13231 (interactive "P")
13232 (let ((case-fold-search nil)
13233 (kwd-re
13234 (cond ((null arg) org-not-done-regexp)
13235 ((equal arg '(4))
13236 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13237 (mapcar 'list org-todo-keywords-1))))
13238 (concat "\\("
13239 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13240 "\\)\\>")))
13241 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13242 (regexp-quote (nth (1- (prefix-numeric-value arg))
13243 org-todo-keywords-1)))
13244 (t (user-error "Invalid prefix argument: %s" arg)))))
13245 (message "%d TODO entries found"
13246 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13248 (defun org-deadline (arg &optional time)
13249 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13250 With one universal prefix argument, remove any deadline from the item.
13251 With two universal prefix arguments, prompt for a warning delay.
13252 With argument TIME, set the deadline at the corresponding date. TIME
13253 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13254 (interactive "P")
13255 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13256 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13257 'region-start-level 'region))
13258 org-loop-over-headlines-in-active-region)
13259 (org-map-entries
13260 `(org-deadline ',arg ,time)
13261 org-loop-over-headlines-in-active-region
13262 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13263 (let* ((old-date (org-entry-get nil "DEADLINE"))
13264 (old-date-time (if old-date (org-time-string-to-time old-date)))
13265 (repeater (and old-date
13266 (string-match
13267 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13268 old-date)
13269 (match-string 1 old-date))))
13270 (cond
13271 ((equal arg '(4))
13272 (when (and old-date org-log-redeadline)
13273 (org-add-log-setup 'deldeadline nil old-date 'findpos
13274 org-log-redeadline))
13275 (org-remove-timestamp-with-keyword org-deadline-string)
13276 (message "Item no longer has a deadline."))
13277 ((equal arg '(16))
13278 (save-excursion
13279 (org-back-to-heading t)
13280 (if (re-search-forward
13281 org-deadline-time-regexp
13282 (save-excursion (outline-next-heading) (point)) t)
13283 (let* ((rpl0 (match-string 1))
13284 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13285 (replace-match
13286 (concat org-deadline-string
13287 " <" rpl
13288 (format " -%dd"
13289 (abs
13290 (- (time-to-days
13291 (save-match-data
13292 (org-read-date nil t nil "Warn starting from" old-date-time)))
13293 (time-to-days old-date-time))))
13294 ">") t t))
13295 (user-error "No deadline information to update"))))
13297 (org-add-planning-info 'deadline time 'closed)
13298 (when (and old-date org-log-redeadline
13299 (not (equal old-date
13300 (substring org-last-inserted-timestamp 1 -1))))
13301 (org-add-log-setup 'redeadline nil old-date 'findpos
13302 org-log-redeadline))
13303 (when repeater
13304 (save-excursion
13305 (org-back-to-heading t)
13306 (when (re-search-forward (concat org-deadline-string " "
13307 org-last-inserted-timestamp)
13308 (save-excursion
13309 (outline-next-heading) (point)) t)
13310 (goto-char (1- (match-end 0)))
13311 (insert " " repeater)
13312 (setq org-last-inserted-timestamp
13313 (concat (substring org-last-inserted-timestamp 0 -1)
13314 " " repeater
13315 (substring org-last-inserted-timestamp -1))))))
13316 (message "Deadline on %s" org-last-inserted-timestamp))))))
13318 (defun org-schedule (arg &optional time)
13319 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13320 With one universal prefix argument, remove any scheduling date from the item.
13321 With two universal prefix arguments, prompt for a delay cookie.
13322 With argument TIME, scheduled at the corresponding date. TIME can
13323 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13324 (interactive "P")
13325 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13326 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13327 'region-start-level 'region))
13328 org-loop-over-headlines-in-active-region)
13329 (org-map-entries
13330 `(org-schedule ',arg ,time)
13331 org-loop-over-headlines-in-active-region
13332 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13333 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13334 (old-date-time (if old-date (org-time-string-to-time old-date)))
13335 (repeater (and old-date
13336 (string-match
13337 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13338 old-date)
13339 (match-string 1 old-date))))
13340 (cond
13341 ((equal arg '(4))
13342 (progn
13343 (when (and old-date org-log-reschedule)
13344 (org-add-log-setup 'delschedule nil old-date 'findpos
13345 org-log-reschedule))
13346 (org-remove-timestamp-with-keyword org-scheduled-string)
13347 (message "Item is no longer scheduled.")))
13348 ((equal arg '(16))
13349 (save-excursion
13350 (org-back-to-heading t)
13351 (if (re-search-forward
13352 org-scheduled-time-regexp
13353 (save-excursion (outline-next-heading) (point)) t)
13354 (let* ((rpl0 (match-string 1))
13355 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13356 (replace-match
13357 (concat org-scheduled-string
13358 " <" rpl
13359 (format " -%dd"
13360 (abs
13361 (- (time-to-days
13362 (save-match-data
13363 (org-read-date nil t nil "Delay until" old-date-time)))
13364 (time-to-days old-date-time))))
13365 ">") t t))
13366 (user-error "No scheduled information to update"))))
13368 (org-add-planning-info 'scheduled time 'closed)
13369 (when (and old-date org-log-reschedule
13370 (not (equal old-date
13371 (substring org-last-inserted-timestamp 1 -1))))
13372 (org-add-log-setup 'reschedule nil old-date 'findpos
13373 org-log-reschedule))
13374 (when repeater
13375 (save-excursion
13376 (org-back-to-heading t)
13377 (when (re-search-forward (concat org-scheduled-string " "
13378 org-last-inserted-timestamp)
13379 (save-excursion
13380 (outline-next-heading) (point)) t)
13381 (goto-char (1- (match-end 0)))
13382 (insert " " repeater)
13383 (setq org-last-inserted-timestamp
13384 (concat (substring org-last-inserted-timestamp 0 -1)
13385 " " repeater
13386 (substring org-last-inserted-timestamp -1))))))
13387 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13389 (defun org-get-scheduled-time (pom &optional inherit)
13390 "Get the scheduled time as a time tuple, of a format suitable
13391 for calling org-schedule with, or if there is no scheduling,
13392 returns nil."
13393 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13394 (when time
13395 (apply 'encode-time (org-parse-time-string time)))))
13397 (defun org-get-deadline-time (pom &optional inherit)
13398 "Get the deadline as a time tuple, of a format suitable for
13399 calling org-deadline with, or if there is no scheduling, returns
13400 nil."
13401 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13402 (when time
13403 (apply 'encode-time (org-parse-time-string time)))))
13405 (defun org-remove-timestamp-with-keyword (keyword)
13406 "Remove all time stamps with KEYWORD in the current entry."
13407 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13408 beg)
13409 (save-excursion
13410 (org-back-to-heading t)
13411 (setq beg (point))
13412 (outline-next-heading)
13413 (while (re-search-backward re beg t)
13414 (replace-match "")
13415 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13416 (equal (char-before) ?\ ))
13417 (backward-delete-char 1)
13418 (if (string-match "^[ \t]*$" (buffer-substring
13419 (point-at-bol) (point-at-eol)))
13420 (delete-region (point-at-bol)
13421 (min (point-max) (1+ (point-at-eol))))))))))
13423 (defvar org-time-was-given) ; dynamically scoped parameter
13424 (defvar org-end-time-was-given) ; dynamically scoped parameter
13426 (defun org-at-planning-p ()
13427 "Non-nil when point is on a planning info line."
13428 ;; This is as accurate and faster than `org-element-at-point' since
13429 ;; planning info location is fixed in the section.
13430 (org-with-wide-buffer
13431 (beginning-of-line)
13432 (and (org-looking-at-p org-planning-line-re)
13433 (eq (point)
13434 (ignore-errors
13435 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13436 (org-back-to-heading t)
13437 (org-with-limited-levels (org-back-to-heading t)))
13438 (line-beginning-position 2))))))
13440 (defun org-add-planning-info (what &optional time &rest remove)
13441 "Insert new timestamp with keyword in the planning line.
13442 WHAT indicates what kind of time stamp to add. It is a symbol
13443 among `closed', `deadline', `scheduled' and nil. TIME indicates
13444 the time to use. If none is given, the user is prompted for
13445 a date. REMOVE indicates what kind of entries to remove. An old
13446 WHAT entry will also be removed."
13447 (let (org-time-was-given org-end-time-was-given default-time default-input)
13448 (catch 'exit
13449 (when (and (memq what '(scheduled deadline))
13450 (or (not time)
13451 (and (stringp time)
13452 (string-match "^[-+]+[0-9]" time))))
13453 ;; Try to get a default date/time from existing timestamp
13454 (save-excursion
13455 (org-back-to-heading t)
13456 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13457 (when (re-search-forward (if (eq what 'scheduled)
13458 org-scheduled-time-regexp
13459 org-deadline-time-regexp)
13460 end t)
13461 (setq ts (match-string 1)
13462 default-time (apply 'encode-time (org-parse-time-string ts))
13463 default-input (and ts (org-get-compact-tod ts)))))))
13464 (when what
13465 (setq time
13466 (if (stringp time)
13467 ;; This is a string (relative or absolute), set
13468 ;; proper date.
13469 (apply #'encode-time
13470 (org-read-date-analyze
13471 time default-time (decode-time default-time)))
13472 ;; If necessary, get the time from the user
13473 (or time (org-read-date nil 'to-time nil nil
13474 default-time default-input)))))
13476 (org-with-wide-buffer
13477 (org-back-to-heading t)
13478 (forward-line)
13479 (unless (bolp) (insert "\n"))
13480 (cond ((org-looking-at-p org-planning-line-re)
13481 ;; Move to current indentation.
13482 (skip-chars-forward " \t")
13483 ;; Check if we have to remove something.
13484 (dolist (type (if what (cons what remove) remove))
13485 (when (save-excursion
13486 (re-search-forward
13487 (case type
13488 (closed org-closed-time-regexp)
13489 (deadline org-deadline-time-regexp)
13490 (scheduled org-scheduled-time-regexp)
13491 (otherwise (error "Invalid planning type: %s" type)))
13492 (line-end-position) t))
13493 (replace-match "")
13494 (when (looking-at "--+<[^>]+>") (replace-match ""))
13495 (when (and (not what) (eq type 'closed))
13496 (save-excursion
13497 (beginning-of-line)
13498 (if (looking-at "[ \t]*$")
13499 (delete-region (point) (1+ (point-at-eol)))))))
13500 ;; Remove leading white spaces.
13501 (when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
13502 ((not what) (throw 'exit nil)) ; Nothing to do.
13503 (t (insert-before-markers "\n")
13504 (backward-char 1)
13505 (when org-adapt-indentation
13506 (org-indent-to-column (1+ (org-outline-level))))))
13507 (when what
13508 ;; Insert planning keyword.
13509 (insert (case what
13510 (closed org-closed-string)
13511 (deadline org-deadline-string)
13512 (scheduled org-scheduled-string)
13513 (otherwise (error "Invalid planning type: %s" what)))
13514 " ")
13515 ;; Insert associated timestamp.
13516 (let ((ts (org-insert-time-stamp
13517 time
13518 (or org-time-was-given
13519 (and (eq what 'closed) org-log-done-with-time))
13520 (eq what 'closed)
13521 nil nil (list org-end-time-was-given))))
13522 (unless (eolp) (insert " "))
13523 ts))))))
13525 (defvar org-log-note-marker (make-marker))
13526 (defvar org-log-note-purpose nil)
13527 (defvar org-log-note-state nil)
13528 (defvar org-log-note-previous-state nil)
13529 (defvar org-log-note-extra nil)
13530 (defvar org-log-note-window-configuration nil)
13531 (defvar org-log-note-return-to (make-marker))
13532 (defvar org-log-note-effective-time nil
13533 "Remembered current time so that dynamically scoped
13534 `org-extend-today-until' affects tha timestamps in state change
13535 log")
13537 (defvar org-log-post-message nil
13538 "Message to be displayed after a log note has been stored.
13539 The auto-repeater uses this.")
13541 (defun org-add-note ()
13542 "Add a note to the current entry.
13543 This is done in the same way as adding a state change note."
13544 (interactive)
13545 (org-add-log-setup 'note nil nil 'findpos nil))
13547 (defun org-log-beginning (&optional create)
13548 "Return expected start of log notes in current entry.
13549 When optional argument CREATE is non-nil, the function creates
13550 a drawer to store notes, if necessary. Returned position ignores
13551 narrowing."
13552 (org-with-wide-buffer
13553 (org-end-of-meta-data)
13554 (let ((end (if (org-at-heading-p) (point)
13555 (save-excursion (outline-next-heading) (point))))
13556 (drawer (org-log-into-drawer)))
13557 (cond
13558 (drawer
13559 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13560 (case-fold-search t))
13561 (catch 'exit
13562 ;; Try to find existing drawer.
13563 (while (re-search-forward regexp end t)
13564 (let ((element (org-element-at-point)))
13565 (when (eq (org-element-type element) 'drawer)
13566 (let ((cend (org-element-property :contents-end element)))
13567 (when (and (not org-log-states-order-reversed) cend)
13568 (goto-char cend)))
13569 (throw 'exit nil))))
13570 ;; No drawer found. Create one, if permitted.
13571 (when create
13572 (unless (bolp) (insert "\n"))
13573 (let ((beg (point)))
13574 (insert ":" drawer ":\n:END:\n")
13575 (org-indent-region beg (point)))
13576 (end-of-line -1)))))
13577 (org-log-state-notes-insert-after-drawers
13578 (while (and (looking-at org-drawer-regexp)
13579 (progn (goto-char (match-end 0))
13580 (re-search-forward org-property-end-re end t)))
13581 (forward-line)))))
13582 (if (bolp) (point) (line-beginning-position 2))))
13584 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13585 "Set up the post command hook to take a note.
13586 If this is about to TODO state change, the new state is expected in STATE.
13587 When FINDPOS is non-nil, find the correct position for the note in
13588 the current entry. If not, assume that it can be inserted at point.
13589 HOW is an indicator what kind of note should be created.
13590 EXTRA is additional text that will be inserted into the notes buffer."
13591 (org-with-wide-buffer
13592 (when findpos
13593 (goto-char (org-log-beginning t))
13594 (unless org-log-states-order-reversed
13595 (org-skip-over-state-notes)
13596 (skip-chars-backward " \t\n\r")
13597 (forward-line)))
13598 (move-marker org-log-note-marker (point))
13599 ;; Preserve position even if a property drawer is inserted in the
13600 ;; process.
13601 (set-marker-insertion-type org-log-note-marker t)
13602 (setq org-log-note-purpose purpose
13603 org-log-note-state state
13604 org-log-note-previous-state prev-state
13605 org-log-note-how how
13606 org-log-note-extra extra
13607 org-log-note-effective-time (org-current-effective-time))
13608 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13610 (defun org-skip-over-state-notes ()
13611 "Skip past the list of State notes in an entry."
13612 (when (ignore-errors (goto-char (org-in-item-p)))
13613 (let* ((struct (org-list-struct))
13614 (prevs (org-list-prevs-alist struct))
13615 (regexp
13616 (concat "[ \t]*- +"
13617 (replace-regexp-in-string
13618 " +" " +"
13619 (org-replace-escapes
13620 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13621 `(("%d" . ,org-ts-regexp-inactive)
13622 ("%D" . ,org-ts-regexp)
13623 ("%s" . "\"\\S-+\"")
13624 ("%S" . "\"\\S-+\"")
13625 ("%t" . ,org-ts-regexp-inactive)
13626 ("%T" . ,org-ts-regexp)
13627 ("%u" . ".*?")
13628 ("%U" . ".*?")))))))
13629 (while (org-looking-at-p regexp)
13630 (goto-char (or (org-list-get-next-item (point) struct prevs)
13631 (org-list-get-item-end (point) struct)))))))
13633 (defun org-add-log-note (&optional purpose)
13634 "Pop up a window for taking a note, and add this note later at point."
13635 (remove-hook 'post-command-hook 'org-add-log-note)
13636 (setq org-log-note-window-configuration (current-window-configuration))
13637 (delete-other-windows)
13638 (move-marker org-log-note-return-to (point))
13639 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13640 (goto-char org-log-note-marker)
13641 (org-switch-to-buffer-other-window "*Org Note*")
13642 (erase-buffer)
13643 (if (memq org-log-note-how '(time state))
13644 (let (current-prefix-arg) (org-store-log-note))
13645 (let ((org-inhibit-startup t)) (org-mode))
13646 (insert (format "# Insert note for %s.
13647 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13648 (cond
13649 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13650 ((eq org-log-note-purpose 'done) "closed todo item")
13651 ((eq org-log-note-purpose 'state)
13652 (format "state change from \"%s\" to \"%s\""
13653 (or org-log-note-previous-state "")
13654 (or org-log-note-state "")))
13655 ((eq org-log-note-purpose 'reschedule)
13656 "rescheduling")
13657 ((eq org-log-note-purpose 'delschedule)
13658 "no longer scheduled")
13659 ((eq org-log-note-purpose 'redeadline)
13660 "changing deadline")
13661 ((eq org-log-note-purpose 'deldeadline)
13662 "removing deadline")
13663 ((eq org-log-note-purpose 'refile)
13664 "refiling")
13665 ((eq org-log-note-purpose 'note)
13666 "this entry")
13667 (t (error "This should not happen")))))
13668 (if org-log-note-extra (insert org-log-note-extra))
13669 (org-set-local 'org-finish-function 'org-store-log-note)
13670 (run-hooks 'org-log-buffer-setup-hook)))
13672 (defvar org-note-abort nil) ; dynamically scoped
13673 (defun org-store-log-note ()
13674 "Finish taking a log note, and insert it to where it belongs."
13675 (let ((txt (buffer-string)))
13676 (kill-buffer (current-buffer))
13677 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13678 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13679 (setq txt (replace-match "" t t txt)))
13680 (if (string-match "\\s-+\\'" txt)
13681 (setq txt (replace-match "" t t txt)))
13682 (setq lines (org-split-string txt "\n"))
13683 (when (and note (string-match "\\S-" note))
13684 (setq note
13685 (org-replace-escapes
13686 note
13687 (list (cons "%u" (user-login-name))
13688 (cons "%U" user-full-name)
13689 (cons "%t" (format-time-string
13690 (org-time-stamp-format 'long 'inactive)
13691 org-log-note-effective-time))
13692 (cons "%T" (format-time-string
13693 (org-time-stamp-format 'long nil)
13694 org-log-note-effective-time))
13695 (cons "%d" (format-time-string
13696 (org-time-stamp-format nil 'inactive)
13697 org-log-note-effective-time))
13698 (cons "%D" (format-time-string
13699 (org-time-stamp-format nil nil)
13700 org-log-note-effective-time))
13701 (cons "%s" (if org-log-note-state
13702 (concat "\"" org-log-note-state "\"")
13703 ""))
13704 (cons "%S" (if org-log-note-previous-state
13705 (concat "\"" org-log-note-previous-state "\"")
13706 "\"\"")))))
13707 (when lines (setq note (concat note " \\\\")))
13708 (push note lines))
13709 (when (or current-prefix-arg org-note-abort)
13710 (when (org-log-into-drawer)
13711 (org-remove-empty-drawer-at org-log-note-marker))
13712 (setq lines nil))
13713 (when lines
13714 (with-current-buffer (marker-buffer org-log-note-marker)
13715 (save-excursion
13716 (goto-char org-log-note-marker)
13717 (move-marker org-log-note-marker nil)
13718 ;; Make sure point is at the beginning of an empty line.
13719 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13720 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13721 ;; In an existing list, add a new item at the top level.
13722 ;; Otherwise, indent line like a regular one.
13723 (let ((itemp (org-in-item-p)))
13724 (if itemp
13725 (org-indent-line-to
13726 (let ((struct (save-excursion
13727 (goto-char itemp) (org-list-struct))))
13728 (org-list-get-ind (org-list-get-top-point struct) struct)))
13729 (org-indent-line)))
13730 (insert (org-list-bullet-string "-") (pop lines))
13731 (let ((ind (org-list-item-body-column (line-beginning-position))))
13732 (dolist (line lines)
13733 (insert "\n")
13734 (org-indent-line-to ind)
13735 (insert line)))
13736 (message "Note stored")
13737 (org-back-to-heading t)
13738 (org-cycle-hide-drawers 'children))
13739 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13740 ;; from within `org-add-log-note' because `buffer-undo-list'
13741 ;; is then modified outside of `org-with-remote-undo'.
13742 (when (eq this-command 'org-agenda-todo)
13743 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13744 ;; Don't add undo information when called from `org-agenda-todo'
13745 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13746 (set-window-configuration org-log-note-window-configuration)
13747 (with-current-buffer (marker-buffer org-log-note-return-to)
13748 (goto-char org-log-note-return-to))
13749 (move-marker org-log-note-return-to nil)
13750 (and org-log-post-message (message "%s" org-log-post-message))))
13752 (defun org-remove-empty-drawer-at (pos)
13753 "Remove an empty drawer at position POS.
13754 POS may also be a marker."
13755 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13756 (org-with-wide-buffer
13757 (goto-char pos)
13758 (let ((drawer (org-element-at-point)))
13759 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13760 (not (org-element-property :contents-begin drawer)))
13761 (delete-region (org-element-property :begin drawer)
13762 (progn (goto-char (org-element-property :end drawer))
13763 (skip-chars-backward " \r\t\n")
13764 (forward-line)
13765 (point))))))))
13767 (defvar org-ts-type nil)
13768 (defun org-sparse-tree (&optional arg type)
13769 "Create a sparse tree, prompt for the details.
13770 This command can create sparse trees. You first need to select the type
13771 of match used to create the tree:
13773 t Show all TODO entries.
13774 T Show entries with a specific TODO keyword.
13775 m Show entries selected by a tags/property match.
13776 p Enter a property name and its value (both with completion on existing
13777 names/values) and show entries with that property.
13778 r Show entries matching a regular expression (`/' can be used as well).
13779 b Show deadlines and scheduled items before a date.
13780 a Show deadlines and scheduled items after a date.
13781 d Show deadlines due within `org-deadline-warning-days'.
13782 D Show deadlines and scheduled items between a date range."
13783 (interactive "P")
13784 (setq type (or type org-sparse-tree-default-date-type))
13785 (setq org-ts-type type)
13786 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13787 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13788 [c]ycle through date types: %s"
13789 (case type
13790 (all "all timestamps")
13791 (scheduled "only scheduled")
13792 (deadline "only deadline")
13793 (active "only active timestamps")
13794 (inactive "only inactive timestamps")
13795 (closed "with a closed time-stamp")
13796 (otherwise "scheduled/deadline")))
13797 (let ((answer (read-char-exclusive)))
13798 (case answer
13800 (org-sparse-tree
13802 (cadr
13803 (memq type '(nil all scheduled deadline active inactive closed)))))
13804 (?d (call-interactively 'org-check-deadlines))
13805 (?b (call-interactively 'org-check-before-date))
13806 (?a (call-interactively 'org-check-after-date))
13807 (?D (call-interactively 'org-check-dates-range))
13808 (?t (call-interactively 'org-show-todo-tree))
13809 (?T (org-show-todo-tree '(4)))
13810 (?m (call-interactively 'org-match-sparse-tree))
13811 ((?p ?P)
13812 (let* ((kwd (org-icompleting-read
13813 "Property: " (mapcar 'list (org-buffer-property-keys))))
13814 (value (org-icompleting-read
13815 "Value: " (mapcar 'list (org-property-values kwd)))))
13816 (unless (string-match "\\`{.*}\\'" value)
13817 (setq value (concat "\"" value "\"")))
13818 (org-match-sparse-tree arg (concat kwd "=" value))))
13819 ((?r ?R ?/) (call-interactively 'org-occur))
13820 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13822 (defvar org-occur-highlights nil
13823 "List of overlays used for occur matches.")
13824 (make-variable-buffer-local 'org-occur-highlights)
13825 (defvar org-occur-parameters nil
13826 "Parameters of the active org-occur calls.
13827 This is a list, each call to org-occur pushes as cons cell,
13828 containing the regular expression and the callback, onto the list.
13829 The list can contain several entries if `org-occur' has been called
13830 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13831 will only contain one set of parameters. When the highlights are
13832 removed (for example with `C-c C-c', or with the next edit (depending
13833 on `org-remove-highlights-with-change'), this variable is emptied
13834 as well.")
13835 (make-variable-buffer-local 'org-occur-parameters)
13837 (defun org-occur (regexp &optional keep-previous callback)
13838 "Make a compact tree which shows all matches of REGEXP.
13839 The tree will show the lines where the regexp matches, and all higher
13840 headlines above the match. It will also show the heading after the match,
13841 to make sure editing the matching entry is easy.
13842 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13843 call to `org-occur' will be kept, to allow stacking of calls to this
13844 command.
13845 If CALLBACK is non-nil, it is a function which is called to confirm
13846 that the match should indeed be shown."
13847 (interactive "sRegexp: \nP")
13848 (when (equal regexp "")
13849 (user-error "Regexp cannot be empty"))
13850 (unless keep-previous
13851 (org-remove-occur-highlights nil nil t))
13852 (push (cons regexp callback) org-occur-parameters)
13853 (let ((cnt 0))
13854 (save-excursion
13855 (goto-char (point-min))
13856 (if (or (not keep-previous) ; do not want to keep
13857 (not org-occur-highlights)) ; no previous matches
13858 ;; hide everything
13859 (org-overview))
13860 (while (re-search-forward regexp nil t)
13861 (when (or (not callback)
13862 (save-match-data (funcall callback)))
13863 (setq cnt (1+ cnt))
13864 (when org-highlight-sparse-tree-matches
13865 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13866 (org-show-context 'occur-tree))))
13867 (when org-remove-highlights-with-change
13868 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13869 nil 'local))
13870 (unless org-sparse-tree-open-archived-trees
13871 (org-hide-archived-subtrees (point-min) (point-max)))
13872 (run-hooks 'org-occur-hook)
13873 (if (org-called-interactively-p 'interactive)
13874 (message "%d match(es) for regexp %s" cnt regexp))
13875 cnt))
13877 (defun org-occur-next-match (&optional n reset)
13878 "Function for `next-error-function' to find sparse tree matches.
13879 N is the number of matches to move, when negative move backwards.
13880 RESET is entirely ignored - this function always goes back to the
13881 starting point when no match is found."
13882 (let* ((limit (if (< n 0) (point-min) (point-max)))
13883 (search-func (if (< n 0)
13884 'previous-single-char-property-change
13885 'next-single-char-property-change))
13886 (n (abs n))
13887 (pos (point))
13889 (catch 'exit
13890 (while (setq p1 (funcall search-func (point) 'org-type))
13891 (when (equal p1 limit)
13892 (goto-char pos)
13893 (user-error "No more matches"))
13894 (when (equal (get-char-property p1 'org-type) 'org-occur)
13895 (setq n (1- n))
13896 (when (= n 0)
13897 (goto-char p1)
13898 (throw 'exit (point))))
13899 (goto-char p1))
13900 (goto-char p1)
13901 (user-error "No more matches"))))
13903 (defun org-show-context (&optional key)
13904 "Make sure point and context are visible.
13905 Optional argument KEY, when non-nil, is a symbol. See
13906 `org-show-context-detail' for allowed values and how much is to
13907 be shown."
13908 (org-show-set-visibility
13909 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13910 ((cdr (assq key org-show-context-detail)))
13911 (t (cdr (assq 'default org-show-context-detail))))))
13913 (defun org-show-set-visibility (detail)
13914 "Set visibility around point according to DETAIL.
13915 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13916 `tree', `canonical' or t. See `org-show-context-detail' for more
13917 information."
13918 (unless (org-before-first-heading-p)
13919 ;; Show current heading and possibly its entry, following headline
13920 ;; or all children.
13921 (if (and (org-at-heading-p) (not (eq detail 'local)))
13922 (org-flag-heading nil)
13923 (org-show-entry)
13924 (org-with-limited-levels
13925 (case detail
13926 ((tree canonical t) (show-children))
13927 ((nil minimal ancestors))
13928 (t (save-excursion
13929 (outline-next-heading)
13930 (org-flag-heading nil))))))
13931 ;; Show all siblings.
13932 (when (eq detail 'lineage) (org-show-siblings))
13933 ;; Show ancestors, possibly with their children.
13934 (when (memq detail '(ancestors lineage tree canonical t))
13935 (save-excursion
13936 (while (org-up-heading-safe)
13937 (org-flag-heading nil)
13938 (when (memq detail '(canonical t)) (org-show-entry))
13939 (when (memq detail '(tree canonical t)) (show-children)))))))
13941 (defvar org-reveal-start-hook nil
13942 "Hook run before revealing a location.")
13944 (defun org-reveal (&optional siblings)
13945 "Show current entry, hierarchy above it, and the following headline.
13947 This can be used to show a consistent set of context around
13948 locations exposed with `org-show-context'.
13950 With optional argument SIBLINGS, on each level of the hierarchy all
13951 siblings are shown. This repairs the tree structure to what it would
13952 look like when opened with hierarchical calls to `org-cycle'.
13954 With double optional argument \\[universal-argument] \\[universal-argument], \
13955 go to the parent and show the
13956 entire tree."
13957 (interactive "P")
13958 (run-hooks 'org-reveal-start-hook)
13959 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
13960 ((equal siblings '(16))
13961 (save-excursion
13962 (when (org-up-heading-safe)
13963 (org-show-subtree)
13964 (run-hook-with-args 'org-cycle-hook 'subtree))))
13965 (t (org-show-set-visibility 'lineage))))
13967 (defun org-highlight-new-match (beg end)
13968 "Highlight from BEG to END and mark the highlight is an occur headline."
13969 (let ((ov (make-overlay beg end)))
13970 (overlay-put ov 'face 'secondary-selection)
13971 (overlay-put ov 'org-type 'org-occur)
13972 (push ov org-occur-highlights)))
13974 (defun org-remove-occur-highlights (&optional beg end noremove)
13975 "Remove the occur highlights from the buffer.
13976 BEG and END are ignored. If NOREMOVE is nil, remove this function
13977 from the `before-change-functions' in the current buffer."
13978 (interactive)
13979 (unless org-inhibit-highlight-removal
13980 (mapc 'delete-overlay org-occur-highlights)
13981 (setq org-occur-highlights nil)
13982 (setq org-occur-parameters nil)
13983 (unless noremove
13984 (remove-hook 'before-change-functions
13985 'org-remove-occur-highlights 'local))))
13987 ;;;; Priorities
13989 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13990 "Regular expression matching the priority indicator.")
13992 (defvar org-remove-priority-next-time nil)
13994 (defun org-priority-up ()
13995 "Increase the priority of the current item."
13996 (interactive)
13997 (org-priority 'up))
13999 (defun org-priority-down ()
14000 "Decrease the priority of the current item."
14001 (interactive)
14002 (org-priority 'down))
14004 (defun org-priority (&optional action show)
14005 "Change the priority of an item.
14006 ACTION can be `set', `up', `down', or a character."
14007 (interactive "P")
14008 (if (equal action '(4))
14009 (org-show-priority)
14010 (unless org-enable-priority-commands
14011 (user-error "Priority commands are disabled"))
14012 (setq action (or action 'set))
14013 (let (current new news have remove)
14014 (save-excursion
14015 (org-back-to-heading t)
14016 (if (looking-at org-priority-regexp)
14017 (setq current (string-to-char (match-string 2))
14018 have t))
14019 (cond
14020 ((eq action 'remove)
14021 (setq remove t new ?\ ))
14022 ((or (eq action 'set)
14023 (if (featurep 'xemacs) (characterp action) (integerp action)))
14024 (if (not (eq action 'set))
14025 (setq new action)
14026 (message "Priority %c-%c, SPC to remove: "
14027 org-highest-priority org-lowest-priority)
14028 (save-match-data
14029 (setq new (read-char-exclusive))))
14030 (if (and (= (upcase org-highest-priority) org-highest-priority)
14031 (= (upcase org-lowest-priority) org-lowest-priority))
14032 (setq new (upcase new)))
14033 (cond ((equal new ?\ ) (setq remove t))
14034 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14035 (user-error "Priority must be between `%c' and `%c'"
14036 org-highest-priority org-lowest-priority))))
14037 ((eq action 'up)
14038 (setq new (if have
14039 (1- current) ; normal cycling
14040 ;; last priority was empty
14041 (if (eq last-command this-command)
14042 org-lowest-priority ; wrap around empty to lowest
14043 ;; default
14044 (if org-priority-start-cycle-with-default
14045 org-default-priority
14046 (1- org-default-priority))))))
14047 ((eq action 'down)
14048 (setq new (if have
14049 (1+ current) ; normal cycling
14050 ;; last priority was empty
14051 (if (eq last-command this-command)
14052 org-highest-priority ; wrap around empty to highest
14053 ;; default
14054 (if org-priority-start-cycle-with-default
14055 org-default-priority
14056 (1+ org-default-priority))))))
14057 (t (user-error "Invalid action")))
14058 (if (or (< (upcase new) org-highest-priority)
14059 (> (upcase new) org-lowest-priority))
14060 (if (and (memq action '(up down))
14061 (not have) (not (eq last-command this-command)))
14062 ;; `new' is from default priority
14063 (error
14064 "The default can not be set, see `org-default-priority' why")
14065 ;; normal cycling: `new' is beyond highest/lowest priority
14066 ;; and is wrapped around to the empty priority
14067 (setq remove t)))
14068 (setq news (format "%c" new))
14069 (if have
14070 (if remove
14071 (replace-match "" t t nil 1)
14072 (replace-match news t t nil 2))
14073 (if remove
14074 (user-error "No priority cookie found in line")
14075 (let ((case-fold-search nil))
14076 (looking-at org-todo-line-regexp))
14077 (if (match-end 2)
14078 (progn
14079 (goto-char (match-end 2))
14080 (insert " [#" news "]"))
14081 (goto-char (match-beginning 3))
14082 (insert "[#" news "] "))))
14083 (org-set-tags nil 'align))
14084 (if remove
14085 (message "Priority removed")
14086 (message "Priority of current item set to %s" news)))))
14088 (defun org-show-priority ()
14089 "Show the priority of the current item.
14090 This priority is composed of the main priority given with the [#A] cookies,
14091 and by additional input from the age of a schedules or deadline entry."
14092 (interactive)
14093 (let ((pri (if (eq major-mode 'org-agenda-mode)
14094 (org-get-at-bol 'priority)
14095 (save-excursion
14096 (save-match-data
14097 (beginning-of-line)
14098 (and (looking-at org-heading-regexp)
14099 (org-get-priority (match-string 0))))))))
14100 (message "Priority is %d" (if pri pri -1000))))
14102 (defun org-get-priority (s)
14103 "Find priority cookie and return priority."
14104 (save-match-data
14105 (if (functionp org-get-priority-function)
14106 (funcall org-get-priority-function)
14107 (if (not (string-match org-priority-regexp s))
14108 (* 1000 (- org-lowest-priority org-default-priority))
14109 (* 1000 (- org-lowest-priority
14110 (string-to-char (match-string 2 s))))))))
14112 ;;;; Tags
14114 (defvar org-agenda-archives-mode)
14115 (defvar org-map-continue-from nil
14116 "Position from where mapping should continue.
14117 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14119 (defvar org-scanner-tags nil
14120 "The current tag list while the tags scanner is running.")
14121 (defvar org-trust-scanner-tags nil
14122 "Should `org-get-tags-at' use the tags for the scanner.
14123 This is for internal dynamical scoping only.
14124 When this is non-nil, the function `org-get-tags-at' will return the value
14125 of `org-scanner-tags' instead of building the list by itself. This
14126 can lead to large speed-ups when the tags scanner is used in a file with
14127 many entries, and when the list of tags is retrieved, for example to
14128 obtain a list of properties. Building the tags list for each entry in such
14129 a file becomes an N^2 operation - but with this variable set, it scales
14130 as N.")
14132 (defun org-scan-tags (action matcher todo-only &optional start-level)
14133 "Scan headline tags with inheritance and produce output ACTION.
14135 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14136 or `agenda' to produce an entry list for an agenda view. It can also be
14137 a Lisp form or a function that should be called at each matched headline, in
14138 this case the return value is a list of all return values from these calls.
14140 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14141 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14142 only lines with a not-done TODO keyword are included in the output.
14143 This should be the same variable that was scoped into
14144 and set by `org-make-tags-matcher' when it constructed MATCHER.
14146 START-LEVEL can be a string with asterisks, reducing the scope to
14147 headlines matching this string."
14148 (require 'org-agenda)
14149 (let* ((re (concat "^"
14150 (if start-level
14151 ;; Get the correct level to match
14152 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14153 org-outline-regexp)
14154 " *\\(\\<\\("
14155 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14156 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14157 (props (list 'face 'default
14158 'done-face 'org-agenda-done
14159 'undone-face 'default
14160 'mouse-face 'highlight
14161 'org-not-done-regexp org-not-done-regexp
14162 'org-todo-regexp org-todo-regexp
14163 'org-complex-heading-regexp org-complex-heading-regexp
14164 'help-echo
14165 (format "mouse-2 or RET jump to org file %s"
14166 (abbreviate-file-name
14167 (or (buffer-file-name (buffer-base-buffer))
14168 (buffer-name (buffer-base-buffer)))))))
14169 (org-map-continue-from nil)
14170 lspos tags tags-list
14171 (tags-alist (list (cons 0 org-file-tags)))
14172 (llast 0) rtn rtn1 level category i txt
14173 todo marker entry priority
14174 ts-date ts-date-type ts-date-pair)
14175 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14176 (setq action (list 'lambda nil action)))
14177 (save-excursion
14178 (goto-char (point-min))
14179 (when (eq action 'sparse-tree)
14180 (org-overview)
14181 (org-remove-occur-highlights))
14182 (while (let (case-fold-search)
14183 (re-search-forward re nil t))
14184 (setq org-map-continue-from nil)
14185 (catch :skip
14186 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14187 tags (if (match-end 4) (org-match-string-no-properties 4)))
14188 (goto-char (setq lspos (match-beginning 0)))
14189 (setq level (org-reduced-level (org-outline-level))
14190 category (org-get-category))
14191 (when (eq action 'agenda)
14192 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14193 ts-date (car ts-date-pair)
14194 ts-date-type (cdr ts-date-pair)))
14195 (setq i llast llast level)
14196 ;; remove tag lists from same and sublevels
14197 (while (>= i level)
14198 (when (setq entry (assoc i tags-alist))
14199 (setq tags-alist (delete entry tags-alist)))
14200 (setq i (1- i)))
14201 ;; add the next tags
14202 (when tags
14203 (setq tags (org-split-string tags ":")
14204 tags-alist
14205 (cons (cons level tags) tags-alist)))
14206 ;; compile tags for current headline
14207 (setq tags-list
14208 (if org-use-tag-inheritance
14209 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14210 tags)
14211 org-scanner-tags tags-list)
14212 (when org-use-tag-inheritance
14213 (setcdr (car tags-alist)
14214 (mapcar (lambda (x)
14215 (setq x (copy-sequence x))
14216 (org-add-prop-inherited x))
14217 (cdar tags-alist))))
14218 (when (and tags org-use-tag-inheritance
14219 (or (not (eq t org-use-tag-inheritance))
14220 org-tags-exclude-from-inheritance))
14221 ;; selective inheritance, remove uninherited ones
14222 (setcdr (car tags-alist)
14223 (org-remove-uninherited-tags (cdar tags-alist))))
14224 (when (and
14226 ;; eval matcher only when the todo condition is OK
14227 (and (or (not todo-only) (member todo org-not-done-keywords))
14228 (let ((case-fold-search t) (org-trust-scanner-tags t))
14229 (eval matcher)))
14231 ;; Call the skipper, but return t if it does not skip,
14232 ;; so that the `and' form continues evaluating
14233 (progn
14234 (unless (eq action 'sparse-tree) (org-agenda-skip))
14237 ;; Check if timestamps are deselecting this entry
14238 (or (not todo-only)
14239 (and (member todo org-not-done-keywords)
14240 (or (not org-agenda-tags-todo-honor-ignore-options)
14241 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14243 ;; select this headline
14244 (cond
14245 ((eq action 'sparse-tree)
14246 (and org-highlight-sparse-tree-matches
14247 (org-get-heading) (match-end 0)
14248 (org-highlight-new-match
14249 (match-beginning 1) (match-end 1)))
14250 (org-show-context 'tags-tree))
14251 ((eq action 'agenda)
14252 (setq txt (org-agenda-format-item
14254 (concat
14255 (if (eq org-tags-match-list-sublevels 'indented)
14256 (make-string (1- level) ?.) "")
14257 (org-get-heading))
14258 level category
14259 tags-list)
14260 priority (org-get-priority txt))
14261 (goto-char lspos)
14262 (setq marker (org-agenda-new-marker))
14263 (org-add-props txt props
14264 'org-marker marker 'org-hd-marker marker 'org-category category
14265 'todo-state todo
14266 'ts-date ts-date
14267 'priority priority
14268 'type (concat "tagsmatch" ts-date-type))
14269 (push txt rtn))
14270 ((functionp action)
14271 (setq org-map-continue-from nil)
14272 (save-excursion
14273 (setq rtn1 (funcall action))
14274 (push rtn1 rtn)))
14275 (t (user-error "Invalid action")))
14277 ;; if we are to skip sublevels, jump to end of subtree
14278 (unless org-tags-match-list-sublevels
14279 (org-end-of-subtree t)
14280 (backward-char 1))))
14281 ;; Get the correct position from where to continue
14282 (if org-map-continue-from
14283 (goto-char org-map-continue-from)
14284 (and (= (point) lspos) (end-of-line 1)))))
14285 (when (and (eq action 'sparse-tree)
14286 (not org-sparse-tree-open-archived-trees))
14287 (org-hide-archived-subtrees (point-min) (point-max)))
14288 (nreverse rtn)))
14290 (defun org-remove-uninherited-tags (tags)
14291 "Remove all tags that are not inherited from the list TAGS."
14292 (cond
14293 ((eq org-use-tag-inheritance t)
14294 (if org-tags-exclude-from-inheritance
14295 (org-delete-all org-tags-exclude-from-inheritance tags)
14296 tags))
14297 ((not org-use-tag-inheritance) nil)
14298 ((stringp org-use-tag-inheritance)
14299 (delq nil (mapcar
14300 (lambda (x)
14301 (if (and (string-match org-use-tag-inheritance x)
14302 (not (member x org-tags-exclude-from-inheritance)))
14303 x nil))
14304 tags)))
14305 ((listp org-use-tag-inheritance)
14306 (delq nil (mapcar
14307 (lambda (x)
14308 (if (member x org-use-tag-inheritance) x nil))
14309 tags)))))
14311 (defun org-match-sparse-tree (&optional todo-only match)
14312 "Create a sparse tree according to tags string MATCH.
14313 MATCH can contain positive and negative selection of tags, like
14314 \"+WORK+URGENT-WITHBOSS\".
14315 If optional argument TODO-ONLY is non-nil, only select lines that are
14316 also TODO lines."
14317 (interactive "P")
14318 (org-agenda-prepare-buffers (list (current-buffer)))
14319 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14321 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14323 (defvar org-cached-props nil)
14324 (defun org-cached-entry-get (pom property)
14325 (if (or (eq t org-use-property-inheritance)
14326 (and (stringp org-use-property-inheritance)
14327 (let ((case-fold-search t))
14328 (org-string-match-p org-use-property-inheritance property)))
14329 (and (listp org-use-property-inheritance)
14330 (member-ignore-case property org-use-property-inheritance)))
14331 ;; Caching is not possible, check it directly.
14332 (org-entry-get pom property 'inherit)
14333 ;; Get all properties, so we can do complicated checks easily.
14334 (cdr (assoc-string property
14335 (or org-cached-props
14336 (setq org-cached-props (org-entry-properties pom)))
14337 t))))
14339 (defun org-global-tags-completion-table (&optional files)
14340 "Return the list of all tags in all agenda buffer/files.
14341 Optional FILES argument is a list of files which can be used
14342 instead of the agenda files."
14343 (save-excursion
14344 (org-uniquify
14345 (delq nil
14346 (apply 'append
14347 (mapcar
14348 (lambda (file)
14349 (set-buffer (find-file-noselect file))
14350 (append (org-get-buffer-tags)
14351 (mapcar (lambda (x) (if (stringp (car-safe x))
14352 (list (car-safe x)) nil))
14353 org-tag-alist)))
14354 (if (and files (car files))
14355 files
14356 (org-agenda-files))))))))
14358 (defun org-make-tags-matcher (match)
14359 "Create the TAGS/TODO matcher form for the selection string MATCH.
14361 The variable `todo-only' is scoped dynamically into this function.
14362 It will be set to t if the matcher restricts matching to TODO entries,
14363 otherwise will not be touched.
14365 Returns a cons of the selection string MATCH and the constructed
14366 lisp form implementing the matcher. The matcher is to be evaluated
14367 at an Org entry, with point on the headline, and returns t if the
14368 entry matches the selection string MATCH. The returned lisp form
14369 references two variables with information about the entry, which
14370 must be bound around the form's evaluation: todo, the TODO keyword
14371 at the entry (or nil of none); and tags-list, the list of all tags
14372 at the entry including inherited ones. Additionally, the category
14373 of the entry (if any) must be specified as the text property
14374 'org-category on the headline.
14376 See also `org-scan-tags'.
14378 (declare (special todo-only))
14379 (unless (boundp 'todo-only)
14380 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14381 (unless match
14382 ;; Get a new match request, with completion against the global
14383 ;; tags table and the local tags in current buffer
14384 (let ((org-last-tags-completion-table
14385 (org-uniquify
14386 (delq nil (append (org-get-buffer-tags)
14387 (org-global-tags-completion-table))))))
14388 (setq match (org-completing-read-no-i
14389 "Match: " 'org-tags-completion-function nil nil nil
14390 'org-tags-history))))
14392 ;; Parse the string and create a lisp form
14393 (let ((match0 match)
14394 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14395 minus tag mm
14396 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14397 orterms term orlist re-p str-p level-p level-op time-p
14398 prop-p pn pv po gv rest (start 0) (ss 0))
14399 ;; Expand group tags
14400 (setq match (org-tags-expand match))
14402 ;; Check if there is a TODO part of this match, which would be the
14403 ;; part after a "/". TO make sure that this slash is not part of
14404 ;; a property value to be matched against, we also check that there
14405 ;; is no " after that slash.
14406 ;; First, find the last slash
14407 (while (string-match "/+" match ss)
14408 (setq start (match-beginning 0) ss (match-end 0)))
14409 (if (and (string-match "/+" match start)
14410 (not (save-match-data (string-match "\"" match start))))
14411 ;; match contains also a todo-matching request
14412 (progn
14413 (setq tagsmatch (substring match 0 (match-beginning 0))
14414 todomatch (substring match (match-end 0)))
14415 (if (string-match "^!" todomatch)
14416 (setq todo-only t todomatch (substring todomatch 1)))
14417 (if (string-match "^\\s-*$" todomatch)
14418 (setq todomatch nil)))
14419 ;; only matching tags
14420 (setq tagsmatch match todomatch nil))
14422 ;; Make the tags matcher
14423 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14424 (setq tagsmatcher t)
14425 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14426 (while (setq term (pop orterms))
14427 (while (and (equal (substring term -1) "\\") orterms)
14428 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14429 (while (string-match re term)
14430 (setq rest (substring term (match-end 0))
14431 minus (and (match-end 1)
14432 (equal (match-string 1 term) "-"))
14433 tag (save-match-data (replace-regexp-in-string
14434 "\\\\-" "-"
14435 (match-string 2 term)))
14436 re-p (equal (string-to-char tag) ?{)
14437 level-p (match-end 4)
14438 prop-p (match-end 5)
14439 mm (cond
14440 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14441 (level-p
14442 (setq level-op (org-op-to-function (match-string 3 term)))
14443 `(,level-op level ,(string-to-number
14444 (match-string 4 term))))
14445 (prop-p
14446 (setq pn (match-string 5 term)
14447 po (match-string 6 term)
14448 pv (match-string 7 term)
14449 re-p (equal (string-to-char pv) ?{)
14450 str-p (equal (string-to-char pv) ?\")
14451 time-p (save-match-data
14452 (string-match "^\"[[<].*[]>]\"$" pv))
14453 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14454 (if time-p (setq pv (org-matcher-time pv)))
14455 (setq po (org-op-to-function po (if time-p 'time str-p)))
14456 (cond
14457 ((equal pn "CATEGORY")
14458 (setq gv '(get-text-property (point) 'org-category)))
14459 ((equal pn "TODO")
14460 (setq gv 'todo))
14462 (setq gv `(org-cached-entry-get nil ,pn))))
14463 (if re-p
14464 (if (eq po 'org<>)
14465 `(not (string-match ,pv (or ,gv "")))
14466 `(string-match ,pv (or ,gv "")))
14467 (if str-p
14468 `(,po (or ,gv "") ,pv)
14469 `(,po (string-to-number (or ,gv ""))
14470 ,(string-to-number pv) ))))
14471 (t `(member ,tag tags-list)))
14472 mm (if minus (list 'not mm) mm)
14473 term rest)
14474 (push mm tagsmatcher))
14475 (push (if (> (length tagsmatcher) 1)
14476 (cons 'and tagsmatcher)
14477 (car tagsmatcher))
14478 orlist)
14479 (setq tagsmatcher nil))
14480 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14481 (setq tagsmatcher
14482 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14483 ;; Make the todo matcher
14484 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14485 (setq todomatcher t)
14486 (setq orterms (org-split-string todomatch "|") orlist nil)
14487 (while (setq term (pop orterms))
14488 (while (string-match re term)
14489 (setq minus (and (match-end 1)
14490 (equal (match-string 1 term) "-"))
14491 kwd (match-string 2 term)
14492 re-p (equal (string-to-char kwd) ?{)
14493 term (substring term (match-end 0))
14494 mm (if re-p
14495 `(string-match ,(substring kwd 1 -1) todo)
14496 (list 'equal 'todo kwd))
14497 mm (if minus (list 'not mm) mm))
14498 (push mm todomatcher))
14499 (push (if (> (length todomatcher) 1)
14500 (cons 'and todomatcher)
14501 (car todomatcher))
14502 orlist)
14503 (setq todomatcher nil))
14504 (setq todomatcher (if (> (length orlist) 1)
14505 (cons 'or orlist) (car orlist))))
14507 ;; Return the string and lisp forms of the matcher
14508 (setq matcher (if todomatcher
14509 (list 'and tagsmatcher todomatcher)
14510 tagsmatcher))
14511 (when todo-only
14512 (setq matcher (list 'and '(member todo org-not-done-keywords)
14513 matcher)))
14514 (cons match0 matcher)))
14516 (defun org-tags-expand (match &optional single-as-list downcased)
14517 "Expand group tags in MATCH.
14519 This replaces every group tag in MATCH with a regexp tag search.
14520 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14521 will be replaced like this:
14523 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14524 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14525 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14527 Replacing by a regexp preserves the structure of the match.
14528 E.g., this expansion
14530 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14532 will match anything tagged with \"Lab\" and \"Home\", or tagged
14533 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14535 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14536 assumed to be a single group tag, and the function will return
14537 the list of tags in this group.
14539 When DOWNCASE is non-nil, expand downcased TAGS."
14540 (if org-group-tags
14541 (let* ((case-fold-search t)
14542 (stable org-mode-syntax-table)
14543 (tal (or org-tag-groups-alist-for-agenda
14544 org-tag-groups-alist))
14545 (tal (if downcased
14546 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14547 (tml (mapcar 'car tal))
14548 (rtnmatch match) rpl)
14549 ;; @ and _ are allowed as word-components in tags
14550 (modify-syntax-entry ?@ "w" stable)
14551 (modify-syntax-entry ?_ "w" stable)
14552 (while (and tml
14553 (with-syntax-table stable
14554 (string-match
14555 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14556 (regexp-opt tml) "\\>\\)") rtnmatch)))
14557 (let* ((dir (match-string 1 rtnmatch))
14558 (tag (match-string 2 rtnmatch))
14559 (tag (if downcased (downcase tag) tag)))
14560 (setq tml (delete tag tml))
14561 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14562 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14563 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14564 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14565 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14566 (if single-as-list
14567 (or (reverse rpl) (list rtnmatch))
14568 rtnmatch))
14569 (if single-as-list (list (if downcased (downcase match) match))
14570 match)))
14572 (defun org-op-to-function (op &optional stringp)
14573 "Turn an operator into the appropriate function."
14574 (setq op
14575 (cond
14576 ((equal op "<" ) '(< string< org-time<))
14577 ((equal op ">" ) '(> org-string> org-time>))
14578 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14579 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14580 ((member op '("=" "==")) '(= string= org-time=))
14581 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14582 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14584 (defun org<> (a b) (not (= a b)))
14585 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14586 (defun org-string>= (a b) (not (string< a b)))
14587 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14588 (defun org-string<> (a b) (not (string= a b)))
14589 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14590 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14591 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14592 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> 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) (org<> a b)))
14595 (defun org-2ft (s)
14596 "Convert S to a floating point time.
14597 If S is already a number, just return it. If it is a string, parse
14598 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14599 (cond
14600 ((numberp s) s)
14601 ((stringp s)
14602 (condition-case nil
14603 (float-time (apply 'encode-time (org-parse-time-string s)))
14604 (error 0.)))
14605 (t 0.)))
14607 (defun org-time-today ()
14608 "Time in seconds today at 0:00.
14609 Returns the float number of seconds since the beginning of the
14610 epoch to the beginning of today (00:00)."
14611 (float-time (apply 'encode-time
14612 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14614 (defun org-matcher-time (s)
14615 "Interpret a time comparison value."
14616 (save-match-data
14617 (cond
14618 ((string= s "<now>") (float-time))
14619 ((string= s "<today>") (org-time-today))
14620 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14621 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14622 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14623 (+ (org-time-today)
14624 (* (string-to-number (match-string 1 s))
14625 (cdr (assoc (match-string 2 s)
14626 '(("d" . 86400.0) ("w" . 604800.0)
14627 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14628 (t (org-2ft s)))))
14630 (defun org-match-any-p (re list)
14631 "Does re match any element of list?"
14632 (setq list (mapcar (lambda (x) (string-match re x)) list))
14633 (delq nil list))
14635 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14636 (defvar org-tags-overlay (make-overlay 1 1))
14637 (org-detach-overlay org-tags-overlay)
14639 (defun org-get-local-tags-at (&optional pos)
14640 "Get a list of tags defined in the current headline."
14641 (org-get-tags-at pos 'local))
14643 (defun org-get-local-tags ()
14644 "Get a list of tags defined in the current headline."
14645 (org-get-tags-at nil 'local))
14647 (defun org-get-tags-at (&optional pos local)
14648 "Get a list of all headline tags applicable at POS.
14649 POS defaults to point. If tags are inherited, the list contains
14650 the targets in the same sequence as the headlines appear, i.e.
14651 the tags of the current headline come last.
14652 When LOCAL is non-nil, only return tags from the current headline,
14653 ignore inherited ones."
14654 (interactive)
14655 (if (and org-trust-scanner-tags
14656 (or (not pos) (equal pos (point)))
14657 (not local))
14658 org-scanner-tags
14659 (let (tags ltags lastpos parent)
14660 (save-excursion
14661 (save-restriction
14662 (widen)
14663 (goto-char (or pos (point)))
14664 (save-match-data
14665 (catch 'done
14666 (condition-case nil
14667 (progn
14668 (org-back-to-heading t)
14669 (while (not (equal lastpos (point)))
14670 (setq lastpos (point))
14671 (when (looking-at
14672 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14673 (setq ltags (org-split-string
14674 (org-match-string-no-properties 1) ":"))
14675 (when parent
14676 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14677 (setq tags (append
14678 (if parent
14679 (org-remove-uninherited-tags ltags)
14680 ltags)
14681 tags)))
14682 (or org-use-tag-inheritance (throw 'done t))
14683 (if local (throw 'done t))
14684 (or (org-up-heading-safe) (error nil))
14685 (setq parent t)))
14686 (error nil)))))
14687 (if local
14688 tags
14689 (reverse (delete-dups
14690 (reverse (append
14691 (org-remove-uninherited-tags
14692 org-file-tags) tags)))))))))
14694 (defun org-add-prop-inherited (s)
14695 (add-text-properties 0 (length s) '(inherited t) s)
14698 (defun org-toggle-tag (tag &optional onoff)
14699 "Toggle the tag TAG for the current line.
14700 If ONOFF is `on' or `off', don't toggle but set to this state."
14701 (let (res current)
14702 (save-excursion
14703 (org-back-to-heading t)
14704 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14705 (point-at-eol) t)
14706 (progn
14707 (setq current (match-string 1))
14708 (replace-match ""))
14709 (setq current ""))
14710 (setq current (nreverse (org-split-string current ":")))
14711 (cond
14712 ((eq onoff 'on)
14713 (setq res t)
14714 (or (member tag current) (push tag current)))
14715 ((eq onoff 'off)
14716 (or (not (member tag current)) (setq current (delete tag current))))
14717 (t (if (member tag current)
14718 (setq current (delete tag current))
14719 (setq res t)
14720 (push tag current))))
14721 (end-of-line 1)
14722 (if current
14723 (progn
14724 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14725 (org-set-tags nil t))
14726 (delete-horizontal-space))
14727 (run-hooks 'org-after-tags-change-hook))
14728 res))
14730 (defun org-align-tags-here (to-col)
14731 ;; Assumes that this is a headline
14732 "Align tags on the current headline to TO-COL."
14733 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14734 (beginning-of-line 1)
14735 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14736 (< pos (match-beginning 2)))
14737 (progn
14738 (setq tags-l (- (match-end 2) (match-beginning 2)))
14739 (goto-char (match-beginning 1))
14740 (insert " ")
14741 (delete-region (point) (1+ (match-beginning 2)))
14742 (setq ncol (max (current-column)
14743 (1+ col)
14744 (if (> to-col 0)
14745 to-col
14746 (- (abs to-col) tags-l))))
14747 (setq p (point))
14748 (insert (make-string (- ncol (current-column)) ?\ ))
14749 (setq ncol (current-column))
14750 (when indent-tabs-mode (tabify p (point-at-eol)))
14751 (org-move-to-column (min ncol col)))
14752 (goto-char pos))))
14754 (defun org-set-tags-command (&optional arg just-align)
14755 "Call the set-tags command for the current entry."
14756 (interactive "P")
14757 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14758 (org-set-tags arg just-align)
14759 (save-excursion
14760 (unless (and (org-region-active-p)
14761 org-loop-over-headlines-in-active-region)
14762 (org-back-to-heading t))
14763 (org-set-tags arg just-align))))
14765 (defun org-set-tags-to (data)
14766 "Set the tags of the current entry to DATA, replacing the current tags.
14767 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14768 If DATA is nil or the empty string, any tags will be removed."
14769 (interactive "sTags: ")
14770 (setq data
14771 (cond
14772 ((eq data nil) "")
14773 ((equal data "") "")
14774 ((stringp data)
14775 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14776 ":"))
14777 ((listp data)
14778 (concat ":" (mapconcat 'identity data ":") ":"))))
14779 (when data
14780 (save-excursion
14781 (org-back-to-heading t)
14782 (when (looking-at org-complex-heading-regexp)
14783 (if (match-end 5)
14784 (progn
14785 (goto-char (match-beginning 5))
14786 (insert data)
14787 (delete-region (point) (point-at-eol))
14788 (org-set-tags nil 'align))
14789 (goto-char (point-at-eol))
14790 (insert " " data)
14791 (org-set-tags nil 'align)))
14792 (beginning-of-line 1)
14793 (if (looking-at ".*?\\([ \t]+\\)$")
14794 (delete-region (match-beginning 1) (match-end 1))))))
14796 (defun org-align-all-tags ()
14797 "Align the tags i all headings."
14798 (interactive)
14799 (save-excursion
14800 (or (ignore-errors (org-back-to-heading t))
14801 (outline-next-heading))
14802 (if (org-at-heading-p)
14803 (org-set-tags t)
14804 (message "No headings"))))
14806 (defvar org-indent-indentation-per-level)
14807 (defun org-set-tags (&optional arg just-align)
14808 "Set the tags for the current headline.
14809 With prefix ARG, realign all tags in headings in the current buffer.
14810 When JUST-ALIGN is non-nil, only align tags."
14811 (interactive "P")
14812 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14813 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14814 'region-start-level 'region))
14815 org-loop-over-headlines-in-active-region)
14816 (org-map-entries
14817 ;; We don't use ARG and JUST-ALIGN here because these args
14818 ;; are not useful when looping over headlines.
14819 `(org-set-tags)
14820 org-loop-over-headlines-in-active-region
14821 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14822 (let* ((re org-outline-regexp-bol)
14823 (current (unless arg (org-get-tags-string)))
14824 (col (current-column))
14825 (org-setting-tags t)
14826 table current-tags inherited-tags ; computed below when needed
14827 tags p0 c0 c1 rpl di tc level)
14828 (if arg
14829 (save-excursion
14830 (goto-char (point-min))
14831 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14832 (while (re-search-forward re nil t)
14833 (org-set-tags nil t)
14834 (end-of-line 1)))
14835 (message "All tags realigned to column %d" org-tags-column))
14836 (if just-align
14837 (setq tags current)
14838 ;; Get a new set of tags from the user
14839 (save-excursion
14840 (setq table (append org-tag-persistent-alist
14841 (or org-tag-alist (org-get-buffer-tags))
14842 (and
14843 org-complete-tags-always-offer-all-agenda-tags
14844 (org-global-tags-completion-table
14845 (org-agenda-files))))
14846 org-last-tags-completion-table table
14847 current-tags (org-split-string current ":")
14848 inherited-tags (nreverse
14849 (nthcdr (length current-tags)
14850 (nreverse (org-get-tags-at))))
14851 tags
14852 (if (or (eq t org-use-fast-tag-selection)
14853 (and org-use-fast-tag-selection
14854 (delq nil (mapcar 'cdr table))))
14855 (org-fast-tag-selection
14856 current-tags inherited-tags table
14857 (if org-fast-tag-selection-include-todo
14858 org-todo-key-alist))
14859 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14860 (org-trim
14861 (org-icompleting-read "Tags: "
14862 'org-tags-completion-function
14863 nil nil current 'org-tags-history))))))
14864 (while (string-match "[-+&]+" tags)
14865 ;; No boolean logic, just a list
14866 (setq tags (replace-match ":" t t tags))))
14868 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14870 (if org-tags-sort-function
14871 (setq tags (mapconcat 'identity
14872 (sort (org-split-string
14873 tags (org-re "[^[:alnum:]_@#%]+"))
14874 org-tags-sort-function) ":")))
14876 (if (string-match "\\`[\t ]*\\'" tags)
14877 (setq tags "")
14878 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14879 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14881 ;; Insert new tags at the correct column
14882 (beginning-of-line 1)
14883 (setq level (or (and (looking-at org-outline-regexp)
14884 (- (match-end 0) (point) 1))
14886 (cond
14887 ((and (equal current "") (equal tags "")))
14888 ((re-search-forward
14889 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14890 (point-at-eol) t)
14891 (if (equal tags "")
14892 (setq rpl "")
14893 (goto-char (match-beginning 0))
14894 (setq c0 (current-column)
14895 ;; compute offset for the case of org-indent-mode active
14896 di (if (org-bound-and-true-p org-indent-mode)
14897 (* (1- org-indent-indentation-per-level) (1- level))
14899 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14900 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14901 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14902 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14903 (replace-match rpl t t)
14904 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14905 tags)
14906 (t (error "Tags alignment failed")))
14907 (org-move-to-column col)
14908 (unless just-align
14909 (run-hooks 'org-after-tags-change-hook))))))
14911 (defun org-change-tag-in-region (beg end tag off)
14912 "Add or remove TAG for each entry in the region.
14913 This works in the agenda, and also in an org-mode buffer."
14914 (interactive
14915 (list (region-beginning) (region-end)
14916 (let ((org-last-tags-completion-table
14917 (if (derived-mode-p 'org-mode)
14918 (org-uniquify
14919 (delq nil (append (org-get-buffer-tags)
14920 (org-global-tags-completion-table))))
14921 (org-global-tags-completion-table))))
14922 (org-icompleting-read
14923 "Tag: " 'org-tags-completion-function nil nil nil
14924 'org-tags-history))
14925 (progn
14926 (message "[s]et or [r]emove? ")
14927 (equal (read-char-exclusive) ?r))))
14928 (if (fboundp 'deactivate-mark) (deactivate-mark))
14929 (let ((agendap (equal major-mode 'org-agenda-mode))
14930 l1 l2 m buf pos newhead (cnt 0))
14931 (goto-char end)
14932 (setq l2 (1- (org-current-line)))
14933 (goto-char beg)
14934 (setq l1 (org-current-line))
14935 (loop for l from l1 to l2 do
14936 (org-goto-line l)
14937 (setq m (get-text-property (point) 'org-hd-marker))
14938 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14939 (and agendap m))
14940 (setq buf (if agendap (marker-buffer m) (current-buffer))
14941 pos (if agendap m (point)))
14942 (with-current-buffer buf
14943 (save-excursion
14944 (save-restriction
14945 (goto-char pos)
14946 (setq cnt (1+ cnt))
14947 (org-toggle-tag tag (if off 'off 'on))
14948 (setq newhead (org-get-heading)))))
14949 (and agendap (org-agenda-change-all-lines newhead m))))
14950 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14952 (defun org-tags-completion-function (string predicate &optional flag)
14953 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14954 (confirm (lambda (x) (stringp (car x)))))
14955 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14956 (setq s1 (match-string 1 string)
14957 s2 (match-string 2 string))
14958 (setq s1 "" s2 string))
14959 (cond
14960 ((eq flag nil)
14961 ;; try completion
14962 (setq rtn (try-completion s2 ctable confirm))
14963 (if (stringp rtn)
14964 (setq rtn
14965 (concat s1 s2 (substring rtn (length s2))
14966 (if (and org-add-colon-after-tag-completion
14967 (assoc rtn ctable))
14968 ":" ""))))
14969 rtn)
14970 ((eq flag t)
14971 ;; all-completions
14972 (all-completions s2 ctable confirm))
14973 ((eq flag 'lambda)
14974 ;; exact match?
14975 (assoc s2 ctable)))))
14977 (defun org-fast-tag-insert (kwd tags face &optional end)
14978 "Insert KDW, and the TAGS, the latter with face FACE.
14979 Also insert END."
14980 (insert (format "%-12s" (concat kwd ":"))
14981 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14982 (or end "")))
14984 (defun org-fast-tag-show-exit (flag)
14985 (save-excursion
14986 (org-goto-line 3)
14987 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14988 (replace-match ""))
14989 (when flag
14990 (end-of-line 1)
14991 (org-move-to-column (- (window-width) 19) t)
14992 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14994 (defun org-set-current-tags-overlay (current prefix)
14995 "Add an overlay to CURRENT tag with PREFIX."
14996 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14997 (if (featurep 'xemacs)
14998 (org-overlay-display org-tags-overlay (concat prefix s)
14999 'secondary-selection)
15000 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15001 (org-overlay-display org-tags-overlay (concat prefix s)))))
15003 (defvar org-last-tag-selection-key nil)
15004 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15005 "Fast tag selection with single keys.
15006 CURRENT is the current list of tags in the headline, INHERITED is the
15007 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15008 possibly with grouping information. TODO-TABLE is a similar table with
15009 TODO keywords, should these have keys assigned to them.
15010 If the keys are nil, a-z are automatically assigned.
15011 Returns the new tags string, or nil to not change the current settings."
15012 (let* ((fulltable (append table todo-table))
15013 (maxlen (apply 'max (mapcar
15014 (lambda (x)
15015 (if (stringp (car x)) (string-width (car x)) 0))
15016 fulltable)))
15017 (buf (current-buffer))
15018 (expert (eq org-fast-tag-selection-single-key 'expert))
15019 (buffer-tags nil)
15020 (fwidth (+ maxlen 3 1 3))
15021 (ncol (/ (- (window-width) 4) fwidth))
15022 (i-face 'org-done)
15023 (c-face 'org-todo)
15024 tg cnt e c char c1 c2 ntable tbl rtn
15025 ov-start ov-end ov-prefix
15026 (exit-after-next org-fast-tag-selection-single-key)
15027 (done-keywords org-done-keywords)
15028 groups ingroup)
15029 (save-excursion
15030 (beginning-of-line 1)
15031 (if (looking-at
15032 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15033 (setq ov-start (match-beginning 1)
15034 ov-end (match-end 1)
15035 ov-prefix "")
15036 (setq ov-start (1- (point-at-eol))
15037 ov-end (1+ ov-start))
15038 (skip-chars-forward "^\n\r")
15039 (setq ov-prefix
15040 (concat
15041 (buffer-substring (1- (point)) (point))
15042 (if (> (current-column) org-tags-column)
15044 (make-string (- org-tags-column (current-column)) ?\ ))))))
15045 (move-overlay org-tags-overlay ov-start ov-end)
15046 (save-window-excursion
15047 (if expert
15048 (set-buffer (get-buffer-create " *Org tags*"))
15049 (delete-other-windows)
15050 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15051 (org-switch-to-buffer-other-window " *Org tags*"))
15052 (erase-buffer)
15053 (org-set-local 'org-done-keywords done-keywords)
15054 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15055 (org-fast-tag-insert "Current" current c-face "\n\n")
15056 (org-fast-tag-show-exit exit-after-next)
15057 (org-set-current-tags-overlay current ov-prefix)
15058 (setq tbl fulltable char ?a cnt 0)
15059 (while (setq e (pop tbl))
15060 (cond
15061 ((equal (car e) :startgroup)
15062 (push '() groups) (setq ingroup t)
15063 (when (not (= cnt 0))
15064 (setq cnt 0)
15065 (insert "\n"))
15066 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15067 ((equal (car e) :endgroup)
15068 (setq ingroup nil cnt 0)
15069 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15070 ((equal e '(:newline))
15071 (when (not (= cnt 0))
15072 (setq cnt 0)
15073 (insert "\n")
15074 (setq e (car tbl))
15075 (while (equal (car tbl) '(:newline))
15076 (insert "\n")
15077 (setq tbl (cdr tbl)))))
15078 ((equal e '(:grouptags)) nil)
15080 (setq tg (copy-sequence (car e)) c2 nil)
15081 (if (cdr e)
15082 (setq c (cdr e))
15083 ;; automatically assign a character.
15084 (setq c1 (string-to-char
15085 (downcase (substring
15086 tg (if (= (string-to-char tg) ?@) 1 0)))))
15087 (if (or (rassoc c1 ntable) (rassoc c1 table))
15088 (while (or (rassoc char ntable) (rassoc char table))
15089 (setq char (1+ char)))
15090 (setq c2 c1))
15091 (setq c (or c2 char)))
15092 (if ingroup (push tg (car groups)))
15093 (setq tg (org-add-props tg nil 'face
15094 (cond
15095 ((not (assoc tg table))
15096 (org-get-todo-face tg))
15097 ((member tg current) c-face)
15098 ((member tg inherited) i-face))))
15099 (if (equal (caar tbl) :grouptags)
15100 (org-add-props tg nil 'face 'org-tag-group))
15101 (if (and (= cnt 0) (not ingroup)) (insert " "))
15102 (insert "[" c "] " tg (make-string
15103 (- fwidth 4 (length tg)) ?\ ))
15104 (push (cons tg c) ntable)
15105 (when (= (setq cnt (1+ cnt)) ncol)
15106 (insert "\n")
15107 (if ingroup (insert " "))
15108 (setq cnt 0)))))
15109 (setq ntable (nreverse ntable))
15110 (insert "\n")
15111 (goto-char (point-min))
15112 (if (not expert) (org-fit-window-to-buffer))
15113 (setq rtn
15114 (catch 'exit
15115 (while t
15116 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15117 (if (not groups) "no " "")
15118 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15119 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15120 (setq org-last-tag-selection-key c)
15121 (cond
15122 ((= c ?\r) (throw 'exit t))
15123 ((= c ?!)
15124 (setq groups (not groups))
15125 (goto-char (point-min))
15126 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15127 ((= c ?\C-c)
15128 (if (not expert)
15129 (org-fast-tag-show-exit
15130 (setq exit-after-next (not exit-after-next)))
15131 (setq expert nil)
15132 (delete-other-windows)
15133 (set-window-buffer (split-window-vertically) " *Org tags*")
15134 (org-switch-to-buffer-other-window " *Org tags*")
15135 (org-fit-window-to-buffer)))
15136 ((or (= c ?\C-g)
15137 (and (= c ?q) (not (rassoc c ntable))))
15138 (org-detach-overlay org-tags-overlay)
15139 (setq quit-flag t))
15140 ((= c ?\ )
15141 (setq current nil)
15142 (if exit-after-next (setq exit-after-next 'now)))
15143 ((= c ?\t)
15144 (condition-case nil
15145 (setq tg (org-icompleting-read
15146 "Tag: "
15147 (or buffer-tags
15148 (with-current-buffer buf
15149 (org-get-buffer-tags)))))
15150 (quit (setq tg "")))
15151 (when (string-match "\\S-" tg)
15152 (add-to-list 'buffer-tags (list tg))
15153 (if (member tg current)
15154 (setq current (delete tg current))
15155 (push tg current)))
15156 (if exit-after-next (setq exit-after-next 'now)))
15157 ((setq e (rassoc c todo-table) tg (car e))
15158 (with-current-buffer buf
15159 (save-excursion (org-todo tg)))
15160 (if exit-after-next (setq exit-after-next 'now)))
15161 ((setq e (rassoc c ntable) tg (car e))
15162 (if (member tg current)
15163 (setq current (delete tg current))
15164 (loop for g in groups do
15165 (if (member tg g)
15166 (mapc (lambda (x)
15167 (setq current (delete x current)))
15168 g)))
15169 (push tg current))
15170 (if exit-after-next (setq exit-after-next 'now))))
15172 ;; Create a sorted list
15173 (setq current
15174 (sort current
15175 (lambda (a b)
15176 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15177 (if (eq exit-after-next 'now) (throw 'exit t))
15178 (goto-char (point-min))
15179 (beginning-of-line 2)
15180 (delete-region (point) (point-at-eol))
15181 (org-fast-tag-insert "Current" current c-face)
15182 (org-set-current-tags-overlay current ov-prefix)
15183 (while (re-search-forward
15184 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15185 (setq tg (match-string 1))
15186 (add-text-properties
15187 (match-beginning 1) (match-end 1)
15188 (list 'face
15189 (cond
15190 ((member tg current) c-face)
15191 ((member tg inherited) i-face)
15192 (t (get-text-property (match-beginning 1) 'face))))))
15193 (goto-char (point-min)))))
15194 (org-detach-overlay org-tags-overlay)
15195 (if rtn
15196 (mapconcat 'identity current ":")
15197 nil))))
15199 (defun org-get-tags-string ()
15200 "Get the TAGS string in the current headline."
15201 (unless (org-at-heading-p t)
15202 (user-error "Not on a heading"))
15203 (save-excursion
15204 (beginning-of-line 1)
15205 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15206 (org-match-string-no-properties 1)
15207 "")))
15209 (defun org-get-tags ()
15210 "Get the list of tags specified in the current headline."
15211 (org-split-string (org-get-tags-string) ":"))
15213 (defun org-get-buffer-tags ()
15214 "Get a table of all tags used in the buffer, for completion."
15215 (org-with-wide-buffer
15216 (goto-char (point-min))
15217 (let ((tag-re (concat org-outline-regexp-bol
15218 "\\(?:.*?[ \t]\\)?"
15219 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15220 tags)
15221 (while (re-search-forward tag-re nil t)
15222 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15223 (push tag tags)))
15224 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15226 ;;;; The mapping API
15228 (defun org-map-entries (func &optional match scope &rest skip)
15229 "Call FUNC at each headline selected by MATCH in SCOPE.
15231 FUNC is a function or a lisp form. The function will be called without
15232 arguments, with the cursor positioned at the beginning of the headline.
15233 The return values of all calls to the function will be collected and
15234 returned as a list.
15236 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15237 does not need to preserve point. After evaluation, the cursor will be
15238 moved to the end of the line (presumably of the headline of the
15239 processed entry) and search continues from there. Under some
15240 circumstances, this may not produce the wanted results. For example,
15241 if you have removed (e.g. archived) the current (sub)tree it could
15242 mean that the next entry will be skipped entirely. In such cases, you
15243 can specify the position from where search should continue by making
15244 FUNC set the variable `org-map-continue-from' to the desired buffer
15245 position.
15247 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15248 Only headlines that are matched by this query will be considered during
15249 the iteration. When MATCH is nil or t, all headlines will be
15250 visited by the iteration.
15252 SCOPE determines the scope of this command. It can be any of:
15254 nil The current buffer, respecting the restriction if any
15255 tree The subtree started with the entry at point
15256 region The entries within the active region, if any
15257 region-start-level
15258 The entries within the active region, but only those at
15259 the same level than the first one.
15260 file The current buffer, without restriction
15261 file-with-archives
15262 The current buffer, and any archives associated with it
15263 agenda All agenda files
15264 agenda-with-archives
15265 All agenda files with any archive files associated with them
15266 \(file1 file2 ...)
15267 If this is a list, all files in the list will be scanned
15269 The remaining args are treated as settings for the skipping facilities of
15270 the scanner. The following items can be given here:
15272 archive skip trees with the archive tag
15273 comment skip trees with the COMMENT keyword
15274 function or Emacs Lisp form:
15275 will be used as value for `org-agenda-skip-function', so
15276 whenever the function returns a position, FUNC will not be
15277 called for that entry and search will continue from the
15278 position returned
15280 If your function needs to retrieve the tags including inherited tags
15281 at the *current* entry, you can use the value of the variable
15282 `org-scanner-tags' which will be much faster than getting the value
15283 with `org-get-tags-at'. If your function gets properties with
15284 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15285 to t around the call to `org-entry-properties' to get the same speedup.
15286 Note that if your function moves around to retrieve tags and properties at
15287 a *different* entry, you cannot use these techniques."
15288 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15289 (not (org-region-active-p)))
15290 (let* ((org-agenda-archives-mode nil) ; just to make sure
15291 (org-agenda-skip-archived-trees (memq 'archive skip))
15292 (org-agenda-skip-comment-trees (memq 'comment skip))
15293 (org-agenda-skip-function
15294 (car (org-delete-all '(comment archive) skip)))
15295 (org-tags-match-list-sublevels t)
15296 (start-level (eq scope 'region-start-level))
15297 matcher file res
15298 org-todo-keywords-for-agenda
15299 org-done-keywords-for-agenda
15300 org-todo-keyword-alist-for-agenda
15301 org-tag-alist-for-agenda
15302 todo-only)
15304 (cond
15305 ((eq match t) (setq matcher t))
15306 ((eq match nil) (setq matcher t))
15307 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15309 (save-excursion
15310 (save-restriction
15311 (cond ((eq scope 'tree)
15312 (org-back-to-heading t)
15313 (org-narrow-to-subtree)
15314 (setq scope nil))
15315 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15316 (org-region-active-p))
15317 ;; If needed, set start-level to a string like "2"
15318 (when start-level
15319 (save-excursion
15320 (goto-char (region-beginning))
15321 (unless (org-at-heading-p) (outline-next-heading))
15322 (setq start-level (org-current-level))))
15323 (narrow-to-region (region-beginning)
15324 (save-excursion
15325 (goto-char (region-end))
15326 (unless (and (bolp) (org-at-heading-p))
15327 (outline-next-heading))
15328 (point)))
15329 (setq scope nil)))
15331 (if (not scope)
15332 (progn
15333 (org-agenda-prepare-buffers
15334 (list (buffer-file-name (current-buffer))))
15335 (setq res (org-scan-tags func matcher todo-only start-level)))
15336 ;; Get the right scope
15337 (cond
15338 ((and scope (listp scope) (symbolp (car scope)))
15339 (setq scope (eval scope)))
15340 ((eq scope 'agenda)
15341 (setq scope (org-agenda-files t)))
15342 ((eq scope 'agenda-with-archives)
15343 (setq scope (org-agenda-files t))
15344 (setq scope (org-add-archive-files scope)))
15345 ((eq scope 'file)
15346 (setq scope (list (buffer-file-name))))
15347 ((eq scope 'file-with-archives)
15348 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15349 (org-agenda-prepare-buffers scope)
15350 (while (setq file (pop scope))
15351 (with-current-buffer (org-find-base-buffer-visiting file)
15352 (save-excursion
15353 (save-restriction
15354 (widen)
15355 (goto-char (point-min))
15356 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15357 res)))
15359 ;;; Properties API
15361 (defconst org-special-properties
15362 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15363 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15364 "The special properties valid in Org mode.
15365 These are properties that are not defined in the property drawer,
15366 but in some other way.")
15368 (defconst org-default-properties
15369 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15370 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15371 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15372 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15373 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15374 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15375 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15376 "Some properties that are used by Org mode for various purposes.
15377 Being in this list makes sure that they are offered for completion.")
15379 (defun org--update-property-plist (key val props)
15380 "Associate KEY to VAL in alist PROPS.
15381 Modifications are made by side-effect. Return new alist."
15382 (let* ((appending (string= (substring key -1) "+"))
15383 (key (if appending (substring key 0 -1) key))
15384 (old (assoc-string key props t)))
15385 (if (not old) (cons (cons key val) props)
15386 (setcdr old (if appending (concat (cdr old) " " val) val))
15387 props)))
15389 (defun org-get-property-block (&optional beg force)
15390 "Return the (beg . end) range of the body of the property drawer.
15391 BEG is the beginning of the current subtree, or of the part
15392 before the first headline. If it is not given, it will be found.
15393 If the drawer does not exist, create it if FORCE is non-nil, or
15394 return nil."
15395 (org-with-wide-buffer
15396 (when beg (goto-char beg))
15397 (unless (org-before-first-heading-p)
15398 (let ((beg (cond (beg)
15399 ((or (not (featurep 'org-inlinetask))
15400 (org-inlinetask-in-task-p))
15401 (org-back-to-heading t))
15402 (t (org-with-limited-levels (org-back-to-heading t))))))
15403 (forward-line)
15404 (when (org-looking-at-p org-planning-line-re) (forward-line))
15405 (cond ((looking-at org-property-drawer-re)
15406 (forward-line)
15407 (cons (point) (progn (goto-char (match-end 0))
15408 (line-beginning-position))))
15409 (force
15410 (goto-char beg)
15411 (org-insert-property-drawer)
15412 (let ((pos (save-excursion (search-forward ":END:")
15413 (line-beginning-position))))
15414 (cons pos pos))))))))
15416 (defun org-at-property-p ()
15417 "Non-nil when point is inside a property drawer.
15418 See `org-property-re' for match data, if applicable."
15419 (save-excursion
15420 (beginning-of-line)
15421 (and (looking-at org-property-re)
15422 (let ((property-drawer (save-match-data (org-get-property-block))))
15423 (and property-drawer (< (point) (cdr property-drawer)))))))
15425 (defun org-property-action ()
15426 "Do an action on properties."
15427 (interactive)
15428 (unless (org-at-property-p) (user-error "Not at a property"))
15429 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15430 (let ((c (read-char-exclusive)))
15431 (case c
15432 (?s (call-interactively #'org-set-property))
15433 (?d (call-interactively #'org-delete-property))
15434 (?D (call-interactively #'org-delete-property-globally))
15435 (?c (call-interactively #'org-compute-property-at-point))
15436 (otherwise (user-error "No such property action %c" c)))))
15438 (defun org-inc-effort ()
15439 "Increment the value of the effort property in the current entry."
15440 (interactive)
15441 (org-set-effort nil t))
15443 (defvar org-clock-effort) ; Defined in org-clock.el.
15444 (defvar org-clock-current-task) ; Defined in org-clock.el.
15445 (defun org-set-effort (&optional value increment)
15446 "Set the effort property of the current entry.
15447 With numerical prefix arg, use the nth allowed value, 0 stands for the
15448 10th allowed value.
15450 When INCREMENT is non-nil, set the property to the next allowed value."
15451 (interactive "P")
15452 (if (equal value 0) (setq value 10))
15453 (let* ((completion-ignore-case t)
15454 (prop org-effort-property)
15455 (cur (org-entry-get nil prop))
15456 (allowed (org-property-get-allowed-values nil prop 'table))
15457 (existing (mapcar 'list (org-property-values prop)))
15458 (heading (nth 4 (org-heading-components)))
15460 (val (cond
15461 ((stringp value) value)
15462 ((and allowed (integerp value))
15463 (or (car (nth (1- value) allowed))
15464 (car (org-last allowed))))
15465 ((and allowed increment)
15466 (or (caadr (member (list cur) allowed))
15467 (user-error "Allowed effort values are not set")))
15468 (allowed
15469 (message "Select 1-9,0, [RET%s]: %s"
15470 (if cur (concat "=" cur) "")
15471 (mapconcat 'car allowed " "))
15472 (setq rpl (read-char-exclusive))
15473 (if (equal rpl ?\r)
15475 (setq rpl (- rpl ?0))
15476 (if (equal rpl 0) (setq rpl 10))
15477 (if (and (> rpl 0) (<= rpl (length allowed)))
15478 (car (nth (1- rpl) allowed))
15479 (org-completing-read "Effort: " allowed nil))))
15481 (let (org-completion-use-ido org-completion-use-iswitchb)
15482 (org-completing-read
15483 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15484 (concat "[" cur "]") "")
15485 ": ")
15486 existing nil nil "" nil cur))))))
15487 (unless (equal (org-entry-get nil prop) val)
15488 (org-entry-put nil prop val))
15489 (org-refresh-property
15490 '((effort . identity)
15491 (effort-minutes . org-duration-string-to-minutes))
15492 val)
15493 (when (string= heading org-clock-current-task)
15494 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15495 (org-clock-update-mode-line))
15496 (message "%s is now %s" prop val)))
15498 (defun org-entry-properties (&optional pom which)
15499 "Get all properties of the current entry.
15501 When POM is a buffer position, get all properties from the entry
15502 there instead.
15504 This includes the TODO keyword, the tags, time strings for
15505 deadline, scheduled, and clocking, and any additional properties
15506 defined in the entry.
15508 If WHICH is nil or `all', get all properties. If WHICH is
15509 `special' or `standard', only get that subclass. If WHICH is
15510 a string, only get that property.
15512 Return value is an alist. Keys are properties, as upcased
15513 strings."
15514 (org-with-point-at pom
15515 (when (and (derived-mode-p 'org-mode)
15516 (ignore-errors (org-back-to-heading t)))
15517 (catch 'exit
15518 (let* ((beg (point))
15519 (specific (and (stringp which) (upcase which)))
15520 (which (cond ((not specific) which)
15521 ((member specific org-special-properties) 'special)
15522 (t 'standard)))
15523 props)
15524 ;; Get the special properties, like TODO and TAGS.
15525 (when (memq which '(nil all special))
15526 (when (or (not specific) (string= specific "CLOCKSUM"))
15527 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15528 (when clocksum
15529 (push (cons "CLOCKSUM"
15530 (org-columns-number-to-string
15531 (/ (float clocksum) 60.) 'add_times))
15532 props)))
15533 (when specific (throw 'exit props)))
15534 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15535 (let ((clocksumt (get-text-property (point)
15536 :org-clock-minutes-today)))
15537 (when clocksumt
15538 (push (cons "CLOCKSUM_T"
15539 (org-columns-number-to-string
15540 (/ (float clocksumt) 60.) 'add_times))
15541 props)))
15542 (when specific (throw 'exit props)))
15543 (when (or (not specific) (string= specific "ITEM"))
15544 (when (looking-at org-complex-heading-regexp)
15545 (push (cons "ITEM"
15546 (concat
15547 (org-match-string-no-properties 1)
15548 (let ((title (org-match-string-no-properties 4)))
15549 (when (org-string-nw-p title)
15550 (concat " " (org-remove-tabs title))))))
15551 props))
15552 (when specific (throw 'exit props)))
15553 (when (or (not specific) (string= specific "TODO"))
15554 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15555 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15556 (when specific (throw 'exit props)))
15557 (when (or (not specific) (string= specific "PRIORITY"))
15558 (when (looking-at org-priority-regexp)
15559 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15560 (when specific (throw 'exit props)))
15561 (when (or (not specific) (string= specific "FILE"))
15562 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15563 props)
15564 (when specific (throw 'exit props)))
15565 (when (or (not specific) (string= specific "TAGS"))
15566 (let ((value (org-string-nw-p (org-get-tags-string))))
15567 (when value (push (cons "TAGS" value) props)))
15568 (when specific (throw 'exit props)))
15569 (when (or (not specific) (string= specific "ALLTAGS"))
15570 (let ((value (org-get-tags-at)))
15571 (when value
15572 (push (cons "ALLTAGS"
15573 (format ":%s:" (mapconcat #'identity value ":")))
15574 props)))
15575 (when specific (throw 'exit props)))
15576 (when (or (not specific) (string= specific "BLOCKED"))
15577 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15578 (when specific (throw 'exit props)))
15579 (when (or (not specific)
15580 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15581 (forward-line)
15582 (when (org-looking-at-p org-planning-line-re)
15583 (end-of-line)
15584 (let ((bol (line-beginning-position))
15585 ;; Backward compatibility: time keywords used to
15586 ;; be configurable (before 8.3). Make sure we
15587 ;; get the correct keyword.
15588 (key-assoc `(("CLOSED" . ,org-closed-string)
15589 ("DEADLINE" . ,org-deadline-string)
15590 ("SCHEDULED" . ,org-scheduled-string))))
15591 (dolist (pair (if specific (list (assoc specific key-assoc))
15592 key-assoc))
15593 (save-excursion
15594 (when (search-backward (cdr pair) bol t)
15595 (goto-char (match-end 0))
15596 (skip-chars-forward " \t")
15597 (and (looking-at org-ts-regexp-both)
15598 (push (cons (car pair)
15599 (org-match-string-no-properties 0))
15600 props)))))))
15601 (when specific (throw 'exit props)))
15602 (when (or (not specific)
15603 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15604 (let ((find-ts
15605 (lambda (end ts)
15606 (let ((regexp (if (or (string= specific "TIMESTAMP")
15607 (assoc "TIMESTAMP_IA" ts))
15608 org-ts-regexp
15609 org-ts-regexp-both)))
15610 (catch 'next
15611 (while (re-search-forward regexp end t)
15612 (backward-char)
15613 (let ((object (org-element-context)))
15614 ;; Accept to match timestamps in node
15615 ;; properties, too.
15616 (when (memq (org-element-type object)
15617 '(node-property timestamp))
15618 (let ((type
15619 (org-element-property :type object)))
15620 (cond
15621 ((and (memq type '(active active-range))
15622 (not (equal specific "TIMESTAMP_IA")))
15623 (unless (assoc "TIMESTAMP" ts)
15624 (push (cons "TIMESTAMP"
15625 (org-element-property
15626 :raw-value object))
15628 (when specific (throw 'exit ts))))
15629 ((and (memq type '(inactive inactive-range))
15630 (not (string= specific "TIMESTAMP")))
15631 (unless (assoc "TIMESTAMP_IA" ts)
15632 (push (cons "TIMESTAMP_IA"
15633 (org-element-property
15634 :raw-value object))
15636 (when specific (throw 'exit ts))))))
15637 ;; Both timestamp types are found,
15638 ;; move to next part.
15639 (when (= (length ts) 2) (throw 'next ts)))))
15640 ts)))))
15641 (goto-char beg)
15642 ;; First look for timestamps within headline.
15643 (let ((ts (funcall find-ts (line-end-position) nil)))
15644 (if (= (length ts) 2) (setq props (nconc ts props))
15645 (forward-line)
15646 ;; Then find timestamps in the section, skipping
15647 ;; planning line.
15648 (when (org-looking-at-p org-planning-line-re)
15649 (forward-line))
15650 (let ((end (save-excursion (outline-next-heading))))
15651 (setq props (nconc (funcall find-ts end ts) props))))))))
15652 ;; Get the standard properties, like :PROP:.
15653 (when (memq which '(nil all standard))
15654 ;; If we are looking after a specific property, delegate
15655 ;; to `org-entry-get', which is faster. However, make an
15656 ;; exception for "CATEGORY", since it can be also set
15657 ;; through keywords (i.e. #+CATEGORY).
15658 (if (and specific (not (equal specific "CATEGORY")))
15659 (let ((value (org-entry-get beg specific nil t)))
15660 (throw 'exit (and value (list (cons specific value)))))
15661 (let ((range (org-get-property-block beg)))
15662 (when range
15663 (let ((end (cdr range)) seen-base)
15664 (goto-char (car range))
15665 ;; Unlike to `org--update-property-plist', we
15666 ;; handle the case where base values is found
15667 ;; after its extension. We also forbid standard
15668 ;; properties to be named as special properties.
15669 (while (re-search-forward org-property-re end t)
15670 (let* ((key (upcase (org-match-string-no-properties 2)))
15671 (extendp (org-string-match-p "\\+\\'" key))
15672 (key-base (if extendp (substring key 0 -1) key))
15673 (value (org-match-string-no-properties 3)))
15674 (cond
15675 ((member-ignore-case key-base org-special-properties))
15676 (extendp
15677 (setq props
15678 (org--update-property-plist key value props)))
15679 ((member key seen-base))
15680 (t (push key seen-base)
15681 (let ((p (assoc-string key props t)))
15682 (if p (setcdr p (concat value " " (cdr p)))
15683 (push (cons key value) props))))))))))))
15684 (unless (assoc "CATEGORY" props)
15685 (push (cons "CATEGORY" (org-get-category beg)) props)
15686 (when (string= specific "CATEGORY") (throw 'exit props)))
15687 ;; Return value.
15688 (append (get-text-property beg 'org-summaries) props))))))
15690 (defun org-entry-get (pom property &optional inherit literal-nil)
15691 "Get value of PROPERTY for entry or content at point-or-marker POM.
15693 If INHERIT is non-nil and the entry does not have the property,
15694 then also check higher levels of the hierarchy. If INHERIT is
15695 the symbol `selective', use inheritance only if the setting in
15696 `org-use-property-inheritance' selects PROPERTY for inheritance.
15698 If the property is present but empty, the return value is the
15699 empty string. If the property is not present at all, nil is
15700 returned. In any other case, return the value as a string.
15701 Search is case-insensitive.
15703 If LITERAL-NIL is set, return the string value \"nil\" as
15704 a string, do not interpret it as the list atom nil. This is used
15705 for inheritance when a \"nil\" value can supersede a non-nil
15706 value higher up the hierarchy."
15707 (org-with-point-at pom
15708 (cond
15709 ((and inherit
15710 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15711 (org-entry-get-with-inheritance property literal-nil))
15712 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15713 ;; We need a special property. Use `org-entry-properties' to
15714 ;; retrieve it, but specify the wanted property.
15715 (cdr (assoc-string property (org-entry-properties nil property))))
15717 (let ((range (org-get-property-block)))
15718 (when range
15719 (let* ((case-fold-search t)
15720 (end (cdr range))
15721 (props
15722 (let ((global
15723 (or (assoc-string property org-file-properties t)
15724 (assoc-string property org-global-properties t)
15725 (assoc-string
15726 property org-global-properties-fixed t))))
15727 ;; Make sure to not re-use GLOBAL as
15728 ;; `org--update-property-plist' would alter it by
15729 ;; side-effect.
15730 (and global (list (cons property (cdr global))))))
15731 (find-value
15732 (lambda (key)
15733 (when (re-search-forward (org-re-property key nil t) end t)
15734 (setq props
15735 (org--update-property-plist
15736 key (org-match-string-no-properties 3) props))))))
15737 (goto-char (car range))
15738 ;; Find base value.
15739 (save-excursion (funcall find-value property))
15740 ;; Find additional values.
15741 (let ((property+ (concat property "+")))
15742 (while (funcall find-value property+)))
15743 ;; Return final value.
15744 (let ((val (cdr (assoc-string property props t))))
15745 (if literal-nil val (org-not-nil val))))))))))
15747 (defun org-property-or-variable-value (var &optional inherit)
15748 "Check if there is a property fixing the value of VAR.
15749 If yes, return this value. If not, return the current value of the variable."
15750 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15751 (if (and prop (stringp prop) (string-match "\\S-" prop))
15752 (read prop)
15753 (symbol-value var))))
15755 (defun org-entry-delete (pom property)
15756 "Delete PROPERTY from entry at point-or-marker POM.
15757 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15758 non-nil when a property was removed."
15759 (unless (member property org-special-properties)
15760 (org-with-point-at pom
15761 (let ((range (org-get-property-block)))
15762 (when range
15763 (let* ((begin (car range))
15764 (origin (cdr range))
15765 (end (copy-marker origin))
15766 (re (org-re-property
15767 (concat (regexp-quote property) "\\+?") t t)))
15768 (goto-char begin)
15769 (while (re-search-forward re 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 ;; Return non-nil if some property was removed.
15776 (prog1 (/= end origin) (set-marker end nil))))))))
15778 ;; Multi-values properties are properties that contain multiple values
15779 ;; These values are assumed to be single words, separated by whitespace.
15780 (defun org-entry-add-to-multivalued-property (pom property value)
15781 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15782 (let* ((old (org-entry-get pom property))
15783 (values (and old (org-split-string old "[ \t]"))))
15784 (setq value (org-entry-protect-space value))
15785 (unless (member value values)
15786 (setq values (append values (list value)))
15787 (org-entry-put pom property
15788 (mapconcat 'identity values " ")))))
15790 (defun org-entry-remove-from-multivalued-property (pom property value)
15791 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15792 (let* ((old (org-entry-get pom property))
15793 (values (and old (org-split-string old "[ \t]"))))
15794 (setq value (org-entry-protect-space value))
15795 (when (member value values)
15796 (setq values (delete value values))
15797 (org-entry-put pom property
15798 (mapconcat 'identity values " ")))))
15800 (defun org-entry-member-in-multivalued-property (pom property value)
15801 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15802 (let* ((old (org-entry-get pom property))
15803 (values (and old (org-split-string old "[ \t]"))))
15804 (setq value (org-entry-protect-space value))
15805 (member value values)))
15807 (defun org-entry-get-multivalued-property (pom property)
15808 "Return a list of values in a multivalued property."
15809 (let* ((value (org-entry-get pom property))
15810 (values (and value (org-split-string value "[ \t]"))))
15811 (mapcar 'org-entry-restore-space values)))
15813 (defun org-entry-put-multivalued-property (pom property &rest values)
15814 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15815 VALUES should be a list of strings. Spaces will be protected."
15816 (org-entry-put pom property
15817 (mapconcat 'org-entry-protect-space values " "))
15818 (let* ((value (org-entry-get pom property))
15819 (values (and value (org-split-string value "[ \t]"))))
15820 (mapcar 'org-entry-restore-space values)))
15822 (defun org-entry-protect-space (s)
15823 "Protect spaces and newline in string S."
15824 (while (string-match " " s)
15825 (setq s (replace-match "%20" t t s)))
15826 (while (string-match "\n" s)
15827 (setq s (replace-match "%0A" t t s)))
15830 (defun org-entry-restore-space (s)
15831 "Restore spaces and newline in string S."
15832 (while (string-match "%20" s)
15833 (setq s (replace-match " " t t s)))
15834 (while (string-match "%0A" s)
15835 (setq s (replace-match "\n" t t s)))
15838 (defvar org-entry-property-inherited-from (make-marker)
15839 "Marker pointing to the entry from where a property was inherited.
15840 Each call to `org-entry-get-with-inheritance' will set this marker to the
15841 location of the entry where the inheritance search matched. If there was
15842 no match, the marker will point nowhere.
15843 Note that also `org-entry-get' calls this function, if the INHERIT flag
15844 is set.")
15846 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15847 "Get PROPERTY of entry or content at point, search higher levels if needed.
15848 The search will stop at the first ancestor which has the property defined.
15849 If the value found is \"nil\", return nil to show that the property
15850 should be considered as undefined (this is the meaning of nil here).
15851 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15852 (move-marker org-entry-property-inherited-from nil)
15853 (let (value)
15854 (org-with-wide-buffer
15855 (catch 'exit
15856 (while t
15857 (when (setq value (org-entry-get nil property nil literal-nil))
15858 (org-back-to-heading t)
15859 (move-marker org-entry-property-inherited-from (point))
15860 (throw 'exit nil))
15861 (or (org-up-heading-safe) (throw 'exit nil)))))
15862 (unless value
15863 (setq value
15864 (cdr (or (assoc-string property org-file-properties t)
15865 (assoc-string property org-global-properties t)
15866 (assoc-string property org-global-properties-fixed t)))))
15867 (if literal-nil value (org-not-nil value))))
15869 (defvar org-property-changed-functions nil
15870 "Hook called when the value of a property has changed.
15871 Each hook function should accept two arguments, the name of the property
15872 and the new value.")
15874 (defun org-entry-put (pom property value)
15875 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15877 If the value is `nil', it is converted to the empty string. If
15878 it is not a string, an error is raised.
15880 PROPERTY can be any regular property (see
15881 `org-special-properties'). It can also be \"TODO\",
15882 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15884 For the last two properties, VALUE may have any of the special
15885 values \"earlier\" and \"later\". The function then increases or
15886 decreases scheduled or deadline date by one day."
15887 (cond ((null value) (setq value ""))
15888 ((not (stringp value)) (error "Properties values should be strings")))
15889 (org-with-point-at pom
15890 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15891 (org-back-to-heading t)
15892 (org-with-limited-levels (org-back-to-heading t)))
15893 (let ((beg (point)))
15894 (cond
15895 ((equal property "TODO")
15896 (cond ((not (org-string-nw-p value)) (setq value 'none))
15897 ((not (member value org-todo-keywords-1))
15898 (user-error "\"%s\" is not a valid TODO state" value)))
15899 (org-todo value)
15900 (org-set-tags nil 'align))
15901 ((equal property "PRIORITY")
15902 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15903 (org-set-tags nil 'align))
15904 ((equal property "SCHEDULED")
15905 (forward-line)
15906 (if (and (org-looking-at-p org-planning-line-re)
15907 (re-search-forward
15908 org-scheduled-time-regexp (line-end-position) t))
15909 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15910 ((string= value "later") (org-timestamp-change 1 'day))
15911 ((string= value "") (org-schedule '(4)))
15912 (t (org-schedule nil value)))
15913 (if (member value '("earlier" "later" ""))
15914 (call-interactively #'org-schedule)
15915 (org-schedule nil value))))
15916 ((equal property "DEADLINE")
15917 (forward-line)
15918 (if (and (org-looking-at-p org-planning-line-re)
15919 (re-search-forward
15920 org-deadline-time-regexp (line-end-position) t))
15921 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15922 ((string= value "later") (org-timestamp-change 1 'day))
15923 ((string= value "") (org-deadline '(4)))
15924 (t (org-deadline nil value)))
15925 (if (member value '("earlier" "later" ""))
15926 (call-interactively #'org-deadline)
15927 (org-deadline nil value))))
15928 ((member property org-special-properties)
15929 (error "The %s property cannot be set with `org-entry-put'" property))
15931 (let* ((range (org-get-property-block beg 'force))
15932 (end (cdr range))
15933 (case-fold-search t))
15934 (goto-char (car range))
15935 (if (re-search-forward (org-re-property property nil t) end t)
15936 (progn (delete-region (match-beginning 0) (match-end 0))
15937 (goto-char (match-beginning 0)))
15938 (goto-char end)
15939 (insert "\n")
15940 (backward-char))
15941 (insert ":" property ":")
15942 (when value (insert " " value))
15943 (org-indent-line)))))
15944 (run-hook-with-args 'org-property-changed-functions property value)))
15946 (defun org-buffer-property-keys (&optional specials defaults columns)
15947 "Get all property keys in the current buffer.
15949 When SPECIALS is non-nil, also list the special properties that
15950 reflect things like tags and TODO state.
15952 When DEFAULTS is non-nil, also include properties that has
15953 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15954 DESCRIPTION, LOCATION, and LOGGING and others.
15956 When COLUMNS in non-nil, also include property names given in
15957 COLUMN formats in the current buffer."
15958 (let ((case-fold-search t)
15959 (props (append
15960 (and specials org-special-properties)
15961 (and defaults (cons org-effort-property org-default-properties))
15962 nil)))
15963 (org-with-wide-buffer
15964 (goto-char (point-min))
15965 (while (re-search-forward org-property-start-re nil t)
15966 (let ((range (org-get-property-block)))
15967 (catch 'skip
15968 (unless range
15969 (when (and (not (org-before-first-heading-p))
15970 (y-or-n-p (format "Malformed drawer at %d, repair?"
15971 (line-beginning-position))))
15972 (org-get-property-block nil t))
15973 (throw 'skip nil))
15974 (goto-char (car range))
15975 (let ((begin (car range))
15976 (end (cdr range)))
15977 ;; Make sure that found property block is not located
15978 ;; before current point, as it would generate an infloop.
15979 ;; It can happen, for example, in the following
15980 ;; situation:
15982 ;; * Headline
15983 ;; :PROPERTIES:
15984 ;; ...
15985 ;; :END:
15986 ;; *************** Inlinetask
15987 ;; #+BEGIN_EXAMPLE
15988 ;; :PROPERTIES:
15989 ;; #+END_EXAMPLE
15991 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
15992 (while (< (point) end)
15993 (let ((p (progn (looking-at org-property-re)
15994 (org-match-string-no-properties 2))))
15995 ;; Only add true property name, not extension symbol.
15996 (add-to-list 'props
15997 (if (not (org-string-match-p "\\+\\'" p)) p
15998 (substring p 0 -1))))
15999 (forward-line))))
16000 (outline-next-heading)))
16001 (when columns
16002 (goto-char (point-min))
16003 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16004 (let ((element (org-element-at-point)))
16005 (when (memq (org-element-type element) '(keyword node-property))
16006 (let ((value (org-element-property :value element))
16007 (start 0))
16008 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16009 (setq start (match-end 0))
16010 (let ((p (org-match-string-no-properties 1 value)))
16011 (unless (member-ignore-case p org-special-properties)
16012 (add-to-list 'props p))))))))))
16013 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16015 (defun org-property-values (key)
16016 "List all non-nil values of property KEY in current buffer."
16017 (org-with-wide-buffer
16018 (goto-char (point-min))
16019 (let ((case-fold-search t)
16020 (re (org-re-property key))
16021 values)
16022 (while (re-search-forward re nil t)
16023 (add-to-list 'values (org-entry-get (point) key)))
16024 values)))
16026 (defun org-insert-property-drawer ()
16027 "Insert a property drawer into the current entry."
16028 (org-with-wide-buffer
16029 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16030 (org-back-to-heading t)
16031 (org-with-limited-levels (org-back-to-heading t)))
16032 (forward-line)
16033 (when (org-looking-at-p org-planning-line-re) (forward-line))
16034 (unless (org-looking-at-p org-property-drawer-re)
16035 (let ((inhibit-read-only t))
16036 (unless (bolp) (insert "\n"))
16037 (let ((begin (point)))
16038 (insert ":PROPERTIES:\n:END:\n")
16039 (org-indent-region begin (point)))))))
16041 (defun org-insert-drawer (&optional arg drawer)
16042 "Insert a drawer at point.
16044 When optional argument ARG is non-nil, insert a property drawer.
16046 Optional argument DRAWER, when non-nil, is a string representing
16047 drawer's name. Otherwise, the user is prompted for a name.
16049 If a region is active, insert the drawer around that region
16050 instead.
16052 Point is left between drawer's boundaries."
16053 (interactive "P")
16054 (let* ((drawer (if arg "PROPERTIES"
16055 (or drawer (read-from-minibuffer "Drawer: ")))))
16056 (cond
16057 ;; With C-u, fall back on `org-insert-property-drawer'
16058 (arg (org-insert-property-drawer))
16059 ;; Check validity of suggested drawer's name.
16060 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16061 (user-error "Invalid drawer name"))
16062 ;; With an active region, insert a drawer at point.
16063 ((not (org-region-active-p))
16064 (progn
16065 (unless (bolp) (insert "\n"))
16066 (insert (format ":%s:\n\n:END:\n" drawer))
16067 (forward-line -2)))
16068 ;; Otherwise, insert the drawer at point
16070 (let ((rbeg (region-beginning))
16071 (rend (copy-marker (region-end))))
16072 (unwind-protect
16073 (progn
16074 (goto-char rbeg)
16075 (beginning-of-line)
16076 (when (save-excursion
16077 (re-search-forward org-outline-regexp-bol rend t))
16078 (user-error "Drawers cannot contain headlines"))
16079 ;; Position point at the beginning of the first
16080 ;; non-blank line in region. Insert drawer's opening
16081 ;; there, then indent it.
16082 (org-skip-whitespace)
16083 (beginning-of-line)
16084 (insert ":" drawer ":\n")
16085 (forward-line -1)
16086 (indent-for-tab-command)
16087 ;; Move point to the beginning of the first blank line
16088 ;; after the last non-blank line in region. Insert
16089 ;; drawer's closing, then indent it.
16090 (goto-char rend)
16091 (skip-chars-backward " \r\t\n")
16092 (insert "\n:END:")
16093 (deactivate-mark t)
16094 (indent-for-tab-command)
16095 (unless (eolp) (insert "\n")))
16096 ;; Clear marker, whatever the outcome of insertion is.
16097 (set-marker rend nil)))))))
16099 (defvar org-property-set-functions-alist nil
16100 "Property set function alist.
16101 Each entry should have the following format:
16103 (PROPERTY . READ-FUNCTION)
16105 The read function will be called with the same argument as
16106 `org-completing-read'.")
16108 (defun org-set-property-function (property)
16109 "Get the function that should be used to set PROPERTY.
16110 This is computed according to `org-property-set-functions-alist'."
16111 (or (cdr (assoc property org-property-set-functions-alist))
16112 'org-completing-read))
16114 (defun org-read-property-value (property)
16115 "Read PROPERTY value from user."
16116 (let* ((completion-ignore-case t)
16117 (allowed (org-property-get-allowed-values nil property 'table))
16118 (cur (org-entry-get nil property))
16119 (prompt (concat property " value"
16120 (if (and cur (string-match "\\S-" cur))
16121 (concat " [" cur "]") "") ": "))
16122 (set-function (org-set-property-function property))
16123 (val (if allowed
16124 (funcall set-function prompt allowed nil
16125 (not (get-text-property 0 'org-unrestricted
16126 (caar allowed))))
16127 (let (org-completion-use-ido org-completion-use-iswitchb)
16128 (funcall set-function prompt
16129 (mapcar 'list (org-property-values property))
16130 nil nil "" nil cur)))))
16131 (org-trim val)))
16133 (defvar org-last-set-property nil)
16134 (defvar org-last-set-property-value nil)
16135 (defun org-read-property-name ()
16136 "Read a property name."
16137 (let* ((completion-ignore-case t)
16138 (keys (org-buffer-property-keys nil t t))
16139 (default-prop (or (save-excursion
16140 (save-match-data
16141 (beginning-of-line)
16142 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16143 (null (string= (match-string 1) "END"))
16144 (match-string 1))))
16145 org-last-set-property))
16146 (property (org-icompleting-read
16147 (concat "Property"
16148 (if default-prop (concat " [" default-prop "]") "")
16149 ": ")
16150 (mapcar 'list keys)
16151 nil nil nil nil
16152 default-prop)))
16153 (if (member property keys)
16154 property
16155 (or (cdr (assoc (downcase property)
16156 (mapcar (lambda (x) (cons (downcase x) x))
16157 keys)))
16158 property))))
16160 (defun org-set-property-and-value (use-last)
16161 "Allow to set [PROPERTY]: [value] direction from prompt.
16162 When use-default, don't even ask, just use the last
16163 \"[PROPERTY]: [value]\" string from the history."
16164 (interactive "P")
16165 (let* ((completion-ignore-case t)
16166 (pv (or (and use-last org-last-set-property-value)
16167 (org-completing-read
16168 "Enter a \"[Property]: [value]\" pair: "
16169 nil nil nil nil nil
16170 org-last-set-property-value)))
16171 prop val)
16172 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16173 (setq prop (match-string 1 pv)
16174 val (match-string 2 pv))
16175 (org-set-property prop val))))
16177 (defun org-set-property (property value)
16178 "In the current entry, set PROPERTY to VALUE.
16179 When called interactively, this will prompt for a property name, offering
16180 completion on existing and default properties. And then it will prompt
16181 for a value, offering completion either on allowed values (via an inherited
16182 xxx_ALL property) or on existing values in other instances of this property
16183 in the current file."
16184 (interactive (list nil nil))
16185 (let* ((property (or property (org-read-property-name)))
16186 (value (or value (org-read-property-value property)))
16187 (fn (cdr (assoc property org-properties-postprocess-alist))))
16188 (setq org-last-set-property property)
16189 (setq org-last-set-property-value (concat property ": " value))
16190 ;; Possibly postprocess the inserted value:
16191 (when fn (setq value (funcall fn value)))
16192 (unless (equal (org-entry-get nil property) value)
16193 (org-entry-put nil property value))))
16195 (defun org-find-property (property &optional value)
16196 "Find first entry in buffer that sets PROPERTY.
16198 When optional argument VALUE is non-nil, only consider an entry
16199 if it contains PROPERTY set to this value. If PROPERTY should be
16200 explicitly set to nil, use string \"nil\" for VALUE.
16202 Return position where the entry begins, or nil if there is no
16203 such entry. If narrowing is in effect, only search the visible
16204 part of the buffer."
16205 (save-excursion
16206 (goto-char (point-min))
16207 (let ((case-fold-search t)
16208 (re (org-re-property property nil (not value))))
16209 (catch 'exit
16210 (while (re-search-forward re nil t)
16211 (when (if value (equal value (org-entry-get (point) property nil t))
16212 (org-entry-get (point) property nil t))
16213 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16215 (defun org-delete-property (property)
16216 "In the current entry, delete PROPERTY."
16217 (interactive
16218 (let* ((completion-ignore-case t)
16219 (cat (org-entry-get (point) "CATEGORY"))
16220 (props0 (org-entry-properties nil 'standard))
16221 (props (if cat props0
16222 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16223 (prop (if (< 1 (length props))
16224 (org-icompleting-read "Property: " props nil t)
16225 (caar props))))
16226 (list prop)))
16227 (if (not property)
16228 (message "No property to delete in this entry")
16229 (org-entry-delete nil property)
16230 (message "Property \"%s\" deleted" property)))
16232 (defun org-delete-property-globally (property)
16233 "Remove PROPERTY globally, from all entries.
16234 This function ignores narrowing, if any."
16235 (interactive
16236 (let* ((completion-ignore-case t)
16237 (prop (org-icompleting-read
16238 "Globally remove property: "
16239 (mapcar #'list (org-buffer-property-keys)))))
16240 (list prop)))
16241 (org-with-wide-buffer
16242 (goto-char (point-min))
16243 (let ((count 0)
16244 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16245 (while (re-search-forward re nil t)
16246 (when (org-entry-delete (point) property) (incf count)))
16247 (message "Property \"%s\" removed from %d entries" property count))))
16249 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16251 (defun org-compute-property-at-point ()
16252 "Compute the property at point.
16253 This looks for an enclosing column format, extracts the operator and
16254 then applies it to the property in the column format's scope."
16255 (interactive)
16256 (unless (org-at-property-p)
16257 (user-error "Not at a property"))
16258 (let ((prop (org-match-string-no-properties 2)))
16259 (org-columns-get-format-and-top-level)
16260 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16261 (user-error "No operator defined for property %s" prop))
16262 (org-columns-compute prop)))
16264 (defvar org-property-allowed-value-functions nil
16265 "Hook for functions supplying allowed values for a specific property.
16266 The functions must take a single argument, the name of the property, and
16267 return a flat list of allowed values. If \":ETC\" is one of
16268 the values, this means that these values are intended as defaults for
16269 completion, but that other values should be allowed too.
16270 The functions must return nil if they are not responsible for this
16271 property.")
16273 (defun org-property-get-allowed-values (pom property &optional table)
16274 "Get allowed values for the property PROPERTY.
16275 When TABLE is non-nil, return an alist that can directly be used for
16276 completion."
16277 (let (vals)
16278 (cond
16279 ((equal property "TODO")
16280 (setq vals (org-with-point-at pom
16281 (append org-todo-keywords-1 '("")))))
16282 ((equal property "PRIORITY")
16283 (let ((n org-lowest-priority))
16284 (while (>= n org-highest-priority)
16285 (push (char-to-string n) vals)
16286 (setq n (1- n)))))
16287 ((equal property "CATEGORY"))
16288 ((member property org-special-properties))
16289 ((setq vals (run-hook-with-args-until-success
16290 'org-property-allowed-value-functions property)))
16292 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16293 (when (and vals (string-match "\\S-" vals))
16294 (setq vals (car (read-from-string (concat "(" vals ")"))))
16295 (setq vals (mapcar (lambda (x)
16296 (cond ((stringp x) x)
16297 ((numberp x) (number-to-string x))
16298 ((symbolp x) (symbol-name x))
16299 (t "???")))
16300 vals)))))
16301 (when (member ":ETC" vals)
16302 (setq vals (remove ":ETC" vals))
16303 (org-add-props (car vals) '(org-unrestricted t)))
16304 (if table (mapcar 'list vals) vals)))
16306 (defun org-property-previous-allowed-value (&optional previous)
16307 "Switch to the next allowed value for this property."
16308 (interactive)
16309 (org-property-next-allowed-value t))
16311 (defun org-property-next-allowed-value (&optional previous)
16312 "Switch to the next allowed value for this property."
16313 (interactive)
16314 (unless (org-at-property-p)
16315 (user-error "Not at a property"))
16316 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16317 (key (match-string 2))
16318 (value (match-string 3))
16319 (allowed (or (org-property-get-allowed-values (point) key)
16320 (and (member value '("[ ]" "[-]" "[X]"))
16321 '("[ ]" "[X]"))))
16322 (heading (save-match-data (nth 4 (org-heading-components))))
16323 nval)
16324 (unless allowed
16325 (user-error "Allowed values for this property have not been defined"))
16326 (if previous (setq allowed (reverse allowed)))
16327 (if (member value allowed)
16328 (setq nval (car (cdr (member value allowed)))))
16329 (setq nval (or nval (car allowed)))
16330 (if (equal nval value)
16331 (user-error "Only one allowed value for this property"))
16332 (org-at-property-p)
16333 (replace-match (concat " :" key ": " nval) t t)
16334 (org-indent-line)
16335 (beginning-of-line 1)
16336 (skip-chars-forward " \t")
16337 (when (equal prop org-effort-property)
16338 (org-refresh-property
16339 '((effort . identity)
16340 (effort-minutes . org-duration-string-to-minutes))
16341 nval)
16342 (when (string= org-clock-current-task heading)
16343 (setq org-clock-effort nval)
16344 (org-clock-update-mode-line)))
16345 (run-hook-with-args 'org-property-changed-functions key nval)))
16347 (defun org-find-olp (path &optional this-buffer)
16348 "Return a marker pointing to the entry at outline path OLP.
16349 If anything goes wrong, throw an error.
16350 You can wrap this call to catch the error like this:
16352 (condition-case msg
16353 (org-mobile-locate-entry (match-string 4))
16354 (error (nth 1 msg)))
16356 The return value will then be either a string with the error message,
16357 or a marker if everything is OK.
16359 If THIS-BUFFER is set, the outline path does not contain a file,
16360 only headings."
16361 (let* ((file (if this-buffer buffer-file-name (pop path)))
16362 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16363 (level 1)
16364 (lmin 1)
16365 (lmax 1)
16366 limit re end found pos heading cnt flevel)
16367 (unless buffer (error "File not found :%s" file))
16368 (with-current-buffer buffer
16369 (save-excursion
16370 (save-restriction
16371 (widen)
16372 (setq limit (point-max))
16373 (goto-char (point-min))
16374 (while (setq heading (pop path))
16375 (setq re (format org-complex-heading-regexp-format
16376 (regexp-quote heading)))
16377 (setq cnt 0 pos (point))
16378 (while (re-search-forward re end t)
16379 (setq level (- (match-end 1) (match-beginning 1)))
16380 (if (and (>= level lmin) (<= level lmax))
16381 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16382 (when (= cnt 0) (error "Heading not found on level %d: %s"
16383 lmax heading))
16384 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16385 lmax heading))
16386 (goto-char found)
16387 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16388 (setq end (save-excursion (org-end-of-subtree t t))))
16389 (when (org-at-heading-p)
16390 (point-marker)))))))
16392 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16393 "Find node HEADING in BUFFER.
16394 Return a marker to the heading if it was found, or nil if not.
16395 If POS-ONLY is set, return just the position instead of a marker.
16397 The heading text must match exact, but it may have a TODO keyword,
16398 a priority cookie and tags in the standard locations."
16399 (with-current-buffer (or buffer (current-buffer))
16400 (save-excursion
16401 (save-restriction
16402 (widen)
16403 (goto-char (point-min))
16404 (let (case-fold-search)
16405 (if (re-search-forward
16406 (format org-complex-heading-regexp-format
16407 (regexp-quote heading)) nil t)
16408 (if pos-only
16409 (match-beginning 0)
16410 (move-marker (make-marker) (match-beginning 0)))))))))
16412 (defun org-find-exact-heading-in-directory (heading &optional dir)
16413 "Find Org node headline HEADING in all .org files in directory DIR.
16414 When the target headline is found, return a marker to this location."
16415 (let ((files (directory-files (or dir default-directory)
16416 t "\\`[^.#].*\\.org\\'"))
16417 file visiting m buffer)
16418 (catch 'found
16419 (while (setq file (pop files))
16420 (message "trying %s" file)
16421 (setq visiting (org-find-base-buffer-visiting file))
16422 (setq buffer (or visiting (find-file-noselect file)))
16423 (setq m (org-find-exact-headline-in-buffer
16424 heading buffer))
16425 (when (and (not m) (not visiting)) (kill-buffer buffer))
16426 (and m (throw 'found m))))))
16428 (defun org-find-entry-with-id (ident)
16429 "Locate the entry that contains the ID property with exact value IDENT.
16430 IDENT can be a string, a symbol or a number, this function will search for
16431 the string representation of it.
16432 Return the position where this entry starts, or nil if there is no such entry."
16433 (interactive "sID: ")
16434 (let ((id (cond
16435 ((stringp ident) ident)
16436 ((symbolp ident) (symbol-name ident))
16437 ((numberp ident) (number-to-string ident))
16438 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16439 (org-with-wide-buffer (org-find-property "ID" id))))
16441 ;;;; Timestamps
16443 (defvar org-last-changed-timestamp nil)
16444 (defvar org-last-inserted-timestamp nil
16445 "The last time stamp inserted with `org-insert-time-stamp'.")
16446 (defvar org-ts-what) ; dynamically scoped parameter
16448 (defun org-time-stamp (arg &optional inactive)
16449 "Prompt for a date/time and insert a time stamp.
16451 If the user specifies a time like HH:MM or if this command is
16452 called with at least one prefix argument, the time stamp contains
16453 the date and the time. Otherwise, only the date is included.
16455 All parts of a date not specified by the user are filled in from
16456 the timestamp at point, if any, or the current date/time
16457 otherwise.
16459 If there is already a timestamp at the cursor, it is replaced.
16461 With two universal prefix arguments, insert an active timestamp
16462 with the current time without prompting the user.
16464 When called from lisp, the timestamp is inactive if INACTIVE is
16465 non-nil."
16466 (interactive "P")
16467 (let* ((ts
16468 (cond ((org-at-date-range-p t)
16469 (save-excursion
16470 (goto-char (match-beginning 0))
16471 (looking-at (if inactive org-ts-regexp-both org-ts-regexp)))
16472 (match-string 0))
16473 ((org-at-timestamp-p t) (match-string 0))))
16474 ;; Default time is either the timestamp at point or today.
16475 ;; When entering a range, only the range start is considered.
16476 (default-time (if (not ts) (current-time)
16477 (apply #'encode-time (org-parse-time-string ts))))
16478 (default-input (and ts (org-get-compact-tod ts)))
16479 (repeater (and ts
16480 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16481 (match-string 0 ts)))
16482 org-time-was-given
16483 org-end-time-was-given
16484 (time
16485 (and (if (equal arg '(16)) (current-time)
16486 ;; Preserve `this-command' and `last-command'.
16487 (let ((this-command this-command)
16488 (last-command last-command))
16489 (org-read-date
16490 arg 'totime nil nil default-time default-input
16491 inactive))))))
16492 (cond
16493 ((and ts
16494 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16495 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16496 (insert "--")
16497 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16499 ;; Make sure we're on a timestamp. When in the middle of a date
16500 ;; range, move arbitrarily to range end.
16501 (unless (org-at-timestamp-p t)
16502 (skip-chars-forward "-")
16503 (org-at-timestamp-p t))
16504 (replace-match "")
16505 (setq org-last-changed-timestamp
16506 (org-insert-time-stamp
16507 time (or org-time-was-given arg)
16508 inactive nil nil (list org-end-time-was-given)))
16509 (when repeater
16510 (backward-char)
16511 (insert " " repeater)
16512 (setq org-last-changed-timestamp
16513 (concat (substring org-last-inserted-timestamp 0 -1)
16514 " " repeater ">")))
16515 (message "Timestamp updated"))
16516 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16517 (t (org-insert-time-stamp
16518 time (or org-time-was-given arg) inactive nil nil
16519 (list org-end-time-was-given))))))
16521 ;; FIXME: can we use this for something else, like computing time differences?
16522 (defun org-get-compact-tod (s)
16523 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16524 (let* ((t1 (match-string 1 s))
16525 (h1 (string-to-number (match-string 2 s)))
16526 (m1 (string-to-number (match-string 3 s)))
16527 (t2 (and (match-end 4) (match-string 5 s)))
16528 (h2 (and t2 (string-to-number (match-string 6 s))))
16529 (m2 (and t2 (string-to-number (match-string 7 s))))
16530 dh dm)
16531 (if (not t2)
16533 (setq dh (- h2 h1) dm (- m2 m1))
16534 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16535 (concat t1 "+" (number-to-string dh)
16536 (and (/= 0 dm) (format ":%02d" dm)))))))
16538 (defun org-time-stamp-inactive (&optional arg)
16539 "Insert an inactive time stamp.
16540 An inactive time stamp is enclosed in square brackets instead of angle
16541 brackets. It is inactive in the sense that it does not trigger agenda entries,
16542 does not link to the calendar and cannot be changed with the S-cursor keys.
16543 So these are more for recording a certain time/date."
16544 (interactive "P")
16545 (org-time-stamp arg 'inactive))
16547 (defvar org-date-ovl (make-overlay 1 1))
16548 (overlay-put org-date-ovl 'face 'org-date-selected)
16549 (org-detach-overlay org-date-ovl)
16551 (defvar org-ans1) ; dynamically scoped parameter
16552 (defvar org-ans2) ; dynamically scoped parameter
16554 (defvar org-plain-time-of-day-regexp) ; defined below
16556 (defvar org-overriding-default-time nil) ; dynamically scoped
16557 (defvar org-read-date-overlay nil)
16558 (defvar org-dcst nil) ; dynamically scoped
16559 (defvar org-read-date-history nil)
16560 (defvar org-read-date-final-answer nil)
16561 (defvar org-read-date-analyze-futurep nil)
16562 (defvar org-read-date-analyze-forced-year nil)
16563 (defvar org-read-date-inactive)
16565 (defvar org-read-date-minibuffer-local-map
16566 (let* ((map (make-sparse-keymap)))
16567 (set-keymap-parent map minibuffer-local-map)
16568 (org-defkey map (kbd ".")
16569 (lambda () (interactive)
16570 ;; Are we at the beginning of the prompt?
16571 (if (looking-back "^[^:]+: ")
16572 (org-eval-in-calendar '(calendar-goto-today))
16573 (insert "."))))
16574 (org-defkey map (kbd "C-.")
16575 (lambda () (interactive)
16576 (org-eval-in-calendar '(calendar-goto-today))))
16577 (org-defkey map [(meta shift left)]
16578 (lambda () (interactive)
16579 (org-eval-in-calendar '(calendar-backward-month 1))))
16580 (org-defkey map [(meta shift right)]
16581 (lambda () (interactive)
16582 (org-eval-in-calendar '(calendar-forward-month 1))))
16583 (org-defkey map [(meta shift up)]
16584 (lambda () (interactive)
16585 (org-eval-in-calendar '(calendar-backward-year 1))))
16586 (org-defkey map [(meta shift down)]
16587 (lambda () (interactive)
16588 (org-eval-in-calendar '(calendar-forward-year 1))))
16589 (org-defkey map [?\e (shift left)]
16590 (lambda () (interactive)
16591 (org-eval-in-calendar '(calendar-backward-month 1))))
16592 (org-defkey map [?\e (shift right)]
16593 (lambda () (interactive)
16594 (org-eval-in-calendar '(calendar-forward-month 1))))
16595 (org-defkey map [?\e (shift up)]
16596 (lambda () (interactive)
16597 (org-eval-in-calendar '(calendar-backward-year 1))))
16598 (org-defkey map [?\e (shift down)]
16599 (lambda () (interactive)
16600 (org-eval-in-calendar '(calendar-forward-year 1))))
16601 (org-defkey map [(shift up)]
16602 (lambda () (interactive)
16603 (org-eval-in-calendar '(calendar-backward-week 1))))
16604 (org-defkey map [(shift down)]
16605 (lambda () (interactive)
16606 (org-eval-in-calendar '(calendar-forward-week 1))))
16607 (org-defkey map [(shift left)]
16608 (lambda () (interactive)
16609 (org-eval-in-calendar '(calendar-backward-day 1))))
16610 (org-defkey map [(shift right)]
16611 (lambda () (interactive)
16612 (org-eval-in-calendar '(calendar-forward-day 1))))
16613 (org-defkey map "!"
16614 (lambda () (interactive)
16615 (org-eval-in-calendar '(diary-view-entries))
16616 (message "")))
16617 (org-defkey map ">"
16618 (lambda () (interactive)
16619 (org-eval-in-calendar '(calendar-scroll-left 1))))
16620 (org-defkey map "<"
16621 (lambda () (interactive)
16622 (org-eval-in-calendar '(calendar-scroll-right 1))))
16623 (org-defkey map "\C-v"
16624 (lambda () (interactive)
16625 (org-eval-in-calendar
16626 '(calendar-scroll-left-three-months 1))))
16627 (org-defkey map "\M-v"
16628 (lambda () (interactive)
16629 (org-eval-in-calendar
16630 '(calendar-scroll-right-three-months 1))))
16631 map)
16632 "Keymap for minibuffer commands when using `org-read-date'.")
16634 (defvar org-def)
16635 (defvar org-defdecode)
16636 (defvar org-with-time)
16638 (defun org-read-date (&optional org-with-time to-time from-string prompt
16639 default-time default-input inactive)
16640 "Read a date, possibly a time, and make things smooth for the user.
16641 The prompt will suggest to enter an ISO date, but you can also enter anything
16642 which will at least partially be understood by `parse-time-string'.
16643 Unrecognized parts of the date will default to the current day, month, year,
16644 hour and minute. If this command is called to replace a timestamp at point,
16645 or to enter the second timestamp of a range, the default time is taken
16646 from the existing stamp. Furthermore, the command prefers the future,
16647 so if you are giving a date where the year is not given, and the day-month
16648 combination is already past in the current year, it will assume you
16649 mean next year. For details, see the manual. A few examples:
16651 3-2-5 --> 2003-02-05
16652 feb 15 --> currentyear-02-15
16653 2/15 --> currentyear-02-15
16654 sep 12 9 --> 2009-09-12
16655 12:45 --> today 12:45
16656 22 sept 0:34 --> currentyear-09-22 0:34
16657 12 --> currentyear-currentmonth-12
16658 Fri --> nearest Friday after today
16659 -Tue --> last Tuesday
16660 etc.
16662 Furthermore you can specify a relative date by giving, as the *first* thing
16663 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16664 change in days weeks, months, years.
16665 With a single plus or minus, the date is relative to today. With a double
16666 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16667 +4d --> four days from today
16668 +4 --> same as above
16669 +2w --> two weeks from today
16670 ++5 --> five days from default date
16672 The function understands only English month and weekday abbreviations.
16674 While prompting, a calendar is popped up - you can also select the
16675 date with the mouse (button 1). The calendar shows a period of three
16676 months. To scroll it to other months, use the keys `>' and `<'.
16677 If you don't like the calendar, turn it off with
16678 \(setq org-read-date-popup-calendar nil)
16680 With optional argument TO-TIME, the date will immediately be converted
16681 to an internal time.
16682 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16683 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16684 still enter a time, and this function will inform the calling routine
16685 about this change. The calling routine may then choose to change the
16686 format used to insert the time stamp into the buffer to include the time.
16687 With optional argument FROM-STRING, read from this string instead from
16688 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16689 the time/date that is used for everything that is not specified by the
16690 user."
16691 (require 'parse-time)
16692 (let* ((org-time-stamp-rounding-minutes
16693 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16694 (org-dcst org-display-custom-times)
16695 (ct (org-current-time))
16696 (org-def (or org-overriding-default-time default-time ct))
16697 (org-defdecode (decode-time org-def))
16698 (dummy (progn
16699 (when (< (nth 2 org-defdecode) org-extend-today-until)
16700 (setcar (nthcdr 2 org-defdecode) -1)
16701 (setcar (nthcdr 1 org-defdecode) 59)
16702 (setq org-def (apply 'encode-time org-defdecode)
16703 org-defdecode (decode-time org-def)))))
16704 (cur-frame (selected-frame))
16705 (mouse-autoselect-window nil) ; Don't let the mouse jump
16706 (calendar-frame-setup nil)
16707 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16708 (calendar-move-hook nil)
16709 (calendar-view-diary-initially-flag nil)
16710 (calendar-view-holidays-initially-flag nil)
16711 (timestr (format-time-string
16712 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16713 (prompt (concat (if prompt (concat prompt " ") "")
16714 (format "Date+time [%s]: " timestr)))
16715 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16717 (cond
16718 (from-string (setq ans from-string))
16719 (org-read-date-popup-calendar
16720 (save-excursion
16721 (save-window-excursion
16722 (calendar)
16723 (when (eq calendar-setup 'calendar-only)
16724 (setq cal-frame
16725 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16726 (select-frame cal-frame))
16727 (org-eval-in-calendar '(setq cursor-type nil) t)
16728 (unwind-protect
16729 (progn
16730 (calendar-forward-day (- (time-to-days org-def)
16731 (calendar-absolute-from-gregorian
16732 (calendar-current-date))))
16733 (org-eval-in-calendar nil t)
16734 (let* ((old-map (current-local-map))
16735 (map (copy-keymap calendar-mode-map))
16736 (minibuffer-local-map
16737 (copy-keymap org-read-date-minibuffer-local-map)))
16738 (org-defkey map (kbd "RET") 'org-calendar-select)
16739 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16740 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16741 (unwind-protect
16742 (progn
16743 (use-local-map map)
16744 (setq org-read-date-inactive inactive)
16745 (add-hook 'post-command-hook 'org-read-date-display)
16746 (setq org-ans0 (read-string prompt default-input
16747 'org-read-date-history nil))
16748 ;; org-ans0: from prompt
16749 ;; org-ans1: from mouse click
16750 ;; org-ans2: from calendar motion
16751 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16752 (remove-hook 'post-command-hook 'org-read-date-display)
16753 (use-local-map old-map)
16754 (when org-read-date-overlay
16755 (delete-overlay org-read-date-overlay)
16756 (setq org-read-date-overlay nil)))))
16757 (bury-buffer "*Calendar*")
16758 (when cal-frame
16759 (delete-frame cal-frame)
16760 (select-frame-set-input-focus cur-frame))))))
16762 (t ; Naked prompt only
16763 (unwind-protect
16764 (setq ans (read-string prompt default-input
16765 'org-read-date-history timestr))
16766 (when org-read-date-overlay
16767 (delete-overlay org-read-date-overlay)
16768 (setq org-read-date-overlay nil)))))
16770 (setq final (org-read-date-analyze ans org-def org-defdecode))
16772 (when org-read-date-analyze-forced-year
16773 (message "Year was forced into %s"
16774 (if org-read-date-force-compatible-dates
16775 "compatible range (1970-2037)"
16776 "range representable on this machine"))
16777 (ding))
16779 ;; One round trip to get rid of 34th of August and stuff like that....
16780 (setq final (decode-time (apply 'encode-time final)))
16782 (setq org-read-date-final-answer ans)
16784 (if to-time
16785 (apply 'encode-time final)
16786 (if (and (boundp 'org-time-was-given) org-time-was-given)
16787 (format "%04d-%02d-%02d %02d:%02d"
16788 (nth 5 final) (nth 4 final) (nth 3 final)
16789 (nth 2 final) (nth 1 final))
16790 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16792 (defun org-read-date-display ()
16793 "Display the current date prompt interpretation in the minibuffer."
16794 (when org-read-date-display-live
16795 (when org-read-date-overlay
16796 (delete-overlay org-read-date-overlay))
16797 (when (minibufferp (current-buffer))
16798 (save-excursion
16799 (end-of-line 1)
16800 (while (not (equal (buffer-substring
16801 (max (point-min) (- (point) 4)) (point))
16802 " "))
16803 (insert " ")))
16804 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16805 " " (or org-ans1 org-ans2)))
16806 (org-end-time-was-given nil)
16807 (f (org-read-date-analyze ans org-def org-defdecode))
16808 (fmts (if org-dcst
16809 org-time-stamp-custom-formats
16810 org-time-stamp-formats))
16811 (fmt (if (or org-with-time
16812 (and (boundp 'org-time-was-given) org-time-was-given))
16813 (cdr fmts)
16814 (car fmts)))
16815 (txt (format-time-string fmt (apply 'encode-time f)))
16816 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16817 (txt (concat "=> " txt)))
16818 (when (and org-end-time-was-given
16819 (string-match org-plain-time-of-day-regexp txt))
16820 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16821 org-end-time-was-given
16822 (substring txt (match-end 0)))))
16823 (when org-read-date-analyze-futurep
16824 (setq txt (concat txt " (=>F)")))
16825 (setq org-read-date-overlay
16826 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16827 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16829 (defun org-read-date-analyze (ans org-def org-defdecode)
16830 "Analyze the combined answer of the date prompt."
16831 ;; FIXME: cleanup and comment
16832 (let ((nowdecode (decode-time (current-time)))
16833 delta deltan deltaw deltadef year month day
16834 hour minute second wday pm h2 m2 tl wday1
16835 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16836 (setq org-read-date-analyze-futurep nil
16837 org-read-date-analyze-forced-year nil)
16838 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16839 (setq ans "+0"))
16841 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16842 (setq ans (replace-match "" t t ans)
16843 deltan (car delta)
16844 deltaw (nth 1 delta)
16845 deltadef (nth 2 delta)))
16847 ;; Check if there is an iso week date in there. If yes, store the
16848 ;; info and postpone interpreting it until the rest of the parsing
16849 ;; is done.
16850 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16851 (setq iso-year (if (match-end 1)
16852 (org-small-year-to-year
16853 (string-to-number (match-string 1 ans))))
16854 iso-weekday (if (match-end 3)
16855 (string-to-number (match-string 3 ans)))
16856 iso-week (string-to-number (match-string 2 ans)))
16857 (setq ans (replace-match "" t t ans)))
16859 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16860 (when (string-match
16861 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16862 (setq year (if (match-end 2)
16863 (string-to-number (match-string 2 ans))
16864 (progn (setq kill-year t)
16865 (string-to-number (format-time-string "%Y"))))
16866 month (string-to-number (match-string 3 ans))
16867 day (string-to-number (match-string 4 ans)))
16868 (if (< year 100) (setq year (+ 2000 year)))
16869 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16870 t nil ans)))
16872 ;; Help matching dotted european dates
16873 (when (string-match
16874 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16875 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16876 (setq kill-year t)
16877 (string-to-number (format-time-string "%Y")))
16878 day (string-to-number (match-string 1 ans))
16879 month (string-to-number (match-string 2 ans))
16880 ans (replace-match (format "%04d-%02d-%02d" year month day)
16881 t nil ans)))
16883 ;; Help matching american dates, like 5/30 or 5/30/7
16884 (when (string-match
16885 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16886 (setq year (if (match-end 4)
16887 (string-to-number (match-string 4 ans))
16888 (progn (setq kill-year t)
16889 (string-to-number (format-time-string "%Y"))))
16890 month (string-to-number (match-string 1 ans))
16891 day (string-to-number (match-string 2 ans)))
16892 (if (< year 100) (setq year (+ 2000 year)))
16893 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16894 t nil ans)))
16895 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16896 ;; If there is a time with am/pm, and *no* time without it, we convert
16897 ;; so that matching will be successful.
16898 (loop for i from 1 to 2 do ; twice, for end time as well
16899 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16900 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16901 (setq hour (string-to-number (match-string 1 ans))
16902 minute (if (match-end 3)
16903 (string-to-number (match-string 3 ans))
16905 pm (equal ?p
16906 (string-to-char (downcase (match-string 4 ans)))))
16907 (if (and (= hour 12) (not pm))
16908 (setq hour 0)
16909 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16910 (setq ans (replace-match (format "%02d:%02d" hour minute)
16911 t t ans))))
16913 ;; Check if a time range is given as a duration
16914 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16915 (setq hour (string-to-number (match-string 1 ans))
16916 h2 (+ hour (string-to-number (match-string 3 ans)))
16917 minute (string-to-number (match-string 2 ans))
16918 m2 (+ minute (if (match-end 5) (string-to-number
16919 (match-string 5 ans))0)))
16920 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16921 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16922 t t ans)))
16924 ;; Check if there is a time range
16925 (when (boundp 'org-end-time-was-given)
16926 (setq org-time-was-given nil)
16927 (when (and (string-match org-plain-time-of-day-regexp ans)
16928 (match-end 8))
16929 (setq org-end-time-was-given (match-string 8 ans))
16930 (setq ans (concat (substring ans 0 (match-beginning 7))
16931 (substring ans (match-end 7))))))
16933 (setq tl (parse-time-string ans)
16934 day (or (nth 3 tl) (nth 3 org-defdecode))
16935 month
16936 (cond ((nth 4 tl))
16937 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
16938 ;; Day was specified. Make sure DAY+MONTH
16939 ;; combination happens in the future.
16940 ((nth 3 tl)
16941 (setq futurep t)
16942 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
16943 (nth 4 nowdecode)))
16944 (t (nth 4 org-defdecode)))
16945 year
16946 (cond ((and (not kill-year) (nth 5 tl)))
16947 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
16948 ;; Month was guessed in the future and is at least
16949 ;; equal to NOWDECODE's. Fix year accordingly.
16950 (futurep
16951 (if (or (> month (nth 4 nowdecode))
16952 (>= day (nth 3 nowdecode)))
16953 (nth 5 nowdecode)
16954 (1+ (nth 5 nowdecode))))
16955 ;; Month was specified. Make sure MONTH+YEAR
16956 ;; combination happens in the future.
16957 ((nth 4 tl)
16958 (setq futurep t)
16959 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
16960 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
16961 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
16962 (t (nth 5 nowdecode))))
16963 (t (nth 5 org-defdecode)))
16964 hour (or (nth 2 tl) (nth 2 org-defdecode))
16965 minute (or (nth 1 tl) (nth 1 org-defdecode))
16966 second (or (nth 0 tl) 0)
16967 wday (nth 6 tl))
16969 (when (and (eq org-read-date-prefer-future 'time)
16970 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16971 (equal day (nth 3 nowdecode))
16972 (equal month (nth 4 nowdecode))
16973 (equal year (nth 5 nowdecode))
16974 (nth 2 tl)
16975 (or (< (nth 2 tl) (nth 2 nowdecode))
16976 (and (= (nth 2 tl) (nth 2 nowdecode))
16977 (nth 1 tl)
16978 (< (nth 1 tl) (nth 1 nowdecode)))))
16979 (setq day (1+ day)
16980 futurep t))
16982 ;; Special date definitions below
16983 (cond
16984 (iso-week
16985 ;; There was an iso week
16986 (require 'cal-iso)
16987 (setq futurep nil)
16988 (setq year (or iso-year year)
16989 day (or iso-weekday wday 1)
16990 wday nil ; to make sure that the trigger below does not match
16991 iso-date (calendar-gregorian-from-absolute
16992 (calendar-iso-to-absolute
16993 (list iso-week day year))))
16994 ; FIXME: Should we also push ISO weeks into the future?
16995 ; (when (and org-read-date-prefer-future
16996 ; (not iso-year)
16997 ; (< (calendar-absolute-from-gregorian iso-date)
16998 ; (time-to-days (current-time))))
16999 ; (setq year (1+ year)
17000 ; iso-date (calendar-gregorian-from-absolute
17001 ; (calendar-iso-to-absolute
17002 ; (list iso-week day year)))))
17003 (setq month (car iso-date)
17004 year (nth 2 iso-date)
17005 day (nth 1 iso-date)))
17006 (deltan
17007 (setq futurep nil)
17008 (unless deltadef
17009 (let ((now (decode-time (current-time))))
17010 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17011 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17012 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17013 ((equal deltaw "m") (setq month (+ month deltan)))
17014 ((equal deltaw "y") (setq year (+ year deltan)))))
17015 ((and wday (not (nth 3 tl)))
17016 ;; Weekday was given, but no day, so pick that day in the week
17017 ;; on or after the derived date.
17018 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17019 (unless (equal wday wday1)
17020 (setq day (+ day (% (- wday wday1 -7) 7))))))
17021 (if (and (boundp 'org-time-was-given)
17022 (nth 2 tl))
17023 (setq org-time-was-given t))
17024 (if (< year 100) (setq year (+ 2000 year)))
17025 ;; Check of the date is representable
17026 (if org-read-date-force-compatible-dates
17027 (progn
17028 (if (< year 1970)
17029 (setq year 1970 org-read-date-analyze-forced-year t))
17030 (if (> year 2037)
17031 (setq year 2037 org-read-date-analyze-forced-year t)))
17032 (condition-case nil
17033 (ignore (encode-time second minute hour day month year))
17034 (error
17035 (setq year (nth 5 org-defdecode))
17036 (setq org-read-date-analyze-forced-year t))))
17037 (setq org-read-date-analyze-futurep futurep)
17038 (list second minute hour day month year)))
17040 (defvar parse-time-weekdays)
17041 (defun org-read-date-get-relative (s today default)
17042 "Check string S for special relative date string.
17043 TODAY and DEFAULT are internal times, for today and for a default.
17044 Return shift list (N what def-flag)
17045 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17046 N is the number of WHATs to shift.
17047 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17048 the DEFAULT date rather than TODAY."
17049 (require 'parse-time)
17050 (when (and
17051 (string-match
17052 (concat
17053 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17054 "\\([0-9]+\\)?"
17055 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17056 "\\([ \t]\\|$\\)") s)
17057 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17058 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17059 (string-to-char (substring (match-string 1 s) -1))
17060 ?+))
17061 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17062 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17063 (what (if (match-end 3) (match-string 3 s) "d"))
17064 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17065 (date (if rel default today))
17066 (wday (nth 6 (decode-time date)))
17067 delta)
17068 (if wday1
17069 (progn
17070 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17071 (if (= delta 0) (setq delta 7))
17072 (if (= dir ?-)
17073 (progn
17074 (setq delta (- delta 7))
17075 (if (= delta 0) (setq delta -7))))
17076 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17077 (list delta "d" rel))
17078 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17080 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17081 "Turn a user-specified date into the internal representation.
17082 The internal representation needed by the calendar is (month day year).
17083 This is a wrapper to handle the brain-dead convention in calendar that
17084 user function argument order change dependent on argument order."
17085 (if (boundp 'calendar-date-style)
17086 (cond
17087 ((eq calendar-date-style 'american)
17088 (list arg1 arg2 arg3))
17089 ((eq calendar-date-style 'european)
17090 (list arg2 arg1 arg3))
17091 ((eq calendar-date-style 'iso)
17092 (list arg2 arg3 arg1)))
17093 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17094 (if (org-bound-and-true-p european-calendar-style)
17095 (list arg2 arg1 arg3)
17096 (list arg1 arg2 arg3)))))
17098 (defun org-eval-in-calendar (form &optional keepdate)
17099 "Eval FORM in the calendar window and return to current window.
17100 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17101 otherwise stick to the current value of `org-ans2'."
17102 (let ((sf (selected-frame))
17103 (sw (selected-window)))
17104 (select-window (get-buffer-window "*Calendar*" t))
17105 (eval form)
17106 (when (and (not keepdate) (calendar-cursor-to-date))
17107 (let* ((date (calendar-cursor-to-date))
17108 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17109 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17110 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17111 (select-window sw)
17112 (org-select-frame-set-input-focus sf)))
17114 (defun org-calendar-select ()
17115 "Return to `org-read-date' with the date currently selected.
17116 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17117 (interactive)
17118 (when (calendar-cursor-to-date)
17119 (let* ((date (calendar-cursor-to-date))
17120 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17121 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17122 (if (active-minibuffer-window) (exit-minibuffer))))
17124 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17125 "Insert a date stamp for the date given by the internal TIME.
17126 See `format-time-string' for the format of TIME.
17127 WITH-HM means use the stamp format that includes the time of the day.
17128 INACTIVE means use square brackets instead of angular ones, so that the
17129 stamp will not contribute to the agenda.
17130 PRE and POST are optional strings to be inserted before and after the
17131 stamp.
17132 The command returns the inserted time stamp."
17133 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17134 stamp)
17135 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17136 (insert-before-markers (or pre ""))
17137 (when (listp extra)
17138 (setq extra (car extra))
17139 (if (and (stringp extra)
17140 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17141 (setq extra (format "-%02d:%02d"
17142 (string-to-number (match-string 1 extra))
17143 (string-to-number (match-string 2 extra))))
17144 (setq extra nil)))
17145 (when extra
17146 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17147 (insert-before-markers (setq stamp (format-time-string fmt time)))
17148 (insert-before-markers (or post ""))
17149 (setq org-last-inserted-timestamp stamp)))
17151 (defun org-toggle-time-stamp-overlays ()
17152 "Toggle the use of custom time stamp formats."
17153 (interactive)
17154 (setq org-display-custom-times (not org-display-custom-times))
17155 (unless org-display-custom-times
17156 (let ((p (point-min)) (bmp (buffer-modified-p)))
17157 (while (setq p (next-single-property-change p 'display))
17158 (if (and (get-text-property p 'display)
17159 (eq (get-text-property p 'face) 'org-date))
17160 (remove-text-properties
17161 p (setq p (next-single-property-change p 'display))
17162 '(display t))))
17163 (set-buffer-modified-p bmp)))
17164 (if (featurep 'xemacs)
17165 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17166 (org-restart-font-lock)
17167 (setq org-table-may-need-update t)
17168 (if org-display-custom-times
17169 (message "Time stamps are overlaid with custom format")
17170 (message "Time stamp overlays removed")))
17172 (defun org-display-custom-time (beg end)
17173 "Overlay modified time stamp format over timestamp between BEG and END."
17174 (let* ((ts (buffer-substring beg end))
17175 t1 w1 with-hm tf time str w2 (off 0))
17176 (save-match-data
17177 (setq t1 (org-parse-time-string ts t))
17178 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17179 (setq off (- (match-end 0) (match-beginning 0)))))
17180 (setq end (- end off))
17181 (setq w1 (- end beg)
17182 with-hm (and (nth 1 t1) (nth 2 t1))
17183 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17184 time (org-fix-decoded-time t1)
17185 str (org-add-props
17186 (format-time-string
17187 (substring tf 1 -1) (apply 'encode-time time))
17188 nil 'mouse-face 'highlight)
17189 w2 (length str))
17190 (if (not (= w2 w1))
17191 (add-text-properties (1+ beg) (+ 2 beg)
17192 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17193 (if (featurep 'xemacs)
17194 (progn
17195 (put-text-property beg end 'invisible t)
17196 (put-text-property beg end 'end-glyph (make-glyph str)))
17197 (put-text-property beg end 'display str))))
17199 (defun org-fix-decoded-time (time)
17200 "Set 0 instead of nil for the first 6 elements of time.
17201 Don't touch the rest."
17202 (let ((n 0))
17203 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17205 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17207 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17208 "Difference between TIMESTAMP-STRING and now in days.
17209 If SECONDS is non-nil, return the difference in seconds."
17210 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17211 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17212 (funcall fdiff (current-time)))))
17214 (defun org-deadline-close (timestamp-string &optional ndays)
17215 "Is the time in TIMESTAMP-STRING close to the current date?"
17216 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17217 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17218 (not (org-entry-is-done-p))))
17220 (defun org-get-wdays (ts &optional delay zero-delay)
17221 "Get the deadline lead time appropriate for timestring TS.
17222 When DELAY is non-nil, get the delay time for scheduled items
17223 instead of the deadline lead time. When ZERO-DELAY is non-nil
17224 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17225 don't try to find the delay cookie in the scheduled timestamp."
17226 (let ((tv (if delay org-scheduled-delay-days
17227 org-deadline-warning-days)))
17228 (cond
17229 ((or (and delay (< tv 0))
17230 (and delay zero-delay (<= tv 0))
17231 (and (not delay) (<= tv 0)))
17232 ;; Enforce this value no matter what
17233 (- tv))
17234 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17235 ;; lead time is specified.
17236 (floor (* (string-to-number (match-string 1 ts))
17237 (cdr (assoc (match-string 2 ts)
17238 '(("d" . 1) ("w" . 7)
17239 ("m" . 30.4) ("y" . 365.25)
17240 ("h" . 0.041667)))))))
17241 ;; go for the default.
17242 (t tv))))
17244 (defun org-calendar-select-mouse (ev)
17245 "Return to `org-read-date' with the date currently selected.
17246 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17247 (interactive "e")
17248 (mouse-set-point ev)
17249 (when (calendar-cursor-to-date)
17250 (let* ((date (calendar-cursor-to-date))
17251 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17252 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17253 (if (active-minibuffer-window) (exit-minibuffer))))
17255 (defun org-check-deadlines (ndays)
17256 "Check if there are any deadlines due or past due.
17257 A deadline is considered due if it happens within `org-deadline-warning-days'
17258 days from today's date. If the deadline appears in an entry marked DONE,
17259 it is not shown. The prefix arg NDAYS can be used to test that many
17260 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17261 (interactive "P")
17262 (let* ((org-warn-days
17263 (cond
17264 ((equal ndays '(4)) 100000)
17265 (ndays (prefix-numeric-value ndays))
17266 (t (abs org-deadline-warning-days))))
17267 (case-fold-search nil)
17268 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17269 (callback
17270 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17272 (message "%d deadlines past-due or due within %d days"
17273 (org-occur regexp nil callback)
17274 org-warn-days)))
17276 (defsubst org-re-timestamp (type)
17277 "Return a regexp for timestamp TYPE.
17278 Allowed values for TYPE are:
17280 all: all timestamps
17281 active: only active timestamps (<...>)
17282 inactive: only inactive timestamps ([...])
17283 scheduled: only scheduled timestamps
17284 deadline: only deadline timestamps
17285 closed: only closed time-stamps
17287 When TYPE is nil, fall back on returning a regexp that matches
17288 both scheduled and deadline timestamps."
17289 (case type
17290 (all org-ts-regexp-both)
17291 (active org-ts-regexp)
17292 (inactive org-ts-regexp-inactive)
17293 (scheduled org-scheduled-time-regexp)
17294 (deadline org-deadline-time-regexp)
17295 (closed org-closed-time-regexp)
17296 (otherwise
17297 (concat "\\<"
17298 (regexp-opt (list org-deadline-string org-scheduled-string))
17299 " *<\\([^>]+\\)>"))))
17301 (defun org-check-before-date (date)
17302 "Check if there are deadlines or scheduled entries before DATE."
17303 (interactive (list (org-read-date)))
17304 (let ((case-fold-search nil)
17305 (regexp (org-re-timestamp org-ts-type))
17306 (callback
17307 `(lambda ()
17308 (and ,(if (memq org-ts-type '(active inactive all))
17309 '(eq (org-element-type (org-element-context) 'timestamp))
17310 '(org-at-planning-p))
17311 (time-less-p
17312 (org-time-string-to-time (match-string 1))
17313 (org-time-string-to-time date))))))
17314 (message "%d entries before %s"
17315 (org-occur regexp nil callback) date)))
17317 (defun org-check-after-date (date)
17318 "Check if there are deadlines or scheduled entries after DATE."
17319 (interactive (list (org-read-date)))
17320 (let ((case-fold-search nil)
17321 (regexp (org-re-timestamp org-ts-type))
17322 (callback
17323 `(lambda ()
17324 (and ,(if (memq org-ts-type '(active inactive all))
17325 '(eq (org-element-type (org-element-context) 'timestamp))
17326 '(org-at-planning-p))
17327 (not (time-less-p
17328 (org-time-string-to-time (match-string 1))
17329 (org-time-string-to-time date)))))))
17330 (message "%d entries after %s"
17331 (org-occur regexp nil callback) date)))
17333 (defun org-check-dates-range (start-date end-date)
17334 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17335 (interactive (list (org-read-date nil nil nil "Range starts")
17336 (org-read-date nil nil nil "Range end")))
17337 (let ((case-fold-search nil)
17338 (regexp (org-re-timestamp org-ts-type))
17339 (callback
17340 `(lambda ()
17341 (let ((match (match-string 1)))
17342 (and
17343 ,(if (memq org-ts-type '(active inactive all))
17344 '(eq (org-element-type (org-element-context) 'timestamp))
17345 '(org-at-planning-p))
17346 (not (time-less-p
17347 (org-time-string-to-time match)
17348 (org-time-string-to-time start-date)))
17349 (time-less-p
17350 (org-time-string-to-time match)
17351 (org-time-string-to-time end-date)))))))
17352 (message "%d entries between %s and %s"
17353 (org-occur regexp nil callback) start-date end-date)))
17355 (defun org-evaluate-time-range (&optional to-buffer)
17356 "Evaluate a time range by computing the difference between start and end.
17357 Normally the result is just printed in the echo area, but with prefix arg
17358 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17359 If the time range is actually in a table, the result is inserted into the
17360 next column.
17361 For time difference computation, a year is assumed to be exactly 365
17362 days in order to avoid rounding problems."
17363 (interactive "P")
17365 (org-clock-update-time-maybe)
17366 (save-excursion
17367 (unless (org-at-date-range-p t)
17368 (goto-char (point-at-bol))
17369 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17370 (if (not (org-at-date-range-p t))
17371 (user-error "Not at a time-stamp range, and none found in current line")))
17372 (let* ((ts1 (match-string 1))
17373 (ts2 (match-string 2))
17374 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17375 (match-end (match-end 0))
17376 (time1 (org-time-string-to-time ts1))
17377 (time2 (org-time-string-to-time ts2))
17378 (t1 (org-float-time time1))
17379 (t2 (org-float-time time2))
17380 (diff (abs (- t2 t1)))
17381 (negative (< (- t2 t1) 0))
17382 ;; (ys (floor (* 365 24 60 60)))
17383 (ds (* 24 60 60))
17384 (hs (* 60 60))
17385 (fy "%dy %dd %02d:%02d")
17386 (fy1 "%dy %dd")
17387 (fd "%dd %02d:%02d")
17388 (fd1 "%dd")
17389 (fh "%02d:%02d")
17390 y d h m align)
17391 (if havetime
17392 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17394 d (floor (/ diff ds)) diff (mod diff ds)
17395 h (floor (/ diff hs)) diff (mod diff hs)
17396 m (floor (/ diff 60)))
17397 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17399 d (floor (+ (/ diff ds) 0.5))
17400 h 0 m 0))
17401 (if (not to-buffer)
17402 (message "%s" (org-make-tdiff-string y d h m))
17403 (if (org-at-table-p)
17404 (progn
17405 (goto-char match-end)
17406 (setq align t)
17407 (and (looking-at " *|") (goto-char (match-end 0))))
17408 (goto-char match-end))
17409 (if (looking-at
17410 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17411 (replace-match ""))
17412 (if negative (insert " -"))
17413 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17414 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17415 (insert " " (format fh h m))))
17416 (if align (org-table-align))
17417 (message "Time difference inserted")))))
17419 (defun org-make-tdiff-string (y d h m)
17420 (let ((fmt "")
17421 (l nil))
17422 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17423 l (push y l)))
17424 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17425 l (push d l)))
17426 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17427 l (push h l)))
17428 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17429 l (push m l)))
17430 (apply 'format fmt (nreverse l))))
17432 (defun org-time-string-to-time (s &optional buffer pos)
17433 "Convert a timestamp string into internal time."
17434 (condition-case errdata
17435 (apply 'encode-time (org-parse-time-string s))
17436 (error (error "Bad timestamp `%s'%s\nError was: %s"
17437 s (if (not (and buffer pos))
17439 (format " at %d in buffer `%s'" pos buffer))
17440 (cdr errdata)))))
17442 (defun org-time-string-to-seconds (s)
17443 "Convert a timestamp string to a number of seconds."
17444 (org-float-time (org-time-string-to-time s)))
17446 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17447 "Convert a time stamp to an absolute day number.
17448 If there is a specifier for a cyclic time stamp, get the closest
17449 date to DAYNR.
17450 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17451 The variable `date' is bound by the calendar when this is called."
17452 (cond
17453 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17454 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17455 daynr
17456 (+ daynr 1000)))
17457 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17458 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17459 (time-to-days (current-time))) (match-string 0 s)
17460 prefer show-all))
17461 (t (time-to-days
17462 (condition-case errdata
17463 (apply 'encode-time (org-parse-time-string s))
17464 (error (error "Bad timestamp `%s'%s\nError was: %s"
17465 s (if (not (and buffer pos))
17467 (format " at %d in buffer `%s'" pos buffer))
17468 (cdr errdata))))))))
17470 (defun org-days-to-iso-week (days)
17471 "Return the iso week number."
17472 (require 'cal-iso)
17473 (car (calendar-iso-from-absolute days)))
17475 (defun org-small-year-to-year (year)
17476 "Convert 2-digit years into 4-digit years.
17477 YEAR is expanded into one of the 30 next years, if possible, or
17478 into a past one. Any year larger than 99 is returned unchanged."
17479 (if (>= year 100) year
17480 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17481 (century (/ current 100))
17482 (offset (- year (% current 100))))
17483 (cond ((> offset 30) (+ (* (1- century) 100) year))
17484 ((> offset -70) (+ (* century 100) year))
17485 (t (+ (* (1+ century) 100) year))))))
17487 (defun org-time-from-absolute (d)
17488 "Return the time corresponding to date D.
17489 D may be an absolute day number, or a calendar-type list (month day year)."
17490 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17491 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17493 (defun org-calendar-holiday ()
17494 "List of holidays, for Diary display in Org-mode."
17495 (require 'holidays)
17496 (let ((hl (funcall
17497 (if (fboundp 'calendar-check-holidays)
17498 'calendar-check-holidays 'check-calendar-holidays) date)))
17499 (if hl (mapconcat 'identity hl "; "))))
17501 (defun org-diary-sexp-entry (sexp entry date)
17502 "Process a SEXP diary ENTRY for DATE."
17503 (require 'diary-lib)
17504 (let ((result (if calendar-debug-sexp
17505 (let ((stack-trace-on-error t))
17506 (eval (car (read-from-string sexp))))
17507 (condition-case nil
17508 (eval (car (read-from-string sexp)))
17509 (error
17510 (beep)
17511 (message "Bad sexp at line %d in %s: %s"
17512 (org-current-line)
17513 (buffer-file-name) sexp)
17514 (sleep-for 2))))))
17515 (cond ((stringp result) (split-string result "; "))
17516 ((and (consp result)
17517 (not (consp (cdr result)))
17518 (stringp (cdr result))) (cdr result))
17519 ((and (consp result)
17520 (stringp (car result))) result)
17521 (result entry))))
17523 (defun org-diary-to-ical-string (frombuf)
17524 "Get iCalendar entries from diary entries in buffer FROMBUF.
17525 This uses the icalendar.el library."
17526 (let* ((tmpdir (if (featurep 'xemacs)
17527 (temp-directory)
17528 temporary-file-directory))
17529 (tmpfile (make-temp-name
17530 (expand-file-name "orgics" tmpdir)))
17531 buf rtn b e)
17532 (with-current-buffer frombuf
17533 (icalendar-export-region (point-min) (point-max) tmpfile)
17534 (setq buf (find-buffer-visiting tmpfile))
17535 (set-buffer buf)
17536 (goto-char (point-min))
17537 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17538 (setq b (match-beginning 0)))
17539 (goto-char (point-max))
17540 (if (re-search-backward "^END:VEVENT" nil t)
17541 (setq e (match-end 0)))
17542 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17543 (kill-buffer buf)
17544 (delete-file tmpfile)
17545 rtn))
17547 (defun org-closest-date (start current change prefer show-all)
17548 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17549 When PREFER is `past', return a date that is either CURRENT or past.
17550 When PREFER is `future', return a date that is either CURRENT or future.
17551 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17552 ;; Make the proper lists from the dates
17553 (catch 'exit
17554 (let ((a1 '(("h" . hour)
17555 ("d" . day)
17556 ("w" . week)
17557 ("m" . month)
17558 ("y" . year)))
17559 (shour (nth 2 (org-parse-time-string start)))
17560 dn dw sday cday n1 n2 n0
17561 d m y y1 y2 date1 date2 nmonths nm ny m2)
17563 (setq start (org-date-to-gregorian start)
17564 current (org-date-to-gregorian
17565 (if show-all
17566 current
17567 (time-to-days (current-time))))
17568 sday (calendar-absolute-from-gregorian start)
17569 cday (calendar-absolute-from-gregorian current))
17571 (if (<= cday sday) (throw 'exit sday))
17573 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17574 (setq dn (string-to-number (match-string 1 change))
17575 dw (cdr (assoc (match-string 2 change) a1)))
17576 (user-error "Invalid change specifier: %s" change))
17577 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17578 (cond
17579 ((eq dw 'hour)
17580 (let ((missing-hours
17581 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17582 dn)))
17583 (setq n1 (if (zerop missing-hours) cday
17584 (- cday (1+ (floor (/ missing-hours 24)))))
17585 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17586 ((eq dw 'day)
17587 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17588 n2 (+ n1 dn)))
17589 ((eq dw 'year)
17590 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17591 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17592 (setq date1 (list m d y1)
17593 n1 (calendar-absolute-from-gregorian date1)
17594 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17595 n2 (calendar-absolute-from-gregorian date2)))
17596 ((eq dw 'month)
17597 ;; approx number of month between the two dates
17598 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17599 ;; How often does dn fit in there?
17600 (setq d (nth 1 start) m (car start) y (nth 2 start)
17601 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17602 m (+ m nm)
17603 ny (floor (/ m 12))
17604 y (+ y ny)
17605 m (- m (* ny 12)))
17606 (while (> m 12) (setq m (- m 12) y (1+ y)))
17607 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17608 (setq m2 (+ m dn) y2 y)
17609 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17610 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17611 (while (<= n2 cday)
17612 (setq n1 n2 m m2 y y2)
17613 (setq m2 (+ m dn) y2 y)
17614 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17615 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17616 ;; Make sure n1 is the earlier date
17617 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17618 (if show-all
17619 (cond
17620 ((eq prefer 'past) (if (= cday n2) n2 n1))
17621 ((eq prefer 'future) (if (= cday n1) n1 n2))
17622 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17623 (cond
17624 ((eq prefer 'past) (if (= cday n2) n2 n1))
17625 ((eq prefer 'future) (if (= cday n1) n1 n2))
17626 (t (if (= cday n1) n1 n2)))))))
17628 (defun org-date-to-gregorian (date)
17629 "Turn any specification of DATE into a Gregorian date for the calendar."
17630 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17631 ((and (listp date) (= (length date) 3)) date)
17632 ((stringp date)
17633 (setq date (org-parse-time-string date))
17634 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17635 ((listp date)
17636 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17638 (defun org-parse-time-string (s &optional nodefault)
17639 "Parse the standard Org-mode time string.
17640 This should be a lot faster than the normal `parse-time-string'.
17641 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17642 hour and minute fields will be nil if not given."
17643 (cond ((string-match org-ts-regexp0 s)
17644 (list 0
17645 (if (or (match-beginning 8) (not nodefault))
17646 (string-to-number (or (match-string 8 s) "0")))
17647 (if (or (match-beginning 7) (not nodefault))
17648 (string-to-number (or (match-string 7 s) "0")))
17649 (string-to-number (match-string 4 s))
17650 (string-to-number (match-string 3 s))
17651 (string-to-number (match-string 2 s))
17652 nil nil nil))
17653 ((string-match "^<[^>]+>$" s)
17654 (decode-time (seconds-to-time (org-matcher-time s))))
17655 (t (error "Not a standard Org-mode time string: %s" s))))
17657 (defun org-timestamp-up (&optional arg)
17658 "Increase the date item at the cursor by one.
17659 If the cursor is on the year, change the year. If it is on the month,
17660 the day or the time, change that.
17661 With prefix ARG, change by that many units."
17662 (interactive "p")
17663 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17665 (defun org-timestamp-down (&optional arg)
17666 "Decrease the date item at the cursor by one.
17667 If the cursor is on the year, change the year. If it is on the month,
17668 the day or the time, change that.
17669 With prefix ARG, change by that many units."
17670 (interactive "p")
17671 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17673 (defun org-timestamp-up-day (&optional arg)
17674 "Increase the date in the time stamp by one day.
17675 With prefix ARG, change that many days."
17676 (interactive "p")
17677 (if (and (not (org-at-timestamp-p t))
17678 (org-at-heading-p))
17679 (org-todo 'up)
17680 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17682 (defun org-timestamp-down-day (&optional arg)
17683 "Decrease the date in the time stamp by one day.
17684 With prefix ARG, change that many days."
17685 (interactive "p")
17686 (if (and (not (org-at-timestamp-p t))
17687 (org-at-heading-p))
17688 (org-todo 'down)
17689 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17691 (defun org-at-timestamp-p (&optional inactive-ok)
17692 "Determine if the cursor is in or at a timestamp."
17693 (interactive)
17694 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17695 (pos (point))
17696 (ans (or (looking-at tsr)
17697 (save-excursion
17698 (skip-chars-backward "^[<\n\r\t")
17699 (if (> (point) (point-min)) (backward-char 1))
17700 (and (looking-at tsr)
17701 (> (- (match-end 0) pos) -1))))))
17702 (and ans
17703 (boundp 'org-ts-what)
17704 (setq org-ts-what
17705 (cond
17706 ((= pos (match-beginning 0)) 'bracket)
17707 ;; Point is considered to be "on the bracket" whether
17708 ;; it's really on it or right after it.
17709 ((= pos (1- (match-end 0))) 'bracket)
17710 ((= pos (match-end 0)) 'after)
17711 ((org-pos-in-match-range pos 2) 'year)
17712 ((org-pos-in-match-range pos 3) 'month)
17713 ((org-pos-in-match-range pos 7) 'hour)
17714 ((org-pos-in-match-range pos 8) 'minute)
17715 ((or (org-pos-in-match-range pos 4)
17716 (org-pos-in-match-range pos 5)) 'day)
17717 ((and (> pos (or (match-end 8) (match-end 5)))
17718 (< pos (match-end 0)))
17719 (- pos (or (match-end 8) (match-end 5))))
17720 (t 'day))))
17721 ans))
17723 (defun org-toggle-timestamp-type ()
17724 "Toggle the type (<active> or [inactive]) of a time stamp."
17725 (interactive)
17726 (when (org-at-timestamp-p t)
17727 (let ((beg (match-beginning 0)) (end (match-end 0))
17728 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17729 (save-excursion
17730 (goto-char beg)
17731 (while (re-search-forward "[][<>]" end t)
17732 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17733 t t)))
17734 (message "Timestamp is now %sactive"
17735 (if (equal (char-after beg) ?<) "" "in")))))
17737 (defun org-at-clock-log-p nil
17738 "Is the cursor on the clock log line?"
17739 (save-excursion
17740 (move-beginning-of-line 1)
17741 (looking-at org-clock-line-re)))
17743 (defvar org-clock-history) ; defined in org-clock.el
17744 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17745 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17746 "Change the date in the time stamp at point.
17747 The date will be changed by N times WHAT. WHAT can be `day', `month',
17748 `year', `minute', `second'. If WHAT is not given, the cursor position
17749 in the timestamp determines what will be changed.
17750 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17751 (let ((origin (point)) origin-cat
17752 with-hm inactive
17753 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17754 org-ts-what
17755 extra rem
17756 ts time time0 fixnext clrgx)
17757 (if (not (org-at-timestamp-p t))
17758 (user-error "Not at a timestamp"))
17759 (if (and (not what) (eq org-ts-what 'bracket))
17760 (org-toggle-timestamp-type)
17761 ;; Point isn't on brackets. Remember the part of the time-stamp
17762 ;; the point was in. Indeed, size of time-stamps may change,
17763 ;; but point must be kept in the same category nonetheless.
17764 (setq origin-cat org-ts-what)
17765 (if (and (not what) (not (eq org-ts-what 'day))
17766 org-display-custom-times
17767 (get-text-property (point) 'display)
17768 (not (get-text-property (1- (point)) 'display)))
17769 (setq org-ts-what 'day))
17770 (setq org-ts-what (or what org-ts-what)
17771 inactive (= (char-after (match-beginning 0)) ?\[)
17772 ts (match-string 0))
17773 (replace-match "")
17774 (when (string-match
17775 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17777 (setq extra (match-string 1 ts))
17778 (if suppress-tmp-delay
17779 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17780 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17781 (setq with-hm t))
17782 (setq time0 (org-parse-time-string ts))
17783 (when (and updown
17784 (eq org-ts-what 'minute)
17785 (not current-prefix-arg))
17786 ;; This looks like s-up and s-down. Change by one rounding step.
17787 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17788 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17789 (setcar (cdr time0) (+ (nth 1 time0)
17790 (if (> n 0) (- rem) (- dm rem))))))
17791 (setq time
17792 (encode-time (or (car time0) 0)
17793 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17794 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17795 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17796 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17797 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17798 (nthcdr 6 time0)))
17799 (when (and (member org-ts-what '(hour minute))
17800 extra
17801 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17802 (setq extra (org-modify-ts-extra
17803 extra
17804 (if (eq org-ts-what 'hour) 2 5)
17805 n dm)))
17806 (when (integerp org-ts-what)
17807 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17808 (if (eq what 'calendar)
17809 (let ((cal-date (org-get-date-from-calendar)))
17810 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17811 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17812 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17813 (setcar time0 (or (car time0) 0))
17814 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17815 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17816 (setq time (apply 'encode-time time0))))
17817 ;; Insert the new time-stamp, and ensure point stays in the same
17818 ;; category as before (i.e. not after the last position in that
17819 ;; category).
17820 (let ((pos (point)))
17821 ;; Stay before inserted string. `save-excursion' is of no use.
17822 (setq org-last-changed-timestamp
17823 (org-insert-time-stamp time with-hm inactive nil nil extra))
17824 (goto-char pos))
17825 (save-match-data
17826 (looking-at org-ts-regexp3)
17827 (goto-char (cond
17828 ;; `day' category ends before `hour' if any, or at
17829 ;; the end of the day name.
17830 ((eq origin-cat 'day)
17831 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17832 ((eq origin-cat 'hour) (min (match-end 7) origin))
17833 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17834 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17835 ;; `year' and `month' have both fixed size: point
17836 ;; couldn't have moved into another part.
17837 (t origin))))
17838 ;; Update clock if on a CLOCK line.
17839 (org-clock-update-time-maybe)
17840 ;; Maybe adjust the closest clock in `org-clock-history'
17841 (when org-clock-adjust-closest
17842 (if (not (and (org-at-clock-log-p)
17843 (< 1 (length (delq nil (mapcar 'marker-position
17844 org-clock-history))))))
17845 (message "No clock to adjust")
17846 (cond ((save-excursion ; fix previous clock?
17847 (re-search-backward org-ts-regexp0 nil t)
17848 (org-looking-back (concat org-clock-string " \\[")))
17849 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17850 ((save-excursion ; fix next clock?
17851 (re-search-backward org-ts-regexp0 nil t)
17852 (looking-at (concat org-ts-regexp0 "\\] =>")))
17853 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17854 (save-window-excursion
17855 ;; Find closest clock to point, adjust the previous/next one in history
17856 (let* ((p (save-excursion (org-back-to-heading t)))
17857 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17858 (clfixnth
17859 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17860 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17861 (if (not clfixpos)
17862 (message "No clock to adjust")
17863 (save-excursion
17864 (org-goto-marker-or-bmk clfixpos)
17865 (org-show-subtree)
17866 (when (re-search-forward clrgx nil t)
17867 (goto-char (match-beginning 1))
17868 (let (org-clock-adjust-closest)
17869 (org-timestamp-change n org-ts-what updown))
17870 (message "Clock adjusted in %s for heading: %s"
17871 (file-name-nondirectory (buffer-file-name))
17872 (org-get-heading t t)))))))))
17873 ;; Try to recenter the calendar window, if any.
17874 (if (and org-calendar-follow-timestamp-change
17875 (get-buffer-window "*Calendar*" t)
17876 (memq org-ts-what '(day month year)))
17877 (org-recenter-calendar (time-to-days time))))))
17879 (defun org-modify-ts-extra (s pos n dm)
17880 "Change the different parts of the lead-time and repeat fields in timestamp."
17881 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17882 ng h m new rem)
17883 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17884 (cond
17885 ((or (org-pos-in-match-range pos 2)
17886 (org-pos-in-match-range pos 3))
17887 (setq m (string-to-number (match-string 3 s))
17888 h (string-to-number (match-string 2 s)))
17889 (if (org-pos-in-match-range pos 2)
17890 (setq h (+ h n))
17891 (setq n (* dm (org-no-warnings (signum n))))
17892 (when (not (= 0 (setq rem (% m dm))))
17893 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17894 (setq m (+ m n)))
17895 (if (< m 0) (setq m (+ m 60) h (1- h)))
17896 (if (> m 59) (setq m (- m 60) h (1+ h)))
17897 (setq h (min 24 (max 0 h)))
17898 (setq ng 1 new (format "-%02d:%02d" h m)))
17899 ((org-pos-in-match-range pos 6)
17900 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17901 ((org-pos-in-match-range pos 5)
17902 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17904 ((org-pos-in-match-range pos 9)
17905 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17906 ((org-pos-in-match-range pos 8)
17907 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17909 (when ng
17910 (setq s (concat
17911 (substring s 0 (match-beginning ng))
17913 (substring s (match-end ng))))))
17916 (defun org-recenter-calendar (date)
17917 "If the calendar is visible, recenter it to DATE."
17918 (let ((cwin (get-buffer-window "*Calendar*" t)))
17919 (when cwin
17920 (let ((calendar-move-hook nil))
17921 (with-selected-window cwin
17922 (calendar-goto-date (if (listp date) date
17923 (calendar-gregorian-from-absolute date))))))))
17925 (defun org-goto-calendar (&optional arg)
17926 "Go to the Emacs calendar at the current date.
17927 If there is a time stamp in the current line, go to that date.
17928 A prefix ARG can be used to force the current date."
17929 (interactive "P")
17930 (let ((tsr org-ts-regexp) diff
17931 (calendar-move-hook nil)
17932 (calendar-view-holidays-initially-flag nil)
17933 (calendar-view-diary-initially-flag nil))
17934 (if (or (org-at-timestamp-p)
17935 (save-excursion
17936 (beginning-of-line 1)
17937 (looking-at (concat ".*" tsr))))
17938 (let ((d1 (time-to-days (current-time)))
17939 (d2 (time-to-days
17940 (org-time-string-to-time (match-string 1)))))
17941 (setq diff (- d2 d1))))
17942 (calendar)
17943 (calendar-goto-today)
17944 (if (and diff (not arg)) (calendar-forward-day diff))))
17946 (defun org-get-date-from-calendar ()
17947 "Return a list (month day year) of date at point in calendar."
17948 (with-current-buffer "*Calendar*"
17949 (save-match-data
17950 (calendar-cursor-to-date))))
17952 (defun org-date-from-calendar ()
17953 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17954 If there is already a time stamp at the cursor position, update it."
17955 (interactive)
17956 (if (org-at-timestamp-p t)
17957 (org-timestamp-change 0 'calendar)
17958 (let ((cal-date (org-get-date-from-calendar)))
17959 (org-insert-time-stamp
17960 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17962 (defcustom org-effort-durations
17963 `(("min" . 1)
17964 ("h" . 60)
17965 ("d" . ,(* 60 8))
17966 ("w" . ,(* 60 8 5))
17967 ("m" . ,(* 60 8 5 4))
17968 ("y" . ,(* 60 8 5 40)))
17969 "Conversion factor to minutes for an effort modifier.
17971 Each entry has the form (MODIFIER . MINUTES).
17973 In an effort string, a number followed by MODIFIER is multiplied
17974 by the specified number of MINUTES to obtain an effort in
17975 minutes.
17977 For example, if the value of this variable is ((\"hours\" . 60)), then an
17978 effort string \"2hours\" is equivalent to 120 minutes."
17979 :group 'org-agenda
17980 :version "25.1"
17981 :package-version '(Org . "8.3")
17982 :type '(alist :key-type (string :tag "Modifier")
17983 :value-type (number :tag "Minutes")))
17985 (defun org-minutes-to-clocksum-string (m)
17986 "Format number of minutes as a clocksum string.
17987 The format is determined by `org-time-clocksum-format',
17988 `org-time-clocksum-use-fractional' and
17989 `org-time-clocksum-fractional-format' and
17990 `org-time-clocksum-use-effort-durations'."
17991 (let ((clocksum "")
17992 (m (round m)) ; Don't allow fractions of minutes
17993 h d w mo y fmt n)
17994 (setq h (if org-time-clocksum-use-effort-durations
17995 (cdr (assoc "h" org-effort-durations)) 60)
17996 d (if org-time-clocksum-use-effort-durations
17997 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17998 w (if org-time-clocksum-use-effort-durations
17999 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18000 mo (if org-time-clocksum-use-effort-durations
18001 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18002 y (if org-time-clocksum-use-effort-durations
18003 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18004 ;; fractional format
18005 (if org-time-clocksum-use-fractional
18006 (cond
18007 ;; single format string
18008 ((stringp org-time-clocksum-fractional-format)
18009 (format org-time-clocksum-fractional-format (/ m (float h))))
18010 ;; choice of fractional formats for different time units
18011 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18012 (> (/ (truncate m) (* y d h)) 0))
18013 (format fmt (/ m (* y d (float h)))))
18014 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18015 (> (/ (truncate m) (* mo d h)) 0))
18016 (format fmt (/ m (* mo d (float h)))))
18017 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18018 (> (/ (truncate m) (* w d h)) 0))
18019 (format fmt (/ m (* w d (float h)))))
18020 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18021 (> (/ (truncate m) (* d h)) 0))
18022 (format fmt (/ m (* d (float h)))))
18023 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18024 (> (/ (truncate m) h) 0))
18025 (format fmt (/ m (float h))))
18026 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18027 (format fmt m))
18028 ;; fall back to smallest time unit with a format
18029 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18030 (format fmt (/ m (float h))))
18031 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18032 (format fmt (/ m (* d (float h)))))
18033 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18034 (format fmt (/ m (* w d (float h)))))
18035 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18036 (format fmt (/ m (* mo d (float h)))))
18037 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18038 (format fmt (/ m (* y d (float h))))))
18039 ;; standard (non-fractional) format, with single format string
18040 (if (stringp org-time-clocksum-format)
18041 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18042 ;; separate formats components
18043 (and (setq fmt (plist-get org-time-clocksum-format :years))
18044 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18045 (plist-get org-time-clocksum-format :require-years))
18046 (setq clocksum (concat clocksum (format fmt n))
18047 m (- m (* n y d h))))
18048 (and (setq fmt (plist-get org-time-clocksum-format :months))
18049 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18050 (plist-get org-time-clocksum-format :require-months))
18051 (setq clocksum (concat clocksum (format fmt n))
18052 m (- m (* n mo d h))))
18053 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18054 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18055 (plist-get org-time-clocksum-format :require-weeks))
18056 (setq clocksum (concat clocksum (format fmt n))
18057 m (- m (* n w d h))))
18058 (and (setq fmt (plist-get org-time-clocksum-format :days))
18059 (or (> (setq n (/ (truncate m) (* d h))) 0)
18060 (plist-get org-time-clocksum-format :require-days))
18061 (setq clocksum (concat clocksum (format fmt n))
18062 m (- m (* n d h))))
18063 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18064 (or (> (setq n (/ (truncate m) h)) 0)
18065 (plist-get org-time-clocksum-format :require-hours))
18066 (setq clocksum (concat clocksum (format fmt n))
18067 m (- m (* n h))))
18068 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18069 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18070 (setq clocksum (concat clocksum (format fmt m))))
18071 ;; return formatted time duration
18072 clocksum))))
18074 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18075 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18076 "Org mode version 8.0")
18078 (defun org-hours-to-clocksum-string (n)
18079 (org-minutes-to-clocksum-string (* n 60)))
18081 (defun org-hh:mm-string-to-minutes (s)
18082 "Convert a string H:MM to a number of minutes.
18083 If the string is just a number, interpret it as minutes.
18084 In fact, the first hh:mm or number in the string will be taken,
18085 there can be extra stuff in the string.
18086 If no number is found, the return value is 0."
18087 (cond
18088 ((integerp s) s)
18089 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18090 (+ (* (string-to-number (match-string 1 s)) 60)
18091 (string-to-number (match-string 2 s))))
18092 ((string-match "\\([0-9]+\\)" s)
18093 (string-to-number (match-string 1 s)))
18094 (t 0)))
18096 (defcustom org-image-actual-width t
18097 "Should we use the actual width of images when inlining them?
18099 When set to `t', always use the image width.
18101 When set to a number, use imagemagick (when available) to set
18102 the image's width to this value.
18104 When set to a number in a list, try to get the width from any
18105 #+ATTR.* keyword if it matches a width specification like
18107 #+ATTR_HTML: :width 300px
18109 and fall back on that number if none is found.
18111 When set to nil, try to get the width from an #+ATTR.* keyword
18112 and fall back on the original width if none is found.
18114 This requires Emacs >= 24.1, build with imagemagick support."
18115 :group 'org-appearance
18116 :version "24.4"
18117 :package-version '(Org . "8.0")
18118 :type '(choice
18119 (const :tag "Use the image width" t)
18120 (integer :tag "Use a number of pixels")
18121 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18122 (const :tag "Use #+ATTR* or don't resize" nil)))
18124 (defcustom org-agenda-inhibit-startup nil
18125 "Inhibit startup when preparing agenda buffers.
18126 When this variable is `t', the initialization of the Org agenda
18127 buffers is inhibited: e.g. the visibility state is not set, the
18128 tables are not re-aligned, etc."
18129 :type 'boolean
18130 :version "24.3"
18131 :group 'org-agenda)
18133 (define-obsolete-variable-alias
18134 'org-agenda-ignore-drawer-properties
18135 'org-agenda-ignore-properties "25.1")
18137 (defcustom org-agenda-ignore-properties nil
18138 "Avoid updating text properties when building the agenda.
18139 Properties are used to prepare buffers for effort estimates,
18140 appointments, statistics and subtree-local categories.
18141 If you don't use these in the agenda, you can add them to this
18142 list and agenda building will be a bit faster.
18143 The value is a list, with zero or more of the symbols `effort', `appt',
18144 `stats' or `category'."
18145 :type '(set :greedy t
18146 (const effort)
18147 (const appt)
18148 (const stats)
18149 (const category))
18150 :version "25.1"
18151 :package-version '(Org . "8.3")
18152 :group 'org-agenda)
18154 (defun org-duration-string-to-minutes (s &optional output-to-string)
18155 "Convert a duration string S to minutes.
18157 A bare number is interpreted as minutes, modifiers can be set by
18158 customizing `org-effort-durations' (which see).
18160 Entries containing a colon are interpreted as H:MM by
18161 `org-hh:mm-string-to-minutes'."
18162 (let ((result 0)
18163 (re (concat "\\([0-9.]+\\) *\\("
18164 (regexp-opt (mapcar 'car org-effort-durations))
18165 "\\)")))
18166 (while (string-match re s)
18167 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18168 (string-to-number (match-string 1 s))))
18169 (setq s (replace-match "" nil t s)))
18170 (setq result (floor result))
18171 (incf result (org-hh:mm-string-to-minutes s))
18172 (if output-to-string (number-to-string result) result)))
18174 ;;;; Files
18176 (defun org-save-all-org-buffers ()
18177 "Save all Org-mode buffers without user confirmation."
18178 (interactive)
18179 (message "Saving all Org-mode buffers...")
18180 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18181 (when (featurep 'org-id) (org-id-locations-save))
18182 (message "Saving all Org-mode buffers... done"))
18184 (defun org-revert-all-org-buffers ()
18185 "Revert all Org-mode buffers.
18186 Prompt for confirmation when there are unsaved changes.
18187 Be sure you know what you are doing before letting this function
18188 overwrite your changes.
18190 This function is useful in a setup where one tracks org files
18191 with a version control system, to revert on one machine after pulling
18192 changes from another. I believe the procedure must be like this:
18194 1. M-x org-save-all-org-buffers
18195 2. Pull changes from the other machine, resolve conflicts
18196 3. M-x org-revert-all-org-buffers"
18197 (interactive)
18198 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18199 (user-error "Abort"))
18200 (save-excursion
18201 (save-window-excursion
18202 (mapc
18203 (lambda (b)
18204 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18205 (with-current-buffer b buffer-file-name))
18206 (org-pop-to-buffer-same-window b)
18207 (revert-buffer t 'no-confirm)))
18208 (buffer-list))
18209 (when (and (featurep 'org-id) org-id-track-globally)
18210 (org-id-locations-load)))))
18212 ;;;; Agenda files
18214 ;;;###autoload
18215 (defun org-switchb (&optional arg)
18216 "Switch between Org buffers.
18217 With one prefix argument, restrict available buffers to files.
18218 With two prefix arguments, restrict available buffers to agenda files.
18220 Defaults to `iswitchb' for buffer name completion.
18221 Set `org-completion-use-ido' to make it use ido instead."
18222 (interactive "P")
18223 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18224 ((equal arg '(16)) (org-buffer-list 'agenda))
18225 (t (org-buffer-list))))
18226 (org-completion-use-iswitchb org-completion-use-iswitchb)
18227 (org-completion-use-ido org-completion-use-ido))
18228 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18229 (setq org-completion-use-iswitchb t))
18230 (org-pop-to-buffer-same-window
18231 (org-icompleting-read "Org buffer: "
18232 (mapcar 'list (mapcar 'buffer-name blist))
18233 nil t))))
18235 ;;; Define some older names previously used for this functionality
18236 ;;;###autoload
18237 (defalias 'org-ido-switchb 'org-switchb)
18238 ;;;###autoload
18239 (defalias 'org-iswitchb 'org-switchb)
18241 (defun org-buffer-list (&optional predicate exclude-tmp)
18242 "Return a list of Org buffers.
18243 PREDICATE can be `export', `files' or `agenda'.
18245 export restrict the list to Export buffers.
18246 files restrict the list to buffers visiting Org files.
18247 agenda restrict the list to buffers visiting agenda files.
18249 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18250 (let* ((bfn nil)
18251 (agenda-files (and (eq predicate 'agenda)
18252 (mapcar 'file-truename (org-agenda-files t))))
18253 (filter
18254 (cond
18255 ((eq predicate 'files)
18256 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18257 ((eq predicate 'export)
18258 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18259 ((eq predicate 'agenda)
18260 (lambda (b)
18261 (with-current-buffer b
18262 (and (derived-mode-p 'org-mode)
18263 (setq bfn (buffer-file-name b))
18264 (member (file-truename bfn) agenda-files)))))
18265 (t (lambda (b) (with-current-buffer b
18266 (or (derived-mode-p 'org-mode)
18267 (string-match "\*Org .*Export"
18268 (buffer-name b)))))))))
18269 (delq nil
18270 (mapcar
18271 (lambda(b)
18272 (if (and (funcall filter b)
18273 (or (not exclude-tmp)
18274 (not (string-match "tmp" (buffer-name b)))))
18276 nil))
18277 (buffer-list)))))
18279 (defun org-agenda-files (&optional unrestricted archives)
18280 "Get the list of agenda files.
18281 Optional UNRESTRICTED means return the full list even if a restriction
18282 is currently in place.
18283 When ARCHIVES is t, include all archive files that are really being
18284 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18285 `org-agenda-archives-mode' is t."
18286 (let ((files
18287 (cond
18288 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18289 ((stringp org-agenda-files) (org-read-agenda-file-list))
18290 ((listp org-agenda-files) org-agenda-files)
18291 (t (error "Invalid value of `org-agenda-files'")))))
18292 (setq files (apply 'append
18293 (mapcar (lambda (f)
18294 (if (file-directory-p f)
18295 (directory-files
18296 f t org-agenda-file-regexp)
18297 (list f)))
18298 files)))
18299 (when org-agenda-skip-unavailable-files
18300 (setq files (delq nil
18301 (mapcar (function
18302 (lambda (file)
18303 (and (file-readable-p file) file)))
18304 files))))
18305 (when (or (eq archives t)
18306 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18307 (setq files (org-add-archive-files files)))
18308 files))
18310 (defun org-agenda-file-p (&optional file)
18311 "Return non-nil, if FILE is an agenda file.
18312 If FILE is omitted, use the file associated with the current
18313 buffer."
18314 (let ((fname (or file (buffer-file-name))))
18315 (and fname
18316 (member (file-truename fname)
18317 (mapcar #'file-truename (org-agenda-files t))))))
18319 (defun org-edit-agenda-file-list ()
18320 "Edit the list of agenda files.
18321 Depending on setup, this either uses customize to edit the variable
18322 `org-agenda-files', or it visits the file that is holding the list. In the
18323 latter case, the buffer is set up in a way that saving it automatically kills
18324 the buffer and restores the previous window configuration."
18325 (interactive)
18326 (if (stringp org-agenda-files)
18327 (let ((cw (current-window-configuration)))
18328 (find-file org-agenda-files)
18329 (org-set-local 'org-window-configuration cw)
18330 (org-add-hook 'after-save-hook
18331 (lambda ()
18332 (set-window-configuration
18333 (prog1 org-window-configuration
18334 (kill-buffer (current-buffer))))
18335 (org-install-agenda-files-menu)
18336 (message "New agenda file list installed"))
18337 nil 'local)
18338 (message "%s" (substitute-command-keys
18339 "Edit list and finish with \\[save-buffer]")))
18340 (customize-variable 'org-agenda-files)))
18342 (defun org-store-new-agenda-file-list (list)
18343 "Set new value for the agenda file list and save it correctly."
18344 (if (stringp org-agenda-files)
18345 (let ((fe (org-read-agenda-file-list t)) b u)
18346 (while (setq b (find-buffer-visiting org-agenda-files))
18347 (kill-buffer b))
18348 (with-temp-file org-agenda-files
18349 (insert
18350 (mapconcat
18351 (lambda (f) ;; Keep un-expanded entries.
18352 (if (setq u (assoc f fe))
18353 (cdr u)
18355 list "\n")
18356 "\n")))
18357 (let ((org-mode-hook nil) (org-inhibit-startup t)
18358 (org-insert-mode-line-in-empty-file nil))
18359 (setq org-agenda-files list)
18360 (customize-save-variable 'org-agenda-files org-agenda-files))))
18362 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18363 "Read the list of agenda files from a file.
18364 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18365 filenames, used by `org-store-new-agenda-file-list' to write back
18366 un-expanded file names."
18367 (when (file-directory-p org-agenda-files)
18368 (error "`org-agenda-files' cannot be a single directory"))
18369 (when (stringp org-agenda-files)
18370 (with-temp-buffer
18371 (insert-file-contents org-agenda-files)
18372 (mapcar
18373 (lambda (f)
18374 (let ((e (expand-file-name (substitute-in-file-name f)
18375 org-directory)))
18376 (if pair-with-expansion
18377 (cons e f)
18378 e)))
18379 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18381 ;;;###autoload
18382 (defun org-cycle-agenda-files ()
18383 "Cycle through the files in `org-agenda-files'.
18384 If the current buffer visits an agenda file, find the next one in the list.
18385 If the current buffer does not, find the first agenda file."
18386 (interactive)
18387 (let* ((fs (org-agenda-files t))
18388 (files (append fs (list (car fs))))
18389 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18390 file)
18391 (unless files (user-error "No agenda files"))
18392 (catch 'exit
18393 (while (setq file (pop files))
18394 (if (equal (file-truename file) tcf)
18395 (when (car files)
18396 (find-file (car files))
18397 (throw 'exit t))))
18398 (find-file (car fs)))
18399 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18401 (defun org-agenda-file-to-front (&optional to-end)
18402 "Move/add the current file to the top of the agenda file list.
18403 If the file is not present in the list, it is added to the front. If it is
18404 present, it is moved there. With optional argument TO-END, add/move to the
18405 end of the list."
18406 (interactive "P")
18407 (let ((org-agenda-skip-unavailable-files nil)
18408 (file-alist (mapcar (lambda (x)
18409 (cons (file-truename x) x))
18410 (org-agenda-files t)))
18411 (ctf (file-truename
18412 (or buffer-file-name
18413 (user-error "Please save the current buffer to a file"))))
18414 x had)
18415 (setq x (assoc ctf file-alist) had x)
18417 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18418 (if to-end
18419 (setq file-alist (append (delq x file-alist) (list x)))
18420 (setq file-alist (cons x (delq x file-alist))))
18421 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18422 (org-install-agenda-files-menu)
18423 (message "File %s to %s of agenda file list"
18424 (if had "moved" "added") (if to-end "end" "front"))))
18426 (defun org-remove-file (&optional file)
18427 "Remove current file from the list of files in variable `org-agenda-files'.
18428 These are the files which are being checked for agenda entries.
18429 Optional argument FILE means use this file instead of the current."
18430 (interactive)
18431 (let* ((org-agenda-skip-unavailable-files nil)
18432 (file (or file buffer-file-name
18433 (user-error "Current buffer does not visit a file")))
18434 (true-file (file-truename file))
18435 (afile (abbreviate-file-name file))
18436 (files (delq nil (mapcar
18437 (lambda (x)
18438 (if (equal true-file
18439 (file-truename x))
18440 nil x))
18441 (org-agenda-files t)))))
18442 (if (not (= (length files) (length (org-agenda-files t))))
18443 (progn
18444 (org-store-new-agenda-file-list files)
18445 (org-install-agenda-files-menu)
18446 (message "Removed from Org Agenda list: %s" afile))
18447 (message "File was not in list: %s (not removed)" afile))))
18449 (defun org-file-menu-entry (file)
18450 (vector file (list 'find-file file) t))
18452 (defun org-check-agenda-file (file)
18453 "Make sure FILE exists. If not, ask user what to do."
18454 (when (not (file-exists-p file))
18455 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18456 (abbreviate-file-name file))
18457 (let ((r (downcase (read-char-exclusive))))
18458 (cond
18459 ((equal r ?r)
18460 (org-remove-file file)
18461 (throw 'nextfile t))
18462 (t (user-error "Abort"))))))
18464 (defun org-get-agenda-file-buffer (file)
18465 "Get an agenda buffer visiting FILE.
18466 If the buffer needs to be created, add it to the list of buffers
18467 which might be released later."
18468 (let ((buf (org-find-base-buffer-visiting file)))
18469 (if buf
18470 buf ; just return it
18471 ;; Make a new buffer and remember it
18472 (setq buf (find-file-noselect file))
18473 (if buf (push buf org-agenda-new-buffers))
18474 buf)))
18476 (defun org-release-buffers (blist)
18477 "Release all buffers in list, asking the user for confirmation when needed.
18478 When a buffer is unmodified, it is just killed. When modified, it is saved
18479 \(if the user agrees) and then killed."
18480 (let (buf file)
18481 (while (setq buf (pop blist))
18482 (setq file (buffer-file-name buf))
18483 (when (and (buffer-modified-p buf)
18484 file
18485 (y-or-n-p (format "Save file %s? " file)))
18486 (with-current-buffer buf (save-buffer)))
18487 (kill-buffer buf))))
18489 (defun org-agenda-prepare-buffers (files)
18490 "Create buffers for all agenda files, protect archived trees and comments."
18491 (interactive)
18492 (let ((pa '(:org-archived t))
18493 (pc '(:org-comment t))
18494 (pall '(:org-archived t :org-comment t))
18495 (inhibit-read-only t)
18496 (org-inhibit-startup org-agenda-inhibit-startup)
18497 (rea (concat ":" org-archive-tag ":"))
18498 file re pos)
18499 (setq org-tag-alist-for-agenda nil
18500 org-tag-groups-alist-for-agenda nil)
18501 (save-excursion
18502 (save-restriction
18503 (while (setq file (pop files))
18504 (catch 'nextfile
18505 (if (bufferp file)
18506 (set-buffer file)
18507 (org-check-agenda-file file)
18508 (set-buffer (org-get-agenda-file-buffer file)))
18509 (widen)
18510 (org-set-regexps-and-options 'tags-only)
18511 (setq pos (point))
18512 (or (memq 'category org-agenda-ignore-properties)
18513 (org-refresh-category-properties))
18514 (or (memq 'stats org-agenda-ignore-properties)
18515 (org-refresh-stats-properties))
18516 (or (memq 'effort org-agenda-ignore-properties)
18517 (org-refresh-effort-properties))
18518 (or (memq 'appt org-agenda-ignore-properties)
18519 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18520 (setq org-todo-keywords-for-agenda
18521 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18522 (setq org-done-keywords-for-agenda
18523 (append org-done-keywords-for-agenda org-done-keywords))
18524 (setq org-todo-keyword-alist-for-agenda
18525 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18526 (setq org-tag-alist-for-agenda
18527 (org-uniquify
18528 (append org-tag-alist-for-agenda
18529 org-tag-alist
18530 org-tag-persistent-alist)))
18531 (if org-group-tags
18532 (setq org-tag-groups-alist-for-agenda
18533 (org-uniquify-alist
18534 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18535 (org-with-silent-modifications
18536 (save-excursion
18537 (remove-text-properties (point-min) (point-max) pall)
18538 (when org-agenda-skip-archived-trees
18539 (goto-char (point-min))
18540 (while (re-search-forward rea nil t)
18541 (if (org-at-heading-p t)
18542 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18543 (goto-char (point-min))
18544 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18545 (while (re-search-forward re nil t)
18546 (when (save-match-data (org-in-commented-heading-p t))
18547 (add-text-properties
18548 (match-beginning 0) (org-end-of-subtree t) pc)))))
18549 (goto-char pos)))))
18550 (setq org-todo-keywords-for-agenda
18551 (org-uniquify org-todo-keywords-for-agenda))
18552 (setq org-todo-keyword-alist-for-agenda
18553 (org-uniquify org-todo-keyword-alist-for-agenda))))
18556 ;;;; CDLaTeX minor mode
18558 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18559 "Keymap for the minor `org-cdlatex-mode'.")
18561 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18562 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18563 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18564 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18565 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18567 (defvar org-cdlatex-texmathp-advice-is-done nil
18568 "Flag remembering if we have applied the advice to texmathp already.")
18570 (define-minor-mode org-cdlatex-mode
18571 "Toggle the minor `org-cdlatex-mode'.
18572 This mode supports entering LaTeX environment and math in LaTeX fragments
18573 in Org-mode.
18574 \\{org-cdlatex-mode-map}"
18575 nil " OCDL" nil
18576 (when org-cdlatex-mode
18577 (require 'cdlatex)
18578 (run-hooks 'cdlatex-mode-hook)
18579 (cdlatex-compute-tables))
18580 (unless org-cdlatex-texmathp-advice-is-done
18581 (setq org-cdlatex-texmathp-advice-is-done t)
18582 (defadvice texmathp (around org-math-always-on activate)
18583 "Always return t in org-mode buffers.
18584 This is because we want to insert math symbols without dollars even outside
18585 the LaTeX math segments. If Orgmode thinks that point is actually inside
18586 an embedded LaTeX fragment, let texmathp do its job.
18587 \\[org-cdlatex-mode-map]"
18588 (interactive)
18589 (let (p)
18590 (cond
18591 ((not (derived-mode-p 'org-mode)) ad-do-it)
18592 ((eq this-command 'cdlatex-math-symbol)
18593 (setq ad-return-value t
18594 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18596 (let ((p (org-inside-LaTeX-fragment-p)))
18597 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18598 (setq ad-return-value t
18599 texmathp-why '("Org-mode embedded math" . 0))
18600 (if p ad-do-it)))))))))
18602 (defun turn-on-org-cdlatex ()
18603 "Unconditionally turn on `org-cdlatex-mode'."
18604 (org-cdlatex-mode 1))
18606 (defun org-try-cdlatex-tab ()
18607 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18608 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18609 - inside a LaTeX fragment, or
18610 - after the first word in a line, where an abbreviation expansion could
18611 insert a LaTeX environment."
18612 (when org-cdlatex-mode
18613 (cond
18614 ;; Before any word on the line: No expansion possible.
18615 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18616 ;; Just after first word on the line: Expand it. Make sure it
18617 ;; cannot happen on headlines, though.
18618 ((save-excursion
18619 (skip-chars-backward "a-zA-Z0-9*")
18620 (skip-chars-backward " \t")
18621 (and (bolp) (not (org-at-heading-p))))
18622 (cdlatex-tab) t)
18623 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18625 (defun org-cdlatex-underscore-caret (&optional arg)
18626 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18627 Revert to the normal definition outside of these fragments."
18628 (interactive "P")
18629 (if (org-inside-LaTeX-fragment-p)
18630 (call-interactively 'cdlatex-sub-superscript)
18631 (let (org-cdlatex-mode)
18632 (call-interactively (key-binding (vector last-input-event))))))
18634 (defun org-cdlatex-math-modify (&optional arg)
18635 "Execute `cdlatex-math-modify' in LaTeX fragments.
18636 Revert to the normal definition outside of these fragments."
18637 (interactive "P")
18638 (if (org-inside-LaTeX-fragment-p)
18639 (call-interactively 'cdlatex-math-modify)
18640 (let (org-cdlatex-mode)
18641 (call-interactively (key-binding (vector last-input-event))))))
18643 (defun org-cdlatex-environment-indent (&optional environment item)
18644 "Execute `cdlatex-environment' and indent the inserted environment.
18646 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18648 The inserted environment is indented to current indentation
18649 unless point is at the beginning of the line, in which the
18650 environment remains unintended."
18651 (interactive)
18652 ;; cdlatex-environment always return nil. Therefore, capture output
18653 ;; first and determine if an environment was selected.
18654 (let* ((beg (point-marker))
18655 (end (copy-marker (point) t))
18656 (inserted (progn
18657 (ignore-errors (cdlatex-environment environment item))
18658 (< beg end)))
18659 ;; Figure out how many lines to move forward after the
18660 ;; environment has been inserted.
18661 (lines (when inserted
18662 (save-excursion
18663 (- (loop while (< beg (point))
18664 with x = 0
18665 do (forward-line -1)
18666 (incf x)
18667 finally return x)
18668 (if (progn (goto-char beg)
18669 (and (progn (skip-chars-forward " \t") (eolp))
18670 (progn (skip-chars-backward " \t") (bolp))))
18671 1 0)))))
18672 (env (org-trim (delete-and-extract-region beg end))))
18673 (when inserted
18674 ;; Get indentation of next line unless at column 0.
18675 (let ((ind (if (bolp) 0
18676 (save-excursion
18677 (org-return-indent)
18678 (prog1 (org-get-indentation)
18679 (when (progn (skip-chars-forward " \t") (eolp))
18680 (delete-region beg (point)))))))
18681 (bol (progn (skip-chars-backward " \t") (bolp))))
18682 ;; Insert a newline before environment unless at column zero
18683 ;; to "escape" the current line. Insert a newline if
18684 ;; something is one the same line as \end{ENVIRONMENT}.
18685 (insert
18686 (concat (unless bol "\n") env
18687 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18688 (unless (zerop ind)
18689 (save-excursion
18690 (goto-char beg)
18691 (while (< (point) end)
18692 (unless (eolp) (org-indent-line-to ind))
18693 (forward-line))))
18694 (goto-char beg)
18695 (forward-line lines)
18696 (org-indent-line-to ind)))
18697 (set-marker beg nil)
18698 (set-marker end nil)))
18701 ;;;; LaTeX fragments
18703 (defun org-inside-LaTeX-fragment-p ()
18704 "Test if point is inside a LaTeX fragment.
18705 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18706 sequence appearing also before point.
18707 Even though the matchers for math are configurable, this function assumes
18708 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18709 delimiters are skipped when they have been removed by customization.
18710 The return value is nil, or a cons cell with the delimiter and the
18711 position of this delimiter.
18713 This function does a reasonably good job, but can locally be fooled by
18714 for example currency specifications. For example it will assume being in
18715 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18716 fragments that are properly closed, but during editing, we have to live
18717 with the uncertainty caused by missing closing delimiters. This function
18718 looks only before point, not after."
18719 (catch 'exit
18720 (let ((pos (point))
18721 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18722 (lim (progn
18723 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18724 (point)))
18725 dd-on str (start 0) m re)
18726 (goto-char pos)
18727 (when dodollar
18728 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18729 re (nth 1 (assoc "$" org-latex-regexps)))
18730 (while (string-match re str start)
18731 (cond
18732 ((= (match-end 0) (length str))
18733 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18734 ((= (match-end 0) (- (length str) 5))
18735 (throw 'exit nil))
18736 (t (setq start (match-end 0))))))
18737 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18738 (goto-char pos)
18739 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18740 (and (match-beginning 2) (throw 'exit nil))
18741 ;; count $$
18742 (while (re-search-backward "\\$\\$" lim t)
18743 (setq dd-on (not dd-on)))
18744 (goto-char pos)
18745 (if dd-on (cons "$$" m))))))
18747 (defun org-inside-latex-macro-p ()
18748 "Is point inside a LaTeX macro or its arguments?"
18749 (save-match-data
18750 (org-in-regexp
18751 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18753 (defvar org-latex-fragment-image-overlays nil
18754 "List of overlays carrying the images of latex fragments.")
18755 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18757 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18758 "Remove all overlays with LaTeX fragment images in current buffer.
18759 When optional arguments BEG and END are non-nil, remove all
18760 overlays between them instead. Return t when some overlays were
18761 removed, nil otherwise."
18762 (let (removedp)
18763 (setq org-latex-fragment-image-overlays
18764 (let ((beg (or beg (point-min)))
18765 (end (or end (point-max))))
18766 (org-remove-if
18767 (lambda (o)
18768 (and (>= (overlay-start o) beg)
18769 (<= (overlay-end o) end)
18770 (progn (delete-overlay o)
18771 (or removedp (setq removedp t)))))
18772 org-latex-fragment-image-overlays)))
18773 removedp))
18775 (define-obsolete-function-alias
18776 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18777 (defun org-toggle-latex-fragment (&optional arg)
18778 "Preview the LaTeX fragment at point, or all locally or globally.
18780 If the cursor is on a LaTeX fragment, create the image and overlay
18781 it over the source code, if there is none. Remove it otherwise.
18782 If there is no fragment at point, display all fragments in the
18783 current section.
18785 With prefix ARG, preview or clear image for all fragments in the
18786 current subtree or in the whole buffer when used before the first
18787 headline. With a double prefix ARG \\[universal-argument] \
18788 \\[universal-argument] preview or clear images
18789 for all fragments in the buffer."
18790 (interactive "P")
18791 (unless (buffer-file-name (buffer-base-buffer))
18792 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18793 (when (display-graphic-p)
18794 (catch 'exit
18795 (save-excursion
18796 (let ((window-start (window-start)) msg)
18797 (save-restriction
18798 (cond
18799 ((or (equal arg '(16))
18800 (and (equal arg '(4))
18801 (org-with-limited-levels (org-before-first-heading-p))))
18802 (if (org-remove-latex-fragment-image-overlays)
18803 (progn (message "LaTeX fragments images removed from buffer")
18804 (throw 'exit nil))
18805 (setq msg "Creating images for buffer...")))
18806 ((equal arg '(4))
18807 (org-with-limited-levels (org-back-to-heading t))
18808 (let ((beg (point))
18809 (end (progn (org-end-of-subtree t) (point))))
18810 (if (org-remove-latex-fragment-image-overlays beg end)
18811 (progn
18812 (message "LaTeX fragment images removed from subtree")
18813 (throw 'exit nil))
18814 (setq msg "Creating images for subtree...")
18815 (narrow-to-region beg end))))
18816 ((let ((datum (org-element-context)))
18817 (when (memq (org-element-type datum)
18818 '(latex-environment latex-fragment))
18819 (let* ((beg (org-element-property :begin datum))
18820 (end (org-element-property :end datum)))
18821 (if (org-remove-latex-fragment-image-overlays beg end)
18822 (progn (message "LaTeX fragment image removed")
18823 (throw 'exit nil))
18824 (narrow-to-region beg end)
18825 (setq msg "Creating image..."))))))
18827 (org-with-limited-levels
18828 (let ((beg (if (org-at-heading-p) (line-beginning-position)
18829 (outline-previous-heading)
18830 (point)))
18831 (end (progn (outline-next-heading) (point))))
18832 (if (org-remove-latex-fragment-image-overlays beg end)
18833 (progn
18834 (message "LaTeX fragment images removed from section")
18835 (throw 'exit nil))
18836 (setq msg "Creating images for section...")
18837 (narrow-to-region beg end))))))
18838 (let ((file (buffer-file-name (buffer-base-buffer))))
18839 (org-format-latex
18840 (concat org-latex-preview-ltxpng-directory
18841 (file-name-sans-extension (file-name-nondirectory file)))
18842 ;; Emacs cannot overlay images from remote hosts.
18843 ;; Create it in `temporary-file-directory' instead.
18844 (if (file-remote-p file) temporary-file-directory
18845 default-directory)
18846 'overlays msg 'forbuffer
18847 org-latex-create-formula-image-program)))
18848 ;; Work around a bug that doesn't restore window's start
18849 ;; when widening back the buffer.
18850 (set-window-start nil window-start)
18851 (message (concat msg "done")))))))
18853 (defun org-format-latex
18854 (prefix &optional dir overlays msg forbuffer processing-type)
18855 "Replace LaTeX fragments with links to an image, and produce images.
18857 When optional argument OVERLAYS is non-nil, display the image on
18858 top of the fragment instead of replacing it.
18860 PROCESSING-TYPE is the conversion method to use, as a symbol.
18862 Some of the options can be changed using the variable
18863 `org-format-latex-options', which see."
18864 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18865 (unless (eq processing-type 'verbatim)
18866 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18867 (cnt 0)
18868 checkdir-flag)
18869 (goto-char (point-min))
18870 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
18871 (when (and overlays (memq processing-type '(dvipng imagemagick)))
18872 (overlay-recenter (point-max)))
18873 (while (re-search-forward math-regexp nil t)
18874 (unless (and overlays
18875 (eq (get-char-property (point) 'org-overlay-type)
18876 'org-latex-overlay))
18877 (let* ((context (org-element-context))
18878 (type (org-element-type context)))
18879 (when (memq type '(latex-environment latex-fragment))
18880 (let ((block-type (eq type 'latex-environment))
18881 (value (org-element-property :value context))
18882 (beg (org-element-property :begin context))
18883 (end (save-excursion
18884 (goto-char (org-element-property :end context))
18885 (skip-chars-backward " \r\t\n")
18886 (point))))
18887 (case processing-type
18888 (mathjax
18889 ;; Prepare for MathJax processing.
18890 (if (eq (char-after beg) ?$)
18891 (save-excursion
18892 (delete-region beg end)
18893 (insert "\\(" (substring value 1 -1) "\\)"))
18894 (goto-char end)))
18895 ((dvipng imagemagick)
18896 ;; Process to an image.
18897 (incf cnt)
18898 (goto-char beg)
18899 (let* ((face (face-at-point))
18900 ;; Get the colors from the face at point.
18902 (let ((color (plist-get org-format-latex-options
18903 :foreground)))
18904 (if (and forbuffer (eq color 'auto))
18905 (face-attribute face :foreground nil 'default)
18906 color)))
18908 (let ((color (plist-get org-format-latex-options
18909 :background)))
18910 (if (and forbuffer (eq color 'auto))
18911 (face-attribute face :background nil 'default)
18912 color)))
18913 (hash (sha1 (prin1-to-string
18914 (list org-format-latex-header
18915 org-latex-default-packages-alist
18916 org-latex-packages-alist
18917 org-format-latex-options
18918 forbuffer value fg bg))))
18919 (absprefix (expand-file-name prefix dir))
18920 (linkfile (format "%s_%s.png" prefix hash))
18921 (movefile (format "%s_%s.png" absprefix hash))
18922 (sep (and block-type "\n\n"))
18923 (link (concat sep "[[file:" linkfile "]]" sep))
18924 (options
18925 (org-combine-plists
18926 org-format-latex-options
18927 `(:foreground ,fg :background ,bg))))
18928 (when msg (message msg cnt))
18929 (unless checkdir-flag ; Ensure the directory exists.
18930 (setq checkdir-flag t)
18931 (let ((todir (file-name-directory absprefix)))
18932 (unless (file-directory-p todir)
18933 (make-directory todir t))))
18934 (unless (file-exists-p movefile)
18935 (org-create-formula-image
18936 value movefile options forbuffer processing-type))
18937 (if overlays
18938 (progn
18939 (dolist (o (overlays-in beg end))
18940 (when (eq (overlay-get o 'org-overlay-type)
18941 'org-latex-overlay)
18942 (delete-overlay o)))
18943 (let ((ov (make-overlay beg end)))
18944 (overlay-put ov
18945 'org-overlay-type
18946 'org-latex-overlay)
18947 (overlay-put ov 'evaporate t)
18948 (if (featurep 'xemacs)
18949 (progn
18950 (overlay-put ov 'invisible t)
18951 (overlay-put
18952 ov 'end-glyph
18953 (make-glyph
18954 (vector 'png :file movefile))))
18955 (overlay-put
18956 ov 'display
18957 (list 'image
18958 :type 'png
18959 :file movefile
18960 :ascent 'center)))
18961 (push ov org-latex-fragment-image-overlays))
18962 (goto-char end))
18963 (delete-region beg end)
18964 (insert
18965 (org-add-props link
18966 (list 'org-latex-src
18967 (replace-regexp-in-string "\"" "" value)
18968 'org-latex-src-embed-type
18969 (if block-type 'paragraph 'character)))))))
18970 (mathml
18971 ;; Process to MathML.
18972 (unless (org-format-latex-mathml-available-p)
18973 (user-error "LaTeX to MathML converter not configured"))
18974 (incf cnt)
18975 (when msg (message msg cnt))
18976 (goto-char beg)
18977 (delete-region beg end)
18978 (insert (org-format-latex-as-mathml
18979 value block-type prefix dir)))
18980 (otherwise
18981 (error "Unknown conversion type %s for LaTeX fragments"
18982 processing-type)))))))))))
18984 (defun org-create-math-formula (latex-frag &optional mathml-file)
18985 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18986 Use `org-latex-to-mathml-convert-command'. If the conversion is
18987 sucessful, return the portion between \"<math...> </math>\"
18988 elements otherwise return nil. When MATHML-FILE is specified,
18989 write the results in to that file. When invoked as an
18990 interactive command, prompt for LATEX-FRAG, with initial value
18991 set to the current active region and echo the results for user
18992 inspection."
18993 (interactive (list (let ((frag (when (org-region-active-p)
18994 (buffer-substring-no-properties
18995 (region-beginning) (region-end)))))
18996 (read-string "LaTeX Fragment: " frag nil frag))))
18997 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18998 (let* ((tmp-in-file (file-relative-name
18999 (make-temp-name (expand-file-name "ltxmathml-in"))))
19000 (ignore (write-region latex-frag nil tmp-in-file))
19001 (tmp-out-file (file-relative-name
19002 (make-temp-name (expand-file-name "ltxmathml-out"))))
19003 (cmd (format-spec
19004 org-latex-to-mathml-convert-command
19005 `((?j . ,(shell-quote-argument
19006 (expand-file-name org-latex-to-mathml-jar-file)))
19007 (?I . ,(shell-quote-argument tmp-in-file))
19008 (?i . ,latex-frag)
19009 (?o . ,(shell-quote-argument tmp-out-file)))))
19010 mathml shell-command-output)
19011 (when (org-called-interactively-p 'any)
19012 (unless (org-format-latex-mathml-available-p)
19013 (user-error "LaTeX to MathML converter not configured")))
19014 (message "Running %s" cmd)
19015 (setq shell-command-output (shell-command-to-string cmd))
19016 (setq mathml
19017 (when (file-readable-p tmp-out-file)
19018 (with-current-buffer (find-file-noselect tmp-out-file t)
19019 (goto-char (point-min))
19020 (when (re-search-forward
19021 (concat
19022 (regexp-quote
19023 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19024 "[^>]*?>"
19025 "\\(.\\|\n\\)*"
19026 "</math>")
19027 nil t)
19028 (prog1 (match-string 0) (kill-buffer))))))
19029 (cond
19030 (mathml
19031 (setq mathml
19032 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19033 (when mathml-file
19034 (write-region mathml nil mathml-file))
19035 (when (org-called-interactively-p 'any)
19036 (message mathml)))
19037 ((message "LaTeX to MathML conversion failed")
19038 (message shell-command-output)))
19039 (delete-file tmp-in-file)
19040 (when (file-exists-p tmp-out-file)
19041 (delete-file tmp-out-file))
19042 mathml))
19044 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19045 prefix &optional dir)
19046 "Use `org-create-math-formula' but check local cache first."
19047 (let* ((absprefix (expand-file-name prefix dir))
19048 (print-length nil) (print-level nil)
19049 (formula-id (concat
19050 "formula-"
19051 (sha1
19052 (prin1-to-string
19053 (list latex-frag
19054 org-latex-to-mathml-convert-command)))))
19055 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19056 (formula-cache-dir (file-name-directory formula-cache)))
19058 (unless (file-directory-p formula-cache-dir)
19059 (make-directory formula-cache-dir t))
19061 (unless (file-exists-p formula-cache)
19062 (org-create-math-formula latex-frag formula-cache))
19064 (if (file-exists-p formula-cache)
19065 ;; Successful conversion. Return the link to MathML file.
19066 (org-add-props
19067 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19068 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19069 'org-latex-src-embed-type (if latex-frag-type
19070 'paragraph 'character)))
19071 ;; Failed conversion. Return the LaTeX fragment verbatim
19072 latex-frag)))
19074 (defun org-create-formula-image (string tofile options buffer &optional type)
19075 "Create an image from LaTeX source using dvipng or convert.
19076 This function calls either `org-create-formula-image-with-dvipng'
19077 or `org-create-formula-image-with-imagemagick' depending on the
19078 value of `org-latex-create-formula-image-program' or on the value
19079 of the optional TYPE variable.
19081 Note: ultimately these two function should be combined as they
19082 share a good deal of logic."
19083 (org-check-external-command
19084 "latex" "needed to convert LaTeX fragments to images")
19085 (funcall
19086 (case (or type org-latex-create-formula-image-program)
19087 ('dvipng
19088 (org-check-external-command
19089 "dvipng" "needed to convert LaTeX fragments to images")
19090 'org-create-formula-image-with-dvipng)
19091 ('imagemagick
19092 (org-check-external-command
19093 "convert" "you need to install imagemagick")
19094 'org-create-formula-image-with-imagemagick)
19095 (t (error
19096 "Invalid value of `org-latex-create-formula-image-program'")))
19097 string tofile options buffer))
19099 (declare-function org-export-get-backend "ox" (name))
19100 (declare-function org-export--get-global-options "ox" (&optional backend))
19101 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19102 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19103 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19104 (defun org-create-formula--latex-header ()
19105 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19106 (let ((info (org-combine-plists (org-export--get-global-options
19107 (org-export-get-backend 'latex))
19108 (org-export--get-inbuffer-options
19109 (org-export-get-backend 'latex)))))
19110 (org-latex-guess-babel-language
19111 (org-latex-guess-inputenc
19112 (org-splice-latex-header
19113 org-format-latex-header
19114 org-latex-default-packages-alist
19115 org-latex-packages-alist t
19116 (plist-get info :latex-header)))
19117 info)))
19119 (defun org--get-display-dpi ()
19120 "Get the DPI of the display.
19122 Assumes that the display has the same pixel width in the
19123 horizontal and vertical directions."
19124 (if (display-graphic-p)
19125 (round (/ (display-pixel-height)
19126 (/ (display-mm-height) 25.4)))
19127 (error "Attempt to calculate the dpi of a non-graphic display")))
19129 ;; This function borrows from Ganesh Swami's latex2png.el
19130 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19131 "This calls dvipng."
19132 (require 'ox-latex)
19133 (let* ((tmpdir (if (featurep 'xemacs)
19134 (temp-directory)
19135 temporary-file-directory))
19136 (texfilebase (make-temp-name
19137 (expand-file-name "orgtex" tmpdir)))
19138 (texfile (concat texfilebase ".tex"))
19139 (dvifile (concat texfilebase ".dvi"))
19140 (pngfile (concat texfilebase ".png"))
19141 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19142 ;; This assumes that the display has the same pixel width in
19143 ;; the horizontal and vertical directions
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 "Transparent")))
19149 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19150 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19151 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19152 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19153 (let ((latex-header (org-create-formula--latex-header)))
19154 (with-temp-file texfile
19155 (insert latex-header)
19156 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19157 (let ((dir default-directory))
19158 (ignore-errors
19159 (cd tmpdir)
19160 (call-process "latex" nil nil nil texfile))
19161 (cd dir))
19162 (if (not (file-exists-p dvifile))
19163 (progn (message "Failed to create dvi file from %s" texfile) nil)
19164 (ignore-errors
19165 (if (featurep 'xemacs)
19166 (call-process "dvipng" nil nil nil
19167 "-fg" fg "-bg" bg
19168 "-T" "tight"
19169 "-o" pngfile
19170 dvifile)
19171 (call-process "dvipng" nil nil nil
19172 "-fg" fg "-bg" bg
19173 "-D" dpi
19174 ;;"-x" scale "-y" scale
19175 "-T" "tight"
19176 "-o" pngfile
19177 dvifile)))
19178 (if (not (file-exists-p pngfile))
19179 (if org-format-latex-signal-error
19180 (error "Failed to create png file from %s" texfile)
19181 (message "Failed to create png file from %s" texfile)
19182 nil)
19183 ;; Use the requested file name and clean up
19184 (copy-file pngfile tofile 'replace)
19185 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19186 (if (file-exists-p (concat texfilebase e))
19187 (delete-file (concat texfilebase e))))
19188 pngfile))))
19190 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19191 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19192 "This calls convert, which is included into imagemagick."
19193 (require 'ox-latex)
19194 (let* ((tmpdir (if (featurep 'xemacs)
19195 (temp-directory)
19196 temporary-file-directory))
19197 (texfilebase (make-temp-name
19198 (expand-file-name "orgtex" tmpdir)))
19199 (texfile (concat texfilebase ".tex"))
19200 (pdffile (concat texfilebase ".pdf"))
19201 (pngfile (concat texfilebase ".png"))
19202 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19203 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19204 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19205 "black"))
19206 (bg (or (plist-get options (if buffer :background :html-background))
19207 "white")))
19208 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19209 (setq fg (org-latex-color-format fg)))
19210 (if (eq bg 'default) (setq bg (org-latex-color :background))
19211 (setq bg (org-latex-color-format
19212 (if (string= bg "Transparent") "white" bg))))
19213 (let ((latex-header (org-create-formula--latex-header)))
19214 (with-temp-file texfile
19215 (insert latex-header)
19216 (insert "\n\\begin{document}\n"
19217 "\\definecolor{fg}{rgb}{" fg "}\n"
19218 "\\definecolor{bg}{rgb}{" bg "}\n"
19219 "\n\\pagecolor{bg}\n"
19220 "\n{\\color{fg}\n"
19221 string
19222 "\n}\n"
19223 "\n\\end{document}\n")))
19224 (org-latex-compile texfile t)
19225 (if (not (file-exists-p pdffile))
19226 (progn (message "Failed to create pdf file from %s" texfile) nil)
19227 (ignore-errors
19228 (if (featurep 'xemacs)
19229 (call-process "convert" nil nil nil
19230 "-density" "96"
19231 "-trim"
19232 "-antialias"
19233 pdffile
19234 "-quality" "100"
19235 ;; "-sharpen" "0x1.0"
19236 pngfile)
19237 (call-process "convert" nil nil nil
19238 "-density" dpi
19239 "-trim"
19240 "-antialias"
19241 pdffile
19242 "-quality" "100"
19243 ;; "-sharpen" "0x1.0"
19244 pngfile)))
19245 (if (not (file-exists-p pngfile))
19246 (if org-format-latex-signal-error
19247 (error "Failed to create png file from %s" texfile)
19248 (message "Failed to create png file from %s" texfile)
19249 nil)
19250 ;; Use the requested file name and clean up
19251 (copy-file pngfile tofile 'replace)
19252 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19253 (if (file-exists-p (concat texfilebase e))
19254 (delete-file (concat texfilebase e))))
19255 pngfile))))
19257 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19258 "Fill a LaTeX header template TPL.
19259 In the template, the following place holders will be recognized:
19261 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19262 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19263 [PACKAGES] \\usepackage statements for PKG
19264 [NO-PACKAGES] do not include PKG
19265 [EXTRA] the string EXTRA
19266 [NO-EXTRA] do not include EXTRA
19268 For backward compatibility, if both the positive and the negative place
19269 holder is missing, the positive one (without the \"NO-\") will be
19270 assumed to be present at the end of the template.
19271 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19272 EXTRA is a string.
19273 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19274 (let (rpl (end ""))
19275 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19276 (setq rpl (if (or (match-end 1) (not def-pkg))
19277 "" (org-latex-packages-to-string def-pkg snippets-p t))
19278 tpl (replace-match rpl t t tpl))
19279 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19281 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19282 (setq rpl (if (or (match-end 1) (not pkg))
19283 "" (org-latex-packages-to-string pkg snippets-p t))
19284 tpl (replace-match rpl t t tpl))
19285 (if pkg (setq end
19286 (concat end "\n"
19287 (org-latex-packages-to-string pkg snippets-p)))))
19289 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19290 (setq rpl (if (or (match-end 1) (not extra))
19291 "" (concat extra "\n"))
19292 tpl (replace-match rpl t t tpl))
19293 (if (and extra (string-match "\\S-" extra))
19294 (setq end (concat end "\n" extra))))
19296 (if (string-match "\\S-" end)
19297 (concat tpl "\n" end)
19298 tpl)))
19300 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19301 "Turn an alist of packages into a string with the \\usepackage macros."
19302 (setq pkg (mapconcat (lambda(p)
19303 (cond
19304 ((stringp p) p)
19305 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19306 (format "%% Package %s omitted" (cadr p)))
19307 ((equal "" (car p))
19308 (format "\\usepackage{%s}" (cadr p)))
19310 (format "\\usepackage[%s]{%s}"
19311 (car p) (cadr p)))))
19313 "\n"))
19314 (if newline (concat pkg "\n") pkg))
19316 (defun org-dvipng-color (attr)
19317 "Return a RGB color specification for dvipng."
19318 (apply 'format "rgb %s %s %s"
19319 (mapcar 'org-normalize-color
19320 (if (featurep 'xemacs)
19321 (color-rgb-components
19322 (face-property 'default
19323 (cond ((eq attr :foreground) 'foreground)
19324 ((eq attr :background) 'background))))
19325 (color-values (face-attribute 'default attr nil))))))
19327 (defun org-dvipng-color-format (color-name)
19328 "Convert COLOR-NAME to a RGB color value for dvipng."
19329 (apply 'format "rgb %s %s %s"
19330 (mapcar 'org-normalize-color
19331 (color-values color-name))))
19333 (defun org-latex-color (attr)
19334 "Return a RGB color for the LaTeX color package."
19335 (apply 'format "%s,%s,%s"
19336 (mapcar 'org-normalize-color
19337 (if (featurep 'xemacs)
19338 (color-rgb-components
19339 (face-property 'default
19340 (cond ((eq attr :foreground) 'foreground)
19341 ((eq attr :background) 'background))))
19342 (color-values (face-attribute 'default attr nil))))))
19344 (defun org-latex-color-format (color-name)
19345 "Convert COLOR-NAME to a RGB color value."
19346 (apply 'format "%s,%s,%s"
19347 (mapcar 'org-normalize-color
19348 (color-values color-name))))
19350 (defun org-normalize-color (value)
19351 "Return string to be used as color value for an RGB component."
19352 (format "%g" (/ value 65535.0)))
19356 ;; Image display
19358 (defvar org-inline-image-overlays nil)
19359 (make-variable-buffer-local 'org-inline-image-overlays)
19361 (defun org-toggle-inline-images (&optional include-linked)
19362 "Toggle the display of inline images.
19363 INCLUDE-LINKED is passed to `org-display-inline-images'."
19364 (interactive "P")
19365 (if org-inline-image-overlays
19366 (progn
19367 (org-remove-inline-images)
19368 (when (org-called-interactively-p 'interactive)
19369 (message "Inline image display turned off")))
19370 (org-display-inline-images include-linked)
19371 (when (org-called-interactively-p 'interactive)
19372 (message (if org-inline-image-overlays
19373 (format "%d images displayed inline"
19374 (length org-inline-image-overlays))
19375 "No images to display inline")))))
19377 (defun org-redisplay-inline-images ()
19378 "Refresh the display of inline images."
19379 (interactive)
19380 (if (not org-inline-image-overlays)
19381 (org-toggle-inline-images)
19382 (org-toggle-inline-images)
19383 (org-toggle-inline-images)))
19385 (defun org-display-inline-images (&optional include-linked refresh beg end)
19386 "Display inline images.
19388 An inline image is a link which follows either of these
19389 conventions:
19391 1. Its path is a file with an extension matching return value
19392 from `image-file-name-regexp' and it has no contents.
19394 2. Its description consists in a single link of the previous
19395 type.
19397 When optional argument INCLUDE-LINKED is non-nil, also links with
19398 a text description part will be inlined. This can be nice for
19399 a quick look at those images, but it does not reflect what
19400 exported files will look like.
19402 When optional argument REFRESH is non-nil, refresh existing
19403 images between BEG and END. This will create new image displays
19404 only if necessary. BEG and END default to the buffer
19405 boundaries."
19406 (interactive "P")
19407 (when (display-graphic-p)
19408 (unless refresh
19409 (org-remove-inline-images)
19410 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19411 (org-with-wide-buffer
19412 (goto-char (or beg (point-min)))
19413 (let ((case-fold-search t)
19414 (file-extension-re (org-image-file-name-regexp)))
19415 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19416 (let ((link (save-match-data (org-element-context))))
19417 ;; Check if we're at an inline image.
19418 (when (and (equal (org-element-property :type link) "file")
19419 (or include-linked
19420 (not (org-element-property :contents-begin link)))
19421 (let ((parent (org-element-property :parent link)))
19422 (or (not (eq (org-element-type parent) 'link))
19423 (not (cdr (org-element-contents parent)))))
19424 (org-string-match-p file-extension-re
19425 (org-element-property :path link)))
19426 (let ((file (expand-file-name (org-element-property :path link))))
19427 (when (file-exists-p file)
19428 (let ((width
19429 ;; Apply `org-image-actual-width' specifications.
19430 (cond
19431 ((not (image-type-available-p 'imagemagick)) nil)
19432 ((eq org-image-actual-width t) nil)
19433 ((listp org-image-actual-width)
19435 ;; First try to find a width among
19436 ;; attributes associated to the paragraph
19437 ;; containing link.
19438 (let ((paragraph
19439 (let ((e link))
19440 (while (and (setq e (org-element-property
19441 :parent e))
19442 (not (eq (org-element-type e)
19443 'paragraph))))
19444 e)))
19445 (when paragraph
19446 (save-excursion
19447 (goto-char (org-element-property :begin paragraph))
19448 (when
19449 (re-search-forward
19450 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19451 (org-element-property
19452 :post-affiliated paragraph)
19454 (string-to-number (match-string 1))))))
19455 ;; Otherwise, fall-back to provided number.
19456 (car org-image-actual-width)))
19457 ((numberp org-image-actual-width)
19458 org-image-actual-width)))
19459 (old (get-char-property-and-overlay
19460 (org-element-property :begin link)
19461 'org-image-overlay)))
19462 (if (and (car-safe old) refresh)
19463 (image-refresh (overlay-get (cdr old) 'display))
19464 (let ((image (create-image file
19465 (and width 'imagemagick)
19467 :width width)))
19468 (when image
19469 (let* ((link
19470 ;; If inline image is the description
19471 ;; of another link, be sure to
19472 ;; consider the latter as the one to
19473 ;; apply the overlay on.
19474 (let ((parent
19475 (org-element-property :parent link)))
19476 (if (eq (org-element-type parent) 'link)
19477 parent
19478 link)))
19479 (ov (make-overlay
19480 (org-element-property :begin link)
19481 (progn
19482 (goto-char
19483 (org-element-property :end link))
19484 (skip-chars-backward " \t")
19485 (point)))))
19486 (overlay-put ov 'display image)
19487 (overlay-put ov 'face 'default)
19488 (overlay-put ov 'org-image-overlay t)
19489 (overlay-put
19490 ov 'modification-hooks
19491 (list 'org-display-inline-remove-overlay))
19492 (push ov org-inline-image-overlays)))))))))))))))
19494 (define-obsolete-function-alias
19495 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19497 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19498 "Remove inline-display overlay if a corresponding region is modified."
19499 (let ((inhibit-modification-hooks t))
19500 (when (and ov after)
19501 (delete ov org-inline-image-overlays)
19502 (delete-overlay ov))))
19504 (defun org-remove-inline-images ()
19505 "Remove inline display of images."
19506 (interactive)
19507 (mapc 'delete-overlay org-inline-image-overlays)
19508 (setq org-inline-image-overlays nil))
19510 ;;;; Key bindings
19512 ;; Outline functions from `outline-mode-prefix-map'
19513 ;; that can be remapped in Org:
19514 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19515 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19516 (define-key org-mode-map [remap outline-forward-same-level]
19517 'org-forward-heading-same-level)
19518 (define-key org-mode-map [remap outline-backward-same-level]
19519 'org-backward-heading-same-level)
19520 (define-key org-mode-map [remap show-branches]
19521 'org-kill-note-or-show-branches)
19522 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19523 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19524 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19525 (define-key org-mode-map [remap outline-next-visible-heading]
19526 'org-next-visible-heading)
19527 (define-key org-mode-map [remap outline-previous-visible-heading]
19528 'org-previous-visible-heading)
19530 ;; Outline functions from `outline-mode-prefix-map' that can not
19531 ;; be remapped in Org:
19533 ;; - the column "key binding" shows whether the Outline function is still
19534 ;; available in Org mode on the same key that it has been bound to in
19535 ;; Outline mode:
19536 ;; - "overridden": key used for a different functionality in Org mode
19537 ;; - else: key still bound to the same Outline function in Org mode
19539 ;; | Outline function | key binding | Org replacement |
19540 ;; |------------------------------------+-------------+--------------------------|
19541 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19542 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19543 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19544 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19545 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19546 ;; | `show-entry' | overridden | no replacement |
19547 ;; | `show-children' | `C-c C-i' | visibility cycling |
19548 ;; | `show-branches' | `C-c C-k' | still same function |
19549 ;; | `show-subtree' | overridden | visibility cycling |
19550 ;; | `show-all' | overridden | no replacement |
19551 ;; | `hide-subtree' | overridden | visibility cycling |
19552 ;; | `hide-body' | overridden | no replacement |
19553 ;; | `hide-entry' | overridden | visibility cycling |
19554 ;; | `hide-leaves' | overridden | no replacement |
19555 ;; | `hide-sublevels' | overridden | no replacement |
19556 ;; | `hide-other' | overridden | no replacement |
19558 ;; Make `C-c C-x' a prefix key
19559 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19561 ;; TAB key with modifiers
19562 (org-defkey org-mode-map "\C-i" 'org-cycle)
19563 (org-defkey org-mode-map [(tab)] 'org-cycle)
19564 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19565 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19566 ;; The following line is necessary under Suse GNU/Linux
19567 (unless (featurep 'xemacs)
19568 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19569 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19570 (define-key org-mode-map [backtab] 'org-shifttab)
19572 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19573 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19574 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19576 ;; Cursor keys with modifiers
19577 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19578 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19579 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19580 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19582 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19583 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19584 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19585 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19586 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19587 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19589 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19590 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19591 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19592 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19594 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19595 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19596 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19597 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19599 ;; Babel keys
19600 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19601 (mapc (lambda (pair)
19602 (define-key org-babel-map (car pair) (cdr pair)))
19603 org-babel-key-bindings)
19605 ;;; Extra keys for tty access.
19606 ;; We only set them when really needed because otherwise the
19607 ;; menus don't show the simple keys
19609 (when (or org-use-extra-keys
19610 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19611 (not window-system))
19612 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19613 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19614 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19615 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19616 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19617 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19618 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19619 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19620 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19621 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19622 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19623 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19624 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19625 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19626 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19627 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19628 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19629 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19630 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19631 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19632 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19633 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19634 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19635 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19636 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19637 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19638 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19639 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19641 ;; All the other keys
19643 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19644 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19645 (if (boundp 'narrow-map)
19646 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19647 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19648 (if (boundp 'narrow-map)
19649 (org-defkey narrow-map "b" 'org-narrow-to-block)
19650 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19651 (if (boundp 'narrow-map)
19652 (org-defkey narrow-map "e" 'org-narrow-to-element)
19653 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19654 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19655 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19656 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19657 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19658 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19659 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19660 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19661 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19662 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19663 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19664 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19665 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19666 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19667 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19668 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19669 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19670 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19671 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19672 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19673 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19674 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19675 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19676 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19677 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19678 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19679 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19680 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19681 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19682 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19683 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19684 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19685 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19686 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19687 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19688 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19689 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19690 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19691 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19692 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19693 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19694 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19695 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19696 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19697 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19698 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19699 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19700 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19701 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19702 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19703 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19704 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19705 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19706 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19707 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19708 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19709 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19710 (org-defkey org-mode-map "\C-c^" 'org-sort)
19711 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19712 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19713 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19714 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19715 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19716 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19717 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19718 (org-defkey org-mode-map "\C-m" 'org-return)
19719 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19720 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19721 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19722 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19723 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19724 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19725 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19726 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19727 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19728 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19729 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19730 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19731 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19732 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19733 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19734 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19735 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19736 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19737 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19738 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19739 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19740 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19741 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19742 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19743 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19745 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19746 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19747 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19749 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19750 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19751 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19752 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19753 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19754 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19755 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19756 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19757 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19758 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19759 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19760 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19761 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19762 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19763 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19764 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19765 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19766 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19767 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19768 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19769 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19770 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19771 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19773 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19774 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19775 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19776 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19777 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19779 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19781 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19783 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19784 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19786 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19789 (when (featurep 'xemacs)
19790 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19793 (defconst org-speed-commands-default
19795 ("Outline Navigation")
19796 ("n" . (org-speed-move-safe 'org-next-visible-heading))
19797 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
19798 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19799 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19800 ("F" . org-next-block)
19801 ("B" . org-previous-block)
19802 ("u" . (org-speed-move-safe 'outline-up-heading))
19803 ("j" . org-goto)
19804 ("g" . (org-refile t))
19805 ("Outline Visibility")
19806 ("c" . org-cycle)
19807 ("C" . org-shifttab)
19808 (" " . org-display-outline-path)
19809 ("s" . org-narrow-to-subtree)
19810 ("=" . org-columns)
19811 ("Outline Structure Editing")
19812 ("U" . org-metaup)
19813 ("D" . org-metadown)
19814 ("r" . org-metaright)
19815 ("l" . org-metaleft)
19816 ("R" . org-shiftmetaright)
19817 ("L" . org-shiftmetaleft)
19818 ("i" . (progn (forward-char 1) (call-interactively
19819 'org-insert-heading-respect-content)))
19820 ("^" . org-sort)
19821 ("w" . org-refile)
19822 ("a" . org-archive-subtree-default-with-confirmation)
19823 ("@" . org-mark-subtree)
19824 ("#" . org-toggle-comment)
19825 ("Clock Commands")
19826 ("I" . org-clock-in)
19827 ("O" . org-clock-out)
19828 ("Meta Data Editing")
19829 ("t" . org-todo)
19830 ("," . (org-priority))
19831 ("0" . (org-priority ?\ ))
19832 ("1" . (org-priority ?A))
19833 ("2" . (org-priority ?B))
19834 ("3" . (org-priority ?C))
19835 (":" . org-set-tags-command)
19836 ("e" . org-set-effort)
19837 ("E" . org-inc-effort)
19838 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19839 (org-entry-put (point) "APPT_WARNTIME" m)))
19840 ("Agenda Views etc")
19841 ("v" . org-agenda)
19842 ("/" . org-sparse-tree)
19843 ("Misc")
19844 ("o" . org-open-at-point)
19845 ("?" . org-speed-command-help)
19846 ("<" . (org-agenda-set-restriction-lock 'subtree))
19847 (">" . (org-agenda-remove-restriction-lock))
19849 "The default speed commands.")
19851 (defun org-print-speed-command (e)
19852 (if (> (length (car e)) 1)
19853 (progn
19854 (princ "\n")
19855 (princ (car e))
19856 (princ "\n")
19857 (princ (make-string (length (car e)) ?-))
19858 (princ "\n"))
19859 (princ (car e))
19860 (princ " ")
19861 (if (symbolp (cdr e))
19862 (princ (symbol-name (cdr e)))
19863 (prin1 (cdr e)))
19864 (princ "\n")))
19866 (defun org-speed-command-help ()
19867 "Show the available speed commands."
19868 (interactive)
19869 (if (not org-use-speed-commands)
19870 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19871 (with-output-to-temp-buffer "*Help*"
19872 (princ "User-defined Speed commands\n===========================\n")
19873 (mapc 'org-print-speed-command org-speed-commands-user)
19874 (princ "\n")
19875 (princ "Built-in Speed commands\n=======================\n")
19876 (mapc 'org-print-speed-command org-speed-commands-default))
19877 (with-current-buffer "*Help*"
19878 (setq truncate-lines t))))
19880 (defun org-speed-move-safe (cmd)
19881 "Execute CMD, but make sure that the cursor always ends up in a headline.
19882 If not, return to the original position and throw an error."
19883 (interactive)
19884 (let ((pos (point)))
19885 (call-interactively cmd)
19886 (unless (and (bolp) (org-at-heading-p))
19887 (goto-char pos)
19888 (error "Boundary reached while executing %s" cmd))))
19890 (defvar org-self-insert-command-undo-counter 0)
19892 (defvar org-table-auto-blank-field) ; defined in org-table.el
19893 (defvar org-speed-command nil)
19895 (define-obsolete-function-alias
19896 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19898 (defun org-speed-command-activate (keys)
19899 "Hook for activating single-letter speed commands.
19900 `org-speed-commands-default' specifies a minimal command set.
19901 Use `org-speed-commands-user' for further customization."
19902 (when (or (and (bolp) (looking-at org-outline-regexp))
19903 (and (functionp org-use-speed-commands)
19904 (funcall org-use-speed-commands)))
19905 (cdr (assoc keys (append org-speed-commands-user
19906 org-speed-commands-default)))))
19908 (define-obsolete-function-alias
19909 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19911 (defun org-babel-speed-command-activate (keys)
19912 "Hook for activating single-letter code block commands."
19913 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19914 (cdr (assoc keys org-babel-key-bindings))))
19916 (defcustom org-speed-command-hook
19917 '(org-speed-command-default-hook org-babel-speed-command-hook)
19918 "Hook for activating speed commands at strategic locations.
19919 Hook functions are called in sequence until a valid handler is
19920 found.
19922 Each hook takes a single argument, a user-pressed command key
19923 which is also a `self-insert-command' from the global map.
19925 Within the hook, examine the cursor position and the command key
19926 and return nil or a valid handler as appropriate. Handler could
19927 be one of an interactive command, a function, or a form.
19929 Set `org-use-speed-commands' to non-nil value to enable this
19930 hook. The default setting is `org-speed-command-activate'."
19931 :group 'org-structure
19932 :version "24.1"
19933 :type 'hook)
19935 (defun org-self-insert-command (N)
19936 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19937 If the cursor is in a table looking at whitespace, the whitespace is
19938 overwritten, and the table is not marked as requiring realignment."
19939 (interactive "p")
19940 (org-check-before-invisible-edit 'insert)
19941 (cond
19942 ((and org-use-speed-commands
19943 (let ((kv (this-command-keys-vector)))
19944 (setq org-speed-command
19945 (run-hook-with-args-until-success
19946 'org-speed-command-hook
19947 (make-string 1 (aref kv (1- (length kv))))))))
19948 (cond
19949 ((commandp org-speed-command)
19950 (setq this-command org-speed-command)
19951 (call-interactively org-speed-command))
19952 ((functionp org-speed-command)
19953 (funcall org-speed-command))
19954 ((and org-speed-command (listp org-speed-command))
19955 (eval org-speed-command))
19956 (t (let (org-use-speed-commands)
19957 (call-interactively 'org-self-insert-command)))))
19958 ((and
19959 (org-table-p)
19960 (progn
19961 ;; check if we blank the field, and if that triggers align
19962 (and (featurep 'org-table) org-table-auto-blank-field
19963 (memq last-command
19964 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
19965 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19966 ;; got extra space, this field does not determine column width
19967 (let (org-table-may-need-update) (org-table-blank-field))
19968 ;; no extra space, this field may determine column width
19969 (org-table-blank-field)))
19971 (eq N 1)
19972 (looking-at "[^|\n]* |"))
19973 (let (org-table-may-need-update)
19974 (goto-char (1- (match-end 0)))
19975 (backward-delete-char 1)
19976 (goto-char (match-beginning 0))
19977 (self-insert-command N)))
19979 (setq org-table-may-need-update t)
19980 (self-insert-command N)
19981 (org-fix-tags-on-the-fly)
19982 (if org-self-insert-cluster-for-undo
19983 (if (not (eq last-command 'org-self-insert-command))
19984 (setq org-self-insert-command-undo-counter 1)
19985 (if (>= org-self-insert-command-undo-counter 20)
19986 (setq org-self-insert-command-undo-counter 1)
19987 (and (> org-self-insert-command-undo-counter 0)
19988 buffer-undo-list (listp buffer-undo-list)
19989 (not (cadr buffer-undo-list)) ; remove nil entry
19990 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19991 (setq org-self-insert-command-undo-counter
19992 (1+ org-self-insert-command-undo-counter))))))))
19994 (defun org-check-before-invisible-edit (kind)
19995 "Check is editing if kind KIND would be dangerous with invisible text around.
19996 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19997 ;; First, try to get out of here as quickly as possible, to reduce overhead
19998 (if (and org-catch-invisible-edits
19999 (or (not (boundp 'visible-mode)) (not visible-mode))
20000 (or (get-char-property (point) 'invisible)
20001 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20002 ;; OK, we need to take a closer look
20003 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20004 (invisible-before-point (if (bobp) nil (get-char-property
20005 (1- (point)) 'invisible)))
20006 (border-and-ok-direction
20008 ;; Check if we are acting predictably before invisible text
20009 (and invisible-at-point (not invisible-before-point)
20010 (memq kind '(insert delete-backward)))
20011 ;; Check if we are acting predictably after invisible text
20012 ;; This works not well, and I have turned it off. It seems
20013 ;; better to always show and stop after invisible text.
20014 ;; (and (not invisible-at-point) invisible-before-point
20015 ;; (memq kind '(insert delete)))
20017 (when (or (memq invisible-at-point '(outline org-hide-block t))
20018 (memq invisible-before-point '(outline org-hide-block t)))
20019 (if (eq org-catch-invisible-edits 'error)
20020 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20021 (if (and org-custom-properties-overlays
20022 (y-or-n-p "Display invisible properties in this buffer? "))
20023 (org-toggle-custom-properties-visibility)
20024 ;; Make the area visible
20025 (save-excursion
20026 (if invisible-before-point
20027 (goto-char (previous-single-char-property-change
20028 (point) 'invisible)))
20029 (show-subtree))
20030 (cond
20031 ((eq org-catch-invisible-edits 'show)
20032 ;; That's it, we do the edit after showing
20033 (message
20034 "Unfolding invisible region around point before editing")
20035 (sit-for 1))
20036 ((and (eq org-catch-invisible-edits 'smart)
20037 border-and-ok-direction)
20038 (message "Unfolding invisible region around point before editing"))
20040 ;; Don't do the edit, make the user repeat it in full visibility
20041 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20043 (defun org-fix-tags-on-the-fly ()
20044 (when (and (equal (char-after (point-at-bol)) ?*)
20045 (org-at-heading-p))
20046 (org-align-tags-here org-tags-column)))
20048 (defun org-delete-backward-char (N)
20049 "Like `delete-backward-char', insert whitespace at field end in tables.
20050 When deleting backwards, in tables this function will insert whitespace in
20051 front of the next \"|\" separator, to keep the table aligned. The table will
20052 still be marked for re-alignment if the field did fill the entire column,
20053 because, in this case the deletion might narrow the column."
20054 (interactive "p")
20055 (save-match-data
20056 (org-check-before-invisible-edit 'delete-backward)
20057 (if (and (org-table-p)
20058 (eq N 1)
20059 (string-match "|" (buffer-substring (point-at-bol) (point)))
20060 (looking-at ".*?|"))
20061 (let ((pos (point))
20062 (noalign (looking-at "[^|\n\r]* |"))
20063 (c org-table-may-need-update))
20064 (backward-delete-char N)
20065 (if (not overwrite-mode)
20066 (progn
20067 (skip-chars-forward "^|")
20068 (insert " ")
20069 (goto-char (1- pos))))
20070 ;; noalign: if there were two spaces at the end, this field
20071 ;; does not determine the width of the column.
20072 (if noalign (setq org-table-may-need-update c)))
20073 (backward-delete-char N)
20074 (org-fix-tags-on-the-fly))))
20076 (defun org-delete-char (N)
20077 "Like `delete-char', but insert whitespace at field end in tables.
20078 When deleting characters, in tables this function will insert whitespace in
20079 front of the next \"|\" separator, to keep the table aligned. The table will
20080 still be marked for re-alignment if the field did fill the entire column,
20081 because, in this case the deletion might narrow the column."
20082 (interactive "p")
20083 (save-match-data
20084 (org-check-before-invisible-edit 'delete)
20085 (if (and (org-table-p)
20086 (not (bolp))
20087 (not (= (char-after) ?|))
20088 (eq N 1))
20089 (if (looking-at ".*?|")
20090 (let ((pos (point))
20091 (noalign (looking-at "[^|\n\r]* |"))
20092 (c org-table-may-need-update))
20093 (replace-match
20094 (concat (substring (match-string 0) 1 -1) " |") nil t)
20095 (goto-char pos)
20096 ;; noalign: if there were two spaces at the end, this field
20097 ;; does not determine the width of the column.
20098 (if noalign (setq org-table-may-need-update c)))
20099 (delete-char N))
20100 (delete-char N)
20101 (org-fix-tags-on-the-fly))))
20103 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20104 (put 'org-self-insert-command 'delete-selection
20105 (lambda ()
20106 (not (run-hook-with-args-until-success
20107 'self-insert-uses-region-functions))))
20108 (put 'orgtbl-self-insert-command 'delete-selection
20109 (lambda ()
20110 (not (run-hook-with-args-until-success
20111 'self-insert-uses-region-functions))))
20112 (put 'org-delete-char 'delete-selection 'supersede)
20113 (put 'org-delete-backward-char 'delete-selection 'supersede)
20114 (put 'org-yank 'delete-selection 'yank)
20116 ;; Make `flyspell-mode' delay after some commands
20117 (put 'org-self-insert-command 'flyspell-delayed t)
20118 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20119 (put 'org-delete-char 'flyspell-delayed t)
20120 (put 'org-delete-backward-char 'flyspell-delayed t)
20122 ;; Make pabbrev-mode expand after org-mode commands
20123 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20124 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20126 (defun org-remap (map &rest commands)
20127 "In MAP, remap the functions given in COMMANDS.
20128 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20129 (let (new old)
20130 (while commands
20131 (setq old (pop commands) new (pop commands))
20132 (if (fboundp 'command-remapping)
20133 (org-defkey map (vector 'remap old) new)
20134 (substitute-key-definition old new map global-map)))))
20136 (defun org-transpose-words ()
20137 "Transpose words for Org.
20138 This uses the `org-mode-transpose-word-syntax-table' syntax
20139 table, which interprets characters in `org-emphasis-alist' as
20140 word constituents."
20141 (interactive)
20142 (with-syntax-table org-mode-transpose-word-syntax-table
20143 (call-interactively 'transpose-words)))
20144 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20146 (when (eq org-enable-table-editor 'optimized)
20147 ;; If the user wants maximum table support, we need to hijack
20148 ;; some standard editing functions
20149 (org-remap org-mode-map
20150 'self-insert-command 'org-self-insert-command
20151 'delete-char 'org-delete-char
20152 'delete-backward-char 'org-delete-backward-char)
20153 (org-defkey org-mode-map "|" 'org-force-self-insert))
20155 (defvar org-ctrl-c-ctrl-c-hook nil
20156 "Hook for functions attaching themselves to `C-c C-c'.
20158 This can be used to add additional functionality to the C-c C-c
20159 key which executes context-dependent commands. This hook is run
20160 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20161 run after the last test.
20163 Each function will be called with no arguments. The function
20164 must check if the context is appropriate for it to act. If yes,
20165 it should do its thing and then return a non-nil value. If the
20166 context is wrong, just do nothing and return nil.")
20168 (defvar org-ctrl-c-ctrl-c-final-hook nil
20169 "Hook for functions attaching themselves to `C-c C-c'.
20171 This can be used to add additional functionality to the C-c C-c
20172 key which executes context-dependent commands. This hook is run
20173 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20174 before the first test.
20176 Each function will be called with no arguments. The function
20177 must check if the context is appropriate for it to act. If yes,
20178 it should do its thing and then return a non-nil value. If the
20179 context is wrong, just do nothing and return nil.")
20181 (defvar org-tab-first-hook nil
20182 "Hook for functions to attach themselves to TAB.
20183 See `org-ctrl-c-ctrl-c-hook' for more information.
20184 This hook runs as the first action when TAB is pressed, even before
20185 `org-cycle' messes around with the `outline-regexp' to cater for
20186 inline tasks and plain list item folding.
20187 If any function in this hook returns t, any other actions that
20188 would have been caused by TAB (such as table field motion or visibility
20189 cycling) will not occur.")
20191 (defvar org-tab-after-check-for-table-hook nil
20192 "Hook for functions to attach themselves to TAB.
20193 See `org-ctrl-c-ctrl-c-hook' for more information.
20194 This hook runs after it has been established that the cursor is not in a
20195 table, but before checking if the cursor is in a headline or if global cycling
20196 should be done.
20197 If any function in this hook returns t, not other actions like visibility
20198 cycling will be done.")
20200 (defvar org-tab-after-check-for-cycling-hook nil
20201 "Hook for functions to attach themselves to TAB.
20202 See `org-ctrl-c-ctrl-c-hook' for more information.
20203 This hook runs after it has been established that not table field motion and
20204 not visibility should be done because of current context. This is probably
20205 the place where a package like yasnippets can hook in.")
20207 (defvar org-tab-before-tab-emulation-hook nil
20208 "Hook for functions to attach themselves to TAB.
20209 See `org-ctrl-c-ctrl-c-hook' for more information.
20210 This hook runs after every other options for TAB have been exhausted, but
20211 before indentation and \t insertion takes place.")
20213 (defvar org-metaleft-hook nil
20214 "Hook for functions attaching themselves to `M-left'.
20215 See `org-ctrl-c-ctrl-c-hook' for more information.")
20216 (defvar org-metaright-hook nil
20217 "Hook for functions attaching themselves to `M-right'.
20218 See `org-ctrl-c-ctrl-c-hook' for more information.")
20219 (defvar org-metaup-hook nil
20220 "Hook for functions attaching themselves to `M-up'.
20221 See `org-ctrl-c-ctrl-c-hook' for more information.")
20222 (defvar org-metadown-hook nil
20223 "Hook for functions attaching themselves to `M-down'.
20224 See `org-ctrl-c-ctrl-c-hook' for more information.")
20225 (defvar org-shiftmetaleft-hook nil
20226 "Hook for functions attaching themselves to `M-S-left'.
20227 See `org-ctrl-c-ctrl-c-hook' for more information.")
20228 (defvar org-shiftmetaright-hook nil
20229 "Hook for functions attaching themselves to `M-S-right'.
20230 See `org-ctrl-c-ctrl-c-hook' for more information.")
20231 (defvar org-shiftmetaup-hook nil
20232 "Hook for functions attaching themselves to `M-S-up'.
20233 See `org-ctrl-c-ctrl-c-hook' for more information.")
20234 (defvar org-shiftmetadown-hook nil
20235 "Hook for functions attaching themselves to `M-S-down'.
20236 See `org-ctrl-c-ctrl-c-hook' for more information.")
20237 (defvar org-metareturn-hook nil
20238 "Hook for functions attaching themselves to `M-RET'.
20239 See `org-ctrl-c-ctrl-c-hook' for more information.")
20240 (defvar org-shiftup-hook nil
20241 "Hook for functions attaching themselves to `S-up'.
20242 See `org-ctrl-c-ctrl-c-hook' for more information.")
20243 (defvar org-shiftup-final-hook nil
20244 "Hook for functions attaching themselves to `S-up'.
20245 This one runs after all other options except shift-select have been excluded.
20246 See `org-ctrl-c-ctrl-c-hook' for more information.")
20247 (defvar org-shiftdown-hook nil
20248 "Hook for functions attaching themselves to `S-down'.
20249 See `org-ctrl-c-ctrl-c-hook' for more information.")
20250 (defvar org-shiftdown-final-hook nil
20251 "Hook for functions attaching themselves to `S-down'.
20252 This one runs after all other options except shift-select have been excluded.
20253 See `org-ctrl-c-ctrl-c-hook' for more information.")
20254 (defvar org-shiftleft-hook nil
20255 "Hook for functions attaching themselves to `S-left'.
20256 See `org-ctrl-c-ctrl-c-hook' for more information.")
20257 (defvar org-shiftleft-final-hook nil
20258 "Hook for functions attaching themselves to `S-left'.
20259 This one runs after all other options except shift-select have been excluded.
20260 See `org-ctrl-c-ctrl-c-hook' for more information.")
20261 (defvar org-shiftright-hook nil
20262 "Hook for functions attaching themselves to `S-right'.
20263 See `org-ctrl-c-ctrl-c-hook' for more information.")
20264 (defvar org-shiftright-final-hook nil
20265 "Hook for functions attaching themselves to `S-right'.
20266 This one runs after all other options except shift-select have been excluded.
20267 See `org-ctrl-c-ctrl-c-hook' for more information.")
20269 (defun org-modifier-cursor-error ()
20270 "Throw an error, a modified cursor command was applied in wrong context."
20271 (user-error "This command is active in special context like tables, headlines or items"))
20273 (defun org-shiftselect-error ()
20274 "Throw an error because Shift-Cursor command was applied in wrong context."
20275 (if (and (boundp 'shift-select-mode) shift-select-mode)
20276 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20277 (user-error "This command works only in special context like headlines or timestamps")))
20279 (defun org-call-for-shift-select (cmd)
20280 (let ((this-command-keys-shift-translated t))
20281 (call-interactively cmd)))
20283 (defun org-shifttab (&optional arg)
20284 "Global visibility cycling or move to previous table field.
20285 Call `org-table-previous-field' within a table.
20286 When ARG is nil, cycle globally through visibility states.
20287 When ARG is a numeric prefix, show contents of this level."
20288 (interactive "P")
20289 (cond
20290 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20291 ((integerp arg)
20292 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20293 (message "Content view to level: %d" arg)
20294 (org-content (prefix-numeric-value arg2))
20295 (org-cycle-show-empty-lines t)
20296 (setq org-cycle-global-status 'overview)))
20297 (t (call-interactively 'org-global-cycle))))
20299 (defun org-shiftmetaleft ()
20300 "Promote subtree or delete table column.
20301 Calls `org-promote-subtree', `org-outdent-item-tree', or
20302 `org-table-delete-column', depending on context. See the
20303 individual commands for more information."
20304 (interactive)
20305 (cond
20306 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20307 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20308 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20309 ((if (not (org-region-active-p)) (org-at-item-p)
20310 (save-excursion (goto-char (region-beginning))
20311 (org-at-item-p)))
20312 (call-interactively 'org-outdent-item-tree))
20313 (t (org-modifier-cursor-error))))
20315 (defun org-shiftmetaright ()
20316 "Demote subtree or insert table column.
20317 Calls `org-demote-subtree', `org-indent-item-tree', or
20318 `org-table-insert-column', depending on context. See the
20319 individual commands for more information."
20320 (interactive)
20321 (cond
20322 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20323 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20324 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20325 ((if (not (org-region-active-p)) (org-at-item-p)
20326 (save-excursion (goto-char (region-beginning))
20327 (org-at-item-p)))
20328 (call-interactively 'org-indent-item-tree))
20329 (t (org-modifier-cursor-error))))
20331 (defun org-shiftmetaup (&optional arg)
20332 "Drag the line at point up.
20333 In a table, kill the current row.
20334 On a clock timestamp, update the value of the timestamp like `S-<up>'
20335 but also adjust the previous clocked item in the clock history.
20336 Everywhere else, drag the line at point up."
20337 (interactive "P")
20338 (cond
20339 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20340 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20341 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20342 (call-interactively 'org-timestamp-up)))
20343 (t (call-interactively 'org-drag-line-backward))))
20345 (defun org-shiftmetadown (&optional arg)
20346 "Drag the line at point down.
20347 In a table, insert an empty row at the current line.
20348 On a clock timestamp, update the value of the timestamp like `S-<down>'
20349 but also adjust the previous clocked item in the clock history.
20350 Everywhere else, drag the line at point down."
20351 (interactive "P")
20352 (cond
20353 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20354 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20355 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20356 (call-interactively 'org-timestamp-down)))
20357 (t (call-interactively 'org-drag-line-forward))))
20359 (defsubst org-hidden-tree-error ()
20360 (user-error
20361 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20363 (defun org-metaleft (&optional arg)
20364 "Promote heading or move table column to left.
20365 Calls `org-do-promote' or `org-table-move-column', depending on context.
20366 With no specific context, calls the Emacs default `backward-word'.
20367 See the individual commands for more information."
20368 (interactive "P")
20369 (cond
20370 ((run-hook-with-args-until-success 'org-metaleft-hook))
20371 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20372 ((org-with-limited-levels
20373 (or (org-at-heading-p)
20374 (and (org-region-active-p)
20375 (save-excursion
20376 (goto-char (region-beginning))
20377 (org-at-heading-p)))))
20378 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20379 (call-interactively 'org-do-promote))
20380 ;; At an inline task.
20381 ((org-at-heading-p)
20382 (call-interactively 'org-inlinetask-promote))
20383 ((or (org-at-item-p)
20384 (and (org-region-active-p)
20385 (save-excursion
20386 (goto-char (region-beginning))
20387 (org-at-item-p))))
20388 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20389 (call-interactively 'org-outdent-item))
20390 (t (call-interactively 'backward-word))))
20392 (defun org-metaright (&optional arg)
20393 "Demote a subtree, a list item or move table column to right.
20394 In front of a drawer or a block keyword, indent it correctly.
20395 With no specific context, calls the Emacs default `forward-word'.
20396 See the individual commands for more information."
20397 (interactive "P")
20398 (cond
20399 ((run-hook-with-args-until-success 'org-metaright-hook))
20400 ((org-at-table-p) (call-interactively 'org-table-move-column))
20401 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20402 ((org-at-block-p) (call-interactively 'org-indent-block))
20403 ((org-with-limited-levels
20404 (or (org-at-heading-p)
20405 (and (org-region-active-p)
20406 (save-excursion
20407 (goto-char (region-beginning))
20408 (org-at-heading-p)))))
20409 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20410 (call-interactively 'org-do-demote))
20411 ;; At an inline task.
20412 ((org-at-heading-p)
20413 (call-interactively 'org-inlinetask-demote))
20414 ((or (org-at-item-p)
20415 (and (org-region-active-p)
20416 (save-excursion
20417 (goto-char (region-beginning))
20418 (org-at-item-p))))
20419 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20420 (call-interactively 'org-indent-item))
20421 (t (call-interactively 'forward-word))))
20423 (defun org-check-for-hidden (what)
20424 "Check if there are hidden headlines/items in the current visual line.
20425 WHAT can be either `headlines' or `items'. If the current line is
20426 an outline or item heading and it has a folded subtree below it,
20427 this function returns t, nil otherwise."
20428 (let ((re (cond
20429 ((eq what 'headlines) org-outline-regexp-bol)
20430 ((eq what 'items) (org-item-beginning-re))
20431 (t (error "This should not happen"))))
20432 beg end)
20433 (save-excursion
20434 (catch 'exit
20435 (unless (org-region-active-p)
20436 (setq beg (point-at-bol))
20437 (beginning-of-line 2)
20438 (while (and (not (eobp)) ;; this is like `next-line'
20439 (get-char-property (1- (point)) 'invisible))
20440 (beginning-of-line 2))
20441 (setq end (point))
20442 (goto-char beg)
20443 (goto-char (point-at-eol))
20444 (setq end (max end (point)))
20445 (while (re-search-forward re end t)
20446 (if (get-char-property (match-beginning 0) 'invisible)
20447 (throw 'exit t))))
20448 nil))))
20450 (defun org-metaup (&optional arg)
20451 "Move subtree up or move table row up.
20452 Calls `org-move-subtree-up' or `org-table-move-row' or
20453 `org-move-item-up', depending on context. See the individual commands
20454 for more information."
20455 (interactive "P")
20456 (cond
20457 ((run-hook-with-args-until-success 'org-metaup-hook))
20458 ((org-region-active-p)
20459 (let* ((a (min (region-beginning) (region-end)))
20460 (b (1- (max (region-beginning) (region-end))))
20461 (c (save-excursion (goto-char a)
20462 (move-beginning-of-line 0)))
20463 (d (save-excursion (goto-char a)
20464 (move-end-of-line 0) (point))))
20465 (transpose-regions a b c d)
20466 (goto-char c)))
20467 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20468 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20469 ((org-at-item-p) (call-interactively 'org-move-item-up))
20470 (t (org-drag-element-backward))))
20472 (defun org-metadown (&optional arg)
20473 "Move subtree down or move table row down.
20474 Calls `org-move-subtree-down' or `org-table-move-row' or
20475 `org-move-item-down', depending on context. See the individual
20476 commands for more information."
20477 (interactive "P")
20478 (cond
20479 ((run-hook-with-args-until-success 'org-metadown-hook))
20480 ((org-region-active-p)
20481 (let* ((a (min (region-beginning) (region-end)))
20482 (b (max (region-beginning) (region-end)))
20483 (c (save-excursion (goto-char b)
20484 (move-beginning-of-line 1)))
20485 (d (save-excursion (goto-char b)
20486 (move-end-of-line 1) (1+ (point)))))
20487 (transpose-regions a b c d)
20488 (goto-char d)))
20489 ((org-at-table-p) (call-interactively 'org-table-move-row))
20490 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20491 ((org-at-item-p) (call-interactively 'org-move-item-down))
20492 (t (org-drag-element-forward))))
20494 (defun org-shiftup (&optional arg)
20495 "Increase item in timestamp or increase priority of current headline.
20496 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20497 depending on context. See the individual commands for more information."
20498 (interactive "P")
20499 (cond
20500 ((run-hook-with-args-until-success 'org-shiftup-hook))
20501 ((and org-support-shift-select (org-region-active-p))
20502 (org-call-for-shift-select 'previous-line))
20503 ((org-at-timestamp-p t)
20504 (call-interactively (if org-edit-timestamp-down-means-later
20505 'org-timestamp-down 'org-timestamp-up)))
20506 ((and (not (eq org-support-shift-select 'always))
20507 org-enable-priority-commands
20508 (org-at-heading-p))
20509 (call-interactively 'org-priority-up))
20510 ((and (not org-support-shift-select) (org-at-item-p))
20511 (call-interactively 'org-previous-item))
20512 ((org-clocktable-try-shift 'up arg))
20513 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20514 (org-support-shift-select
20515 (org-call-for-shift-select 'previous-line))
20516 (t (org-shiftselect-error))))
20518 (defun org-shiftdown (&optional arg)
20519 "Decrease item in timestamp or decrease priority of current headline.
20520 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20521 depending on context. See the individual commands for more information."
20522 (interactive "P")
20523 (cond
20524 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20525 ((and org-support-shift-select (org-region-active-p))
20526 (org-call-for-shift-select 'next-line))
20527 ((org-at-timestamp-p t)
20528 (call-interactively (if org-edit-timestamp-down-means-later
20529 'org-timestamp-up 'org-timestamp-down)))
20530 ((and (not (eq org-support-shift-select 'always))
20531 org-enable-priority-commands
20532 (org-at-heading-p))
20533 (call-interactively 'org-priority-down))
20534 ((and (not org-support-shift-select) (org-at-item-p))
20535 (call-interactively 'org-next-item))
20536 ((org-clocktable-try-shift 'down arg))
20537 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20538 (org-support-shift-select
20539 (org-call-for-shift-select 'next-line))
20540 (t (org-shiftselect-error))))
20542 (defun org-shiftright (&optional arg)
20543 "Cycle the thing at point or in the current line, depending on context.
20544 Depending on context, this does one of the following:
20546 - switch a timestamp at point one day into the future
20547 - on a headline, switch to the next TODO keyword.
20548 - on an item, switch entire list to the next bullet type
20549 - on a property line, switch to the next allowed value
20550 - on a clocktable definition line, move time block into the future"
20551 (interactive "P")
20552 (cond
20553 ((run-hook-with-args-until-success 'org-shiftright-hook))
20554 ((and org-support-shift-select (org-region-active-p))
20555 (org-call-for-shift-select 'forward-char))
20556 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20557 ((and (not (eq org-support-shift-select 'always))
20558 (org-at-heading-p))
20559 (let ((org-inhibit-logging
20560 (not org-treat-S-cursor-todo-selection-as-state-change))
20561 (org-inhibit-blocking
20562 (not org-treat-S-cursor-todo-selection-as-state-change)))
20563 (org-call-with-arg 'org-todo 'right)))
20564 ((or (and org-support-shift-select
20565 (not (eq org-support-shift-select 'always))
20566 (org-at-item-bullet-p))
20567 (and (not org-support-shift-select) (org-at-item-p)))
20568 (org-call-with-arg 'org-cycle-list-bullet nil))
20569 ((and (not (eq org-support-shift-select 'always))
20570 (org-at-property-p))
20571 (call-interactively 'org-property-next-allowed-value))
20572 ((org-clocktable-try-shift 'right arg))
20573 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20574 (org-support-shift-select
20575 (org-call-for-shift-select 'forward-char))
20576 (t (org-shiftselect-error))))
20578 (defun org-shiftleft (&optional arg)
20579 "Cycle the thing at point or in the current line, depending on context.
20580 Depending on context, this does one of the following:
20582 - switch a timestamp at point one day into the past
20583 - on a headline, switch to the previous TODO keyword.
20584 - on an item, switch entire list to the previous bullet type
20585 - on a property line, switch to the previous allowed value
20586 - on a clocktable definition line, move time block into the past"
20587 (interactive "P")
20588 (cond
20589 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20590 ((and org-support-shift-select (org-region-active-p))
20591 (org-call-for-shift-select 'backward-char))
20592 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20593 ((and (not (eq org-support-shift-select 'always))
20594 (org-at-heading-p))
20595 (let ((org-inhibit-logging
20596 (not org-treat-S-cursor-todo-selection-as-state-change))
20597 (org-inhibit-blocking
20598 (not org-treat-S-cursor-todo-selection-as-state-change)))
20599 (org-call-with-arg 'org-todo 'left)))
20600 ((or (and org-support-shift-select
20601 (not (eq org-support-shift-select 'always))
20602 (org-at-item-bullet-p))
20603 (and (not org-support-shift-select) (org-at-item-p)))
20604 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20605 ((and (not (eq org-support-shift-select 'always))
20606 (org-at-property-p))
20607 (call-interactively 'org-property-previous-allowed-value))
20608 ((org-clocktable-try-shift 'left arg))
20609 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20610 (org-support-shift-select
20611 (org-call-for-shift-select 'backward-char))
20612 (t (org-shiftselect-error))))
20614 (defun org-shiftcontrolright ()
20615 "Switch to next TODO set."
20616 (interactive)
20617 (cond
20618 ((and org-support-shift-select (org-region-active-p))
20619 (org-call-for-shift-select 'forward-word))
20620 ((and (not (eq org-support-shift-select 'always))
20621 (org-at-heading-p))
20622 (org-call-with-arg 'org-todo 'nextset))
20623 (org-support-shift-select
20624 (org-call-for-shift-select 'forward-word))
20625 (t (org-shiftselect-error))))
20627 (defun org-shiftcontrolleft ()
20628 "Switch to previous TODO set."
20629 (interactive)
20630 (cond
20631 ((and org-support-shift-select (org-region-active-p))
20632 (org-call-for-shift-select 'backward-word))
20633 ((and (not (eq org-support-shift-select 'always))
20634 (org-at-heading-p))
20635 (org-call-with-arg 'org-todo 'previousset))
20636 (org-support-shift-select
20637 (org-call-for-shift-select 'backward-word))
20638 (t (org-shiftselect-error))))
20640 (defun org-shiftcontrolup (&optional n)
20641 "Change timestamps synchronously up in CLOCK log lines.
20642 Optional argument N tells to change by that many units."
20643 (interactive "P")
20644 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20645 (let (org-support-shift-select)
20646 (org-clock-timestamps-up n))
20647 (user-error "Not at a clock log")))
20649 (defun org-shiftcontroldown (&optional n)
20650 "Change timestamps synchronously down in CLOCK log lines.
20651 Optional argument N tells to change by that many units."
20652 (interactive "P")
20653 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20654 (let (org-support-shift-select)
20655 (org-clock-timestamps-down n))
20656 (user-error "Not at a clock log")))
20658 (defun org-increase-number-at-point (&optional inc)
20659 "Increment the number at point.
20660 With an optional prefix numeric argument INC, increment using
20661 this numeric value."
20662 (interactive "p")
20663 (if (not (number-at-point))
20664 (user-error "Not on a number")
20665 (unless inc (setq inc 1))
20666 (let ((pos (point))
20667 (beg (skip-chars-backward "-+^/*0-9eE."))
20668 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20669 (setq nap (buffer-substring-no-properties
20670 (+ pos beg) (+ pos beg end)))
20671 (delete-region (+ pos beg) (+ pos beg end))
20672 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20673 (when (org-at-table-p)
20674 (org-table-align)
20675 (org-table-end-of-field 1))))
20677 (defun org-decrease-number-at-point (&optional inc)
20678 "Decrement the number at point.
20679 With an optional prefix numeric argument INC, decrement using
20680 this numeric value."
20681 (interactive "p")
20682 (org-increase-number-at-point (- inc)))
20684 (defun org-ctrl-c-ret ()
20685 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20686 (interactive)
20687 (cond
20688 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20689 (t (call-interactively 'org-insert-heading))))
20691 (defun org-find-visible ()
20692 (let ((s (point)))
20693 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20694 (get-char-property s 'invisible)))
20696 (defun org-find-invisible ()
20697 (let ((s (point)))
20698 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20699 (not (get-char-property s 'invisible))))
20702 (defun org-copy-visible (beg end)
20703 "Copy the visible parts of the region."
20704 (interactive "r")
20705 (let (snippets s)
20706 (save-excursion
20707 (save-restriction
20708 (narrow-to-region beg end)
20709 (setq s (goto-char (point-min)))
20710 (while (not (= (point) (point-max)))
20711 (goto-char (org-find-invisible))
20712 (push (buffer-substring s (point)) snippets)
20713 (setq s (goto-char (org-find-visible))))))
20714 (kill-new (apply 'concat (nreverse snippets)))))
20716 (defun org-copy-special ()
20717 "Copy region in table or copy current subtree.
20718 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20719 See the individual commands for more information."
20720 (interactive)
20721 (call-interactively
20722 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20724 (defun org-cut-special ()
20725 "Cut region in table or cut current subtree.
20726 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20727 See the individual commands for more information."
20728 (interactive)
20729 (call-interactively
20730 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20732 (defun org-paste-special (arg)
20733 "Paste rectangular region into table, or past subtree relative to level.
20734 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20735 See the individual commands for more information."
20736 (interactive "P")
20737 (if (org-at-table-p)
20738 (org-table-paste-rectangle)
20739 (org-paste-subtree arg)))
20741 (defsubst org-in-fixed-width-region-p ()
20742 "Is point in a fixed-width region?"
20743 (save-match-data
20744 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20746 (defun org-edit-special (&optional arg)
20747 "Call a special editor for the element at point.
20748 When at a table, call the formula editor with `org-table-edit-formulas'.
20749 When in a source code block, call `org-edit-src-code'.
20750 When in a fixed-width region, call `org-edit-fixed-width-region'.
20751 When in an export block, call `org-edit-export-block'.
20752 When at an #+INCLUDE keyword, visit the included file.
20753 On a link, call `ffap' to visit the link at point.
20754 Otherwise, return a user error."
20755 (interactive "P")
20756 (let ((element (org-element-at-point)))
20757 (assert (not buffer-read-only) nil
20758 "Buffer is read-only: %s" (buffer-name))
20759 (case (org-element-type element)
20760 (src-block
20761 (if (not arg) (org-edit-src-code)
20762 (let* ((info (org-babel-get-src-block-info))
20763 (lang (nth 0 info))
20764 (params (nth 2 info))
20765 (session (cdr (assq :session params))))
20766 (if (not session) (org-edit-src-code)
20767 ;; At a src-block with a session and function called with
20768 ;; an ARG: switch to the buffer related to the inferior
20769 ;; process.
20770 (switch-to-buffer
20771 (funcall (intern (concat "org-babel-prep-session:" lang))
20772 session params))))))
20773 (keyword
20774 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20775 (org-open-link-from-string
20776 (format "[[%s]]"
20777 (expand-file-name
20778 (let ((value (org-element-property :value element)))
20779 (cond ((not (org-string-nw-p value))
20780 (user-error "No file to edit"))
20781 ((string-match "\\`\"\\(.*?\\)\"" value)
20782 (match-string 1 value))
20783 ((string-match "\\`[^ \t\"]\\S-*" value)
20784 (match-string 0 value))
20785 (t (user-error "No valid file specified")))))))
20786 (user-error "No special environment to edit here")))
20787 (table
20788 (if (eq (org-element-property :type element) 'table.el)
20789 (org-edit-table.el)
20790 (call-interactively 'org-table-edit-formulas)))
20791 ;; Only Org tables contain `table-row' type elements.
20792 (table-row (call-interactively 'org-table-edit-formulas))
20793 ((example-block src-block) (org-edit-src-code))
20794 (export-block (org-edit-export-block))
20795 (fixed-width (org-edit-fixed-width-region))
20796 (otherwise
20797 ;; No notable element at point. Though, we may be at a link,
20798 ;; which is an object. Thus, scan deeper.
20799 (if (eq (org-element-type (org-element-context element)) 'link)
20800 (call-interactively 'ffap)
20801 (user-error "No special environment to edit here"))))))
20803 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20804 (defun org-ctrl-c-ctrl-c (&optional arg)
20805 "Set tags in headline, or update according to changed information at point.
20807 This command does many different things, depending on context:
20809 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20810 this is what we do.
20812 - If the cursor is on a statistics cookie, update it.
20814 - If the cursor is in a headline, prompt for tags and insert them
20815 into the current line, aligned to `org-tags-column'. When called
20816 with prefix arg, realign all tags in the current buffer.
20818 - If the cursor is in one of the special #+KEYWORD lines, this
20819 triggers scanning the buffer for these lines and updating the
20820 information.
20822 - If the cursor is inside a table, realign the table. This command
20823 works even if the automatic table editor has been turned off.
20825 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20826 the entire table.
20828 - If the cursor is at a footnote reference or definition, jump to
20829 the corresponding definition or references, respectively.
20831 - If the cursor is a the beginning of a dynamic block, update it.
20833 - If the current buffer is a capture buffer, close note and file it.
20835 - If the cursor is on a <<<target>>>, update radio targets and
20836 corresponding links in this buffer.
20838 - If the cursor is on a numbered item in a plain list, renumber the
20839 ordered list.
20841 - If the cursor is on a checkbox, toggle it.
20843 - If the cursor is on a code block, evaluate it. The variable
20844 `org-confirm-babel-evaluate' can be used to control prompting
20845 before code block evaluation, by default every code block
20846 evaluation requires confirmation. Code block evaluation can be
20847 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20848 (interactive "P")
20849 (cond
20850 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20851 org-occur-highlights)
20852 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20853 (org-remove-occur-highlights)
20854 (message "Temporary highlights/overlays removed from current buffer"))
20855 ((and (local-variable-p 'org-finish-function (current-buffer))
20856 (fboundp org-finish-function))
20857 (funcall org-finish-function))
20858 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20860 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20861 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20862 (user-error "C-c C-c can do nothing useful at this location"))
20863 (let* ((context (org-element-context))
20864 (type (org-element-type context)))
20865 (case type
20866 ;; When at a link, act according to the parent instead.
20867 (link (setq context (org-element-property :parent context))
20868 (setq type (org-element-type context)))
20869 ;; Unsupported object types: refer to the first supported
20870 ;; element or object containing it.
20871 ((bold code entity export-snippet inline-babel-call inline-src-block
20872 italic latex-fragment line-break macro strike-through subscript
20873 superscript underline verbatim)
20874 (setq context
20875 (org-element-lineage
20876 context '(radio-target paragraph verse-block table-cell)))))
20877 ;; For convenience: at the first line of a paragraph on the
20878 ;; same line as an item, apply function on that item instead.
20879 (when (eq type 'paragraph)
20880 (let ((parent (org-element-property :parent context)))
20881 (when (and (eq (org-element-type parent) 'item)
20882 (= (line-beginning-position)
20883 (org-element-property :begin parent)))
20884 (setq context parent type 'item))))
20885 ;; Act according to type of element or object at point.
20886 (case type
20887 (clock (org-clock-update-time-maybe))
20888 (dynamic-block
20889 (save-excursion
20890 (goto-char (org-element-property :post-affiliated context))
20891 (org-update-dblock)))
20892 (footnote-definition
20893 (goto-char (org-element-property :post-affiliated context))
20894 (call-interactively 'org-footnote-action))
20895 (footnote-reference (call-interactively 'org-footnote-action))
20896 ((headline inlinetask)
20897 (save-excursion (goto-char (org-element-property :begin context))
20898 (call-interactively 'org-set-tags)))
20899 (item
20900 ;; At an item: a double C-u set checkbox to "[-]"
20901 ;; unconditionally, whereas a single one will toggle its
20902 ;; presence. Without an universal argument, if the item
20903 ;; has a checkbox, toggle it. Otherwise repair the list.
20904 (let* ((box (org-element-property :checkbox context))
20905 (struct (org-element-property :structure context))
20906 (old-struct (copy-tree struct))
20907 (parents (org-list-parents-alist struct))
20908 (prevs (org-list-prevs-alist struct))
20909 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20910 (org-list-set-checkbox
20911 (org-element-property :begin context) struct
20912 (cond ((equal arg '(16)) "[-]")
20913 ((and (not box) (equal arg '(4))) "[ ]")
20914 ((or (not box) (equal arg '(4))) nil)
20915 ((eq box 'on) "[ ]")
20916 (t "[X]")))
20917 ;; Mimic `org-list-write-struct' but with grabbing
20918 ;; a return value from `org-list-struct-fix-box'.
20919 (org-list-struct-fix-ind struct parents 2)
20920 (org-list-struct-fix-item-end struct)
20921 (org-list-struct-fix-bul struct prevs)
20922 (org-list-struct-fix-ind struct parents)
20923 (let ((block-item
20924 (org-list-struct-fix-box struct parents prevs orderedp)))
20925 (if (and box (equal struct old-struct))
20926 (if (equal arg '(16))
20927 (message "Checkboxes already reset")
20928 (user-error "Cannot toggle this checkbox: %s"
20929 (if (eq box 'on)
20930 "all subitems checked"
20931 "unchecked subitems")))
20932 (org-list-struct-apply-struct struct old-struct)
20933 (org-update-checkbox-count-maybe))
20934 (when block-item
20935 (message "Checkboxes were removed due to empty box at line %d"
20936 (org-current-line block-item))))))
20937 (keyword
20938 (let ((org-inhibit-startup-visibility-stuff t)
20939 (org-startup-align-all-tables nil))
20940 (when (boundp 'org-table-coordinate-overlays)
20941 (mapc 'delete-overlay org-table-coordinate-overlays)
20942 (setq org-table-coordinate-overlays nil))
20943 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20944 (message "Local setup has been refreshed"))
20945 (plain-list
20946 ;; At a plain list, with a double C-u argument, set
20947 ;; checkboxes of each item to "[-]", whereas a single one
20948 ;; will toggle their presence according to the state of the
20949 ;; first item in the list. Without an argument, repair the
20950 ;; list.
20951 (let* ((begin (org-element-property :contents-begin context))
20952 (beginm (move-marker (make-marker) begin))
20953 (struct (org-element-property :structure context))
20954 (old-struct (copy-tree struct))
20955 (first-box (save-excursion
20956 (goto-char begin)
20957 (looking-at org-list-full-item-re)
20958 (match-string-no-properties 3)))
20959 (new-box (cond ((equal arg '(16)) "[-]")
20960 ((equal arg '(4)) (unless first-box "[ ]"))
20961 ((equal first-box "[X]") "[ ]")
20962 (t "[X]"))))
20963 (cond
20964 (arg
20965 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20966 (org-list-get-all-items
20967 begin struct (org-list-prevs-alist struct))))
20968 ((and first-box (eq (point) begin))
20969 ;; For convenience, when point is at bol on the first
20970 ;; item of the list and no argument is provided, simply
20971 ;; toggle checkbox of that item, if any.
20972 (org-list-set-checkbox begin struct new-box)))
20973 (org-list-write-struct
20974 struct (org-list-parents-alist struct) old-struct)
20975 (org-update-checkbox-count-maybe)
20976 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20977 ((property-drawer node-property)
20978 (call-interactively 'org-property-action))
20979 ((radio-target target)
20980 (call-interactively 'org-update-radio-target-regexp))
20981 (statistics-cookie
20982 (call-interactively 'org-update-statistics-cookies))
20983 ((table table-cell table-row)
20984 ;; At a table, recalculate every field and align it. Also
20985 ;; send the table if necessary. If the table has
20986 ;; a `table.el' type, just give up. At a table row or
20987 ;; cell, maybe recalculate line but always align table.
20988 (if (eq (org-element-property :type context) 'table.el)
20989 (message "Use C-c ' to edit table.el tables")
20990 (let ((org-enable-table-editor t))
20991 (if (or (eq type 'table)
20992 ;; Check if point is at a TBLFM line.
20993 (and (eq type 'table-row)
20994 (= (point) (org-element-property :end context))))
20995 (save-excursion
20996 (if (org-at-TBLFM-p)
20997 (progn (require 'org-table)
20998 (org-table-calc-current-TBLFM))
20999 (goto-char (org-element-property :contents-begin context))
21000 (org-call-with-arg 'org-table-recalculate (or arg t))
21001 (orgtbl-send-table 'maybe)))
21002 (org-table-maybe-eval-formula)
21003 (cond (arg (call-interactively 'org-table-recalculate))
21004 ((org-table-maybe-recalculate-line))
21005 (t (org-table-align)))))))
21006 (timestamp (org-timestamp-change 0 'day))
21007 (otherwise
21008 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21009 (user-error
21010 "C-c C-c can do nothing useful at this location")))))))))
21012 (defun org-mode-restart ()
21013 (interactive)
21014 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21015 (funcall major-mode)
21016 (hack-local-variables)
21017 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21018 (org-indent-mode -1)))
21019 (message "%s restarted" major-mode))
21021 (defun org-kill-note-or-show-branches ()
21022 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21023 (interactive)
21024 (if (not org-finish-function)
21025 (progn
21026 (hide-subtree)
21027 (call-interactively 'show-branches))
21028 (let ((org-note-abort t))
21029 (funcall org-finish-function))))
21031 (defun org-open-line (n)
21032 "Insert a new row in tables, call `open-line' elsewhere.
21033 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21034 (interactive "*p")
21035 (cond
21036 ((not org-special-ctrl-o)
21037 (open-line n))
21038 ((org-at-table-p)
21039 (org-table-insert-row))
21041 (open-line n))))
21043 (defun org-return (&optional indent)
21044 "Goto next table row or insert a newline.
21046 Calls `org-table-next-row' or `newline', depending on context.
21048 When optional INDENT argument is non-nil, call
21049 `newline-and-indent' instead of `newline'.
21051 When `org-return-follows-link' is non-nil and point is on
21052 a timestamp or a link, call `org-open-at-point'. However, it
21053 will not happen if point is in a table or on a \"dead\"
21054 object (e.g., within a comment). In these case, you need to use
21055 `org-open-at-point' directly."
21056 (interactive)
21057 (if (and (save-excursion
21058 (beginning-of-line)
21059 (looking-at org-todo-line-regexp))
21060 (match-beginning 3)
21061 (>= (point) (match-beginning 3)))
21062 ;; Point is on headline tags. Do not break them: add a newline
21063 ;; after the headline instead.
21064 (progn (org-show-entry)
21065 (end-of-line)
21066 (if indent (newline-and-indent) (newline)))
21067 (let* ((context (if org-return-follows-link (org-element-context)
21068 (org-element-at-point)))
21069 (type (org-element-type context)))
21070 (cond
21071 ;; In a table, call `org-table-next-row'.
21072 ((or (and (eq type 'table)
21073 (>= (point) (org-element-property :contents-begin context))
21074 (< (point) (org-element-property :contents-end context)))
21075 (org-element-lineage context '(table-row table-cell) t))
21076 (org-table-justify-field-maybe)
21077 (call-interactively #'org-table-next-row))
21078 ;; On a link or a timestamp but not on white spaces after it,
21079 ;; call `org-open-line' if `org-return-follows-link' allows it.
21080 ((and org-return-follows-link
21081 (memq type '(link timestamp))
21082 (< (point)
21083 (save-excursion (goto-char (org-element-property :end context))
21084 (skip-chars-backward " \t")
21085 (point))))
21086 (call-interactively #'org-open-at-point))
21087 ;; In a list, make sure indenting keeps trailing text within.
21088 ((and indent
21089 (not (eolp))
21090 (org-element-lineage context '(item)))
21091 (let ((trailing-data
21092 (delete-and-extract-region (point) (line-end-position))))
21093 (newline-and-indent)
21094 (save-excursion (insert trailing-data))))
21095 (t (if indent (newline-and-indent) (newline)))))))
21097 (defun org-return-indent ()
21098 "Goto next table row or insert a newline and indent.
21099 Calls `org-table-next-row' or `newline-and-indent', depending on
21100 context. See the individual commands for more information."
21101 (interactive)
21102 (org-return t))
21104 (defun org-ctrl-c-star ()
21105 "Compute table, or change heading status of lines.
21106 Calls `org-table-recalculate' or `org-toggle-heading',
21107 depending on context."
21108 (interactive)
21109 (cond
21110 ((org-at-table-p)
21111 (call-interactively 'org-table-recalculate))
21113 ;; Convert all lines in region to list items
21114 (call-interactively 'org-toggle-heading))))
21116 (defun org-ctrl-c-minus ()
21117 "Insert separator line in table or modify bullet status of line.
21118 Also turns a plain line or a region of lines into list items.
21119 Calls `org-table-insert-hline', `org-toggle-item', or
21120 `org-cycle-list-bullet', depending on context."
21121 (interactive)
21122 (cond
21123 ((org-at-table-p)
21124 (call-interactively 'org-table-insert-hline))
21125 ((org-region-active-p)
21126 (call-interactively 'org-toggle-item))
21127 ((org-in-item-p)
21128 (call-interactively 'org-cycle-list-bullet))
21130 (call-interactively 'org-toggle-item))))
21132 (defun org-toggle-item (arg)
21133 "Convert headings or normal lines to items, items to normal lines.
21134 If there is no active region, only the current line is considered.
21136 If the first non blank line in the region is a headline, convert
21137 all headlines to items, shifting text accordingly.
21139 If it is an item, convert all items to normal lines.
21141 If it is normal text, change region into a list of items.
21142 With a prefix argument ARG, change the region in a single item."
21143 (interactive "P")
21144 (let ((shift-text
21145 (function
21146 ;; Shift text in current section to IND, from point to END.
21147 ;; The function leaves point to END line.
21148 (lambda (ind end)
21149 (let ((min-i 1000) (end (copy-marker end)))
21150 ;; First determine the minimum indentation (MIN-I) of
21151 ;; the text.
21152 (save-excursion
21153 (catch 'exit
21154 (while (< (point) end)
21155 (let ((i (org-get-indentation)))
21156 (cond
21157 ;; Skip blank lines and inline tasks.
21158 ((looking-at "^[ \t]*$"))
21159 ((looking-at org-outline-regexp-bol))
21160 ;; We can't find less than 0 indentation.
21161 ((zerop i) (throw 'exit (setq min-i 0)))
21162 ((< i min-i) (setq min-i i))))
21163 (forward-line))))
21164 ;; Then indent each line so that a line indented to
21165 ;; MIN-I becomes indented to IND. Ignore blank lines
21166 ;; and inline tasks in the process.
21167 (let ((delta (- ind min-i)))
21168 (while (< (point) end)
21169 (unless (or (looking-at "^[ \t]*$")
21170 (looking-at org-outline-regexp-bol))
21171 (org-indent-line-to (+ (org-get-indentation) delta)))
21172 (forward-line)))))))
21173 (skip-blanks
21174 (function
21175 ;; Return beginning of first non-blank line, starting from
21176 ;; line at POS.
21177 (lambda (pos)
21178 (save-excursion
21179 (goto-char pos)
21180 (skip-chars-forward " \r\t\n")
21181 (point-at-bol)))))
21182 beg end)
21183 ;; Determine boundaries of changes.
21184 (if (org-region-active-p)
21185 (setq beg (funcall skip-blanks (region-beginning))
21186 end (copy-marker (region-end)))
21187 (setq beg (funcall skip-blanks (point-at-bol))
21188 end (copy-marker (point-at-eol))))
21189 ;; Depending on the starting line, choose an action on the text
21190 ;; between BEG and END.
21191 (org-with-limited-levels
21192 (save-excursion
21193 (goto-char beg)
21194 (cond
21195 ;; Case 1. Start at an item: de-itemize. Note that it only
21196 ;; happens when a region is active: `org-ctrl-c-minus'
21197 ;; would call `org-cycle-list-bullet' otherwise.
21198 ((org-at-item-p)
21199 (while (< (point) end)
21200 (when (org-at-item-p)
21201 (skip-chars-forward " \t")
21202 (delete-region (point) (match-end 0)))
21203 (forward-line)))
21204 ;; Case 2. Start at an heading: convert to items.
21205 ((org-at-heading-p)
21206 (let* ((bul (org-list-bullet-string "-"))
21207 (bul-len (length bul))
21208 (done (org-entry-is-done-p))
21209 (todo (org-entry-is-todo-p))
21210 ;; Indentation of the first heading. It should be
21211 ;; relative to the indentation of its parent, if any.
21212 (start-ind (save-excursion
21213 (cond
21214 ((not org-adapt-indentation) 0)
21215 ((not (outline-previous-heading)) 0)
21216 (t (length (match-string 0))))))
21217 ;; Level of first heading. Further headings will be
21218 ;; compared to it to determine hierarchy in the list.
21219 (ref-level (org-reduced-level (org-outline-level))))
21220 (when (or done todo) (org-todo ""))
21221 (while (< (point) end)
21222 (let* ((level (org-reduced-level (org-outline-level)))
21223 (delta (max 0 (- level ref-level))))
21224 ;; If current headline is less indented than the first
21225 ;; one, set it as reference, in order to preserve
21226 ;; subtrees.
21227 (when (< level ref-level) (setq ref-level level))
21228 (replace-match bul t t)
21229 (org-indent-line-to (+ start-ind (* delta bul-len)))
21230 (when (or done todo)
21231 (let* ((struct (org-list-struct))
21232 (old (copy-tree struct)))
21233 (org-list-set-checkbox (line-beginning-position)
21234 struct
21235 (if done "[X]" "[ ]"))
21236 (org-list-write-struct struct
21237 (org-list-parents-alist struct)
21238 old)))
21239 ;; Ensure all text down to END (or SECTION-END) belongs
21240 ;; to the newly created item.
21241 (let ((section-end (save-excursion
21242 (or (outline-next-heading) (point)))))
21243 (forward-line)
21244 (funcall shift-text
21245 (+ start-ind (* (1+ delta) bul-len))
21246 (min end section-end)))))))
21247 ;; Case 3. Normal line with ARG: make the first line of region
21248 ;; an item, and shift indentation of others lines to
21249 ;; set them as item's body.
21250 (arg (let* ((bul (org-list-bullet-string "-"))
21251 (bul-len (length bul))
21252 (ref-ind (org-get-indentation)))
21253 (skip-chars-forward " \t")
21254 (insert bul)
21255 (forward-line)
21256 (while (< (point) end)
21257 ;; Ensure that lines less indented than first one
21258 ;; still get included in item body.
21259 (funcall shift-text
21260 (+ ref-ind bul-len)
21261 (min end (save-excursion (or (outline-next-heading)
21262 (point)))))
21263 (forward-line))))
21264 ;; Case 4. Normal line without ARG: turn each non-item line
21265 ;; into an item.
21267 (while (< (point) end)
21268 (unless (or (org-at-heading-p) (org-at-item-p))
21269 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21270 (replace-match
21271 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21272 (forward-line))))))))
21274 (defun org-toggle-heading (&optional nstars)
21275 "Convert headings to normal text, or items or text to headings.
21276 If there is no active region, only convert the current line.
21278 With a \\[universal-argument] prefix, convert the whole list at
21279 point into heading.
21281 In a region:
21283 - If the first non blank line is a headline, remove the stars
21284 from all headlines in the region.
21286 - If it is a normal line, turn each and every normal line (i.e.,
21287 not an heading or an item) in the region into headings. If you
21288 want to convert only the first line of this region, use one
21289 universal prefix argument.
21291 - If it is a plain list item, turn all plain list items into headings.
21293 When converting a line into a heading, the number of stars is chosen
21294 such that the lines become children of the current entry. However,
21295 when a numeric prefix argument is given, its value determines the
21296 number of stars to add."
21297 (interactive "P")
21298 (let ((skip-blanks
21299 (function
21300 ;; Return beginning of first non-blank line, starting from
21301 ;; line at POS.
21302 (lambda (pos)
21303 (save-excursion
21304 (goto-char pos)
21305 (while (org-at-comment-p) (forward-line))
21306 (skip-chars-forward " \r\t\n")
21307 (point-at-bol)))))
21308 beg end toggled)
21309 ;; Determine boundaries of changes. If a universal prefix has
21310 ;; been given, put the list in a region. If region ends at a bol,
21311 ;; do not consider the last line to be in the region.
21313 (when (and current-prefix-arg (org-at-item-p))
21314 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21315 (org-mark-element))
21317 (if (org-region-active-p)
21318 (setq beg (funcall skip-blanks (region-beginning))
21319 end (copy-marker (save-excursion
21320 (goto-char (region-end))
21321 (if (bolp) (point) (point-at-eol)))))
21322 (setq beg (funcall skip-blanks (point-at-bol))
21323 end (copy-marker (point-at-eol))))
21324 ;; Ensure inline tasks don't count as headings.
21325 (org-with-limited-levels
21326 (save-excursion
21327 (goto-char beg)
21328 (cond
21329 ;; Case 1. Started at an heading: de-star headings.
21330 ((org-at-heading-p)
21331 (while (< (point) end)
21332 (when (org-at-heading-p t)
21333 (looking-at org-outline-regexp) (replace-match "")
21334 (setq toggled t))
21335 (forward-line)))
21336 ;; Case 2. Started at an item: change items into headlines.
21337 ;; One star will be added by `org-list-to-subtree'.
21338 ((org-at-item-p)
21339 (while (< (point) end)
21340 (when (org-at-item-p)
21341 ;; Pay attention to cases when region ends before list.
21342 (let* ((struct (org-list-struct))
21343 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21344 (save-restriction
21345 (narrow-to-region (point) list-end)
21346 (insert (org-list-to-subtree (org-list-parse-list t)))))
21347 (setq toggled t))
21348 (forward-line)))
21349 ;; Case 3. Started at normal text: make every line an heading,
21350 ;; skipping headlines and items.
21351 (t (let* ((stars
21352 (make-string
21353 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21354 (add-stars
21355 (cond (nstars "") ; stars from prefix only
21356 ((equal stars "") "*") ; before first heading
21357 (org-odd-levels-only "**") ; inside heading, odd
21358 (t "*"))) ; inside heading, oddeven
21359 (rpl (concat stars add-stars " "))
21360 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21361 (while (< (point) (if (equal nstars '(4)) lend end))
21362 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21363 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21364 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21365 (forward-line)))))))
21366 (unless toggled (message "Cannot toggle heading from here"))))
21368 (defun org-meta-return (&optional arg)
21369 "Insert a new heading or wrap a region in a table.
21370 Calls `org-insert-heading' or `org-table-wrap-region', depending
21371 on context. See the individual commands for more information."
21372 (interactive "P")
21373 (org-check-before-invisible-edit 'insert)
21374 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21375 (let* ((element (org-element-at-point))
21376 (type (org-element-type element)))
21377 (when (eq type 'table-row)
21378 (setq element (org-element-property :parent element))
21379 (setq type 'table))
21380 (if (and (eq type 'table)
21381 (eq (org-element-property :type element) 'org)
21382 (>= (point) (org-element-property :contents-begin element))
21383 (< (point) (org-element-property :contents-end element)))
21384 (call-interactively 'org-table-wrap-region)
21385 (call-interactively 'org-insert-heading)))))
21387 ;;; Menu entries
21389 (defsubst org-in-subtree-not-table-p ()
21390 "Are we in a subtree and not in a table?"
21391 (and (not (org-before-first-heading-p))
21392 (not (org-at-table-p))))
21394 ;; Define the Org-mode menus
21395 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21396 '("Tbl"
21397 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21398 ["Next Field" org-cycle (org-at-table-p)]
21399 ["Previous Field" org-shifttab (org-at-table-p)]
21400 ["Next Row" org-return (org-at-table-p)]
21401 "--"
21402 ["Blank Field" org-table-blank-field (org-at-table-p)]
21403 ["Edit Field" org-table-edit-field (org-at-table-p)]
21404 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21405 "--"
21406 ("Column"
21407 ["Move Column Left" org-metaleft (org-at-table-p)]
21408 ["Move Column Right" org-metaright (org-at-table-p)]
21409 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21410 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21411 ("Row"
21412 ["Move Row Up" org-metaup (org-at-table-p)]
21413 ["Move Row Down" org-metadown (org-at-table-p)]
21414 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21415 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21416 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21417 "--"
21418 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21419 ("Rectangle"
21420 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21421 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21422 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21423 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21424 "--"
21425 ("Calculate"
21426 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21427 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21428 ["Edit Formulas" org-edit-special (org-at-table-p)]
21429 "--"
21430 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21431 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21432 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21433 "--"
21434 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21435 "--"
21436 ["Sum Column/Rectangle" org-table-sum
21437 (or (org-at-table-p) (org-region-active-p))]
21438 ["Which Column?" org-table-current-column (org-at-table-p)])
21439 ["Debug Formulas"
21440 org-table-toggle-formula-debugger
21441 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21442 ["Show Col/Row Numbers"
21443 org-table-toggle-coordinate-overlays
21444 :style toggle
21445 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21446 "--"
21447 ["Create" org-table-create (and (not (org-at-table-p))
21448 org-enable-table-editor)]
21449 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21450 ["Import from File" org-table-import (not (org-at-table-p))]
21451 ["Export to File" org-table-export (org-at-table-p)]
21452 "--"
21453 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21454 "--"
21455 ("Plot"
21456 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21457 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21459 (easy-menu-define org-org-menu org-mode-map "Org menu"
21460 '("Org"
21461 ("Show/Hide"
21462 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21463 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21464 ["Sparse Tree..." org-sparse-tree t]
21465 ["Reveal Context" org-reveal t]
21466 ["Show All" show-all t]
21467 "--"
21468 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21469 "--"
21470 ["New Heading" org-insert-heading t]
21471 ("Navigate Headings"
21472 ["Up" outline-up-heading t]
21473 ["Next" outline-next-visible-heading t]
21474 ["Previous" outline-previous-visible-heading t]
21475 ["Next Same Level" outline-forward-same-level t]
21476 ["Previous Same Level" outline-backward-same-level t]
21477 "--"
21478 ["Jump" org-goto t])
21479 ("Edit Structure"
21480 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21481 "--"
21482 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21483 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21484 "--"
21485 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21486 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21487 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21488 "--"
21489 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21490 "--"
21491 ["Copy visible text" org-copy-visible t]
21492 "--"
21493 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21494 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21495 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21496 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21497 "--"
21498 ["Sort Region/Children" org-sort t]
21499 "--"
21500 ["Convert to odd levels" org-convert-to-odd-levels t]
21501 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21502 ("Editing"
21503 ["Emphasis..." org-emphasize t]
21504 ["Edit Source Example" org-edit-special t]
21505 "--"
21506 ["Footnote new/jump" org-footnote-action t]
21507 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21508 ("Archive"
21509 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21510 "--"
21511 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21512 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21513 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21515 "--"
21516 ("Hyperlinks"
21517 ["Store Link (Global)" org-store-link t]
21518 ["Find existing link to here" org-occur-link-in-agenda-files t]
21519 ["Insert Link" org-insert-link t]
21520 ["Follow Link" org-open-at-point t]
21521 "--"
21522 ["Next link" org-next-link t]
21523 ["Previous link" org-previous-link t]
21524 "--"
21525 ["Descriptive Links"
21526 org-toggle-link-display
21527 :style radio
21528 :selected org-descriptive-links
21530 ["Literal Links"
21531 org-toggle-link-display
21532 :style radio
21533 :selected (not org-descriptive-links)])
21534 "--"
21535 ("TODO Lists"
21536 ["TODO/DONE/-" org-todo t]
21537 ("Select keyword"
21538 ["Next keyword" org-shiftright (org-at-heading-p)]
21539 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21540 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21541 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21542 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21543 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21544 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21545 "--"
21546 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21547 :selected org-enforce-todo-dependencies :style toggle :active t]
21548 "Settings for tree at point"
21549 ["Do Children sequentially" org-toggle-ordered-property :style radio
21550 :selected (org-entry-get nil "ORDERED")
21551 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21552 ["Do Children parallel" org-toggle-ordered-property :style radio
21553 :selected (not (org-entry-get nil "ORDERED"))
21554 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21555 "--"
21556 ["Set Priority" org-priority t]
21557 ["Priority Up" org-shiftup t]
21558 ["Priority Down" org-shiftdown t]
21559 "--"
21560 ["Get news from all feeds" org-feed-update-all t]
21561 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21562 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21563 ("TAGS and Properties"
21564 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21565 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21566 "--"
21567 ["Set property" org-set-property (not (org-before-first-heading-p))]
21568 ["Column view of properties" org-columns t]
21569 ["Insert Column View DBlock" org-insert-columns-dblock t])
21570 ("Dates and Scheduling"
21571 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21572 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21573 ("Change Date"
21574 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21575 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21576 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21577 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21578 ["Compute Time Range" org-evaluate-time-range t]
21579 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21580 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21581 "--"
21582 ["Custom time format" org-toggle-time-stamp-overlays
21583 :style radio :selected org-display-custom-times]
21584 "--"
21585 ["Goto Calendar" org-goto-calendar t]
21586 ["Date from Calendar" org-date-from-calendar t]
21587 "--"
21588 ["Start/Restart Timer" org-timer-start t]
21589 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21590 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21591 ["Insert Timer String" org-timer t]
21592 ["Insert Timer Item" org-timer-item t])
21593 ("Logging work"
21594 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21595 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21596 ["Clock out" org-clock-out t]
21597 ["Clock cancel" org-clock-cancel t]
21598 "--"
21599 ["Mark as default task" org-clock-mark-default-task t]
21600 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21601 ["Goto running clock" org-clock-goto t]
21602 "--"
21603 ["Display times" org-clock-display t]
21604 ["Create clock table" org-clock-report t]
21605 "--"
21606 ["Record DONE time"
21607 (progn (setq org-log-done (not org-log-done))
21608 (message "Switching to %s will %s record a timestamp"
21609 (car org-done-keywords)
21610 (if org-log-done "automatically" "not")))
21611 :style toggle :selected org-log-done])
21612 "--"
21613 ["Agenda Command..." org-agenda t]
21614 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21615 ("File List for Agenda")
21616 ("Special views current file"
21617 ["TODO Tree" org-show-todo-tree t]
21618 ["Check Deadlines" org-check-deadlines t]
21619 ["Timeline" org-timeline t]
21620 ["Tags/Property tree" org-match-sparse-tree t])
21621 "--"
21622 ["Export/Publish..." org-export-dispatch t]
21623 ("LaTeX"
21624 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21625 :selected org-cdlatex-mode]
21626 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21627 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21628 ["Modify math symbol" org-cdlatex-math-modify
21629 (org-inside-LaTeX-fragment-p)]
21630 ["Insert citation" org-reftex-citation t]
21631 "--"
21632 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21633 "--"
21634 ("MobileOrg"
21635 ["Push Files and Views" org-mobile-push t]
21636 ["Get Captured and Flagged" org-mobile-pull t]
21637 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21638 "--"
21639 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21640 "--"
21641 ("Documentation"
21642 ["Show Version" org-version t]
21643 ["Info Documentation" org-info t])
21644 ("Customize"
21645 ["Browse Org Group" org-customize t]
21646 "--"
21647 ["Expand This Menu" org-create-customize-menu
21648 (fboundp 'customize-menu-create)])
21649 ["Send bug report" org-submit-bug-report t]
21650 "--"
21651 ("Refresh/Reload"
21652 ["Refresh setup current buffer" org-mode-restart t]
21653 ["Reload Org (after update)" org-reload t]
21654 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21657 (defun org-info (&optional node)
21658 "Read documentation for Org-mode in the info system.
21659 With optional NODE, go directly to that node."
21660 (interactive)
21661 (info (format "(org)%s" (or node ""))))
21663 ;;;###autoload
21664 (defun org-submit-bug-report ()
21665 "Submit a bug report on Org-mode via mail.
21667 Don't hesitate to report any problems or inaccurate documentation.
21669 If you don't have setup sending mail from (X)Emacs, please copy the
21670 output buffer into your mail program, as it gives us important
21671 information about your Org-mode version and configuration."
21672 (interactive)
21673 (require 'reporter)
21674 (org-load-modules-maybe)
21675 (org-require-autoloaded-modules)
21676 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21677 (reporter-submit-bug-report
21678 "emacs-orgmode@gnu.org"
21679 (org-version nil 'full)
21680 (let (list)
21681 (save-window-excursion
21682 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21683 (delete-other-windows)
21684 (erase-buffer)
21685 (insert "You are about to submit a bug report to the Org-mode mailing list.
21687 We would like to add your full Org-mode and Outline configuration to the
21688 bug report. This greatly simplifies the work of the maintainer and
21689 other experts on the mailing list.
21691 HOWEVER, some variables you have customized may contain private
21692 information. The names of customers, colleagues, or friends, might
21693 appear in the form of file names, tags, todo states, or search strings.
21694 If you answer yes to the prompt, you might want to check and remove
21695 such private information before sending the email.")
21696 (add-text-properties (point-min) (point-max) '(face org-warning))
21697 (when (yes-or-no-p "Include your Org-mode configuration ")
21698 (mapatoms
21699 (lambda (v)
21700 (and (boundp v)
21701 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21702 (or (and (symbol-value v)
21703 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21704 (and
21705 (get v 'custom-type) (get v 'standard-value)
21706 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21707 (push v list)))))
21708 (kill-buffer (get-buffer "*Warn about privacy*"))
21709 list))
21710 nil nil
21711 "Remember to cover the basics, that is, what you expected to happen and
21712 what in fact did happen. You don't know how to make a good report? See
21714 http://orgmode.org/manual/Feedback.html#Feedback
21716 Your bug report will be posted to the Org-mode mailing list.
21717 ------------------------------------------------------------------------")
21718 (save-excursion
21719 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21720 (replace-match "\\1Bug: \\3 [\\2]")))))
21723 (defun org-install-agenda-files-menu ()
21724 (let ((bl (buffer-list)))
21725 (save-excursion
21726 (while bl
21727 (set-buffer (pop bl))
21728 (if (derived-mode-p 'org-mode) (setq bl nil)))
21729 (when (derived-mode-p 'org-mode)
21730 (easy-menu-change
21731 '("Org") "File List for Agenda"
21732 (append
21733 (list
21734 ["Edit File List" (org-edit-agenda-file-list) t]
21735 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21736 ["Remove Current File from List" org-remove-file t]
21737 ["Cycle through agenda files" org-cycle-agenda-files t]
21738 ["Occur in all agenda files" org-occur-in-agenda-files t]
21739 "--")
21740 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21742 ;;;; Documentation
21744 (defun org-require-autoloaded-modules ()
21745 (interactive)
21746 (mapc 'require
21747 '(org-agenda org-archive org-attach org-clock org-colview org-id
21748 org-table org-timer)))
21750 ;;;###autoload
21751 (defun org-reload (&optional uncompiled)
21752 "Reload all org lisp files.
21753 With prefix arg UNCOMPILED, load the uncompiled versions."
21754 (interactive "P")
21755 (require 'loadhist)
21756 (let* ((org-dir (org-find-library-dir "org"))
21757 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21758 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21759 (remove-re (mapconcat 'identity
21760 (mapcar (lambda (f) (concat "^" f "$"))
21761 (list (if (featurep 'xemacs)
21762 "org-colview"
21763 "org-colview-xemacs")
21764 "org" "org-loaddefs" "org-version"))
21765 "\\|"))
21766 (feats (delete-dups
21767 (mapcar 'file-name-sans-extension
21768 (mapcar 'file-name-nondirectory
21769 (delq nil
21770 (mapcar 'feature-file
21771 features))))))
21772 (lfeat (append
21773 (sort
21774 (setq feats
21775 (delq nil (mapcar
21776 (lambda (f)
21777 (if (and (string-match feature-re f)
21778 (not (string-match remove-re f)))
21779 f nil))
21780 feats)))
21781 'string-lessp)
21782 (list "org-version" "org")))
21783 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21784 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21785 load-uncore load-misses)
21786 (setq load-misses
21787 (delq 't
21788 (mapcar (lambda (f)
21789 (or (org-load-noerror-mustsuffix (concat org-dir f))
21790 (and (string= org-dir contrib-dir)
21791 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21792 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21793 (add-to-list 'load-uncore f 'append)
21796 lfeat)))
21797 (if load-uncore
21798 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21799 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21800 (if load-misses
21801 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21802 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21803 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21805 ;;;###autoload
21806 (defun org-customize ()
21807 "Call the customize function with org as argument."
21808 (interactive)
21809 (org-load-modules-maybe)
21810 (org-require-autoloaded-modules)
21811 (customize-browse 'org))
21813 (defun org-create-customize-menu ()
21814 "Create a full customization menu for Org-mode, insert it into the menu."
21815 (interactive)
21816 (org-load-modules-maybe)
21817 (org-require-autoloaded-modules)
21818 (if (fboundp 'customize-menu-create)
21819 (progn
21820 (easy-menu-change
21821 '("Org") "Customize"
21822 `(["Browse Org group" org-customize t]
21823 "--"
21824 ,(customize-menu-create 'org)
21825 ["Set" Custom-set t]
21826 ["Save" Custom-save t]
21827 ["Reset to Current" Custom-reset-current t]
21828 ["Reset to Saved" Custom-reset-saved t]
21829 ["Reset to Standard Settings" Custom-reset-standard t]))
21830 (message "\"Org\"-menu now contains full customization menu"))
21831 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21833 ;;;; Miscellaneous stuff
21835 ;;; Generally useful functions
21837 (defsubst org-get-at-eol (property n)
21838 "Get text property PROPERTY at the end of line less N characters."
21839 (get-text-property (- (point-at-eol) n) property))
21841 (defun org-find-text-property-in-string (prop s)
21842 "Return the first non-nil value of property PROP in string S."
21843 (or (get-text-property 0 prop s)
21844 (get-text-property (or (next-single-property-change 0 prop s) 0)
21845 prop s)))
21847 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21848 "Display the given MESSAGE as a warning."
21849 (if (fboundp 'display-warning)
21850 (display-warning 'org message
21851 (if (featurep 'xemacs) 'warning :warning))
21852 (let ((buf (get-buffer-create "*Org warnings*")))
21853 (with-current-buffer buf
21854 (goto-char (point-max))
21855 (insert "Warning (Org): " message)
21856 (unless (bolp)
21857 (newline)))
21858 (display-buffer buf)
21859 (sit-for 0))))
21861 (defun org-eval (form)
21862 "Eval FORM and return result."
21863 (condition-case error
21864 (eval form)
21865 (error (format "%%![Error: %s]" error))))
21867 (defun org-in-clocktable-p ()
21868 "Check if the cursor is in a clocktable."
21869 (let ((pos (point)) start)
21870 (save-excursion
21871 (end-of-line 1)
21872 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21873 (setq start (match-beginning 0))
21874 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21875 (>= (match-end 0) pos)
21876 start))))
21878 (defun org-in-verbatim-emphasis ()
21879 (save-match-data
21880 (and (org-in-regexp org-emph-re 2)
21881 (>= (point) (match-beginning 3))
21882 (<= (point) (match-end 4))
21883 (member (match-string 3) '("=" "~")))))
21885 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21886 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21887 (if (and marker (marker-buffer marker)
21888 (buffer-live-p (marker-buffer marker)))
21889 (progn
21890 (org-pop-to-buffer-same-window (marker-buffer marker))
21891 (if (or (> marker (point-max)) (< marker (point-min)))
21892 (widen))
21893 (goto-char marker)
21894 (org-show-context 'org-goto))
21895 (if bookmark
21896 (bookmark-jump bookmark)
21897 (error "Cannot find location"))))
21899 (defun org-quote-csv-field (s)
21900 "Quote field for inclusion in CSV material."
21901 (if (string-match "[\",]" s)
21902 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21905 (defun org-force-self-insert (N)
21906 "Needed to enforce self-insert under remapping."
21907 (interactive "p")
21908 (self-insert-command N))
21910 (defun org-string-width (s)
21911 "Compute width of string, ignoring invisible characters.
21912 This ignores character with invisibility property `org-link', and also
21913 characters with property `org-cwidth', because these will become invisible
21914 upon the next fontification round."
21915 (let (b l)
21916 (when (or (eq t buffer-invisibility-spec)
21917 (assq 'org-link buffer-invisibility-spec))
21918 (while (setq b (text-property-any 0 (length s)
21919 'invisible 'org-link s))
21920 (setq s (concat (substring s 0 b)
21921 (substring s (or (next-single-property-change
21922 b 'invisible s) (length s)))))))
21923 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21924 (setq s (concat (substring s 0 b)
21925 (substring s (or (next-single-property-change
21926 b 'org-cwidth s) (length s))))))
21927 (setq l (string-width s) b -1)
21928 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21929 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21932 (defun org-shorten-string (s maxlength)
21933 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21934 If the string is shorter or has length MAXLENGTH, just return the
21935 original string. If it is longer, the functions finds a space in the
21936 string, breaks this string off at that locations and adds three dots
21937 as ellipsis. Including the ellipsis, the string will not be longer
21938 than MAXLENGTH. If finding a good breaking point in the string does
21939 not work, the string is just chopped off in the middle of a word
21940 if necessary."
21941 (if (<= (length s) maxlength)
21943 (let* ((n (max (- maxlength 4) 1))
21944 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21945 (if (string-match re s)
21946 (concat (match-string 1 s) "...")
21947 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21949 (defun org-get-indentation (&optional line)
21950 "Get the indentation of the current line, interpreting tabs.
21951 When LINE is given, assume it represents a line and compute its indentation."
21952 (if line
21953 (if (string-match "^ *" (org-remove-tabs line))
21954 (match-end 0))
21955 (save-excursion
21956 (beginning-of-line 1)
21957 (skip-chars-forward " \t")
21958 (current-column))))
21960 (defun org-get-string-indentation (s)
21961 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21962 (let ((n -1) (i 0) (w tab-width) c)
21963 (catch 'exit
21964 (while (< (setq n (1+ n)) (length s))
21965 (setq c (aref s n))
21966 (cond ((= c ?\ ) (setq i (1+ i)))
21967 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21968 (t (throw 'exit t)))))
21971 (defun org-remove-tabs (s &optional width)
21972 "Replace tabulators in S with spaces.
21973 Assumes that s is a single line, starting in column 0."
21974 (setq width (or width tab-width))
21975 (while (string-match "\t" s)
21976 (setq s (replace-match
21977 (make-string
21978 (- (* width (/ (+ (match-beginning 0) width) width))
21979 (match-beginning 0)) ?\ )
21980 t t s)))
21983 (defun org-fix-indentation (line ind)
21984 "Fix indentation in LINE.
21985 IND is a cons cell with target and minimum indentation.
21986 If the current indentation in LINE is smaller than the minimum,
21987 leave it alone. If it is larger than ind, set it to the target."
21988 (let* ((l (org-remove-tabs line))
21989 (i (org-get-indentation l))
21990 (i1 (car ind)) (i2 (cdr ind)))
21991 (if (>= i i2) (setq l (substring line i2)))
21992 (if (> i1 0)
21993 (concat (make-string i1 ?\ ) l)
21994 l)))
21996 (defun org-remove-indentation (code &optional n)
21997 "Remove the maximum common indentation from the lines in CODE.
21998 N may optionally be the number of spaces to remove."
21999 (with-temp-buffer
22000 (insert code)
22001 (org-do-remove-indentation n)
22002 (buffer-string)))
22004 (defun org-do-remove-indentation (&optional n)
22005 "Remove the maximum common indentation from the buffer."
22006 (untabify (point-min) (point-max))
22007 (let ((min 10000) re)
22008 (if n
22009 (setq min n)
22010 (goto-char (point-min))
22011 (while (re-search-forward "^ *[^ \n]" nil t)
22012 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22013 (unless (or (= min 0) (= min 10000))
22014 (setq re (format "^ \\{%d\\}" min))
22015 (goto-char (point-min))
22016 (while (re-search-forward re nil t)
22017 (replace-match "")
22018 (end-of-line 1))
22019 min)))
22021 (defun org-fill-template (template alist)
22022 "Find each %key of ALIST in TEMPLATE and replace it."
22023 (let ((case-fold-search nil)
22024 entry key value)
22025 (setq alist (sort (copy-sequence alist)
22026 (lambda (a b) (< (length (car a)) (length (car b))))))
22027 (while (setq entry (pop alist))
22028 (setq template
22029 (replace-regexp-in-string
22030 (concat "%" (regexp-quote (car entry)))
22031 (or (cdr entry) "") template t t)))
22032 template))
22034 (defun org-base-buffer (buffer)
22035 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22036 (if (not buffer)
22037 buffer
22038 (or (buffer-base-buffer buffer)
22039 buffer)))
22041 (defun org-wrap (string &optional width lines)
22042 "Wrap string to either a number of lines, or a width in characters.
22043 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22044 that costs. If there is a word longer than WIDTH, the text is actually
22045 wrapped to the length of that word.
22046 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22047 many lines, whatever width that takes.
22048 The return value is a list of lines, without newlines at the end."
22049 (let* ((words (org-split-string string "[ \t\n]+"))
22050 (maxword (apply 'max (mapcar 'org-string-width words)))
22051 w ll)
22052 (cond (width
22053 (org-do-wrap words (max maxword width)))
22054 (lines
22055 (setq w maxword)
22056 (setq ll (org-do-wrap words maxword))
22057 (if (<= (length ll) lines)
22059 (setq ll words)
22060 (while (> (length ll) lines)
22061 (setq w (1+ w))
22062 (setq ll (org-do-wrap words w)))
22063 ll))
22064 (t (error "Cannot wrap this")))))
22066 (defun org-do-wrap (words width)
22067 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22068 (let (lines line)
22069 (while words
22070 (setq line (pop words))
22071 (while (and words (< (+ (length line) (length (car words))) width))
22072 (setq line (concat line " " (pop words))))
22073 (setq lines (push line lines)))
22074 (nreverse lines)))
22076 (defun org-split-string (string &optional separators)
22077 "Splits STRING into substrings at SEPARATORS.
22078 No empty strings are returned if there are matches at the beginning
22079 and end of string."
22080 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
22081 (start 0)
22082 notfirst
22083 (list nil))
22084 (while (and (string-match rexp string
22085 (if (and notfirst
22086 (= start (match-beginning 0))
22087 (< start (length string)))
22088 (1+ start) start))
22089 (< (match-beginning 0) (length string)))
22090 (setq notfirst t)
22091 (or (eq (match-beginning 0) 0)
22092 (and (eq (match-beginning 0) (match-end 0))
22093 (eq (match-beginning 0) start))
22094 (setq list
22095 (cons (substring string start (match-beginning 0))
22096 list)))
22097 (setq start (match-end 0)))
22098 (or (eq start (length string))
22099 (setq list
22100 (cons (substring string start)
22101 list)))
22102 (nreverse list)))
22104 (defun org-quote-vert (s)
22105 "Replace \"|\" with \"\\vert\"."
22106 (while (string-match "|" s)
22107 (setq s (replace-match "\\vert" t t s)))
22110 (defun org-uuidgen-p (s)
22111 "Is S an ID created by UUIDGEN?"
22112 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22114 (defun org-in-src-block-p (&optional inside)
22115 "Whether point is in a code source block.
22116 When INSIDE is non-nil, don't consider we are within a src block
22117 when point is at #+BEGIN_SRC or #+END_SRC."
22118 (let ((case-fold-search t) ov)
22119 (or (and (eq (get-char-property (point) 'src-block) t))
22120 (and (not inside)
22121 (save-match-data
22122 (save-excursion
22123 (beginning-of-line)
22124 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22126 (defun org-context ()
22127 "Return a list of contexts of the current cursor position.
22128 If several contexts apply, all are returned.
22129 Each context entry is a list with a symbol naming the context, and
22130 two positions indicating start and end of the context. Possible
22131 contexts are:
22133 :headline anywhere in a headline
22134 :headline-stars on the leading stars in a headline
22135 :todo-keyword on a TODO keyword (including DONE) in a headline
22136 :tags on the TAGS in a headline
22137 :priority on the priority cookie in a headline
22138 :item on the first line of a plain list item
22139 :item-bullet on the bullet/number of a plain list item
22140 :checkbox on the checkbox in a plain list item
22141 :table in an org-mode table
22142 :table-special on a special filed in a table
22143 :table-table in a table.el table
22144 :clocktable in a clocktable
22145 :src-block in a source block
22146 :link on a hyperlink
22147 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22148 :target on a <<target>>
22149 :radio-target on a <<<radio-target>>>
22150 :latex-fragment on a LaTeX fragment
22151 :latex-preview on a LaTeX fragment with overlaid preview image
22153 This function expects the position to be visible because it uses font-lock
22154 faces as a help to recognize the following contexts: :table-special, :link,
22155 and :keyword."
22156 (let* ((f (get-text-property (point) 'face))
22157 (faces (if (listp f) f (list f)))
22158 (case-fold-search t)
22159 (p (point)) clist o)
22160 ;; First the large context
22161 (cond
22162 ((org-at-heading-p t)
22163 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22164 (when (progn
22165 (beginning-of-line 1)
22166 (looking-at org-todo-line-tags-regexp))
22167 (push (org-point-in-group p 1 :headline-stars) clist)
22168 (push (org-point-in-group p 2 :todo-keyword) clist)
22169 (push (org-point-in-group p 4 :tags) clist))
22170 (goto-char p)
22171 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22172 (if (looking-at "\\[#[A-Z0-9]\\]")
22173 (push (org-point-in-group p 0 :priority) clist)))
22175 ((org-at-item-p)
22176 (push (org-point-in-group p 2 :item-bullet) clist)
22177 (push (list :item (point-at-bol)
22178 (save-excursion (org-end-of-item) (point)))
22179 clist)
22180 (and (org-at-item-checkbox-p)
22181 (push (org-point-in-group p 0 :checkbox) clist)))
22183 ((org-at-table-p)
22184 (push (list :table (org-table-begin) (org-table-end)) clist)
22185 (if (memq 'org-formula faces)
22186 (push (list :table-special
22187 (previous-single-property-change p 'face)
22188 (next-single-property-change p 'face)) clist)))
22189 ((org-at-table-p 'any)
22190 (push (list :table-table) clist)))
22191 (goto-char p)
22193 (let ((case-fold-search t))
22194 ;; New the "medium" contexts: clocktables, source blocks
22195 (cond ((org-in-clocktable-p)
22196 (push (list :clocktable
22197 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22198 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22199 (match-beginning 1))
22200 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22201 (match-end 0))) clist))
22202 ((org-in-src-block-p)
22203 (push (list :src-block
22204 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22205 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22206 (match-beginning 1))
22207 (and (search-forward "#+END_SRC" nil t)
22208 (match-beginning 0))) clist))))
22209 (goto-char p)
22211 ;; Now the small context
22212 (cond
22213 ((org-at-timestamp-p)
22214 (push (org-point-in-group p 0 :timestamp) clist))
22215 ((memq 'org-link faces)
22216 (push (list :link
22217 (previous-single-property-change p 'face)
22218 (next-single-property-change p 'face)) clist))
22219 ((memq 'org-special-keyword faces)
22220 (push (list :keyword
22221 (previous-single-property-change p 'face)
22222 (next-single-property-change p 'face)) clist))
22223 ((org-at-target-p)
22224 (push (org-point-in-group p 0 :target) clist)
22225 (goto-char (1- (match-beginning 0)))
22226 (if (looking-at org-radio-target-regexp)
22227 (push (org-point-in-group p 0 :radio-target) clist))
22228 (goto-char p))
22229 ((setq o (car (delq nil
22230 (mapcar
22231 (lambda (x)
22232 (if (memq x org-latex-fragment-image-overlays) x))
22233 (overlays-at (point))))))
22234 (push (list :latex-fragment
22235 (overlay-start o) (overlay-end o)) clist)
22236 (push (list :latex-preview
22237 (overlay-start o) (overlay-end o)) clist))
22238 ((org-inside-LaTeX-fragment-p)
22239 ;; FIXME: positions wrong.
22240 (push (list :latex-fragment (point) (point)) clist)))
22242 (setq clist (nreverse (delq nil clist)))
22243 clist))
22245 (defun org-in-regexp (re &optional nlines visually)
22246 "Check if point is inside a match of RE.
22248 Normally only the current line is checked, but you can include
22249 NLINES extra lines after point into the search. If VISUALLY is
22250 set, require that the cursor is not after the match but really
22251 on, so that the block visually is on the match."
22252 (catch 'exit
22253 (let ((pos (point))
22254 (eol (point-at-eol (+ 1 (or nlines 0))))
22255 (inc (if visually 1 0)))
22256 (save-excursion
22257 (beginning-of-line (- 1 (or nlines 0)))
22258 (while (re-search-forward re eol t)
22259 (if (and (<= (match-beginning 0) pos)
22260 (>= (+ inc (match-end 0)) pos))
22261 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22262 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22263 "Org mode 8.3")
22265 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22266 "Non-nil when point is between matches of START-RE and END-RE.
22268 Also return a non-nil value when point is on one of the matches.
22270 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22271 buffer positions. Default values are the positions of headlines
22272 surrounding the point.
22274 The functions returns a cons cell whose car (resp. cdr) is the
22275 position before START-RE (resp. after END-RE)."
22276 (save-match-data
22277 (let ((pos (point))
22278 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22279 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22280 beg end)
22281 (save-excursion
22282 ;; Point is on a block when on START-RE or if START-RE can be
22283 ;; found before it...
22284 (and (or (org-in-regexp start-re)
22285 (re-search-backward start-re limit-up t))
22286 (setq beg (match-beginning 0))
22287 ;; ... and END-RE after it...
22288 (goto-char (match-end 0))
22289 (re-search-forward end-re limit-down t)
22290 (> (setq end (match-end 0)) pos)
22291 ;; ... without another START-RE in-between.
22292 (goto-char (match-beginning 0))
22293 (not (re-search-backward start-re (1+ beg) t))
22294 ;; Return value.
22295 (cons beg end))))))
22297 (defun org-in-block-p (names)
22298 "Non-nil when point belongs to a block whose name belongs to NAMES.
22300 NAMES is a list of strings containing names of blocks.
22302 Return first block name matched, or nil. Beware that in case of
22303 nested blocks, the returned name may not belong to the closest
22304 block from point."
22305 (save-match-data
22306 (catch 'exit
22307 (let ((case-fold-search t)
22308 (lim-up (save-excursion (outline-previous-heading)))
22309 (lim-down (save-excursion (outline-next-heading))))
22310 (mapc (lambda (name)
22311 (let ((n (regexp-quote name)))
22312 (when (org-between-regexps-p
22313 (concat "^[ \t]*#\\+begin_" n)
22314 (concat "^[ \t]*#\\+end_" n)
22315 lim-up lim-down)
22316 (throw 'exit n))))
22317 names))
22318 nil)))
22320 (defun org-occur-in-agenda-files (regexp &optional nlines)
22321 "Call `multi-occur' with buffers for all agenda files."
22322 (interactive "sOrg-files matching: \np")
22323 (let* ((files (org-agenda-files))
22324 (tnames (mapcar 'file-truename files))
22325 (extra org-agenda-text-search-extra-files)
22327 (when (eq (car extra) 'agenda-archives)
22328 (setq extra (cdr extra))
22329 (setq files (org-add-archive-files files)))
22330 (while (setq f (pop extra))
22331 (unless (member (file-truename f) tnames)
22332 (add-to-list 'files f 'append)
22333 (add-to-list 'tnames (file-truename f) 'append)))
22334 (multi-occur
22335 (mapcar (lambda (x)
22336 (with-current-buffer
22337 (or (get-file-buffer x) (find-file-noselect x))
22338 (widen)
22339 (current-buffer)))
22340 files)
22341 regexp)))
22343 (if (boundp 'occur-mode-find-occurrence-hook)
22344 ;; Emacs 23
22345 (add-hook 'occur-mode-find-occurrence-hook
22346 (lambda ()
22347 (when (derived-mode-p 'org-mode)
22348 (org-reveal))))
22349 ;; Emacs 22
22350 (defadvice occur-mode-goto-occurrence
22351 (after org-occur-reveal activate)
22352 (and (derived-mode-p 'org-mode) (org-reveal)))
22353 (defadvice occur-mode-goto-occurrence-other-window
22354 (after org-occur-reveal activate)
22355 (and (derived-mode-p 'org-mode) (org-reveal)))
22356 (defadvice occur-mode-display-occurrence
22357 (after org-occur-reveal activate)
22358 (when (derived-mode-p 'org-mode)
22359 (let ((pos (occur-mode-find-occurrence)))
22360 (with-current-buffer (marker-buffer pos)
22361 (save-excursion
22362 (goto-char pos)
22363 (org-reveal)))))))
22365 (defun org-occur-link-in-agenda-files ()
22366 "Create a link and search for it in the agendas.
22367 The link is not stored in `org-stored-links', it is just created
22368 for the search purpose."
22369 (interactive)
22370 (let ((link (condition-case nil
22371 (org-store-link nil)
22372 (error "Unable to create a link to here"))))
22373 (org-occur-in-agenda-files (regexp-quote link))))
22375 (defun org-reverse-string (string)
22376 "Return the reverse of STRING."
22377 (apply 'string (reverse (string-to-list string))))
22379 ;; defsubst org-uniquify must be defined before first use
22381 (defun org-uniquify-alist (alist)
22382 "Merge elements of ALIST with the same key.
22384 For example, in this alist:
22386 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22387 => '((a 1 3) (b 2))
22389 merge (a 1) and (a 3) into (a 1 3).
22391 The function returns the new ALIST."
22392 (let (rtn)
22393 (mapc
22394 (lambda (e)
22395 (let (n)
22396 (if (not (assoc (car e) rtn))
22397 (push e rtn)
22398 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22399 (setq rtn (assq-delete-all (car e) rtn))
22400 (push n rtn))))
22401 alist)
22402 rtn))
22404 (defun org-delete-all (elts list)
22405 "Remove all elements in ELTS from LIST."
22406 (while elts
22407 (setq list (delete (pop elts) list)))
22408 list)
22410 (defun org-count (cl-item cl-seq)
22411 "Count the number of occurrences of ITEM in SEQ.
22412 Taken from `count' in cl-seq.el with all keyword arguments removed."
22413 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22414 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22415 (while (< cl-start cl-end)
22416 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22417 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22418 (setq cl-start (1+ cl-start)))
22419 cl-count))
22421 (defun org-remove-if (predicate seq)
22422 "Remove everything from SEQ that fulfills PREDICATE."
22423 (let (res e)
22424 (while seq
22425 (setq e (pop seq))
22426 (if (not (funcall predicate e)) (push e res)))
22427 (nreverse res)))
22429 (defun org-remove-if-not (predicate seq)
22430 "Remove everything from SEQ that does not fulfill PREDICATE."
22431 (let (res e)
22432 (while seq
22433 (setq e (pop seq))
22434 (if (funcall predicate e) (push e res)))
22435 (nreverse res)))
22437 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22438 "Reduce two-argument FUNCTION across SEQ.
22439 Taken from `reduce' in cl-seq.el with all keyword arguments but
22440 \":initial-value\" removed."
22441 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22442 (cadr (memq :initial-value cl-keys)))
22443 (cl-seq (pop cl-seq))
22444 (t (funcall cl-func)))))
22445 (while cl-seq
22446 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22447 cl-accum))
22449 (defun org-every (pred seq)
22450 "Return true if PREDICATE is true of every element of SEQ.
22451 Adapted from `every' in cl.el."
22452 (catch 'org-every
22453 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22456 (defun org-some (pred seq)
22457 "Return true if PREDICATE is true of any element of SEQ.
22458 Adapted from `some' in cl.el."
22459 (catch 'org-some
22460 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22461 nil))
22463 (defun org-back-over-empty-lines ()
22464 "Move backwards over whitespace, to the beginning of the first empty line.
22465 Returns the number of empty lines passed."
22466 (let ((pos (point)))
22467 (if (cdr (assoc 'heading org-blank-before-new-entry))
22468 (skip-chars-backward " \t\n\r")
22469 (unless (eobp)
22470 (forward-line -1)))
22471 (beginning-of-line 2)
22472 (goto-char (min (point) pos))
22473 (count-lines (point) pos)))
22475 (defun org-skip-whitespace ()
22476 (skip-chars-forward " \t\n\r"))
22478 (defun org-point-in-group (point group &optional context)
22479 "Check if POINT is in match-group GROUP.
22480 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22481 match. If the match group does not exist or point is not inside it,
22482 return nil."
22483 (and (match-beginning group)
22484 (>= point (match-beginning group))
22485 (<= point (match-end group))
22486 (if context
22487 (list context (match-beginning group) (match-end group))
22488 t)))
22490 (defun org-switch-to-buffer-other-window (&rest args)
22491 "Switch to buffer in a second window on the current frame.
22492 In particular, do not allow pop-up frames.
22493 Returns the newly created buffer."
22494 (org-no-popups
22495 (apply 'switch-to-buffer-other-window args)))
22497 (defun org-combine-plists (&rest plists)
22498 "Create a single property list from all plists in PLISTS.
22499 The process starts by copying the first list, and then setting properties
22500 from the other lists. Settings in the last list are the most significant
22501 ones and overrule settings in the other lists."
22502 (let ((rtn (copy-sequence (pop plists)))
22503 p v ls)
22504 (while plists
22505 (setq ls (pop plists))
22506 (while ls
22507 (setq p (pop ls) v (pop ls))
22508 (setq rtn (plist-put rtn p v))))
22509 rtn))
22511 (defun org-replace-escapes (string table)
22512 "Replace %-escapes in STRING with values in TABLE.
22513 TABLE is an association list with keys like \"%a\" and string values.
22514 The sequences in STRING may contain normal field width and padding information,
22515 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22516 so values can contain further %-escapes if they are define later in TABLE."
22517 (let ((tbl (copy-alist table))
22518 (case-fold-search nil)
22519 (pchg 0)
22520 e re rpl)
22521 (while (setq e (pop tbl))
22522 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22523 (when (and (cdr e) (string-match re (cdr e)))
22524 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22525 (safe "SREF"))
22526 (add-text-properties 0 3 (list 'sref sref) safe)
22527 (setcdr e (replace-match safe t t (cdr e)))))
22528 (while (string-match re string)
22529 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22530 (cdr e)))
22531 (setq string (replace-match rpl t t string))))
22532 (while (setq pchg (next-property-change pchg string))
22533 (let ((sref (get-text-property pchg 'sref string)))
22534 (when (and sref (string-match "SREF" string pchg))
22535 (setq string (replace-match sref t t string)))))
22536 string))
22538 (defun org-sublist (list start end)
22539 "Return a section of LIST, from START to END.
22540 Counting starts at 1."
22541 (let (rtn (c start))
22542 (setq list (nthcdr (1- start) list))
22543 (while (and list (<= c end))
22544 (push (pop list) rtn)
22545 (setq c (1+ c)))
22546 (nreverse rtn)))
22548 (defun org-find-base-buffer-visiting (file)
22549 "Like `find-buffer-visiting' but always return the base buffer and
22550 not an indirect buffer."
22551 (let ((buf (or (get-file-buffer file)
22552 (find-buffer-visiting file))))
22553 (if buf
22554 (or (buffer-base-buffer buf) buf)
22555 nil)))
22557 (defun org-image-file-name-regexp (&optional extensions)
22558 "Return regexp matching the file names of images.
22559 If EXTENSIONS is given, only match these."
22560 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22561 (image-file-name-regexp)
22562 (let ((image-file-name-extensions
22563 (or extensions
22564 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22565 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22566 (concat "\\."
22567 (regexp-opt (nconc (mapcar 'upcase
22568 image-file-name-extensions)
22569 image-file-name-extensions)
22571 "\\'"))))
22573 (defun org-file-image-p (file &optional extensions)
22574 "Return non-nil if FILE is an image."
22575 (save-match-data
22576 (string-match (org-image-file-name-regexp extensions) file)))
22578 (defun org-get-cursor-date (&optional with-time)
22579 "Return the date at cursor in as a time.
22580 This works in the calendar and in the agenda, anywhere else it just
22581 returns the current time.
22582 If WITH-TIME is non-nil, returns the time of the event at point (in
22583 the agenda) or the current time of the day."
22584 (let (date day defd tp tm hod mod)
22585 (when with-time
22586 (setq tp (get-text-property (point) 'time))
22587 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22588 (setq hod (string-to-number (match-string 1 tp))
22589 mod (string-to-number (match-string 2 tp))))
22590 (or tp (setq hod (nth 2 (decode-time (current-time)))
22591 mod (nth 1 (decode-time (current-time))))))
22592 (cond
22593 ((eq major-mode 'calendar-mode)
22594 (setq date (calendar-cursor-to-date)
22595 defd (encode-time 0 (or mod 0) (or hod 0)
22596 (nth 1 date) (nth 0 date) (nth 2 date))))
22597 ((eq major-mode 'org-agenda-mode)
22598 (setq day (get-text-property (point) 'day))
22599 (if day
22600 (setq date (calendar-gregorian-from-absolute day)
22601 defd (encode-time 0 (or mod 0) (or hod 0)
22602 (nth 1 date) (nth 0 date) (nth 2 date))))))
22603 (or defd (current-time))))
22605 (defun org-mark-subtree (&optional up)
22606 "Mark the current subtree.
22607 This puts point at the start of the current subtree, and mark at
22608 the end. If a numeric prefix UP is given, move up into the
22609 hierarchy of headlines by UP levels before marking the subtree."
22610 (interactive "P")
22611 (org-with-limited-levels
22612 (cond ((org-at-heading-p) (beginning-of-line))
22613 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22614 (t (outline-previous-visible-heading 1))))
22615 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22616 (if (org-called-interactively-p 'any)
22617 (call-interactively 'org-mark-element)
22618 (org-mark-element)))
22621 ;;; Indentation
22623 (defun org--get-expected-indentation (element contentsp)
22624 "Expected indentation column for current line, according to ELEMENT.
22625 ELEMENT is an element containing point. CONTENTSP is non-nil
22626 when indentation is to be computed according to contents of
22627 ELEMENT."
22628 (let ((type (org-element-type element))
22629 (start (org-element-property :begin element)))
22630 (org-with-wide-buffer
22631 (cond
22632 (contentsp
22633 (case type
22634 (footnote-definition 0)
22635 ((headline inlinetask nil)
22636 (if (not org-adapt-indentation) 0
22637 (let ((level (org-current-level)))
22638 (if level (1+ level) 0))))
22639 (item
22640 (org-list-item-body-column
22641 (org-element-property :post-affiliated element)))
22642 (plain-list
22643 (save-excursion
22644 (goto-char (org-element-property :post-affiliated element))
22645 (org-get-indentation)))
22646 (otherwise
22647 (goto-char start)
22648 (org-get-indentation))))
22649 ((memq type '(headline inlinetask nil))
22650 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22651 (org--get-expected-indentation element t)
22653 ((eq type 'footnote-definition) 0)
22654 ;; First paragraph of a footnote definition or an item.
22655 ;; Indent like parent.
22656 ((< (line-beginning-position) start)
22657 (org--get-expected-indentation
22658 (org-element-property :parent element) t))
22659 ;; At first line: indent according to previous sibling, if any,
22660 ;; ignoring footnote definitions and inline tasks, or parent's
22661 ;; contents.
22662 ((= (line-beginning-position) start)
22663 (catch 'exit
22664 (while t
22665 (if (= (point-min) start) (throw 'exit 0)
22666 (goto-char (1- start))
22667 (let* ((previous (org-element-at-point))
22668 (parent previous))
22669 (while (and parent (<= (org-element-property :end parent) start))
22670 (setq previous parent
22671 parent (org-element-property :parent parent)))
22672 (cond
22673 ((not previous) (throw 'exit 0))
22674 ((> (org-element-property :end previous) start)
22675 (throw 'exit (org--get-expected-indentation previous t)))
22676 ((memq (org-element-type previous)
22677 '(footnote-definition inlinetask))
22678 (setq start (org-element-property :begin previous)))
22679 (t (goto-char (org-element-property :begin previous))
22680 (throw 'exit
22681 (if (bolp) (org-get-indentation)
22682 ;; At first paragraph in an item or
22683 ;; a footnote definition.
22684 (org--get-expected-indentation
22685 (org-element-property :parent previous) t))))))))))
22686 ;; Otherwise, move to the first non-blank line above.
22688 (beginning-of-line)
22689 (let ((pos (point)))
22690 (skip-chars-backward " \r\t\n")
22691 (cond
22692 ;; Two blank lines end a footnote definition or a plain
22693 ;; list. When we indent an empty line after them, the
22694 ;; containing list or footnote definition is over, so it
22695 ;; qualifies as a previous sibling. Therefore, we indent
22696 ;; like its first line.
22697 ((and (memq type '(footnote-definition plain-list))
22698 (> (count-lines (point) pos) 2))
22699 (goto-char start)
22700 (org-get-indentation))
22701 ;; Line above is the first one of a paragraph at the
22702 ;; beginning of an item or a footnote definition. Indent
22703 ;; like parent.
22704 ((< (line-beginning-position) start)
22705 (org--get-expected-indentation
22706 (org-element-property :parent element) t))
22707 ;; POS is after contents in a greater element. Indent like
22708 ;; the beginning of the element.
22710 ;; As a special case, if point is at the end of a footnote
22711 ;; definition or an item, indent like the very last element
22712 ;; within.
22713 ((and (not (eq type 'paragraph))
22714 (let ((cend (org-element-property :contents-end element)))
22715 (and cend (<= cend pos))))
22716 (if (memq type '(footnote-definition item plain-list))
22717 (org--get-expected-indentation (org-element-at-point) nil)
22718 (goto-char start)
22719 (org-get-indentation)))
22720 ;; In any other case, indent like the current line.
22721 (t (org-get-indentation)))))))))
22723 (defun org--align-node-property ()
22724 "Align node property at point.
22725 Alignment is done according to `org-property-format', which see."
22726 (when (save-excursion
22727 (beginning-of-line)
22728 (looking-at org-property-re))
22729 (replace-match
22730 (concat (match-string 4)
22731 (org-trim
22732 (format org-property-format (match-string 1) (match-string 3))))
22733 t t)))
22735 (defun org-indent-line ()
22736 "Indent line depending on context.
22738 Indentation is done according to the following rules:
22740 - Footnote definitions, headlines and inline tasks have to
22741 start at column 0.
22743 - On the very first line of an element, consider, in order, the
22744 next rules until one matches:
22746 1. If there's a sibling element before, ignoring footnote
22747 definitions and inline tasks, indent like its first line.
22749 2. If element has a parent, indent like its contents. More
22750 precisely, if parent is an item, indent after the
22751 description part, if any, or the bullet (see
22752 `org-list-description-max-indent'). Else, indent like
22753 parent's first line.
22755 3. Otherwise, indent relatively to current level, if
22756 `org-adapt-indentation' is non-nil, or to left margin.
22758 - On a blank line at the end of an element, indent according to
22759 the type of the element. More precisely
22761 1. If element is a plain list, an item, or a footnote
22762 definition, indent like the very last element within.
22764 2. If element is a paragraph, indent like its last non blank
22765 line.
22767 3. Otherwise, indent like its very first line.
22769 - In the code part of a source block, use language major mode
22770 to indent current line if `org-src-tab-acts-natively' is
22771 non-nil. If it is nil, do nothing.
22773 - Otherwise, indent like the first non-blank line above.
22775 The function doesn't indent an item as it could break the whole
22776 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22777 \\[org-shiftmetaright].
22779 Also align node properties according to `org-property-format'."
22780 (interactive)
22781 (cond
22782 (orgstruct-is-++
22783 (let ((indent-line-function
22784 (cadadr (assq 'indent-line-function org-fb-vars))))
22785 (indent-according-to-mode)))
22786 ((org-at-heading-p) 'noindent)
22788 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22789 (type (org-element-type element)))
22790 (cond ((and (memq type '(plain-list item))
22791 (= (line-beginning-position)
22792 (org-element-property :post-affiliated element)))
22793 'noindent)
22794 ((and (eq type 'src-block)
22795 org-src-tab-acts-natively
22796 (> (line-beginning-position)
22797 (org-element-property :post-affiliated element))
22798 (< (line-beginning-position)
22799 (org-with-wide-buffer
22800 (goto-char (org-element-property :end element))
22801 (skip-chars-backward " \r\t\n")
22802 (line-beginning-position))))
22803 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
22805 (let ((column (org--get-expected-indentation element nil)))
22806 ;; Preserve current column.
22807 (if (<= (current-column) (current-indentation))
22808 (org-indent-line-to column)
22809 (save-excursion (org-indent-line-to column))))
22810 ;; Align node property. Also preserve current column.
22811 (when (eq type 'node-property)
22812 (let ((column (current-column)))
22813 (org--align-node-property)
22814 (org-move-to-column column)))))))))
22816 (defun org-indent-region (start end)
22817 "Indent each non-blank line in the region.
22818 Called from a program, START and END specify the region to
22819 indent. The function will not indent contents of example blocks,
22820 verse blocks and export blocks as leading white spaces are
22821 assumed to be significant there."
22822 (interactive "r")
22823 (save-excursion
22824 (goto-char start)
22825 (skip-chars-forward " \r\t\n")
22826 (unless (eobp) (beginning-of-line))
22827 (let ((indent-to
22828 (lambda (ind pos)
22829 ;; Set IND as indentation for all lines between point and
22830 ;; POS or END, whichever comes first. Blank lines are
22831 ;; ignored. Leave point after POS once done.
22832 (let ((limit (copy-marker (min end pos))))
22833 (while (< (point) limit)
22834 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22835 (forward-line))
22836 (set-marker limit nil))))
22837 (end (copy-marker end)))
22838 (while (< (point) end)
22839 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22840 (let* ((element (org-element-at-point))
22841 (type (org-element-type element))
22842 (element-end (copy-marker (org-element-property :end element)))
22843 (ind (org--get-expected-indentation element nil)))
22844 (cond
22845 ((or (memq type '(paragraph table table-row))
22846 (not (or (org-element-property :contents-begin element)
22847 (memq type
22848 '(example-block export-block src-block)))))
22849 ;; Elements here are indented as a single block. Also
22850 ;; align node properties.
22851 (when (eq type 'node-property)
22852 (org--align-node-property)
22853 (beginning-of-line))
22854 (funcall indent-to ind element-end))
22856 ;; Elements in this category consist of three parts:
22857 ;; before the contents, the contents, and after the
22858 ;; contents. The contents are treated specially,
22859 ;; according to the element type, or not indented at
22860 ;; all. Other parts are indented as a single block.
22861 (let* ((post (copy-marker
22862 (org-element-property :post-affiliated element)))
22863 (cbeg
22864 (copy-marker
22865 (cond
22866 ((not (org-element-property :contents-begin element))
22867 ;; Fake contents for source blocks.
22868 (org-with-wide-buffer
22869 (goto-char post)
22870 (forward-line)
22871 (point)))
22872 ((memq type '(footnote-definition item plain-list))
22873 ;; Contents in these elements could start on
22874 ;; the same line as the beginning of the
22875 ;; element. Make sure we start indenting
22876 ;; from the second line.
22877 (org-with-wide-buffer
22878 (goto-char post)
22879 (end-of-line)
22880 (skip-chars-forward " \r\t\n")
22881 (if (eobp) (point) (line-beginning-position))))
22882 (t (org-element-property :contents-begin element)))))
22883 (cend (copy-marker
22884 (or (org-element-property :contents-end element)
22885 ;; Fake contents for source blocks.
22886 (org-with-wide-buffer
22887 (goto-char element-end)
22888 (skip-chars-backward " \r\t\n")
22889 (line-beginning-position)))
22890 t)))
22891 ;; Do not change items indentation individually as it
22892 ;; might break the list as a whole. On the other
22893 ;; hand, when at a plain list, indent it as a whole.
22894 (cond ((eq type 'plain-list)
22895 (let ((offset (- ind (org-get-indentation))))
22896 (unless (zerop offset)
22897 (indent-rigidly (org-element-property :begin element)
22898 (org-element-property :end element)
22899 offset))
22900 (goto-char cbeg)))
22901 ((eq type 'item) (goto-char cbeg))
22902 (t (funcall indent-to ind cbeg)))
22903 (when (< (point) end)
22904 (case type
22905 ((example-block export-block verse-block))
22906 (src-block
22907 ;; In a source block, indent source code
22908 ;; according to language major mode, but only if
22909 ;; `org-src-tab-acts-natively' is non-nil.
22910 (when (and (< (point) end) org-src-tab-acts-natively)
22911 (ignore-errors
22912 (org-babel-do-in-edit-buffer
22913 (indent-region (point-min) (point-max))))))
22914 (t (org-indent-region (point) (min cend end))))
22915 (goto-char (min cend end))
22916 (when (< (point) end) (funcall indent-to ind element-end)))
22917 (set-marker post nil)
22918 (set-marker cbeg nil)
22919 (set-marker cend nil))))
22920 (set-marker element-end nil))))
22921 (set-marker end nil))))
22923 (defun org-indent-drawer ()
22924 "Indent the drawer at point."
22925 (interactive)
22926 (unless (save-excursion
22927 (beginning-of-line)
22928 (org-looking-at-p org-drawer-regexp))
22929 (user-error "Not at a drawer"))
22930 (let ((element (org-element-at-point)))
22931 (unless (memq (org-element-type element) '(drawer property-drawer))
22932 (user-error "Not at a drawer"))
22933 (org-with-wide-buffer
22934 (org-indent-region (org-element-property :begin element)
22935 (org-element-property :end element))))
22936 (message "Drawer at point indented"))
22938 (defun org-indent-block ()
22939 "Indent the block at point."
22940 (interactive)
22941 (unless (save-excursion
22942 (beginning-of-line)
22943 (let ((case-fold-search t))
22944 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22945 (user-error "Not at a block"))
22946 (let ((element (org-element-at-point)))
22947 (unless (memq (org-element-type element)
22948 '(comment-block center-block dynamic-block example-block
22949 export-block quote-block special-block
22950 src-block verse-block))
22951 (user-error "Not at a block"))
22952 (org-with-wide-buffer
22953 (org-indent-region (org-element-property :begin element)
22954 (org-element-property :end element))))
22955 (message "Block at point indented"))
22958 ;;; Filling
22960 ;; We use our own fill-paragraph and auto-fill functions.
22962 ;; `org-fill-paragraph' relies on adaptive filling and context
22963 ;; checking. Appropriate `fill-prefix' is computed with
22964 ;; `org-adaptive-fill-function'.
22966 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22967 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22968 ;; `org-adaptive-fill-function' value. Internally,
22969 ;; `org-comment-line-break-function' breaks the line.
22971 ;; `org-setup-filling' installs filling and auto-filling related
22972 ;; variables during `org-mode' initialization.
22974 (defvar org-element-paragraph-separate) ; org-element.el
22975 (defun org-setup-filling ()
22976 (require 'org-element)
22977 ;; Prevent auto-fill from inserting unwanted new items.
22978 (when (boundp 'fill-nobreak-predicate)
22979 (org-set-local
22980 'fill-nobreak-predicate
22981 (org-uniquify
22982 (append fill-nobreak-predicate
22983 '(org-fill-line-break-nobreak-p
22984 org-fill-paragraph-with-timestamp-nobreak-p)))))
22985 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22986 (org-set-local 'paragraph-start paragraph-ending)
22987 (org-set-local 'paragraph-separate paragraph-ending))
22988 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22989 (org-set-local 'auto-fill-inhibit-regexp nil)
22990 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22991 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22992 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22994 (defun org-fill-line-break-nobreak-p ()
22995 "Non-nil when a new line at point would create an Org line break."
22996 (save-excursion
22997 (skip-chars-backward "[ \t]")
22998 (skip-chars-backward "\\\\")
22999 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23001 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23002 "Non-nil when a new line at point would split a timestamp."
23003 (and (org-at-timestamp-p t)
23004 (not (looking-at org-ts-regexp-both))))
23006 (declare-function message-in-body-p "message" ())
23007 (defvar orgtbl-line-start-regexp) ; From org-table.el
23008 (defun org-adaptive-fill-function ()
23009 "Compute a fill prefix for the current line.
23010 Return fill prefix, as a string, or nil if current line isn't
23011 meant to be filled. For convenience, if `adaptive-fill-regexp'
23012 matches in paragraphs or comments, use it."
23013 (catch 'exit
23014 (when (derived-mode-p 'message-mode)
23015 (save-excursion
23016 (beginning-of-line)
23017 (cond ((not (message-in-body-p)) (throw 'exit nil))
23018 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23019 ((looking-at message-cite-prefix-regexp)
23020 (throw 'exit (match-string-no-properties 0)))
23021 ((looking-at org-outline-regexp)
23022 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23023 (org-with-wide-buffer
23024 (unless (org-at-heading-p)
23025 (let* ((p (line-beginning-position))
23026 (element (save-excursion
23027 (beginning-of-line)
23028 (org-element-at-point)))
23029 (type (org-element-type element))
23030 (post-affiliated (org-element-property :post-affiliated element)))
23031 (unless (< p post-affiliated)
23032 (case type
23033 (comment
23034 (save-excursion
23035 (beginning-of-line)
23036 (looking-at "[ \t]*")
23037 (concat (match-string 0) "# ")))
23038 (footnote-definition "")
23039 ((item plain-list)
23040 (make-string (org-list-item-body-column post-affiliated) ?\s))
23041 (paragraph
23042 ;; Fill prefix is usually the same as the current line,
23043 ;; unless the paragraph is at the beginning of an item.
23044 (let ((parent (org-element-property :parent element)))
23045 (save-excursion
23046 (beginning-of-line)
23047 (cond ((eq (org-element-type parent) 'item)
23048 (make-string (org-list-item-body-column
23049 (org-element-property :begin parent))
23050 ?\s))
23051 ((and adaptive-fill-regexp
23052 ;; Locally disable
23053 ;; `adaptive-fill-function' to let
23054 ;; `fill-context-prefix' handle
23055 ;; `adaptive-fill-regexp' variable.
23056 (let (adaptive-fill-function)
23057 (fill-context-prefix
23058 post-affiliated
23059 (org-element-property :end element)))))
23060 ((looking-at "[ \t]+") (match-string 0))
23061 (t "")))))
23062 (comment-block
23063 ;; Only fill contents if P is within block boundaries.
23064 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23065 (forward-line)
23066 (point)))
23067 (cend (save-excursion
23068 (goto-char (org-element-property :end element))
23069 (skip-chars-backward " \r\t\n")
23070 (line-beginning-position))))
23071 (when (and (>= p cbeg) (< p cend))
23072 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23073 (match-string 0)
23074 "")))))))))))
23076 (declare-function message-goto-body "message" ())
23077 (defvar message-cite-prefix-regexp) ; From message.el
23078 (defun org-fill-paragraph (&optional justify)
23079 "Fill element at point, when applicable.
23081 This function only applies to comment blocks, comments, example
23082 blocks and paragraphs. Also, as a special case, re-align table
23083 when point is at one.
23085 If JUSTIFY is non-nil (interactively, with prefix argument),
23086 justify as well. If `sentence-end-double-space' is non-nil, then
23087 period followed by one space does not end a sentence, so don't
23088 break a line there. The variable `fill-column' controls the
23089 width for filling.
23091 For convenience, when point is at a plain list, an item or
23092 a footnote definition, try to fill the first paragraph within."
23093 (interactive)
23094 (if (and (derived-mode-p 'message-mode)
23095 (or (not (message-in-body-p))
23096 (save-excursion (move-beginning-of-line 1)
23097 (looking-at message-cite-prefix-regexp))))
23098 ;; First ensure filling is correct in message-mode.
23099 (let ((fill-paragraph-function
23100 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23101 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23102 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23103 (paragraph-separate
23104 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23105 (fill-paragraph nil))
23106 (with-syntax-table org-mode-transpose-word-syntax-table
23107 ;; Move to end of line in order to get the first paragraph
23108 ;; within a plain list or a footnote definition.
23109 (let ((element (save-excursion
23110 (end-of-line)
23111 (or (ignore-errors (org-element-at-point))
23112 (user-error "An element cannot be parsed line %d"
23113 (line-number-at-pos (point)))))))
23114 ;; First check if point is in a blank line at the beginning of
23115 ;; the buffer. In that case, ignore filling.
23116 (case (org-element-type element)
23117 ;; Use major mode filling function is src blocks.
23118 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23119 ;; Align Org tables, leave table.el tables as-is.
23120 (table-row (org-table-align) t)
23121 (table
23122 (when (eq (org-element-property :type element) 'org)
23123 (save-excursion
23124 (goto-char (org-element-property :post-affiliated element))
23125 (org-table-align)))
23127 (paragraph
23128 ;; Paragraphs may contain `line-break' type objects.
23129 (let ((beg (max (point-min)
23130 (org-element-property :contents-begin element)))
23131 (end (min (point-max)
23132 (org-element-property :contents-end element))))
23133 ;; Do nothing if point is at an affiliated keyword.
23134 (if (< (line-end-position) beg) t
23135 (when (derived-mode-p 'message-mode)
23136 ;; In `message-mode', do not fill following citation
23137 ;; in current paragraph nor text before message body.
23138 (let ((body-start (save-excursion (message-goto-body))))
23139 (when body-start (setq beg (max body-start beg))))
23140 (when (save-excursion
23141 (re-search-forward
23142 (concat "^" message-cite-prefix-regexp) end t))
23143 (setq end (match-beginning 0))))
23144 ;; Fill paragraph, taking line breaks into account.
23145 (save-excursion
23146 (goto-char beg)
23147 (let ((cuts (list beg)))
23148 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23149 (when (eq 'line-break
23150 (org-element-type
23151 (save-excursion (backward-char)
23152 (org-element-context))))
23153 (push (point) cuts)))
23154 (dolist (c (delq end cuts))
23155 (fill-region-as-paragraph c end justify)
23156 (setq end c))))
23157 t)))
23158 ;; Contents of `comment-block' type elements should be
23159 ;; filled as plain text, but only if point is within block
23160 ;; markers.
23161 (comment-block
23162 (let* ((case-fold-search t)
23163 (beg (save-excursion
23164 (goto-char (org-element-property :begin element))
23165 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23166 (forward-line)
23167 (point)))
23168 (end (save-excursion
23169 (goto-char (org-element-property :end element))
23170 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23171 (line-beginning-position))))
23172 (if (or (< (point) beg) (> (point) end)) t
23173 (fill-region-as-paragraph
23174 (save-excursion (end-of-line)
23175 (re-search-backward "^[ \t]*$" beg 'move)
23176 (line-beginning-position))
23177 (save-excursion (beginning-of-line)
23178 (re-search-forward "^[ \t]*$" end 'move)
23179 (line-beginning-position))
23180 justify))))
23181 ;; Fill comments.
23182 (comment
23183 (let ((begin (org-element-property :post-affiliated element))
23184 (end (org-element-property :end element)))
23185 (when (and (>= (point) begin) (<= (point) end))
23186 (let ((begin (save-excursion
23187 (end-of-line)
23188 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23189 (progn (forward-line) (point))
23190 begin)))
23191 (end (save-excursion
23192 (end-of-line)
23193 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23194 (1- (line-beginning-position))
23195 (skip-chars-backward " \r\t\n")
23196 (line-end-position)))))
23197 ;; Do not fill comments when at a blank line.
23198 (when (> end begin)
23199 (let ((fill-prefix
23200 (save-excursion
23201 (beginning-of-line)
23202 (looking-at "[ \t]*#")
23203 (let ((comment-prefix (match-string 0)))
23204 (goto-char (match-end 0))
23205 (if (looking-at adaptive-fill-regexp)
23206 (concat comment-prefix (match-string 0))
23207 (concat comment-prefix " "))))))
23208 (save-excursion
23209 (fill-region-as-paragraph begin end justify))))))
23211 ;; Ignore every other element.
23212 (otherwise t))))))
23214 (defun org-auto-fill-function ()
23215 "Auto-fill function."
23216 ;; Check if auto-filling is meaningful.
23217 (let ((fc (current-fill-column)))
23218 (when (and fc (> (current-column) fc))
23219 (let* ((fill-prefix (org-adaptive-fill-function))
23220 ;; Enforce empty fill prefix, if required. Otherwise, it
23221 ;; will be computed again.
23222 (adaptive-fill-mode (not (equal fill-prefix ""))))
23223 (when fill-prefix (do-auto-fill))))))
23225 (defun org-comment-line-break-function (&optional soft)
23226 "Break line at point and indent, continuing comment if within one.
23227 The inserted newline is marked hard if variable
23228 `use-hard-newlines' is true, unless optional argument SOFT is
23229 non-nil."
23230 (if soft (insert-and-inherit ?\n) (newline 1))
23231 (save-excursion (forward-char -1) (delete-horizontal-space))
23232 (delete-horizontal-space)
23233 (indent-to-left-margin)
23234 (insert-before-markers-and-inherit fill-prefix))
23237 ;;; Fixed Width Areas
23239 (defun org-toggle-fixed-width ()
23240 "Toggle fixed-width markup.
23242 Add or remove fixed-width markup on current line, whenever it
23243 makes sense. Return an error otherwise.
23245 If a region is active and if it contains only fixed-width areas
23246 or blank lines, remove all fixed-width markup in it. If the
23247 region contains anything else, convert all non-fixed-width lines
23248 to fixed-width ones.
23250 Blank lines at the end of the region are ignored unless the
23251 region only contains such lines."
23252 (interactive)
23253 (if (not (org-region-active-p))
23254 ;; No region:
23256 ;; Remove fixed width marker only in a fixed-with element.
23258 ;; Add fixed width maker in paragraphs, in blank lines after
23259 ;; elements or at the beginning of a headline or an inlinetask,
23260 ;; and before any one-line elements (e.g., a clock).
23261 (progn
23262 (beginning-of-line)
23263 (let* ((element (org-element-at-point))
23264 (type (org-element-type element)))
23265 (cond
23266 ((and (eq type 'fixed-width)
23267 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23268 (replace-match
23269 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23270 ((and (memq type '(babel-call clock comment diary-sexp headline
23271 horizontal-rule keyword paragraph
23272 planning))
23273 (<= (org-element-property :post-affiliated element) (point)))
23274 (skip-chars-forward " \t")
23275 (insert ": "))
23276 ((and (org-looking-at-p "[ \t]*$")
23277 (or (eq type 'inlinetask)
23278 (save-excursion
23279 (skip-chars-forward " \r\t\n")
23280 (<= (org-element-property :end element) (point)))))
23281 (delete-region (point) (line-end-position))
23282 (org-indent-line)
23283 (insert ": "))
23284 (t (user-error "Cannot insert a fixed-width line here")))))
23285 ;; Region active.
23286 (let* ((begin (save-excursion
23287 (goto-char (region-beginning))
23288 (line-beginning-position)))
23289 (end (copy-marker
23290 (save-excursion
23291 (goto-char (region-end))
23292 (unless (eolp) (beginning-of-line))
23293 (if (save-excursion (re-search-backward "\\S-" begin t))
23294 (progn (skip-chars-backward " \r\t\n") (point))
23295 (point)))))
23296 (all-fixed-width-p
23297 (catch 'not-all-p
23298 (save-excursion
23299 (goto-char begin)
23300 (skip-chars-forward " \r\t\n")
23301 (when (eobp) (throw 'not-all-p nil))
23302 (while (< (point) end)
23303 (let ((element (org-element-at-point)))
23304 (if (eq (org-element-type element) 'fixed-width)
23305 (goto-char (org-element-property :end element))
23306 (throw 'not-all-p nil))))
23307 t))))
23308 (if all-fixed-width-p
23309 (save-excursion
23310 (goto-char begin)
23311 (while (< (point) end)
23312 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23313 (replace-match
23314 "" nil nil nil
23315 (if (= (line-end-position) (match-end 0)) 0 1)))
23316 (forward-line)))
23317 (let ((min-ind (point-max)))
23318 ;; Find minimum indentation across all lines.
23319 (save-excursion
23320 (goto-char begin)
23321 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23322 (setq min-ind 0)
23323 (catch 'zerop
23324 (while (< (point) end)
23325 (unless (org-looking-at-p "[ \t]*$")
23326 (let ((ind (org-get-indentation)))
23327 (setq min-ind (min min-ind ind))
23328 (when (zerop ind) (throw 'zerop t))))
23329 (forward-line)))))
23330 ;; Loop over all lines and add fixed-width markup everywhere
23331 ;; but in fixed-width lines.
23332 (save-excursion
23333 (goto-char begin)
23334 (while (< (point) end)
23335 (cond
23336 ((org-at-heading-p)
23337 (insert ": ")
23338 (forward-line)
23339 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23340 (insert ":")
23341 (forward-line)))
23342 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23343 (let* ((element (org-element-at-point))
23344 (element-end (org-element-property :end element)))
23345 (if (eq (org-element-type element) 'fixed-width)
23346 (progn (goto-char element-end)
23347 (skip-chars-backward " \r\t\n")
23348 (forward-line))
23349 (let ((limit (min end element-end)))
23350 (while (< (point) limit)
23351 (org-move-to-column min-ind t)
23352 (insert ": ")
23353 (forward-line))))))
23355 (org-move-to-column min-ind t)
23356 (insert ": ")
23357 (forward-line)))))))
23358 (set-marker end nil))))
23361 ;;; Comments
23363 ;; Org comments syntax is quite complex. It requires the entire line
23364 ;; to be just a comment. Also, even with the right syntax at the
23365 ;; beginning of line, some some elements (i.e. verse-block or
23366 ;; example-block) don't accept comments. Usual Emacs comment commands
23367 ;; cannot cope with those requirements. Therefore, Org replaces them.
23369 ;; Org still relies on `comment-dwim', but cannot trust
23370 ;; `comment-only-p'. So, `comment-region-function' and
23371 ;; `uncomment-region-function' both point
23372 ;; to`org-comment-or-uncomment-region'. Eventually,
23373 ;; `org-insert-comment' takes care of insertion of comments at the
23374 ;; beginning of line.
23376 ;; `org-setup-comments-handling' install comments related variables
23377 ;; during `org-mode' initialization.
23379 (defun org-setup-comments-handling ()
23380 (interactive)
23381 (org-set-local 'comment-use-syntax nil)
23382 (org-set-local 'comment-start "# ")
23383 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23384 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23385 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23386 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23388 (defun org-insert-comment ()
23389 "Insert an empty comment above current line.
23390 If the line is empty, insert comment at its beginning. When
23391 point is within a source block, comment according to the related
23392 major mode."
23393 (if (let ((element (org-element-at-point)))
23394 (and (eq (org-element-type element) 'src-block)
23395 (< (save-excursion
23396 (goto-char (org-element-property :post-affiliated element))
23397 (line-end-position))
23398 (point))
23399 (> (save-excursion
23400 (goto-char (org-element-property :end element))
23401 (skip-chars-backward " \r\t\n")
23402 (line-beginning-position))
23403 (point))))
23404 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23405 (beginning-of-line)
23406 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23407 (open-line 1))
23408 (org-indent-line)
23409 (insert "# ")))
23411 (defvar comment-empty-lines) ; From newcomment.el.
23412 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23413 "Comment or uncomment each non-blank line in the region.
23414 Uncomment each non-blank line between BEG and END if it only
23415 contains commented lines. Otherwise, comment them. If region is
23416 strictly within a source block, use appropriate comment syntax."
23417 (if (let ((element (org-element-at-point)))
23418 (and (eq (org-element-type element) 'src-block)
23419 (< (save-excursion
23420 (goto-char (org-element-property :post-affiliated element))
23421 (line-end-position))
23422 beg)
23423 (>= (save-excursion
23424 (goto-char (org-element-property :end element))
23425 (skip-chars-backward " \r\t\n")
23426 (line-beginning-position))
23427 end)))
23428 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23429 (save-restriction
23430 ;; Restrict region
23431 (narrow-to-region (save-excursion (goto-char beg)
23432 (skip-chars-forward " \r\t\n" end)
23433 (line-beginning-position))
23434 (save-excursion (goto-char end)
23435 (skip-chars-backward " \r\t\n" beg)
23436 (line-end-position)))
23437 (let ((uncommentp
23438 ;; UNCOMMENTP is non-nil when every non blank line between
23439 ;; BEG and END is a comment.
23440 (save-excursion
23441 (goto-char (point-min))
23442 (while (and (not (eobp))
23443 (let ((element (org-element-at-point)))
23444 (and (eq (org-element-type element) 'comment)
23445 (goto-char (min (point-max)
23446 (org-element-property
23447 :end element)))))))
23448 (eobp))))
23449 (if uncommentp
23450 ;; Only blank lines and comments in region: uncomment it.
23451 (save-excursion
23452 (goto-char (point-min))
23453 (while (not (eobp))
23454 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23455 (replace-match "" nil nil nil 1))
23456 (forward-line)))
23457 ;; Comment each line in region.
23458 (let ((min-indent (point-max)))
23459 ;; First find the minimum indentation across all lines.
23460 (save-excursion
23461 (goto-char (point-min))
23462 (while (and (not (eobp)) (not (zerop min-indent)))
23463 (unless (looking-at "[ \t]*$")
23464 (setq min-indent (min min-indent (current-indentation))))
23465 (forward-line)))
23466 ;; Then loop over all lines.
23467 (save-excursion
23468 (goto-char (point-min))
23469 (while (not (eobp))
23470 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23471 ;; Don't get fooled by invisible text (e.g. link path)
23472 ;; when moving to column MIN-INDENT.
23473 (let ((buffer-invisibility-spec nil))
23474 (org-move-to-column min-indent t))
23475 (insert comment-start))
23476 (forward-line)))))))))
23478 (defun org-comment-dwim (arg)
23479 "Call `comment-dwim' within a source edit buffer if needed."
23480 (interactive "*P")
23481 (if (org-in-src-block-p)
23482 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23483 (call-interactively 'comment-dwim)))
23486 ;;; Timestamps API
23488 ;; This section contains tools to operate on timestamp objects, as
23489 ;; returned by, e.g. `org-element-context'.
23491 (defun org-timestamp--to-internal-time (timestamp &optional end)
23492 "Encode TIMESTAMP object into Emacs internal time.
23493 Use end of date range or time range when END is non-nil."
23494 (apply #'encode-time
23495 (cons 0
23496 (mapcar
23497 (lambda (prop) (or (org-element-property prop timestamp) 0))
23498 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23499 '(:minute-start :hour-start :day-start :month-start
23500 :year-start))))))
23502 (defun org-timestamp-has-time-p (timestamp)
23503 "Non-nil when TIMESTAMP has a time specified."
23504 (org-element-property :hour-start timestamp))
23506 (defun org-timestamp-format (timestamp format &optional end utc)
23507 "Format a TIMESTAMP object into a string.
23509 FORMAT is a format specifier to be passed to
23510 `format-time-string'.
23512 When optional argument END is non-nil, use end of date-range or
23513 time-range, if possible.
23515 When optional argument UTC is non-nil, time will be expressed as
23516 Universal Time."
23517 (format-time-string
23518 format (org-timestamp--to-internal-time timestamp end) utc))
23520 (defun org-timestamp-split-range (timestamp &optional end)
23521 "Extract a TIMESTAMP object from a date or time range.
23523 END, when non-nil, means extract the end of the range.
23524 Otherwise, extract its start.
23526 Return a new timestamp object."
23527 (let ((type (org-element-property :type timestamp)))
23528 (if (memq type '(active inactive diary)) timestamp
23529 (let ((split-ts (org-element-copy timestamp)))
23530 ;; Set new type.
23531 (org-element-put-property
23532 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23533 ;; Copy start properties over end properties if END is
23534 ;; non-nil. Otherwise, copy end properties over `start' ones.
23535 (let ((p-alist '((:minute-start . :minute-end)
23536 (:hour-start . :hour-end)
23537 (:day-start . :day-end)
23538 (:month-start . :month-end)
23539 (:year-start . :year-end))))
23540 (dolist (p-cell p-alist)
23541 (org-element-put-property
23542 split-ts
23543 (funcall (if end #'car #'cdr) p-cell)
23544 (org-element-property
23545 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23546 ;; Eventually refresh `:raw-value'.
23547 (org-element-put-property split-ts :raw-value nil)
23548 (org-element-put-property
23549 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23551 (defun org-timestamp-translate (timestamp &optional boundary)
23552 "Translate TIMESTAMP object to custom format.
23554 Format string is defined in `org-time-stamp-custom-formats',
23555 which see.
23557 When optional argument BOUNDARY is non-nil, it is either the
23558 symbol `start' or `end'. In this case, only translate the
23559 starting or ending part of TIMESTAMP if it is a date or time
23560 range. Otherwise, translate both parts.
23562 Return timestamp as-is if `org-display-custom-times' is nil or if
23563 it has a `diary' type."
23564 (let ((type (org-element-property :type timestamp)))
23565 (if (or (not org-display-custom-times) (eq type 'diary))
23566 (org-element-interpret-data timestamp)
23567 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23568 org-time-stamp-custom-formats)))
23569 (if (and (not boundary) (memq type '(active-range inactive-range)))
23570 (concat (org-timestamp-format timestamp fmt)
23571 "--"
23572 (org-timestamp-format timestamp fmt t))
23573 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23577 ;;; Other stuff.
23579 (defun org-reftex-citation ()
23580 "Use reftex-citation to insert a citation into the buffer.
23581 This looks for a line like
23583 #+BIBLIOGRAPHY: foo plain option:-d
23585 and derives from it that foo.bib is the bibliography file relevant
23586 for this document. It then installs the necessary environment for RefTeX
23587 to work in this buffer and calls `reftex-citation' to insert a citation
23588 into the buffer.
23590 Export of such citations to both LaTeX and HTML is handled by the contributed
23591 package ox-bibtex by Taru Karttunen."
23592 (interactive)
23593 (let ((reftex-docstruct-symbol 'rds)
23594 (reftex-cite-format "\\cite{%l}")
23595 rds bib)
23596 (save-excursion
23597 (save-restriction
23598 (widen)
23599 (let ((case-fold-search t)
23600 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23601 (if (not (save-excursion
23602 (or (re-search-forward re nil t)
23603 (re-search-backward re nil t))))
23604 (user-error "No bibliography defined in file")
23605 (setq bib (concat (match-string 1) ".bib")
23606 rds (list (list 'bib bib)))))))
23607 (call-interactively 'reftex-citation)))
23609 ;;;; Functions extending outline functionality
23611 (defun org-beginning-of-line (&optional arg)
23612 "Go to the beginning of the current line. If that is invisible, continue
23613 to a visible line beginning. This makes the function of C-a more intuitive.
23614 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23615 first attempt, and only move to after the tags when the cursor is already
23616 beyond the end of the headline."
23617 (interactive "P")
23618 (let ((pos (point))
23619 (special (if (consp org-special-ctrl-a/e)
23620 (car org-special-ctrl-a/e)
23621 org-special-ctrl-a/e))
23622 deactivate-mark refpos)
23623 (if (org-bound-and-true-p visual-line-mode)
23624 (beginning-of-visual-line 1)
23625 (beginning-of-line 1))
23626 (if (and arg (fboundp 'move-beginning-of-line))
23627 (call-interactively 'move-beginning-of-line)
23628 (if (bobp)
23630 (backward-char 1)
23631 (if (org-truely-invisible-p)
23632 (while (and (not (bobp)) (org-truely-invisible-p))
23633 (backward-char 1)
23634 (beginning-of-line 1))
23635 (forward-char 1))))
23636 (when special
23637 (cond
23638 ((and (looking-at org-complex-heading-regexp)
23639 (= (char-after (match-end 1)) ?\ ))
23640 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23641 (point-at-eol)))
23642 (goto-char
23643 (if (eq special t)
23644 (cond ((> pos refpos) refpos)
23645 ((= pos (point)) refpos)
23646 (t (point)))
23647 (cond ((> pos (point)) (point))
23648 ((not (eq last-command this-command)) (point))
23649 (t refpos)))))
23650 ((org-at-item-p)
23651 ;; Being at an item and not looking at an the item means point
23652 ;; was previously moved to beginning of a visual line, which
23653 ;; doesn't contain the item. Therefore, do nothing special,
23654 ;; just stay here.
23655 (when (looking-at org-list-full-item-re)
23656 ;; Set special position at first white space character after
23657 ;; bullet, and check-box, if any.
23658 (let ((after-bullet
23659 (let ((box (match-end 3)))
23660 (if (not box) (match-end 1)
23661 (let ((after (char-after box)))
23662 (if (and after (= after ? )) (1+ box) box))))))
23663 ;; Special case: Move point to special position when
23664 ;; currently after it or at beginning of line.
23665 (if (eq special t)
23666 (when (or (> pos after-bullet) (= (point) pos))
23667 (goto-char after-bullet))
23668 ;; Reversed case: Move point to special position when
23669 ;; point was already at beginning of line and command is
23670 ;; repeated.
23671 (when (and (= (point) pos) (eq last-command this-command))
23672 (goto-char after-bullet))))))))
23673 (org-no-warnings
23674 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23675 (setq disable-point-adjustment
23676 (or (not (invisible-p (point)))
23677 (not (invisible-p (max (point-min) (1- (point))))))))
23679 (defun org-end-of-line (&optional arg)
23680 "Go to the end of the line.
23681 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23682 tags on the first attempt, and only move to after the tags when
23683 the cursor is already beyond the end of the headline."
23684 (interactive "P")
23685 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23686 org-special-ctrl-a/e))
23687 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23688 'end-of-visual-line)
23689 ((fboundp 'move-end-of-line) 'move-end-of-line)
23690 (t 'end-of-line)))
23691 deactivate-mark)
23692 (if (or (not special) arg) (call-interactively move-fun)
23693 (let* ((element (save-excursion (beginning-of-line)
23694 (org-element-at-point)))
23695 (type (org-element-type element)))
23696 (cond
23697 ((memq type '(headline inlinetask))
23698 (let ((pos (point)))
23699 (beginning-of-line 1)
23700 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23701 (if (eq special t)
23702 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23703 (goto-char (match-beginning 1))
23704 (goto-char (match-end 0)))
23705 (if (or (< pos (match-end 0))
23706 (not (eq this-command last-command)))
23707 (goto-char (match-end 0))
23708 (goto-char (match-beginning 1))))
23709 (call-interactively move-fun))))
23710 ((outline-invisible-p (line-end-position))
23711 ;; If element is hidden, `move-end-of-line' would put point
23712 ;; after it. Use `end-of-line' to stay on current line.
23713 (call-interactively 'end-of-line))
23714 (t (call-interactively move-fun)))))
23715 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23716 (setq disable-point-adjustment
23717 (or (not (invisible-p (point)))
23718 (not (invisible-p (max (point-min) (1- (point))))))))
23720 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23721 (define-key org-mode-map "\C-e" 'org-end-of-line)
23723 (defun org-backward-sentence (&optional arg)
23724 "Go to beginning of sentence, or beginning of table field.
23725 This will call `backward-sentence' or `org-table-beginning-of-field',
23726 depending on context."
23727 (interactive "P")
23728 (cond
23729 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23730 (t (call-interactively 'backward-sentence))))
23732 (defun org-forward-sentence (&optional arg)
23733 "Go to end of sentence, or end of table field.
23734 This will call `forward-sentence' or `org-table-end-of-field',
23735 depending on context."
23736 (interactive "P")
23737 (cond
23738 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23739 (t (call-interactively 'forward-sentence))))
23741 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23742 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23744 (defun org-kill-line (&optional arg)
23745 "Kill line, to tags or end of line."
23746 (interactive "P")
23747 (cond
23748 ((or (not org-special-ctrl-k)
23749 (bolp)
23750 (not (org-at-heading-p)))
23751 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23752 org-ctrl-k-protect-subtree)
23753 (if (or (eq org-ctrl-k-protect-subtree 'error)
23754 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23755 (user-error "C-k aborted as it would kill a hidden subtree")))
23756 (call-interactively
23757 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23758 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23759 (kill-region (point) (match-beginning 1))
23760 (org-set-tags nil t))
23761 (t (kill-region (point) (point-at-eol)))))
23763 (define-key org-mode-map "\C-k" 'org-kill-line)
23765 (defun org-yank (&optional arg)
23766 "Yank. If the kill is a subtree, treat it specially.
23767 This command will look at the current kill and check if is a single
23768 subtree, or a series of subtrees[1]. If it passes the test, and if the
23769 cursor is at the beginning of a line or after the stars of a currently
23770 empty headline, then the yank is handled specially. How exactly depends
23771 on the value of the following variables, both set by default.
23773 `org-yank-folded-subtrees'
23774 When set, the subtree(s) will be folded after insertion, but only
23775 if doing so would now swallow text after the yanked text.
23777 `org-yank-adjusted-subtrees'
23778 When set, the subtree will be promoted or demoted in order to
23779 fit into the local outline tree structure, which means that the
23780 level will be adjusted so that it becomes the smaller one of the
23781 two *visible* surrounding headings.
23783 Any prefix to this command will cause `yank' to be called directly with
23784 no special treatment. In particular, a simple \\[universal-argument] prefix \
23785 will just
23786 plainly yank the text as it is.
23788 \[1] The test checks if the first non-white line is a heading
23789 and if there are no other headings with fewer stars."
23790 (interactive "P")
23791 (org-yank-generic 'yank arg))
23793 (defun org-yank-generic (command arg)
23794 "Perform some yank-like command.
23796 This function implements the behavior described in the `org-yank'
23797 documentation. However, it has been generalized to work for any
23798 interactive command with similar behavior."
23800 ;; pretend to be command COMMAND
23801 (setq this-command command)
23803 (if arg
23804 (call-interactively command)
23806 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23807 (and (org-kill-is-subtree-p)
23808 (or (bolp)
23809 (and (looking-at "[ \t]*$")
23810 (string-match
23811 "\\`\\*+\\'"
23812 (buffer-substring (point-at-bol) (point)))))))
23813 swallowp)
23814 (cond
23815 ((and subtreep org-yank-folded-subtrees)
23816 (let ((beg (point))
23817 end)
23818 (if (and subtreep org-yank-adjusted-subtrees)
23819 (org-paste-subtree nil nil 'for-yank)
23820 (call-interactively command))
23822 (setq end (point))
23823 (goto-char beg)
23824 (when (and (bolp) subtreep
23825 (not (setq swallowp
23826 (org-yank-folding-would-swallow-text beg end))))
23827 (org-with-limited-levels
23828 (or (looking-at org-outline-regexp)
23829 (re-search-forward org-outline-regexp-bol end t))
23830 (while (and (< (point) end) (looking-at org-outline-regexp))
23831 (hide-subtree)
23832 (org-cycle-show-empty-lines 'folded)
23833 (condition-case nil
23834 (outline-forward-same-level 1)
23835 (error (goto-char end))))))
23836 (when swallowp
23837 (message
23838 "Inserted text not folded because that would swallow text"))
23840 (goto-char end)
23841 (skip-chars-forward " \t\n\r")
23842 (beginning-of-line 1)
23843 (push-mark beg 'nomsg)))
23844 ((and subtreep org-yank-adjusted-subtrees)
23845 (let ((beg (point-at-bol)))
23846 (org-paste-subtree nil nil 'for-yank)
23847 (push-mark beg 'nomsg)))
23849 (call-interactively command))))))
23851 (defun org-yank-folding-would-swallow-text (beg end)
23852 "Would hide-subtree at BEG swallow any text after END?"
23853 (let (level)
23854 (org-with-limited-levels
23855 (save-excursion
23856 (goto-char beg)
23857 (when (or (looking-at org-outline-regexp)
23858 (re-search-forward org-outline-regexp-bol end t))
23859 (setq level (org-outline-level)))
23860 (goto-char end)
23861 (skip-chars-forward " \t\r\n\v\f")
23862 (if (or (eobp)
23863 (and (bolp) (looking-at org-outline-regexp)
23864 (<= (org-outline-level) level)))
23865 nil ; Nothing would be swallowed
23866 t))))) ; something would swallow
23868 (define-key org-mode-map "\C-y" 'org-yank)
23870 (defun org-truely-invisible-p ()
23871 "Check if point is at a character currently not visible.
23872 This version does not only check the character property, but also
23873 `visible-mode'."
23874 ;; Early versions of noutline don't have `outline-invisible-p'.
23875 (if (org-bound-and-true-p visible-mode)
23877 (outline-invisible-p)))
23879 (defun org-invisible-p2 ()
23880 "Check if point is at a character currently not visible."
23881 (save-excursion
23882 (if (and (eolp) (not (bobp))) (backward-char 1))
23883 ;; Early versions of noutline don't have `outline-invisible-p'.
23884 (outline-invisible-p)))
23886 (defun org-back-to-heading (&optional invisible-ok)
23887 "Call `outline-back-to-heading', but provide a better error message."
23888 (condition-case nil
23889 (outline-back-to-heading invisible-ok)
23890 (error (error "Before first headline at position %d in buffer %s"
23891 (point) (current-buffer)))))
23893 (defun org-before-first-heading-p ()
23894 "Before first heading?"
23895 (save-excursion
23896 (end-of-line)
23897 (null (re-search-backward org-outline-regexp-bol nil t))))
23899 (defun org-at-heading-p (&optional ignored)
23900 (outline-on-heading-p t))
23901 ;; Compatibility alias with Org versions < 7.8.03
23902 (defalias 'org-on-heading-p 'org-at-heading-p)
23904 (defun org-in-commented-heading-p (&optional no-inheritance)
23905 "Non-nil if point is under a commented heading.
23906 This function also checks ancestors of the current headline,
23907 unless optional argument NO-INHERITANCE is non-nil."
23908 (cond
23909 ((org-before-first-heading-p) nil)
23910 ((let ((headline (nth 4 (org-heading-components))))
23911 (and headline
23912 (let ((case-fold-search nil))
23913 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23914 headline)))))
23915 (no-inheritance nil)
23917 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23919 (defun org-at-comment-p nil
23920 "Is cursor in a commented line?"
23921 (save-excursion
23922 (save-match-data
23923 (beginning-of-line)
23924 (looking-at "^[ \t]*# "))))
23926 (defun org-at-drawer-p nil
23927 "Is cursor at a drawer keyword?"
23928 (save-excursion
23929 (move-beginning-of-line 1)
23930 (looking-at org-drawer-regexp)))
23932 (defun org-at-block-p nil
23933 "Is cursor at a block keyword?"
23934 (save-excursion
23935 (move-beginning-of-line 1)
23936 (looking-at org-block-regexp)))
23938 (defun org-point-at-end-of-empty-headline ()
23939 "If point is at the end of an empty headline, return t, else nil.
23940 If the heading only contains a TODO keyword, it is still still considered
23941 empty."
23942 (and (looking-at "[ \t]*$")
23943 (when org-todo-line-regexp
23944 (save-excursion
23945 (beginning-of-line 1)
23946 (let ((case-fold-search nil))
23947 (looking-at org-todo-line-regexp)
23948 (string= (match-string 3) ""))))))
23950 (defun org-at-heading-or-item-p ()
23951 (or (org-at-heading-p) (org-at-item-p)))
23953 (defun org-at-target-p ()
23954 (or (org-in-regexp org-radio-target-regexp)
23955 (org-in-regexp org-target-regexp)))
23956 ;; Compatibility alias with Org versions < 7.8.03
23957 (defalias 'org-on-target-p 'org-at-target-p)
23959 (defun org-up-heading-all (arg)
23960 "Move to the heading line of which the present line is a subheading.
23961 This function considers both visible and invisible heading lines.
23962 With argument, move up ARG levels."
23963 (if (fboundp 'outline-up-heading-all)
23964 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23965 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23967 (defun org-up-heading-safe ()
23968 "Move to the heading line of which the present line is a subheading.
23969 This version will not throw an error. It will return the level of the
23970 headline found, or nil if no higher level is found.
23972 Also, this function will be a lot faster than `outline-up-heading',
23973 because it relies on stars being the outline starters. This can really
23974 make a significant difference in outlines with very many siblings."
23975 (when (ignore-errors (org-back-to-heading t))
23976 (let ((level-up (1- (funcall outline-level))))
23977 (and (> level-up 0)
23978 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23979 (funcall outline-level)))))
23981 (defun org-first-sibling-p ()
23982 "Is this heading the first child of its parents?"
23983 (interactive)
23984 (let ((re org-outline-regexp-bol)
23985 level l)
23986 (unless (org-at-heading-p t)
23987 (user-error "Not at a heading"))
23988 (setq level (funcall outline-level))
23989 (save-excursion
23990 (if (not (re-search-backward re nil t))
23992 (setq l (funcall outline-level))
23993 (< l level)))))
23995 (defun org-goto-sibling (&optional previous)
23996 "Goto the next sibling, even if it is invisible.
23997 When PREVIOUS is set, go to the previous sibling instead. Returns t
23998 when a sibling was found. When none is found, return nil and don't
23999 move point."
24000 (let ((fun (if previous 're-search-backward 're-search-forward))
24001 (pos (point))
24002 (re org-outline-regexp-bol)
24003 level l)
24004 (when (ignore-errors (org-back-to-heading t))
24005 (setq level (funcall outline-level))
24006 (catch 'exit
24007 (or previous (forward-char 1))
24008 (while (funcall fun re nil t)
24009 (setq l (funcall outline-level))
24010 (when (< l level) (goto-char pos) (throw 'exit nil))
24011 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24012 (goto-char pos)
24013 nil))))
24015 (defun org-show-siblings ()
24016 "Show all siblings of the current headline."
24017 (save-excursion
24018 (while (org-goto-sibling) (org-flag-heading nil)))
24019 (save-excursion
24020 (while (org-goto-sibling 'previous)
24021 (org-flag-heading nil))))
24023 (defun org-goto-first-child ()
24024 "Goto the first child, even if it is invisible.
24025 Return t when a child was found. Otherwise don't move point and
24026 return nil."
24027 (let (level (pos (point)) (re org-outline-regexp-bol))
24028 (when (ignore-errors (org-back-to-heading t))
24029 (setq level (outline-level))
24030 (forward-char 1)
24031 (if (and (re-search-forward re nil t) (> (outline-level) level))
24032 (progn (goto-char (match-beginning 0)) t)
24033 (goto-char pos) nil))))
24035 (defun org-show-hidden-entry ()
24036 "Show an entry where even the heading is hidden."
24037 (save-excursion
24038 (org-show-entry)))
24040 (defun org-flag-heading (flag &optional entry)
24041 "Flag the current heading. FLAG non-nil means make invisible.
24042 When ENTRY is non-nil, show the entire entry."
24043 (save-excursion
24044 (org-back-to-heading t)
24045 ;; Check if we should show the entire entry
24046 (if entry
24047 (progn
24048 (org-show-entry)
24049 (save-excursion
24050 (and (outline-next-heading)
24051 (org-flag-heading nil))))
24052 (outline-flag-region (max (point-min) (1- (point)))
24053 (save-excursion (outline-end-of-heading) (point))
24054 flag))))
24056 (defun org-get-next-sibling ()
24057 "Move to next heading of the same level, and return point.
24058 If there is no such heading, return nil.
24059 This is like outline-next-sibling, but invisible headings are ok."
24060 (let ((level (funcall outline-level)))
24061 (outline-next-heading)
24062 (while (and (not (eobp)) (> (funcall outline-level) level))
24063 (outline-next-heading))
24064 (if (or (eobp) (< (funcall outline-level) level))
24066 (point))))
24068 (defun org-get-last-sibling ()
24069 "Move to previous heading of the same level, and return point.
24070 If there is no such heading, return nil."
24071 (let ((opoint (point))
24072 (level (funcall outline-level)))
24073 (outline-previous-heading)
24074 (when (and (/= (point) opoint) (outline-on-heading-p t))
24075 (while (and (> (funcall outline-level) level)
24076 (not (bobp)))
24077 (outline-previous-heading))
24078 (if (< (funcall outline-level) level)
24080 (point)))))
24082 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24083 "Goto to the end of a subtree."
24084 ;; This contains an exact copy of the original function, but it uses
24085 ;; `org-back-to-heading', to make it work also in invisible
24086 ;; trees. And is uses an invisible-ok argument.
24087 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24088 ;; Furthermore, when used inside Org, finding the end of a large subtree
24089 ;; with many children and grandchildren etc, this can be much faster
24090 ;; than the outline version.
24091 (org-back-to-heading invisible-ok)
24092 (let ((first t)
24093 (level (funcall outline-level)))
24094 (if (and (derived-mode-p 'org-mode) (< level 1000))
24095 ;; A true heading (not a plain list item), in Org-mode
24096 ;; This means we can easily find the end by looking
24097 ;; only for the right number of stars. Using a regexp to do
24098 ;; this is so much faster than using a Lisp loop.
24099 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24100 (forward-char 1)
24101 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24102 ;; something else, do it the slow way
24103 (while (and (not (eobp))
24104 (or first (> (funcall outline-level) level)))
24105 (setq first nil)
24106 (outline-next-heading)))
24107 (unless to-heading
24108 (if (memq (preceding-char) '(?\n ?\^M))
24109 (progn
24110 ;; Go to end of line before heading
24111 (forward-char -1)
24112 (if (memq (preceding-char) '(?\n ?\^M))
24113 ;; leave blank line before heading
24114 (forward-char -1))))))
24115 (point))
24117 (defun org-end-of-meta-data (&optional full)
24118 "Skip planning line and properties drawer in current entry.
24119 When optional argument FULL is non-nil, also skip empty lines,
24120 clocking lines and regular drawers at the beginning of the
24121 entry."
24122 (org-back-to-heading t)
24123 (forward-line)
24124 (when (org-looking-at-p org-planning-line-re) (forward-line))
24125 (when (looking-at org-property-drawer-re)
24126 (goto-char (match-end 0))
24127 (forward-line))
24128 (when (and full (not (org-at-heading-p)))
24129 (catch 'exit
24130 (let ((end (save-excursion (outline-next-heading) (point)))
24131 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24132 (while (not (eobp))
24133 (cond ((org-looking-at-p org-drawer-regexp)
24134 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24135 (forward-line)
24136 (throw 'exit t)))
24137 ((org-looking-at-p re) (forward-line))
24138 (t (throw 'exit t))))))))
24140 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24141 "Move forward to the ARG'th subheading at same level as this one.
24142 Stop at the first and last subheadings of a superior heading.
24143 Normally this only looks at visible headings, but when INVISIBLE-OK is
24144 non-nil it will also look at invisible ones."
24145 (interactive "p")
24146 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24147 (if (and arg (< arg 0))
24148 (goto-char (point-min))
24149 (outline-next-heading))
24150 (org-at-heading-p)
24151 (let ((level (- (match-end 0) (match-beginning 0) 1))
24152 (f (if (and arg (< arg 0))
24153 're-search-backward
24154 're-search-forward))
24155 (count (if arg (abs arg) 1))
24156 (result (point)))
24157 (while (and (prog1 (> count 0)
24158 (forward-char (if (and arg (< arg 0)) -1 1)))
24159 (funcall f org-outline-regexp-bol nil 'move))
24160 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24161 (cond ((< l level) (setq count 0))
24162 ((and (= l level)
24163 (or invisible-ok
24164 (progn
24165 (goto-char (line-beginning-position))
24166 (not (outline-invisible-p)))))
24167 (setq count (1- count))
24168 (when (eq l level)
24169 (setq result (point)))))))
24170 (goto-char result))
24171 (beginning-of-line 1)))
24173 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24174 "Move backward to the ARG'th subheading at same level as this one.
24175 Stop at the first and last subheadings of a superior heading."
24176 (interactive "p")
24177 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24179 (defun org-next-visible-heading (arg)
24180 "Move to the next visible heading.
24182 This function wraps `outline-next-visible-heading' with
24183 `org-with-limited-levels' in order to skip over inline tasks and
24184 respect customization of `org-odd-levels-only'."
24185 (interactive "p")
24186 (org-with-limited-levels
24187 (outline-next-visible-heading arg)))
24189 (defun org-previous-visible-heading (arg)
24190 "Move to the next visible heading.
24192 This function wraps `outline-previous-visible-heading' with
24193 `org-with-limited-levels' in order to skip over inline tasks and
24194 respect customization of `org-odd-levels-only'."
24195 (interactive "p")
24196 (org-with-limited-levels
24197 (outline-previous-visible-heading arg)))
24199 (defun org-next-block (arg &optional backward block-regexp)
24200 "Jump to the next block.
24201 With a prefix argument ARG, jump forward ARG many source blocks.
24202 When BACKWARD is non-nil, jump to the previous block.
24203 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24204 (interactive "p")
24205 (let ((re (or block-regexp org-block-regexp))
24206 (re-search-fn (or (and backward 're-search-backward)
24207 're-search-forward)))
24208 (if (looking-at re) (forward-char 1))
24209 (condition-case nil
24210 (funcall re-search-fn re nil nil arg)
24211 (error (user-error "No %s code blocks"
24212 (if backward "previous" "further" ))))
24213 (goto-char (match-beginning 0)) (org-show-context)))
24215 (defun org-previous-block (arg &optional block-regexp)
24216 "Jump to the previous block.
24217 With a prefix argument ARG, jump backward ARG many source blocks.
24218 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24219 (interactive "p")
24220 (org-next-block arg t block-regexp))
24222 (defun org-forward-paragraph ()
24223 "Move forward to beginning of next paragraph or equivalent.
24225 The function moves point to the beginning of the next visible
24226 structural element, which can be a paragraph, a table, a list
24227 item, etc. It also provides some special moves for convenience:
24229 - On an affiliated keyword, jump to the beginning of the
24230 relative element.
24231 - On an item or a footnote definition, move to the second
24232 element inside, if any.
24233 - On a table or a property drawer, jump after it.
24234 - On a verse or source block, stop after blank lines."
24235 (interactive)
24236 (when (eobp) (user-error "Cannot move further down"))
24237 (let* ((deactivate-mark nil)
24238 (element (org-element-at-point))
24239 (type (org-element-type element))
24240 (post-affiliated (org-element-property :post-affiliated element))
24241 (contents-begin (org-element-property :contents-begin element))
24242 (contents-end (org-element-property :contents-end element))
24243 (end (let ((end (org-element-property :end element)) (parent element))
24244 (while (and (setq parent (org-element-property :parent parent))
24245 (= (org-element-property :contents-end parent) end))
24246 (setq end (org-element-property :end parent)))
24247 end)))
24248 (cond ((not element)
24249 (skip-chars-forward " \r\t\n")
24250 (or (eobp) (beginning-of-line)))
24251 ;; On affiliated keywords, move to element's beginning.
24252 ((< (point) post-affiliated)
24253 (goto-char post-affiliated))
24254 ;; At a table row, move to the end of the table. Similarly,
24255 ;; at a node property, move to the end of the property
24256 ;; drawer.
24257 ((memq type '(node-property table-row))
24258 (goto-char (org-element-property
24259 :end (org-element-property :parent element))))
24260 ((memq type '(property-drawer table)) (goto-char end))
24261 ;; Consider blank lines as separators in verse and source
24262 ;; blocks to ease editing.
24263 ((memq type '(src-block verse-block))
24264 (when (eq type 'src-block)
24265 (setq contents-end
24266 (save-excursion (goto-char end)
24267 (skip-chars-backward " \r\t\n")
24268 (line-beginning-position))))
24269 (beginning-of-line)
24270 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24271 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24272 (goto-char end)
24273 (skip-chars-forward " \r\t\n")
24274 (if (= (point) contents-end) (goto-char end)
24275 (beginning-of-line))))
24276 ;; With no contents, just skip element.
24277 ((not contents-begin) (goto-char end))
24278 ;; If contents are invisible, skip the element altogether.
24279 ((outline-invisible-p (line-end-position))
24280 (case type
24281 (headline
24282 (org-with-limited-levels (outline-next-visible-heading 1)))
24283 ;; At a plain list, make sure we move to the next item
24284 ;; instead of skipping the whole list.
24285 (plain-list (forward-char)
24286 (org-forward-paragraph))
24287 (otherwise (goto-char end))))
24288 ((>= (point) contents-end) (goto-char end))
24289 ((>= (point) contents-begin)
24290 ;; This can only happen on paragraphs and plain lists.
24291 (case type
24292 (paragraph (goto-char end))
24293 ;; At a plain list, try to move to second element in
24294 ;; first item, if possible.
24295 (plain-list (end-of-line)
24296 (org-forward-paragraph))))
24297 ;; When contents start on the middle of a line (e.g. in
24298 ;; items and footnote definitions), try to reach first
24299 ;; element starting after current line.
24300 ((> (line-end-position) contents-begin)
24301 (end-of-line)
24302 (org-forward-paragraph))
24303 (t (goto-char contents-begin)))))
24305 (defun org-backward-paragraph ()
24306 "Move backward to start of previous paragraph or equivalent.
24308 The function moves point to the beginning of the current
24309 structural element, which can be a paragraph, a table, a list
24310 item, etc., or to the beginning of the previous visible one if
24311 point is already there. It also provides some special moves for
24312 convenience:
24314 - On an affiliated keyword, jump to the first one.
24315 - On a table or a property drawer, move to its beginning.
24316 - On a verse or source block, stop before blank lines."
24317 (interactive)
24318 (when (bobp) (user-error "Cannot move further up"))
24319 (let* ((deactivate-mark nil)
24320 (element (org-element-at-point))
24321 (type (org-element-type element))
24322 (contents-begin (org-element-property :contents-begin element))
24323 (contents-end (org-element-property :contents-end element))
24324 (post-affiliated (org-element-property :post-affiliated element))
24325 (begin (org-element-property :begin element)))
24326 (cond
24327 ((not element) (goto-char (point-min)))
24328 ((= (point) begin)
24329 (backward-char)
24330 (org-backward-paragraph))
24331 ((<= (point) post-affiliated) (goto-char begin))
24332 ((memq type '(node-property table-row))
24333 (goto-char (org-element-property
24334 :post-affiliated (org-element-property :parent element))))
24335 ((memq type '(property-drawer table)) (goto-char begin))
24336 ((memq type '(src-block verse-block))
24337 (when (eq type 'src-block)
24338 (setq contents-begin
24339 (save-excursion (goto-char begin) (forward-line) (point))))
24340 (if (= (point) contents-begin) (goto-char post-affiliated)
24341 ;; Inside a verse block, see blank lines as paragraph
24342 ;; separators.
24343 (let ((origin (point)))
24344 (skip-chars-backward " \r\t\n" contents-begin)
24345 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24346 (skip-chars-forward " \r\t\n" origin)
24347 (if (= (point) origin) (goto-char contents-begin)
24348 (beginning-of-line))))))
24349 ((not contents-begin) (goto-char (or post-affiliated begin)))
24350 ((eq type 'paragraph)
24351 (goto-char contents-begin)
24352 ;; When at first paragraph in an item or a footnote definition,
24353 ;; move directly to beginning of line.
24354 (let ((parent-contents
24355 (org-element-property
24356 :contents-begin (org-element-property :parent element))))
24357 (when (and parent-contents (= parent-contents contents-begin))
24358 (beginning-of-line))))
24359 ;; At the end of a greater element, move to the beginning of the
24360 ;; last element within.
24361 ((>= (point) contents-end)
24362 (goto-char (1- contents-end))
24363 (org-backward-paragraph))
24364 (t (goto-char (or post-affiliated begin))))
24365 ;; Ensure we never leave point invisible.
24366 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24368 (defun org-forward-element ()
24369 "Move forward by one element.
24370 Move to the next element at the same level, when possible."
24371 (interactive)
24372 (cond ((eobp) (user-error "Cannot move further down"))
24373 ((org-with-limited-levels (org-at-heading-p))
24374 (let ((origin (point)))
24375 (goto-char (org-end-of-subtree nil t))
24376 (unless (org-with-limited-levels (org-at-heading-p))
24377 (goto-char origin)
24378 (user-error "Cannot move further down"))))
24380 (let* ((elem (org-element-at-point))
24381 (end (org-element-property :end elem))
24382 (parent (org-element-property :parent elem)))
24383 (cond ((and parent (= (org-element-property :contents-end parent) end))
24384 (goto-char (org-element-property :end parent)))
24385 ((integer-or-marker-p end) (goto-char end))
24386 (t (message "No element at point")))))))
24388 (defun org-backward-element ()
24389 "Move backward by one element.
24390 Move to the previous element at the same level, when possible."
24391 (interactive)
24392 (cond ((bobp) (user-error "Cannot move further up"))
24393 ((org-with-limited-levels (org-at-heading-p))
24394 ;; At a headline, move to the previous one, if any, or stay
24395 ;; here.
24396 (let ((origin (point)))
24397 (org-with-limited-levels (org-backward-heading-same-level 1))
24398 ;; When current headline has no sibling above, move to its
24399 ;; parent.
24400 (when (= (point) origin)
24401 (or (org-with-limited-levels (org-up-heading-safe))
24402 (progn (goto-char origin)
24403 (user-error "Cannot move further up"))))))
24405 (let* ((elem (org-element-at-point))
24406 (beg (org-element-property :begin elem)))
24407 (cond
24408 ;; Move to beginning of current element if point isn't
24409 ;; there already.
24410 ((null beg) (message "No element at point"))
24411 ((/= (point) beg) (goto-char beg))
24412 (t (goto-char beg)
24413 (skip-chars-backward " \r\t\n")
24414 (unless (bobp)
24415 (let ((prev (org-element-at-point)))
24416 (goto-char (org-element-property :begin prev))
24417 (while (and (setq prev (org-element-property :parent prev))
24418 (<= (org-element-property :end prev) beg))
24419 (goto-char (org-element-property :begin prev)))))))))))
24421 (defun org-up-element ()
24422 "Move to upper element."
24423 (interactive)
24424 (if (org-with-limited-levels (org-at-heading-p))
24425 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24426 (let* ((elem (org-element-at-point))
24427 (parent (org-element-property :parent elem)))
24428 (if parent (goto-char (org-element-property :begin parent))
24429 (if (org-with-limited-levels (org-before-first-heading-p))
24430 (user-error "No surrounding element")
24431 (org-with-limited-levels (org-back-to-heading)))))))
24433 (defvar org-element-greater-elements)
24434 (defun org-down-element ()
24435 "Move to inner element."
24436 (interactive)
24437 (let ((element (org-element-at-point)))
24438 (cond
24439 ((memq (org-element-type element) '(plain-list table))
24440 (goto-char (org-element-property :contents-begin element))
24441 (forward-char))
24442 ((memq (org-element-type element) org-element-greater-elements)
24443 ;; If contents are hidden, first disclose them.
24444 (when (outline-invisible-p (line-end-position)) (org-cycle))
24445 (goto-char (or (org-element-property :contents-begin element)
24446 (user-error "No content for this element"))))
24447 (t (user-error "No inner element")))))
24449 (defun org-drag-element-backward ()
24450 "Move backward element at point."
24451 (interactive)
24452 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24453 (let* ((elem (org-element-at-point))
24454 (prev-elem
24455 (save-excursion
24456 (goto-char (org-element-property :begin elem))
24457 (skip-chars-backward " \r\t\n")
24458 (unless (bobp)
24459 (let* ((beg (org-element-property :begin elem))
24460 (prev (org-element-at-point))
24461 (up prev))
24462 (while (and (setq up (org-element-property :parent up))
24463 (<= (org-element-property :end up) beg))
24464 (setq prev up))
24465 prev)))))
24466 ;; Error out if no previous element or previous element is
24467 ;; a parent of the current one.
24468 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24469 (user-error "Cannot drag element backward")
24470 (let ((pos (point)))
24471 (org-element-swap-A-B prev-elem elem)
24472 (goto-char (+ (org-element-property :begin prev-elem)
24473 (- pos (org-element-property :begin elem)))))))))
24475 (defun org-drag-element-forward ()
24476 "Move forward element at point."
24477 (interactive)
24478 (let* ((pos (point))
24479 (elem (org-element-at-point)))
24480 (when (= (point-max) (org-element-property :end elem))
24481 (user-error "Cannot drag element forward"))
24482 (goto-char (org-element-property :end elem))
24483 (let ((next-elem (org-element-at-point)))
24484 (when (or (org-element-nested-p elem next-elem)
24485 (and (eq (org-element-type next-elem) 'headline)
24486 (not (eq (org-element-type elem) 'headline))))
24487 (goto-char pos)
24488 (user-error "Cannot drag element forward"))
24489 ;; Compute new position of point: it's shifted by NEXT-ELEM
24490 ;; body's length (without final blanks) and by the length of
24491 ;; blanks between ELEM and NEXT-ELEM.
24492 (let ((size-next (- (save-excursion
24493 (goto-char (org-element-property :end next-elem))
24494 (skip-chars-backward " \r\t\n")
24495 (forward-line)
24496 ;; Small correction if buffer doesn't end
24497 ;; with a newline character.
24498 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24499 (org-element-property :begin next-elem)))
24500 (size-blank (- (org-element-property :end elem)
24501 (save-excursion
24502 (goto-char (org-element-property :end elem))
24503 (skip-chars-backward " \r\t\n")
24504 (forward-line)
24505 (point)))))
24506 (org-element-swap-A-B elem next-elem)
24507 (goto-char (+ pos size-next size-blank))))))
24509 (defun org-drag-line-forward (arg)
24510 "Drag the line at point ARG lines forward."
24511 (interactive "p")
24512 (dotimes (n (abs arg))
24513 (let ((c (current-column)))
24514 (if (< 0 arg)
24515 (progn
24516 (beginning-of-line 2)
24517 (transpose-lines 1)
24518 (beginning-of-line 0))
24519 (transpose-lines 1)
24520 (beginning-of-line -1))
24521 (org-move-to-column c))))
24523 (defun org-drag-line-backward (arg)
24524 "Drag the line at point ARG lines backward."
24525 (interactive "p")
24526 (org-drag-line-forward (- arg)))
24528 (defun org-mark-element ()
24529 "Put point at beginning of this element, mark at end.
24531 Interactively, if this command is repeated or (in Transient Mark
24532 mode) if the mark is active, it marks the next element after the
24533 ones already marked."
24534 (interactive)
24535 (let (deactivate-mark)
24536 (if (and (org-called-interactively-p 'any)
24537 (or (and (eq last-command this-command) (mark t))
24538 (and transient-mark-mode mark-active)))
24539 (set-mark
24540 (save-excursion
24541 (goto-char (mark))
24542 (goto-char (org-element-property :end (org-element-at-point)))))
24543 (let ((element (org-element-at-point)))
24544 (end-of-line)
24545 (push-mark (org-element-property :end element) t t)
24546 (goto-char (org-element-property :begin element))))))
24548 (defun org-narrow-to-element ()
24549 "Narrow buffer to current element."
24550 (interactive)
24551 (let ((elem (org-element-at-point)))
24552 (cond
24553 ((eq (car elem) 'headline)
24554 (narrow-to-region
24555 (org-element-property :begin elem)
24556 (org-element-property :end elem)))
24557 ((memq (car elem) org-element-greater-elements)
24558 (narrow-to-region
24559 (org-element-property :contents-begin elem)
24560 (org-element-property :contents-end elem)))
24562 (narrow-to-region
24563 (org-element-property :begin elem)
24564 (org-element-property :end elem))))))
24566 (defun org-transpose-element ()
24567 "Transpose current and previous elements, keeping blank lines between.
24568 Point is moved after both elements."
24569 (interactive)
24570 (org-skip-whitespace)
24571 (let ((end (org-element-property :end (org-element-at-point))))
24572 (org-drag-element-backward)
24573 (goto-char end)))
24575 (defun org-unindent-buffer ()
24576 "Un-indent the visible part of the buffer.
24577 Relative indentation (between items, inside blocks, etc.) isn't
24578 modified."
24579 (interactive)
24580 (unless (eq major-mode 'org-mode)
24581 (user-error "Cannot un-indent a buffer not in Org mode"))
24582 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24583 unindent-tree ; For byte-compiler.
24584 (unindent-tree
24585 (function
24586 (lambda (contents)
24587 (mapc
24588 (lambda (element)
24589 (if (memq (org-element-type element) '(headline section))
24590 (funcall unindent-tree (org-element-contents element))
24591 (save-excursion
24592 (save-restriction
24593 (narrow-to-region
24594 (org-element-property :begin element)
24595 (org-element-property :end element))
24596 (org-do-remove-indentation)))))
24597 (reverse contents))))))
24598 (funcall unindent-tree (org-element-contents parse-tree))))
24600 (defun org-show-subtree ()
24601 "Show everything after this heading at deeper levels."
24602 (interactive)
24603 (outline-flag-region
24604 (point)
24605 (save-excursion
24606 (org-end-of-subtree t t))
24607 nil))
24609 (defun org-show-entry ()
24610 "Show the body directly following this heading.
24611 Show the heading too, if it is currently invisible."
24612 (interactive)
24613 (save-excursion
24614 (ignore-errors
24615 (org-back-to-heading t)
24616 (outline-flag-region
24617 (max (point-min) (1- (point)))
24618 (save-excursion
24619 (if (re-search-forward
24620 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24621 (match-beginning 1)
24622 (point-max)))
24623 nil)
24624 (org-cycle-hide-drawers 'children))))
24626 (defun org-make-options-regexp (kwds &optional extra)
24627 "Make a regular expression for keyword lines.
24628 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24629 when non-nil, is a regexp matching keywords names."
24630 (concat "^[ \t]*#\\+\\("
24631 (regexp-opt kwds)
24632 (and extra (concat (and kwds "\\|") extra))
24633 "\\):[ \t]*\\(.*\\)"))
24635 ;; Make isearch reveal the necessary context
24636 (defun org-isearch-end ()
24637 "Reveal context after isearch exits."
24638 (when isearch-success ; only if search was successful
24639 (if (featurep 'xemacs)
24640 ;; Under XEmacs, the hook is run in the correct place,
24641 ;; we directly show the context.
24642 (org-show-context 'isearch)
24643 ;; In Emacs the hook runs *before* restoring the overlays.
24644 ;; So we have to use a one-time post-command-hook to do this.
24645 ;; (Emacs 22 has a special variable, see function `org-mode')
24646 (unless (and (boundp 'isearch-mode-end-hook-quit)
24647 isearch-mode-end-hook-quit)
24648 ;; Only when the isearch was not quitted.
24649 (org-add-hook 'post-command-hook 'org-isearch-post-command
24650 'append 'local)))))
24652 (defun org-isearch-post-command ()
24653 "Remove self from hook, and show context."
24654 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24655 (org-show-context 'isearch))
24658 ;;;; Integration with and fixes for other packages
24660 ;;; Imenu support
24662 (defvar org-imenu-markers nil
24663 "All markers currently used by Imenu.")
24664 (make-variable-buffer-local 'org-imenu-markers)
24666 (defun org-imenu-new-marker (&optional pos)
24667 "Return a new marker for use by Imenu, and remember the marker."
24668 (let ((m (make-marker)))
24669 (move-marker m (or pos (point)))
24670 (push m org-imenu-markers)
24673 (defun org-imenu-get-tree ()
24674 "Produce the index for Imenu."
24675 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24676 (setq org-imenu-markers nil)
24677 (let* ((n org-imenu-depth)
24678 (re (concat "^" (org-get-limited-outline-regexp)))
24679 (subs (make-vector (1+ n) nil))
24680 (last-level 0)
24681 m level head0 head)
24682 (save-excursion
24683 (save-restriction
24684 (widen)
24685 (goto-char (point-max))
24686 (while (re-search-backward re nil t)
24687 (setq level (org-reduced-level (funcall outline-level)))
24688 (when (and (<= level n)
24689 (looking-at org-complex-heading-regexp)
24690 (setq head0 (org-match-string-no-properties 4)))
24691 (setq head (org-link-display-format head0)
24692 m (org-imenu-new-marker))
24693 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24694 (if (>= level last-level)
24695 (push (cons head m) (aref subs level))
24696 (push (cons head (aref subs (1+ level))) (aref subs level))
24697 (loop for i from (1+ level) to n do (aset subs i nil)))
24698 (setq last-level level)))))
24699 (aref subs 1)))
24701 (eval-after-load "imenu"
24702 '(progn
24703 (add-hook 'imenu-after-jump-hook
24704 (lambda ()
24705 (if (derived-mode-p 'org-mode)
24706 (org-show-context 'org-goto))))))
24708 (defun org-link-display-format (link)
24709 "Replace a link with its the description.
24710 If there is no description, use the link target."
24711 (save-match-data
24712 (if (string-match org-bracket-link-analytic-regexp link)
24713 (replace-match (if (match-end 5)
24714 (match-string 5 link)
24715 (concat (match-string 1 link)
24716 (match-string 3 link)))
24717 nil t link)
24718 link)))
24720 (defun org-toggle-link-display ()
24721 "Toggle the literal or descriptive display of links."
24722 (interactive)
24723 (if org-descriptive-links
24724 (progn (org-remove-from-invisibility-spec '(org-link))
24725 (org-restart-font-lock)
24726 (setq org-descriptive-links nil))
24727 (progn (add-to-invisibility-spec '(org-link))
24728 (org-restart-font-lock)
24729 (setq org-descriptive-links t))))
24731 ;; Speedbar support
24733 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24734 "Overlay marking the agenda restriction line in speedbar.")
24735 (overlay-put org-speedbar-restriction-lock-overlay
24736 'face 'org-agenda-restriction-lock)
24737 (overlay-put org-speedbar-restriction-lock-overlay
24738 'help-echo "Agendas are currently limited to this item.")
24739 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24741 (defun org-speedbar-set-agenda-restriction ()
24742 "Restrict future agenda commands to the location at point in speedbar.
24743 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24744 (interactive)
24745 (require 'org-agenda)
24746 (let (p m tp np dir txt)
24747 (cond
24748 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24749 'org-imenu t))
24750 (setq m (get-text-property p 'org-imenu-marker))
24751 (with-current-buffer (marker-buffer m)
24752 (goto-char m)
24753 (org-agenda-set-restriction-lock 'subtree)))
24754 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24755 'speedbar-function 'speedbar-find-file))
24756 (setq tp (previous-single-property-change
24757 (1+ p) 'speedbar-function)
24758 np (next-single-property-change
24759 tp 'speedbar-function)
24760 dir (speedbar-line-directory)
24761 txt (buffer-substring-no-properties (or tp (point-min))
24762 (or np (point-max))))
24763 (with-current-buffer (find-file-noselect
24764 (let ((default-directory dir))
24765 (expand-file-name txt)))
24766 (unless (derived-mode-p 'org-mode)
24767 (user-error "Cannot restrict to non-Org-mode file"))
24768 (org-agenda-set-restriction-lock 'file)))
24769 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24770 (move-overlay org-speedbar-restriction-lock-overlay
24771 (point-at-bol) (point-at-eol))
24772 (setq current-prefix-arg nil)
24773 (org-agenda-maybe-redo)))
24775 (defvar speedbar-file-key-map)
24776 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24777 (eval-after-load "speedbar"
24778 '(progn
24779 (speedbar-add-supported-extension ".org")
24780 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24781 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24782 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24783 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24784 (add-hook 'speedbar-visiting-tag-hook
24785 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24787 ;;; Fixes and Hacks for problems with other packages
24789 (defun org--flyspell-object-check-p (element)
24790 "Non-nil when Flyspell can check object at point.
24791 ELEMENT is the element at point."
24792 (let ((object (save-excursion
24793 (when (org-looking-at-p "\\>") (backward-char))
24794 (org-element-context element))))
24795 (case (org-element-type object)
24796 ;; Prevent checks in links due to keybinding conflict with
24797 ;; Flyspell.
24798 ((code entity export-snippet inline-babel-call
24799 inline-src-block line-break latex-fragment link macro
24800 statistics-cookie target timestamp verbatim)
24801 nil)
24802 (footnote-reference
24803 ;; Only in inline footnotes, within the definition.
24804 (and (eq (org-element-property :type object) 'inline)
24805 (< (save-excursion
24806 (goto-char (org-element-property :begin object))
24807 (search-forward ":" nil t 2))
24808 (point))))
24809 (otherwise t))))
24811 (defun org-mode-flyspell-verify ()
24812 "Function used for `flyspell-generic-check-word-predicate'."
24813 (if (org-at-heading-p)
24814 ;; At a headline or an inlinetask, check title only. This is
24815 ;; faster than relying on `org-element-at-point'.
24816 (and (save-excursion (beginning-of-line)
24817 (and (let ((case-fold-search t))
24818 (not (looking-at "\\*+ END[ \t]*$")))
24819 (looking-at org-complex-heading-regexp)))
24820 (match-beginning 4)
24821 (>= (point) (match-beginning 4))
24822 (or (not (match-beginning 5))
24823 (< (point) (match-beginning 5))))
24824 (let* ((element (org-element-at-point))
24825 (post-affiliated (org-element-property :post-affiliated element)))
24826 (cond
24827 ;; Ignore checks in all affiliated keywords but captions.
24828 ((< (point) post-affiliated)
24829 (and (save-excursion
24830 (beginning-of-line)
24831 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24832 (> (point) (match-end 0))
24833 (org--flyspell-object-check-p element)))
24834 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24835 ((let ((log (org-log-into-drawer)))
24836 (and log
24837 (let ((drawer (org-element-lineage element '(drawer))))
24838 (and drawer
24839 (eq (compare-strings
24840 log nil nil
24841 (org-element-property :drawer-name drawer) nil nil t)
24842 t)))))
24843 nil)
24845 (case (org-element-type element)
24846 ((comment quote-section) t)
24847 (comment-block
24848 ;; Allow checks between block markers, not on them.
24849 (and (> (line-beginning-position) post-affiliated)
24850 (save-excursion
24851 (end-of-line)
24852 (skip-chars-forward " \r\t\n")
24853 (< (point) (org-element-property :end element)))))
24854 ;; Arbitrary list of keywords where checks are meaningful.
24855 ;; Make sure point is on the value part of the element.
24856 (keyword
24857 (and (member (org-element-property :key element)
24858 '("DESCRIPTION" "TITLE"))
24859 (save-excursion
24860 (search-backward ":" (line-beginning-position) t))))
24861 ;; Check is globally allowed in paragraphs verse blocks and
24862 ;; table rows (after affiliated keywords) but some objects
24863 ;; must not be affected.
24864 ((paragraph table-row verse-block)
24865 (let ((cbeg (org-element-property :contents-begin element))
24866 (cend (org-element-property :contents-end element)))
24867 (and cbeg (>= (point) cbeg) (< (point) cend)
24868 (org--flyspell-object-check-p element))))))))))
24869 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24871 (defun org-remove-flyspell-overlays-in (beg end)
24872 "Remove flyspell overlays in region."
24873 (and (org-bound-and-true-p flyspell-mode)
24874 (fboundp 'flyspell-delete-region-overlays)
24875 (flyspell-delete-region-overlays beg end)))
24877 (defvar flyspell-delayed-commands)
24878 (eval-after-load "flyspell"
24879 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24881 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24882 (eval-after-load "bookmark"
24883 '(if (boundp 'bookmark-after-jump-hook)
24884 ;; We can use the hook
24885 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24886 ;; Hook not available, use advice
24887 (defadvice bookmark-jump (after org-make-visible activate)
24888 "Make the position visible."
24889 (org-bookmark-jump-unhide))))
24891 ;; Make sure saveplace shows the location if it was hidden
24892 (eval-after-load "saveplace"
24893 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24894 "Make the position visible."
24895 (org-bookmark-jump-unhide)))
24897 ;; Make sure ecb shows the location if it was hidden
24898 (eval-after-load "ecb"
24899 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24900 "Make hierarchy visible when jumping into location from ECB tree buffer."
24901 (if (derived-mode-p 'org-mode)
24902 (org-show-context))))
24904 (defun org-bookmark-jump-unhide ()
24905 "Unhide the current position, to show the bookmark location."
24906 (and (derived-mode-p 'org-mode)
24907 (or (outline-invisible-p)
24908 (save-excursion (goto-char (max (point-min) (1- (point))))
24909 (outline-invisible-p)))
24910 (org-show-context 'bookmark-jump)))
24912 (defun org-mark-jump-unhide ()
24913 "Make the point visible with `org-show-context' after jumping to the mark."
24914 (when (and (derived-mode-p 'org-mode)
24915 (outline-invisible-p))
24916 (org-show-context 'mark-goto)))
24918 (eval-after-load "simple"
24919 '(defadvice pop-to-mark-command (after org-make-visible activate)
24920 "Make the point visible with `org-show-context'."
24921 (org-mark-jump-unhide)))
24923 (eval-after-load "simple"
24924 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24925 "Make the point visible with `org-show-context'."
24926 (org-mark-jump-unhide)))
24928 (eval-after-load "simple"
24929 '(defadvice pop-global-mark (after org-make-visible activate)
24930 "Make the point visible with `org-show-context'."
24931 (org-mark-jump-unhide)))
24933 ;; Make session.el ignore our circular variable
24934 (defvar session-globals-exclude)
24935 (eval-after-load "session"
24936 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24938 ;;;; Finish up
24940 (provide 'org)
24942 (run-hooks 'org-load-hook)
24944 ;;; org.el ends here