Fix parser wrt to defcustom syntax related changes
[org-mode/org-tableheadings.git] / lisp / org.el
blob2fc2404cf6d2899742f1fb99676369b3f2668829
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
186 (defsubst org-uniquify (list)
187 "Non-destructively remove duplicate elements from LIST."
188 (let ((res (copy-sequence list))) (delete-dups res)))
190 (defsubst org-get-at-bol (property)
191 "Get text property PROPERTY at the beginning of line."
192 (get-text-property (point-at-bol) property))
194 (defsubst org-trim (s)
195 "Remove whitespace at the beginning and the end of string S."
196 (replace-regexp-in-string
197 "\\`[ \t\n\r]+" ""
198 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
200 ;; load languages based on value of `org-babel-load-languages'
201 (defvar org-babel-load-languages)
203 ;;;###autoload
204 (defun org-babel-do-load-languages (sym value)
205 "Load the languages defined in `org-babel-load-languages'."
206 (set-default sym value)
207 (mapc (lambda (pair)
208 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
209 (if active
210 (progn
211 (require (intern (concat "ob-" lang))))
212 (progn
213 (funcall 'fmakunbound
214 (intern (concat "org-babel-execute:" lang)))
215 (funcall 'fmakunbound
216 (intern (concat "org-babel-expand-body:" lang)))))))
217 org-babel-load-languages))
219 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
220 ;;;###autoload
221 (defun org-babel-load-file (file &optional compile)
222 "Load Emacs Lisp source code blocks in the Org-mode FILE.
223 This function exports the source code using `org-babel-tangle'
224 and then loads the resulting file using `load-file'. With prefix
225 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
226 file to byte-code before it is loaded."
227 (interactive "fFile to load: \nP")
228 (let* ((age (lambda (file)
229 (float-time
230 (time-subtract (current-time)
231 (nth 5 (or (file-attributes (file-truename file))
232 (file-attributes file)))))))
233 (base-name (file-name-sans-extension file))
234 (exported-file (concat base-name ".el")))
235 ;; tangle if the org-mode file is newer than the elisp file
236 (unless (and (file-exists-p exported-file)
237 (> (funcall age file) (funcall age exported-file)))
238 (setq exported-file
239 (car (org-babel-tangle-file file exported-file "emacs-lisp"))))
240 (message "%s %s"
241 (if compile
242 (progn (byte-compile-file exported-file 'load)
243 "Compiled and loaded")
244 (progn (load-file exported-file) "Loaded"))
245 exported-file)))
247 (defcustom org-babel-load-languages '((emacs-lisp . t))
248 "Languages which can be evaluated in Org-mode buffers.
249 This list can be used to load support for any of the languages
250 below, note that each language will depend on a different set of
251 system executables and/or Emacs modes. When a language is
252 \"loaded\", then code blocks in that language can be evaluated
253 with `org-babel-execute-src-block' bound by default to C-c
254 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
255 be set to remove code block evaluation from the C-c C-c
256 keybinding. By default only Emacs Lisp (which has no
257 requirements) is loaded."
258 :group 'org-babel
259 :set 'org-babel-do-load-languages
260 :version "24.1"
261 :type '(alist :tag "Babel Languages"
262 :key-type
263 (choice
264 (const :tag "Awk" awk)
265 (const :tag "C" C)
266 (const :tag "R" R)
267 (const :tag "Asymptote" asymptote)
268 (const :tag "Calc" calc)
269 (const :tag "Clojure" clojure)
270 (const :tag "CSS" css)
271 (const :tag "Ditaa" ditaa)
272 (const :tag "Dot" dot)
273 (const :tag "Emacs Lisp" emacs-lisp)
274 (const :tag "Forth" forth)
275 (const :tag "Fortran" fortran)
276 (const :tag "Gnuplot" gnuplot)
277 (const :tag "Haskell" haskell)
278 (const :tag "IO" io)
279 (const :tag "J" J)
280 (const :tag "Java" java)
281 (const :tag "Javascript" js)
282 (const :tag "LaTeX" latex)
283 (const :tag "Ledger" ledger)
284 (const :tag "Lilypond" lilypond)
285 (const :tag "Lisp" lisp)
286 (const :tag "Makefile" makefile)
287 (const :tag "Maxima" maxima)
288 (const :tag "Matlab" matlab)
289 (const :tag "Mscgen" mscgen)
290 (const :tag "Ocaml" ocaml)
291 (const :tag "Octave" octave)
292 (const :tag "Org" org)
293 (const :tag "Perl" perl)
294 (const :tag "Pico Lisp" picolisp)
295 (const :tag "PlantUML" plantuml)
296 (const :tag "Python" python)
297 (const :tag "Ruby" ruby)
298 (const :tag "Sass" sass)
299 (const :tag "Scala" scala)
300 (const :tag "Scheme" scheme)
301 (const :tag "Screen" screen)
302 (const :tag "Shell Script" shell)
303 (const :tag "Shen" shen)
304 (const :tag "Sql" sql)
305 (const :tag "Sqlite" sqlite)
306 (const :tag "ebnf2ps" ebnf2ps))
307 :value-type (boolean :tag "Activate" :value t)))
309 ;;;; Customization variables
310 (defcustom org-clone-delete-id nil
311 "Remove ID property of clones of a subtree.
312 When non-nil, clones of a subtree don't inherit the ID property.
313 Otherwise they inherit the ID property with a new unique
314 identifier."
315 :type 'boolean
316 :version "24.1"
317 :group 'org-id)
319 ;;; Version
320 (org-check-version)
322 ;;;###autoload
323 (defun org-version (&optional here full message)
324 "Show the org-mode version.
325 Interactively, or when MESSAGE is non-nil, show it in echo area.
326 With prefix argument, or when HERE is non-nil, insert it at point.
327 In non-interactive uses, a reduced version string is output unless
328 FULL is given."
329 (interactive (list current-prefix-arg t (not current-prefix-arg)))
330 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
331 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
332 (load-suffixes (list ".el"))
333 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
334 (org-trash (or
335 (and (fboundp 'org-release) (fboundp 'org-git-version))
336 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
337 (load-suffixes save-load-suffixes)
338 (org-version (org-release))
339 (git-version (org-git-version))
340 (version (format "Org-mode version %s (%s @ %s)"
341 org-version
342 git-version
343 (if org-install-dir
344 (if (string= org-dir org-install-dir)
345 org-install-dir
346 (concat "mixed installation! " org-install-dir " and " org-dir))
347 "org-loaddefs.el can not be found!")))
348 (version1 (if full version org-version)))
349 (when here (insert version1))
350 (when message (message "%s" version1))
351 version1))
353 (defconst org-version (org-version))
356 ;;; Syntax Constants
358 ;;;; Block
360 (defconst org-block-regexp
361 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
362 "Regular expression for hiding blocks.")
364 (defconst org-dblock-start-re
365 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
366 "Matches the start line of a dynamic block, with parameters.")
368 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
369 "Matches the end of a dynamic block.")
371 ;;;; Clock and Planning
373 (defconst org-clock-string "CLOCK:"
374 "String used as prefix for timestamps clocking work hours on an item.")
376 (defconst org-closed-string "CLOSED:"
377 "String used as the prefix for timestamps logging closing a TODO entry.")
379 (defconst org-deadline-string "DEADLINE:"
380 "String to mark deadline entries.
381 A deadline is this string, followed by a time stamp. Should be a word,
382 terminated by a colon. You can insert a schedule keyword and
383 a timestamp with \\[org-deadline].")
385 (defconst org-scheduled-string "SCHEDULED:"
386 "String to mark scheduled TODO entries.
387 A schedule is this string, followed by a time stamp. Should be a word,
388 terminated by a colon. You can insert a schedule keyword and
389 a timestamp with \\[org-schedule].")
391 (defconst org-ds-keyword-length
392 (+ 2
393 (apply #'max
394 (mapcar #'length
395 (list org-deadline-string org-scheduled-string
396 org-clock-string org-closed-string))))
397 "Maximum length of the DEADLINE and SCHEDULED keywords.")
399 (defconst org-planning-line-re
400 (concat "^[ \t]*"
401 (regexp-opt
402 (list org-closed-string org-deadline-string org-scheduled-string)
404 "Matches a line with planning info.
405 Matched keyword is in group 1.")
407 (defconst org-clock-line-re
408 (concat "^[ \t]*" org-clock-string)
409 "Matches a line with clock info.")
411 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
412 "Matches the DEADLINE keyword.")
414 (defconst org-deadline-time-regexp
415 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
416 "Matches the DEADLINE keyword together with a time stamp.")
418 (defconst org-deadline-time-hour-regexp
419 (concat "\\<" org-deadline-string
420 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
421 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
423 (defconst org-deadline-line-regexp
424 (concat "\\<\\(" org-deadline-string "\\).*")
425 "Matches the DEADLINE keyword and the rest of the line.")
427 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
428 "Matches the SCHEDULED keyword.")
430 (defconst org-scheduled-time-regexp
431 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
432 "Matches the SCHEDULED keyword together with a time stamp.")
434 (defconst org-scheduled-time-hour-regexp
435 (concat "\\<" org-scheduled-string
436 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
437 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
439 (defconst org-closed-time-regexp
440 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
441 "Matches the CLOSED keyword together with a time stamp.")
443 (defconst org-keyword-time-regexp
444 (concat "\\<"
445 (regexp-opt
446 (list org-scheduled-string org-deadline-string org-closed-string
447 org-clock-string)
449 " *[[<]\\([^]>]+\\)[]>]")
450 "Matches any of the 4 keywords, together with the time stamp.")
452 (defconst org-keyword-time-not-clock-regexp
453 (concat
454 "\\<"
455 (regexp-opt
456 (list org-scheduled-string org-deadline-string org-closed-string) t)
457 " *[[<]\\([^]>]+\\)[]>]")
458 "Matches any of the 3 keywords, together with the time stamp.")
460 (defconst org-maybe-keyword-time-regexp
461 (concat "\\(\\<"
462 (regexp-opt
463 (list org-scheduled-string org-deadline-string org-closed-string
464 org-clock-string)
466 "\\)?"
467 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
468 "\\|"
469 "<%%([^\r\n>]*>\\)")
470 "Matches a timestamp, possibly preceded by a keyword.")
472 (defconst org-all-time-keywords
473 (mapcar (lambda (w) (substring w 0 -1))
474 (list org-scheduled-string org-deadline-string
475 org-clock-string org-closed-string))
476 "List of time keywords.")
478 ;;;; Drawer
480 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
481 "Matches first or last line of a hidden block.
482 Group 1 contains drawer's name or \"END\".")
484 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
485 "Regular expression matching the first line of a property drawer.")
487 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
488 "Regular expression matching the last line of a property drawer.")
490 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
491 "Regular expression matching the first line of a clock drawer.")
493 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
494 "Regular expression matching the last line of a clock drawer.")
496 (defconst org-property-drawer-re
497 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
498 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
499 "[ \t]*:END:[ \t]*$")
500 "Matches an entire property drawer.")
502 (defconst org-clock-drawer-re
503 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
504 org-clock-drawer-end-re "\\)\n?")
505 "Matches an entire clock drawer.")
507 ;;;; Headline
509 (defconst org-heading-keyword-regexp-format
510 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
511 "Printf format for a regexp matching a headline with some keyword.
512 This regexp will match the headline of any node which has the
513 exact keyword that is put into the format. The keyword isn't in
514 any group by default, but the stars and the body are.")
516 (defconst org-heading-keyword-maybe-regexp-format
517 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
518 "Printf format for a regexp matching a headline, possibly with some keyword.
519 This regexp can match any headline with the specified keyword, or
520 without a keyword. The keyword isn't in any group by default,
521 but the stars and the body are.")
523 (defconst org-archive-tag "ARCHIVE"
524 "The tag that marks a subtree as archived.
525 An archived subtree does not open during visibility cycling, and does
526 not contribute to the agenda listings.")
528 (defconst org-comment-string "COMMENT"
529 "Entries starting with this keyword will never be exported.
530 An entry can be toggled between COMMENT and normal with
531 \\[org-toggle-comment].")
534 ;;;; LaTeX Environments and Fragments
536 (defconst org-latex-regexps
537 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
538 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
539 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
540 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
541 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
542 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
543 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
544 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
545 "Regular expressions for matching embedded LaTeX.")
547 ;;;; Node Property
549 (defconst org-effort-property "Effort"
550 "The property that is being used to keep track of effort estimates.
551 Effort estimates given in this property need to have the format H:MM.")
553 ;;;; Table
555 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
556 "Detect an org-type or table-type table.")
558 (defconst org-table-line-regexp "^[ \t]*|"
559 "Detect an org-type table line.")
561 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
562 "Detect an org-type table line.")
564 (defconst org-table-hline-regexp "^[ \t]*|-"
565 "Detect an org-type table hline.")
567 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
568 "Detect a table-type table hline.")
570 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
571 "Detect the first line outside a table when searching from within it.
572 This works for both table types.")
574 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
575 "Detect a #+TBLFM line.")
577 ;;;; Timestamp
579 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
580 "Regular expression for fast time stamp matching.")
582 (defconst org-ts-regexp-inactive
583 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
584 "Regular expression for fast inactive time stamp matching.")
586 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
587 "Regular expression for fast time stamp matching.")
589 (defconst org-ts-regexp0
590 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
591 "Regular expression matching time strings for analysis.
592 This one does not require the space after the date, so it can be used
593 on a string that terminates immediately after the date.")
595 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
596 "Regular expression matching time strings for analysis.")
598 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
599 "Regular expression matching time stamps, with groups.")
601 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
602 "Regular expression matching time stamps (also [..]), with groups.")
604 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
605 "Regular expression matching a time stamp range.")
607 (defconst org-tr-regexp-both
608 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
609 "Regular expression matching a time stamp range.")
611 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
612 org-ts-regexp "\\)?")
613 "Regular expression matching a time stamp or time stamp range.")
615 (defconst org-tsr-regexp-both
616 (concat org-ts-regexp-both "\\(--?-?"
617 org-ts-regexp-both "\\)?")
618 "Regular expression matching a time stamp or time stamp range.
619 The time stamps may be either active or inactive.")
621 (defconst org-repeat-re
622 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
623 "Regular expression for specifying repeated events.
624 After a match, group 1 contains the repeat expression.")
626 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
627 "Formats for `format-time-string' which are used for time stamps.")
630 ;;; The custom variables
632 (defgroup org nil
633 "Outline-based notes management and organizer."
634 :tag "Org"
635 :group 'outlines
636 :group 'calendar)
638 (defcustom org-mode-hook nil
639 "Mode hook for Org-mode, run after the mode was turned on."
640 :group 'org
641 :type 'hook)
643 (defcustom org-load-hook nil
644 "Hook that is run after org.el has been loaded."
645 :group 'org
646 :type 'hook)
648 (defcustom org-log-buffer-setup-hook nil
649 "Hook that is run after an Org log buffer is created."
650 :group 'org
651 :version "24.1"
652 :type 'hook)
654 (defvar org-modules) ; defined below
655 (defvar org-modules-loaded nil
656 "Have the modules been loaded already?")
658 (defun org-load-modules-maybe (&optional force)
659 "Load all extensions listed in `org-modules'."
660 (when (or force (not org-modules-loaded))
661 (mapc (lambda (ext)
662 (condition-case nil (require ext)
663 (error (message "Problems while trying to load feature `%s'" ext))))
664 org-modules)
665 (setq org-modules-loaded t)))
667 (defun org-set-modules (var value)
668 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
669 (set var value)
670 (when (featurep 'org)
671 (org-load-modules-maybe 'force)
672 (org-element-cache-reset 'all)))
674 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
675 "Modules that should always be loaded together with org.el.
677 If a description starts with <C>, the file is not part of Emacs
678 and loading it will require that you have downloaded and properly
679 installed the Org mode distribution.
681 You can also use this system to load external packages (i.e. neither Org
682 core modules, nor modules from the CONTRIB directory). Just add symbols
683 to the end of the list. If the package is called org-xyz.el, then you need
684 to add the symbol `xyz', and the package must have a call to:
686 \(provide 'org-xyz)
688 For export specific modules, see also `org-export-backends'."
689 :group 'org
690 :set 'org-set-modules
691 :version "24.4"
692 :package-version '(Org . "8.0")
693 :type
694 '(set :greedy t
695 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
696 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
697 (const :tag " crypt: Encryption of subtrees" org-crypt)
698 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
699 (const :tag " docview: Links to doc-view buffers" org-docview)
700 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
701 (const :tag " habit: Track your consistency with habits" org-habit)
702 (const :tag " id: Global IDs for identifying entries" org-id)
703 (const :tag " info: Links to Info nodes" org-info)
704 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
705 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
706 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
707 (const :tag " mouse: Additional mouse support" org-mouse)
708 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
709 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
710 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
712 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
713 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
714 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
715 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
716 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
717 (const :tag "C collector: Collect properties into tables" org-collector)
718 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
719 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
720 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
721 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
722 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
723 (const :tag "C eval: Include command output as text" org-eval)
724 (const :tag "C eww: Store link to url of eww" org-eww)
725 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
726 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
727 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
728 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
729 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
730 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
731 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
732 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
733 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
734 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
735 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
736 (const :tag "C mew: Links to Mew folders/messages" org-mew)
737 (const :tag "C mtags: Support for muse-like tags" org-mtags)
738 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
739 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
740 (const :tag "C registry: A registry for Org-mode links" org-registry)
741 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
742 (const :tag "C secretary: Team management with org-mode" org-secretary)
743 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
744 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
745 (const :tag "C track: Keep up with Org-mode development" org-track)
746 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
747 (const :tag "C vm: Links to VM folders/messages" org-vm)
748 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
749 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
750 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
752 (defvar org-export--registered-backends) ; From ox.el.
753 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
754 (declare-function org-export-backend-name "ox" (backend))
755 (defcustom org-export-backends '(ascii html icalendar latex)
756 "List of export back-ends that should be always available.
758 If a description starts with <C>, the file is not part of Emacs
759 and loading it will require that you have downloaded and properly
760 installed the Org mode distribution.
762 Unlike to `org-modules', libraries in this list will not be
763 loaded along with Org, but only once the export framework is
764 needed.
766 This variable needs to be set before org.el is loaded. If you
767 need to make a change while Emacs is running, use the customize
768 interface or run the following code, where VAL stands for the new
769 value of the variable, after updating it:
771 \(progn
772 \(setq org-export--registered-backends
773 \(org-remove-if-not
774 \(lambda (backend)
775 \(let ((name (org-export-backend-name backend)))
776 \(or (memq name val)
777 \(catch 'parentp
778 \(dolist (b val)
779 \(and (org-export-derived-backend-p b name)
780 \(throw 'parentp t)))))))
781 org-export--registered-backends))
782 \(let ((new-list (mapcar 'org-export-backend-name
783 org-export--registered-backends)))
784 \(dolist (backend val)
785 \(cond
786 \((not (load (format \"ox-%s\" backend) t t))
787 \(message \"Problems while trying to load export back-end `%s'\"
788 backend))
789 \((not (memq backend new-list)) (push backend new-list))))
790 \(set-default 'org-export-backends new-list)))
792 Adding a back-end to this list will also pull the back-end it
793 depends on, if any."
794 :group 'org
795 :group 'org-export
796 :version "24.4"
797 :package-version '(Org . "8.0")
798 :initialize 'custom-initialize-set
799 :set (lambda (var val)
800 (if (not (featurep 'ox)) (set-default var val)
801 ;; Any back-end not required anymore (not present in VAL and not
802 ;; a parent of any back-end in the new value) is removed from the
803 ;; list of registered back-ends.
804 (setq org-export--registered-backends
805 (org-remove-if-not
806 (lambda (backend)
807 (let ((name (org-export-backend-name backend)))
808 (or (memq name val)
809 (catch 'parentp
810 (dolist (b val)
811 (and (org-export-derived-backend-p b name)
812 (throw 'parentp t)))))))
813 org-export--registered-backends))
814 ;; Now build NEW-LIST of both new back-ends and required
815 ;; parents.
816 (let ((new-list (mapcar 'org-export-backend-name
817 org-export--registered-backends)))
818 (dolist (backend val)
819 (cond
820 ((not (load (format "ox-%s" backend) t t))
821 (message "Problems while trying to load export back-end `%s'"
822 backend))
823 ((not (memq backend new-list)) (push backend new-list))))
824 ;; Set VAR to that list with fixed dependencies.
825 (set-default var new-list))))
826 :type '(set :greedy t
827 (const :tag " ascii Export buffer to ASCII format" ascii)
828 (const :tag " beamer Export buffer to Beamer presentation" beamer)
829 (const :tag " html Export buffer to HTML format" html)
830 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
831 (const :tag " latex Export buffer to LaTeX format" latex)
832 (const :tag " man Export buffer to MAN format" man)
833 (const :tag " md Export buffer to Markdown format" md)
834 (const :tag " odt Export buffer to ODT format" odt)
835 (const :tag " org Export buffer to Org format" org)
836 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
837 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
838 (const :tag "C deck Export buffer to deck.js presentations" deck)
839 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
840 (const :tag "C groff Export buffer to Groff format" groff)
841 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
842 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
843 (const :tag "C s5 Export buffer to s5 presentations" s5)
844 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
846 (eval-after-load 'ox
847 '(mapc
848 (lambda (backend)
849 (condition-case nil (require (intern (format "ox-%s" backend)))
850 (error (message "Problems while trying to load export back-end `%s'"
851 backend))))
852 org-export-backends))
854 (defcustom org-support-shift-select nil
855 "Non-nil means make shift-cursor commands select text when possible.
857 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
858 start selecting a region, or enlarge regions started in this way.
859 In Org-mode, in special contexts, these same keys are used for
860 other purposes, important enough to compete with shift selection.
861 Org tries to balance these needs by supporting `shift-select-mode'
862 outside these special contexts, under control of this variable.
864 The default of this variable is nil, to avoid confusing behavior. Shifted
865 cursor keys will then execute Org commands in the following contexts:
866 - on a headline, changing TODO state (left/right) and priority (up/down)
867 - on a time stamp, changing the time
868 - in a plain list item, changing the bullet type
869 - in a property definition line, switching between allowed values
870 - in the BEGIN line of a clock table (changing the time block).
871 Outside these contexts, the commands will throw an error.
873 When this variable is t and the cursor is not in a special
874 context, Org-mode will support shift-selection for making and
875 enlarging regions. To make this more effective, the bullet
876 cycling will no longer happen anywhere in an item line, but only
877 if the cursor is exactly on the bullet.
879 If you set this variable to the symbol `always', then the keys
880 will not be special in headlines, property lines, and item lines,
881 to make shift selection work there as well. If this is what you
882 want, you can use the following alternative commands: `C-c C-t'
883 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
884 can be used to switch TODO sets, `C-c -' to cycle item bullet
885 types, and properties can be edited by hand or in column view.
887 However, when the cursor is on a timestamp, shift-cursor commands
888 will still edit the time stamp - this is just too good to give up.
890 XEmacs user should have this variable set to nil, because
891 `shift-select-mode' is in Emacs 23 or later only."
892 :group 'org
893 :type '(choice
894 (const :tag "Never" nil)
895 (const :tag "When outside special context" t)
896 (const :tag "Everywhere except timestamps" always)))
898 (defcustom org-loop-over-headlines-in-active-region nil
899 "Shall some commands act upon headlines in the active region?
901 When set to `t', some commands will be performed in all headlines
902 within the active region.
904 When set to `start-level', some commands will be performed in all
905 headlines within the active region, provided that these headlines
906 are of the same level than the first one.
908 When set to a string, those commands will be performed on the
909 matching headlines within the active region. Such string must be
910 a tags/property/todo match as it is used in the agenda tags view.
912 The list of commands is: `org-schedule', `org-deadline',
913 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
914 `org-archive-to-archive-sibling'. The archiving commands skip
915 already archived entries."
916 :type '(choice (const :tag "Don't loop" nil)
917 (const :tag "All headlines in active region" t)
918 (const :tag "In active region, headlines at the same level than the first one" start-level)
919 (string :tag "Tags/Property/Todo matcher"))
920 :version "24.1"
921 :group 'org-todo
922 :group 'org-archive)
924 (defgroup org-startup nil
925 "Options concerning startup of Org-mode."
926 :tag "Org Startup"
927 :group 'org)
929 (defcustom org-startup-folded t
930 "Non-nil means entering Org-mode will switch to OVERVIEW.
931 This can also be configured on a per-file basis by adding one of
932 the following lines anywhere in the buffer:
934 #+STARTUP: fold (or `overview', this is equivalent)
935 #+STARTUP: nofold (or `showall', this is equivalent)
936 #+STARTUP: content
937 #+STARTUP: showeverything
939 By default, this option is ignored when Org opens agenda files
940 for the first time. If you want the agenda to honor the startup
941 option, set `org-agenda-inhibit-startup' to nil."
942 :group 'org-startup
943 :type '(choice
944 (const :tag "nofold: show all" nil)
945 (const :tag "fold: overview" t)
946 (const :tag "content: all headlines" content)
947 (const :tag "show everything, even drawers" showeverything)))
949 (defcustom org-startup-truncated t
950 "Non-nil means entering Org-mode will set `truncate-lines'.
951 This is useful since some lines containing links can be very long and
952 uninteresting. Also tables look terrible when wrapped."
953 :group 'org-startup
954 :type 'boolean)
956 (defcustom org-startup-indented nil
957 "Non-nil means turn on `org-indent-mode' on startup.
958 This can also be configured on a per-file basis by adding one of
959 the following lines anywhere in the buffer:
961 #+STARTUP: indent
962 #+STARTUP: noindent"
963 :group 'org-structure
964 :type '(choice
965 (const :tag "Not" nil)
966 (const :tag "Globally (slow on startup in large files)" t)))
968 (defcustom org-use-sub-superscripts t
969 "Non-nil means interpret \"_\" and \"^\" for display.
971 If you want to control how Org exports those characters, see
972 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
973 used to be an alias for `org-export-with-sub-superscripts' in
974 Org <8.0, it is not anymore.
976 When this option is turned on, you can use TeX-like syntax for
977 sub- and superscripts within the buffer. Several characters after
978 \"_\" or \"^\" will be considered as a single item - so grouping
979 with {} is normally not needed. For example, the following things
980 will be parsed as single sub- or superscripts:
982 10^24 or 10^tau several digits will be considered 1 item.
983 10^-12 or 10^-tau a leading sign with digits or a word
984 x^2-y^3 will be read as x^2 - y^3, because items are
985 terminated by almost any nonword/nondigit char.
986 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
988 Still, ambiguity is possible. So when in doubt, use {} to enclose
989 the sub/superscript. If you set this variable to the symbol `{}',
990 the braces are *required* in order to trigger interpretations as
991 sub/superscript. This can be helpful in documents that need \"_\"
992 frequently in plain text."
993 :group 'org-startup
994 :version "24.4"
995 :package-version '(Org . "8.0")
996 :type '(choice
997 (const :tag "Always interpret" t)
998 (const :tag "Only with braces" {})
999 (const :tag "Never interpret" nil)))
1001 (defcustom org-startup-with-beamer-mode nil
1002 "Non-nil means turn on `org-beamer-mode' on startup.
1003 This can also be configured on a per-file basis by adding one of
1004 the following lines anywhere in the buffer:
1006 #+STARTUP: beamer"
1007 :group 'org-startup
1008 :version "24.1"
1009 :type 'boolean)
1011 (defcustom org-startup-align-all-tables nil
1012 "Non-nil means align all tables when visiting a file.
1013 This is useful when the column width in tables is forced with <N> cookies
1014 in table fields. Such tables will look correct only after the first re-align.
1015 This can also be configured on a per-file basis by adding one of
1016 the following lines anywhere in the buffer:
1017 #+STARTUP: align
1018 #+STARTUP: noalign"
1019 :group 'org-startup
1020 :type 'boolean)
1022 (defcustom org-startup-with-inline-images nil
1023 "Non-nil means show inline images when loading a new Org file.
1024 This can also be configured on a per-file basis by adding one of
1025 the following lines anywhere in the buffer:
1026 #+STARTUP: inlineimages
1027 #+STARTUP: noinlineimages"
1028 :group 'org-startup
1029 :version "24.1"
1030 :type 'boolean)
1032 (defcustom org-startup-with-latex-preview nil
1033 "Non-nil means preview LaTeX fragments when loading a new Org file.
1035 This can also be configured on a per-file basis by adding one of
1036 the following lines anywhere in the buffer:
1037 #+STARTUP: latexpreview
1038 #+STARTUP: nolatexpreview"
1039 :group 'org-startup
1040 :version "24.4"
1041 :package-version '(Org . "8.0")
1042 :type 'boolean)
1044 (defcustom org-insert-mode-line-in-empty-file nil
1045 "Non-nil means insert the first line setting Org-mode in empty files.
1046 When the function `org-mode' is called interactively in an empty file, this
1047 normally means that the file name does not automatically trigger Org-mode.
1048 To ensure that the file will always be in Org-mode in the future, a
1049 line enforcing Org-mode will be inserted into the buffer, if this option
1050 has been set."
1051 :group 'org-startup
1052 :type 'boolean)
1054 (defcustom org-replace-disputed-keys nil
1055 "Non-nil means use alternative key bindings for some keys.
1056 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1057 These keys are also used by other packages like shift-selection-mode'
1058 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1059 If you want to use Org-mode together with one of these other modes,
1060 or more generally if you would like to move some Org-mode commands to
1061 other keys, set this variable and configure the keys with the variable
1062 `org-disputed-keys'.
1064 This option is only relevant at load-time of Org-mode, and must be set
1065 *before* org.el is loaded. Changing it requires a restart of Emacs to
1066 become effective."
1067 :group 'org-startup
1068 :type 'boolean)
1070 (defcustom org-use-extra-keys nil
1071 "Non-nil means use extra key sequence definitions for certain commands.
1072 This happens automatically if you run XEmacs or if `window-system'
1073 is nil. This variable lets you do the same manually. You must
1074 set it before loading org.
1076 Example: on Carbon Emacs 22 running graphically, with an external
1077 keyboard on a Powerbook, the default way of setting M-left might
1078 not work for either Alt or ESC. Setting this variable will make
1079 it work for ESC."
1080 :group 'org-startup
1081 :type 'boolean)
1083 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1085 (defcustom org-disputed-keys
1086 '(([(shift up)] . [(meta p)])
1087 ([(shift down)] . [(meta n)])
1088 ([(shift left)] . [(meta -)])
1089 ([(shift right)] . [(meta +)])
1090 ([(control shift right)] . [(meta shift +)])
1091 ([(control shift left)] . [(meta shift -)]))
1092 "Keys for which Org-mode and other modes compete.
1093 This is an alist, cars are the default keys, second element specifies
1094 the alternative to use when `org-replace-disputed-keys' is t.
1096 Keys can be specified in any syntax supported by `define-key'.
1097 The value of this option takes effect only at Org-mode's startup,
1098 therefore you'll have to restart Emacs to apply it after changing."
1099 :group 'org-startup
1100 :type 'alist)
1102 (defun org-key (key)
1103 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1104 Or return the original if not disputed.
1105 Also apply the translations defined in `org-xemacs-key-equivalents'."
1106 (when org-replace-disputed-keys
1107 (let* ((nkey (key-description key))
1108 (x (org-find-if (lambda (x)
1109 (equal (key-description (car x)) nkey))
1110 org-disputed-keys)))
1111 (setq key (if x (cdr x) key))))
1112 (when (featurep 'xemacs)
1113 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1114 key)
1116 (defun org-find-if (predicate seq)
1117 (catch 'exit
1118 (while seq
1119 (if (funcall predicate (car seq))
1120 (throw 'exit (car seq))
1121 (pop seq)))))
1123 (defun org-defkey (keymap key def)
1124 "Define a key, possibly translated, as returned by `org-key'."
1125 (define-key keymap (org-key key) def))
1127 (defcustom org-ellipsis nil
1128 "The ellipsis to use in the Org-mode outline.
1129 When nil, just use the standard three dots.
1130 When a string, use that string instead.
1131 When a face, use the standard 3 dots, but with the specified face.
1132 The change affects only Org-mode (which will then use its own display table).
1133 Changing this requires executing \\[org-mode] in a buffer to become
1134 effective."
1135 :group 'org-startup
1136 :type '(choice (const :tag "Default" nil)
1137 (face :tag "Face" :value org-warning)
1138 (string :tag "String" :value "...#")))
1140 (defvar org-display-table nil
1141 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1143 (defgroup org-keywords nil
1144 "Keywords in Org-mode."
1145 :tag "Org Keywords"
1146 :group 'org)
1148 (defcustom org-closed-keep-when-no-todo nil
1149 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1150 :group 'org-todo
1151 :group 'org-keywords
1152 :version "24.4"
1153 :package-version '(Org . "8.0")
1154 :type 'boolean)
1156 (defgroup org-structure nil
1157 "Options concerning the general structure of Org-mode files."
1158 :tag "Org Structure"
1159 :group 'org)
1161 (defgroup org-reveal-location nil
1162 "Options about how to make context of a location visible."
1163 :tag "Org Reveal Location"
1164 :group 'org-structure)
1166 (defconst org-context-choice
1167 '(choice
1168 (const :tag "Always" t)
1169 (const :tag "Never" nil)
1170 (repeat :greedy t :tag "Individual contexts"
1171 (cons
1172 (choice :tag "Context"
1173 (const agenda)
1174 (const org-goto)
1175 (const occur-tree)
1176 (const tags-tree)
1177 (const link-search)
1178 (const mark-goto)
1179 (const bookmark-jump)
1180 (const isearch)
1181 (const default))
1182 (boolean))))
1183 "Contexts for the reveal options.")
1185 (defcustom org-show-hierarchy-above '((default . t))
1186 "Non-nil means show full hierarchy when revealing a location.
1187 Org-mode often shows locations in an org-mode file which might have
1188 been invisible before. When this is set, the hierarchy of headings
1189 above the exposed location is shown.
1190 Turning this off for example for sparse trees makes them very compact.
1191 Instead of t, this can also be an alist specifying this option for different
1192 contexts. Valid contexts are
1193 agenda when exposing an entry from the agenda
1194 org-goto when using the command `org-goto' on key C-c C-j
1195 occur-tree when using the command `org-occur' on key C-c /
1196 tags-tree when constructing a sparse tree based on tags matches
1197 link-search when exposing search matches associated with a link
1198 mark-goto when exposing the jump goal of a mark
1199 bookmark-jump when exposing a bookmark location
1200 isearch when exiting from an incremental search
1201 default default for all contexts not set explicitly"
1202 :group 'org-reveal-location
1203 :type org-context-choice)
1205 (defcustom org-show-following-heading '((default . nil))
1206 "Non-nil means show following heading when revealing a location.
1207 Org-mode often shows locations in an org-mode file which might have
1208 been invisible before. When this is set, the heading following the
1209 match is shown.
1210 Turning this off for example for sparse trees makes them very compact,
1211 but makes it harder to edit the location of the match. In such a case,
1212 use the command \\[org-reveal] to show more context.
1213 Instead of t, this can also be an alist specifying this option for different
1214 contexts. See `org-show-hierarchy-above' for valid contexts."
1215 :group 'org-reveal-location
1216 :type org-context-choice)
1218 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
1219 "Non-nil means show all sibling heading when revealing a location.
1220 Org-mode often shows locations in an org-mode file which might have
1221 been invisible before. When this is set, the sibling of the current entry
1222 heading are all made visible. If `org-show-hierarchy-above' is t,
1223 the same happens on each level of the hierarchy above the current entry.
1225 By default this is on for the isearch context, off for all other contexts.
1226 Turning this off for example for sparse trees makes them very compact,
1227 but makes it harder to edit the location of the match. In such a case,
1228 use the command \\[org-reveal] to show more context.
1229 Instead of t, this can also be an alist specifying this option for different
1230 contexts. See `org-show-hierarchy-above' for valid contexts."
1231 :group 'org-reveal-location
1232 :type org-context-choice
1233 :version "24.4"
1234 :package-version '(Org . "8.0"))
1236 (defcustom org-show-entry-below '((default . nil))
1237 "Non-nil means show the entry below a headline when revealing a location.
1238 Org-mode often shows locations in an org-mode file which might have
1239 been invisible before. When this is set, the text below the headline that is
1240 exposed is also shown.
1242 By default this is off for all contexts.
1243 Instead of t, this can also be an alist specifying this option for different
1244 contexts. See `org-show-hierarchy-above' for valid contexts."
1245 :group 'org-reveal-location
1246 :type org-context-choice)
1248 (defcustom org-indirect-buffer-display 'other-window
1249 "How should indirect tree buffers be displayed?
1250 This applies to indirect buffers created with the commands
1251 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1252 Valid values are:
1253 current-window Display in the current window
1254 other-window Just display in another window.
1255 dedicated-frame Create one new frame, and re-use it each time.
1256 new-frame Make a new frame each time. Note that in this case
1257 previously-made indirect buffers are kept, and you need to
1258 kill these buffers yourself."
1259 :group 'org-structure
1260 :group 'org-agenda-windows
1261 :type '(choice
1262 (const :tag "In current window" current-window)
1263 (const :tag "In current frame, other window" other-window)
1264 (const :tag "Each time a new frame" new-frame)
1265 (const :tag "One dedicated frame" dedicated-frame)))
1267 (defcustom org-use-speed-commands nil
1268 "Non-nil means activate single letter commands at beginning of a headline.
1269 This may also be a function to test for appropriate locations where speed
1270 commands should be active.
1272 For example, to activate speed commands when the point is on any
1273 star at the beginning of the headline, you can do this:
1275 (setq org-use-speed-commands
1276 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1277 :group 'org-structure
1278 :type '(choice
1279 (const :tag "Never" nil)
1280 (const :tag "At beginning of headline stars" t)
1281 (function)))
1283 (defcustom org-speed-commands-user nil
1284 "Alist of additional speed commands.
1285 This list will be checked before `org-speed-commands-default'
1286 when the variable `org-use-speed-commands' is non-nil
1287 and when the cursor is at the beginning of a headline.
1288 The car if each entry is a string with a single letter, which must
1289 be assigned to `self-insert-command' in the global map.
1290 The cdr is either a command to be called interactively, a function
1291 to be called, or a form to be evaluated.
1292 An entry that is just a list with a single string will be interpreted
1293 as a descriptive headline that will be added when listing the speed
1294 commands in the Help buffer using the `?' speed command."
1295 :group 'org-structure
1296 :type '(repeat :value ("k" . ignore)
1297 (choice :value ("k" . ignore)
1298 (list :tag "Descriptive Headline" (string :tag "Headline"))
1299 (cons :tag "Letter and Command"
1300 (string :tag "Command letter")
1301 (choice
1302 (function)
1303 (sexp))))))
1305 (defcustom org-bookmark-names-plist
1306 '(:last-capture "org-capture-last-stored"
1307 :last-refile "org-refile-last-stored"
1308 :last-capture-marker "org-capture-last-stored-marker")
1309 "Names for bookmarks automatically set by some Org commands.
1310 This can provide strings as names for a number of bookmarks Org sets
1311 automatically. The following keys are currently implemented:
1312 :last-capture
1313 :last-capture-marker
1314 :last-refile
1315 When a key does not show up in the property list, the corresponding bookmark
1316 is not set."
1317 :group 'org-structure
1318 :type 'plist)
1320 (defgroup org-cycle nil
1321 "Options concerning visibility cycling in Org-mode."
1322 :tag "Org Cycle"
1323 :group 'org-structure)
1325 (defcustom org-cycle-skip-children-state-if-no-children t
1326 "Non-nil means skip CHILDREN state in entries that don't have any."
1327 :group 'org-cycle
1328 :type 'boolean)
1330 (defcustom org-cycle-max-level nil
1331 "Maximum level which should still be subject to visibility cycling.
1332 Levels higher than this will, for cycling, be treated as text, not a headline.
1333 When `org-odd-levels-only' is set, a value of N in this variable actually
1334 means 2N-1 stars as the limiting headline.
1335 When nil, cycle all levels.
1336 Note that the limiting level of cycling is also influenced by
1337 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1338 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1339 than its value."
1340 :group 'org-cycle
1341 :type '(choice
1342 (const :tag "No limit" nil)
1343 (integer :tag "Maximum level")))
1345 (defcustom org-hide-block-startup nil
1346 "Non-nil means entering Org-mode will fold all blocks.
1347 This can also be set in on a per-file basis with
1349 #+STARTUP: hideblocks
1350 #+STARTUP: showblocks"
1351 :group 'org-startup
1352 :group 'org-cycle
1353 :type 'boolean)
1355 (defcustom org-cycle-global-at-bob nil
1356 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1357 This makes it possible to do global cycling without having to use S-TAB or
1358 \\[universal-argument] TAB. For this special case to work, the first line
1359 of the buffer must not be a headline -- it may be empty or some other text.
1360 When used in this way, `org-cycle-hook' is disabled temporarily to make
1361 sure the cursor stays at the beginning of the buffer. When this option is
1362 nil, don't do anything special at the beginning of the buffer."
1363 :group 'org-cycle
1364 :type 'boolean)
1366 (defcustom org-cycle-level-after-item/entry-creation t
1367 "Non-nil means cycle entry level or item indentation in new empty entries.
1369 When the cursor is at the end of an empty headline, i.e., with only stars
1370 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1371 and then all possible ancestor states, before returning to the original state.
1372 This makes data entry extremely fast: M-RET to create a new headline,
1373 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1375 When the cursor is at the end of an empty plain list item, one TAB will
1376 make it a subitem, two or more tabs will back up to make this an item
1377 higher up in the item hierarchy."
1378 :group 'org-cycle
1379 :type 'boolean)
1381 (defcustom org-cycle-emulate-tab t
1382 "Where should `org-cycle' emulate TAB.
1383 nil Never
1384 white Only in completely white lines
1385 whitestart Only at the beginning of lines, before the first non-white char
1386 t Everywhere except in headlines
1387 exc-hl-bol Everywhere except at the start of a headline
1388 If TAB is used in a place where it does not emulate TAB, the current subtree
1389 visibility is cycled."
1390 :group 'org-cycle
1391 :type '(choice (const :tag "Never" nil)
1392 (const :tag "Only in completely white lines" white)
1393 (const :tag "Before first char in a line" whitestart)
1394 (const :tag "Everywhere except in headlines" t)
1395 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1397 (defcustom org-cycle-separator-lines 2
1398 "Number of empty lines needed to keep an empty line between collapsed trees.
1399 If you leave an empty line between the end of a subtree and the following
1400 headline, this empty line is hidden when the subtree is folded.
1401 Org-mode will leave (exactly) one empty line visible if the number of
1402 empty lines is equal or larger to the number given in this variable.
1403 So the default 2 means at least 2 empty lines after the end of a subtree
1404 are needed to produce free space between a collapsed subtree and the
1405 following headline.
1407 If the number is negative, and the number of empty lines is at least -N,
1408 all empty lines are shown.
1410 Special case: when 0, never leave empty lines in collapsed view."
1411 :group 'org-cycle
1412 :type 'integer)
1413 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1415 (defcustom org-pre-cycle-hook nil
1416 "Hook that is run before visibility cycling is happening.
1417 The function(s) in this hook must accept a single argument which indicates
1418 the new state that will be set right after running this hook. The
1419 argument is a symbol. Before a global state change, it can have the values
1420 `overview', `content', or `all'. Before a local state change, it can have
1421 the values `folded', `children', or `subtree'."
1422 :group 'org-cycle
1423 :type 'hook)
1425 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1426 org-cycle-hide-drawers
1427 org-cycle-hide-inline-tasks
1428 org-cycle-show-empty-lines
1429 org-optimize-window-after-visibility-change)
1430 "Hook that is run after `org-cycle' has changed the buffer visibility.
1431 The function(s) in this hook must accept a single argument which indicates
1432 the new state that was set by the most recent `org-cycle' command. The
1433 argument is a symbol. After a global state change, it can have the values
1434 `overview', `contents', or `all'. After a local state change, it can have
1435 the values `folded', `children', or `subtree'."
1436 :group 'org-cycle
1437 :type 'hook)
1439 (defgroup org-edit-structure nil
1440 "Options concerning structure editing in Org-mode."
1441 :tag "Org Edit Structure"
1442 :group 'org-structure)
1444 (defcustom org-odd-levels-only nil
1445 "Non-nil means skip even levels and only use odd levels for the outline.
1446 This has the effect that two stars are being added/taken away in
1447 promotion/demotion commands. It also influences how levels are
1448 handled by the exporters.
1449 Changing it requires restart of `font-lock-mode' to become effective
1450 for fontification also in regions already fontified.
1451 You may also set this on a per-file basis by adding one of the following
1452 lines to the buffer:
1454 #+STARTUP: odd
1455 #+STARTUP: oddeven"
1456 :group 'org-edit-structure
1457 :group 'org-appearance
1458 :type 'boolean)
1460 (defcustom org-adapt-indentation t
1461 "Non-nil means adapt indentation to outline node level.
1463 When this variable is set, Org assumes that you write outlines by
1464 indenting text in each node to align with the headline (after the stars).
1465 The following issues are influenced by this variable:
1467 - When this is set and the *entire* text in an entry is indented, the
1468 indentation is increased by one space in a demotion command, and
1469 decreased by one in a promotion command. If any line in the entry
1470 body starts with text at column 0, indentation is not changed at all.
1472 - Property drawers and planning information is inserted indented when
1473 this variable is set. When nil, they will not be indented.
1475 - TAB indents a line relative to context. The lines below a headline
1476 will be indented when this variable is set.
1478 Note that this is all about true indentation, by adding and removing
1479 space characters. See also `org-indent.el' which does level-dependent
1480 indentation in a virtual way, i.e. at display time in Emacs."
1481 :group 'org-edit-structure
1482 :type 'boolean)
1484 (defcustom org-special-ctrl-a/e nil
1485 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1487 When t, `C-a' will bring back the cursor to the beginning of the
1488 headline text, i.e. after the stars and after a possible TODO
1489 keyword. In an item, this will be the position after bullet and
1490 check-box, if any. When the cursor is already at that position,
1491 another `C-a' will bring it to the beginning of the line.
1493 `C-e' will jump to the end of the headline, ignoring the presence
1494 of tags in the headline. A second `C-e' will then jump to the
1495 true end of the line, after any tags. This also means that, when
1496 this variable is non-nil, `C-e' also will never jump beyond the
1497 end of the heading of a folded section, i.e. not after the
1498 ellipses.
1500 When set to the symbol `reversed', the first `C-a' or `C-e' works
1501 normally, going to the true line boundary first. Only a directly
1502 following, identical keypress will bring the cursor to the
1503 special positions.
1505 This may also be a cons cell where the behavior for `C-a' and
1506 `C-e' is set separately."
1507 :group 'org-edit-structure
1508 :type '(choice
1509 (const :tag "off" nil)
1510 (const :tag "on: after stars/bullet and before tags first" t)
1511 (const :tag "reversed: true line boundary first" reversed)
1512 (cons :tag "Set C-a and C-e separately"
1513 (choice :tag "Special C-a"
1514 (const :tag "off" nil)
1515 (const :tag "on: after stars/bullet first" t)
1516 (const :tag "reversed: before stars/bullet first" reversed))
1517 (choice :tag "Special C-e"
1518 (const :tag "off" nil)
1519 (const :tag "on: before tags first" t)
1520 (const :tag "reversed: after tags first" reversed)))))
1521 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1523 (defcustom org-special-ctrl-k nil
1524 "Non-nil means `C-k' will behave specially in headlines.
1525 When nil, `C-k' will call the default `kill-line' command.
1526 When t, the following will happen while the cursor is in the headline:
1528 - When the cursor is at the beginning of a headline, kill the entire
1529 line and possible the folded subtree below the line.
1530 - When in the middle of the headline text, kill the headline up to the tags.
1531 - When after the headline text, kill the tags."
1532 :group 'org-edit-structure
1533 :type 'boolean)
1535 (defcustom org-ctrl-k-protect-subtree nil
1536 "Non-nil means, do not delete a hidden subtree with C-k.
1537 When set to the symbol `error', simply throw an error when C-k is
1538 used to kill (part-of) a headline that has hidden text behind it.
1539 Any other non-nil value will result in a query to the user, if it is
1540 OK to kill that hidden subtree. When nil, kill without remorse."
1541 :group 'org-edit-structure
1542 :version "24.1"
1543 :type '(choice
1544 (const :tag "Do not protect hidden subtrees" nil)
1545 (const :tag "Protect hidden subtrees with a security query" t)
1546 (const :tag "Never kill a hidden subtree with C-k" error)))
1548 (defcustom org-special-ctrl-o t
1549 "Non-nil means, make `C-o' insert a row in tables."
1550 :group 'org-edit-structure
1551 :type 'boolean)
1553 (defcustom org-catch-invisible-edits nil
1554 "Check if in invisible region before inserting or deleting a character.
1555 Valid values are:
1557 nil Do not check, so just do invisible edits.
1558 error Throw an error and do nothing.
1559 show Make point visible, and do the requested edit.
1560 show-and-error Make point visible, then throw an error and abort the edit.
1561 smart Make point visible, and do insertion/deletion if it is
1562 adjacent to visible text and the change feels predictable.
1563 Never delete a previously invisible character or add in the
1564 middle or right after an invisible region. Basically, this
1565 allows insertion and backward-delete right before ellipses.
1566 FIXME: maybe in this case we should not even show?"
1567 :group 'org-edit-structure
1568 :version "24.1"
1569 :type '(choice
1570 (const :tag "Do not check" nil)
1571 (const :tag "Throw error when trying to edit" error)
1572 (const :tag "Unhide, but do not do the edit" show-and-error)
1573 (const :tag "Show invisible part and do the edit" show)
1574 (const :tag "Be smart and do the right thing" smart)))
1576 (defcustom org-yank-folded-subtrees t
1577 "Non-nil means when yanking subtrees, fold them.
1578 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1579 it starts with a heading and all other headings in it are either children
1580 or siblings, then fold all the subtrees. However, do this only if no
1581 text after the yank would be swallowed into a folded tree by this action."
1582 :group 'org-edit-structure
1583 :type 'boolean)
1585 (defcustom org-yank-adjusted-subtrees nil
1586 "Non-nil means when yanking subtrees, adjust the level.
1587 With this setting, `org-paste-subtree' is used to insert the subtree, see
1588 this function for details."
1589 :group 'org-edit-structure
1590 :type 'boolean)
1592 (defcustom org-M-RET-may-split-line '((default . t))
1593 "Non-nil means M-RET will split the line at the cursor position.
1594 When nil, it will go to the end of the line before making a
1595 new line.
1596 You may also set this option in a different way for different
1597 contexts. Valid contexts are:
1599 headline when creating a new headline
1600 item when creating a new item
1601 table in a table field
1602 default the value to be used for all contexts not explicitly
1603 customized"
1604 :group 'org-structure
1605 :group 'org-table
1606 :type '(choice
1607 (const :tag "Always" t)
1608 (const :tag "Never" nil)
1609 (repeat :greedy t :tag "Individual contexts"
1610 (cons
1611 (choice :tag "Context"
1612 (const headline)
1613 (const item)
1614 (const table)
1615 (const default))
1616 (boolean)))))
1619 (defcustom org-insert-heading-respect-content nil
1620 "Non-nil means insert new headings after the current subtree.
1621 When nil, the new heading is created directly after the current line.
1622 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1623 this variable on for the duration of the command."
1624 :group 'org-structure
1625 :type 'boolean)
1627 (defcustom org-blank-before-new-entry '((heading . auto)
1628 (plain-list-item . auto))
1629 "Should `org-insert-heading' leave a blank line before new heading/item?
1630 The value is an alist, with `heading' and `plain-list-item' as CAR,
1631 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1632 which case Org will look at the surrounding headings/items and try to
1633 make an intelligent decision whether to insert a blank line or not.
1635 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1636 the setting here is ignored and no empty line is inserted to avoid breaking
1637 the list structure."
1638 :group 'org-edit-structure
1639 :type '(list
1640 (cons (const heading)
1641 (choice (const :tag "Never" nil)
1642 (const :tag "Always" t)
1643 (const :tag "Auto" auto)))
1644 (cons (const plain-list-item)
1645 (choice (const :tag "Never" nil)
1646 (const :tag "Always" t)
1647 (const :tag "Auto" auto)))))
1649 (defcustom org-insert-heading-hook nil
1650 "Hook being run after inserting a new heading."
1651 :group 'org-edit-structure
1652 :type 'hook)
1654 (defcustom org-enable-fixed-width-editor t
1655 "Non-nil means lines starting with \":\" are treated as fixed-width.
1656 This currently only means they are never auto-wrapped.
1657 When nil, such lines will be treated like ordinary lines."
1658 :group 'org-edit-structure
1659 :type 'boolean)
1661 (defcustom org-goto-auto-isearch t
1662 "Non-nil means typing characters in `org-goto' starts incremental search.
1663 When nil, you can use these keybindings to navigate the buffer:
1665 q Quit the org-goto interface
1666 n Go to the next visible heading
1667 p Go to the previous visible heading
1668 f Go one heading forward on same level
1669 b Go one heading backward on same level
1670 u Go one heading up"
1671 :group 'org-edit-structure
1672 :type 'boolean)
1674 (defgroup org-sparse-trees nil
1675 "Options concerning sparse trees in Org-mode."
1676 :tag "Org Sparse Trees"
1677 :group 'org-structure)
1679 (defcustom org-highlight-sparse-tree-matches t
1680 "Non-nil means highlight all matches that define a sparse tree.
1681 The highlights will automatically disappear the next time the buffer is
1682 changed by an edit command."
1683 :group 'org-sparse-trees
1684 :type 'boolean)
1686 (defcustom org-remove-highlights-with-change t
1687 "Non-nil means any change to the buffer will remove temporary highlights.
1688 Such highlights are created by `org-occur' and `org-clock-display'.
1689 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1690 The highlights created by `org-toggle-latex-fragment' always need
1691 `C-c C-x C-l' to be removed."
1692 :group 'org-sparse-trees
1693 :group 'org-time
1694 :type 'boolean)
1697 (defcustom org-occur-hook '(org-first-headline-recenter)
1698 "Hook that is run after `org-occur' has constructed a sparse tree.
1699 This can be used to recenter the window to show as much of the structure
1700 as possible."
1701 :group 'org-sparse-trees
1702 :type 'hook)
1704 (defgroup org-imenu-and-speedbar nil
1705 "Options concerning imenu and speedbar in Org-mode."
1706 :tag "Org Imenu and Speedbar"
1707 :group 'org-structure)
1709 (defcustom org-imenu-depth 2
1710 "The maximum level for Imenu access to Org-mode headlines.
1711 This also applied for speedbar access."
1712 :group 'org-imenu-and-speedbar
1713 :type 'integer)
1715 (defgroup org-table nil
1716 "Options concerning tables in Org-mode."
1717 :tag "Org Table"
1718 :group 'org)
1720 (defcustom org-enable-table-editor 'optimized
1721 "Non-nil means lines starting with \"|\" are handled by the table editor.
1722 When nil, such lines will be treated like ordinary lines.
1724 When equal to the symbol `optimized', the table editor will be optimized to
1725 do the following:
1726 - Automatic overwrite mode in front of whitespace in table fields.
1727 This makes the structure of the table stay in tact as long as the edited
1728 field does not exceed the column width.
1729 - Minimize the number of realigns. Normally, the table is aligned each time
1730 TAB or RET are pressed to move to another field. With optimization this
1731 happens only if changes to a field might have changed the column width.
1732 Optimization requires replacing the functions `self-insert-command',
1733 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1734 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1735 very good at guessing when a re-align will be necessary, but you can always
1736 force one with \\[org-ctrl-c-ctrl-c].
1738 If you would like to use the optimized version in Org-mode, but the
1739 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1741 This variable can be used to turn on and off the table editor during a session,
1742 but in order to toggle optimization, a restart is required.
1744 See also the variable `org-table-auto-blank-field'."
1745 :group 'org-table
1746 :type '(choice
1747 (const :tag "off" nil)
1748 (const :tag "on" t)
1749 (const :tag "on, optimized" optimized)))
1751 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1752 (version<= emacs-version "24.1"))
1753 "Non-nil means cluster self-insert commands for undo when possible.
1754 If this is set, then, like in the Emacs command loop, 20 consecutive
1755 characters will be undone together.
1756 This is configurable, because there is some impact on typing performance."
1757 :group 'org-table
1758 :type 'boolean)
1760 (defcustom org-table-tab-recognizes-table.el t
1761 "Non-nil means TAB will automatically notice a table.el table.
1762 When it sees such a table, it moves point into it and - if necessary -
1763 calls `table-recognize-table'."
1764 :group 'org-table-editing
1765 :type 'boolean)
1767 (defgroup org-link nil
1768 "Options concerning links in Org-mode."
1769 :tag "Org Link"
1770 :group 'org)
1772 (defvar org-link-abbrev-alist-local nil
1773 "Buffer-local version of `org-link-abbrev-alist', which see.
1774 The value of this is taken from the #+LINK lines.")
1775 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1777 (defcustom org-link-abbrev-alist nil
1778 "Alist of link abbreviations.
1779 The car of each element is a string, to be replaced at the start of a link.
1780 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1781 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1783 [[linkkey:tag][description]]
1785 The 'linkkey' must be a word word, starting with a letter, followed
1786 by letters, numbers, '-' or '_'.
1788 If REPLACE is a string, the tag will simply be appended to create the link.
1789 If the string contains \"%s\", the tag will be inserted there. If the string
1790 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1791 at that point (see the function `url-hexify-string'). If the string contains
1792 the specifier \"%(my-function)\", then the custom function `my-function' will
1793 be invoked: this function takes the tag as its only argument and must return
1794 a string.
1796 REPLACE may also be a function that will be called with the tag as the
1797 only argument to create the link, which should be returned as a string.
1799 See the manual for examples."
1800 :group 'org-link
1801 :type '(repeat
1802 (cons
1803 (string :tag "Protocol")
1804 (choice
1805 (string :tag "Format")
1806 (function)))))
1808 (defcustom org-descriptive-links t
1809 "Non-nil means Org will display descriptive links.
1810 E.g. [[http://orgmode.org][Org website]] will be displayed as
1811 \"Org Website\", hiding the link itself and just displaying its
1812 description. When set to `nil', Org will display the full links
1813 literally.
1815 You can interactively set the value of this variable by calling
1816 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1817 :group 'org-link
1818 :type 'boolean)
1820 (defcustom org-link-file-path-type 'adaptive
1821 "How the path name in file links should be stored.
1822 Valid values are:
1824 relative Relative to the current directory, i.e. the directory of the file
1825 into which the link is being inserted.
1826 absolute Absolute path, if possible with ~ for home directory.
1827 noabbrev Absolute path, no abbreviation of home directory.
1828 adaptive Use relative path for files in the current directory and sub-
1829 directories of it. For other files, use an absolute path."
1830 :group 'org-link
1831 :type '(choice
1832 (const relative)
1833 (const absolute)
1834 (const noabbrev)
1835 (const adaptive)))
1837 (defvaralias 'org-activate-links 'org-highlight-links)
1838 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1839 "Types of links that should be highlighted in Org-mode files.
1841 This is a list of symbols, each one of them leading to the
1842 highlighting of a certain link type.
1844 You can still open links that are not highlighted.
1846 In principle, it does not hurt to turn on highlighting for all
1847 link types. There may be a small gain when turning off unused
1848 link types. The types are:
1850 bracket The recommended [[link][description]] or [[link]] links with hiding.
1851 angle Links in angular brackets that may contain whitespace like
1852 <bbdb:Carsten Dominik>.
1853 plain Plain links in normal text, no whitespace, like http://google.com.
1854 radio Text that is matched by a radio target, see manual for details.
1855 tag Tag settings in a headline (link to tag search).
1856 date Time stamps (link to calendar).
1857 footnote Footnote labels.
1859 If you set this variable during an Emacs session, use `org-mode-restart'
1860 in the Org buffer so that the change takes effect."
1861 :group 'org-link
1862 :group 'org-appearance
1863 :type '(set :greedy t
1864 (const :tag "Double bracket links" bracket)
1865 (const :tag "Angular bracket links" angle)
1866 (const :tag "Plain text links" plain)
1867 (const :tag "Radio target matches" radio)
1868 (const :tag "Tags" tag)
1869 (const :tag "Timestamps" date)
1870 (const :tag "Footnotes" footnote)))
1872 (defcustom org-make-link-description-function nil
1873 "Function to use for generating link descriptions from links.
1874 When nil, the link location will be used. This function must take
1875 two parameters: the first one is the link, the second one is the
1876 description generated by `org-insert-link'. The function should
1877 return the description to use."
1878 :group 'org-link
1879 :type '(choice (const nil) (function)))
1881 (defgroup org-link-store nil
1882 "Options concerning storing links in Org-mode."
1883 :tag "Org Store Link"
1884 :group 'org-link)
1886 (defcustom org-url-hexify-p t
1887 "When non-nil, hexify URL when creating a link."
1888 :type 'boolean
1889 :version "24.3"
1890 :group 'org-link-store)
1892 (defcustom org-email-link-description-format "Email %c: %.30s"
1893 "Format of the description part of a link to an email or usenet message.
1894 The following %-escapes will be replaced by corresponding information:
1896 %F full \"From\" field
1897 %f name, taken from \"From\" field, address if no name
1898 %T full \"To\" field
1899 %t first name in \"To\" field, address if no name
1900 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1901 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1902 %s subject
1903 %d date
1904 %m message-id.
1906 You may use normal field width specification between the % and the letter.
1907 This is for example useful to limit the length of the subject.
1909 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1910 :group 'org-link-store
1911 :type 'string)
1913 (defcustom org-from-is-user-regexp
1914 (let (r1 r2)
1915 (when (and user-mail-address (not (string= user-mail-address "")))
1916 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1917 (when (and user-full-name (not (string= user-full-name "")))
1918 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1919 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1920 "Regexp matched against the \"From:\" header of an email or usenet message.
1921 It should match if the message is from the user him/herself."
1922 :group 'org-link-store
1923 :type 'regexp)
1925 (defcustom org-context-in-file-links t
1926 "Non-nil means file links from `org-store-link' contain context.
1927 A search string will be added to the file name with :: as separator and
1928 used to find the context when the link is activated by the command
1929 `org-open-at-point'. When this option is t, the entire active region
1930 will be placed in the search string of the file link. If set to a
1931 positive integer, only the first n lines of context will be stored.
1933 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1934 negates this setting for the duration of the command."
1935 :group 'org-link-store
1936 :type '(choice boolean integer))
1938 (defcustom org-keep-stored-link-after-insertion nil
1939 "Non-nil means keep link in list for entire session.
1941 The command `org-store-link' adds a link pointing to the current
1942 location to an internal list. These links accumulate during a session.
1943 The command `org-insert-link' can be used to insert links into any
1944 Org-mode file (offering completion for all stored links). When this
1945 option is nil, every link which has been inserted once using \\[org-insert-link]
1946 will be removed from the list, to make completing the unused links
1947 more efficient."
1948 :group 'org-link-store
1949 :type 'boolean)
1951 (defgroup org-link-follow nil
1952 "Options concerning following links in Org-mode."
1953 :tag "Org Follow Link"
1954 :group 'org-link)
1956 (defcustom org-link-translation-function nil
1957 "Function to translate links with different syntax to Org syntax.
1958 This can be used to translate links created for example by the Planner
1959 or emacs-wiki packages to Org syntax.
1960 The function must accept two parameters, a TYPE containing the link
1961 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1962 which is everything after the link protocol. It should return a cons
1963 with possibly modified values of type and path.
1964 Org contains a function for this, so if you set this variable to
1965 `org-translate-link-from-planner', you should be able follow many
1966 links created by planner."
1967 :group 'org-link-follow
1968 :type '(choice (const nil) (function)))
1970 (defcustom org-follow-link-hook nil
1971 "Hook that is run after a link has been followed."
1972 :group 'org-link-follow
1973 :type 'hook)
1975 (defcustom org-tab-follows-link nil
1976 "Non-nil means on links TAB will follow the link.
1977 Needs to be set before org.el is loaded.
1978 This really should not be used, it does not make sense, and the
1979 implementation is bad."
1980 :group 'org-link-follow
1981 :type 'boolean)
1983 (defcustom org-return-follows-link nil
1984 "Non-nil means on links RET will follow the link.
1985 In tables, the special behavior of RET has precedence."
1986 :group 'org-link-follow
1987 :type 'boolean)
1989 (defcustom org-mouse-1-follows-link
1990 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1991 "Non-nil means mouse-1 on a link will follow the link.
1992 A longer mouse click will still set point. Does not work on XEmacs.
1993 Needs to be set before org.el is loaded."
1994 :group 'org-link-follow
1995 :version "24.4"
1996 :package-version '(Org . "8.3")
1997 :type '(choice
1998 (const :tag "A double click follows the link" double)
1999 (const :tag "Unconditionally follow the link with mouse-1" t)
2000 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2002 (defcustom org-mark-ring-length 4
2003 "Number of different positions to be recorded in the ring.
2004 Changing this requires a restart of Emacs to work correctly."
2005 :group 'org-link-follow
2006 :type 'integer)
2008 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2009 "Non-nil means internal links in Org files must exactly match a headline.
2010 When nil, the link search tries to match a phrase with all words
2011 in the search text."
2012 :group 'org-link-follow
2013 :version "24.1"
2014 :type '(choice
2015 (const :tag "Use fuzzy text search" nil)
2016 (const :tag "Match only exact headline" t)
2017 (const :tag "Match exact headline or query to create it"
2018 query-to-create)))
2020 (defcustom org-link-frame-setup
2021 '((vm . vm-visit-folder-other-frame)
2022 (vm-imap . vm-visit-imap-folder-other-frame)
2023 (gnus . org-gnus-no-new-news)
2024 (file . find-file-other-window)
2025 (wl . wl-other-frame))
2026 "Setup the frame configuration for following links.
2027 When following a link with Emacs, it may often be useful to display
2028 this link in another window or frame. This variable can be used to
2029 set this up for the different types of links.
2030 For VM, use any of
2031 `vm-visit-folder'
2032 `vm-visit-folder-other-window'
2033 `vm-visit-folder-other-frame'
2034 For Gnus, use any of
2035 `gnus'
2036 `gnus-other-frame'
2037 `org-gnus-no-new-news'
2038 For FILE, use any of
2039 `find-file'
2040 `find-file-other-window'
2041 `find-file-other-frame'
2042 For Wanderlust use any of
2043 `wl'
2044 `wl-other-frame'
2045 For the calendar, use the variable `calendar-setup'.
2046 For BBDB, it is currently only possible to display the matches in
2047 another window."
2048 :group 'org-link-follow
2049 :type '(list
2050 (cons (const vm)
2051 (choice
2052 (const vm-visit-folder)
2053 (const vm-visit-folder-other-window)
2054 (const vm-visit-folder-other-frame)))
2055 (cons (const vm-imap)
2056 (choice
2057 (const vm-visit-imap-folder)
2058 (const vm-visit-imap-folder-other-window)
2059 (const vm-visit-imap-folder-other-frame)))
2060 (cons (const gnus)
2061 (choice
2062 (const gnus)
2063 (const gnus-other-frame)
2064 (const org-gnus-no-new-news)))
2065 (cons (const file)
2066 (choice
2067 (const find-file)
2068 (const find-file-other-window)
2069 (const find-file-other-frame)))
2070 (cons (const wl)
2071 (choice
2072 (const wl)
2073 (const wl-other-frame)))))
2075 (defcustom org-display-internal-link-with-indirect-buffer nil
2076 "Non-nil means use indirect buffer to display infile links.
2077 Activating internal links (from one location in a file to another location
2078 in the same file) normally just jumps to the location. When the link is
2079 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2080 is displayed in
2081 another window. When this option is set, the other window actually displays
2082 an indirect buffer clone of the current buffer, to avoid any visibility
2083 changes to the current buffer."
2084 :group 'org-link-follow
2085 :type 'boolean)
2087 (defcustom org-open-non-existing-files nil
2088 "Non-nil means `org-open-file' will open non-existing files.
2089 When nil, an error will be generated.
2090 This variable applies only to external applications because they
2091 might choke on non-existing files. If the link is to a file that
2092 will be opened in Emacs, the variable is ignored."
2093 :group 'org-link-follow
2094 :type 'boolean)
2096 (defcustom org-open-directory-means-index-dot-org nil
2097 "Non-nil means a link to a directory really means to index.org.
2098 When nil, following a directory link will run dired or open a finder/explorer
2099 window on that directory."
2100 :group 'org-link-follow
2101 :type 'boolean)
2103 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2104 "Non-nil means ask for confirmation before executing shell links.
2105 Shell links can be dangerous: just think about a link
2107 [[shell:rm -rf ~/*][Google Search]]
2109 This link would show up in your Org-mode document as \"Google Search\",
2110 but really it would remove your entire home directory.
2111 Therefore we advise against setting this variable to nil.
2112 Just change it to `y-or-n-p' if you want to confirm with a
2113 single keystroke rather than having to type \"yes\"."
2114 :group 'org-link-follow
2115 :type '(choice
2116 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2117 (const :tag "with y-or-n (faster)" y-or-n-p)
2118 (const :tag "no confirmation (dangerous)" nil)))
2119 (put 'org-confirm-shell-link-function
2120 'safe-local-variable
2121 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2123 (defcustom org-confirm-shell-link-not-regexp ""
2124 "A regexp to skip confirmation for shell links."
2125 :group 'org-link-follow
2126 :version "24.1"
2127 :type 'regexp)
2129 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2130 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2131 Elisp links can be dangerous: just think about a link
2133 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2135 This link would show up in your Org-mode document as \"Google Search\",
2136 but really it would remove your entire home directory.
2137 Therefore we advise against setting this variable to nil.
2138 Just change it to `y-or-n-p' if you want to confirm with a
2139 single keystroke rather than having to type \"yes\"."
2140 :group 'org-link-follow
2141 :type '(choice
2142 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2143 (const :tag "with y-or-n (faster)" y-or-n-p)
2144 (const :tag "no confirmation (dangerous)" nil)))
2145 (put 'org-confirm-shell-link-function
2146 'safe-local-variable
2147 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2149 (defcustom org-confirm-elisp-link-not-regexp ""
2150 "A regexp to skip confirmation for Elisp links."
2151 :group 'org-link-follow
2152 :version "24.1"
2153 :type 'regexp)
2155 (defconst org-file-apps-defaults-gnu
2156 '((remote . emacs)
2157 (system . mailcap)
2158 (t . mailcap))
2159 "Default file applications on a UNIX or GNU/Linux system.
2160 See `org-file-apps'.")
2162 (defconst org-file-apps-defaults-macosx
2163 '((remote . emacs)
2164 (t . "open %s")
2165 (system . "open %s")
2166 ("ps.gz" . "gv %s")
2167 ("eps.gz" . "gv %s")
2168 ("dvi" . "xdvi %s")
2169 ("fig" . "xfig %s"))
2170 "Default file applications on a MacOS X system.
2171 The system \"open\" is known as a default, but we use X11 applications
2172 for some files for which the OS does not have a good default.
2173 See `org-file-apps'.")
2175 (defconst org-file-apps-defaults-windowsnt
2176 (list
2177 '(remote . emacs)
2178 (cons t
2179 (list (if (featurep 'xemacs)
2180 'mswindows-shell-execute
2181 'w32-shell-execute)
2182 "open" 'file))
2183 (cons 'system
2184 (list (if (featurep 'xemacs)
2185 'mswindows-shell-execute
2186 'w32-shell-execute)
2187 "open" 'file)))
2188 "Default file applications on a Windows NT system.
2189 The system \"open\" is used for most files.
2190 See `org-file-apps'.")
2192 (defcustom org-file-apps
2193 '((auto-mode . emacs)
2194 ("\\.mm\\'" . default)
2195 ("\\.x?html?\\'" . default)
2196 ("\\.pdf\\'" . default))
2197 "External applications for opening `file:path' items in a document.
2198 Org-mode uses system defaults for different file types, but
2199 you can use this variable to set the application for a given file
2200 extension. The entries in this list are cons cells where the car identifies
2201 files and the cdr the corresponding command. Possible values for the
2202 file identifier are
2203 \"string\" A string as a file identifier can be interpreted in different
2204 ways, depending on its contents:
2206 - Alphanumeric characters only:
2207 Match links with this file extension.
2208 Example: (\"pdf\" . \"evince %s\")
2209 to open PDFs with evince.
2211 - Regular expression: Match links where the
2212 filename matches the regexp. If you want to
2213 use groups here, use shy groups.
2215 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2216 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2217 to open *.html and *.xhtml with firefox.
2219 - Regular expression which contains (non-shy) groups:
2220 Match links where the whole link, including \"::\", and
2221 anything after that, matches the regexp.
2222 In a custom command string, %1, %2, etc. are replaced with
2223 the parts of the link that were matched by the groups.
2224 For backwards compatibility, if a command string is given
2225 that does not use any of the group matches, this case is
2226 handled identically to the second one (i.e. match against
2227 file name only).
2228 In a custom lisp form, you can access the group matches with
2229 (match-string n link).
2231 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2232 to open [[file:document.pdf::5]] with evince at page 5.
2234 `directory' Matches a directory
2235 `remote' Matches a remote file, accessible through tramp or efs.
2236 Remote files most likely should be visited through Emacs
2237 because external applications cannot handle such paths.
2238 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2239 so all files Emacs knows how to handle. Using this with
2240 command `emacs' will open most files in Emacs. Beware that this
2241 will also open html files inside Emacs, unless you add
2242 (\"html\" . default) to the list as well.
2243 t Default for files not matched by any of the other options.
2244 `system' The system command to open files, like `open' on Windows
2245 and Mac OS X, and mailcap under GNU/Linux. This is the command
2246 that will be selected if you call `C-c C-o' with a double
2247 \\[universal-argument] \\[universal-argument] prefix.
2249 Possible values for the command are:
2250 `emacs' The file will be visited by the current Emacs process.
2251 `default' Use the default application for this file type, which is the
2252 association for t in the list, most likely in the system-specific
2253 part.
2254 This can be used to overrule an unwanted setting in the
2255 system-specific variable.
2256 `system' Use the system command for opening files, like \"open\".
2257 This command is specified by the entry whose car is `system'.
2258 Most likely, the system-specific version of this variable
2259 does define this command, but you can overrule/replace it
2260 here.
2261 string A command to be executed by a shell; %s will be replaced
2262 by the path to the file.
2263 sexp A Lisp form which will be evaluated. The file path will
2264 be available in the Lisp variable `file'.
2265 For more examples, see the system specific constants
2266 `org-file-apps-defaults-macosx'
2267 `org-file-apps-defaults-windowsnt'
2268 `org-file-apps-defaults-gnu'."
2269 :group 'org-link-follow
2270 :type '(repeat
2271 (cons (choice :value ""
2272 (string :tag "Extension")
2273 (const :tag "System command to open files" system)
2274 (const :tag "Default for unrecognized files" t)
2275 (const :tag "Remote file" remote)
2276 (const :tag "Links to a directory" directory)
2277 (const :tag "Any files that have Emacs modes"
2278 auto-mode))
2279 (choice :value ""
2280 (const :tag "Visit with Emacs" emacs)
2281 (const :tag "Use default" default)
2282 (const :tag "Use the system command" system)
2283 (string :tag "Command")
2284 (sexp :tag "Lisp form")))))
2286 (defcustom org-doi-server-url "http://dx.doi.org/"
2287 "The URL of the DOI server."
2288 :type 'string
2289 :version "24.3"
2290 :group 'org-link-follow)
2292 (defgroup org-refile nil
2293 "Options concerning refiling entries in Org-mode."
2294 :tag "Org Refile"
2295 :group 'org)
2297 (defcustom org-directory "~/org"
2298 "Directory with org files.
2299 This is just a default location to look for Org files. There is no need
2300 at all to put your files into this directory. It is only used in the
2301 following situations:
2303 1. When a capture template specifies a target file that is not an
2304 absolute path. The path will then be interpreted relative to
2305 `org-directory'
2306 2. When a capture note is filed away in an interactive way (when exiting the
2307 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2308 with `org-directory' as the default path."
2309 :group 'org-refile
2310 :group 'org-capture
2311 :type 'directory)
2313 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2314 "Default target for storing notes.
2315 Used as a fall back file for org-capture.el, for templates that
2316 do not specify a target file."
2317 :group 'org-refile
2318 :group 'org-capture
2319 :type '(choice
2320 (const :tag "Default from remember-data-file" nil)
2321 file))
2323 (defcustom org-goto-interface 'outline
2324 "The default interface to be used for `org-goto'.
2325 Allowed values are:
2326 outline The interface shows an outline of the relevant file
2327 and the correct heading is found by moving through
2328 the outline or by searching with incremental search.
2329 outline-path-completion Headlines in the current buffer are offered via
2330 completion. This is the interface also used by
2331 the refile command."
2332 :group 'org-refile
2333 :type '(choice
2334 (const :tag "Outline" outline)
2335 (const :tag "Outline-path-completion" outline-path-completion)))
2337 (defcustom org-goto-max-level 5
2338 "Maximum target level when running `org-goto' with refile interface."
2339 :group 'org-refile
2340 :type 'integer)
2342 (defcustom org-reverse-note-order nil
2343 "Non-nil means store new notes at the beginning of a file or entry.
2344 When nil, new notes will be filed to the end of a file or entry.
2345 This can also be a list with cons cells of regular expressions that
2346 are matched against file names, and values."
2347 :group 'org-capture
2348 :group 'org-refile
2349 :type '(choice
2350 (const :tag "Reverse always" t)
2351 (const :tag "Reverse never" nil)
2352 (repeat :tag "By file name regexp"
2353 (cons regexp boolean))))
2355 (defcustom org-log-refile nil
2356 "Information to record when a task is refiled.
2358 Possible values are:
2360 nil Don't add anything
2361 time Add a time stamp to the task
2362 note Prompt for a note and add it with template `org-log-note-headings'
2364 This option can also be set with on a per-file-basis with
2366 #+STARTUP: nologrefile
2367 #+STARTUP: logrefile
2368 #+STARTUP: lognoterefile
2370 You can have local logging settings for a subtree by setting the LOGGING
2371 property to one or more of these keywords.
2373 When bulk-refiling from the agenda, the value `note' is forbidden and
2374 will temporarily be changed to `time'."
2375 :group 'org-refile
2376 :group 'org-progress
2377 :version "24.1"
2378 :type '(choice
2379 (const :tag "No logging" nil)
2380 (const :tag "Record timestamp" time)
2381 (const :tag "Record timestamp with note." note)))
2383 (defcustom org-refile-targets nil
2384 "Targets for refiling entries with \\[org-refile].
2385 This is a list of cons cells. Each cell contains:
2386 - a specification of the files to be considered, either a list of files,
2387 or a symbol whose function or variable value will be used to retrieve
2388 a file name or a list of file names. If you use `org-agenda-files' for
2389 that, all agenda files will be scanned for targets. Nil means consider
2390 headings in the current buffer.
2391 - A specification of how to find candidate refile targets. This may be
2392 any of:
2393 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2394 This tag has to be present in all target headlines, inheritance will
2395 not be considered.
2396 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2397 todo keyword.
2398 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2399 headlines that are refiling targets.
2400 - a cons cell (:level . N). Any headline of level N is considered a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2403 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2404 Note that, when `org-odd-levels-only' is set, level corresponds to
2405 order in hierarchy, not to the number of stars.
2407 Each element of this list generates a set of possible targets.
2408 The union of these sets is presented (with completion) to
2409 the user by `org-refile'.
2411 You can set the variable `org-refile-target-verify-function' to a function
2412 to verify each headline found by the simple criteria above.
2414 When this variable is nil, all top-level headlines in the current buffer
2415 are used, equivalent to the value `((nil . (:level . 1))'."
2416 :group 'org-refile
2417 :type '(repeat
2418 (cons
2419 (choice :value org-agenda-files
2420 (const :tag "All agenda files" org-agenda-files)
2421 (const :tag "Current buffer" nil)
2422 (function) (variable) (file))
2423 (choice :tag "Identify target headline by"
2424 (cons :tag "Specific tag" (const :value :tag) (string))
2425 (cons :tag "TODO keyword" (const :value :todo) (string))
2426 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2427 (cons :tag "Level number" (const :value :level) (integer))
2428 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2430 (defcustom org-refile-target-verify-function nil
2431 "Function to verify if the headline at point should be a refile target.
2432 The function will be called without arguments, with point at the
2433 beginning of the headline. It should return t and leave point
2434 where it is if the headline is a valid target for refiling.
2436 If the target should not be selected, the function must return nil.
2437 In addition to this, it may move point to a place from where the search
2438 should be continued. For example, the function may decide that the entire
2439 subtree of the current entry should be excluded and move point to the end
2440 of the subtree."
2441 :group 'org-refile
2442 :type '(choice
2443 (const nil)
2444 (function)))
2446 (defcustom org-refile-use-cache nil
2447 "Non-nil means cache refile targets to speed up the process.
2448 The cache for a particular file will be updated automatically when
2449 the buffer has been killed, or when any of the marker used for flagging
2450 refile targets no longer points at a live buffer.
2451 If you have added new entries to a buffer that might themselves be targets,
2452 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2453 find that easier, `C-u C-u C-u C-c C-w'."
2454 :group 'org-refile
2455 :version "24.1"
2456 :type 'boolean)
2458 (defcustom org-refile-use-outline-path nil
2459 "Non-nil means provide refile targets as paths.
2460 So a level 3 headline will be available as level1/level2/level3.
2462 When the value is `file', also include the file name (without directory)
2463 into the path. In this case, you can also stop the completion after
2464 the file name, to get entries inserted as top level in the file.
2466 When `full-file-path', include the full file path."
2467 :group 'org-refile
2468 :type '(choice
2469 (const :tag "Not" nil)
2470 (const :tag "Yes" t)
2471 (const :tag "Start with file name" file)
2472 (const :tag "Start with full file path" full-file-path)))
2474 (defcustom org-outline-path-complete-in-steps t
2475 "Non-nil means complete the outline path in hierarchical steps.
2476 When Org-mode uses the refile interface to select an outline path
2477 \(see variable `org-refile-use-outline-path'), the completion of
2478 the path can be done is a single go, or if can be done in steps down
2479 the headline hierarchy. Going in steps is probably the best if you
2480 do not use a special completion package like `ido' or `icicles'.
2481 However, when using these packages, going in one step can be very
2482 fast, while still showing the whole path to the entry."
2483 :group 'org-refile
2484 :type 'boolean)
2486 (defcustom org-refile-allow-creating-parent-nodes nil
2487 "Non-nil means allow to create new nodes as refile targets.
2488 New nodes are then created by adding \"/new node name\" to the completion
2489 of an existing node. When the value of this variable is `confirm',
2490 new node creation must be confirmed by the user (recommended).
2491 When nil, the completion must match an existing entry.
2493 Note that, if the new heading is not seen by the criteria
2494 listed in `org-refile-targets', multiple instances of the same
2495 heading would be created by trying again to file under the new
2496 heading."
2497 :group 'org-refile
2498 :type '(choice
2499 (const :tag "Never" nil)
2500 (const :tag "Always" t)
2501 (const :tag "Prompt for confirmation" confirm)))
2503 (defcustom org-refile-active-region-within-subtree nil
2504 "Non-nil means also refile active region within a subtree.
2506 By default `org-refile' doesn't allow refiling regions if they
2507 don't contain a set of subtrees, but it might be convenient to
2508 do so sometimes: in that case, the first line of the region is
2509 converted to a headline before refiling."
2510 :group 'org-refile
2511 :version "24.1"
2512 :type 'boolean)
2514 (defgroup org-todo nil
2515 "Options concerning TODO items in Org-mode."
2516 :tag "Org TODO"
2517 :group 'org)
2519 (defgroup org-progress nil
2520 "Options concerning Progress logging in Org-mode."
2521 :tag "Org Progress"
2522 :group 'org-time)
2524 (defvar org-todo-interpretation-widgets
2525 '((:tag "Sequence (cycling hits every state)" sequence)
2526 (:tag "Type (cycling directly to DONE)" type))
2527 "The available interpretation symbols for customizing `org-todo-keywords'.
2528 Interested libraries should add to this list.")
2530 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2531 "List of TODO entry keyword sequences and their interpretation.
2532 \\<org-mode-map>This is a list of sequences.
2534 Each sequence starts with a symbol, either `sequence' or `type',
2535 indicating if the keywords should be interpreted as a sequence of
2536 action steps, or as different types of TODO items. The first
2537 keywords are states requiring action - these states will select a headline
2538 for inclusion into the global TODO list Org-mode produces. If one of
2539 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2540 signify that no further action is necessary. If \"|\" is not found,
2541 the last keyword is treated as the only DONE state of the sequence.
2543 The command \\[org-todo] cycles an entry through these states, and one
2544 additional state where no keyword is present. For details about this
2545 cycling, see the manual.
2547 TODO keywords and interpretation can also be set on a per-file basis with
2548 the special #+SEQ_TODO and #+TYP_TODO lines.
2550 Each keyword can optionally specify a character for fast state selection
2551 \(in combination with the variable `org-use-fast-todo-selection')
2552 and specifiers for state change logging, using the same syntax that
2553 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2554 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2555 indicates to record a time stamp each time this state is selected.
2557 Each keyword may also specify if a timestamp or a note should be
2558 recorded when entering or leaving the state, by adding additional
2559 characters in the parenthesis after the keyword. This looks like this:
2560 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2561 record only the time of the state change. With X and Y being either
2562 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2563 Y when leaving the state if and only if the *target* state does not
2564 define X. You may omit any of the fast-selection key or X or /Y,
2565 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2567 For backward compatibility, this variable may also be just a list
2568 of keywords. In this case the interpretation (sequence or type) will be
2569 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2570 :group 'org-todo
2571 :group 'org-keywords
2572 :type '(choice
2573 (repeat :tag "Old syntax, just keywords"
2574 (string :tag "Keyword"))
2575 (repeat :tag "New syntax"
2576 (cons
2577 (choice
2578 :tag "Interpretation"
2579 ;;Quick and dirty way to see
2580 ;;`org-todo-interpretations'. This takes the
2581 ;;place of item arguments
2582 :convert-widget
2583 (lambda (widget)
2584 (widget-put widget
2585 :args (mapcar
2586 (lambda (x)
2587 (widget-convert
2588 (cons 'const x)))
2589 org-todo-interpretation-widgets))
2590 widget))
2591 (repeat
2592 (string :tag "Keyword"))))))
2594 (defvar org-todo-keywords-1 nil
2595 "All TODO and DONE keywords active in a buffer.")
2596 (make-variable-buffer-local 'org-todo-keywords-1)
2597 (defvar org-todo-keywords-for-agenda nil)
2598 (defvar org-done-keywords-for-agenda nil)
2599 (defvar org-todo-keyword-alist-for-agenda nil)
2600 (defvar org-tag-alist-for-agenda nil
2601 "Alist of all tags from all agenda files.")
2602 (defvar org-tag-groups-alist-for-agenda nil
2603 "Alist of all groups tags from all current agenda files.")
2604 (defvar org-tag-groups-alist nil)
2605 (make-variable-buffer-local 'org-tag-groups-alist)
2606 (defvar org-agenda-contributing-files nil)
2607 (defvar org-not-done-keywords nil)
2608 (make-variable-buffer-local 'org-not-done-keywords)
2609 (defvar org-done-keywords nil)
2610 (make-variable-buffer-local 'org-done-keywords)
2611 (defvar org-todo-heads nil)
2612 (make-variable-buffer-local 'org-todo-heads)
2613 (defvar org-todo-sets nil)
2614 (make-variable-buffer-local 'org-todo-sets)
2615 (defvar org-todo-log-states nil)
2616 (make-variable-buffer-local 'org-todo-log-states)
2617 (defvar org-todo-kwd-alist nil)
2618 (make-variable-buffer-local 'org-todo-kwd-alist)
2619 (defvar org-todo-key-alist nil)
2620 (make-variable-buffer-local 'org-todo-key-alist)
2621 (defvar org-todo-key-trigger nil)
2622 (make-variable-buffer-local 'org-todo-key-trigger)
2624 (defcustom org-todo-interpretation 'sequence
2625 "Controls how TODO keywords are interpreted.
2626 This variable is in principle obsolete and is only used for
2627 backward compatibility, if the interpretation of todo keywords is
2628 not given already in `org-todo-keywords'. See that variable for
2629 more information."
2630 :group 'org-todo
2631 :group 'org-keywords
2632 :type '(choice (const sequence)
2633 (const type)))
2635 (defcustom org-use-fast-todo-selection t
2636 "Non-nil means use the fast todo selection scheme with C-c C-t.
2637 This variable describes if and under what circumstances the cycling
2638 mechanism for TODO keywords will be replaced by a single-key, direct
2639 selection scheme.
2641 When nil, fast selection is never used.
2643 When the symbol `prefix', it will be used when `org-todo' is called
2644 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2645 `C-u t' in an agenda buffer.
2647 When t, fast selection is used by default. In this case, the prefix
2648 argument forces cycling instead.
2650 In all cases, the special interface is only used if access keys have
2651 actually been assigned by the user, i.e. if keywords in the configuration
2652 are followed by a letter in parenthesis, like TODO(t)."
2653 :group 'org-todo
2654 :type '(choice
2655 (const :tag "Never" nil)
2656 (const :tag "By default" t)
2657 (const :tag "Only with C-u C-c C-t" prefix)))
2659 (defcustom org-provide-todo-statistics t
2660 "Non-nil means update todo statistics after insert and toggle.
2661 ALL-HEADLINES means update todo statistics by including headlines
2662 with no TODO keyword as well, counting them as not done.
2663 A list of TODO keywords means the same, but skip keywords that are
2664 not in this list.
2665 When set to a list of two lists, the first list contains keywords
2666 to consider as TODO keywords, the second list contains keywords
2667 to consider as DONE keywords.
2669 When this is set, todo statistics is updated in the parent of the
2670 current entry each time a todo state is changed."
2671 :group 'org-todo
2672 :type '(choice
2673 (const :tag "Yes, only for TODO entries" t)
2674 (const :tag "Yes, including all entries" all-headlines)
2675 (repeat :tag "Yes, for TODOs in this list"
2676 (string :tag "TODO keyword"))
2677 (list :tag "Yes, for TODOs and DONEs in these lists"
2678 (repeat (string :tag "TODO keyword"))
2679 (repeat (string :tag "DONE keyword")))
2680 (other :tag "No TODO statistics" nil)))
2682 (defcustom org-hierarchical-todo-statistics t
2683 "Non-nil means TODO statistics covers just direct children.
2684 When nil, all entries in the subtree are considered.
2685 This has only an effect if `org-provide-todo-statistics' is set.
2686 To set this to nil for only a single subtree, use a COOKIE_DATA
2687 property and include the word \"recursive\" into the value."
2688 :group 'org-todo
2689 :type 'boolean)
2691 (defcustom org-after-todo-state-change-hook nil
2692 "Hook which is run after the state of a TODO item was changed.
2693 The new state (a string with a TODO keyword, or nil) is available in the
2694 Lisp variable `org-state'."
2695 :group 'org-todo
2696 :type 'hook)
2698 (defvar org-blocker-hook nil
2699 "Hook for functions that are allowed to block a state change.
2701 Functions in this hook should not modify the buffer.
2702 Each function gets as its single argument a property list,
2703 see `org-trigger-hook' for more information about this list.
2705 If any of the functions in this hook returns nil, the state change
2706 is blocked.")
2708 (defvar org-trigger-hook nil
2709 "Hook for functions that are triggered by a state change.
2711 Each function gets as its single argument a property list with at
2712 least the following elements:
2714 (:type type-of-change :position pos-at-entry-start
2715 :from old-state :to new-state)
2717 Depending on the type, more properties may be present.
2719 This mechanism is currently implemented for:
2721 TODO state changes
2722 ------------------
2723 :type todo-state-change
2724 :from previous state (keyword as a string), or nil, or a symbol
2725 'todo' or 'done', to indicate the general type of state.
2726 :to new state, like in :from")
2728 (defcustom org-enforce-todo-dependencies nil
2729 "Non-nil means undone TODO entries will block switching the parent to DONE.
2730 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2731 be blocked if any prior sibling is not yet done.
2732 Finally, if the parent is blocked because of ordered siblings of its own,
2733 the child will also be blocked."
2734 :set (lambda (var val)
2735 (set var val)
2736 (if val
2737 (add-hook 'org-blocker-hook
2738 'org-block-todo-from-children-or-siblings-or-parent)
2739 (remove-hook 'org-blocker-hook
2740 'org-block-todo-from-children-or-siblings-or-parent)))
2741 :group 'org-todo
2742 :type 'boolean)
2744 (defcustom org-enforce-todo-checkbox-dependencies nil
2745 "Non-nil means unchecked boxes will block switching the parent to DONE.
2746 When this is nil, checkboxes have no influence on switching TODO states.
2747 When non-nil, you first need to check off all check boxes before the TODO
2748 entry can be switched to DONE.
2749 This variable needs to be set before org.el is loaded, and you need to
2750 restart Emacs after a change to make the change effective. The only way
2751 to change is while Emacs is running is through the customize interface."
2752 :set (lambda (var val)
2753 (set var val)
2754 (if val
2755 (add-hook 'org-blocker-hook
2756 'org-block-todo-from-checkboxes)
2757 (remove-hook 'org-blocker-hook
2758 'org-block-todo-from-checkboxes)))
2759 :group 'org-todo
2760 :type 'boolean)
2762 (defcustom org-treat-insert-todo-heading-as-state-change nil
2763 "Non-nil means inserting a TODO heading is treated as state change.
2764 So when the command \\[org-insert-todo-heading] is used, state change
2765 logging will apply if appropriate. When nil, the new TODO item will
2766 be inserted directly, and no logging will take place."
2767 :group 'org-todo
2768 :type 'boolean)
2770 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2771 "Non-nil means switching TODO states with S-cursor counts as state change.
2772 This is the default behavior. However, setting this to nil allows a
2773 convenient way to select a TODO state and bypass any logging associated
2774 with that."
2775 :group 'org-todo
2776 :type 'boolean)
2778 (defcustom org-todo-state-tags-triggers nil
2779 "Tag changes that should be triggered by TODO state changes.
2780 This is a list. Each entry is
2782 (state-change (tag . flag) .......)
2784 State-change can be a string with a state, and empty string to indicate the
2785 state that has no TODO keyword, or it can be one of the symbols `todo'
2786 or `done', meaning any not-done or done state, respectively."
2787 :group 'org-todo
2788 :group 'org-tags
2789 :type '(repeat
2790 (cons (choice :tag "When changing to"
2791 (const :tag "Not-done state" todo)
2792 (const :tag "Done state" done)
2793 (string :tag "State"))
2794 (repeat
2795 (cons :tag "Tag action"
2796 (string :tag "Tag")
2797 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2799 (defcustom org-log-done nil
2800 "Information to record when a task moves to the DONE state.
2802 Possible values are:
2804 nil Don't add anything, just change the keyword
2805 time Add a time stamp to the task
2806 note Prompt for a note and add it with template `org-log-note-headings'
2808 This option can also be set with on a per-file-basis with
2810 #+STARTUP: nologdone
2811 #+STARTUP: logdone
2812 #+STARTUP: lognotedone
2814 You can have local logging settings for a subtree by setting the LOGGING
2815 property to one or more of these keywords."
2816 :group 'org-todo
2817 :group 'org-progress
2818 :type '(choice
2819 (const :tag "No logging" nil)
2820 (const :tag "Record CLOSED timestamp" time)
2821 (const :tag "Record CLOSED timestamp with note." note)))
2823 ;; Normalize old uses of org-log-done.
2824 (cond
2825 ((eq org-log-done t) (setq org-log-done 'time))
2826 ((and (listp org-log-done) (memq 'done org-log-done))
2827 (setq org-log-done 'note)))
2829 (defcustom org-log-reschedule nil
2830 "Information to record when the scheduling date of a tasks is modified.
2832 Possible values are:
2834 nil Don't add anything, just change the date
2835 time Add a time stamp to the task
2836 note Prompt for a note and add it with template `org-log-note-headings'
2838 This option can also be set with on a per-file-basis with
2840 #+STARTUP: nologreschedule
2841 #+STARTUP: logreschedule
2842 #+STARTUP: lognotereschedule"
2843 :group 'org-todo
2844 :group 'org-progress
2845 :type '(choice
2846 (const :tag "No logging" nil)
2847 (const :tag "Record timestamp" time)
2848 (const :tag "Record timestamp with note." note)))
2850 (defcustom org-log-redeadline nil
2851 "Information to record when the deadline date of a tasks is modified.
2853 Possible values are:
2855 nil Don't add anything, just change the date
2856 time Add a time stamp to the task
2857 note Prompt for a note and add it with template `org-log-note-headings'
2859 This option can also be set with on a per-file-basis with
2861 #+STARTUP: nologredeadline
2862 #+STARTUP: logredeadline
2863 #+STARTUP: lognoteredeadline
2865 You can have local logging settings for a subtree by setting the LOGGING
2866 property to one or more of these keywords."
2867 :group 'org-todo
2868 :group 'org-progress
2869 :type '(choice
2870 (const :tag "No logging" nil)
2871 (const :tag "Record timestamp" time)
2872 (const :tag "Record timestamp with note." note)))
2874 (defcustom org-log-note-clock-out nil
2875 "Non-nil means record a note when clocking out of an item.
2876 This can also be configured on a per-file basis by adding one of
2877 the following lines anywhere in the buffer:
2879 #+STARTUP: lognoteclock-out
2880 #+STARTUP: nolognoteclock-out"
2881 :group 'org-todo
2882 :group 'org-progress
2883 :type 'boolean)
2885 (defcustom org-log-done-with-time t
2886 "Non-nil means the CLOSED time stamp will contain date and time.
2887 When nil, only the date will be recorded."
2888 :group 'org-progress
2889 :type 'boolean)
2891 (defcustom org-log-note-headings
2892 '((done . "CLOSING NOTE %t")
2893 (state . "State %-12s from %-12S %t")
2894 (note . "Note taken on %t")
2895 (reschedule . "Rescheduled from %S on %t")
2896 (delschedule . "Not scheduled, was %S on %t")
2897 (redeadline . "New deadline from %S on %t")
2898 (deldeadline . "Removed deadline, was %S on %t")
2899 (refile . "Refiled on %t")
2900 (clock-out . ""))
2901 "Headings for notes added to entries.
2902 The value is an alist, with the car being a symbol indicating the note
2903 context, and the cdr is the heading to be used. The heading may also be the
2904 empty string.
2905 %t in the heading will be replaced by a time stamp.
2906 %T will be an active time stamp instead the default inactive one
2907 %d will be replaced by a short-format time stamp.
2908 %D will be replaced by an active short-format time stamp.
2909 %s will be replaced by the new TODO state, in double quotes.
2910 %S will be replaced by the old TODO state, in double quotes.
2911 %u will be replaced by the user name.
2912 %U will be replaced by the full user name.
2914 In fact, it is not a good idea to change the `state' entry, because
2915 agenda log mode depends on the format of these entries."
2916 :group 'org-todo
2917 :group 'org-progress
2918 :type '(list :greedy t
2919 (cons (const :tag "Heading when closing an item" done) string)
2920 (cons (const :tag
2921 "Heading when changing todo state (todo sequence only)"
2922 state) string)
2923 (cons (const :tag "Heading when just taking a note" note) string)
2924 (cons (const :tag "Heading when rescheduling" reschedule) string)
2925 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2926 (cons (const :tag "Heading when changing deadline" redeadline) string)
2927 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2928 (cons (const :tag "Heading when refiling" refile) string)
2929 (cons (const :tag "Heading when clocking out" clock-out) string)))
2931 (unless (assq 'note org-log-note-headings)
2932 (push '(note . "%t") org-log-note-headings))
2934 (defcustom org-log-into-drawer nil
2935 "Non-nil means insert state change notes and time stamps into a drawer.
2936 When nil, state changes notes will be inserted after the headline and
2937 any scheduling and clock lines, but not inside a drawer.
2939 The value of this variable should be the name of the drawer to use.
2940 LOGBOOK is proposed as the default drawer for this purpose, you can
2941 also set this to a string to define the drawer of your choice.
2943 A value of t is also allowed, representing \"LOGBOOK\".
2945 A value of t or nil can also be set with on a per-file-basis with
2947 #+STARTUP: logdrawer
2948 #+STARTUP: nologdrawer
2950 If this variable is set, `org-log-state-notes-insert-after-drawers'
2951 will be ignored.
2953 You can set the property LOG_INTO_DRAWER to overrule this setting for
2954 a subtree."
2955 :group 'org-todo
2956 :group 'org-progress
2957 :type '(choice
2958 (const :tag "Not into a drawer" nil)
2959 (const :tag "LOGBOOK" t)
2960 (string :tag "Other")))
2962 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2964 (defun org-log-into-drawer ()
2965 "Return the value of `org-log-into-drawer', but let properties overrule.
2966 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2967 used instead of the default value."
2968 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2969 (cond
2970 ((not p) org-log-into-drawer)
2971 ((equal p "nil") nil)
2972 ((equal p "t") "LOGBOOK")
2973 (t p))))
2975 (defcustom org-log-state-notes-insert-after-drawers nil
2976 "Non-nil means insert state change notes after any drawers in entry.
2977 Only the drawers that *immediately* follow the headline and the
2978 deadline/scheduled line are skipped.
2979 When nil, insert notes right after the heading and perhaps the line
2980 with deadline/scheduling if present.
2982 This variable will have no effect if `org-log-into-drawer' is
2983 set."
2984 :group 'org-todo
2985 :group 'org-progress
2986 :type 'boolean)
2988 (defcustom org-log-states-order-reversed t
2989 "Non-nil means the latest state note will be directly after heading.
2990 When nil, the state change notes will be ordered according to time.
2992 This option can also be set with on a per-file-basis with
2994 #+STARTUP: logstatesreversed
2995 #+STARTUP: nologstatesreversed"
2996 :group 'org-todo
2997 :group 'org-progress
2998 :type 'boolean)
3000 (defcustom org-todo-repeat-to-state nil
3001 "The TODO state to which a repeater should return the repeating task.
3002 By default this is the first task in a TODO sequence, or the previous state
3003 in a TODO_TYP set. But you can specify another task here.
3004 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3005 :group 'org-todo
3006 :version "24.1"
3007 :type '(choice (const :tag "Head of sequence" nil)
3008 (string :tag "Specific state")))
3010 (defcustom org-log-repeat 'time
3011 "Non-nil means record moving through the DONE state when triggering repeat.
3012 An auto-repeating task is immediately switched back to TODO when
3013 marked DONE. If you are not logging state changes (by adding \"@\"
3014 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3015 record a closing note, there will be no record of the task moving
3016 through DONE. This variable forces taking a note anyway.
3018 nil Don't force a record
3019 time Record a time stamp
3020 note Prompt for a note and add it with template `org-log-note-headings'
3022 This option can also be set with on a per-file-basis with
3024 #+STARTUP: nologrepeat
3025 #+STARTUP: logrepeat
3026 #+STARTUP: lognoterepeat
3028 You can have local logging settings for a subtree by setting the LOGGING
3029 property to one or more of these keywords."
3030 :group 'org-todo
3031 :group 'org-progress
3032 :type '(choice
3033 (const :tag "Don't force a record" nil)
3034 (const :tag "Force recording the DONE state" time)
3035 (const :tag "Force recording a note with the DONE state" note)))
3038 (defgroup org-priorities nil
3039 "Priorities in Org-mode."
3040 :tag "Org Priorities"
3041 :group 'org-todo)
3043 (defcustom org-enable-priority-commands t
3044 "Non-nil means priority commands are active.
3045 When nil, these commands will be disabled, so that you never accidentally
3046 set a priority."
3047 :group 'org-priorities
3048 :type 'boolean)
3050 (defcustom org-highest-priority ?A
3051 "The highest priority of TODO items. A character like ?A, ?B etc.
3052 Must have a smaller ASCII number than `org-lowest-priority'."
3053 :group 'org-priorities
3054 :type 'character)
3056 (defcustom org-lowest-priority ?C
3057 "The lowest priority of TODO items. A character like ?A, ?B etc.
3058 Must have a larger ASCII number than `org-highest-priority'."
3059 :group 'org-priorities
3060 :type 'character)
3062 (defcustom org-default-priority ?B
3063 "The default priority of TODO items.
3064 This is the priority an item gets if no explicit priority is given.
3065 When starting to cycle on an empty priority the first step in the cycle
3066 depends on `org-priority-start-cycle-with-default'. The resulting first
3067 step priority must not exceed the range from `org-highest-priority' to
3068 `org-lowest-priority' which means that `org-default-priority' has to be
3069 in this range exclusive or inclusive the range boundaries. Else the
3070 first step refuses to set the default and the second will fall back
3071 to (depending on the command used) the highest or lowest priority."
3072 :group 'org-priorities
3073 :type 'character)
3075 (defcustom org-priority-start-cycle-with-default t
3076 "Non-nil means start with default priority when starting to cycle.
3077 When this is nil, the first step in the cycle will be (depending on the
3078 command used) one higher or lower than the default priority.
3079 See also `org-default-priority'."
3080 :group 'org-priorities
3081 :type 'boolean)
3083 (defcustom org-get-priority-function nil
3084 "Function to extract the priority from a string.
3085 The string is normally the headline. If this is nil Org computes the
3086 priority from the priority cookie like [#A] in the headline. It returns
3087 an integer, increasing by 1000 for each priority level.
3088 The user can set a different function here, which should take a string
3089 as an argument and return the numeric priority."
3090 :group 'org-priorities
3091 :version "24.1"
3092 :type '(choice
3093 (const nil)
3094 (function)))
3096 (defgroup org-time nil
3097 "Options concerning time stamps and deadlines in Org-mode."
3098 :tag "Org Time"
3099 :group 'org)
3101 (defcustom org-insert-labeled-timestamps-at-point nil
3102 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
3103 When nil, these labeled time stamps are forces into the second line of an
3104 entry, just after the headline. When scheduling from the global TODO list,
3105 the time stamp will always be forced into the second line."
3106 :group 'org-time
3107 :type 'boolean)
3109 (defcustom org-time-stamp-rounding-minutes '(0 5)
3110 "Number of minutes to round time stamps to.
3111 These are two values, the first applies when first creating a time stamp.
3112 The second applies when changing it with the commands `S-up' and `S-down'.
3113 When changing the time stamp, this means that it will change in steps
3114 of N minutes, as given by the second value.
3116 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3117 numbers should be factors of 60, so for example 5, 10, 15.
3119 When this is larger than 1, you can still force an exact time stamp by using
3120 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3121 and by using a prefix arg to `S-up/down' to specify the exact number
3122 of minutes to shift."
3123 :group 'org-time
3124 :get (lambda (var) ; Make sure both elements are there
3125 (if (integerp (default-value var))
3126 (list (default-value var) 5)
3127 (default-value var)))
3128 :type '(list
3129 (integer :tag "when inserting times")
3130 (integer :tag "when modifying times")))
3132 ;; Normalize old customizations of this variable.
3133 (when (integerp org-time-stamp-rounding-minutes)
3134 (setq org-time-stamp-rounding-minutes
3135 (list org-time-stamp-rounding-minutes
3136 org-time-stamp-rounding-minutes)))
3138 (defcustom org-display-custom-times nil
3139 "Non-nil means overlay custom formats over all time stamps.
3140 The formats are defined through the variable `org-time-stamp-custom-formats'.
3141 To turn this on on a per-file basis, insert anywhere in the file:
3142 #+STARTUP: customtime"
3143 :group 'org-time
3144 :set 'set-default
3145 :type 'sexp)
3146 (make-variable-buffer-local 'org-display-custom-times)
3148 (defcustom org-time-stamp-custom-formats
3149 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3150 "Custom formats for time stamps. See `format-time-string' for the syntax.
3151 These are overlaid over the default ISO format if the variable
3152 `org-display-custom-times' is set. Time like %H:%M should be at the
3153 end of the second format. The custom formats are also honored by export
3154 commands, if custom time display is turned on at the time of export."
3155 :group 'org-time
3156 :type 'sexp)
3158 (defun org-time-stamp-format (&optional long inactive)
3159 "Get the right format for a time string."
3160 (let ((f (if long (cdr org-time-stamp-formats)
3161 (car org-time-stamp-formats))))
3162 (if inactive
3163 (concat "[" (substring f 1 -1) "]")
3164 f)))
3166 (defcustom org-time-clocksum-format
3167 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3168 "The format string used when creating CLOCKSUM lines.
3169 This is also used when Org mode generates a time duration.
3171 The value can be a single format string containing two
3172 %-sequences, which will be filled with the number of hours and
3173 minutes in that order.
3175 Alternatively, the value can be a plist associating any of the
3176 keys :years, :months, :weeks, :days, :hours or :minutes with
3177 format strings. The time duration is formatted using only the
3178 time components that are needed and concatenating the results.
3179 If a time unit in absent, it falls back to the next smallest
3180 unit.
3182 The keys :require-years, :require-months, :require-days,
3183 :require-weeks, :require-hours, :require-minutes are also
3184 meaningful. A non-nil value for these keys indicates that the
3185 corresponding time component should always be included, even if
3186 its value is 0.
3189 For example,
3191 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3192 :require-minutes t)
3194 means durations longer than a day will be expressed in days,
3195 hours and minutes, and durations less than a day will always be
3196 expressed in hours and minutes (even for durations less than an
3197 hour).
3199 The value
3201 \(:days \"%dd\" :minutes \"%dm\")
3203 means durations longer than a day will be expressed in days and
3204 minutes, and durations less than a day will be expressed entirely
3205 in minutes (even for durations longer than an hour)."
3206 :group 'org-time
3207 :group 'org-clock
3208 :version "24.4"
3209 :package-version '(Org . "8.0")
3210 :type '(choice (string :tag "Format string")
3211 (set :tag "Plist"
3212 (group :inline t (const :tag "Years" :years)
3213 (string :tag "Format string"))
3214 (group :inline t
3215 (const :tag "Always show years" :require-years)
3216 (const t))
3217 (group :inline t (const :tag "Months" :months)
3218 (string :tag "Format string"))
3219 (group :inline t
3220 (const :tag "Always show months" :require-months)
3221 (const t))
3222 (group :inline t (const :tag "Weeks" :weeks)
3223 (string :tag "Format string"))
3224 (group :inline t
3225 (const :tag "Always show weeks" :require-weeks)
3226 (const t))
3227 (group :inline t (const :tag "Days" :days)
3228 (string :tag "Format string"))
3229 (group :inline t
3230 (const :tag "Always show days" :require-days)
3231 (const t))
3232 (group :inline t (const :tag "Hours" :hours)
3233 (string :tag "Format string"))
3234 (group :inline t
3235 (const :tag "Always show hours" :require-hours)
3236 (const t))
3237 (group :inline t (const :tag "Minutes" :minutes)
3238 (string :tag "Format string"))
3239 (group :inline t
3240 (const :tag "Always show minutes" :require-minutes)
3241 (const t)))))
3243 (defcustom org-time-clocksum-use-fractional nil
3244 "When non-nil, \\[org-clock-display] uses fractional times.
3245 See `org-time-clocksum-format' for more on time clock formats."
3246 :group 'org-time
3247 :group 'org-clock
3248 :version "24.3"
3249 :type 'boolean)
3251 (defcustom org-time-clocksum-use-effort-durations nil
3252 "When non-nil, \\[org-clock-display] uses effort durations.
3253 E.g. by default, one day is considered to be a 8 hours effort,
3254 so a task that has been clocked for 16 hours will be displayed
3255 as during 2 days in the clock display or in the clocktable.
3257 See `org-effort-durations' on how to set effort durations
3258 and `org-time-clocksum-format' for more on time clock formats."
3259 :group 'org-time
3260 :group 'org-clock
3261 :version "24.4"
3262 :package-version '(Org . "8.0")
3263 :type 'boolean)
3265 (defcustom org-time-clocksum-fractional-format "%.2f"
3266 "The format string used when creating CLOCKSUM lines,
3267 or when Org mode generates a time duration, if
3268 `org-time-clocksum-use-fractional' is enabled.
3270 The value can be a single format string containing one
3271 %-sequence, which will be filled with the number of hours as
3272 a float.
3274 Alternatively, the value can be a plist associating any of the
3275 keys :years, :months, :weeks, :days, :hours or :minutes with
3276 a format string. The time duration is formatted using the
3277 largest time unit which gives a non-zero integer part. If all
3278 specified formats have zero integer part, the smallest time unit
3279 is used."
3280 :group 'org-time
3281 :type '(choice (string :tag "Format string")
3282 (set (group :inline t (const :tag "Years" :years)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Months" :months)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Weeks" :weeks)
3287 (string :tag "Format string"))
3288 (group :inline t (const :tag "Days" :days)
3289 (string :tag "Format string"))
3290 (group :inline t (const :tag "Hours" :hours)
3291 (string :tag "Format string"))
3292 (group :inline t (const :tag "Minutes" :minutes)
3293 (string :tag "Format string")))))
3295 (defcustom org-deadline-warning-days 14
3296 "Number of days before expiration during which a deadline becomes active.
3297 This variable governs the display in sparse trees and in the agenda.
3298 When 0 or negative, it means use this number (the absolute value of it)
3299 even if a deadline has a different individual lead time specified.
3301 Custom commands can set this variable in the options section."
3302 :group 'org-time
3303 :group 'org-agenda-daily/weekly
3304 :type 'integer)
3306 (defcustom org-scheduled-delay-days 0
3307 "Number of days before a scheduled item becomes active.
3308 This variable governs the display in sparse trees and in the agenda.
3309 The default value (i.e. 0) means: don't delay scheduled item.
3310 When negative, it means use this number (the absolute value of it)
3311 even if a scheduled item has a different individual delay time
3312 specified.
3314 Custom commands can set this variable in the options section."
3315 :group 'org-time
3316 :group 'org-agenda-daily/weekly
3317 :version "24.4"
3318 :package-version '(Org . "8.0")
3319 :type 'integer)
3321 (defcustom org-read-date-prefer-future t
3322 "Non-nil means assume future for incomplete date input from user.
3323 This affects the following situations:
3324 1. The user gives a month but not a year.
3325 For example, if it is April and you enter \"feb 2\", this will be read
3326 as Feb 2, *next* year. \"May 5\", however, will be this year.
3327 2. The user gives a day, but no month.
3328 For example, if today is the 15th, and you enter \"3\", Org-mode will
3329 read this as the third of *next* month. However, if you enter \"17\",
3330 it will be considered as *this* month.
3332 If you set this variable to the symbol `time', then also the following
3333 will work:
3335 3. If the user gives a time.
3336 If the time is before now, it will be interpreted as tomorrow.
3338 Currently none of this works for ISO week specifications.
3340 When this option is nil, the current day, month and year will always be
3341 used as defaults.
3343 See also `org-agenda-jump-prefer-future'."
3344 :group 'org-time
3345 :type '(choice
3346 (const :tag "Never" nil)
3347 (const :tag "Check month and day" t)
3348 (const :tag "Check month, day, and time" time)))
3350 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3351 "Should the agenda jump command prefer the future for incomplete dates?
3352 The default is to do the same as configured in `org-read-date-prefer-future'.
3353 But you can also set a deviating value here.
3354 This may t or nil, or the symbol `org-read-date-prefer-future'."
3355 :group 'org-agenda
3356 :group 'org-time
3357 :version "24.1"
3358 :type '(choice
3359 (const :tag "Use org-read-date-prefer-future"
3360 org-read-date-prefer-future)
3361 (const :tag "Never" nil)
3362 (const :tag "Always" t)))
3364 (defcustom org-read-date-force-compatible-dates t
3365 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3367 Depending on the system Emacs is running on, certain dates cannot
3368 be represented with the type used internally to represent time.
3369 Dates between 1970-1-1 and 2038-1-1 can always be represented
3370 correctly. Some systems allow for earlier dates, some for later,
3371 some for both. One way to find out it to insert any date into an
3372 Org buffer, putting the cursor on the year and hitting S-up and
3373 S-down to test the range.
3375 When this variable is set to t, the date/time prompt will not let
3376 you specify dates outside the 1970-2037 range, so it is certain that
3377 these dates will work in whatever version of Emacs you are
3378 running, and also that you can move a file from one Emacs implementation
3379 to another. WHenever Org is forcing the year for you, it will display
3380 a message and beep.
3382 When this variable is nil, Org will check if the date is
3383 representable in the specific Emacs implementation you are using.
3384 If not, it will force a year, usually the current year, and beep
3385 to remind you. Currently this setting is not recommended because
3386 the likelihood that you will open your Org files in an Emacs that
3387 has limited date range is not negligible.
3389 A workaround for this problem is to use diary sexp dates for time
3390 stamps outside of this range."
3391 :group 'org-time
3392 :version "24.1"
3393 :type 'boolean)
3395 (defcustom org-read-date-display-live t
3396 "Non-nil means display current interpretation of date prompt live.
3397 This display will be in an overlay, in the minibuffer."
3398 :group 'org-time
3399 :type 'boolean)
3401 (defcustom org-read-date-popup-calendar t
3402 "Non-nil means pop up a calendar when prompting for a date.
3403 In the calendar, the date can be selected with mouse-1. However, the
3404 minibuffer will also be active, and you can simply enter the date as well.
3405 When nil, only the minibuffer will be available."
3406 :group 'org-time
3407 :type 'boolean)
3408 (org-defvaralias 'org-popup-calendar-for-date-prompt
3409 'org-read-date-popup-calendar)
3411 (make-obsolete-variable
3412 'org-read-date-minibuffer-setup-hook
3413 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3414 (defcustom org-read-date-minibuffer-setup-hook nil
3415 "Hook to be used to set up keys for the date/time interface.
3416 Add key definitions to `minibuffer-local-map', which will be a
3417 temporary copy.
3419 WARNING: This option is obsolete, you should use
3420 `org-read-date-minibuffer-local-map' to set up keys."
3421 :group 'org-time
3422 :type 'hook)
3424 (defcustom org-extend-today-until 0
3425 "The hour when your day really ends. Must be an integer.
3426 This has influence for the following applications:
3427 - When switching the agenda to \"today\". It it is still earlier than
3428 the time given here, the day recognized as TODAY is actually yesterday.
3429 - When a date is read from the user and it is still before the time given
3430 here, the current date and time will be assumed to be yesterday, 23:59.
3431 Also, timestamps inserted in capture templates follow this rule.
3433 IMPORTANT: This is a feature whose implementation is and likely will
3434 remain incomplete. Really, it is only here because past midnight seems to
3435 be the favorite working time of John Wiegley :-)"
3436 :group 'org-time
3437 :type 'integer)
3439 (defcustom org-use-effective-time nil
3440 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3441 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3442 \"effective time\" of any timestamps between midnight and 8am will be
3443 23:59 of the previous day."
3444 :group 'org-time
3445 :version "24.1"
3446 :type 'boolean)
3448 (defcustom org-use-last-clock-out-time-as-effective-time nil
3449 "When non-nil, use the last clock out time for `org-todo'.
3450 Note that this option has precedence over the combined use of
3451 `org-use-effective-time' and `org-extend-today-until'."
3452 :group 'org-time
3453 :version "24.4"
3454 :package-version '(Org . "8.0")
3455 :type 'boolean)
3457 (defcustom org-edit-timestamp-down-means-later nil
3458 "Non-nil means S-down will increase the time in a time stamp.
3459 When nil, S-up will increase."
3460 :group 'org-time
3461 :type 'boolean)
3463 (defcustom org-calendar-follow-timestamp-change t
3464 "Non-nil means make the calendar window follow timestamp changes.
3465 When a timestamp is modified and the calendar window is visible, it will be
3466 moved to the new date."
3467 :group 'org-time
3468 :type 'boolean)
3470 (defgroup org-tags nil
3471 "Options concerning tags in Org-mode."
3472 :tag "Org Tags"
3473 :group 'org)
3475 (defcustom org-tag-alist nil
3476 "List of tags allowed in Org-mode files.
3477 When this list is nil, Org-mode will base TAG input on what is already in the
3478 buffer.
3479 The value of this variable is an alist, the car of each entry must be a
3480 keyword as a string, the cdr may be a character that is used to select
3481 that tag through the fast-tag-selection interface.
3482 See the manual for details."
3483 :group 'org-tags
3484 :type '(repeat
3485 (choice
3486 (cons (string :tag "Tag name")
3487 (character :tag "Access char"))
3488 (list :tag "Start radio group"
3489 (const :startgroup)
3490 (option (string :tag "Group description")))
3491 (list :tag "Group tags delimiter"
3492 (const :grouptags))
3493 (list :tag "End radio group"
3494 (const :endgroup)
3495 (option (string :tag "Group description")))
3496 (const :tag "New line" (:newline)))))
3498 (defcustom org-tag-persistent-alist nil
3499 "List of tags that will always appear in all Org-mode files.
3500 This is in addition to any in buffer settings or customizations
3501 of `org-tag-alist'.
3502 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3503 The value of this variable is an alist, the car of each entry must be a
3504 keyword as a string, the cdr may be a character that is used to select
3505 that tag through the fast-tag-selection interface.
3506 See the manual for details.
3507 To disable these tags on a per-file basis, insert anywhere in the file:
3508 #+STARTUP: noptag"
3509 :group 'org-tags
3510 :type '(repeat
3511 (choice
3512 (cons (string :tag "Tag name")
3513 (character :tag "Access char"))
3514 (const :tag "Start radio group" (:startgroup))
3515 (const :tag "Group tags delimiter" (:grouptags))
3516 (const :tag "End radio group" (:endgroup))
3517 (const :tag "New line" (:newline)))))
3519 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3520 "If non-nil, always offer completion for all tags of all agenda files.
3521 Instead of customizing this variable directly, you might want to
3522 set it locally for capture buffers, because there no list of
3523 tags in that file can be created dynamically (there are none).
3525 (add-hook 'org-capture-mode-hook
3526 (lambda ()
3527 (set (make-local-variable
3528 'org-complete-tags-always-offer-all-agenda-tags)
3529 t)))"
3530 :group 'org-tags
3531 :version "24.1"
3532 :type 'boolean)
3534 (defvar org-file-tags nil
3535 "List of tags that can be inherited by all entries in the file.
3536 The tags will be inherited if the variable `org-use-tag-inheritance'
3537 says they should be.
3538 This variable is populated from #+FILETAGS lines.")
3540 (defcustom org-use-fast-tag-selection 'auto
3541 "Non-nil means use fast tag selection scheme.
3542 This is a special interface to select and deselect tags with single keys.
3543 When nil, fast selection is never used.
3544 When the symbol `auto', fast selection is used if and only if selection
3545 characters for tags have been configured, either through the variable
3546 `org-tag-alist' or through a #+TAGS line in the buffer.
3547 When t, fast selection is always used and selection keys are assigned
3548 automatically if necessary."
3549 :group 'org-tags
3550 :type '(choice
3551 (const :tag "Always" t)
3552 (const :tag "Never" nil)
3553 (const :tag "When selection characters are configured" auto)))
3555 (defcustom org-fast-tag-selection-single-key nil
3556 "Non-nil means fast tag selection exits after first change.
3557 When nil, you have to press RET to exit it.
3558 During fast tag selection, you can toggle this flag with `C-c'.
3559 This variable can also have the value `expert'. In this case, the window
3560 displaying the tags menu is not even shown, until you press C-c again."
3561 :group 'org-tags
3562 :type '(choice
3563 (const :tag "No" nil)
3564 (const :tag "Yes" t)
3565 (const :tag "Expert" expert)))
3567 (defvar org-fast-tag-selection-include-todo nil
3568 "Non-nil means fast tags selection interface will also offer TODO states.
3569 This is an undocumented feature, you should not rely on it.")
3571 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3572 "The column to which tags should be indented in a headline.
3573 If this number is positive, it specifies the column. If it is negative,
3574 it means that the tags should be flushright to that column. For example,
3575 -80 works well for a normal 80 character screen.
3576 When 0, place tags directly after headline text, with only one space in
3577 between."
3578 :group 'org-tags
3579 :type 'integer)
3581 (defcustom org-auto-align-tags t
3582 "Non-nil keeps tags aligned when modifying headlines.
3583 Some operations (i.e. demoting) change the length of a headline and
3584 therefore shift the tags around. With this option turned on, after
3585 each such operation the tags are again aligned to `org-tags-column'."
3586 :group 'org-tags
3587 :type 'boolean)
3589 (defcustom org-use-tag-inheritance t
3590 "Non-nil means tags in levels apply also for sublevels.
3591 When nil, only the tags directly given in a specific line apply there.
3592 This may also be a list of tags that should be inherited, or a regexp that
3593 matches tags that should be inherited. Additional control is possible
3594 with the variable `org-tags-exclude-from-inheritance' which gives an
3595 explicit list of tags to be excluded from inheritance, even if the value of
3596 `org-use-tag-inheritance' would select it for inheritance.
3598 If this option is t, a match early-on in a tree can lead to a large
3599 number of matches in the subtree when constructing the agenda or creating
3600 a sparse tree. If you only want to see the first match in a tree during
3601 a search, check out the variable `org-tags-match-list-sublevels'."
3602 :group 'org-tags
3603 :type '(choice
3604 (const :tag "Not" nil)
3605 (const :tag "Always" t)
3606 (repeat :tag "Specific tags" (string :tag "Tag"))
3607 (regexp :tag "Tags matched by regexp")))
3609 (defcustom org-tags-exclude-from-inheritance nil
3610 "List of tags that should never be inherited.
3611 This is a way to exclude a few tags from inheritance. For way to do
3612 the opposite, to actively allow inheritance for selected tags,
3613 see the variable `org-use-tag-inheritance'."
3614 :group 'org-tags
3615 :type '(repeat (string :tag "Tag")))
3617 (defun org-tag-inherit-p (tag)
3618 "Check if TAG is one that should be inherited."
3619 (cond
3620 ((member tag org-tags-exclude-from-inheritance) nil)
3621 ((eq org-use-tag-inheritance t) t)
3622 ((not org-use-tag-inheritance) nil)
3623 ((stringp org-use-tag-inheritance)
3624 (string-match org-use-tag-inheritance tag))
3625 ((listp org-use-tag-inheritance)
3626 (member tag org-use-tag-inheritance))
3627 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3629 (defcustom org-tags-match-list-sublevels t
3630 "Non-nil means list also sublevels of headlines matching a search.
3631 This variable applies to tags/property searches, and also to stuck
3632 projects because this search is based on a tags match as well.
3634 When set to the symbol `indented', sublevels are indented with
3635 leading dots.
3637 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3638 the sublevels of a headline matching a tag search often also match
3639 the same search. Listing all of them can create very long lists.
3640 Setting this variable to nil causes subtrees of a match to be skipped.
3642 This variable is semi-obsolete and probably should always be true. It
3643 is better to limit inheritance to certain tags using the variables
3644 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3645 :group 'org-tags
3646 :type '(choice
3647 (const :tag "No, don't list them" nil)
3648 (const :tag "Yes, do list them" t)
3649 (const :tag "List them, indented with leading dots" indented)))
3651 (defcustom org-tags-sort-function nil
3652 "When set, tags are sorted using this function as a comparator."
3653 :group 'org-tags
3654 :type '(choice
3655 (const :tag "No sorting" nil)
3656 (const :tag "Alphabetical" string<)
3657 (const :tag "Reverse alphabetical" string>)
3658 (function :tag "Custom function" nil)))
3660 (defvar org-tags-history nil
3661 "History of minibuffer reads for tags.")
3662 (defvar org-last-tags-completion-table nil
3663 "The last used completion table for tags.")
3664 (defvar org-after-tags-change-hook nil
3665 "Hook that is run after the tags in a line have changed.")
3667 (defgroup org-properties nil
3668 "Options concerning properties in Org-mode."
3669 :tag "Org Properties"
3670 :group 'org)
3672 (defcustom org-property-format "%-10s %s"
3673 "How property key/value pairs should be formatted by `indent-line'.
3674 When `indent-line' hits a property definition, it will format the line
3675 according to this format, mainly to make sure that the values are
3676 lined-up with respect to each other."
3677 :group 'org-properties
3678 :type 'string)
3680 (defcustom org-properties-postprocess-alist nil
3681 "Alist of properties and functions to adjust inserted values.
3682 Elements of this alist must be of the form
3684 ([string] [function])
3686 where [string] must be a property name and [function] must be a
3687 lambda expression: this lambda expression must take one argument,
3688 the value to adjust, and return the new value as a string.
3690 For example, this element will allow the property \"Remaining\"
3691 to be updated wrt the relation between the \"Effort\" property
3692 and the clock summary:
3694 ((\"Remaining\" (lambda(value)
3695 (let ((clocksum (org-clock-sum-current-item))
3696 (effort (org-duration-string-to-minutes
3697 (org-entry-get (point) \"Effort\"))))
3698 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3699 :group 'org-properties
3700 :version "24.1"
3701 :type '(alist :key-type (string :tag "Property")
3702 :value-type (function :tag "Function")))
3704 (defcustom org-use-property-inheritance nil
3705 "Non-nil means properties apply also for sublevels.
3707 This setting is chiefly used during property searches. Turning it on can
3708 cause significant overhead when doing a search, which is why it is not
3709 on by default.
3711 When nil, only the properties directly given in the current entry count.
3712 When t, every property is inherited. The value may also be a list of
3713 properties that should have inheritance, or a regular expression matching
3714 properties that should be inherited.
3716 However, note that some special properties use inheritance under special
3717 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3718 and the properties ending in \"_ALL\" when they are used as descriptor
3719 for valid values of a property.
3721 Note for programmers:
3722 When querying an entry with `org-entry-get', you can control if inheritance
3723 should be used. By default, `org-entry-get' looks only at the local
3724 properties. You can request inheritance by setting the inherit argument
3725 to t (to force inheritance) or to `selective' (to respect the setting
3726 in this variable)."
3727 :group 'org-properties
3728 :type '(choice
3729 (const :tag "Not" nil)
3730 (const :tag "Always" t)
3731 (repeat :tag "Specific properties" (string :tag "Property"))
3732 (regexp :tag "Properties matched by regexp")))
3734 (defun org-property-inherit-p (property)
3735 "Check if PROPERTY is one that should be inherited."
3736 (cond
3737 ((eq org-use-property-inheritance t) t)
3738 ((not org-use-property-inheritance) nil)
3739 ((stringp org-use-property-inheritance)
3740 (string-match org-use-property-inheritance property))
3741 ((listp org-use-property-inheritance)
3742 (member property org-use-property-inheritance))
3743 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3745 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3746 "The default column format, if no other format has been defined.
3747 This variable can be set on the per-file basis by inserting a line
3749 #+COLUMNS: %25ITEM ....."
3750 :group 'org-properties
3751 :type 'string)
3753 (defcustom org-columns-ellipses ".."
3754 "The ellipses to be used when a field in column view is truncated.
3755 When this is the empty string, as many characters as possible are shown,
3756 but then there will be no visual indication that the field has been truncated.
3757 When this is a string of length N, the last N characters of a truncated
3758 field are replaced by this string. If the column is narrower than the
3759 ellipses string, only part of the ellipses string will be shown."
3760 :group 'org-properties
3761 :type 'string)
3763 (defcustom org-columns-modify-value-for-display-function nil
3764 "Function that modifies values for display in column view.
3765 For example, it can be used to cut out a certain part from a time stamp.
3766 The function must take 2 arguments:
3768 column-title The title of the column (*not* the property name)
3769 value The value that should be modified.
3771 The function should return the value that should be displayed,
3772 or nil if the normal value should be used."
3773 :group 'org-properties
3774 :type '(choice (const nil) (function)))
3776 (defconst org-global-properties-fixed
3777 '(("VISIBILITY_ALL" . "folded children content all")
3778 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3779 "List of property/value pairs that can be inherited by any entry.
3781 These are fixed values, for the preset properties. The user variable
3782 that can be used to add to this list is `org-global-properties'.
3784 The entries in this list are cons cells where the car is a property
3785 name and cdr is a string with the value. If the value represents
3786 multiple items like an \"_ALL\" property, separate the items by
3787 spaces.")
3789 (defcustom org-global-properties nil
3790 "List of property/value pairs that can be inherited by any entry.
3792 This list will be combined with the constant `org-global-properties-fixed'.
3794 The entries in this list are cons cells where the car is a property
3795 name and cdr is a string with the value.
3797 You can set buffer-local values for the same purpose in the variable
3798 `org-file-properties' this by adding lines like
3800 #+PROPERTY: NAME VALUE"
3801 :group 'org-properties
3802 :type '(repeat
3803 (cons (string :tag "Property")
3804 (string :tag "Value"))))
3806 (defvar org-file-properties nil
3807 "List of property/value pairs that can be inherited by any entry.
3808 Valid for the current buffer.
3809 This variable is populated from #+PROPERTY lines.")
3810 (make-variable-buffer-local 'org-file-properties)
3812 (defgroup org-agenda nil
3813 "Options concerning agenda views in Org-mode."
3814 :tag "Org Agenda"
3815 :group 'org)
3817 (defvar org-category nil
3818 "Variable used by org files to set a category for agenda display.
3819 Such files should use a file variable to set it, for example
3821 # -*- mode: org; org-category: \"ELisp\"
3823 or contain a special line
3825 #+CATEGORY: ELisp
3827 If the file does not specify a category, then file's base name
3828 is used instead.")
3829 (make-variable-buffer-local 'org-category)
3830 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3832 (defcustom org-agenda-files nil
3833 "The files to be used for agenda display.
3834 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3835 \\[org-remove-file]. You can also use customize to edit the list.
3837 If an entry is a directory, all files in that directory that are matched by
3838 `org-agenda-file-regexp' will be part of the file list.
3840 If the value of the variable is not a list but a single file name, then
3841 the list of agenda files is actually stored and maintained in that file, one
3842 agenda file per line. In this file paths can be given relative to
3843 `org-directory'. Tilde expansion and environment variable substitution
3844 are also made."
3845 :group 'org-agenda
3846 :type '(choice
3847 (repeat :tag "List of files and directories" file)
3848 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3850 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3851 "Regular expression to match files for `org-agenda-files'.
3852 If any element in the list in that variable contains a directory instead
3853 of a normal file, all files in that directory that are matched by this
3854 regular expression will be included."
3855 :group 'org-agenda
3856 :type 'regexp)
3858 (defcustom org-agenda-text-search-extra-files nil
3859 "List of extra files to be searched by text search commands.
3860 These files will be searched in addition to the agenda files by the
3861 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3862 Note that these files will only be searched for text search commands,
3863 not for the other agenda views like todo lists, tag searches or the weekly
3864 agenda. This variable is intended to list notes and possibly archive files
3865 that should also be searched by these two commands.
3866 In fact, if the first element in the list is the symbol `agenda-archives',
3867 then all archive files of all agenda files will be added to the search
3868 scope."
3869 :group 'org-agenda
3870 :type '(set :greedy t
3871 (const :tag "Agenda Archives" agenda-archives)
3872 (repeat :inline t (file))))
3874 (org-defvaralias 'org-agenda-multi-occur-extra-files
3875 'org-agenda-text-search-extra-files)
3877 (defcustom org-agenda-skip-unavailable-files nil
3878 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3879 A nil value means to remove them, after a query, from the list."
3880 :group 'org-agenda
3881 :type 'boolean)
3883 (defcustom org-calendar-to-agenda-key [?c]
3884 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3885 The command `org-calendar-goto-agenda' will be bound to this key. The
3886 default is the character `c' because then `c' can be used to switch back and
3887 forth between agenda and calendar."
3888 :group 'org-agenda
3889 :type 'sexp)
3891 (defcustom org-calendar-insert-diary-entry-key [?i]
3892 "The key to be installed in `calendar-mode-map' for adding diary entries.
3893 This option is irrelevant until `org-agenda-diary-file' has been configured
3894 to point to an Org-mode file. When that is the case, the command
3895 `org-agenda-diary-entry' will be bound to the key given here, by default
3896 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3897 if you want to continue doing this, you need to change this to a different
3898 key."
3899 :group 'org-agenda
3900 :type 'sexp)
3902 (defcustom org-agenda-diary-file 'diary-file
3903 "File to which to add new entries with the `i' key in agenda and calendar.
3904 When this is the symbol `diary-file', the functionality in the Emacs
3905 calendar will be used to add entries to the `diary-file'. But when this
3906 points to a file, `org-agenda-diary-entry' will be used instead."
3907 :group 'org-agenda
3908 :type '(choice
3909 (const :tag "The standard Emacs diary file" diary-file)
3910 (file :tag "Special Org file diary entries")))
3912 (eval-after-load "calendar"
3913 '(progn
3914 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3915 'org-calendar-goto-agenda)
3916 (add-hook 'calendar-mode-hook
3917 (lambda ()
3918 (unless (eq org-agenda-diary-file 'diary-file)
3919 (define-key calendar-mode-map
3920 org-calendar-insert-diary-entry-key
3921 'org-agenda-diary-entry))))))
3923 (defgroup org-latex nil
3924 "Options for embedding LaTeX code into Org-mode."
3925 :tag "Org LaTeX"
3926 :group 'org)
3928 (defcustom org-format-latex-options
3929 '(:foreground default :background default :scale 1.0
3930 :html-foreground "Black" :html-background "Transparent"
3931 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3932 "Options for creating images from LaTeX fragments.
3933 This is a property list with the following properties:
3934 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3935 `default' means use the foreground of the default face.
3936 `auto' means use the foreground from the text face.
3937 :background the background color, or \"Transparent\".
3938 `default' means use the background of the default face.
3939 `auto' means use the background from the text face.
3940 :scale a scaling factor for the size of the images, to get more pixels
3941 :html-foreground, :html-background, :html-scale
3942 the same numbers for HTML export.
3943 :matchers a list indicating which matchers should be used to
3944 find LaTeX fragments. Valid members of this list are:
3945 \"begin\" find environments
3946 \"$1\" find single characters surrounded by $.$
3947 \"$\" find math expressions surrounded by $...$
3948 \"$$\" find math expressions surrounded by $$....$$
3949 \"\\(\" find math expressions surrounded by \\(...\\)
3950 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3951 :group 'org-latex
3952 :type 'plist)
3954 (defcustom org-format-latex-signal-error t
3955 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3956 When nil, just push out a message."
3957 :group 'org-latex
3958 :version "24.1"
3959 :type 'boolean)
3961 (defcustom org-latex-to-mathml-jar-file nil
3962 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3963 Use this to specify additional executable file say a jar file.
3965 When using MathToWeb as the converter, specify the full-path to
3966 your mathtoweb.jar file."
3967 :group 'org-latex
3968 :version "24.1"
3969 :type '(choice
3970 (const :tag "None" nil)
3971 (file :tag "JAR file" :must-match t)))
3973 (defcustom org-latex-to-mathml-convert-command nil
3974 "Command to convert LaTeX fragments to MathML.
3975 Replace format-specifiers in the command as noted below and use
3976 `shell-command' to convert LaTeX to MathML.
3977 %j: Executable file in fully expanded form as specified by
3978 `org-latex-to-mathml-jar-file'.
3979 %I: Input LaTeX file in fully expanded form
3980 %o: Output MathML file
3981 This command is used by `org-create-math-formula'.
3983 When using MathToWeb as the converter, set this to
3984 \"java -jar %j -unicode -force -df %o %I\"."
3985 :group 'org-latex
3986 :version "24.1"
3987 :type '(choice
3988 (const :tag "None" nil)
3989 (string :tag "\nShell command")))
3991 (defcustom org-latex-create-formula-image-program 'dvipng
3992 "Program to convert LaTeX fragments with.
3994 dvipng Process the LaTeX fragments to dvi file, then convert
3995 dvi files to png files using dvipng.
3996 This will also include processing of non-math environments.
3997 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3998 to convert pdf files to png files"
3999 :group 'org-latex
4000 :version "24.1"
4001 :type '(choice
4002 (const :tag "dvipng" dvipng)
4003 (const :tag "imagemagick" imagemagick)))
4005 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4006 "Path to store latex preview images.
4007 A relative path here creates many directories relative to the
4008 processed org files paths. An absolute path puts all preview
4009 images at the same place."
4010 :group 'org-latex
4011 :version "24.3"
4012 :type 'string)
4014 (defun org-format-latex-mathml-available-p ()
4015 "Return t if `org-latex-to-mathml-convert-command' is usable."
4016 (save-match-data
4017 (when (and (boundp 'org-latex-to-mathml-convert-command)
4018 org-latex-to-mathml-convert-command)
4019 (let ((executable (car (split-string
4020 org-latex-to-mathml-convert-command))))
4021 (when (executable-find executable)
4022 (if (string-match
4023 "%j" org-latex-to-mathml-convert-command)
4024 (file-readable-p org-latex-to-mathml-jar-file)
4025 t))))))
4027 (defcustom org-format-latex-header "\\documentclass{article}
4028 \\usepackage[usenames]{color}
4029 \[PACKAGES]
4030 \[DEFAULT-PACKAGES]
4031 \\pagestyle{empty} % do not remove
4032 % The settings below are copied from fullpage.sty
4033 \\setlength{\\textwidth}{\\paperwidth}
4034 \\addtolength{\\textwidth}{-3cm}
4035 \\setlength{\\oddsidemargin}{1.5cm}
4036 \\addtolength{\\oddsidemargin}{-2.54cm}
4037 \\setlength{\\evensidemargin}{\\oddsidemargin}
4038 \\setlength{\\textheight}{\\paperheight}
4039 \\addtolength{\\textheight}{-\\headheight}
4040 \\addtolength{\\textheight}{-\\headsep}
4041 \\addtolength{\\textheight}{-\\footskip}
4042 \\addtolength{\\textheight}{-3cm}
4043 \\setlength{\\topmargin}{1.5cm}
4044 \\addtolength{\\topmargin}{-2.54cm}"
4045 "The document header used for processing LaTeX fragments.
4046 It is imperative that this header make sure that no page number
4047 appears on the page. The package defined in the variables
4048 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4049 will either replace the placeholder \"[PACKAGES]\" in this
4050 header, or they will be appended."
4051 :group 'org-latex
4052 :type 'string)
4054 (defun org-set-packages-alist (var val)
4055 "Set the packages alist and make sure it has 3 elements per entry."
4056 (set var (mapcar (lambda (x)
4057 (if (and (consp x) (= (length x) 2))
4058 (list (car x) (nth 1 x) t)
4060 val)))
4062 (defun org-get-packages-alist (var)
4063 "Get the packages alist and make sure it has 3 elements per entry."
4064 (mapcar (lambda (x)
4065 (if (and (consp x) (= (length x) 2))
4066 (list (car x) (nth 1 x) t)
4068 (default-value var)))
4070 (defcustom org-latex-default-packages-alist
4071 '(("AUTO" "inputenc" t)
4072 ("T1" "fontenc" t)
4073 ("" "fixltx2e" nil)
4074 ("" "graphicx" t)
4075 ("" "longtable" nil)
4076 ("" "float" nil)
4077 ("" "wrapfig" nil)
4078 ("" "rotating" nil)
4079 ("normalem" "ulem" t)
4080 ("" "amsmath" t)
4081 ("" "textcomp" t)
4082 ("" "marvosym" t)
4083 ("" "wasysym" t)
4084 ("" "amssymb" t)
4085 ("" "capt-of" nil)
4086 ("" "hyperref" nil)
4087 "\\tolerance=1000")
4088 "Alist of default packages to be inserted in the header.
4090 Change this only if one of the packages here causes an
4091 incompatibility with another package you are using.
4093 The packages in this list are needed by one part or another of
4094 Org mode to function properly:
4096 - inputenc, fontenc: for basic font and character selection
4097 - fixltx2e: Important patches of LaTeX itself
4098 - graphicx: for including images
4099 - longtable: For multipage tables
4100 - float, wrapfig: for figure placement
4101 - rotating: for sideways figures and tables
4102 - ulem: for underline and strike-through
4103 - amsmath: for subscript and superscript and math environments
4104 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4105 for interpreting the entities in `org-entities'. You can skip
4106 some of these packages if you don't use any of their symbols.
4107 - capt-of: for captions outside of floats
4108 - hyperref: for cross references
4110 Therefore you should not modify this variable unless you know
4111 what you are doing. The one reason to change it anyway is that
4112 you might be loading some other package that conflicts with one
4113 of the default packages. Each element is either a cell or
4114 a string.
4116 A cell is of the format:
4118 \( \"options\" \"package\" SNIPPET-FLAG).
4120 If SNIPPET-FLAG is non-nil, the package also needs to be included
4121 when compiling LaTeX snippets into images for inclusion into
4122 non-LaTeX output.
4124 A string will be inserted as-is in the header of the document."
4125 :group 'org-latex
4126 :group 'org-export-latex
4127 :set 'org-set-packages-alist
4128 :get 'org-get-packages-alist
4129 :version "24.1"
4130 :type '(repeat
4131 (choice
4132 (list :tag "options/package pair"
4133 (string :tag "options")
4134 (string :tag "package")
4135 (boolean :tag "Snippet"))
4136 (string :tag "A line of LaTeX"))))
4138 (defcustom org-latex-packages-alist nil
4139 "Alist of packages to be inserted in every LaTeX header.
4141 These will be inserted after `org-latex-default-packages-alist'.
4142 Each element is either a cell or a string.
4144 A cell is of the format:
4146 \(\"options\" \"package\" SNIPPET-FLAG)
4148 SNIPPET-FLAG, when non-nil, indicates that this package is also
4149 needed when turning LaTeX snippets into images for inclusion into
4150 non-LaTeX output.
4152 A string will be inserted as-is in the header of the document.
4154 Make sure that you only list packages here which:
4156 - you want in every file;
4157 - do not conflict with the setup in `org-format-latex-header';
4158 - do not conflict with the default packages in
4159 `org-latex-default-packages-alist'."
4160 :group 'org-latex
4161 :group 'org-export-latex
4162 :set 'org-set-packages-alist
4163 :get 'org-get-packages-alist
4164 :type '(repeat
4165 (choice
4166 (list :tag "options/package pair"
4167 (string :tag "options")
4168 (string :tag "package")
4169 (boolean :tag "Snippet"))
4170 (string :tag "A line of LaTeX"))))
4172 (defgroup org-appearance nil
4173 "Settings for Org-mode appearance."
4174 :tag "Org Appearance"
4175 :group 'org)
4177 (defcustom org-level-color-stars-only nil
4178 "Non-nil means fontify only the stars in each headline.
4179 When nil, the entire headline is fontified.
4180 Changing it requires restart of `font-lock-mode' to become effective
4181 also in regions already fontified."
4182 :group 'org-appearance
4183 :type 'boolean)
4185 (defcustom org-hide-leading-stars nil
4186 "Non-nil means hide the first N-1 stars in a headline.
4187 This works by using the face `org-hide' for these stars. This
4188 face is white for a light background, and black for a dark
4189 background. You may have to customize the face `org-hide' to
4190 make this work.
4191 Changing it requires restart of `font-lock-mode' to become effective
4192 also in regions already fontified.
4193 You may also set this on a per-file basis by adding one of the following
4194 lines to the buffer:
4196 #+STARTUP: hidestars
4197 #+STARTUP: showstars"
4198 :group 'org-appearance
4199 :type 'boolean)
4201 (defcustom org-hidden-keywords nil
4202 "List of symbols corresponding to keywords to be hidden the org buffer.
4203 For example, a value '(title) for this list will make the document's title
4204 appear in the buffer without the initial #+TITLE: keyword."
4205 :group 'org-appearance
4206 :version "24.1"
4207 :type '(set (const :tag "#+AUTHOR" author)
4208 (const :tag "#+DATE" date)
4209 (const :tag "#+EMAIL" email)
4210 (const :tag "#+TITLE" title)))
4212 (defcustom org-custom-properties nil
4213 "List of properties (as strings) with a special meaning.
4214 The default use of these custom properties is to let the user
4215 hide them with `org-toggle-custom-properties-visibility'."
4216 :group 'org-properties
4217 :group 'org-appearance
4218 :version "24.3"
4219 :type '(repeat (string :tag "Property Name")))
4221 (defcustom org-fontify-done-headline nil
4222 "Non-nil means change the face of a headline if it is marked DONE.
4223 Normally, only the TODO/DONE keyword indicates the state of a headline.
4224 When this is non-nil, the headline after the keyword is set to the
4225 `org-headline-done' as an additional indication."
4226 :group 'org-appearance
4227 :type 'boolean)
4229 (defcustom org-fontify-emphasized-text t
4230 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4231 Changing this variable requires a restart of Emacs to take effect."
4232 :group 'org-appearance
4233 :type 'boolean)
4235 (defcustom org-fontify-whole-heading-line nil
4236 "Non-nil means fontify the whole line for headings.
4237 This is useful when setting a background color for the
4238 org-level-* faces."
4239 :group 'org-appearance
4240 :type 'boolean)
4242 (defcustom org-highlight-latex-and-related nil
4243 "Non-nil means highlight LaTeX related syntax in the buffer.
4244 When non nil, the value should be a list containing any of the
4245 following symbols:
4246 `latex' Highlight LaTeX snippets and environments.
4247 `script' Highlight subscript and superscript.
4248 `entities' Highlight entities."
4249 :group 'org-appearance
4250 :version "24.4"
4251 :package-version '(Org . "8.0")
4252 :type '(choice
4253 (const :tag "No highlighting" nil)
4254 (set :greedy t :tag "Highlight"
4255 (const :tag "LaTeX snippets and environments" latex)
4256 (const :tag "Subscript and superscript" script)
4257 (const :tag "Entities" entities))))
4259 (defcustom org-hide-emphasis-markers nil
4260 "Non-nil mean font-lock should hide the emphasis marker characters."
4261 :group 'org-appearance
4262 :type 'boolean)
4264 (defcustom org-hide-macro-markers nil
4265 "Non-nil mean font-lock should hide the brackets marking macro calls."
4266 :group 'org-appearance
4267 :type 'boolean)
4269 (defcustom org-pretty-entities nil
4270 "Non-nil means show entities as UTF8 characters.
4271 When nil, the \\name form remains in the buffer."
4272 :group 'org-appearance
4273 :version "24.1"
4274 :type 'boolean)
4276 (defcustom org-pretty-entities-include-sub-superscripts t
4277 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4278 :group 'org-appearance
4279 :version "24.1"
4280 :type 'boolean)
4282 (defvar org-emph-re nil
4283 "Regular expression for matching emphasis.
4284 After a match, the match groups contain these elements:
4285 0 The match of the full regular expression, including the characters
4286 before and after the proper match
4287 1 The character before the proper match, or empty at beginning of line
4288 2 The proper match, including the leading and trailing markers
4289 3 The leading marker like * or /, indicating the type of highlighting
4290 4 The text between the emphasis markers, not including the markers
4291 5 The character after the match, empty at the end of a line")
4292 (defvar org-verbatim-re nil
4293 "Regular expression for matching verbatim text.")
4294 (defvar org-emphasis-regexp-components) ; defined just below
4295 (defvar org-emphasis-alist) ; defined just below
4296 (defun org-set-emph-re (var val)
4297 "Set variable and compute the emphasis regular expression."
4298 (set var val)
4299 (when (and (boundp 'org-emphasis-alist)
4300 (boundp 'org-emphasis-regexp-components)
4301 org-emphasis-alist org-emphasis-regexp-components)
4302 (let* ((e org-emphasis-regexp-components)
4303 (pre (car e))
4304 (post (nth 1 e))
4305 (border (nth 2 e))
4306 (body (nth 3 e))
4307 (nl (nth 4 e))
4308 (body1 (concat body "*?"))
4309 (markers (mapconcat 'car org-emphasis-alist ""))
4310 (vmarkers (mapconcat
4311 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4312 org-emphasis-alist "")))
4313 ;; make sure special characters appear at the right position in the class
4314 (if (string-match "\\^" markers)
4315 (setq markers (concat (replace-match "" t t markers) "^")))
4316 (if (string-match "-" markers)
4317 (setq markers (concat (replace-match "" t t markers) "-")))
4318 (if (string-match "\\^" vmarkers)
4319 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4320 (if (string-match "-" vmarkers)
4321 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4322 (if (> nl 0)
4323 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4324 (int-to-string nl) "\\}")))
4325 ;; Make the regexp
4326 (setq org-emph-re
4327 (concat "\\([" pre "]\\|^\\)"
4328 "\\("
4329 "\\([" markers "]\\)"
4330 "\\("
4331 "[^" border "]\\|"
4332 "[^" border "]"
4333 body1
4334 "[^" border "]"
4335 "\\)"
4336 "\\3\\)"
4337 "\\([" post "]\\|$\\)"))
4338 (setq org-verbatim-re
4339 (concat "\\([" pre "]\\|^\\)"
4340 "\\("
4341 "\\([" vmarkers "]\\)"
4342 "\\("
4343 "[^" border "]\\|"
4344 "[^" border "]"
4345 body1
4346 "[^" border "]"
4347 "\\)"
4348 "\\3\\)"
4349 "\\([" post "]\\|$\\)")))))
4351 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4352 ;; set this option proved cumbersome. See this message/thread:
4353 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4354 (defvar org-emphasis-regexp-components
4355 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4356 "Components used to build the regular expression for emphasis.
4357 This is a list with five entries. Terminology: In an emphasis string
4358 like \" *strong word* \", we call the initial space PREMATCH, the final
4359 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4360 and \"trong wor\" is the body. The different components in this variable
4361 specify what is allowed/forbidden in each part:
4363 pre Chars allowed as prematch. Beginning of line will be allowed too.
4364 post Chars allowed as postmatch. End of line will be allowed too.
4365 border The chars *forbidden* as border characters.
4366 body-regexp A regexp like \".\" to match a body character. Don't use
4367 non-shy groups here, and don't allow newline here.
4368 newline The maximum number of newlines allowed in an emphasis exp.
4370 You need to reload Org or to restart Emacs after customizing this.")
4372 (defcustom org-emphasis-alist
4373 `(("*" bold)
4374 ("/" italic)
4375 ("_" underline)
4376 ("=" org-verbatim verbatim)
4377 ("~" org-code verbatim)
4378 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4379 "Alist of characters and faces to emphasize text.
4380 Text starting and ending with a special character will be emphasized,
4381 for example *bold*, _underlined_ and /italic/. This variable sets the
4382 marker characters and the face to be used by font-lock for highlighting
4383 in Org-mode Emacs buffers.
4385 You need to reload Org or to restart Emacs after customizing this."
4386 :group 'org-appearance
4387 :set 'org-set-emph-re
4388 :version "24.4"
4389 :package-version '(Org . "8.0")
4390 :type '(repeat
4391 (list
4392 (string :tag "Marker character")
4393 (choice
4394 (face :tag "Font-lock-face")
4395 (plist :tag "Face property list"))
4396 (option (const verbatim)))))
4398 (defvar org-protecting-blocks
4399 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4400 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4401 This is needed for font-lock setup.")
4403 ;;; Miscellaneous options
4405 (defgroup org-completion nil
4406 "Completion in Org-mode."
4407 :tag "Org Completion"
4408 :group 'org)
4410 (defcustom org-completion-use-ido nil
4411 "Non-nil means use ido completion wherever possible.
4412 Note that `ido-mode' must be active for this variable to be relevant.
4413 If you decide to turn this variable on, you might well want to turn off
4414 `org-outline-path-complete-in-steps'.
4415 See also `org-completion-use-iswitchb'."
4416 :group 'org-completion
4417 :type 'boolean)
4419 (defcustom org-completion-use-iswitchb nil
4420 "Non-nil means use iswitchb completion wherever possible.
4421 Note that `iswitchb-mode' must be active for this variable to be relevant.
4422 If you decide to turn this variable on, you might well want to turn off
4423 `org-outline-path-complete-in-steps'.
4424 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4425 :group 'org-completion
4426 :type 'boolean)
4428 (defcustom org-completion-fallback-command 'hippie-expand
4429 "The expansion command called by \\[pcomplete] in normal context.
4430 Normal means, no org-mode-specific context."
4431 :group 'org-completion
4432 :type 'function)
4434 ;;; Functions and variables from their packages
4435 ;; Declared here to avoid compiler warnings
4437 ;; XEmacs only
4438 (defvar outline-mode-menu-heading)
4439 (defvar outline-mode-menu-show)
4440 (defvar outline-mode-menu-hide)
4441 (defvar zmacs-regions) ; XEmacs regions
4443 ;; Emacs only
4444 (defvar mark-active)
4446 ;; Various packages
4447 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4448 (declare-function calendar-forward-day "cal-move" (arg))
4449 (declare-function calendar-goto-date "cal-move" (date))
4450 (declare-function calendar-goto-today "cal-move" ())
4451 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4452 (defvar calc-embedded-close-formula)
4453 (defvar calc-embedded-open-formula)
4454 (declare-function cdlatex-tab "ext:cdlatex" ())
4455 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4456 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4457 (defvar font-lock-unfontify-region-function)
4458 (declare-function iswitchb-read-buffer "iswitchb"
4459 (prompt &optional default require-match start matches-set))
4460 (defvar iswitchb-temp-buflist)
4461 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4462 (defvar org-agenda-tags-todo-honor-ignore-options)
4463 (declare-function org-agenda-skip "org-agenda" ())
4464 (declare-function
4465 org-agenda-format-item "org-agenda"
4466 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4467 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4468 (declare-function org-agenda-change-all-lines "org-agenda"
4469 (newhead hdmarker &optional fixface just-this))
4470 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4471 (declare-function org-agenda-maybe-redo "org-agenda" ())
4472 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4473 (beg end))
4474 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4475 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4476 "org-agenda" (&optional end))
4477 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4478 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4479 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4480 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4481 (declare-function org-indent-mode "org-indent" (&optional arg))
4482 (declare-function parse-time-string "parse-time" (string))
4483 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4484 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4485 (defvar remember-data-file)
4486 (defvar texmathp-why)
4487 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4488 (declare-function table--at-cell-p "table" (position &optional object at-column))
4489 (declare-function calc-eval "calc" (str &optional separator &rest args))
4491 ;;;###autoload
4492 (defun turn-on-orgtbl ()
4493 "Unconditionally turn on `orgtbl-mode'."
4494 (require 'org-table)
4495 (orgtbl-mode 1))
4497 (defun org-at-table-p (&optional table-type)
4498 "Return t if the cursor is inside an org-type table.
4499 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4500 (if org-enable-table-editor
4501 (save-excursion
4502 (beginning-of-line 1)
4503 (looking-at (if table-type org-table-any-line-regexp
4504 org-table-line-regexp)))
4505 nil))
4506 (defsubst org-table-p () (org-at-table-p))
4508 (defun org-at-table.el-p ()
4509 "Return t if and only if we are at a table.el table."
4510 (and (org-at-table-p 'any)
4511 (save-excursion
4512 (goto-char (org-table-begin 'any))
4513 (looking-at org-table1-hline-regexp))))
4515 (defun org-table-recognize-table.el ()
4516 "If there is a table.el table nearby, recognize it and move into it."
4517 (if org-table-tab-recognizes-table.el
4518 (if (org-at-table.el-p)
4519 (progn
4520 (beginning-of-line 1)
4521 (if (looking-at org-table-dataline-regexp)
4523 (if (looking-at org-table1-hline-regexp)
4524 (progn
4525 (beginning-of-line 2)
4526 (if (looking-at org-table-any-border-regexp)
4527 (beginning-of-line -1)))))
4528 (if (re-search-forward "|" (org-table-end t) t)
4529 (progn
4530 (require 'table)
4531 (if (table--at-cell-p (point))
4533 (message "recognizing table.el table...")
4534 (table-recognize-table)
4535 (message "recognizing table.el table...done")))
4536 (error "This should not happen"))
4538 nil)
4539 nil))
4541 (defun org-at-table-hline-p ()
4542 "Return t if the cursor is inside a hline in a table."
4543 (if org-enable-table-editor
4544 (save-excursion
4545 (beginning-of-line 1)
4546 (looking-at org-table-hline-regexp))
4547 nil))
4549 (defun org-table-map-tables (function &optional quietly)
4550 "Apply FUNCTION to the start of all tables in the buffer."
4551 (save-excursion
4552 (save-restriction
4553 (widen)
4554 (goto-char (point-min))
4555 (while (re-search-forward org-table-any-line-regexp nil t)
4556 (unless quietly
4557 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4558 (beginning-of-line 1)
4559 (when (and (looking-at org-table-line-regexp)
4560 ;; Exclude tables in src/example/verbatim/clocktable blocks
4561 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4562 (save-excursion (funcall function))
4563 (or (looking-at org-table-line-regexp)
4564 (forward-char 1)))
4565 (re-search-forward org-table-any-border-regexp nil 1))))
4566 (unless quietly (message "Mapping tables: done")))
4568 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4569 (declare-function org-clock-update-mode-line "org-clock" ())
4570 (declare-function org-resolve-clocks "org-clock"
4571 (&optional also-non-dangling-p prompt last-valid))
4573 (defun org-at-TBLFM-p (&optional pos)
4574 "Return t when point (or POS) is in #+TBLFM line."
4575 (save-excursion
4576 (let ((pos pos)))
4577 (goto-char (or pos (point)))
4578 (beginning-of-line 1)
4579 (looking-at org-TBLFM-regexp)))
4581 (defvar org-clock-start-time)
4582 (defvar org-clock-marker (make-marker)
4583 "Marker recording the last clock-in.")
4584 (defvar org-clock-hd-marker (make-marker)
4585 "Marker recording the last clock-in, but the headline position.")
4586 (defvar org-clock-heading ""
4587 "The heading of the current clock entry.")
4588 (defun org-clock-is-active ()
4589 "Return the buffer where the clock is currently running.
4590 Return nil if no clock is running."
4591 (marker-buffer org-clock-marker))
4593 (defun org-check-running-clock ()
4594 "Check if the current buffer contains the running clock.
4595 If yes, offer to stop it and to save the buffer with the changes."
4596 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4597 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4598 (buffer-name))))
4599 (org-clock-out)
4600 (when (y-or-n-p "Save changed buffer?")
4601 (save-buffer))))
4603 (defun org-clocktable-try-shift (dir n)
4604 "Check if this line starts a clock table, if yes, shift the time block."
4605 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4606 (org-clocktable-shift dir n)))
4608 ;;;###autoload
4609 (defun org-clock-persistence-insinuate ()
4610 "Set up hooks for clock persistence."
4611 (require 'org-clock)
4612 (add-hook 'org-mode-hook 'org-clock-load)
4613 (add-hook 'kill-emacs-hook 'org-clock-save))
4615 (defgroup org-archive nil
4616 "Options concerning archiving in Org-mode."
4617 :tag "Org Archive"
4618 :group 'org-structure)
4620 (defcustom org-archive-location "%s_archive::"
4621 "The location where subtrees should be archived.
4623 The value of this variable is a string, consisting of two parts,
4624 separated by a double-colon. The first part is a filename and
4625 the second part is a headline.
4627 When the filename is omitted, archiving happens in the same file.
4628 %s in the filename will be replaced by the current file
4629 name (without the directory part). Archiving to a different file
4630 is useful to keep archived entries from contributing to the
4631 Org-mode Agenda.
4633 The archived entries will be filed as subtrees of the specified
4634 headline. When the headline is omitted, the subtrees are simply
4635 filed away at the end of the file, as top-level entries. Also in
4636 the heading you can use %s to represent the file name, this can be
4637 useful when using the same archive for a number of different files.
4639 Here are a few examples:
4640 \"%s_archive::\"
4641 If the current file is Projects.org, archive in file
4642 Projects.org_archive, as top-level trees. This is the default.
4644 \"::* Archived Tasks\"
4645 Archive in the current file, under the top-level headline
4646 \"* Archived Tasks\".
4648 \"~/org/archive.org::\"
4649 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4651 \"~/org/archive.org::* From %s\"
4652 Archive in file ~/org/archive.org (absolute path), under headlines
4653 \"From FILENAME\" where file name is the current file name.
4655 \"~/org/datetree.org::datetree/* Finished Tasks\"
4656 The \"datetree/\" string is special, signifying to archive
4657 items to the datetree. Items are placed in either the CLOSED
4658 date of the item, or the current date if there is no CLOSED date.
4659 The heading will be a subentry to the current date. There doesn't
4660 need to be a heading, but there always needs to be a slash after
4661 datetree. For example, to store archived items directly in the
4662 datetree, use \"~/org/datetree.org::datetree/\".
4664 \"basement::** Finished Tasks\"
4665 Archive in file ./basement (relative path), as level 3 trees
4666 below the level 2 heading \"** Finished Tasks\".
4668 You may set this option on a per-file basis by adding to the buffer a
4669 line like
4671 #+ARCHIVE: basement::** Finished Tasks
4673 You may also define it locally for a subtree by setting an ARCHIVE property
4674 in the entry. If such a property is found in an entry, or anywhere up
4675 the hierarchy, it will be used."
4676 :group 'org-archive
4677 :type 'string)
4679 (defcustom org-agenda-skip-archived-trees t
4680 "Non-nil means the agenda will skip any items located in archived trees.
4681 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4682 variable is no longer recommended, you should leave it at the value t.
4683 Instead, use the key `v' to cycle the archives-mode in the agenda."
4684 :group 'org-archive
4685 :group 'org-agenda-skip
4686 :type 'boolean)
4688 (defcustom org-columns-skip-archived-trees t
4689 "Non-nil means ignore archived trees when creating column view."
4690 :group 'org-archive
4691 :group 'org-properties
4692 :type 'boolean)
4694 (defcustom org-cycle-open-archived-trees nil
4695 "Non-nil means `org-cycle' will open archived trees.
4696 An archived tree is a tree marked with the tag ARCHIVE.
4697 When nil, archived trees will stay folded. You can still open them with
4698 normal outline commands like `show-all', but not with the cycling commands."
4699 :group 'org-archive
4700 :group 'org-cycle
4701 :type 'boolean)
4703 (defcustom org-sparse-tree-open-archived-trees nil
4704 "Non-nil means sparse tree construction shows matches in archived trees.
4705 When nil, matches in these trees are highlighted, but the trees are kept in
4706 collapsed state."
4707 :group 'org-archive
4708 :group 'org-sparse-trees
4709 :type 'boolean)
4711 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4712 "The default date type when building a sparse tree.
4713 When this is nil, a date is a scheduled or a deadline timestamp.
4714 Otherwise, these types are allowed:
4716 all: all timestamps
4717 active: only active timestamps (<...>)
4718 inactive: only inactive timestamps (<...)
4719 scheduled: only scheduled timestamps
4720 deadline: only deadline timestamps"
4721 :type '(choice (const :tag "Scheduled or deadline" scheduled-or-deadline)
4722 (const :tag "All timestamps" all)
4723 (const :tag "Only active timestamps" active)
4724 (const :tag "Only inactive timestamps" inactive)
4725 (const :tag "Only scheduled timestamps" scheduled)
4726 (const :tag "Only deadline timestamps" deadline)
4727 (const :tag "Only closed timestamps" closed))
4728 :version "24.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 (save-excursion
4755 (let* ((re (concat ":" org-archive-tag ":")))
4756 (goto-char beg)
4757 (while (re-search-forward re end t)
4758 (when (org-at-heading-p)
4759 (org-flag-subtree t)
4760 (org-end-of-subtree t))))))
4762 (declare-function outline-end-of-heading "outline" ())
4763 (declare-function outline-flag-region "outline" (from to flag))
4764 (defun org-flag-subtree (flag)
4765 (save-excursion
4766 (org-back-to-heading t)
4767 (outline-end-of-heading)
4768 (outline-flag-region (point)
4769 (progn (org-end-of-subtree t) (point))
4770 flag)))
4772 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4774 ;; Declare Column View Code
4776 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4777 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4778 (declare-function org-columns-compute "org-colview" (property))
4780 ;; Declare ID code
4782 (declare-function org-id-store-link "org-id")
4783 (declare-function org-id-locations-load "org-id")
4784 (declare-function org-id-locations-save "org-id")
4785 (defvar org-id-track-globally)
4787 ;;; Variables for pre-computed regular expressions, all buffer local
4789 (defvar org-todo-regexp nil
4790 "Matches any of the TODO state keywords.")
4791 (make-variable-buffer-local 'org-todo-regexp)
4792 (defvar org-not-done-regexp nil
4793 "Matches any of the TODO state keywords except the last one.")
4794 (make-variable-buffer-local 'org-not-done-regexp)
4795 (defvar org-not-done-heading-regexp nil
4796 "Matches a TODO headline that is not done.")
4797 (make-variable-buffer-local 'org-not-done-regexp)
4798 (defvar org-todo-line-regexp nil
4799 "Matches a headline and puts TODO state into group 2 if present.")
4800 (make-variable-buffer-local 'org-todo-line-regexp)
4801 (defvar org-complex-heading-regexp nil
4802 "Matches a headline and puts everything into groups:
4803 group 1: the stars
4804 group 2: The todo keyword, maybe
4805 group 3: Priority cookie
4806 group 4: True headline
4807 group 5: Tags")
4808 (make-variable-buffer-local 'org-complex-heading-regexp)
4809 (defvar org-complex-heading-regexp-format nil
4810 "Printf format to make regexp to match an exact headline.
4811 This regexp will match the headline of any node which has the
4812 exact headline text that is put into the format, but may have any
4813 TODO state, priority and tags.")
4814 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4815 (defvar org-todo-line-tags-regexp nil
4816 "Matches a headline and puts TODO state into group 2 if present.
4817 Also put tags into group 4 if tags are present.")
4818 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4820 (defconst org-plain-time-of-day-regexp
4821 (concat
4822 "\\(\\<[012]?[0-9]"
4823 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4824 "\\(--?"
4825 "\\(\\<[012]?[0-9]"
4826 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4827 "\\)?")
4828 "Regular expression to match a plain time or time range.
4829 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4830 groups carry important information:
4831 0 the full match
4832 1 the first time, range or not
4833 8 the second time, if it is a range.")
4835 (defconst org-plain-time-extension-regexp
4836 (concat
4837 "\\(\\<[012]?[0-9]"
4838 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4839 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4840 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4841 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4842 groups carry important information:
4843 0 the full match
4844 7 hours of duration
4845 9 minutes of duration")
4847 (defconst org-stamp-time-of-day-regexp
4848 (concat
4849 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4850 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4851 "\\(--?"
4852 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4853 "Regular expression to match a timestamp time or time range.
4854 After a match, the following groups carry important information:
4855 0 the full match
4856 1 date plus weekday, for back referencing to make sure both times are on the same day
4857 2 the first time, range or not
4858 4 the second time, if it is a range.")
4860 (defconst org-startup-options
4861 '(("fold" org-startup-folded t)
4862 ("overview" org-startup-folded t)
4863 ("nofold" org-startup-folded nil)
4864 ("showall" org-startup-folded nil)
4865 ("showeverything" org-startup-folded showeverything)
4866 ("content" org-startup-folded content)
4867 ("indent" org-startup-indented t)
4868 ("noindent" org-startup-indented nil)
4869 ("hidestars" org-hide-leading-stars t)
4870 ("showstars" org-hide-leading-stars nil)
4871 ("odd" org-odd-levels-only t)
4872 ("oddeven" org-odd-levels-only nil)
4873 ("align" org-startup-align-all-tables t)
4874 ("noalign" org-startup-align-all-tables nil)
4875 ("inlineimages" org-startup-with-inline-images t)
4876 ("noinlineimages" org-startup-with-inline-images nil)
4877 ("latexpreview" org-startup-with-latex-preview t)
4878 ("nolatexpreview" org-startup-with-latex-preview nil)
4879 ("customtime" org-display-custom-times t)
4880 ("logdone" org-log-done time)
4881 ("lognotedone" org-log-done note)
4882 ("nologdone" org-log-done nil)
4883 ("lognoteclock-out" org-log-note-clock-out t)
4884 ("nolognoteclock-out" org-log-note-clock-out nil)
4885 ("logrepeat" org-log-repeat state)
4886 ("lognoterepeat" org-log-repeat note)
4887 ("logdrawer" org-log-into-drawer t)
4888 ("nologdrawer" org-log-into-drawer nil)
4889 ("logstatesreversed" org-log-states-order-reversed t)
4890 ("nologstatesreversed" org-log-states-order-reversed nil)
4891 ("nologrepeat" org-log-repeat nil)
4892 ("logreschedule" org-log-reschedule time)
4893 ("lognotereschedule" org-log-reschedule note)
4894 ("nologreschedule" org-log-reschedule nil)
4895 ("logredeadline" org-log-redeadline time)
4896 ("lognoteredeadline" org-log-redeadline note)
4897 ("nologredeadline" org-log-redeadline nil)
4898 ("logrefile" org-log-refile time)
4899 ("lognoterefile" org-log-refile note)
4900 ("nologrefile" org-log-refile nil)
4901 ("fninline" org-footnote-define-inline t)
4902 ("nofninline" org-footnote-define-inline nil)
4903 ("fnlocal" org-footnote-section nil)
4904 ("fnauto" org-footnote-auto-label t)
4905 ("fnprompt" org-footnote-auto-label nil)
4906 ("fnconfirm" org-footnote-auto-label confirm)
4907 ("fnplain" org-footnote-auto-label plain)
4908 ("fnadjust" org-footnote-auto-adjust t)
4909 ("nofnadjust" org-footnote-auto-adjust nil)
4910 ("constcgs" constants-unit-system cgs)
4911 ("constSI" constants-unit-system SI)
4912 ("noptag" org-tag-persistent-alist nil)
4913 ("hideblocks" org-hide-block-startup t)
4914 ("nohideblocks" org-hide-block-startup nil)
4915 ("beamer" org-startup-with-beamer-mode t)
4916 ("entitiespretty" org-pretty-entities t)
4917 ("entitiesplain" org-pretty-entities nil))
4918 "Variable associated with STARTUP options for org-mode.
4919 Each element is a list of three items: the startup options (as written
4920 in the #+STARTUP line), the corresponding variable, and the value to set
4921 this variable to if the option is found. An optional forth element PUSH
4922 means to push this value onto the list in the variable.")
4924 (defcustom org-group-tags t
4925 "When non-nil (the default), use group tags.
4926 This can be turned on/off through `org-toggle-tags-groups'."
4927 :group 'org-tags
4928 :group 'org-startup
4929 :type 'boolean)
4931 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4933 (defun org-toggle-tags-groups ()
4934 "Toggle support for group tags.
4935 Support for group tags is controlled by the option
4936 `org-group-tags', which is non-nil by default."
4937 (interactive)
4938 (setq org-group-tags (not org-group-tags))
4939 (cond ((and (derived-mode-p 'org-agenda-mode)
4940 org-group-tags)
4941 (org-agenda-redo))
4942 ((derived-mode-p 'org-mode)
4943 (let ((org-inhibit-startup t)) (org-mode))))
4944 (message "Groups tags support has been turned %s"
4945 (if org-group-tags "on" "off")))
4947 (defun org-set-regexps-and-options (&optional tags-only)
4948 "Precompute regular expressions used in the current buffer.
4949 When optional argument TAGS-ONLY is non-nil, only compute tags
4950 related expressions."
4951 (when (derived-mode-p 'org-mode)
4952 (let ((alist (org--setup-collect-keywords
4953 (org-make-options-regexp
4954 (append '("FILETAGS" "TAGS" "SETUPFILE")
4955 (and (not tags-only)
4956 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4957 "LINK" "PRIORITIES" "PROPERTY" "SEQ_TODO"
4958 "STARTUP" "TODO" "TYP_TODO")))))))
4959 (org--setup-process-tags
4960 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4961 (unless tags-only
4962 ;; File properties.
4963 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4964 ;; Archive location.
4965 (let ((archive (cdr (assq 'archive alist))))
4966 (when archive (org-set-local 'org-archive-location archive)))
4967 ;; Category.
4968 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4969 (when cat
4970 (org-set-local 'org-category (intern cat))
4971 (org-set-local 'org-file-properties
4972 (org--update-property-plist
4973 "CATEGORY" cat org-file-properties))))
4974 ;; Columns.
4975 (let ((column (cdr (assq 'columns alist))))
4976 (when column (org-set-local 'org-columns-default-format column)))
4977 ;; Constants.
4978 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4979 ;; Link abbreviations.
4980 (let ((links (cdr (assq 'link alist))))
4981 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4982 ;; Priorities.
4983 (let ((priorities (cdr (assq 'priorities alist))))
4984 (when priorities
4985 (org-set-local 'org-highest-priority (nth 0 priorities))
4986 (org-set-local 'org-lowest-priority (nth 1 priorities))
4987 (org-set-local 'org-default-priority (nth 2 priorities))))
4988 ;; Startup options.
4989 (let ((startup (cdr (assq 'startup alist))))
4990 (dolist (option startup)
4991 (let ((entry (assoc-string option org-startup-options t)))
4992 (when entry
4993 (let ((var (nth 1 entry))
4994 (val (nth 2 entry)))
4995 (if (not (nth 3 entry)) (org-set-local var val)
4996 (unless (listp (symbol-value var))
4997 (org-set-local var nil))
4998 (add-to-list var val)))))))
4999 ;; TODO keywords.
5000 (org-set-local 'org-todo-kwd-alist nil)
5001 (org-set-local 'org-todo-key-alist nil)
5002 (org-set-local 'org-todo-key-trigger nil)
5003 (org-set-local 'org-todo-keywords-1 nil)
5004 (org-set-local 'org-done-keywords nil)
5005 (org-set-local 'org-todo-heads nil)
5006 (org-set-local 'org-todo-sets nil)
5007 (org-set-local 'org-todo-log-states nil)
5008 (let ((todo-sequences
5009 (reverse
5010 (or (cdr (assq 'todo alist))
5011 (let ((d (default-value 'org-todo-keywords)))
5012 (if (not (stringp (car d))) d
5013 ;; XXX: Backward compatibility code.
5014 (list (cons org-todo-interpretation d))))))))
5015 (dolist (sequence todo-sequences)
5016 (let* ((sequence (or (run-hook-with-args-until-success
5017 'org-todo-setup-filter-hook sequence)
5018 sequence))
5019 (sequence-type (car sequence))
5020 (keywords (cdr sequence))
5021 (sep (member "|" keywords))
5022 names alist)
5023 (dolist (k (remove "|" keywords))
5024 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5026 (error "Invalid TODO keyword %s" k))
5027 (let ((name (match-string 1 k))
5028 (key (match-string 2 k))
5029 (log (org-extract-log-state-settings k)))
5030 (push name names)
5031 (push (cons name (and key (string-to-char key))) alist)
5032 (when log (push log org-todo-log-states))))
5033 (let* ((names (nreverse names))
5034 (done (if sep (org-remove-keyword-keys (cdr sep))
5035 (last names)))
5036 (head (car names))
5037 (tail (list sequence-type head (car done) (org-last done))))
5038 (add-to-list 'org-todo-heads head 'append)
5039 (push names org-todo-sets)
5040 (setq org-done-keywords (append org-done-keywords done nil))
5041 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5042 (setq org-todo-key-alist
5043 (append org-todo-key-alist
5044 (and alist
5045 (append '((:startgroup))
5046 (nreverse alist)
5047 '((:endgroup))))))
5048 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5049 (setq org-todo-sets (nreverse org-todo-sets)
5050 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5051 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5052 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5053 ;; Compute the regular expressions and other local variables.
5054 ;; Using `org-outline-regexp-bol' would complicate them much,
5055 ;; because of the fixed white space at the end of that string.
5056 (if (not org-done-keywords)
5057 (setq org-done-keywords
5058 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5059 (setq org-not-done-keywords
5060 (org-delete-all org-done-keywords
5061 (copy-sequence org-todo-keywords-1))
5062 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5063 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5064 org-not-done-heading-regexp
5065 (format org-heading-keyword-regexp-format org-not-done-regexp)
5066 org-todo-line-regexp
5067 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5068 org-complex-heading-regexp
5069 (concat "^\\(\\*+\\)"
5070 "\\(?: +" org-todo-regexp "\\)?"
5071 "\\(?: +\\(\\[#.\\]\\)\\)?"
5072 "\\(?: +\\(.*?\\)\\)??"
5073 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5074 "[ \t]*$")
5075 org-complex-heading-regexp-format
5076 (concat "^\\(\\*+\\)"
5077 "\\(?: +" org-todo-regexp "\\)?"
5078 "\\(?: +\\(\\[#.\\]\\)\\)?"
5079 "\\(?: +"
5080 ;; Stats cookies can be stuck to body.
5081 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5082 "\\(%s\\)"
5083 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5084 "\\)"
5085 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5086 "[ \t]*$")
5087 org-todo-line-tags-regexp
5088 (concat "^\\(\\*+\\)"
5089 "\\(?: +" org-todo-regexp "\\)?"
5090 "\\(?: +\\(.*?\\)\\)??"
5091 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5092 "[ \t]*$"))
5093 (org-compute-latex-and-related-regexp)))))
5095 (defun org--setup-collect-keywords (regexp &optional files alist)
5096 "Return setup keywords values as an alist.
5098 REGEXP matches a subset of setup keywords. FILES is a list of
5099 file names already visited. It is used to avoid circular setup
5100 files. ALIST, when non-nil, is the alist computed so far.
5102 Return value contains the following keys: `archive', `category',
5103 `columns', `constants', `filetags', `link', `priorities',
5104 `property', `startup', `tags' and `todo'."
5105 (org-with-wide-buffer
5106 (goto-char (point-min))
5107 (let ((case-fold-search t))
5108 (while (re-search-forward regexp nil t)
5109 (let ((element (org-element-at-point)))
5110 (when (eq (org-element-type element) 'keyword)
5111 (let ((key (org-element-property :key element))
5112 (value (org-element-property :value element)))
5113 (cond
5114 ((equal key "ARCHIVE")
5115 (when (org-string-nw-p value)
5116 (push (cons 'archive value) alist)))
5117 ((equal key "CATEGORY") (push (cons 'category value) alist))
5118 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5119 ((equal key "CONSTANTS")
5120 (let* ((constants (assq 'constants alist))
5121 (store (cdr constants)))
5122 (dolist (pair (org-split-string value))
5123 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5124 pair)
5125 (let* ((name (match-string 1 pair))
5126 (value (match-string 2 pair))
5127 (old (assoc name store)))
5128 (if old (setcdr old value)
5129 (push (cons name value) store)))))
5130 (if constants (setcdr constants store)
5131 (push (cons 'constants store) alist))))
5132 ((equal key "FILETAGS")
5133 (when (org-string-nw-p value)
5134 (let ((old (assq 'filetags alist))
5135 (new (apply #'nconc
5136 (mapcar (lambda (x) (org-split-string x ":"))
5137 (org-split-string value)))))
5138 (if old (setcdr old (append new (cdr old)))
5139 (push (cons 'filetags new) alist)))))
5140 ((equal key "LINK")
5141 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5142 (let ((links (assq 'link alist))
5143 (pair (cons (org-match-string-no-properties 1 value)
5144 (org-match-string-no-properties 2 value))))
5145 (if links (push pair (cdr links))
5146 (push (list 'link pair) alist)))))
5147 ((equal key "PRIORITIES")
5148 (push (cons 'priorities
5149 (let ((prio (org-split-string value)))
5150 (if (< (length prio) 3) '(?A ?C ?B)
5151 (mapcar #'string-to-char prio))))
5152 alist))
5153 ((equal key "PROPERTY")
5154 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5155 (let* ((property (assq 'property alist))
5156 (value (org--update-property-plist
5157 (org-match-string-no-properties 1 value)
5158 (org-match-string-no-properties 2 value)
5159 (cdr property))))
5160 (if property (setcdr property value)
5161 (push (cons 'property value) alist)))))
5162 ((equal key "STARTUP")
5163 (let ((startup (assq 'startup alist)))
5164 (if startup
5165 (setcdr startup
5166 (append (cdr startup) (org-split-string value)))
5167 (push (cons 'startup (org-split-string value)) alist))))
5168 ((equal key "TAGS")
5169 (let ((tag-cell (assq 'tags alist)))
5170 (if tag-cell
5171 (setcdr tag-cell
5172 (append (cdr tag-cell)
5173 '("\\n")
5174 (org-split-string value)))
5175 (push (cons 'tags (org-split-string value)) alist))))
5176 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5177 (let ((todo (assq 'todo alist))
5178 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5179 (org-split-string value))))
5180 (if todo (push value (cdr todo))
5181 (push (list 'todo value) alist))))
5182 ((equal key "SETUPFILE")
5183 (unless buffer-read-only ; Do not check in Gnus messages.
5184 (let ((f (and (org-string-nw-p value)
5185 (expand-file-name
5186 (org-remove-double-quotes value)))))
5187 (when (and f (file-readable-p f) (not (member f files)))
5188 (with-temp-buffer
5189 (insert-file-contents f)
5190 (setq alist
5191 ;; Fake Org mode to benefit from cache
5192 ;; without recurring needlessly.
5193 (let ((major-mode 'org-mode))
5194 (org--setup-collect-keywords
5195 regexp (cons f files) alist)))))))))))))))
5196 alist)
5198 (defun org--setup-process-tags (tags filetags)
5199 "Precompute variables used for tags.
5200 TAGS is a list of tags and tag group symbols, as strings.
5201 FILETAGS is a list of tags, as strings."
5202 ;; Process the file tags.
5203 (org-set-local 'org-file-tags
5204 (mapcar #'org-add-prop-inherited filetags))
5205 ;; Provide default tags if no local tags are found.
5206 (when (and (not tags) org-tag-alist)
5207 (setq tags
5208 (mapcar (lambda (tag)
5209 (case (car tag)
5210 (:startgroup "{")
5211 (:endgroup "}")
5212 (:grouptags ":")
5213 (:newline "\\n")
5214 (otherwise (concat (car tag)
5215 (and (characterp (cdr tag))
5216 (format "(%c)" (cdr tag)))))))
5217 org-tag-alist)))
5218 ;; Process the tags.
5219 (org-set-local 'org-tag-groups-alist nil)
5220 (org-set-local 'org-tag-alist nil)
5221 (let (group-flag)
5222 (while tags
5223 (let ((e (car tags)))
5224 (setq tags (cdr tags))
5225 (cond
5226 ((equal e "{")
5227 (push '(:startgroup) org-tag-alist)
5228 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5229 ((equal e "}")
5230 (push '(:endgroup) org-tag-alist)
5231 (setq group-flag nil))
5232 ((equal e ":")
5233 (push '(:grouptags) org-tag-alist)
5234 (setq group-flag 'append))
5235 ((equal e "\\n") (push '(:newline) org-tag-alist))
5236 ((string-match
5237 (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'") e)
5238 (let ((tag (match-string 1 e))
5239 (key (and (match-beginning 2)
5240 (string-to-char (match-string 2 e)))))
5241 (cond ((eq group-flag 'append)
5242 (setcar org-tag-groups-alist
5243 (append (car org-tag-groups-alist) (list tag))))
5244 (group-flag (push (list tag) org-tag-groups-alist)))
5245 (unless (assoc tag org-tag-alist)
5246 (push (cons tag key) org-tag-alist))))))))
5247 (setq org-tag-alist (nreverse org-tag-alist)))
5249 (defun org-file-contents (file &optional noerror)
5250 "Return the contents of FILE, as a string."
5251 (if (and file (file-readable-p file))
5252 (with-temp-buffer
5253 (insert-file-contents file)
5254 (buffer-string))
5255 (funcall (if noerror 'message 'error)
5256 "Cannot read file \"%s\"%s"
5257 file
5258 (let ((from (buffer-file-name (buffer-base-buffer))))
5259 (if from (concat " (referenced in file \"" from "\")") "")))))
5261 (defun org-extract-log-state-settings (x)
5262 "Extract the log state setting from a TODO keyword string.
5263 This will extract info from a string like \"WAIT(w@/!)\"."
5264 (let (kw key log1 log2)
5265 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5266 (setq kw (match-string 1 x)
5267 key (and (match-end 2) (match-string 2 x))
5268 log1 (and (match-end 3) (match-string 3 x))
5269 log2 (and (match-end 4) (match-string 4 x)))
5270 (and (or log1 log2)
5271 (list kw
5272 (and log1 (if (equal log1 "!") 'time 'note))
5273 (and log2 (if (equal log2 "!") 'time 'note)))))))
5275 (defun org-remove-keyword-keys (list)
5276 "Remove a pair of parenthesis at the end of each string in LIST."
5277 (mapcar (lambda (x)
5278 (if (string-match "(.*)$" x)
5279 (substring x 0 (match-beginning 0))
5281 list))
5283 (defun org-assign-fast-keys (alist)
5284 "Assign fast keys to a keyword-key alist.
5285 Respect keys that are already there."
5286 (let (new e (alt ?0))
5287 (while (setq e (pop alist))
5288 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5289 (cdr e)) ;; Key already assigned.
5290 (push e new)
5291 (let ((clist (string-to-list (downcase (car e))))
5292 (used (append new alist)))
5293 (when (= (car clist) ?@)
5294 (pop clist))
5295 (while (and clist (rassoc (car clist) used))
5296 (pop clist))
5297 (unless clist
5298 (while (rassoc alt used)
5299 (incf alt)))
5300 (push (cons (car e) (or (car clist) alt)) new))))
5301 (nreverse new)))
5303 ;;; Some variables used in various places
5305 (defvar org-window-configuration nil
5306 "Used in various places to store a window configuration.")
5307 (defvar org-selected-window nil
5308 "Used in various places to store a window configuration.")
5309 (defvar org-finish-function nil
5310 "Function to be called when `C-c C-c' is used.
5311 This is for getting out of special buffers like capture.")
5314 ;; FIXME: Occasionally check by commenting these, to make sure
5315 ;; no other functions uses these, forgetting to let-bind them.
5316 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5317 (defvar org-last-state)
5318 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5320 ;; Defined somewhere in this file, but used before definition.
5321 (defvar org-entities) ;; defined in org-entities.el
5322 (defvar org-struct-menu)
5323 (defvar org-org-menu)
5324 (defvar org-tbl-menu)
5326 ;;;; Define the Org-mode
5328 ;; We use a before-change function to check if a table might need
5329 ;; an update.
5330 (defvar org-table-may-need-update t
5331 "Indicates that a table might need an update.
5332 This variable is set by `org-before-change-function'.
5333 `org-table-align' sets it back to nil.")
5334 (defun org-before-change-function (beg end)
5335 "Every change indicates that a table might need an update."
5336 (setq org-table-may-need-update t))
5337 (defvar org-mode-map)
5338 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5339 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5340 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5341 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5342 (defvar org-table-buffer-is-an nil)
5344 (defvar bidi-paragraph-direction)
5345 (defvar buffer-face-mode-face)
5347 (require 'outline)
5348 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5349 (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"))
5350 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5352 ;; Other stuff we need.
5353 (require 'time-date)
5354 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5355 (require 'easymenu)
5356 (require 'overlay)
5358 ;; (require 'org-macs) moved higher up in the file before it is first used
5359 (require 'org-entities)
5360 ;; (require 'org-compat) moved higher up in the file before it is first used
5361 (require 'org-faces)
5362 (require 'org-list)
5363 (require 'org-pcomplete)
5364 (require 'org-src)
5365 (require 'org-footnote)
5366 (require 'org-macro)
5368 ;; babel
5369 (require 'ob)
5371 ;;;###autoload
5372 (define-derived-mode org-mode outline-mode "Org"
5373 "Outline-based notes management and organizer, alias
5374 \"Carsten's outline-mode for keeping track of everything.\"
5376 Org-mode develops organizational tasks around a NOTES file which
5377 contains information about projects as plain text. Org-mode is
5378 implemented on top of outline-mode, which is ideal to keep the content
5379 of large files well structured. It supports ToDo items, deadlines and
5380 time stamps, which magically appear in the diary listing of the Emacs
5381 calendar. Tables are easily created with a built-in table editor.
5382 Plain text URL-like links connect to websites, emails (VM), Usenet
5383 messages (Gnus), BBDB entries, and any files related to the project.
5384 For printing and sharing of notes, an Org-mode file (or a part of it)
5385 can be exported as a structured ASCII or HTML file.
5387 The following commands are available:
5389 \\{org-mode-map}"
5391 ;; Get rid of Outline menus, they are not needed
5392 ;; Need to do this here because define-derived-mode sets up
5393 ;; the keymap so late. Still, it is a waste to call this each time
5394 ;; we switch another buffer into org-mode.
5395 (if (featurep 'xemacs)
5396 (when (boundp 'outline-mode-menu-heading)
5397 ;; Assume this is Greg's port, it uses easymenu
5398 (easy-menu-remove outline-mode-menu-heading)
5399 (easy-menu-remove outline-mode-menu-show)
5400 (easy-menu-remove outline-mode-menu-hide))
5401 (define-key org-mode-map [menu-bar headings] 'undefined)
5402 (define-key org-mode-map [menu-bar hide] 'undefined)
5403 (define-key org-mode-map [menu-bar show] 'undefined))
5405 (org-load-modules-maybe)
5406 (easy-menu-add org-org-menu)
5407 (easy-menu-add org-tbl-menu)
5408 (org-install-agenda-files-menu)
5409 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5410 (add-to-invisibility-spec '(org-cwidth))
5411 (add-to-invisibility-spec '(org-hide-block . t))
5412 (when (featurep 'xemacs)
5413 (org-set-local 'line-move-ignore-invisible t))
5414 (org-set-local 'outline-regexp org-outline-regexp)
5415 (org-set-local 'outline-level 'org-outline-level)
5416 (setq bidi-paragraph-direction 'left-to-right)
5417 (when (and org-ellipsis
5418 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5419 (fboundp 'make-glyph-code))
5420 (unless org-display-table
5421 (setq org-display-table (make-display-table)))
5422 (set-display-table-slot
5423 org-display-table 4
5424 (vconcat (mapcar
5425 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5426 org-ellipsis)))
5427 (if (stringp org-ellipsis) org-ellipsis "..."))))
5428 (setq buffer-display-table org-display-table))
5429 (org-set-regexps-and-options)
5430 (org-set-font-lock-defaults)
5431 (when (and org-tag-faces (not org-tags-special-faces-re))
5432 ;; tag faces set outside customize.... force initialization.
5433 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5434 ;; Calc embedded
5435 (org-set-local 'calc-embedded-open-mode "# ")
5436 ;; Modify a few syntax entries
5437 (modify-syntax-entry ?@ "w")
5438 (modify-syntax-entry ?\" "\"")
5439 (modify-syntax-entry ?\\ "_")
5440 (modify-syntax-entry ?~ "_")
5441 (if org-startup-truncated (setq truncate-lines t))
5442 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5443 (org-set-local 'font-lock-unfontify-region-function
5444 'org-unfontify-region)
5445 ;; Activate before-change-function
5446 (org-set-local 'org-table-may-need-update t)
5447 (org-add-hook 'before-change-functions 'org-before-change-function nil
5448 'local)
5449 ;; Check for running clock before killing a buffer
5450 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5451 ;; Initialize macros templates.
5452 (org-macro-initialize-templates)
5453 ;; Initialize radio targets.
5454 (org-update-radio-target-regexp)
5455 ;; Indentation.
5456 (org-set-local 'indent-line-function 'org-indent-line)
5457 (org-set-local 'indent-region-function 'org-indent-region)
5458 ;; Filling and auto-filling.
5459 (org-setup-filling)
5460 ;; Comments.
5461 (org-setup-comments-handling)
5462 ;; Initialize cache.
5463 (org-element-cache-reset)
5464 ;; Beginning/end of defun
5465 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5466 (org-set-local 'end-of-defun-function
5467 (lambda ()
5468 (if (not (org-at-heading-p))
5469 (org-forward-element)
5470 (org-forward-element)
5471 (forward-char -1))))
5472 ;; Next error for sparse trees
5473 (org-set-local 'next-error-function 'org-occur-next-match)
5474 ;; Make sure dependence stuff works reliably, even for users who set it
5475 ;; too late :-(
5476 (if org-enforce-todo-dependencies
5477 (add-hook 'org-blocker-hook
5478 'org-block-todo-from-children-or-siblings-or-parent)
5479 (remove-hook 'org-blocker-hook
5480 'org-block-todo-from-children-or-siblings-or-parent))
5481 (if org-enforce-todo-checkbox-dependencies
5482 (add-hook 'org-blocker-hook
5483 'org-block-todo-from-checkboxes)
5484 (remove-hook 'org-blocker-hook
5485 'org-block-todo-from-checkboxes))
5487 ;; Align options lines
5488 (org-set-local
5489 'align-mode-rules-list
5490 '((org-in-buffer-settings
5491 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5492 (modes . '(org-mode)))))
5494 ;; Imenu
5495 (org-set-local 'imenu-create-index-function
5496 'org-imenu-get-tree)
5498 ;; Make isearch reveal context
5499 (if (or (featurep 'xemacs)
5500 (not (boundp 'outline-isearch-open-invisible-function)))
5501 ;; Emacs 21 and XEmacs make use of the hook
5502 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5503 ;; Emacs 22 deals with this through a special variable
5504 (org-set-local 'outline-isearch-open-invisible-function
5505 (lambda (&rest ignore) (org-show-context 'isearch))))
5507 ;; Setup the pcomplete hooks
5508 (set (make-local-variable 'pcomplete-command-completion-function)
5509 'org-pcomplete-initial)
5510 (set (make-local-variable 'pcomplete-command-name-function)
5511 'org-command-at-point)
5512 (set (make-local-variable 'pcomplete-default-completion-function)
5513 'ignore)
5514 (set (make-local-variable 'pcomplete-parse-arguments-function)
5515 'org-parse-arguments)
5516 (set (make-local-variable 'pcomplete-termination-string) "")
5517 (when (>= emacs-major-version 23)
5518 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5520 ;; If empty file that did not turn on org-mode automatically, make it to.
5521 (if (and org-insert-mode-line-in-empty-file
5522 (org-called-interactively-p 'any)
5523 (= (point-min) (point-max)))
5524 (insert "# -*- mode: org -*-\n\n"))
5525 (unless org-inhibit-startup
5526 (org-unmodified
5527 (and org-startup-with-beamer-mode (org-beamer-mode))
5528 (when org-startup-align-all-tables
5529 (org-table-map-tables 'org-table-align 'quietly))
5530 (when org-startup-with-inline-images
5531 (org-display-inline-images))
5532 (when org-startup-with-latex-preview
5533 (org-toggle-latex-fragment))
5534 (unless org-inhibit-startup-visibility-stuff
5535 (org-set-startup-visibility))
5536 (org-refresh-effort-properties)))
5537 ;; Try to set org-hide correctly
5538 (let ((foreground (org-find-invisible-foreground)))
5539 (if foreground
5540 (set-face-foreground 'org-hide foreground))))
5542 ;; Update `customize-package-emacs-version-alist'
5543 (add-to-list 'customize-package-emacs-version-alist
5544 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5545 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5546 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5548 (defvar org-mode-transpose-word-syntax-table
5549 (let ((st (make-syntax-table text-mode-syntax-table)))
5550 (mapc (lambda(c) (modify-syntax-entry
5551 (string-to-char (car c)) "w p" st))
5552 org-emphasis-alist)
5553 st))
5555 (when (fboundp 'abbrev-table-put)
5556 (abbrev-table-put org-mode-abbrev-table
5557 :parents (list text-mode-abbrev-table)))
5559 (defun org-find-invisible-foreground ()
5560 (let ((candidates (remove
5561 "unspecified-bg"
5562 (nconc
5563 (list (face-background 'default)
5564 (face-background 'org-default))
5565 (mapcar
5566 (lambda (alist)
5567 (when (boundp alist)
5568 (cdr (assoc 'background-color (symbol-value alist)))))
5569 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5570 (list (face-foreground 'org-hide))))))
5571 (car (remove nil candidates))))
5573 (defun org-current-time (&optional rounding-minutes past)
5574 "Current time, possibly rounded to ROUNDING-MINUTES.
5575 When ROUNDING-MINUTES is not an integer, fall back on the car of
5576 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5577 the rounding returns a past time."
5578 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5579 (car org-time-stamp-rounding-minutes)))
5580 (time (decode-time)) res)
5581 (if (< r 1)
5582 (current-time)
5583 (setq res
5584 (apply 'encode-time
5585 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5586 (nthcdr 2 time))))
5587 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5588 (seconds-to-time (- (org-float-time res) (* r 60)))
5589 res))))
5591 (defun org-today ()
5592 "Return today date, considering `org-extend-today-until'."
5593 (time-to-days
5594 (time-subtract (current-time)
5595 (list 0 (* 3600 org-extend-today-until) 0))))
5597 ;;;; Font-Lock stuff, including the activators
5599 (defvar org-mouse-map (make-sparse-keymap))
5600 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5601 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5602 (when org-mouse-1-follows-link
5603 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5604 (when org-tab-follows-link
5605 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5606 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5608 (require 'font-lock)
5610 (defconst org-non-link-chars "]\t\n\r<>")
5611 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5612 "file+sys" "news" "shell" "elisp" "doi" "message"
5613 "help"))
5614 (defvar org-link-types-re nil
5615 "Matches a link that has a url-like prefix like \"http:\"")
5616 (defvar org-link-re-with-space nil
5617 "Matches a link with spaces, optional angular brackets around it.")
5618 (defvar org-link-re-with-space2 nil
5619 "Matches a link with spaces, optional angular brackets around it.")
5620 (defvar org-link-re-with-space3 nil
5621 "Matches a link with spaces, only for internal part in bracket links.")
5622 (defvar org-angle-link-re nil
5623 "Matches link with angular brackets, spaces are allowed.")
5624 (defvar org-plain-link-re nil
5625 "Matches plain link, without spaces.")
5626 (defvar org-bracket-link-regexp nil
5627 "Matches a link in double brackets.")
5628 (defvar org-bracket-link-analytic-regexp nil
5629 "Regular expression used to analyze links.
5630 Here is what the match groups contain after a match:
5631 1: http:
5632 2: http
5633 3: path
5634 4: [desc]
5635 5: desc")
5636 (defvar org-bracket-link-analytic-regexp++ nil
5637 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5638 (defvar org-any-link-re nil
5639 "Regular expression matching any link.")
5641 (defconst org-match-sexp-depth 3
5642 "Number of stacked braces for sub/superscript matching.")
5644 (defun org-create-multibrace-regexp (left right n)
5645 "Create a regular expression which will match a balanced sexp.
5646 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5647 as single character strings.
5648 The regexp returned will match the entire expression including the
5649 delimiters. It will also define a single group which contains the
5650 match except for the outermost delimiters. The maximum depth of
5651 stacked delimiters is N. Escaping delimiters is not possible."
5652 (let* ((nothing (concat "[^" left right "]*?"))
5653 (or "\\|")
5654 (re nothing)
5655 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5656 (while (> n 1)
5657 (setq n (1- n)
5658 re (concat re or next)
5659 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5660 (concat left "\\(" re "\\)" right)))
5662 (defconst org-match-substring-regexp
5663 (concat
5664 "\\(\\S-\\)\\([_^]\\)\\("
5665 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5666 "\\|"
5667 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5668 "\\|"
5669 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5670 "The regular expression matching a sub- or superscript.")
5672 (defconst org-match-substring-with-braces-regexp
5673 (concat
5674 "\\(\\S-\\)\\([_^]\\)"
5675 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5676 "The regular expression matching a sub- or superscript, forcing braces.")
5678 (defun org-make-link-regexps ()
5679 "Update the link regular expressions.
5680 This should be called after the variable `org-link-types' has changed."
5681 (let ((types-re (regexp-opt org-link-types t)))
5682 (setq org-link-types-re
5683 (concat "\\`" types-re ":")
5684 org-link-re-with-space
5685 (concat "<?" types-re ":"
5686 "\\([^" org-non-link-chars " ]"
5687 "[^" org-non-link-chars "]*"
5688 "[^" org-non-link-chars " ]\\)>?")
5689 org-link-re-with-space2
5690 (concat "<?" types-re ":"
5691 "\\([^" org-non-link-chars " ]"
5692 "[^\t\n\r]*"
5693 "[^" org-non-link-chars " ]\\)>?")
5694 org-link-re-with-space3
5695 (concat "<?" types-re ":"
5696 "\\([^" org-non-link-chars " ]"
5697 "[^\t\n\r]*\\)")
5698 org-angle-link-re
5699 (concat "<" types-re ":"
5700 "\\([^" org-non-link-chars " ]"
5701 "[^" org-non-link-chars "]*"
5702 "\\)>")
5703 org-plain-link-re
5704 (concat
5705 "\\<" types-re ":"
5706 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5707 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5708 org-bracket-link-regexp
5709 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5710 org-bracket-link-analytic-regexp
5711 (concat
5712 "\\[\\["
5713 "\\(" types-re ":\\)?"
5714 "\\([^]]+\\)"
5715 "\\]"
5716 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5717 "\\]")
5718 org-bracket-link-analytic-regexp++
5719 (concat
5720 "\\[\\["
5721 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5722 "\\([^]]+\\)"
5723 "\\]"
5724 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5725 "\\]")
5726 org-any-link-re
5727 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5728 org-angle-link-re "\\)\\|\\("
5729 org-plain-link-re "\\)"))))
5731 (org-make-link-regexps)
5733 (defvar org-emph-face nil)
5735 (defun org-do-emphasis-faces (limit)
5736 "Run through the buffer and emphasize strings."
5737 (let (rtn a)
5738 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5739 (let* ((border (char-after (match-beginning 3)))
5740 (bre (regexp-quote (char-to-string border))))
5741 (if (and (not (= border (char-after (match-beginning 4))))
5742 (not (save-match-data
5743 (string-match (concat bre ".*" bre)
5744 (replace-regexp-in-string
5745 "\n" " "
5746 (substring (match-string 2) 1 -1))))))
5747 (progn
5748 (setq rtn t)
5749 (setq a (assoc (match-string 3) org-emphasis-alist))
5750 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5751 'face
5752 (nth 1 a))
5753 (and (nth 2 a)
5754 (org-remove-flyspell-overlays-in
5755 (match-beginning 0) (match-end 0)))
5756 (add-text-properties (match-beginning 2) (match-end 2)
5757 '(font-lock-multiline t org-emphasis t))
5758 (when org-hide-emphasis-markers
5759 (add-text-properties (match-end 4) (match-beginning 5)
5760 '(invisible org-link))
5761 (add-text-properties (match-beginning 3) (match-end 3)
5762 '(invisible org-link))))))
5763 (goto-char (1+ (match-beginning 0))))
5764 rtn))
5766 (defun org-emphasize (&optional char)
5767 "Insert or change an emphasis, i.e. a font like bold or italic.
5768 If there is an active region, change that region to a new emphasis.
5769 If there is no region, just insert the marker characters and position
5770 the cursor between them.
5771 CHAR should be the marker character. If it is a space, it means to
5772 remove the emphasis of the selected region.
5773 If CHAR is not given (for example in an interactive call) it will be
5774 prompted for."
5775 (interactive)
5776 (let ((erc org-emphasis-regexp-components)
5777 (prompt "")
5778 (string "") beg end move c s)
5779 (if (org-region-active-p)
5780 (setq beg (region-beginning) end (region-end)
5781 string (buffer-substring beg end))
5782 (setq move t))
5784 (unless char
5785 (message "Emphasis marker or tag: [%s]"
5786 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5787 (setq char (read-char-exclusive)))
5788 (if (equal char ?\ )
5789 (setq s "" move nil)
5790 (unless (assoc (char-to-string char) org-emphasis-alist)
5791 (user-error "No such emphasis marker: \"%c\"" char))
5792 (setq s (char-to-string char)))
5793 (while (and (> (length string) 1)
5794 (equal (substring string 0 1) (substring string -1))
5795 (assoc (substring string 0 1) org-emphasis-alist))
5796 (setq string (substring string 1 -1)))
5797 (setq string (concat s string s))
5798 (if beg (delete-region beg end))
5799 (unless (or (bolp)
5800 (string-match (concat "[" (nth 0 erc) "\n]")
5801 (char-to-string (char-before (point)))))
5802 (insert " "))
5803 (unless (or (eobp)
5804 (string-match (concat "[" (nth 1 erc) "\n]")
5805 (char-to-string (char-after (point)))))
5806 (insert " ") (backward-char 1))
5807 (insert string)
5808 (and move (backward-char 1))))
5810 (defconst org-nonsticky-props
5811 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5813 (defsubst org-rear-nonsticky-at (pos)
5814 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5816 (defun org-activate-plain-links (limit)
5817 "Add link properties for plain links."
5818 (let (f hl)
5819 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5820 (not (member 'org-tag
5821 (get-text-property (1- (match-beginning 0)) 'face)))
5822 (not (org-in-src-block-p)))
5823 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5824 (setq f (get-text-property (match-beginning 0) 'face))
5825 (setq hl (org-match-string-no-properties 0))
5826 (if (or (eq f 'org-tag)
5827 (and (listp f) (memq 'org-tag f)))
5829 (add-text-properties (match-beginning 0) (match-end 0)
5830 (list 'mouse-face 'highlight
5831 'face 'org-link
5832 'htmlize-link `(:uri ,hl)
5833 'keymap org-mouse-map))
5834 (org-rear-nonsticky-at (match-end 0)))
5835 t)))
5837 (defun org-activate-code (limit)
5838 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5839 (progn
5840 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5841 (remove-text-properties (match-beginning 0) (match-end 0)
5842 '(display t invisible t intangible t))
5843 t)))
5845 (defcustom org-src-fontify-natively t
5846 "When non-nil, fontify code in code blocks."
5847 :type 'boolean
5848 :version "24.4"
5849 :package-version '(Org . "8.3")
5850 :group 'org-appearance
5851 :group 'org-babel)
5853 (defcustom org-allow-promoting-top-level-subtree nil
5854 "When non-nil, allow promoting a top level subtree.
5855 The leading star of the top level headline will be replaced
5856 by a #."
5857 :type 'boolean
5858 :version "24.1"
5859 :group 'org-appearance)
5861 (defun org-fontify-meta-lines-and-blocks (limit)
5862 (condition-case nil
5863 (org-fontify-meta-lines-and-blocks-1 limit)
5864 (error (message "org-mode fontification error"))))
5866 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5867 "Fontify #+ lines and blocks."
5868 (let ((case-fold-search t))
5869 (if (re-search-forward
5870 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5871 limit t)
5872 (let ((beg (match-beginning 0))
5873 (block-start (match-end 0))
5874 (block-end nil)
5875 (lang (match-string 7))
5876 (beg1 (line-beginning-position 2))
5877 (dc1 (downcase (match-string 2)))
5878 (dc3 (downcase (match-string 3)))
5879 end end1 quoting block-type ovl)
5880 (cond
5881 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5882 ;; a single line of backend-specific content
5883 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5884 (remove-text-properties (match-beginning 0) (match-end 0)
5885 '(display t invisible t intangible t))
5886 (add-text-properties (match-beginning 1) (match-end 3)
5887 '(font-lock-fontified t face org-meta-line))
5888 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5889 '(font-lock-fontified t face org-block))
5890 ; for backend-specific code
5892 ((and (match-end 4) (equal dc3 "+begin"))
5893 ;; Truly a block
5894 (setq block-type (downcase (match-string 5))
5895 quoting (member block-type org-protecting-blocks))
5896 (when (re-search-forward
5897 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5898 nil t) ;; on purpose, we look further than LIMIT
5899 (setq end (min (point-max) (match-end 0))
5900 end1 (min (point-max) (1- (match-beginning 0))))
5901 (setq block-end (match-beginning 0))
5902 (when quoting
5903 (org-remove-flyspell-overlays-in beg1 end1)
5904 (remove-text-properties beg end
5905 '(display t invisible t intangible t)))
5906 (add-text-properties
5907 beg end '(font-lock-fontified t font-lock-multiline t))
5908 (add-text-properties beg beg1 '(face org-meta-line))
5909 (org-remove-flyspell-overlays-in beg beg1)
5910 (add-text-properties ; For end_src
5911 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5912 (org-remove-flyspell-overlays-in end1 end)
5913 (cond
5914 ((and lang (not (string= lang "")) org-src-fontify-natively)
5915 (org-src-font-lock-fontify-block lang block-start block-end)
5916 (add-text-properties beg1 block-end '(src-block t)))
5917 (quoting
5918 (add-text-properties beg1 (min (point-max) (1+ end1))
5919 '(face org-block))) ; end of source block
5920 ((not org-fontify-quote-and-verse-blocks))
5921 ((string= block-type "quote")
5922 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5923 ((string= block-type "verse")
5924 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5925 (add-text-properties beg beg1 '(face org-block-begin-line))
5926 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5927 '(face org-block-end-line))
5929 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5930 (org-remove-flyspell-overlays-in
5931 (match-beginning 0)
5932 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5933 (add-text-properties
5934 beg (match-end 3)
5935 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5936 '(font-lock-fontified t invisible t)
5937 '(font-lock-fontified t face org-document-info-keyword)))
5938 (add-text-properties
5939 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5940 (if (string-equal dc1 "+title:")
5941 '(font-lock-fontified t face org-document-title)
5942 '(font-lock-fontified t face org-document-info))))
5943 ((or (equal dc1 "+results")
5944 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5945 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5946 "+call:" "+header:" "+headers:" "+name:"))
5947 (and (match-end 4) (equal dc3 "+attr")))
5948 (org-remove-flyspell-overlays-in
5949 (match-beginning 0)
5950 (if (equal "+caption:" dc1) (match-end 2) (match-end 0)))
5951 (add-text-properties
5952 beg (match-end 0)
5953 '(font-lock-fontified t face org-meta-line))
5955 ((member dc3 '(" " ""))
5956 (org-remove-flyspell-overlays-in beg (match-end 0))
5957 (add-text-properties
5958 beg (match-end 0)
5959 '(font-lock-fontified t face font-lock-comment-face)))
5960 (t ;; just any other in-buffer setting, but not indented
5961 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5962 (add-text-properties
5963 beg (match-end 0)
5964 '(font-lock-fontified t face org-meta-line))
5965 t))))))
5967 (defun org-fontify-drawers (limit)
5968 "Fontify drawers."
5969 (when (re-search-forward org-drawer-regexp limit t)
5970 (add-text-properties
5971 (match-beginning 0) (match-end 0)
5972 '(font-lock-fontified t face org-special-keyword))
5973 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5976 (defun org-fontify-macros (limit)
5977 "Fontify macros."
5978 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5979 (add-text-properties
5980 (match-beginning 0) (match-end 0)
5981 '(font-lock-fontified t face org-macro))
5982 (when org-hide-macro-markers
5983 (add-text-properties (match-end 2) (match-beginning 2)
5984 '(invisible t))
5985 (add-text-properties (match-beginning 1) (match-end 1)
5986 '(invisible t)))
5987 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5990 (defun org-activate-angle-links (limit)
5991 "Add text properties for angle links."
5992 (if (and (re-search-forward org-angle-link-re limit t)
5993 (not (org-in-src-block-p)))
5994 (progn
5995 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5996 (add-text-properties (match-beginning 0) (match-end 0)
5997 (list 'mouse-face 'highlight
5998 'keymap org-mouse-map))
5999 (org-rear-nonsticky-at (match-end 0))
6000 t)))
6002 (defun org-activate-footnote-links (limit)
6003 "Add text properties for footnotes."
6004 (let ((fn (org-footnote-next-reference-or-definition limit)))
6005 (when fn
6006 (let* ((beg (nth 1 fn))
6007 (end (nth 2 fn))
6008 (label (car fn))
6009 (referencep (/= (line-beginning-position) beg)))
6010 (when (and referencep (nth 3 fn))
6011 (save-excursion
6012 (goto-char beg)
6013 (search-forward (or label "fn:"))
6014 (org-remove-flyspell-overlays-in beg (match-end 0))))
6015 (add-text-properties beg end
6016 (list 'mouse-face 'highlight
6017 'keymap org-mouse-map
6018 'help-echo
6019 (if referencep "Footnote reference"
6020 "Footnote definition")
6021 'font-lock-fontified t
6022 'font-lock-multiline t
6023 'face 'org-footnote))))))
6025 (defun org-activate-bracket-links (limit)
6026 "Add text properties for bracketed links."
6027 (if (and (re-search-forward org-bracket-link-regexp limit t)
6028 (not (org-in-src-block-p)))
6029 (let* ((hl (org-match-string-no-properties 1))
6030 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6031 (ip (org-maybe-intangible
6032 (list 'invisible 'org-link
6033 'keymap org-mouse-map 'mouse-face 'highlight
6034 'font-lock-multiline t 'help-echo help
6035 'htmlize-link `(:uri ,hl))))
6036 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6037 'font-lock-multiline t 'help-echo help
6038 'htmlize-link `(:uri ,hl))))
6039 ;; We need to remove the invisible property here. Table narrowing
6040 ;; may have made some of this invisible.
6041 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6042 (remove-text-properties (match-beginning 0) (match-end 0)
6043 '(invisible nil))
6044 (if (match-end 3)
6045 (progn
6046 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6047 (org-rear-nonsticky-at (match-beginning 3))
6048 (add-text-properties (match-beginning 3) (match-end 3) vp)
6049 (org-rear-nonsticky-at (match-end 3))
6050 (add-text-properties (match-end 3) (match-end 0) ip)
6051 (org-rear-nonsticky-at (match-end 0)))
6052 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6053 (org-rear-nonsticky-at (match-beginning 1))
6054 (add-text-properties (match-beginning 1) (match-end 1) vp)
6055 (org-rear-nonsticky-at (match-end 1))
6056 (add-text-properties (match-end 1) (match-end 0) ip)
6057 (org-rear-nonsticky-at (match-end 0)))
6058 t)))
6060 (defun org-activate-dates (limit)
6061 "Add text properties for dates."
6062 (if (and (re-search-forward org-tsr-regexp-both limit t)
6063 (not (equal (char-before (match-beginning 0)) 91)))
6064 (progn
6065 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6066 (add-text-properties (match-beginning 0) (match-end 0)
6067 (list 'mouse-face 'highlight
6068 'keymap org-mouse-map))
6069 (org-rear-nonsticky-at (match-end 0))
6070 (when org-display-custom-times
6071 (if (match-end 3)
6072 (org-display-custom-time (match-beginning 3) (match-end 3)))
6073 (org-display-custom-time (match-beginning 1) (match-end 1)))
6074 t)))
6076 (defvar org-target-link-regexp nil
6077 "Regular expression matching radio targets in plain text.")
6078 (make-variable-buffer-local 'org-target-link-regexp)
6080 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6081 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6082 border border border))
6083 "Regular expression matching a link target.")
6085 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6086 "Regular expression matching a radio target.")
6088 (defconst org-any-target-regexp
6089 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6090 "Regular expression matching any target.")
6092 (defun org-activate-target-links (limit)
6093 "Add text properties for target matches."
6094 (when org-target-link-regexp
6095 (let ((case-fold-search t))
6096 (if (re-search-forward org-target-link-regexp limit t)
6097 (progn
6098 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6099 (add-text-properties (match-beginning 1) (match-end 1)
6100 (list 'mouse-face 'highlight
6101 'keymap org-mouse-map
6102 'help-echo "Radio target link"
6103 'org-linked-text t))
6104 (org-rear-nonsticky-at (match-end 1))
6105 t)))))
6107 (defun org-update-radio-target-regexp ()
6108 "Find all radio targets in this file and update the regular expression.
6109 Also refresh fontification if needed."
6110 (interactive)
6111 (let ((old-regexp org-target-link-regexp)
6112 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6113 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6114 (targets
6115 (org-with-wide-buffer
6116 (goto-char (point-min))
6117 (let (rtn)
6118 (while (re-search-forward org-radio-target-regexp nil t)
6119 ;; Make sure point is really within the object.
6120 (backward-char)
6121 (let ((obj (org-element-context)))
6122 (when (eq (org-element-type obj) 'radio-target)
6123 (add-to-list 'rtn (org-element-property :value obj)))))
6124 rtn))))
6125 (setq org-target-link-regexp
6126 (and targets
6127 (concat before-re
6128 (mapconcat
6129 (lambda (x)
6130 (replace-regexp-in-string
6131 " +" "\\s-+" (regexp-quote x) t t))
6132 targets
6133 "\\|")
6134 after-re)))
6135 (unless (equal old-regexp org-target-link-regexp)
6136 ;; Clean-up cache.
6137 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6138 ((not org-target-link-regexp) old-regexp)
6140 (concat before-re
6141 (mapconcat
6142 (lambda (re)
6143 (substring re (length before-re)
6144 (- (length after-re))))
6145 (list old-regexp org-target-link-regexp)
6146 "\\|")
6147 after-re)))))
6148 (org-with-wide-buffer
6149 (goto-char (point-min))
6150 (while (re-search-forward regexp nil t)
6151 (org-element-cache-refresh (match-beginning 1)))))
6152 ;; Re fontify buffer.
6153 (when (memq 'radio org-highlight-links)
6154 (org-restart-font-lock)))))
6156 (defun org-hide-wide-columns (limit)
6157 (let (s e)
6158 (setq s (text-property-any (point) (or limit (point-max))
6159 'org-cwidth t))
6160 (when s
6161 (setq e (next-single-property-change s 'org-cwidth))
6162 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6163 (goto-char e)
6164 t)))
6166 (defvar org-latex-and-related-regexp nil
6167 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6169 (defun org-compute-latex-and-related-regexp ()
6170 "Compute regular expression for LaTeX, entities and sub/superscript.
6171 Result depends on variable `org-highlight-latex-and-related'."
6172 (org-set-local
6173 'org-latex-and-related-regexp
6174 (let* ((re-sub
6175 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6176 ((eq org-use-sub-superscripts '{})
6177 (list org-match-substring-with-braces-regexp))
6178 (org-use-sub-superscripts (list org-match-substring-regexp))))
6179 (re-latex
6180 (when (memq 'latex org-highlight-latex-and-related)
6181 (let ((matchers (plist-get org-format-latex-options :matchers)))
6182 (delq nil
6183 (mapcar (lambda (x)
6184 (and (member (car x) matchers) (nth 1 x)))
6185 org-latex-regexps)))))
6186 (re-entities
6187 (when (memq 'entities org-highlight-latex-and-related)
6188 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6189 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6191 (defun org-do-latex-and-related (limit)
6192 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6193 LIMIT bounds the search for syntax to highlight. Stop at first
6194 highlighted object, if any. Return t if some highlighting was
6195 done, nil otherwise."
6196 (when (org-string-nw-p org-latex-and-related-regexp)
6197 (catch 'found
6198 (while (re-search-forward org-latex-and-related-regexp limit t)
6199 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6200 'face))
6201 '(org-code org-verbatim underline))
6202 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6203 '(?_ ?^))
6205 0)))
6206 (font-lock-prepend-text-property
6207 (+ offset (match-beginning 0)) (match-end 0)
6208 'face 'org-latex-and-related)
6209 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6210 '(font-lock-multiline t)))
6211 (throw 'found t)))
6212 nil)))
6214 (defun org-restart-font-lock ()
6215 "Restart `font-lock-mode', to force refontification."
6216 (when (and (boundp 'font-lock-mode) font-lock-mode)
6217 (font-lock-mode -1)
6218 (font-lock-mode 1)))
6220 (defun org-activate-tags (limit)
6221 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6222 (progn
6223 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6224 (add-text-properties (match-beginning 1) (match-end 1)
6225 (list 'mouse-face 'highlight
6226 'keymap org-mouse-map))
6227 (org-rear-nonsticky-at (match-end 1))
6228 t)))
6230 (defun org-outline-level ()
6231 "Compute the outline level of the heading at point.
6232 If this is called at a normal headline, the level is the number of stars.
6233 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6234 (save-excursion
6235 (if (not (ignore-errors (org-back-to-heading t)))
6237 (looking-at org-outline-regexp)
6238 (1- (- (match-end 0) (match-beginning 0))))))
6240 (defvar org-font-lock-keywords nil)
6242 (defsubst org-re-property (property &optional literal allow-null)
6243 "Return a regexp matching a PROPERTY line.
6245 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6246 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6247 non-nil, match properties even without a value.
6249 Match group 3 is set to the value when it exists. If there is no
6250 value and ALLOW-NULL is non-nil, it is set to the empty string."
6251 (concat
6252 "^\\(?4:[ \t]*\\)"
6253 (format "\\(?1::\\(?2:%s\\):\\)"
6254 (if literal property (regexp-quote property)))
6255 (if allow-null
6256 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6257 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6259 (defconst org-property-re
6260 (org-re-property "\\S-+" 'literal t)
6261 "Regular expression matching a property line.
6262 There are four matching groups:
6263 1: :PROPKEY: including the leading and trailing colon,
6264 2: PROPKEY without the leading and trailing colon,
6265 3: PROPVAL without leading or trailing spaces,
6266 4: the indentation of the current line,
6267 5: trailing whitespace.")
6269 (defvar org-font-lock-hook nil
6270 "Functions to be called for special font lock stuff.")
6272 (defvar org-font-lock-set-keywords-hook nil
6273 "Functions that can manipulate `org-font-lock-extra-keywords'.
6274 This is called after `org-font-lock-extra-keywords' is defined, but before
6275 it is installed to be used by font lock. This can be useful if something
6276 needs to be inserted at a specific position in the font-lock sequence.")
6278 (defun org-font-lock-hook (limit)
6279 "Run `org-font-lock-hook' within LIMIT."
6280 (run-hook-with-args 'org-font-lock-hook limit))
6282 (defun org-set-font-lock-defaults ()
6283 "Set font lock defaults for the current buffer."
6284 (let* ((em org-fontify-emphasized-text)
6285 (lk org-highlight-links)
6286 (org-font-lock-extra-keywords
6287 (list
6288 ;; Call the hook
6289 '(org-font-lock-hook)
6290 ;; Headlines
6291 `(,(if org-fontify-whole-heading-line
6292 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6293 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6294 (1 (org-get-level-face 1))
6295 (2 (org-get-level-face 2))
6296 (3 (org-get-level-face 3)))
6297 ;; Table lines
6298 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6299 (1 'org-table t))
6300 ;; Table internals
6301 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6302 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6303 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6304 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6305 ;; Drawers
6306 '(org-fontify-drawers)
6307 ;; Properties
6308 (list org-property-re
6309 '(1 'org-special-keyword t)
6310 '(3 'org-property-value t))
6311 ;; Links
6312 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6313 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6314 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6315 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6316 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6317 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6318 (if (memq 'footnote lk) '(org-activate-footnote-links))
6319 ;; Targets.
6320 (list org-any-target-regexp '(0 'org-target t))
6321 ;; Diary sexps.
6322 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6323 ;; Macro
6324 '(org-fontify-macros)
6325 '(org-hide-wide-columns (0 nil append))
6326 ;; TODO keyword
6327 (list (format org-heading-keyword-regexp-format
6328 org-todo-regexp)
6329 '(2 (org-get-todo-face 2) t))
6330 ;; DONE
6331 (if org-fontify-done-headline
6332 (list (format org-heading-keyword-regexp-format
6333 (concat
6334 "\\(?:"
6335 (mapconcat 'regexp-quote org-done-keywords "\\|")
6336 "\\)"))
6337 '(2 'org-headline-done t))
6338 nil)
6339 ;; Priorities
6340 '(org-font-lock-add-priority-faces)
6341 ;; Tags
6342 '(org-font-lock-add-tag-faces)
6343 ;; Tags groups
6344 (if (and org-group-tags org-tag-groups-alist)
6345 (list (concat org-outline-regexp-bol ".+\\(:"
6346 (regexp-opt (mapcar 'car org-tag-groups-alist))
6347 ":\\).*$")
6348 '(1 'org-tag-group prepend)))
6349 ;; Special keywords
6350 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6351 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6352 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6353 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6354 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6355 ;; Emphasis
6356 (if em
6357 (if (featurep 'xemacs)
6358 '(org-do-emphasis-faces (0 nil append))
6359 '(org-do-emphasis-faces)))
6360 ;; Checkboxes
6361 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6362 1 'org-checkbox prepend)
6363 (if (cdr (assq 'checkbox org-list-automatic-rules))
6364 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6365 (0 (org-get-checkbox-statistics-face) t)))
6366 ;; Description list items
6367 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6368 1 'org-list-dt prepend)
6369 ;; ARCHIVEd headings
6370 (list (concat
6371 org-outline-regexp-bol
6372 "\\(.*:" org-archive-tag ":.*\\)")
6373 '(1 'org-archived prepend))
6374 ;; Specials
6375 '(org-do-latex-and-related)
6376 '(org-fontify-entities)
6377 '(org-raise-scripts)
6378 ;; Code
6379 '(org-activate-code (1 'org-code t))
6380 ;; COMMENT
6381 (list (format
6382 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6383 org-todo-regexp
6384 org-comment-string)
6385 '(9 'org-special-keyword t))
6386 ;; Blocks and meta lines
6387 '(org-fontify-meta-lines-and-blocks))))
6388 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6389 (run-hooks 'org-font-lock-set-keywords-hook)
6390 ;; Now set the full font-lock-keywords
6391 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6392 (org-set-local 'font-lock-defaults
6393 '(org-font-lock-keywords t nil nil backward-paragraph))
6394 (kill-local-variable 'font-lock-keywords) nil))
6396 (defun org-toggle-pretty-entities ()
6397 "Toggle the composition display of entities as UTF8 characters."
6398 (interactive)
6399 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6400 (org-restart-font-lock)
6401 (if org-pretty-entities
6402 (message "Entities are now displayed as UTF8 characters")
6403 (save-restriction
6404 (widen)
6405 (org-decompose-region (point-min) (point-max))
6406 (message "Entities are now displayed as plain text"))))
6408 (defvar org-custom-properties-overlays nil
6409 "List of overlays used for custom properties.")
6410 (make-variable-buffer-local 'org-custom-properties-overlays)
6412 (defun org-toggle-custom-properties-visibility ()
6413 "Display or hide properties in `org-custom-properties'."
6414 (interactive)
6415 (if org-custom-properties-overlays
6416 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6417 (setq org-custom-properties-overlays nil))
6418 (when org-custom-properties
6419 (org-with-wide-buffer
6420 (goto-char (point-min))
6421 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6422 (while (re-search-forward regexp nil t)
6423 (let ((end (cdr (save-match-data (org-get-property-block)))))
6424 (when (and end (< (point) end))
6425 ;; Hide first custom property in current drawer.
6426 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6427 (overlay-put o 'invisible t)
6428 (overlay-put o 'org-custom-property t)
6429 (push o org-custom-properties-overlays))
6430 ;; Hide additional custom properties in the same drawer.
6431 (while (re-search-forward regexp end t)
6432 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6433 (overlay-put o 'invisible t)
6434 (overlay-put o 'org-custom-property t)
6435 (push o org-custom-properties-overlays)))))
6436 ;; Each entry is limited to a single property drawer.
6437 (outline-next-heading)))))))
6439 (defun org-fontify-entities (limit)
6440 "Find an entity to fontify."
6441 (let (ee)
6442 (when org-pretty-entities
6443 (catch 'match
6444 (while (re-search-forward
6445 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6446 limit t)
6447 (if (and (not (org-at-comment-p))
6448 (setq ee (org-entity-get (match-string 1)))
6449 (= (length (nth 6 ee)) 1))
6450 (let*
6451 ((end (if (equal (match-string 2) "{}")
6452 (match-end 2)
6453 (match-end 1))))
6454 (add-text-properties
6455 (match-beginning 0) end
6456 (list 'font-lock-fontified t))
6457 (compose-region (match-beginning 0) end
6458 (nth 6 ee) nil)
6459 (backward-char 1)
6460 (throw 'match t))))
6461 nil))))
6463 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6464 "Fontify string S like in Org-mode."
6465 (with-temp-buffer
6466 (insert s)
6467 (let ((org-odd-levels-only odd-levels))
6468 (org-mode)
6469 (font-lock-ensure)
6470 (buffer-string))))
6472 (defvar org-m nil)
6473 (defvar org-l nil)
6474 (defvar org-f nil)
6475 (defun org-get-level-face (n)
6476 "Get the right face for match N in font-lock matching of headlines."
6477 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6478 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6479 (if org-cycle-level-faces
6480 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6481 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6482 (cond
6483 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6484 ((eq n 2) org-f)
6485 (t (if org-level-color-stars-only nil org-f))))
6488 (defun org-get-todo-face (kwd)
6489 "Get the right face for a TODO keyword KWD.
6490 If KWD is a number, get the corresponding match group."
6491 (if (numberp kwd) (setq kwd (match-string kwd)))
6492 (or (org-face-from-face-or-color
6493 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6494 (and (member kwd org-done-keywords) 'org-done)
6495 'org-todo))
6497 (defun org-face-from-face-or-color (context inherit face-or-color)
6498 "Create a face list that inherits INHERIT, but sets the foreground color.
6499 When FACE-OR-COLOR is not a string, just return it."
6500 (if (stringp face-or-color)
6501 (list :inherit inherit
6502 (cdr (assoc context org-faces-easy-properties))
6503 face-or-color)
6504 face-or-color))
6506 (defun org-font-lock-add-tag-faces (limit)
6507 "Add the special tag faces."
6508 (when (and org-tag-faces org-tags-special-faces-re)
6509 (while (re-search-forward org-tags-special-faces-re limit t)
6510 (add-text-properties (match-beginning 1) (match-end 1)
6511 (list 'face (org-get-tag-face 1)
6512 'font-lock-fontified t))
6513 (backward-char 1))))
6515 (defun org-font-lock-add-priority-faces (limit)
6516 "Add the special priority faces."
6517 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6518 (when (save-match-data (org-at-heading-p))
6519 (add-text-properties
6520 (match-beginning 0) (match-end 0)
6521 (list 'face (or (org-face-from-face-or-color
6522 'priority 'org-priority
6523 (cdr (assoc (char-after (match-beginning 1))
6524 org-priority-faces)))
6525 'org-priority)
6526 'font-lock-fontified t)))))
6528 (defun org-get-tag-face (kwd)
6529 "Get the right face for a TODO keyword KWD.
6530 If KWD is a number, get the corresponding match group."
6531 (if (numberp kwd) (setq kwd (match-string kwd)))
6532 (or (org-face-from-face-or-color
6533 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6534 'org-tag))
6536 (defun org-unfontify-region (beg end &optional maybe_loudly)
6537 "Remove fontification and activation overlays from links."
6538 (font-lock-default-unfontify-region beg end)
6539 (let* ((buffer-undo-list t)
6540 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6541 (inhibit-modification-hooks t)
6542 deactivate-mark buffer-file-name buffer-file-truename)
6543 (org-decompose-region beg end)
6544 (remove-text-properties beg end
6545 '(mouse-face t keymap t org-linked-text t
6546 invisible t intangible t
6547 org-emphasis t))
6548 (org-remove-font-lock-display-properties beg end)))
6550 (defconst org-script-display '(((raise -0.3) (height 0.7))
6551 ((raise 0.3) (height 0.7))
6552 ((raise -0.5))
6553 ((raise 0.5)))
6554 "Display properties for showing superscripts and subscripts.")
6556 (defun org-remove-font-lock-display-properties (beg end)
6557 "Remove specific display properties that have been added by font lock.
6558 The will remove the raise properties that are used to show superscripts
6559 and subscripts."
6560 (let (next prop)
6561 (while (< beg end)
6562 (setq next (next-single-property-change beg 'display nil end)
6563 prop (get-text-property beg 'display))
6564 (if (member prop org-script-display)
6565 (put-text-property beg next 'display nil))
6566 (setq beg next))))
6568 (defun org-raise-scripts (limit)
6569 "Add raise properties to sub/superscripts."
6570 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6571 (if (re-search-forward
6572 (if (eq org-use-sub-superscripts t)
6573 org-match-substring-regexp
6574 org-match-substring-with-braces-regexp)
6575 limit t)
6576 (let* ((pos (point)) table-p comment-p
6577 (mpos (match-beginning 3))
6578 (emph-p (get-text-property mpos 'org-emphasis))
6579 (link-p (get-text-property mpos 'mouse-face))
6580 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6581 (goto-char (point-at-bol))
6582 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6583 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6584 (goto-char pos)
6585 ;; Handle a_b^c
6586 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6587 (if (or comment-p emph-p link-p keyw-p)
6589 (put-text-property (match-beginning 3) (match-end 0)
6590 'display
6591 (if (equal (char-after (match-beginning 2)) ?^)
6592 (nth (if table-p 3 1) org-script-display)
6593 (nth (if table-p 2 0) org-script-display)))
6594 (add-text-properties (match-beginning 2) (match-end 2)
6595 (list 'invisible t
6596 'org-dwidth t 'org-dwidth-n 1))
6597 (if (and (eq (char-after (match-beginning 3)) ?{)
6598 (eq (char-before (match-end 3)) ?}))
6599 (progn
6600 (add-text-properties
6601 (match-beginning 3) (1+ (match-beginning 3))
6602 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6603 (add-text-properties
6604 (1- (match-end 3)) (match-end 3)
6605 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6606 t)))))
6608 ;;;; Visibility cycling, including org-goto and indirect buffer
6610 ;;; Cycling
6612 (defvar org-cycle-global-status nil)
6613 (make-variable-buffer-local 'org-cycle-global-status)
6614 (put 'org-cycle-global-status 'org-state t)
6615 (defvar org-cycle-subtree-status nil)
6616 (make-variable-buffer-local 'org-cycle-subtree-status)
6617 (put 'org-cycle-subtree-status 'org-state t)
6619 (defvar org-inlinetask-min-level)
6621 (defun org-unlogged-message (&rest args)
6622 "Display a message, but avoid logging it in the *Messages* buffer."
6623 (let ((message-log-max nil))
6624 (apply 'message args)))
6626 ;;;###autoload
6627 (defun org-cycle (&optional arg)
6628 "TAB-action and visibility cycling for Org-mode.
6630 This is the command invoked in Org-mode by the TAB key. Its main purpose
6631 is outline visibility cycling, but it also invokes other actions
6632 in special contexts.
6634 - When this function is called with a prefix argument, rotate the entire
6635 buffer through 3 states (global cycling)
6636 1. OVERVIEW: Show only top-level headlines.
6637 2. CONTENTS: Show all headlines of all levels, but no body text.
6638 3. SHOW ALL: Show everything.
6639 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6640 determined by the variable `org-startup-folded', and by any VISIBILITY
6641 properties in the buffer.
6642 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6643 including any drawers.
6645 - When inside a table, re-align the table and move to the next field.
6647 - When point is at the beginning of a headline, rotate the subtree started
6648 by this line through 3 different states (local cycling)
6649 1. FOLDED: Only the main headline is shown.
6650 2. CHILDREN: The main headline and the direct children are shown.
6651 From this state, you can move to one of the children
6652 and zoom in further.
6653 3. SUBTREE: Show the entire subtree, including body text.
6654 If there is no subtree, switch directly from CHILDREN to FOLDED.
6656 - When point is at the beginning of an empty headline and the variable
6657 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6658 of the headline by demoting and promoting it to likely levels. This
6659 speeds up creation document structure by pressing TAB once or several
6660 times right after creating a new headline.
6662 - When there is a numeric prefix, go up to a heading with level ARG, do
6663 a `show-subtree' and return to the previous cursor position. If ARG
6664 is negative, go up that many levels.
6666 - When point is not at the beginning of a headline, execute the global
6667 binding for TAB, which is re-indenting the line. See the option
6668 `org-cycle-emulate-tab' for details.
6670 - Special case: if point is at the beginning of the buffer and there is
6671 no headline in line 1, this function will act as if called with prefix arg
6672 (C-u TAB, same as S-TAB) also when called without prefix arg.
6673 But only if also the variable `org-cycle-global-at-bob' is t."
6674 (interactive "P")
6675 (org-load-modules-maybe)
6676 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6677 (and org-cycle-level-after-item/entry-creation
6678 (or (org-cycle-level)
6679 (org-cycle-item-indentation))))
6680 (let* ((limit-level
6681 (or org-cycle-max-level
6682 (and (boundp 'org-inlinetask-min-level)
6683 org-inlinetask-min-level
6684 (1- org-inlinetask-min-level))))
6685 (nstars (and limit-level
6686 (if org-odd-levels-only
6687 (and limit-level (1- (* limit-level 2)))
6688 limit-level)))
6689 (org-outline-regexp
6690 (if (not (derived-mode-p 'org-mode))
6691 outline-regexp
6692 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6693 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6694 (not (looking-at org-outline-regexp))))
6695 (org-cycle-hook
6696 (if bob-special
6697 (delq 'org-optimize-window-after-visibility-change
6698 (copy-sequence org-cycle-hook))
6699 org-cycle-hook))
6700 (pos (point)))
6702 (if (or bob-special (equal arg '(4)))
6703 ;; special case: use global cycling
6704 (setq arg t))
6706 (cond
6708 ((equal arg '(16))
6709 (setq last-command 'dummy)
6710 (org-set-startup-visibility)
6711 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6713 ((equal arg '(64))
6714 (show-all)
6715 (org-unlogged-message "Entire buffer visible, including drawers"))
6717 ;; Try cdlatex TAB completion
6718 ((org-try-cdlatex-tab))
6720 ;; Table: enter it or move to the next field.
6721 ((org-at-table-p 'any)
6722 (if (org-at-table.el-p)
6723 (message "Use C-c ' to edit table.el tables")
6724 (if arg (org-table-edit-field t)
6725 (org-table-justify-field-maybe)
6726 (call-interactively 'org-table-next-field))))
6728 ((run-hook-with-args-until-success
6729 'org-tab-after-check-for-table-hook))
6731 ;; Global cycling: delegate to `org-cycle-internal-global'.
6732 ((eq arg t) (org-cycle-internal-global))
6734 ;; Drawers: delegate to `org-flag-drawer'.
6735 ((save-excursion
6736 (beginning-of-line 1)
6737 (looking-at org-drawer-regexp))
6738 (org-flag-drawer ; toggle block visibility
6739 (not (get-char-property (match-end 0) 'invisible))))
6741 ;; Show-subtree, ARG levels up from here.
6742 ((integerp arg)
6743 (save-excursion
6744 (org-back-to-heading)
6745 (outline-up-heading (if (< arg 0) (- arg)
6746 (- (funcall outline-level) arg)))
6747 (org-show-subtree)))
6749 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6750 ((and (featurep 'org-inlinetask)
6751 (org-inlinetask-at-task-p)
6752 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6753 (org-inlinetask-toggle-visibility))
6755 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6756 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6757 (save-excursion (beginning-of-line 1)
6758 (looking-at org-outline-regexp)))
6759 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6760 (org-cycle-internal-local))
6762 ;; From there: TAB emulation and template completion.
6763 (buffer-read-only (org-back-to-heading))
6765 ((run-hook-with-args-until-success
6766 'org-tab-after-check-for-cycling-hook))
6768 ((org-try-structure-completion))
6770 ((run-hook-with-args-until-success
6771 'org-tab-before-tab-emulation-hook))
6773 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6774 (or (not (bolp))
6775 (not (looking-at org-outline-regexp))))
6776 (call-interactively (global-key-binding "\t")))
6778 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6779 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6780 (or (and (eq org-cycle-emulate-tab 'white)
6781 (= (match-end 0) (point-at-eol)))
6782 (and (eq org-cycle-emulate-tab 'whitestart)
6783 (>= (match-end 0) pos))))
6785 (eq org-cycle-emulate-tab t))
6786 (call-interactively (global-key-binding "\t")))
6788 (t (save-excursion
6789 (org-back-to-heading)
6790 (org-cycle)))))))
6792 (defun org-cycle-internal-global ()
6793 "Do the global cycling action."
6794 ;; Hack to avoid display of messages for .org attachments in Gnus
6795 (let ((ga (string-match "\\*fontification" (buffer-name))))
6796 (cond
6797 ((and (eq last-command this-command)
6798 (eq org-cycle-global-status 'overview))
6799 ;; We just created the overview - now do table of contents
6800 ;; This can be slow in very large buffers, so indicate action
6801 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6802 (unless ga (org-unlogged-message "CONTENTS..."))
6803 (org-content)
6804 (unless ga (org-unlogged-message "CONTENTS...done"))
6805 (setq org-cycle-global-status 'contents)
6806 (run-hook-with-args 'org-cycle-hook 'contents))
6808 ((and (eq last-command this-command)
6809 (eq org-cycle-global-status 'contents))
6810 ;; We just showed the table of contents - now show everything
6811 (run-hook-with-args 'org-pre-cycle-hook 'all)
6812 (show-all)
6813 (unless ga (org-unlogged-message "SHOW ALL"))
6814 (setq org-cycle-global-status 'all)
6815 (run-hook-with-args 'org-cycle-hook 'all))
6818 ;; Default action: go to overview
6819 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6820 (org-overview)
6821 (unless ga (org-unlogged-message "OVERVIEW"))
6822 (setq org-cycle-global-status 'overview)
6823 (run-hook-with-args 'org-cycle-hook 'overview)))))
6825 (defvar org-called-with-limited-levels nil
6826 "Non-nil when `org-with-limited-levels' is currently active.")
6828 (defun org-cycle-internal-local ()
6829 "Do the local cycling action."
6830 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6831 ;; First, determine end of headline (EOH), end of subtree or item
6832 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6833 (save-excursion
6834 (if (org-at-item-p)
6835 (progn
6836 (beginning-of-line)
6837 (setq struct (org-list-struct))
6838 (setq eoh (point-at-eol))
6839 (setq eos (org-list-get-item-end-before-blank (point) struct))
6840 (setq has-children (org-list-has-child-p (point) struct)))
6841 (org-back-to-heading)
6842 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6843 (setq eos (save-excursion (org-end-of-subtree t t)
6844 (when (bolp) (backward-char)) (point)))
6845 (setq has-children
6846 (or (save-excursion
6847 (let ((level (funcall outline-level)))
6848 (outline-next-heading)
6849 (and (org-at-heading-p t)
6850 (> (funcall outline-level) level))))
6851 (save-excursion
6852 (org-list-search-forward (org-item-beginning-re) eos t)))))
6853 ;; Determine end invisible part of buffer (EOL)
6854 (beginning-of-line 2)
6855 ;; XEmacs doesn't have `next-single-char-property-change'
6856 (if (featurep 'xemacs)
6857 (while (and (not (eobp)) ;; this is like `next-line'
6858 (get-char-property (1- (point)) 'invisible))
6859 (beginning-of-line 2))
6860 (while (and (not (eobp)) ;; this is like `next-line'
6861 (get-char-property (1- (point)) 'invisible))
6862 (goto-char (next-single-char-property-change (point) 'invisible))
6863 (and (eolp) (beginning-of-line 2))))
6864 (setq eol (point)))
6865 ;; Find out what to do next and set `this-command'
6866 (cond
6867 ((= eos eoh)
6868 ;; Nothing is hidden behind this heading
6869 (unless (org-before-first-heading-p)
6870 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6871 (org-unlogged-message "EMPTY ENTRY")
6872 (setq org-cycle-subtree-status nil)
6873 (save-excursion
6874 (goto-char eos)
6875 (outline-next-heading)
6876 (if (outline-invisible-p) (org-flag-heading nil))))
6877 ((and (or (>= eol eos)
6878 (not (string-match "\\S-" (buffer-substring eol eos))))
6879 (or has-children
6880 (not (setq children-skipped
6881 org-cycle-skip-children-state-if-no-children))))
6882 ;; Entire subtree is hidden in one line: children view
6883 (unless (org-before-first-heading-p)
6884 (run-hook-with-args 'org-pre-cycle-hook 'children))
6885 (if (org-at-item-p)
6886 (org-list-set-item-visibility (point-at-bol) struct 'children)
6887 (org-show-entry)
6888 (org-with-limited-levels (show-children))
6889 ;; FIXME: This slows down the func way too much.
6890 ;; How keep drawers hidden in subtree anyway?
6891 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6892 ;; (org-cycle-hide-drawers 'subtree))
6894 ;; Fold every list in subtree to top-level items.
6895 (when (eq org-cycle-include-plain-lists 'integrate)
6896 (save-excursion
6897 (org-back-to-heading)
6898 (while (org-list-search-forward (org-item-beginning-re) eos t)
6899 (beginning-of-line 1)
6900 (let* ((struct (org-list-struct))
6901 (prevs (org-list-prevs-alist struct))
6902 (end (org-list-get-bottom-point struct)))
6903 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6904 (org-list-get-all-items (point) struct prevs))
6905 (goto-char (if (< end eos) end eos)))))))
6906 (org-unlogged-message "CHILDREN")
6907 (save-excursion
6908 (goto-char eos)
6909 (outline-next-heading)
6910 (if (outline-invisible-p) (org-flag-heading nil)))
6911 (setq org-cycle-subtree-status 'children)
6912 (unless (org-before-first-heading-p)
6913 (run-hook-with-args 'org-cycle-hook 'children)))
6914 ((or children-skipped
6915 (and (eq last-command this-command)
6916 (eq org-cycle-subtree-status 'children)))
6917 ;; We just showed the children, or no children are there,
6918 ;; now show everything.
6919 (unless (org-before-first-heading-p)
6920 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6921 (outline-flag-region eoh eos nil)
6922 (org-unlogged-message
6923 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6924 (setq org-cycle-subtree-status 'subtree)
6925 (unless (org-before-first-heading-p)
6926 (run-hook-with-args 'org-cycle-hook 'subtree)))
6928 ;; Default action: hide the subtree.
6929 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6930 (outline-flag-region eoh eos t)
6931 (org-unlogged-message "FOLDED")
6932 (setq org-cycle-subtree-status 'folded)
6933 (unless (org-before-first-heading-p)
6934 (run-hook-with-args 'org-cycle-hook 'folded))))))
6936 ;;;###autoload
6937 (defun org-global-cycle (&optional arg)
6938 "Cycle the global visibility. For details see `org-cycle'.
6939 With \\[universal-argument] prefix arg, switch to startup visibility.
6940 With a numeric prefix, show all headlines up to that level."
6941 (interactive "P")
6942 (let ((org-cycle-include-plain-lists
6943 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6944 (cond
6945 ((integerp arg)
6946 (show-all)
6947 (hide-sublevels arg)
6948 (setq org-cycle-global-status 'contents))
6949 ((equal arg '(4))
6950 (org-set-startup-visibility)
6951 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6953 (org-cycle '(4))))))
6955 (defun org-set-startup-visibility ()
6956 "Set the visibility required by startup options and properties."
6957 (cond
6958 ((eq org-startup-folded t)
6959 (org-overview))
6960 ((eq org-startup-folded 'content)
6961 (org-content))
6962 ((or (eq org-startup-folded 'showeverything)
6963 (eq org-startup-folded nil))
6964 (show-all)))
6965 (unless (eq org-startup-folded 'showeverything)
6966 (if org-hide-block-startup (org-hide-block-all))
6967 (org-set-visibility-according-to-property 'no-cleanup)
6968 (org-cycle-hide-archived-subtrees 'all)
6969 (org-cycle-hide-drawers 'all)
6970 (org-cycle-show-empty-lines t)))
6972 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6973 "Switch subtree visibilities according to :VISIBILITY: property."
6974 (interactive)
6975 (let (org-show-entry-below state)
6976 (save-excursion
6977 (goto-char (point-min))
6978 (while (re-search-forward
6979 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6980 nil t)
6981 (setq state (match-string 1))
6982 (save-excursion
6983 (org-back-to-heading t)
6984 (hide-subtree)
6985 (org-reveal)
6986 (cond
6987 ((equal state '("fold" "folded"))
6988 (hide-subtree))
6989 ((equal state "children")
6990 (org-show-hidden-entry)
6991 (show-children))
6992 ((equal state "content")
6993 (save-excursion
6994 (save-restriction
6995 (org-narrow-to-subtree)
6996 (org-content))))
6997 ((member state '("all" "showall"))
6998 (show-subtree)))))
6999 (unless no-cleanup
7000 (org-cycle-hide-archived-subtrees 'all)
7001 (org-cycle-hide-drawers 'all)
7002 (org-cycle-show-empty-lines 'all)))))
7004 ;; This function uses outline-regexp instead of the more fundamental
7005 ;; org-outline-regexp so that org-cycle-global works outside of Org
7006 ;; buffers, where outline-regexp is needed.
7007 (defun org-overview ()
7008 "Switch to overview mode, showing only top-level headlines.
7009 This shows all headlines with a level equal or greater than the level
7010 of the first headline in the buffer. This is important, because if the
7011 first headline is not level one, then (hide-sublevels 1) gives confusing
7012 results."
7013 (interactive)
7014 (save-excursion
7015 (let ((level
7016 (save-excursion
7017 (goto-char (point-min))
7018 (if (re-search-forward (concat "^" outline-regexp) nil t)
7019 (progn
7020 (goto-char (match-beginning 0))
7021 (funcall outline-level))))))
7022 (and level (hide-sublevels level)))))
7024 (defun org-content (&optional arg)
7025 "Show all headlines in the buffer, like a table of contents.
7026 With numerical argument N, show content up to level N."
7027 (interactive "P")
7028 (org-overview)
7029 (save-excursion
7030 ;; Visit all headings and show their offspring
7031 (and (integerp arg) (org-overview))
7032 (goto-char (point-max))
7033 (catch 'exit
7034 (while (and (progn (condition-case nil
7035 (outline-previous-visible-heading 1)
7036 (error (goto-char (point-min))))
7038 (looking-at org-outline-regexp))
7039 (if (integerp arg)
7040 (show-children (1- arg))
7041 (show-branches))
7042 (if (bobp) (throw 'exit nil))))))
7044 (defun org-optimize-window-after-visibility-change (state)
7045 "Adjust the window after a change in outline visibility.
7046 This function is the default value of the hook `org-cycle-hook'."
7047 (when (get-buffer-window (current-buffer))
7048 (cond
7049 ((eq state 'content) nil)
7050 ((eq state 'all) nil)
7051 ((eq state 'folded) nil)
7052 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7053 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7055 (defun org-remove-empty-overlays-at (pos)
7056 "Remove outline overlays that do not contain non-white stuff."
7057 (mapc
7058 (lambda (o)
7059 (and (eq 'outline (overlay-get o 'invisible))
7060 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7061 (overlay-end o))))
7062 (delete-overlay o)))
7063 (overlays-at pos)))
7065 (defun org-clean-visibility-after-subtree-move ()
7066 "Fix visibility issues after moving a subtree."
7067 ;; First, find a reasonable region to look at:
7068 ;; Start two siblings above, end three below
7069 (let* ((beg (save-excursion
7070 (and (org-get-last-sibling)
7071 (org-get-last-sibling))
7072 (point)))
7073 (end (save-excursion
7074 (and (org-get-next-sibling)
7075 (org-get-next-sibling)
7076 (org-get-next-sibling))
7077 (if (org-at-heading-p)
7078 (point-at-eol)
7079 (point))))
7080 (level (looking-at "\\*+"))
7081 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7082 (save-excursion
7083 (save-restriction
7084 (narrow-to-region beg end)
7085 (when re
7086 ;; Properly fold already folded siblings
7087 (goto-char (point-min))
7088 (while (re-search-forward re nil t)
7089 (if (and (not (outline-invisible-p))
7090 (save-excursion
7091 (goto-char (point-at-eol)) (outline-invisible-p)))
7092 (hide-entry))))
7093 (org-cycle-show-empty-lines 'overview)
7094 (org-cycle-hide-drawers 'overview)))))
7096 (defun org-cycle-show-empty-lines (state)
7097 "Show empty lines above all visible headlines.
7098 The region to be covered depends on STATE when called through
7099 `org-cycle-hook'. Lisp program can use t for STATE to get the
7100 entire buffer covered. Note that an empty line is only shown if there
7101 are at least `org-cycle-separator-lines' empty lines before the headline."
7102 (when (not (= org-cycle-separator-lines 0))
7103 (save-excursion
7104 (let* ((n (abs org-cycle-separator-lines))
7105 (re (cond
7106 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7107 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7108 (t (let ((ns (number-to-string (- n 2))))
7109 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7110 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7111 beg end b e)
7112 (cond
7113 ((memq state '(overview contents t))
7114 (setq beg (point-min) end (point-max)))
7115 ((memq state '(children folded))
7116 (setq beg (point) end (progn (org-end-of-subtree t t)
7117 (beginning-of-line 2)
7118 (point)))))
7119 (when beg
7120 (goto-char beg)
7121 (while (re-search-forward re end t)
7122 (unless (get-char-property (match-end 1) 'invisible)
7123 (setq e (match-end 1))
7124 (if (< org-cycle-separator-lines 0)
7125 (setq b (save-excursion
7126 (goto-char (match-beginning 0))
7127 (org-back-over-empty-lines)
7128 (if (save-excursion
7129 (goto-char (max (point-min) (1- (point))))
7130 (org-at-heading-p))
7131 (1- (point))
7132 (point))))
7133 (setq b (match-beginning 1)))
7134 (outline-flag-region b e nil)))))))
7135 ;; Never hide empty lines at the end of the file.
7136 (save-excursion
7137 (goto-char (point-max))
7138 (outline-previous-heading)
7139 (outline-end-of-heading)
7140 (if (and (looking-at "[ \t\n]+")
7141 (= (match-end 0) (point-max)))
7142 (outline-flag-region (point) (match-end 0) nil))))
7144 (defun org-show-empty-lines-in-parent ()
7145 "Move to the parent and re-show empty lines before visible headlines."
7146 (save-excursion
7147 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7148 (org-cycle-show-empty-lines context))))
7150 (defun org-files-list ()
7151 "Return `org-agenda-files' list, plus all open org-mode files.
7152 This is useful for operations that need to scan all of a user's
7153 open and agenda-wise Org files."
7154 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7155 (dolist (buf (buffer-list))
7156 (with-current-buffer buf
7157 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7158 (let ((file (expand-file-name (buffer-file-name))))
7159 (unless (member file files)
7160 (push file files))))))
7161 files))
7163 (defsubst org-entry-beginning-position ()
7164 "Return the beginning position of the current entry."
7165 (save-excursion (outline-back-to-heading t) (point)))
7167 (defsubst org-entry-end-position ()
7168 "Return the end position of the current entry."
7169 (save-excursion (outline-next-heading) (point)))
7171 (defun org-cycle-hide-drawers (state &optional exceptions)
7172 "Re-hide all drawers after a visibility state change.
7173 When non-nil, optional argument EXCEPTIONS is a list of strings
7174 specifying which drawers should not be hidden."
7175 (when (and (derived-mode-p 'org-mode)
7176 (not (memq state '(overview folded contents))))
7177 (save-excursion
7178 (let* ((globalp (memq state '(contents all)))
7179 (beg (if globalp (point-min) (point)))
7180 (end (if globalp (point-max)
7181 (if (eq state 'children)
7182 (save-excursion (outline-next-heading) (point))
7183 (org-end-of-subtree t)))))
7184 (goto-char beg)
7185 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7186 (unless (member-ignore-case (match-string 1) exceptions)
7187 (let ((drawer (org-element-at-point)))
7188 (when (memq (org-element-type drawer) '(drawer property-drawer))
7189 (org-flag-drawer t drawer)
7190 ;; Make sure to skip drawer entirely or we might flag
7191 ;; it another time when matching its ending line with
7192 ;; `org-drawer-regexp'.
7193 (goto-char (org-element-property :end drawer))))))))))
7195 (defun org-cycle-hide-inline-tasks (state)
7196 "Re-hide inline tasks when switching to 'contents or 'children
7197 visibility state."
7198 (case state
7199 (contents
7200 (when (org-bound-and-true-p org-inlinetask-min-level)
7201 (hide-sublevels (1- org-inlinetask-min-level))))
7202 (children
7203 (when (featurep 'org-inlinetask)
7204 (save-excursion
7205 (while (and (outline-next-heading)
7206 (org-inlinetask-at-task-p))
7207 (org-inlinetask-toggle-visibility)
7208 (org-inlinetask-goto-end)))))))
7210 (defun org-flag-drawer (flag &optional element)
7211 "When FLAG is non-nil, hide the drawer we are at.
7212 Otherwise make it visible. When optional argument ELEMENT is
7213 a parsed drawer, as returned by `org-element-at-point', hide or
7214 show that drawer instead."
7215 (when (save-excursion
7216 (beginning-of-line)
7217 (org-looking-at-p org-drawer-regexp))
7218 (let ((drawer (or element (org-element-at-point))))
7219 (when (memq (org-element-type drawer) '(drawer property-drawer))
7220 (let ((post (org-element-property :post-affiliated drawer)))
7221 (save-excursion
7222 (outline-flag-region
7223 (progn (goto-char post) (line-end-position))
7224 (progn (goto-char (org-element-property :end drawer))
7225 (skip-chars-backward " \r\t\n")
7226 (line-end-position))
7227 flag))
7228 ;; When the drawer is hidden away, make sure point lies in
7229 ;; a visible part of the buffer.
7230 (when (and flag (> (line-beginning-position) post))
7231 (goto-char post)))))))
7233 (defun org-subtree-end-visible-p ()
7234 "Is the end of the current subtree visible?"
7235 (pos-visible-in-window-p
7236 (save-excursion (org-end-of-subtree t) (point))))
7238 (defun org-first-headline-recenter ()
7239 "Move cursor to the first headline and recenter the headline."
7240 (goto-char (point-min))
7241 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7242 (set-window-start (selected-window) (point-at-bol))))
7244 ;;; Saving and restoring visibility
7246 (defun org-outline-overlay-data (&optional use-markers)
7247 "Return a list of the locations of all outline overlays.
7248 These are overlays with the `invisible' property value `outline'.
7249 The return value is a list of cons cells, with start and stop
7250 positions for each overlay.
7251 If USE-MARKERS is set, return the positions as markers."
7252 (let (beg end)
7253 (save-excursion
7254 (save-restriction
7255 (widen)
7256 (delq nil
7257 (mapcar (lambda (o)
7258 (when (eq (overlay-get o 'invisible) 'outline)
7259 (setq beg (overlay-start o)
7260 end (overlay-end o))
7261 (and beg end (> end beg)
7262 (if use-markers
7263 (cons (copy-marker beg)
7264 (copy-marker end t))
7265 (cons beg end)))))
7266 (overlays-in (point-min) (point-max))))))))
7268 (defun org-set-outline-overlay-data (data)
7269 "Create visibility overlays for all positions in DATA.
7270 DATA should have been made by `org-outline-overlay-data'."
7271 (let (o)
7272 (save-excursion
7273 (save-restriction
7274 (widen)
7275 (show-all)
7276 (mapc (lambda (c)
7277 (outline-flag-region (car c) (cdr c) t))
7278 data)))))
7280 ;;; Folding of blocks
7282 (defvar org-hide-block-overlays nil
7283 "Overlays hiding blocks.")
7284 (make-variable-buffer-local 'org-hide-block-overlays)
7286 (defun org-block-map (function &optional start end)
7287 "Call FUNCTION at the head of all source blocks in the current buffer.
7288 Optional arguments START and END can be used to limit the range."
7289 (let ((start (or start (point-min)))
7290 (end (or end (point-max))))
7291 (save-excursion
7292 (goto-char start)
7293 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7294 (save-excursion
7295 (save-match-data
7296 (goto-char (match-beginning 0))
7297 (funcall function)))))))
7299 (defun org-hide-block-toggle-all ()
7300 "Toggle the visibility of all blocks in the current buffer."
7301 (org-block-map 'org-hide-block-toggle))
7303 (defun org-hide-block-all ()
7304 "Fold all blocks in the current buffer."
7305 (interactive)
7306 (org-show-block-all)
7307 (org-block-map 'org-hide-block-toggle-maybe))
7309 (defun org-show-block-all ()
7310 "Unfold all blocks in the current buffer."
7311 (interactive)
7312 (mapc 'delete-overlay org-hide-block-overlays)
7313 (setq org-hide-block-overlays nil))
7315 (defun org-hide-block-toggle-maybe ()
7316 "Toggle visibility of block at point.
7317 Unlike to `org-hide-block-toggle', this function does not throw
7318 an error. Return a non-nil value when toggling is successful."
7319 (interactive)
7320 (ignore-errors (org-hide-block-toggle)))
7322 (defun org-hide-block-toggle (&optional force)
7323 "Toggle the visibility of the current block.
7324 When optional argument FORCE is `off', make block visible. If it
7325 is non-nil, hide it unconditionally. Throw an error when not at
7326 a block. Return a non-nil value when toggling is successful."
7327 (interactive)
7328 (let ((element (org-element-at-point)))
7329 (unless (memq (org-element-type element)
7330 '(center-block comment-block dynamic-block example-block
7331 export-block quote-block special-block
7332 src-block verse-block))
7333 (user-error "Not at a block"))
7334 (let* ((start (save-excursion
7335 (goto-char (org-element-property :post-affiliated element))
7336 (line-end-position)))
7337 (end (save-excursion
7338 (goto-char (org-element-property :end element))
7339 (skip-chars-backward " \r\t\n")
7340 (line-end-position)))
7341 (overlays (overlays-at start)))
7342 (cond
7343 ;; Do nothing when not before or at the block opening line or
7344 ;; at the block closing line.
7345 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7346 ((and (not (eq force 'off))
7347 (not (memq t (mapcar
7348 (lambda (o)
7349 (eq (overlay-get o 'invisible) 'org-hide-block))
7350 overlays))))
7351 (let ((ov (make-overlay start end)))
7352 (overlay-put ov 'invisible 'org-hide-block)
7353 ;; Make the block accessible to `isearch'.
7354 (overlay-put
7355 ov 'isearch-open-invisible
7356 (lambda (ov)
7357 (when (memq ov org-hide-block-overlays)
7358 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7359 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7360 (delete-overlay ov))))
7361 (push ov org-hide-block-overlays)
7362 ;; When the block is hidden away, make sure point is left in
7363 ;; a visible part of the buffer.
7364 (when (> (line-beginning-position) start)
7365 (goto-char start)
7366 (beginning-of-line))
7367 ;; Signal successful toggling.
7369 ((or (not force) (eq force 'off))
7370 (dolist (ov overlays t)
7371 (when (memq ov org-hide-block-overlays)
7372 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7373 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7374 (delete-overlay ov))))))))
7376 ;; org-tab-after-check-for-cycling-hook
7377 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7378 ;; Remove overlays when changing major mode
7379 (add-hook 'org-mode-hook
7380 (lambda () (org-add-hook 'change-major-mode-hook
7381 'org-show-block-all 'append 'local)))
7383 ;;; Org-goto
7385 (defvar org-goto-window-configuration nil)
7386 (defvar org-goto-marker nil)
7387 (defvar org-goto-map)
7388 (defun org-goto-map ()
7389 "Set the keymap `org-goto'."
7390 (setq org-goto-map
7391 (let ((map (make-sparse-keymap)))
7392 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7393 mouse-drag-region universal-argument org-occur))
7394 cmd)
7395 (while (setq cmd (pop cmds))
7396 (substitute-key-definition cmd cmd map global-map)))
7397 (suppress-keymap map)
7398 (org-defkey map "\C-m" 'org-goto-ret)
7399 (org-defkey map [(return)] 'org-goto-ret)
7400 (org-defkey map [(left)] 'org-goto-left)
7401 (org-defkey map [(right)] 'org-goto-right)
7402 (org-defkey map [(control ?g)] 'org-goto-quit)
7403 (org-defkey map "\C-i" 'org-cycle)
7404 (org-defkey map [(tab)] 'org-cycle)
7405 (org-defkey map [(down)] 'outline-next-visible-heading)
7406 (org-defkey map [(up)] 'outline-previous-visible-heading)
7407 (if org-goto-auto-isearch
7408 (if (fboundp 'define-key-after)
7409 (define-key-after map [t] 'org-goto-local-auto-isearch)
7410 nil)
7411 (org-defkey map "q" 'org-goto-quit)
7412 (org-defkey map "n" 'outline-next-visible-heading)
7413 (org-defkey map "p" 'outline-previous-visible-heading)
7414 (org-defkey map "f" 'outline-forward-same-level)
7415 (org-defkey map "b" 'outline-backward-same-level)
7416 (org-defkey map "u" 'outline-up-heading))
7417 (org-defkey map "/" 'org-occur)
7418 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7419 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7420 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7421 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7422 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7423 map)))
7425 (defconst org-goto-help
7426 "Browse buffer copy, to find location or copy text.%s
7427 RET=jump to location C-g=quit and return to previous location
7428 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7430 (defvar org-goto-start-pos) ; dynamically scoped parameter
7432 (defun org-goto (&optional alternative-interface)
7433 "Look up a different location in the current file, keeping current visibility.
7435 When you want look-up or go to a different location in a
7436 document, the fastest way is often to fold the entire buffer and
7437 then dive into the tree. This method has the disadvantage, that
7438 the previous location will be folded, which may not be what you
7439 want.
7441 This command works around this by showing a copy of the current
7442 buffer in an indirect buffer, in overview mode. You can dive
7443 into the tree in that copy, use org-occur and incremental search
7444 to find a location. When pressing RET or `Q', the command
7445 returns to the original buffer in which the visibility is still
7446 unchanged. After RET it will also jump to the location selected
7447 in the indirect buffer and expose the headline hierarchy above.
7449 With a prefix argument, use the alternative interface: e.g. if
7450 `org-goto-interface' is 'outline use 'outline-path-completion."
7451 (interactive "P")
7452 (org-goto-map)
7453 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7454 (org-refile-use-outline-path t)
7455 (org-refile-target-verify-function nil)
7456 (interface
7457 (if (not alternative-interface)
7458 org-goto-interface
7459 (if (eq org-goto-interface 'outline)
7460 'outline-path-completion
7461 'outline)))
7462 (org-goto-start-pos (point))
7463 (selected-point
7464 (if (eq interface 'outline)
7465 (car (org-get-location (current-buffer) org-goto-help))
7466 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7467 (org-refile-check-position pa)
7468 (nth 3 pa)))))
7469 (if selected-point
7470 (progn
7471 (org-mark-ring-push org-goto-start-pos)
7472 (goto-char selected-point)
7473 (if (or (outline-invisible-p) (org-invisible-p2))
7474 (org-show-context 'org-goto)))
7475 (message "Quit"))))
7477 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7478 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7479 (defvar org-goto-local-auto-isearch-map) ; defined below
7481 (defun org-get-location (buf help)
7482 "Let the user select a location in the Org-mode buffer BUF.
7483 This function uses a recursive edit. It returns the selected position
7484 or nil."
7485 (org-no-popups
7486 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7487 (isearch-hide-immediately nil)
7488 (isearch-search-fun-function
7489 (lambda () 'org-goto-local-search-headings))
7490 (org-goto-selected-point org-goto-exit-command))
7491 (save-excursion
7492 (save-window-excursion
7493 (delete-other-windows)
7494 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7495 (org-pop-to-buffer-same-window
7496 (condition-case nil
7497 (make-indirect-buffer (current-buffer) "*org-goto*")
7498 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7499 (with-output-to-temp-buffer "*Org Help*"
7500 (princ (format help (if org-goto-auto-isearch
7501 " Just type for auto-isearch."
7502 " n/p/f/b/u to navigate, q to quit."))))
7503 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7504 (setq buffer-read-only nil)
7505 (let ((org-startup-truncated t)
7506 (org-startup-folded nil)
7507 (org-startup-align-all-tables nil))
7508 (org-mode)
7509 (org-overview))
7510 (setq buffer-read-only t)
7511 (if (and (boundp 'org-goto-start-pos)
7512 (integer-or-marker-p org-goto-start-pos))
7513 (let ((org-show-hierarchy-above t)
7514 (org-show-siblings t)
7515 (org-show-following-heading t))
7516 (goto-char org-goto-start-pos)
7517 (and (outline-invisible-p) (org-show-context)))
7518 (goto-char (point-min)))
7519 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7520 (message "Select location and press RET")
7521 (use-local-map org-goto-map)
7522 (recursive-edit)))
7523 (kill-buffer "*org-goto*")
7524 (cons org-goto-selected-point org-goto-exit-command))))
7526 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7527 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7528 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7529 (if (fboundp 'isearch-other-control-char)
7530 (progn
7531 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7532 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7533 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7534 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7535 (define-key org-goto-local-auto-isearch-map [return] nil))
7537 (defun org-goto-local-search-headings (string bound noerror)
7538 "Search and make sure that any matches are in headlines."
7539 (catch 'return
7540 (while (if isearch-forward
7541 (search-forward string bound noerror)
7542 (search-backward string bound noerror))
7543 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7544 (and (member :headline context)
7545 (not (member :tags context))))
7546 (throw 'return (point))))))
7548 (defun org-goto-local-auto-isearch ()
7549 "Start isearch."
7550 (interactive)
7551 (goto-char (point-min))
7552 (let ((keys (this-command-keys)))
7553 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7554 (isearch-mode t)
7555 (isearch-process-search-char (string-to-char keys)))))
7557 (defun org-goto-ret (&optional arg)
7558 "Finish `org-goto' by going to the new location."
7559 (interactive "P")
7560 (setq org-goto-selected-point (point)
7561 org-goto-exit-command 'return)
7562 (throw 'exit nil))
7564 (defun org-goto-left ()
7565 "Finish `org-goto' by going to the new location."
7566 (interactive)
7567 (if (org-at-heading-p)
7568 (progn
7569 (beginning-of-line 1)
7570 (setq org-goto-selected-point (point)
7571 org-goto-exit-command 'left)
7572 (throw 'exit nil))
7573 (user-error "Not on a heading")))
7575 (defun org-goto-right ()
7576 "Finish `org-goto' by going to the new location."
7577 (interactive)
7578 (if (org-at-heading-p)
7579 (progn
7580 (setq org-goto-selected-point (point)
7581 org-goto-exit-command 'right)
7582 (throw 'exit nil))
7583 (user-error "Not on a heading")))
7585 (defun org-goto-quit ()
7586 "Finish `org-goto' without cursor motion."
7587 (interactive)
7588 (setq org-goto-selected-point nil)
7589 (setq org-goto-exit-command 'quit)
7590 (throw 'exit nil))
7592 ;;; Indirect buffer display of subtrees
7594 (defvar org-indirect-dedicated-frame nil
7595 "This is the frame being used for indirect tree display.")
7596 (defvar org-last-indirect-buffer nil)
7598 (defun org-tree-to-indirect-buffer (&optional arg)
7599 "Create indirect buffer and narrow it to current subtree.
7600 With a numerical prefix ARG, go up to this level and then take that tree.
7601 If ARG is negative, go up that many levels.
7603 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7604 indirect buffer previously made with this command, to avoid proliferation of
7605 indirect buffers. However, when you call the command with a \
7606 \\[universal-argument] prefix, or
7607 when `org-indirect-buffer-display' is `new-frame', the last buffer
7608 is kept so that you can work with several indirect buffers at the same time.
7609 If `org-indirect-buffer-display' is `dedicated-frame', the \
7610 \\[universal-argument] prefix also
7611 requests that a new frame be made for the new buffer, so that the dedicated
7612 frame is not changed."
7613 (interactive "P")
7614 (let ((cbuf (current-buffer))
7615 (cwin (selected-window))
7616 (pos (point))
7617 beg end level heading ibuf)
7618 (save-excursion
7619 (org-back-to-heading t)
7620 (when (numberp arg)
7621 (setq level (org-outline-level))
7622 (if (< arg 0) (setq arg (+ level arg)))
7623 (while (> (setq level (org-outline-level)) arg)
7624 (org-up-heading-safe)))
7625 (setq beg (point)
7626 heading (org-get-heading))
7627 (org-end-of-subtree t t)
7628 (if (org-at-heading-p) (backward-char 1))
7629 (setq end (point)))
7630 (if (and (buffer-live-p org-last-indirect-buffer)
7631 (not (eq org-indirect-buffer-display 'new-frame))
7632 (not arg))
7633 (kill-buffer org-last-indirect-buffer))
7634 (setq ibuf (org-get-indirect-buffer cbuf heading)
7635 org-last-indirect-buffer ibuf)
7636 (cond
7637 ((or (eq org-indirect-buffer-display 'new-frame)
7638 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7639 (select-frame (make-frame))
7640 (delete-other-windows)
7641 (org-pop-to-buffer-same-window ibuf)
7642 (org-set-frame-title heading))
7643 ((eq org-indirect-buffer-display 'dedicated-frame)
7644 (raise-frame
7645 (select-frame (or (and org-indirect-dedicated-frame
7646 (frame-live-p org-indirect-dedicated-frame)
7647 org-indirect-dedicated-frame)
7648 (setq org-indirect-dedicated-frame (make-frame)))))
7649 (delete-other-windows)
7650 (org-pop-to-buffer-same-window ibuf)
7651 (org-set-frame-title (concat "Indirect: " heading)))
7652 ((eq org-indirect-buffer-display 'current-window)
7653 (org-pop-to-buffer-same-window ibuf))
7654 ((eq org-indirect-buffer-display 'other-window)
7655 (pop-to-buffer ibuf))
7656 (t (error "Invalid value")))
7657 (if (featurep 'xemacs)
7658 (save-excursion (org-mode) (turn-on-font-lock)))
7659 (narrow-to-region beg end)
7660 (show-all)
7661 (goto-char pos)
7662 (run-hook-with-args 'org-cycle-hook 'all)
7663 (and (window-live-p cwin) (select-window cwin))))
7665 (defun org-get-indirect-buffer (&optional buffer heading)
7666 (setq buffer (or buffer (current-buffer)))
7667 (let ((n 1) (base (buffer-name buffer)) bname)
7668 (while (buffer-live-p
7669 (get-buffer
7670 (setq bname
7671 (concat base "-"
7672 (if heading (concat heading "-" (number-to-string n))
7673 (number-to-string n))))))
7674 (setq n (1+ n)))
7675 (condition-case nil
7676 (make-indirect-buffer buffer bname 'clone)
7677 (error (make-indirect-buffer buffer bname)))))
7679 (defun org-set-frame-title (title)
7680 "Set the title of the current frame to the string TITLE."
7681 ;; FIXME: how to name a single frame in XEmacs???
7682 (unless (featurep 'xemacs)
7683 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7685 ;;;; Structure editing
7687 ;;; Inserting headlines
7689 (defun org-previous-line-empty-p (&optional next)
7690 "Is the previous line a blank line?
7691 When NEXT is non-nil, check the next line instead."
7692 (save-excursion
7693 (and (not (bobp))
7694 (or (beginning-of-line (if next 2 0)) t)
7695 (save-match-data
7696 (looking-at "[ \t]*$")))))
7698 (defun org-insert-heading (&optional arg invisible-ok)
7699 "Insert a new heading or an item with the same depth at point.
7701 If point is at the beginning of a heading or a list item, insert
7702 a new heading or a new item above the current one. If point is
7703 at the beginning of a normal line, turn the line into a heading.
7705 If point is in the middle of a headline or a list item, split the
7706 headline or the item and create a new headline/item with the text
7707 in the current line after point \(see `org-M-RET-may-split-line'
7708 on how to modify this behavior).
7710 With one universal prefix argument, set the user option
7711 `org-insert-heading-respect-content' to t for the duration of
7712 the command. This modifies the behavior described above in this
7713 ways: on list items and at the beginning of normal lines, force
7714 the insertion of a heading after the current subtree.
7716 With two universal prefix arguments, insert the heading at the
7717 end of the grandparent subtree. For example, if point is within
7718 a 2nd-level heading, then it will insert a 2nd-level heading at
7719 the end of the 1st-level parent heading.
7721 If point is at the beginning of a headline, insert a sibling
7722 before the current headline. If point is not at the beginning,
7723 split the line and create a new headline with the text in the
7724 current line after point \(see `org-M-RET-may-split-line' on how
7725 to modify this behavior).
7727 If point is at the beginning of a normal line, turn this line
7728 into a heading.
7730 When INVISIBLE-OK is set, stop at invisible headlines when going
7731 back. This is important for non-interactive uses of the
7732 command."
7733 (interactive "P")
7734 (if (org-called-interactively-p 'any) (org-reveal))
7735 (let ((itemp (org-in-item-p))
7736 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7737 (respect-content (or org-insert-heading-respect-content
7738 (equal arg '(4))))
7739 (initial-content "")
7740 (adjust-empty-lines t))
7742 (cond
7744 ((or (= (buffer-size) 0)
7745 (and (not (save-excursion
7746 (and (ignore-errors (org-back-to-heading invisible-ok))
7747 (org-at-heading-p))))
7748 (or arg (not itemp))))
7749 ;; At beginning of buffer or so high up that only a heading
7750 ;; makes sense.
7751 (cond ((and (bolp) (not respect-content)) (insert "* "))
7752 ((not respect-content)
7753 (unless may-split (end-of-line))
7754 (insert "\n* "))
7755 ((re-search-forward org-outline-regexp-bol nil t)
7756 (beginning-of-line)
7757 (insert "* \n")
7758 (backward-char))
7759 (t (goto-char (point-max))
7760 (insert "\n* ")))
7761 (run-hooks 'org-insert-heading-hook))
7763 ((and itemp (not (member arg '((4) (16)))))
7764 ;; Insert an item
7765 (org-insert-item))
7768 ;; Maybe move at the end of the subtree
7769 (when (equal arg '(16))
7770 (org-up-heading-safe)
7771 (org-end-of-subtree t))
7772 ;; Insert a heading
7773 (save-restriction
7774 (widen)
7775 (let* ((level nil)
7776 (on-heading (org-at-heading-p))
7777 (empty-line-p (if on-heading
7778 (org-previous-line-empty-p)
7779 ;; We will decide later
7780 nil))
7781 ;; Get a level string to fall back on
7782 (fix-level
7783 (if (org-before-first-heading-p) "*"
7784 (save-excursion
7785 (org-back-to-heading t)
7786 (if (org-previous-line-empty-p) (setq empty-line-p t))
7787 (looking-at org-outline-regexp)
7788 (make-string (1- (length (match-string 0))) ?*))))
7789 (stars
7790 (save-excursion
7791 (condition-case nil
7792 (progn
7793 (org-back-to-heading invisible-ok)
7794 (when (and (not on-heading)
7795 (featurep 'org-inlinetask)
7796 (integerp org-inlinetask-min-level)
7797 (>= (length (match-string 0))
7798 org-inlinetask-min-level))
7799 ;; Find a heading level before the inline task
7800 (while (and (setq level (org-up-heading-safe))
7801 (>= level org-inlinetask-min-level)))
7802 (if (org-at-heading-p)
7803 (org-back-to-heading invisible-ok)
7804 (error "This should not happen")))
7805 (unless (and (save-excursion
7806 (save-match-data
7807 (org-backward-heading-same-level
7808 1 invisible-ok))
7809 (= (point) (match-beginning 0)))
7810 (not (org-previous-line-empty-p t)))
7811 (setq empty-line-p (or empty-line-p
7812 (org-previous-line-empty-p))))
7813 (match-string 0))
7814 (error (or fix-level "* ")))))
7815 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7816 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7817 pos hide-previous previous-pos)
7819 ;; If we insert after content, move there and clean up whitespace
7820 (when (and respect-content
7821 (not (org-looking-at-p org-outline-regexp-bol)))
7822 (if (not (org-before-first-heading-p))
7823 (org-end-of-subtree nil t)
7824 (re-search-forward org-outline-regexp-bol)
7825 (beginning-of-line 0))
7826 (skip-chars-backward " \r\n")
7827 (and (not (looking-back "^\\*+"))
7828 (looking-at "[ \t]+") (replace-match ""))
7829 (unless (eobp) (forward-char 1))
7830 (when (looking-at "^\\*")
7831 (unless (bobp) (backward-char 1))
7832 (insert "\n")))
7834 ;; If we are splitting, grab the text that should be moved to the new headline
7835 (when may-split
7836 (if (org-on-heading-p)
7837 ;; This is a heading, we split intelligently (keeping tags)
7838 (let ((pos (point)))
7839 (goto-char (point-at-bol))
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) ?\ )))
7851 (setq initial-content (org-trim initial-content)))
7852 (goto-char pos))
7853 ;; a normal line
7854 (setq initial-content
7855 (org-trim (buffer-substring (point) (point-at-eol))))
7856 (delete-region (point) (point-at-eol))))
7858 ;; If we are at the beginning of the line, insert before it. Else after
7859 (cond
7860 ((and (bolp) (looking-at "[ \t]*$")))
7861 ((and (bolp) (not (looking-at "[ \t]*$")))
7862 (open-line 1))
7864 (goto-char (point-at-eol))
7865 (insert "\n")))
7867 ;; Insert the new heading
7868 (insert stars)
7869 (just-one-space)
7870 (insert initial-content)
7871 (when adjust-empty-lines
7872 (if (or (not blank)
7873 (and blank (not (org-previous-line-empty-p))))
7874 (org-N-empty-lines-before-current (if blank 1 0))))
7875 (run-hooks 'org-insert-heading-hook)))))))
7877 (defun org-N-empty-lines-before-current (N)
7878 "Make the number of empty lines before current exactly N.
7879 So this will delete or add empty lines."
7880 (save-excursion
7881 (beginning-of-line)
7882 (let ((p (point)))
7883 (skip-chars-backward " \r\t\n")
7884 (unless (bolp) (forward-line))
7885 (delete-region (point) p))
7886 (when (> N 0) (insert (make-string N ?\n)))))
7888 (defun org-get-heading (&optional no-tags no-todo)
7889 "Return the heading of the current entry, without the stars.
7890 When NO-TAGS is non-nil, don't include tags.
7891 When NO-TODO is non-nil, don't include TODO keywords."
7892 (save-excursion
7893 (org-back-to-heading t)
7894 (cond
7895 ((and no-tags no-todo)
7896 (looking-at org-complex-heading-regexp)
7897 (match-string 4))
7898 (no-tags
7899 (looking-at (concat org-outline-regexp
7900 "\\(.*?\\)"
7901 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7902 (match-string 1))
7903 (no-todo
7904 (looking-at org-todo-line-regexp)
7905 (match-string 3))
7906 (t (looking-at org-heading-regexp)
7907 (match-string 2)))))
7909 (defvar orgstruct-mode) ; defined below
7911 (defun org-heading-components ()
7912 "Return the components of the current heading.
7913 This is a list with the following elements:
7914 - the level as an integer
7915 - the reduced level, different if `org-odd-levels-only' is set.
7916 - the TODO keyword, or nil
7917 - the priority character, like ?A, or nil if no priority is given
7918 - the headline text itself, or the tags string if no headline text
7919 - the tags string, or nil."
7920 (save-excursion
7921 (org-back-to-heading t)
7922 (if (let (case-fold-search)
7923 (looking-at
7924 (if orgstruct-mode
7925 org-heading-regexp
7926 org-complex-heading-regexp)))
7927 (if orgstruct-mode
7928 (list (length (match-string 1))
7929 (org-reduced-level (length (match-string 1)))
7932 (match-string 2)
7933 nil)
7934 (list (length (match-string 1))
7935 (org-reduced-level (length (match-string 1)))
7936 (org-match-string-no-properties 2)
7937 (and (match-end 3) (aref (match-string 3) 2))
7938 (org-match-string-no-properties 4)
7939 (org-match-string-no-properties 5))))))
7941 (defun org-get-entry ()
7942 "Get the entry text, after heading, entire subtree."
7943 (save-excursion
7944 (org-back-to-heading t)
7945 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7947 (defun org-insert-heading-after-current ()
7948 "Insert a new heading with same level as current, after current subtree."
7949 (interactive)
7950 (org-back-to-heading)
7951 (org-insert-heading)
7952 (org-move-subtree-down)
7953 (end-of-line 1))
7955 (defun org-insert-heading-respect-content (&optional invisible-ok)
7956 "Insert heading with `org-insert-heading-respect-content' set to t."
7957 (interactive)
7958 (org-insert-heading '(4) invisible-ok))
7960 (defun org-insert-todo-heading-respect-content (&optional force-state)
7961 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7962 (interactive)
7963 (org-insert-todo-heading force-state '(4)))
7965 (defun org-insert-todo-heading (arg &optional force-heading)
7966 "Insert a new heading with the same level and TODO state as current heading.
7967 If the heading has no TODO state, or if the state is DONE, use the first
7968 state (TODO by default). Also with one prefix arg, force first state. With
7969 two prefix args, force inserting at the end of the parent subtree."
7970 (interactive "P")
7971 (when (or force-heading (not (org-insert-item 'checkbox)))
7972 (org-insert-heading (or (and (equal arg '(16)) '(16))
7973 force-heading))
7974 (save-excursion
7975 (org-back-to-heading)
7976 (outline-previous-heading)
7977 (looking-at org-todo-line-regexp))
7978 (let*
7979 ((new-mark-x
7980 (if (or (equal arg '(4))
7981 (not (match-beginning 2))
7982 (member (match-string 2) org-done-keywords))
7983 (car org-todo-keywords-1)
7984 (match-string 2)))
7985 (new-mark
7987 (run-hook-with-args-until-success
7988 'org-todo-get-default-hook new-mark-x nil)
7989 new-mark-x)))
7990 (beginning-of-line 1)
7991 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7992 (if org-treat-insert-todo-heading-as-state-change
7993 (org-todo new-mark)
7994 (insert new-mark " "))))
7995 (when org-provide-todo-statistics
7996 (org-update-parent-todo-statistics))))
7998 (defun org-insert-subheading (arg)
7999 "Insert a new subheading and demote it.
8000 Works for outline headings and for plain lists alike."
8001 (interactive "P")
8002 (org-insert-heading arg)
8003 (cond
8004 ((org-at-heading-p) (org-do-demote))
8005 ((org-at-item-p) (org-indent-item))))
8007 (defun org-insert-todo-subheading (arg)
8008 "Insert a new subheading with TODO keyword or checkbox and demote it.
8009 Works for outline headings and for plain lists alike."
8010 (interactive "P")
8011 (org-insert-todo-heading arg)
8012 (cond
8013 ((org-at-heading-p) (org-do-demote))
8014 ((org-at-item-p) (org-indent-item))))
8016 ;;; Promotion and Demotion
8018 (defvar org-after-demote-entry-hook nil
8019 "Hook run after an entry has been demoted.
8020 The cursor will be at the beginning of the entry.
8021 When a subtree is being demoted, the hook will be called for each node.")
8023 (defvar org-after-promote-entry-hook nil
8024 "Hook run after an entry has been promoted.
8025 The cursor will be at the beginning of the entry.
8026 When a subtree is being promoted, the hook will be called for each node.")
8028 (defun org-promote-subtree ()
8029 "Promote the entire subtree.
8030 See also `org-promote'."
8031 (interactive)
8032 (save-excursion
8033 (org-with-limited-levels (org-map-tree 'org-promote)))
8034 (org-fix-position-after-promote))
8036 (defun org-demote-subtree ()
8037 "Demote the entire subtree. See `org-demote'.
8038 See also `org-promote'."
8039 (interactive)
8040 (save-excursion
8041 (org-with-limited-levels (org-map-tree 'org-demote)))
8042 (org-fix-position-after-promote))
8045 (defun org-do-promote ()
8046 "Promote the current heading higher up the tree.
8047 If the region is active in `transient-mark-mode', promote all headings
8048 in the region."
8049 (interactive)
8050 (save-excursion
8051 (if (org-region-active-p)
8052 (org-map-region 'org-promote (region-beginning) (region-end))
8053 (org-promote)))
8054 (org-fix-position-after-promote))
8056 (defun org-do-demote ()
8057 "Demote the current heading lower down the tree.
8058 If the region is active in `transient-mark-mode', demote all headings
8059 in the region."
8060 (interactive)
8061 (save-excursion
8062 (if (org-region-active-p)
8063 (org-map-region 'org-demote (region-beginning) (region-end))
8064 (org-demote)))
8065 (org-fix-position-after-promote))
8067 (defun org-fix-position-after-promote ()
8068 "Make sure that after pro/demotion cursor position is right."
8069 (let ((pos (point)))
8070 (when (save-excursion
8071 (beginning-of-line 1)
8072 (looking-at org-todo-line-regexp)
8073 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8074 (cond ((eobp) (insert " "))
8075 ((eolp) (insert " "))
8076 ((equal (char-after) ?\ ) (forward-char 1))))))
8078 (defun org-current-level ()
8079 "Return the level of the current entry, or nil if before the first headline.
8080 The level is the number of stars at the beginning of the headline."
8081 (save-excursion
8082 (org-with-limited-levels
8083 (if (ignore-errors (org-back-to-heading t))
8084 (funcall outline-level)))))
8086 (defun org-get-previous-line-level ()
8087 "Return the outline depth of the last headline before the current line.
8088 Returns 0 for the first headline in the buffer, and nil if before the
8089 first headline."
8090 (and (org-current-level)
8091 (or (and (/= (line-beginning-position) (point-min))
8092 (save-excursion (beginning-of-line 0) (org-current-level)))
8093 0)))
8095 (defun org-reduced-level (l)
8096 "Compute the effective level of a heading.
8097 This takes into account the setting of `org-odd-levels-only'."
8098 (cond
8099 ((zerop l) 0)
8100 (org-odd-levels-only (1+ (floor (/ l 2))))
8101 (t l)))
8103 (defun org-level-increment ()
8104 "Return the number of stars that will be added or removed at a
8105 time to headlines when structure editing, based on the value of
8106 `org-odd-levels-only'."
8107 (if org-odd-levels-only 2 1))
8109 (defun org-get-valid-level (level &optional change)
8110 "Rectify a level change under the influence of `org-odd-levels-only'
8111 LEVEL is a current level, CHANGE is by how much the level should be
8112 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8113 even level numbers will become the next higher odd number."
8114 (if org-odd-levels-only
8115 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8116 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8117 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8118 (max 1 (+ level (or change 0)))))
8120 (if (boundp 'define-obsolete-function-alias)
8121 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8122 (define-obsolete-function-alias 'org-get-legal-level
8123 'org-get-valid-level)
8124 (define-obsolete-function-alias 'org-get-legal-level
8125 'org-get-valid-level "23.1")))
8127 (defun org-promote ()
8128 "Promote the current heading higher up the tree."
8129 (org-with-wide-buffer
8130 (org-back-to-heading t)
8131 (let* ((after-change-functions (remq 'flyspell-after-change-function
8132 after-change-functions))
8133 (level (save-match-data (funcall outline-level)))
8134 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8135 (diff (abs (- level (length up-head) -1))))
8136 (cond
8137 ((and (= level 1) org-allow-promoting-top-level-subtree)
8138 (replace-match "# " nil t))
8139 ((= level 1)
8140 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8141 (t (replace-match up-head nil t)))
8142 (unless (= level 1)
8143 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8144 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8145 (run-hooks 'org-after-promote-entry-hook))))
8147 (defun org-demote ()
8148 "Demote the current heading lower down the tree."
8149 (org-with-wide-buffer
8150 (org-back-to-heading t)
8151 (let* ((after-change-functions (remq 'flyspell-after-change-function
8152 after-change-functions))
8153 (level (save-match-data (funcall outline-level)))
8154 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8155 (diff (abs (- level (length down-head) -1))))
8156 (replace-match down-head nil t)
8157 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8158 (when org-adapt-indentation (org-fixup-indentation diff))
8159 (run-hooks 'org-after-demote-entry-hook))))
8161 (defun org-cycle-level ()
8162 "Cycle the level of an empty headline through possible states.
8163 This goes first to child, then to parent, level, then up the hierarchy.
8164 After top level, it switches back to sibling level."
8165 (interactive)
8166 (let ((org-adapt-indentation nil))
8167 (when (org-point-at-end-of-empty-headline)
8168 (setq this-command 'org-cycle-level) ; Only needed for caching
8169 (let ((cur-level (org-current-level))
8170 (prev-level (org-get-previous-line-level)))
8171 (cond
8172 ;; If first headline in file, promote to top-level.
8173 ((= prev-level 0)
8174 (loop repeat (/ (- cur-level 1) (org-level-increment))
8175 do (org-do-promote)))
8176 ;; If same level as prev, demote one.
8177 ((= prev-level cur-level)
8178 (org-do-demote))
8179 ;; If parent is top-level, promote to top level if not already.
8180 ((= prev-level 1)
8181 (loop repeat (/ (- cur-level 1) (org-level-increment))
8182 do (org-do-promote)))
8183 ;; If top-level, return to prev-level.
8184 ((= cur-level 1)
8185 (loop repeat (/ (- prev-level 1) (org-level-increment))
8186 do (org-do-demote)))
8187 ;; If less than prev-level, promote one.
8188 ((< cur-level prev-level)
8189 (org-do-promote))
8190 ;; If deeper than prev-level, promote until higher than
8191 ;; prev-level.
8192 ((> cur-level prev-level)
8193 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8194 do (org-do-promote))))
8195 t))))
8197 (defun org-map-tree (fun)
8198 "Call FUN for every heading underneath the current one."
8199 (org-back-to-heading)
8200 (let ((level (funcall outline-level)))
8201 (save-excursion
8202 (funcall fun)
8203 (while (and (progn
8204 (outline-next-heading)
8205 (> (funcall outline-level) level))
8206 (not (eobp)))
8207 (funcall fun)))))
8209 (defun org-map-region (fun beg end)
8210 "Call FUN for every heading between BEG and END."
8211 (let ((org-ignore-region t))
8212 (save-excursion
8213 (setq end (copy-marker end))
8214 (goto-char beg)
8215 (if (and (re-search-forward org-outline-regexp-bol nil t)
8216 (< (point) end))
8217 (funcall fun))
8218 (while (and (progn
8219 (outline-next-heading)
8220 (< (point) end))
8221 (not (eobp)))
8222 (funcall fun)))))
8224 (defun org-fixup-indentation (diff)
8225 "Change the indentation in the current entry by DIFF.
8227 DIFF is an integer. Indentation is done according to the
8228 following rules:
8230 - Planning information and property drawers are always indented
8231 according to the new level of the headline;
8233 - Footnote definitions and their contents are ignored;
8235 - Inlinetasks' boundaries are not shifted;
8237 - Empty lines are ignored;
8239 - Other lines' indentation are shifted by DIFF columns, unless
8240 it would introduce a structural change in the document, in
8241 which case no shifting is done at all.
8243 Assume point is at a heading or an inlinetask beginning."
8244 (org-with-wide-buffer
8245 (narrow-to-region (line-beginning-position)
8246 (save-excursion
8247 (if (org-with-limited-levels (org-at-heading-p))
8248 (org-with-limited-levels (outline-next-heading))
8249 (org-inlinetask-goto-end))
8250 (point)))
8251 (forward-line)
8252 ;; Indent properly planning info and property drawer.
8253 (when (org-looking-at-p org-planning-line-re)
8254 (org-indent-line)
8255 (forward-line))
8256 (when (looking-at org-property-drawer-re)
8257 (goto-char (match-end 0))
8258 (forward-line)
8259 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8260 (catch 'no-shift
8261 (when (zerop diff) (throw 'no-shift nil))
8262 ;; If DIFF is negative, first check if a shift is possible at all
8263 ;; (e.g., it doesn't break structure). This can only happen if
8264 ;; some contents are not properly indented.
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 if
8280 ;; 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 (forward-line)))))))
8289 ;; Shift lines but footnote definitions and inlinetasks by DIFF.
8290 (while (not (eobp))
8291 (cond
8292 ((and (org-looking-at-p org-footnote-definition-re)
8293 (let ((e (org-element-at-point)))
8294 (and (eq (org-element-type e) 'footnote-definition)
8295 (goto-char (org-element-property :end e))))))
8296 ((org-looking-at-p org-outline-regexp) (forward-line))
8297 ((org-looking-at-p "[ \t]*$") (forward-line))
8298 (t (org-indent-line-to (+ (org-get-indentation) diff))
8299 (forward-line)))))))
8301 (defun org-convert-to-odd-levels ()
8302 "Convert an org-mode file with all levels allowed to one with odd levels.
8303 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8304 level 5 etc."
8305 (interactive)
8306 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8307 (let ((outline-level 'org-outline-level)
8308 (org-odd-levels-only nil) n)
8309 (save-excursion
8310 (goto-char (point-min))
8311 (while (re-search-forward "^\\*\\*+ " nil t)
8312 (setq n (- (length (match-string 0)) 2))
8313 (while (>= (setq n (1- n)) 0)
8314 (org-demote))
8315 (end-of-line 1))))))
8317 (defun org-convert-to-oddeven-levels ()
8318 "Convert an org-mode file with only odd levels to one with odd/even levels.
8319 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8320 file contains a section with an even level, conversion would
8321 destroy the structure of the file. An error is signaled in this
8322 case."
8323 (interactive)
8324 (goto-char (point-min))
8325 ;; First check if there are no even levels
8326 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8327 (org-show-context t)
8328 (error "Not all levels are odd in this file. Conversion not possible"))
8329 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8330 (let ((outline-regexp org-outline-regexp)
8331 (outline-level 'org-outline-level)
8332 (org-odd-levels-only nil) n)
8333 (save-excursion
8334 (goto-char (point-min))
8335 (while (re-search-forward "^\\*\\*+ " nil t)
8336 (setq n (/ (1- (length (match-string 0))) 2))
8337 (while (>= (setq n (1- n)) 0)
8338 (org-promote))
8339 (end-of-line 1))))))
8341 (defun org-tr-level (n)
8342 "Make N odd if required."
8343 (if org-odd-levels-only (1+ (/ n 2)) n))
8345 ;;; Vertical tree motion, cutting and pasting of subtrees
8347 (defun org-move-subtree-up (&optional arg)
8348 "Move the current subtree up past ARG headlines of the same level."
8349 (interactive "p")
8350 (org-move-subtree-down (- (prefix-numeric-value arg))))
8352 (defun org-move-subtree-down (&optional arg)
8353 "Move the current subtree down past ARG headlines of the same level."
8354 (interactive "p")
8355 (setq arg (prefix-numeric-value arg))
8356 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8357 'org-get-last-sibling))
8358 (ins-point (make-marker))
8359 (cnt (abs arg))
8360 (col (current-column))
8361 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8362 ;; Select the tree
8363 (org-back-to-heading)
8364 (setq beg0 (point))
8365 (save-excursion
8366 (setq ne-beg (org-back-over-empty-lines))
8367 (setq beg (point)))
8368 (save-match-data
8369 (save-excursion (outline-end-of-heading)
8370 (setq folded (outline-invisible-p)))
8371 (progn (org-end-of-subtree nil t)
8372 (unless (eobp) (backward-char))))
8373 (outline-next-heading)
8374 (setq ne-end (org-back-over-empty-lines))
8375 (setq end (point))
8376 (goto-char beg0)
8377 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8378 ;; include less whitespace
8379 (save-excursion
8380 (goto-char beg)
8381 (forward-line (- ne-beg ne-end))
8382 (setq beg (point))))
8383 ;; Find insertion point, with error handling
8384 (while (> cnt 0)
8385 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8386 (progn (goto-char beg0)
8387 (user-error "Cannot move past superior level or buffer limit")))
8388 (setq cnt (1- cnt)))
8389 (if (> arg 0)
8390 ;; Moving forward - still need to move over subtree
8391 (progn (org-end-of-subtree t t)
8392 (save-excursion
8393 (org-back-over-empty-lines)
8394 (or (bolp) (newline)))))
8395 (setq ne-ins (org-back-over-empty-lines))
8396 (move-marker ins-point (point))
8397 (setq txt (buffer-substring beg end))
8398 (org-save-markers-in-region beg end)
8399 (delete-region beg end)
8400 (org-remove-empty-overlays-at beg)
8401 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8402 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8403 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8404 (let ((bbb (point)))
8405 (insert-before-markers txt)
8406 (org-reinstall-markers-in-region bbb)
8407 (move-marker ins-point bbb))
8408 (or (bolp) (insert "\n"))
8409 (setq ins-end (point))
8410 (goto-char ins-point)
8411 (org-skip-whitespace)
8412 (when (and (< arg 0)
8413 (org-first-sibling-p)
8414 (> ne-ins ne-beg))
8415 ;; Move whitespace back to beginning
8416 (save-excursion
8417 (goto-char ins-end)
8418 (let ((kill-whole-line t))
8419 (kill-line (- ne-ins ne-beg)) (point)))
8420 (insert (make-string (- ne-ins ne-beg) ?\n)))
8421 (move-marker ins-point nil)
8422 (if folded
8423 (hide-subtree)
8424 (org-show-entry)
8425 (show-children)
8426 (org-cycle-hide-drawers 'children))
8427 (org-clean-visibility-after-subtree-move)
8428 ;; move back to the initial column we were at
8429 (move-to-column col)))
8431 (defvar org-subtree-clip ""
8432 "Clipboard for cut and paste of subtrees.
8433 This is actually only a copy of the kill, because we use the normal kill
8434 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8436 (defvar org-subtree-clip-folded nil
8437 "Was the last copied subtree folded?
8438 This is used to fold the tree back after pasting.")
8440 (defun org-cut-subtree (&optional n)
8441 "Cut the current subtree into the clipboard.
8442 With prefix arg N, cut this many sequential subtrees.
8443 This is a short-hand for marking the subtree and then cutting it."
8444 (interactive "p")
8445 (org-copy-subtree n 'cut))
8447 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8448 "Copy the current subtree it in the clipboard.
8449 With prefix arg N, copy this many sequential subtrees.
8450 This is a short-hand for marking the subtree and then copying it.
8451 If CUT is non-nil, actually cut the subtree.
8452 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8453 of some markers in the region, even if CUT is non-nil. This is
8454 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8455 (interactive "p")
8456 (let (beg end folded (beg0 (point)))
8457 (if (org-called-interactively-p 'any)
8458 (org-back-to-heading nil) ; take what looks like a subtree
8459 (org-back-to-heading t)) ; take what is really there
8460 (setq beg (point))
8461 (skip-chars-forward " \t\r\n")
8462 (save-match-data
8463 (if nosubtrees
8464 (outline-next-heading)
8465 (save-excursion (outline-end-of-heading)
8466 (setq folded (outline-invisible-p)))
8467 (ignore-errors (org-forward-heading-same-level (1- n) t))
8468 (org-end-of-subtree t t)))
8469 (setq end (point))
8470 (goto-char beg0)
8471 (when (> end beg)
8472 (setq org-subtree-clip-folded folded)
8473 (when (or cut force-store-markers)
8474 (org-save-markers-in-region beg end))
8475 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8476 (setq org-subtree-clip (current-kill 0))
8477 (message "%s: Subtree(s) with %d characters"
8478 (if cut "Cut" "Copied")
8479 (length org-subtree-clip)))))
8481 (defun org-paste-subtree (&optional level tree for-yank remove)
8482 "Paste the clipboard as a subtree, with modification of headline level.
8483 The entire subtree is promoted or demoted in order to match a new headline
8484 level.
8486 If the cursor is at the beginning of a headline, the same level as
8487 that headline is used to paste the tree.
8489 If not, the new level is derived from the *visible* headings
8490 before and after the insertion point, and taken to be the inferior headline
8491 level of the two. So if the previous visible heading is level 3 and the
8492 next is level 4 (or vice versa), level 4 will be used for insertion.
8493 This makes sure that the subtree remains an independent subtree and does
8494 not swallow low level entries.
8496 You can also force a different level, either by using a numeric prefix
8497 argument, or by inserting the heading marker by hand. For example, if the
8498 cursor is after \"*****\", then the tree will be shifted to level 5.
8500 If optional TREE is given, use this text instead of the kill ring.
8502 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8503 move back over whitespace before inserting, and move point to the end of
8504 the inserted text when done.
8506 When REMOVE is non-nil, remove the subtree from the clipboard."
8507 (interactive "P")
8508 (setq tree (or tree (and kill-ring (current-kill 0))))
8509 (unless (org-kill-is-subtree-p tree)
8510 (user-error "%s"
8511 (substitute-command-keys
8512 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8513 (org-with-limited-levels
8514 (let* ((visp (not (outline-invisible-p)))
8515 (txt tree)
8516 (^re_ "\\(\\*+\\)[ \t]*")
8517 (old-level (if (string-match org-outline-regexp-bol txt)
8518 (- (match-end 0) (match-beginning 0) 1)
8519 -1))
8520 (force-level (cond (level (prefix-numeric-value level))
8521 ((and (looking-at "[ \t]*$")
8522 (string-match
8523 "^\\*+$" (buffer-substring
8524 (point-at-bol) (point))))
8525 (- (match-end 0) (match-beginning 0)))
8526 ((and (bolp)
8527 (looking-at org-outline-regexp))
8528 (- (match-end 0) (point) 1))))
8529 (previous-level (save-excursion
8530 (condition-case nil
8531 (progn
8532 (outline-previous-visible-heading 1)
8533 (if (looking-at ^re_)
8534 (- (match-end 0) (match-beginning 0) 1)
8536 (error 1))))
8537 (next-level (save-excursion
8538 (condition-case nil
8539 (progn
8540 (or (looking-at org-outline-regexp)
8541 (outline-next-visible-heading 1))
8542 (if (looking-at ^re_)
8543 (- (match-end 0) (match-beginning 0) 1)
8545 (error 1))))
8546 (new-level (or force-level (max previous-level next-level)))
8547 (shift (if (or (= old-level -1)
8548 (= new-level -1)
8549 (= old-level new-level))
8551 (- new-level old-level)))
8552 (delta (if (> shift 0) -1 1))
8553 (func (if (> shift 0) 'org-demote 'org-promote))
8554 (org-odd-levels-only nil)
8555 beg end newend)
8556 ;; Remove the forced level indicator
8557 (if force-level
8558 (delete-region (point-at-bol) (point)))
8559 ;; Paste
8560 (beginning-of-line (if (bolp) 1 2))
8561 (setq beg (point))
8562 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8563 (insert-before-markers txt)
8564 (unless (string-match "\n\\'" txt) (insert "\n"))
8565 (setq newend (point))
8566 (org-reinstall-markers-in-region beg)
8567 (setq end (point))
8568 (goto-char beg)
8569 (skip-chars-forward " \t\n\r")
8570 (setq beg (point))
8571 (if (and (outline-invisible-p) visp)
8572 (save-excursion (outline-show-heading)))
8573 ;; Shift if necessary
8574 (unless (= shift 0)
8575 (save-restriction
8576 (narrow-to-region beg end)
8577 (while (not (= shift 0))
8578 (org-map-region func (point-min) (point-max))
8579 (setq shift (+ delta shift)))
8580 (goto-char (point-min))
8581 (setq newend (point-max))))
8582 (when (or (org-called-interactively-p 'interactive) for-yank)
8583 (message "Clipboard pasted as level %d subtree" new-level))
8584 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8585 kill-ring
8586 (eq org-subtree-clip (current-kill 0))
8587 org-subtree-clip-folded)
8588 ;; The tree was folded before it was killed/copied
8589 (hide-subtree))
8590 (and for-yank (goto-char newend))
8591 (and remove (setq kill-ring (cdr kill-ring))))))
8593 (defun org-kill-is-subtree-p (&optional txt)
8594 "Check if the current kill is an outline subtree, or a set of trees.
8595 Returns nil if kill does not start with a headline, or if the first
8596 headline level is not the largest headline level in the tree.
8597 So this will actually accept several entries of equal levels as well,
8598 which is OK for `org-paste-subtree'.
8599 If optional TXT is given, check this string instead of the current kill."
8600 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8601 (re (org-get-limited-outline-regexp))
8602 (^re (concat "^" re))
8603 (start-level (and kill
8604 (string-match
8605 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8606 kill)
8607 (- (match-end 2) (match-beginning 2) 1)))
8608 (start (1+ (or (match-beginning 2) -1))))
8609 (if (not start-level)
8610 (progn
8611 nil) ;; does not even start with a heading
8612 (catch 'exit
8613 (while (setq start (string-match ^re kill (1+ start)))
8614 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8615 (throw 'exit nil)))
8616 t))))
8618 (defvar org-markers-to-move nil
8619 "Markers that should be moved with a cut-and-paste operation.
8620 Those markers are stored together with their positions relative to
8621 the start of the region.")
8623 (defun org-save-markers-in-region (beg end)
8624 "Check markers in region.
8625 If these markers are between BEG and END, record their position relative
8626 to BEG, so that after moving the block of text, we can put the markers back
8627 into place.
8628 This function gets called just before an entry or tree gets cut from the
8629 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8630 called immediately, to move the markers with the entries."
8631 (setq org-markers-to-move nil)
8632 (when (featurep 'org-clock)
8633 (org-clock-save-markers-for-cut-and-paste beg end))
8634 (when (featurep 'org-agenda)
8635 (org-agenda-save-markers-for-cut-and-paste beg end)))
8637 (defun org-check-and-save-marker (marker beg end)
8638 "Check if MARKER is between BEG and END.
8639 If yes, remember the marker and the distance to BEG."
8640 (when (and (marker-buffer marker)
8641 (equal (marker-buffer marker) (current-buffer)))
8642 (if (and (>= marker beg) (< marker end))
8643 (push (cons marker (- marker beg)) org-markers-to-move))))
8645 (defun org-reinstall-markers-in-region (beg)
8646 "Move all remembered markers to their position relative to BEG."
8647 (mapc (lambda (x)
8648 (move-marker (car x) (+ beg (cdr x))))
8649 org-markers-to-move)
8650 (setq org-markers-to-move nil))
8652 (defun org-narrow-to-subtree ()
8653 "Narrow buffer to the current subtree."
8654 (interactive)
8655 (save-excursion
8656 (save-match-data
8657 (org-with-limited-levels
8658 (narrow-to-region
8659 (progn (org-back-to-heading t) (point))
8660 (progn (org-end-of-subtree t t)
8661 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8662 (point)))))))
8664 (defun org-narrow-to-block ()
8665 "Narrow buffer to the current block."
8666 (interactive)
8667 (let* ((case-fold-search t)
8668 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8669 "^[ \t]*#\\+end_.*")))
8670 (if blockp
8671 (narrow-to-region (car blockp) (cdr blockp))
8672 (user-error "Not in a block"))))
8674 (defun org-clone-subtree-with-time-shift (n &optional shift)
8675 "Clone the task (subtree) at point N times.
8676 The clones will be inserted as siblings.
8678 In interactive use, the user will be prompted for the number of
8679 clones to be produced. If the entry has a timestamp, the user
8680 will also be prompted for a time shift, which may be a repeater
8681 as used in time stamps, for example `+3d'. To disable this,
8682 you can call the function with a universal prefix argument.
8684 When a valid repeater is given and the entry contains any time
8685 stamps, the clones will become a sequence in time, with time
8686 stamps in the subtree shifted for each clone produced. If SHIFT
8687 is nil or the empty string, time stamps will be left alone. The
8688 ID property of the original subtree is removed.
8690 If the original subtree did contain time stamps with a repeater,
8691 the following will happen:
8692 - the repeater will be removed in each clone
8693 - an additional clone will be produced, with the current, unshifted
8694 date(s) in the entry.
8695 - the original entry will be placed *after* all the clones, with
8696 repeater intact.
8697 - the start days in the repeater in the original entry will be shifted
8698 to past the last clone.
8699 In this way you can spell out a number of instances of a repeating task,
8700 and still retain the repeater to cover future instances of the task."
8701 (interactive "nNumber of clones to produce: ")
8702 (let ((shift
8703 (or shift
8704 (if (and (not (equal current-prefix-arg '(4)))
8705 (save-excursion
8706 (re-search-forward org-ts-regexp-both
8707 (save-excursion
8708 (org-end-of-subtree t)
8709 (point)) t)))
8710 (read-from-minibuffer
8711 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8712 ""))) ;; No time shift
8713 (n-no-remove -1)
8714 (drawer-re org-drawer-regexp)
8715 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8716 beg end template task idprop
8717 shift-n shift-what doshift nmin nmax)
8718 (if (not (and (integerp n) (> n 0)))
8719 (user-error "Invalid number of replications %s" n))
8720 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8721 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8722 shift)))
8723 (user-error "Invalid shift specification %s" shift))
8724 (when doshift
8725 (setq shift-n (string-to-number (match-string 1 shift))
8726 shift-what (cdr (assoc (match-string 2 shift)
8727 '(("d" . day) ("w" . week)
8728 ("m" . month) ("y" . year))))))
8729 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8730 (setq nmin 1 nmax n)
8731 (org-back-to-heading t)
8732 (setq beg (point))
8733 (setq idprop (org-entry-get nil "ID"))
8734 (org-end-of-subtree t t)
8735 (or (bolp) (insert "\n"))
8736 (setq end (point))
8737 (setq template (buffer-substring beg end))
8738 (when (and doshift
8739 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8740 (delete-region beg end)
8741 (setq end beg)
8742 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8743 (goto-char end)
8744 (loop for n from nmin to nmax do
8745 ;; prepare clone
8746 (with-temp-buffer
8747 (insert template)
8748 (org-mode)
8749 (goto-char (point-min))
8750 (org-show-subtree)
8751 (and idprop (if org-clone-delete-id
8752 (org-entry-delete nil "ID")
8753 (org-id-get-create t)))
8754 (unless (= n 0)
8755 (while (re-search-forward org-clock-re nil t)
8756 (kill-whole-line))
8757 (goto-char (point-min))
8758 (while (re-search-forward drawer-re nil t)
8759 (org-remove-empty-drawer-at (point))))
8760 (goto-char (point-min))
8761 (when doshift
8762 (while (re-search-forward org-ts-regexp-both nil t)
8763 (org-timestamp-change (* n shift-n) shift-what))
8764 (unless (= n n-no-remove)
8765 (goto-char (point-min))
8766 (while (re-search-forward org-ts-regexp nil t)
8767 (save-excursion
8768 (goto-char (match-beginning 0))
8769 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8770 (delete-region (match-beginning 1) (match-end 1)))))))
8771 (setq task (buffer-string)))
8772 (insert task))
8773 (goto-char beg)))
8775 ;;; Outline Sorting
8777 (defun org-sort (with-case)
8778 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8779 Optional argument WITH-CASE means sort case-sensitively."
8780 (interactive "P")
8781 (cond
8782 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8783 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8785 (org-call-with-arg 'org-sort-entries with-case))))
8787 (defun org-sort-remove-invisible (s)
8788 "Remove invisible links from string S."
8789 (remove-text-properties 0 (length s) org-rm-props s)
8790 (while (string-match org-bracket-link-regexp s)
8791 (setq s (replace-match (if (match-end 2)
8792 (match-string 3 s)
8793 (match-string 1 s)) t t s)))
8794 (let ((st (format " %s " s)))
8795 (while (string-match org-emph-re st)
8796 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8797 (setq s (substring st 1 -1)))
8800 (defvar org-priority-regexp) ; defined later in the file
8802 (defvar org-after-sorting-entries-or-items-hook nil
8803 "Hook that is run after a bunch of entries or items have been sorted.
8804 When children are sorted, the cursor is in the parent line when this
8805 hook gets called. When a region or a plain list is sorted, the cursor
8806 will be in the first entry of the sorted region/list.")
8808 (defun org-sort-entries
8809 (&optional with-case sorting-type getkey-func compare-func property)
8810 "Sort entries on a certain level of an outline tree.
8811 If there is an active region, the entries in the region are sorted.
8812 Else, if the cursor is before the first entry, sort the top-level items.
8813 Else, the children of the entry at point are sorted.
8815 Sorting can be alphabetically, numerically, by date/time as given by
8816 a time stamp, by a property, by priority order, or by a custom function.
8818 The command prompts for the sorting type unless it has been given to the
8819 function through the SORTING-TYPE argument, which needs to be a character,
8820 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8821 the precise meaning of each character:
8823 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8824 c By creation time, which is assumed to be the first inactive time stamp
8825 at the beginning of a line.
8826 d By deadline date/time.
8827 k By clocking time.
8828 n Numerically, by converting the beginning of the entry/item to a number.
8829 o By order of TODO keywords.
8830 p By priority according to the cookie.
8831 r By the value of a property.
8832 s By scheduled date/time.
8833 t By date/time, either the first active time stamp in the entry, or, if
8834 none exist, by the first inactive one.
8836 Capital letters will reverse the sort order.
8838 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8839 called with point at the beginning of the record. It must return either
8840 a string or a number that should serve as the sorting key for that record.
8842 Comparing entries ignores case by default. However, with an optional argument
8843 WITH-CASE, the sorting considers case as well.
8845 Sorting is done against the visible part of the headlines, it ignores hidden
8846 links.
8848 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8849 (interactive "P")
8850 (let ((case-func (if with-case 'identity 'downcase))
8851 (cmstr
8852 ;; The clock marker is lost when using `sort-subr', let's
8853 ;; store the clocking string.
8854 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8855 (save-excursion
8856 (goto-char org-clock-marker)
8857 (looking-back "^.*") (match-string-no-properties 0))))
8858 start beg end stars re re2
8859 txt what tmp)
8860 ;; Find beginning and end of region to sort
8861 (cond
8862 ((org-region-active-p)
8863 ;; we will sort the region
8864 (setq end (region-end)
8865 what "region")
8866 (goto-char (region-beginning))
8867 (if (not (org-at-heading-p)) (outline-next-heading))
8868 (setq start (point)))
8869 ((or (org-at-heading-p)
8870 (ignore-errors (progn (org-back-to-heading) t)))
8871 ;; we will sort the children of the current headline
8872 (org-back-to-heading)
8873 (setq start (point)
8874 end (progn (org-end-of-subtree t t)
8875 (or (bolp) (insert "\n"))
8876 (when (>= (org-back-over-empty-lines) 1)
8877 (forward-line 1))
8878 (point))
8879 what "children")
8880 (goto-char start)
8881 (show-subtree)
8882 (outline-next-heading))
8884 ;; we will sort the top-level entries in this file
8885 (goto-char (point-min))
8886 (or (org-at-heading-p) (outline-next-heading))
8887 (setq start (point))
8888 (goto-char (point-max))
8889 (beginning-of-line 1)
8890 (when (looking-at ".*?\\S-")
8891 ;; File ends in a non-white line
8892 (end-of-line 1)
8893 (insert "\n"))
8894 (setq end (point-max))
8895 (setq what "top-level")
8896 (goto-char start)
8897 (show-all)))
8899 (setq beg (point))
8900 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8902 (looking-at "\\(\\*+\\)")
8903 (setq stars (match-string 1)
8904 re (concat "^" (regexp-quote stars) " +")
8905 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8906 txt (buffer-substring beg end))
8907 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8908 (if (and (not (equal stars "*")) (string-match re2 txt))
8909 (user-error "Region to sort contains a level above the first entry"))
8911 (unless sorting-type
8912 (message
8913 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8914 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8915 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8916 what)
8917 (setq sorting-type (read-char-exclusive))
8919 (unless getkey-func
8920 (and (= (downcase sorting-type) ?f)
8921 (setq getkey-func
8922 (org-icompleting-read "Sort using function: "
8923 obarray 'fboundp t nil nil))
8924 (setq getkey-func (intern getkey-func))))
8926 (and (= (downcase sorting-type) ?r)
8927 (not property)
8928 (setq property
8929 (org-icompleting-read "Property: "
8930 (mapcar 'list (org-buffer-property-keys t))
8931 nil t))))
8933 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8934 (message "Sorting entries...")
8936 (save-restriction
8937 (narrow-to-region start end)
8938 (let ((dcst (downcase sorting-type))
8939 (case-fold-search nil)
8940 (now (current-time)))
8941 (sort-subr
8942 (/= dcst sorting-type)
8943 ;; This function moves to the beginning character of the "record" to
8944 ;; be sorted.
8945 (lambda nil
8946 (if (re-search-forward re nil t)
8947 (goto-char (match-beginning 0))
8948 (goto-char (point-max))))
8949 ;; This function moves to the last character of the "record" being
8950 ;; sorted.
8951 (lambda nil
8952 (save-match-data
8953 (condition-case nil
8954 (outline-forward-same-level 1)
8955 (error
8956 (goto-char (point-max))))))
8957 ;; This function returns the value that gets sorted against.
8958 (lambda nil
8959 (cond
8960 ((= dcst ?n)
8961 (if (looking-at org-complex-heading-regexp)
8962 (string-to-number (org-sort-remove-invisible (match-string 4)))
8963 nil))
8964 ((= dcst ?a)
8965 (if (looking-at org-complex-heading-regexp)
8966 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8967 nil))
8968 ((= dcst ?k)
8969 (or (get-text-property (point) :org-clock-minutes) 0))
8970 ((= dcst ?t)
8971 (let ((end (save-excursion (outline-next-heading) (point))))
8972 (if (or (re-search-forward org-ts-regexp end t)
8973 (re-search-forward org-ts-regexp-both end t))
8974 (org-time-string-to-seconds (match-string 0))
8975 (org-float-time now))))
8976 ((= dcst ?c)
8977 (let ((end (save-excursion (outline-next-heading) (point))))
8978 (if (re-search-forward
8979 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8980 end t)
8981 (org-time-string-to-seconds (match-string 0))
8982 (org-float-time now))))
8983 ((= dcst ?s)
8984 (let ((end (save-excursion (outline-next-heading) (point))))
8985 (if (re-search-forward org-scheduled-time-regexp end t)
8986 (org-time-string-to-seconds (match-string 1))
8987 (org-float-time now))))
8988 ((= dcst ?d)
8989 (let ((end (save-excursion (outline-next-heading) (point))))
8990 (if (re-search-forward org-deadline-time-regexp end t)
8991 (org-time-string-to-seconds (match-string 1))
8992 (org-float-time now))))
8993 ((= dcst ?p)
8994 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8995 (string-to-char (match-string 2))
8996 org-default-priority))
8997 ((= dcst ?r)
8998 (or (org-entry-get nil property) ""))
8999 ((= dcst ?o)
9000 (if (looking-at org-complex-heading-regexp)
9001 (let* ((m (match-string 2))
9002 (s (if (member m org-done-keywords) '- '+)))
9003 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9004 ((= dcst ?f)
9005 (if getkey-func
9006 (progn
9007 (setq tmp (funcall getkey-func))
9008 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9009 tmp)
9010 (error "Invalid key function `%s'" getkey-func)))
9011 (t (error "Invalid sorting type `%c'" sorting-type))))
9013 (cond
9014 ((= dcst ?a) 'string<)
9015 ((= dcst ?f) compare-func)
9016 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9017 (run-hooks 'org-after-sorting-entries-or-items-hook)
9018 ;; Reset the clock marker if needed
9019 (when cmstr
9020 (save-excursion
9021 (goto-char start)
9022 (search-forward cmstr nil t)
9023 (move-marker org-clock-marker (point))))
9024 (message "Sorting entries...done")))
9026 (defun org-do-sort (table what &optional with-case sorting-type)
9027 "Sort TABLE of WHAT according to SORTING-TYPE.
9028 The user will be prompted for the SORTING-TYPE if the call to this
9029 function does not specify it.
9030 WHAT is only for the prompt, to indicate what is being sorted.
9031 The sorting key will be extracted from the car of the elements of
9032 the table.
9033 If WITH-CASE is non-nil, the sorting will be case-sensitive."
9034 (unless sorting-type
9035 (message
9036 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
9037 what)
9038 (setq sorting-type (read-char-exclusive)))
9039 (let ((dcst (downcase sorting-type))
9040 extractfun comparefun)
9041 ;; Define the appropriate functions
9042 (cond
9043 ((= dcst ?n)
9044 (setq extractfun 'string-to-number
9045 comparefun (if (= dcst sorting-type) '< '>)))
9046 ((= dcst ?a)
9047 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
9048 (lambda(x) (downcase (org-sort-remove-invisible x))))
9049 comparefun (if (= dcst sorting-type)
9050 'string<
9051 (lambda (a b) (and (not (string< a b))
9052 (not (string= a b)))))))
9053 ((= dcst ?t)
9054 (setq extractfun
9055 (lambda (x)
9056 (cond ((or (string-match org-ts-regexp x)
9057 (string-match org-ts-regexp-both x))
9058 (org-float-time
9059 (org-time-string-to-time (match-string 0 x))))
9060 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
9061 (org-hh:mm-string-to-minutes x))
9062 (t 0)))
9063 comparefun (if (= dcst sorting-type) '< '>)))
9064 (t (error "Invalid sorting type `%c'" sorting-type)))
9066 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9067 table)
9068 (lambda (a b) (funcall comparefun (car a) (car b))))))
9071 ;;; The orgstruct minor mode
9073 ;; Define a minor mode which can be used in other modes in order to
9074 ;; integrate the org-mode structure editing commands.
9076 ;; This is really a hack, because the org-mode structure commands use
9077 ;; keys which normally belong to the major mode. Here is how it
9078 ;; works: The minor mode defines all the keys necessary to operate the
9079 ;; structure commands, but wraps the commands into a function which
9080 ;; tests if the cursor is currently at a headline or a plain list
9081 ;; item. If that is the case, the structure command is used,
9082 ;; temporarily setting many Org-mode variables like regular
9083 ;; expressions for filling etc. However, when any of those keys is
9084 ;; used at a different location, function uses `key-binding' to look
9085 ;; up if the key has an associated command in another currently active
9086 ;; keymap (minor modes, major mode, global), and executes that
9087 ;; command. There might be problems if any of the keys is otherwise
9088 ;; used as a prefix key.
9090 (defcustom orgstruct-heading-prefix-regexp ""
9091 "Regexp that matches the custom prefix of Org headlines in
9092 orgstruct(++)-mode."
9093 :group 'org
9094 :version "24.4"
9095 :package-version '(Org . "8.3")
9096 :type 'regexp)
9097 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9099 (defcustom orgstruct-setup-hook nil
9100 "Hook run after orgstruct-mode-map is filled."
9101 :group 'org
9102 :version "24.4"
9103 :package-version '(Org . "8.0")
9104 :type 'hook)
9106 (defvar orgstruct-initialized nil)
9108 (defvar org-local-vars nil
9109 "List of local variables, for use by `orgstruct-mode'.")
9111 ;;;###autoload
9112 (define-minor-mode orgstruct-mode
9113 "Toggle the minor mode `orgstruct-mode'.
9114 This mode is for using Org-mode structure commands in other
9115 modes. The following keys behave as if Org-mode were active, if
9116 the cursor is on a headline, or on a plain list item (both as
9117 defined by Org-mode)."
9118 nil " OrgStruct" (make-sparse-keymap)
9119 (funcall (if orgstruct-mode
9120 'add-to-invisibility-spec
9121 'remove-from-invisibility-spec)
9122 '(outline . t))
9123 (when orgstruct-mode
9124 (org-load-modules-maybe)
9125 (unless orgstruct-initialized
9126 (orgstruct-setup)
9127 (setq orgstruct-initialized t))))
9129 ;;;###autoload
9130 (defun turn-on-orgstruct ()
9131 "Unconditionally turn on `orgstruct-mode'."
9132 (orgstruct-mode 1))
9134 (defvar org-fb-vars nil)
9135 (make-variable-buffer-local 'org-fb-vars)
9136 (defun orgstruct++-mode (&optional arg)
9137 "Toggle `orgstruct-mode', the enhanced version of it.
9138 In addition to setting orgstruct-mode, this also exports all
9139 indentation and autofilling variables from org-mode into the
9140 buffer. It will also recognize item context in multiline items."
9141 (interactive "P")
9142 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9143 (if (< arg 1)
9144 (progn (orgstruct-mode -1)
9145 (mapc (lambda(v)
9146 (org-set-local (car v)
9147 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9148 org-fb-vars))
9149 (orgstruct-mode 1)
9150 (setq org-fb-vars nil)
9151 (unless org-local-vars
9152 (setq org-local-vars (org-get-local-variables)))
9153 (let (var val)
9154 (mapc
9155 (lambda (x)
9156 (when (string-match
9157 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9158 (symbol-name (car x)))
9159 (setq var (car x) val (nth 1 x))
9160 (push (list var `(quote ,(eval var))) org-fb-vars)
9161 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9162 org-local-vars)
9163 (org-set-local 'orgstruct-is-++ t))))
9165 (defvar orgstruct-is-++ nil
9166 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9167 (make-variable-buffer-local 'orgstruct-is-++)
9169 ;;;###autoload
9170 (defun turn-on-orgstruct++ ()
9171 "Unconditionally turn on `orgstruct++-mode'."
9172 (orgstruct++-mode 1))
9174 (defun orgstruct-error ()
9175 "Error when there is no default binding for a structure key."
9176 (interactive)
9177 (funcall (if (fboundp 'user-error)
9178 'user-error
9179 'error)
9180 "This key has no function outside structure elements"))
9182 (defun orgstruct-setup ()
9183 "Setup orgstruct keymap."
9184 (dolist (cell '((org-demote . t)
9185 (org-metaleft . t)
9186 (org-metaright . t)
9187 (org-promote . t)
9188 (org-shiftmetaleft . t)
9189 (org-shiftmetaright . t)
9190 org-backward-element
9191 org-backward-heading-same-level
9192 org-ctrl-c-ret
9193 org-ctrl-c-minus
9194 org-ctrl-c-star
9195 org-cycle
9196 org-forward-heading-same-level
9197 org-insert-heading
9198 org-insert-heading-respect-content
9199 org-kill-note-or-show-branches
9200 org-mark-subtree
9201 org-meta-return
9202 org-metadown
9203 org-metaup
9204 org-narrow-to-subtree
9205 org-promote-subtree
9206 org-reveal
9207 org-shiftdown
9208 org-shiftleft
9209 org-shiftmetadown
9210 org-shiftmetaup
9211 org-shiftright
9212 org-shifttab
9213 org-shifttab
9214 org-shiftup
9215 org-show-subtree
9216 org-sort
9217 org-up-element
9218 outline-demote
9219 outline-next-visible-heading
9220 outline-previous-visible-heading
9221 outline-promote
9222 outline-up-heading
9223 show-children))
9224 (let ((f (or (car-safe cell) cell))
9225 (disable-when-heading-prefix (cdr-safe cell)))
9226 (when (fboundp f)
9227 (let ((new-bindings))
9228 (dolist (binding (nconc (where-is-internal f org-mode-map)
9229 (where-is-internal f outline-mode-map)))
9230 (push binding new-bindings)
9231 ;; TODO use local-function-key-map
9232 (dolist (rep '(("<tab>" . "TAB")
9233 ("<return>" . "RET")
9234 ("<escape>" . "ESC")
9235 ("<delete>" . "DEL")))
9236 (setq binding (read-kbd-macro
9237 (let ((case-fold-search))
9238 (replace-regexp-in-string
9239 (regexp-quote (cdr rep))
9240 (car rep)
9241 (key-description binding)))))
9242 (pushnew binding new-bindings :test 'equal)))
9243 (dolist (binding new-bindings)
9244 (let ((key (lookup-key orgstruct-mode-map binding)))
9245 (when (or (not key) (numberp key))
9246 (ignore-errors
9247 (org-defkey orgstruct-mode-map
9248 binding
9249 (orgstruct-make-binding
9250 f binding disable-when-heading-prefix))))))))))
9251 (run-hooks 'orgstruct-setup-hook))
9253 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9254 "Create a function for binding in the structure minor mode.
9255 FUN is the command to call inside a table. KEY is the key that
9256 should be checked in for a command to execute outside of tables.
9257 Non-nil `disable-when-heading-prefix' means to disable the command
9258 if `orgstruct-heading-prefix-regexp' is not empty."
9259 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9260 (let ((nname name)
9261 (i 0))
9262 (while (fboundp (intern nname))
9263 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9264 (setq name (intern nname)))
9265 (eval
9266 (let ((bindings '((org-heading-regexp
9267 (concat "^"
9268 orgstruct-heading-prefix-regexp
9269 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9270 (org-outline-regexp
9271 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9272 (org-outline-regexp-bol
9273 (concat "^" org-outline-regexp))
9274 (outline-regexp org-outline-regexp)
9275 (outline-heading-end-regexp "\n")
9276 (outline-level 'org-outline-level)
9277 (outline-heading-alist))))
9278 `(defun ,name (arg)
9279 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9280 "Outside of structure, run the binding of `"
9281 (key-description key) "'."
9282 (when disable-when-heading-prefix
9283 (concat
9284 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9285 "back to the default binding due to limitations of Org's implementation of\n"
9286 "`" (symbol-name fun) "'.")))
9287 (interactive "p")
9288 (let* ((disable
9289 ,(and disable-when-heading-prefix
9290 '(not (string= orgstruct-heading-prefix-regexp ""))))
9291 (fallback
9292 (or disable
9293 (not
9294 (let* ,bindings
9295 (org-context-p 'headline 'item
9296 ,(when (memq fun
9297 '(org-insert-heading
9298 org-insert-heading-respect-content
9299 org-meta-return))
9300 '(when orgstruct-is-++
9301 'item-body))))))))
9302 (if fallback
9303 (let* ((orgstruct-mode)
9304 (binding
9305 (let ((key ,key))
9306 (catch 'exit
9307 (dolist
9308 (rep
9309 '(nil
9310 ("<\\([^>]*\\)tab>" . "\\1TAB")
9311 ("<\\([^>]*\\)return>" . "\\1RET")
9312 ("<\\([^>]*\\)escape>" . "\\1ESC")
9313 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9314 nil)
9315 (when rep
9316 (setq key (read-kbd-macro
9317 (let ((case-fold-search))
9318 (replace-regexp-in-string
9319 (car rep)
9320 (cdr rep)
9321 (key-description key))))))
9322 (when (key-binding key)
9323 (throw 'exit (key-binding key))))))))
9324 (if (keymapp binding)
9325 (org-set-transient-map binding)
9326 (let ((func (or binding
9327 (unless disable
9328 'orgstruct-error))))
9329 (when func
9330 (call-interactively func)))))
9331 (org-run-like-in-org-mode
9332 (lambda ()
9333 (interactive)
9334 (let* ,bindings
9335 (call-interactively ',fun)))))))))
9336 name))
9338 (defun org-contextualize-keys (alist contexts)
9339 "Return valid elements in ALIST depending on CONTEXTS.
9341 `org-agenda-custom-commands' or `org-capture-templates' are the
9342 values used for ALIST, and `org-agenda-custom-commands-contexts'
9343 or `org-capture-templates-contexts' are the associated contexts
9344 definitions."
9345 (let ((contexts
9346 ;; normalize contexts
9347 (mapcar
9348 (lambda(c) (cond ((listp (cadr c))
9349 (list (car c) (car c) (cadr c)))
9350 ((string= "" (cadr c))
9351 (list (car c) (car c) (caddr c)))
9352 (t c))) contexts))
9353 (a alist) c r s)
9354 ;; loop over all commands or templates
9355 (while (setq c (pop a))
9356 (let (vrules repl)
9357 (cond
9358 ((not (assoc (car c) contexts))
9359 (push c r))
9360 ((and (assoc (car c) contexts)
9361 (setq vrules (org-contextualize-validate-key
9362 (car c) contexts)))
9363 (mapc (lambda (vr)
9364 (when (not (equal (car vr) (cadr vr)))
9365 (setq repl vr))) vrules)
9366 (if (not repl) (push c r)
9367 (push (cadr repl) s)
9368 (push
9369 (cons (car c)
9370 (cdr (or (assoc (cadr repl) alist)
9371 (error "Undefined key `%s' as contextual replacement for `%s'"
9372 (cadr repl) (car c)))))
9373 r))))))
9374 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9375 (delq
9377 (delete-dups
9378 (mapcar (lambda (x)
9379 (let ((tpl (car x)))
9380 (when (not (delq
9382 (mapcar (lambda(y)
9383 (equal y tpl)) s))) x)))
9384 (reverse r))))))
9386 (defun org-contextualize-validate-key (key contexts)
9387 "Check CONTEXTS for agenda or capture KEY."
9388 (let (r rr res)
9389 (while (setq r (pop contexts))
9390 (mapc
9391 (lambda (rr)
9392 (when
9393 (and (equal key (car r))
9394 (if (functionp rr) (funcall rr)
9395 (or (and (eq (car rr) 'in-file)
9396 (buffer-file-name)
9397 (string-match (cdr rr) (buffer-file-name)))
9398 (and (eq (car rr) 'in-mode)
9399 (string-match (cdr rr) (symbol-name major-mode)))
9400 (and (eq (car rr) 'in-buffer)
9401 (string-match (cdr rr) (buffer-name)))
9402 (when (and (eq (car rr) 'not-in-file)
9403 (buffer-file-name))
9404 (not (string-match (cdr rr) (buffer-file-name))))
9405 (when (eq (car rr) 'not-in-mode)
9406 (not (string-match (cdr rr) (symbol-name major-mode))))
9407 (when (eq (car rr) 'not-in-buffer)
9408 (not (string-match (cdr rr) (buffer-name)))))))
9409 (push r res)))
9410 (car (last r))))
9411 (delete-dups (delq nil res))))
9413 (defun org-context-p (&rest contexts)
9414 "Check if local context is any of CONTEXTS.
9415 Possible values in the list of contexts are `table', `headline', and `item'."
9416 (let ((pos (point)))
9417 (goto-char (point-at-bol))
9418 (prog1 (or (and (memq 'table contexts)
9419 (looking-at "[ \t]*|"))
9420 (and (memq 'headline contexts)
9421 (looking-at org-outline-regexp))
9422 (and (memq 'item contexts)
9423 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9424 (and (memq 'item-body contexts)
9425 (org-in-item-p)))
9426 (goto-char pos))))
9428 (defun org-get-local-variables ()
9429 "Return a list of all local variables in an Org mode buffer."
9430 (let (varlist)
9431 (with-current-buffer (get-buffer-create "*Org tmp*")
9432 (erase-buffer)
9433 (org-mode)
9434 (setq varlist (buffer-local-variables)))
9435 (kill-buffer "*Org tmp*")
9436 (delq nil
9437 (mapcar
9438 (lambda (x)
9439 (setq x
9440 (if (symbolp x)
9441 (list x)
9442 (list (car x) (cdr x))))
9443 (if (and (not (get (car x) 'org-state))
9444 (string-match
9445 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9446 (symbol-name (car x))))
9447 x nil))
9448 varlist))))
9450 (defun org-clone-local-variables (from-buffer &optional regexp)
9451 "Clone local variables from FROM-BUFFER.
9452 Optional argument REGEXP selects variables to clone."
9453 (mapc
9454 (lambda (pair)
9455 (and (symbolp (car pair))
9456 (or (null regexp)
9457 (string-match regexp (symbol-name (car pair))))
9458 (set (make-local-variable (car pair))
9459 (cdr pair))))
9460 (buffer-local-variables from-buffer)))
9462 ;;;###autoload
9463 (defun org-run-like-in-org-mode (cmd)
9464 "Run a command, pretending that the current buffer is in Org-mode.
9465 This will temporarily bind local variables that are typically bound in
9466 Org-mode to the values they have in Org-mode, and then interactively
9467 call CMD."
9468 (org-load-modules-maybe)
9469 (unless org-local-vars
9470 (setq org-local-vars (org-get-local-variables)))
9471 (let (binds)
9472 (dolist (var org-local-vars)
9473 (when (or (not (boundp (car var)))
9474 (eq (symbol-value (car var))
9475 (default-value (car var))))
9476 (push (list (car var) `(quote ,(cadr var))) binds)))
9477 (eval `(let ,binds
9478 (call-interactively (quote ,cmd))))))
9480 (defun org-get-category (&optional pos force-refresh)
9481 "Get the category applying to position POS."
9482 (save-match-data
9483 (if force-refresh (org-refresh-category-properties))
9484 (let ((pos (or pos (point))))
9485 (or (get-text-property pos 'org-category)
9486 (progn (org-refresh-category-properties)
9487 (get-text-property pos 'org-category))))))
9489 ;;; Refresh properties
9491 (defun org-refresh-properties (dprop tprop)
9492 "Refresh buffer text properties.
9493 DPROP is the drawer property and TPROP is either the
9494 corresponding text property to set, or an alist with each element
9495 being a text property (as a symbol) and a function to apply to
9496 the value of the drawer property."
9497 (let ((case-fold-search t)
9498 (inhibit-read-only t))
9499 (org-with-silent-modifications
9500 (save-excursion
9501 (save-restriction
9502 (widen)
9503 (goto-char (point-min))
9504 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9505 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9507 (defun org-refresh-property (tprop p)
9508 "Refresh the buffer text property TPROP from the drawer property P.
9509 The refresh happens only for the current tree (not subtree)."
9510 (save-excursion
9511 (org-back-to-heading t)
9512 ;; tprop is a text property symbol
9513 (if (symbolp tprop)
9514 (put-text-property
9515 (point) (or (outline-next-heading) (point-max)) tprop p)
9516 ;; tprop is an alist with (properties . function) elements
9517 (mapc (lambda(al)
9518 (save-excursion
9519 (put-text-property
9520 (point-at-bol) (or (outline-next-heading) (point-max))
9521 (car al)
9522 (funcall (cdr al) p))))
9523 tprop))))
9525 (defun org-refresh-category-properties ()
9526 "Refresh category text properties in the buffer."
9527 (let ((case-fold-search t)
9528 (inhibit-read-only t)
9529 (def-cat (cond
9530 ((null org-category)
9531 (if buffer-file-name
9532 (file-name-sans-extension
9533 (file-name-nondirectory buffer-file-name))
9534 "???"))
9535 ((symbolp org-category) (symbol-name org-category))
9536 (t org-category)))
9537 beg end cat pos optionp)
9538 (org-with-silent-modifications
9539 (save-excursion
9540 (save-restriction
9541 (widen)
9542 (goto-char (point-min))
9543 (put-text-property (point) (point-max) 'org-category def-cat)
9544 (while (re-search-forward
9545 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9546 (setq pos (match-end 0)
9547 optionp (equal (char-after (match-beginning 0)) ?#)
9548 cat (org-trim (match-string 2)))
9549 (if optionp
9550 (setq beg (point-at-bol) end (point-max))
9551 (org-back-to-heading t)
9552 (setq beg (point) end (org-end-of-subtree t t)))
9553 (put-text-property beg end 'org-category cat)
9554 (goto-char pos)))))))
9556 (defun org-refresh-stats-properties ()
9557 "Refresh stats text properties in the buffer."
9558 (let (stats)
9559 (org-with-silent-modifications
9560 (save-excursion
9561 (save-restriction
9562 (widen)
9563 (goto-char (point-min))
9564 (while (re-search-forward
9565 (concat org-outline-regexp-bol ".*"
9566 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9567 nil t)
9568 (setq stats (cond ((equal (match-string 3) "0") 0)
9569 ((match-string 2)
9570 (/ (* (string-to-number (match-string 2)) 100)
9571 (string-to-number (match-string 3))))
9572 (t (string-to-number (match-string 1)))))
9573 (org-back-to-heading t)
9574 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9575 'org-stats stats)))))))
9577 (defun org-refresh-effort-properties ()
9578 "Refresh effort properties"
9579 (org-refresh-properties
9580 org-effort-property
9581 '((effort . identity)
9582 (effort-minutes . org-duration-string-to-minutes))))
9584 ;;;; Link Stuff
9586 ;;; Link abbreviations
9588 (defun org-link-expand-abbrev (link)
9589 "Apply replacements as defined in `org-link-abbrev-alist'."
9590 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9591 (let* ((key (match-string 1 link))
9592 (as (or (assoc key org-link-abbrev-alist-local)
9593 (assoc key org-link-abbrev-alist)))
9594 (tag (and (match-end 2) (match-string 3 link)))
9595 rpl)
9596 (if (not as)
9597 link
9598 (setq rpl (cdr as))
9599 (cond
9600 ((symbolp rpl) (funcall rpl tag))
9601 ((string-match "%(\\([^)]+\\))" rpl)
9602 (replace-match
9603 (save-match-data
9604 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9605 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9606 ((string-match "%h" rpl)
9607 (replace-match (url-hexify-string (or tag "")) t t rpl))
9608 (t (concat rpl tag)))))
9609 link))
9611 ;;; Storing and inserting links
9613 (defvar org-insert-link-history nil
9614 "Minibuffer history for links inserted with `org-insert-link'.")
9616 (defvar org-stored-links nil
9617 "Contains the links stored with `org-store-link'.")
9619 (defvar org-store-link-plist nil
9620 "Plist with info about the most recently link created with `org-store-link'.")
9622 (defvar org-link-protocols nil
9623 "Link protocols added to Org-mode using `org-add-link-type'.")
9625 (defvar org-store-link-functions nil
9626 "List of functions that are called to create and store a link.
9627 Each function will be called in turn until one returns a non-nil
9628 value. Each function should check if it is responsible for creating
9629 this link (for example by looking at the major mode).
9630 If not, it must exit and return nil.
9631 If yes, it should return a non-nil value after a calling
9632 `org-store-link-props' with a list of properties and values.
9633 Special properties are:
9635 :type The link prefix, like \"http\". This must be given.
9636 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9637 This is obligatory as well.
9638 :description Optional default description for the second pair
9639 of brackets in an Org-mode link. The user can still change
9640 this when inserting this link into an Org-mode buffer.
9642 In addition to these, any additional properties can be specified
9643 and then used in capture templates.")
9645 (defun org-add-link-type (type &optional follow export)
9646 "Add TYPE to the list of `org-link-types'.
9647 Re-compute all regular expressions depending on `org-link-types'
9649 FOLLOW and EXPORT are two functions.
9651 FOLLOW should take the link path as the single argument and do whatever
9652 is necessary to follow the link, for example find a file or display
9653 a mail message.
9655 EXPORT should format the link path for export to one of the export formats.
9656 It should be a function accepting three arguments:
9658 path the path of the link, the text after the prefix (like \"http:\")
9659 desc the description of the link, if any, or a description added by
9660 org-export-normalize-links if there is none
9661 format the export format, a symbol like `html' or `latex' or `ascii'..
9663 The function may use the FORMAT information to return different values
9664 depending on the format. The return value will be put literally into
9665 the exported file. If the return value is nil, this means Org should
9666 do what it normally does with links which do not have EXPORT defined.
9668 Org mode has a built-in default for exporting links. If you are happy with
9669 this default, there is no need to define an export function for the link
9670 type. For a simple example of an export function, see `org-bbdb.el'."
9671 (add-to-list 'org-link-types type t)
9672 (org-make-link-regexps)
9673 (org-element-update-syntax)
9674 (if (assoc type org-link-protocols)
9675 (setcdr (assoc type org-link-protocols) (list follow export))
9676 (push (list type follow export) org-link-protocols)))
9678 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9679 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9681 ;;;###autoload
9682 (defun org-store-link (arg)
9683 "\\<org-mode-map>Store an org-link to the current location.
9684 This link is added to `org-stored-links' and can later be inserted
9685 into an org-buffer with \\[org-insert-link].
9687 For some link types, a prefix arg is interpreted.
9688 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9689 For file links, arg negates `org-context-in-file-links'.
9691 A double prefix arg force skipping storing functions that are not
9692 part of Org's core.
9694 A triple prefix arg force storing a link for each line in the
9695 active region."
9696 (interactive "P")
9697 (org-load-modules-maybe)
9698 (if (and (equal arg '(64)) (org-region-active-p))
9699 (save-excursion
9700 (let ((end (region-end)))
9701 (goto-char (region-beginning))
9702 (set-mark (point))
9703 (while (< (point-at-eol) end)
9704 (move-end-of-line 1) (activate-mark)
9705 (let (current-prefix-arg)
9706 (call-interactively 'org-store-link))
9707 (move-beginning-of-line 2)
9708 (set-mark (point)))))
9709 (org-with-limited-levels
9710 (setq org-store-link-plist nil)
9711 (let (link cpltxt desc description search
9712 txt custom-id agenda-link sfuns sfunsn)
9713 (cond
9715 ;; Store a link using an external link type
9716 ((and (not (equal arg '(16)))
9717 (setq sfuns
9718 (delq
9719 nil (mapcar (lambda (f)
9720 (let (fs) (if (funcall f) (push f fs))))
9721 org-store-link-functions))
9722 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9723 (or (and (cdr sfuns)
9724 (funcall (intern
9725 (completing-read
9726 "Which function for creating the link? "
9727 sfunsn nil t (car sfunsn)))))
9728 (funcall (caar sfuns)))
9729 (setq link (plist-get org-store-link-plist :link)
9730 desc (or (plist-get org-store-link-plist
9731 :description) link))))
9733 ;; Store a link from a source code buffer
9734 ((org-src-edit-buffer-p)
9735 (let (label gc)
9736 (while (or (not label)
9737 (save-excursion
9738 (save-restriction
9739 (widen)
9740 (goto-char (point-min))
9741 (re-search-forward
9742 (regexp-quote (format org-coderef-label-format label))
9743 nil t))))
9744 (when label (message "Label exists already") (sit-for 2))
9745 (setq label (read-string "Code line label: " label)))
9746 (end-of-line 1)
9747 (setq link (format org-coderef-label-format label))
9748 (setq gc (- 79 (length link)))
9749 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9750 (insert link)
9751 (setq link (concat "(" label ")") desc nil)))
9753 ;; We are in the agenda, link to referenced location
9754 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9755 (let ((m (or (get-text-property (point) 'org-hd-marker)
9756 (get-text-property (point) 'org-marker))))
9757 (when m
9758 (org-with-point-at m
9759 (setq agenda-link
9760 (if (org-called-interactively-p 'any)
9761 (call-interactively 'org-store-link)
9762 (org-store-link nil)))))))
9764 ((eq major-mode 'calendar-mode)
9765 (let ((cd (calendar-cursor-to-date)))
9766 (setq link
9767 (format-time-string
9768 (car org-time-stamp-formats)
9769 (apply 'encode-time
9770 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9771 nil nil nil))))
9772 (org-store-link-props :type "calendar" :date cd)))
9774 ((eq major-mode 'help-mode)
9775 (setq link (concat "help:" (save-excursion
9776 (goto-char (point-min))
9777 (looking-at "^[^ ]+")
9778 (match-string 0))))
9779 (org-store-link-props :type "help"))
9781 ((eq major-mode 'w3-mode)
9782 (setq cpltxt (if (and (buffer-name)
9783 (not (string-match "Untitled" (buffer-name))))
9784 (buffer-name)
9785 (url-view-url t))
9786 link (url-view-url t))
9787 (org-store-link-props :type "w3" :url (url-view-url t)))
9789 ((eq major-mode 'image-mode)
9790 (setq cpltxt (concat "file:"
9791 (abbreviate-file-name buffer-file-name))
9792 link cpltxt)
9793 (org-store-link-props :type "image" :file buffer-file-name))
9795 ;; In dired, store a link to the file of the current line
9796 ((derived-mode-p 'dired-mode)
9797 (let ((file (dired-get-filename nil t)))
9798 (setq file (if file
9799 (abbreviate-file-name
9800 (expand-file-name (dired-get-filename nil t)))
9801 ;; otherwise, no file so use current directory.
9802 default-directory))
9803 (setq cpltxt (concat "file:" file)
9804 link cpltxt)))
9806 ((setq search (run-hook-with-args-until-success
9807 'org-create-file-search-functions))
9808 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9809 "::" search))
9810 (setq cpltxt (or description link)))
9812 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9813 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9814 (cond
9815 ;; Store a link using the target at point
9816 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9817 (setq cpltxt
9818 (concat "file:"
9819 (abbreviate-file-name
9820 (buffer-file-name (buffer-base-buffer)))
9821 "::" (match-string 1))
9822 link cpltxt))
9823 ((and (featurep 'org-id)
9824 (or (eq org-id-link-to-org-use-id t)
9825 (and (org-called-interactively-p 'any)
9826 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9827 (and (eq org-id-link-to-org-use-id
9828 'create-if-interactive-and-no-custom-id)
9829 (not custom-id))))
9830 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9831 ;; Store a link using the ID at point
9832 (setq link (condition-case nil
9833 (prog1 (org-id-store-link)
9834 (setq desc (or (plist-get org-store-link-plist
9835 :description)
9836 "")))
9837 (error
9838 ;; Probably before first headline, link only to file
9839 (concat "file:"
9840 (abbreviate-file-name
9841 (buffer-file-name (buffer-base-buffer))))))))
9843 ;; Just link to current headline
9844 (setq cpltxt (concat "file:"
9845 (abbreviate-file-name
9846 (buffer-file-name (buffer-base-buffer)))))
9847 ;; Add a context search string
9848 (when (org-xor org-context-in-file-links arg)
9849 (let* ((ee (org-element-at-point))
9850 (et (org-element-type ee))
9851 (ev (plist-get (cadr ee) :value))
9852 (ek (plist-get (cadr ee) :key))
9853 (eok (and (stringp ek) (string-match "name" ek))))
9854 (setq txt (cond
9855 ((org-at-heading-p) nil)
9856 ((and (eq et 'keyword) eok) ev)
9857 ((org-region-active-p)
9858 (buffer-substring (region-beginning) (region-end)))))
9859 (when (or (null txt) (string-match "\\S-" txt))
9860 (setq cpltxt
9861 (concat cpltxt "::"
9862 (condition-case nil
9863 (org-make-org-heading-search-string txt)
9864 (error "")))
9865 desc (or (and (eq et 'keyword) eok ev)
9866 (nth 4 (ignore-errors (org-heading-components)))
9867 "NONE")))))
9868 (if (string-match "::\\'" cpltxt)
9869 (setq cpltxt (substring cpltxt 0 -2)))
9870 (setq link cpltxt))))
9872 ((buffer-file-name (buffer-base-buffer))
9873 ;; Just link to this file here.
9874 (setq cpltxt (concat "file:"
9875 (abbreviate-file-name
9876 (buffer-file-name (buffer-base-buffer)))))
9877 ;; Add a context string.
9878 (when (org-xor org-context-in-file-links arg)
9879 (setq txt (if (org-region-active-p)
9880 (buffer-substring (region-beginning) (region-end))
9881 (buffer-substring (point-at-bol) (point-at-eol))))
9882 ;; Only use search option if there is some text.
9883 (when (string-match "\\S-" txt)
9884 (setq cpltxt
9885 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9886 desc "NONE")))
9887 (setq link cpltxt))
9889 ((org-called-interactively-p 'interactive)
9890 (user-error "No method for storing a link from this buffer"))
9892 (t (setq link nil)))
9894 ;; We're done setting link and desc, clean up
9895 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9896 (setq link (or link cpltxt)
9897 desc (or desc cpltxt))
9898 (cond ((equal desc "NONE") (setq desc nil))
9899 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9900 (let ((d0 (match-string 3 desc))
9901 (p0 (match-string 5 desc)))
9902 (setq desc
9903 (replace-regexp-in-string
9904 org-bracket-link-regexp
9905 (concat (or p0 d0)
9906 (if (equal (length (match-string 0 desc))
9907 (length desc)) "*" "")) desc)))))
9909 ;; Return the link
9910 (if (not (and (or (org-called-interactively-p 'any)
9911 executing-kbd-macro) link))
9912 (or agenda-link (and link (org-make-link-string link desc)))
9913 (push (list link desc) org-stored-links)
9914 (message "Stored: %s" (or desc link))
9915 (when custom-id
9916 (setq link (concat "file:" (abbreviate-file-name
9917 (buffer-file-name)) "::#" custom-id))
9918 (push (list link desc) org-stored-links))
9919 (car org-stored-links))))))
9921 (defun org-store-link-props (&rest plist)
9922 "Store link properties, extract names and addresses."
9923 (let (x adr)
9924 (when (setq x (plist-get plist :from))
9925 (setq adr (mail-extract-address-components x))
9926 (setq plist (plist-put plist :fromname (car adr)))
9927 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9928 (when (setq x (plist-get plist :to))
9929 (setq adr (mail-extract-address-components x))
9930 (setq plist (plist-put plist :toname (car adr)))
9931 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9932 (let ((from (plist-get plist :from))
9933 (to (plist-get plist :to)))
9934 (when (and from to org-from-is-user-regexp)
9935 (setq plist
9936 (plist-put plist :fromto
9937 (if (string-match org-from-is-user-regexp from)
9938 (concat "to %t")
9939 (concat "from %f"))))))
9940 (setq org-store-link-plist plist))
9942 (defun org-add-link-props (&rest plist)
9943 "Add these properties to the link property list."
9944 (let (key value)
9945 (while plist
9946 (setq key (pop plist) value (pop plist))
9947 (setq org-store-link-plist
9948 (plist-put org-store-link-plist key value)))))
9950 (defun org-email-link-description (&optional fmt)
9951 "Return the description part of an email link.
9952 This takes information from `org-store-link-plist' and formats it
9953 according to FMT (default from `org-email-link-description-format')."
9954 (setq fmt (or fmt org-email-link-description-format))
9955 (let* ((p org-store-link-plist)
9956 (to (plist-get p :toaddress))
9957 (from (plist-get p :fromaddress))
9958 (table
9959 (list
9960 (cons "%c" (plist-get p :fromto))
9961 (cons "%F" (plist-get p :from))
9962 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9963 (cons "%T" (plist-get p :to))
9964 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9965 (cons "%s" (plist-get p :subject))
9966 (cons "%d" (plist-get p :date))
9967 (cons "%m" (plist-get p :message-id)))))
9968 (when (string-match "%c" fmt)
9969 ;; Check if the user wrote this message
9970 (if (and org-from-is-user-regexp from to
9971 (save-match-data (string-match org-from-is-user-regexp from)))
9972 (setq fmt (replace-match "to %t" t t fmt))
9973 (setq fmt (replace-match "from %f" t t fmt))))
9974 (org-replace-escapes fmt table)))
9976 (defun org-make-org-heading-search-string (&optional string)
9977 "Make search string for the current headline or STRING."
9978 (let ((s (or string
9979 (and (derived-mode-p 'org-mode)
9980 (save-excursion
9981 (org-back-to-heading t)
9982 (org-element-property :raw-value (org-element-at-point))))))
9983 (lines org-context-in-file-links))
9984 (or string (setq s (concat "*" s))) ; Add * for headlines
9985 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9986 (when (and string (integerp lines) (> lines 0))
9987 (let ((slines (org-split-string s "\n")))
9988 (when (< lines (length slines))
9989 (setq s (mapconcat
9990 'identity
9991 (reverse (nthcdr (- (length slines) lines)
9992 (reverse slines))) "\n")))))
9993 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9995 (defun org-make-link-string (link &optional description)
9996 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9997 (unless (string-match "\\S-" link)
9998 (error "Empty link"))
9999 (when (and description
10000 (stringp description)
10001 (not (string-match "\\S-" description)))
10002 (setq description nil))
10003 (when (stringp description)
10004 ;; Remove brackets from the description, they are fatal.
10005 (while (string-match "\\[" description)
10006 (setq description (replace-match "{" t t description)))
10007 (while (string-match "\\]" description)
10008 (setq description (replace-match "}" t t description))))
10009 (when (equal link description)
10010 ;; No description needed, it is identical
10011 (setq description nil))
10012 (when (and (not description)
10013 (not (string-match (org-image-file-name-regexp) link))
10014 (not (equal link (org-link-escape link))))
10015 (setq description (org-extract-attributes link)))
10016 (setq link
10017 (cond ((string-match (org-image-file-name-regexp) link) link)
10018 ((string-match org-link-types-re link)
10019 (concat (match-string 1 link)
10020 (org-link-escape (substring link (match-end 1)))))
10021 (t (org-link-escape link))))
10022 (concat "[[" link "]"
10023 (if description (concat "[" description "]") "")
10024 "]"))
10026 (defconst org-link-escape-chars
10027 ;;%20 %5B %5D
10028 '(?\ ?\[ ?\])
10029 "List of characters that should be escaped in a link when stored to Org.
10030 This is the list that is used for internal purposes.")
10032 (defconst org-link-escape-chars-browser
10033 ;;%20 %22
10034 '(?\ ?\")
10035 "List of characters to be escaped before handing over to the browser.
10036 If you consider using this constant then you probably want to use
10037 the function `org-link-escape-browser' instead. See there why
10038 this constant is a candidate to be removed once Org drops support
10039 for Emacs 24.1 and 24.2.")
10041 (defun org-link-escape (text &optional table merge)
10042 "Return percent escaped representation of TEXT.
10043 TEXT is a string with the text to escape.
10044 Optional argument TABLE is a list with characters that should be
10045 escaped. When nil, `org-link-escape-chars' is used.
10046 If optional argument MERGE is set, merge TABLE into
10047 `org-link-escape-chars'."
10048 ;; Don't escape chars in internal links
10049 (if (string-match "^\\*[[:alnum:]]+" text)
10050 text
10051 (cond
10052 ((and table merge)
10053 (mapc (lambda (defchr)
10054 (unless (member defchr table)
10055 (setq table (cons defchr table))))
10056 org-link-escape-chars))
10057 ((null table)
10058 (setq table org-link-escape-chars)))
10059 (mapconcat
10060 (lambda (char)
10061 (if (or (member char table)
10062 (and (or (< char 32) (= char ?\%) (> char 126))
10063 org-url-hexify-p))
10064 (mapconcat (lambda (sequence-element)
10065 (format "%%%.2X" sequence-element))
10066 (or (encode-coding-char char 'utf-8)
10067 (error "Unable to percent escape character: %s"
10068 (char-to-string char))) "")
10069 (char-to-string char))) text "")))
10071 (defun org-link-escape-browser (text)
10072 "Escape some characters before handing over to the browser.
10073 This function is a candidate to be removed together with the
10074 constant `org-link-escape-chars-browser' once Org drops support
10075 for Emacs 24.1 and 24.2. All calls to this function will have to
10076 be replaced with `url-encode-url' which is available since Emacs
10077 24.3.1."
10078 ;; Example with the Org link
10079 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10080 ;; to open the browser with +subject:"Release 8.2" filled into the
10081 ;; query field: In this case the variable TEXT contains the
10082 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10083 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10084 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10085 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10086 (if (fboundp 'url-encode-url)
10087 (url-encode-url text)
10088 (if (org-string-match-p
10089 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10090 text)
10091 (org-link-escape text org-link-escape-chars-browser)
10092 text)))
10094 (defun org-link-unescape (str)
10095 "Unhex hexified Unicode strings as returned from the JavaScript function
10096 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10097 (unless (and (null str) (string= "" str))
10098 (let ((pos 0) (case-fold-search t) unhexed)
10099 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10100 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10101 (setq str (replace-match unhexed t t str))
10102 (setq pos (+ pos (length unhexed))))))
10103 str)
10105 (defun org-link-unescape-compound (hex)
10106 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10107 Note: this function also decodes single byte encodings like
10108 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10109 (save-match-data
10110 (let* ((bytes (cdr (split-string hex "%")))
10111 (ret "")
10112 (eat 0)
10113 (sum 0))
10114 (while bytes
10115 (let* ((val (string-to-number (pop bytes) 16))
10116 (shift-xor
10117 (if (= 0 eat)
10118 (cond
10119 ((>= val 252) (cons 6 252))
10120 ((>= val 248) (cons 5 248))
10121 ((>= val 240) (cons 4 240))
10122 ((>= val 224) (cons 3 224))
10123 ((>= val 192) (cons 2 192))
10124 (t (cons 0 0)))
10125 (cons 6 128))))
10126 (if (>= val 192) (setq eat (car shift-xor)))
10127 (setq val (logxor val (cdr shift-xor)))
10128 (setq sum (+ (lsh sum (car shift-xor)) val))
10129 (if (> eat 0) (setq eat (- eat 1)))
10130 (cond
10131 ((= 0 eat) ;multi byte
10132 (setq ret (concat ret (org-char-to-string sum)))
10133 (setq sum 0))
10134 ((not bytes) ; single byte(s)
10135 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10136 ret)))
10138 (defun org-link-unescape-single-byte-sequence (hex)
10139 "Unhexify hex-encoded single byte character sequences."
10140 (mapconcat (lambda (byte)
10141 (char-to-string (string-to-number byte 16)))
10142 (cdr (split-string hex "%")) ""))
10144 (defun org-xor (a b)
10145 "Exclusive or."
10146 (if a (not b) b))
10148 (defun org-fixup-message-id-for-http (s)
10149 "Replace special characters in a message id, so it can be used in an http query."
10150 (when (string-match "%" s)
10151 (setq s (mapconcat (lambda (c)
10152 (if (eq c ?%)
10153 "%25"
10154 (char-to-string c)))
10155 s "")))
10156 (while (string-match "<" s)
10157 (setq s (replace-match "%3C" t t s)))
10158 (while (string-match ">" s)
10159 (setq s (replace-match "%3E" t t s)))
10160 (while (string-match "@" s)
10161 (setq s (replace-match "%40" t t s)))
10164 (defun org-link-prettify (link)
10165 "Return a human-readable representation of LINK.
10166 The car of LINK must be a raw link.
10167 The cdr of LINK must be either a link description or nil."
10168 (let ((desc (or (cadr link) "<no description>")))
10169 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10170 "<" (car link) ">")))
10172 ;;;###autoload
10173 (defun org-insert-link-global ()
10174 "Insert a link like Org-mode does.
10175 This command can be called in any mode to insert a link in Org-mode syntax."
10176 (interactive)
10177 (org-load-modules-maybe)
10178 (org-run-like-in-org-mode 'org-insert-link))
10180 (defun org-insert-all-links (arg &optional pre post)
10181 "Insert all links in `org-stored-links'.
10182 When a universal prefix, do not delete the links from `org-stored-links'.
10183 When `ARG' is a number, insert the last N link(s).
10184 `PRE' and `POST' are optional arguments to define a string to
10185 prepend or to append."
10186 (interactive "P")
10187 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10188 (links (copy-seq org-stored-links))
10189 (pr (or pre "- "))
10190 (po (or post "\n"))
10191 (cnt 1) l)
10192 (if (null org-stored-links)
10193 (message "No link to insert")
10194 (while (and (or (listp arg) (>= arg cnt))
10195 (setq l (if (listp arg)
10196 (pop links)
10197 (pop org-stored-links))))
10198 (setq cnt (1+ cnt))
10199 (insert pr)
10200 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10201 (insert po)))))
10203 (defun org-insert-last-stored-link (arg)
10204 "Insert the last link stored in `org-stored-links'."
10205 (interactive "p")
10206 (org-insert-all-links arg "" "\n"))
10208 (defun org-link-fontify-links-to-this-file ()
10209 "Fontify links to the current file in `org-stored-links'."
10210 (let ((f (buffer-file-name)) a b)
10211 (setq a (mapcar (lambda(l)
10212 (let ((ll (car l)))
10213 (when (and (string-match "^file:\\(.+\\)::" ll)
10214 (equal f (expand-file-name (match-string 1 ll))))
10215 ll)))
10216 org-stored-links))
10217 (when (featurep 'org-id)
10218 (setq b (mapcar (lambda(l)
10219 (let ((ll (car l)))
10220 (when (and (string-match "^id:\\(.+\\)$" ll)
10221 (equal f (expand-file-name
10222 (or (org-id-find-id-file
10223 (match-string 1 ll)) ""))))
10224 ll)))
10225 org-stored-links)))
10226 (mapcar (lambda(l)
10227 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10228 (delq nil (append a b)))))
10230 (defvar org-link-links-in-this-file nil)
10231 (defun org-insert-link (&optional complete-file link-location default-description)
10232 "Insert a link. At the prompt, enter the link.
10234 Completion can be used to insert any of the link protocol prefixes like
10235 http or ftp in use.
10237 The history can be used to select a link previously stored with
10238 `org-store-link'. When the empty string is entered (i.e. if you just
10239 press RET at the prompt), the link defaults to the most recently
10240 stored link. As SPC triggers completion in the minibuffer, you need to
10241 use M-SPC or C-q SPC to force the insertion of a space character.
10243 You will also be prompted for a description, and if one is given, it will
10244 be displayed in the buffer instead of the link.
10246 If there is already a link at point, this command will allow you to edit link
10247 and description parts.
10249 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10250 be selected using completion. The path to the file will be relative to the
10251 current directory if the file is in the current directory or a subdirectory.
10252 Otherwise, the link will be the absolute path as completed in the minibuffer
10253 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10254 option `org-link-file-path-type'.
10256 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10257 the current directory or below.
10259 With three \\[universal-argument] prefixes, negate the meaning of
10260 `org-keep-stored-link-after-insertion'.
10262 If `org-make-link-description-function' is non-nil, this function will be
10263 called with the link target, and the result will be the default
10264 link description.
10266 If the LINK-LOCATION parameter is non-nil, this value will be
10267 used as the link location instead of reading one interactively.
10269 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10270 be used as the default description."
10271 (interactive "P")
10272 (let* ((wcf (current-window-configuration))
10273 (origbuf (current-buffer))
10274 (region (if (org-region-active-p)
10275 (buffer-substring (region-beginning) (region-end))))
10276 (remove (and region (list (region-beginning) (region-end))))
10277 (desc region)
10278 tmphist ; byte-compile incorrectly complains about this
10279 (link link-location)
10280 (abbrevs org-link-abbrev-alist-local)
10281 entry file all-prefixes auto-desc)
10282 (cond
10283 (link-location) ; specified by arg, just use it.
10284 ((org-in-regexp org-bracket-link-regexp 1)
10285 ;; We do have a link at point, and we are going to edit it.
10286 (setq remove (list (match-beginning 0) (match-end 0)))
10287 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10288 (setq link (read-string "Link: "
10289 (org-link-unescape
10290 (org-match-string-no-properties 1)))))
10291 ((or (org-in-regexp org-angle-link-re)
10292 (org-in-regexp org-plain-link-re))
10293 ;; Convert to bracket link
10294 (setq remove (list (match-beginning 0) (match-end 0))
10295 link (read-string "Link: "
10296 (org-remove-angle-brackets (match-string 0)))))
10297 ((member complete-file '((4) (16)))
10298 ;; Completing read for file names.
10299 (setq link (org-file-complete-link complete-file)))
10301 ;; Read link, with completion for stored links.
10302 (org-link-fontify-links-to-this-file)
10303 (org-switch-to-buffer-other-window "*Org Links*")
10304 (with-current-buffer "*Org Links*"
10305 (erase-buffer)
10306 (insert "Insert a link.
10307 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10308 (when org-stored-links
10309 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10310 (insert (mapconcat 'org-link-prettify
10311 (reverse org-stored-links) "\n")))
10312 (goto-char (point-min)))
10313 (let ((cw (selected-window)))
10314 (select-window (get-buffer-window "*Org Links*" 'visible))
10315 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10316 (unless (pos-visible-in-window-p (point-max))
10317 (org-fit-window-to-buffer))
10318 (and (window-live-p cw) (select-window cw)))
10319 ;; Fake a link history, containing the stored links.
10320 (setq tmphist (append (mapcar 'car org-stored-links)
10321 org-insert-link-history))
10322 (setq all-prefixes (append (mapcar 'car abbrevs)
10323 (mapcar 'car org-link-abbrev-alist)
10324 org-link-types))
10325 (unwind-protect
10326 (progn
10327 (setq link
10328 (org-completing-read
10329 "Link: "
10330 (append
10331 (mapcar (lambda (x) (concat x ":"))
10332 all-prefixes)
10333 (mapcar 'car org-stored-links))
10334 nil nil nil
10335 'tmphist
10336 (caar org-stored-links)))
10337 (if (not (string-match "\\S-" link))
10338 (user-error "No link selected"))
10339 (mapc (lambda(l)
10340 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10341 org-stored-links)
10342 (if (or (member link all-prefixes)
10343 (and (equal ":" (substring link -1))
10344 (member (substring link 0 -1) all-prefixes)
10345 (setq link (substring link 0 -1))))
10346 (setq link (with-current-buffer origbuf
10347 (org-link-try-special-completion link)))))
10348 (set-window-configuration wcf)
10349 (kill-buffer "*Org Links*"))
10350 (setq entry (assoc link org-stored-links))
10351 (or entry (push link org-insert-link-history))
10352 (setq desc (or desc (nth 1 entry)))))
10354 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10355 (not org-keep-stored-link-after-insertion))
10356 (setq org-stored-links (delq (assoc link org-stored-links)
10357 org-stored-links)))
10359 (if (and (string-match org-plain-link-re link)
10360 (not (string-match org-ts-regexp link)))
10361 ;; URL-like link, normalize the use of angular brackets.
10362 (setq link (org-remove-angle-brackets link)))
10364 ;; Check if we are linking to the current file with a search
10365 ;; option If yes, simplify the link by using only the search
10366 ;; option.
10367 (when (and buffer-file-name
10368 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10369 (let* ((path (match-string 1 link))
10370 (case-fold-search nil)
10371 (search (match-string 2 link)))
10372 (save-match-data
10373 (if (equal (file-truename buffer-file-name) (file-truename path))
10374 ;; We are linking to this same file, with a search option
10375 (setq link search)))))
10377 ;; Check if we can/should use a relative path. If yes, simplify the link
10378 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10379 (let* ((type (match-string 1 link))
10380 (path (match-string 2 link))
10381 (origpath path)
10382 (case-fold-search nil))
10383 (cond
10384 ((or (eq org-link-file-path-type 'absolute)
10385 (equal complete-file '(16)))
10386 (setq path (abbreviate-file-name (expand-file-name path))))
10387 ((eq org-link-file-path-type 'noabbrev)
10388 (setq path (expand-file-name path)))
10389 ((eq org-link-file-path-type 'relative)
10390 (setq path (file-relative-name path)))
10392 (save-match-data
10393 (if (string-match (concat "^" (regexp-quote
10394 (expand-file-name
10395 (file-name-as-directory
10396 default-directory))))
10397 (expand-file-name path))
10398 ;; We are linking a file with relative path name.
10399 (setq path (substring (expand-file-name path)
10400 (match-end 0)))
10401 (setq path (abbreviate-file-name (expand-file-name path)))))))
10402 (setq link (concat type path))
10403 (if (equal desc origpath)
10404 (setq desc path))))
10406 (if org-make-link-description-function
10407 (setq desc
10408 (or (condition-case nil
10409 (funcall org-make-link-description-function link desc)
10410 (error (progn (message "Can't get link description from `%s'"
10411 (symbol-name org-make-link-description-function))
10412 (sit-for 2) nil)))
10413 (read-string "Description: " default-description)))
10414 (if default-description (setq desc default-description)
10415 (setq desc (or (and auto-desc desc)
10416 (read-string "Description: " desc)))))
10418 (unless (string-match "\\S-" desc) (setq desc nil))
10419 (if remove (apply 'delete-region remove))
10420 (insert (org-make-link-string link desc))))
10422 (defun org-link-try-special-completion (type)
10423 "If there is completion support for link type TYPE, offer it."
10424 (let ((fun (intern (concat "org-" type "-complete-link"))))
10425 (if (functionp fun)
10426 (funcall fun)
10427 (read-string "Link (no completion support): " (concat type ":")))))
10429 (defun org-file-complete-link (&optional arg)
10430 "Create a file link using completion."
10431 (let (file link)
10432 (setq file (org-iread-file-name "File: "))
10433 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10434 (pwd1 (file-name-as-directory (abbreviate-file-name
10435 (expand-file-name ".")))))
10436 (cond
10437 ((equal arg '(16))
10438 (setq link (concat
10439 "file:"
10440 (abbreviate-file-name (expand-file-name file)))))
10441 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10442 (setq link (concat "file:" (match-string 1 file))))
10443 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10444 (expand-file-name file))
10445 (setq link (concat
10446 "file:" (match-string 1 (expand-file-name file)))))
10447 (t (setq link (concat "file:" file)))))
10448 link))
10450 (defun org-iread-file-name (&rest args)
10451 "Read-file-name using `ido-mode' speedup if available.
10452 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10453 See `read-file-name' for a description of parameters."
10454 (org-without-partial-completion
10455 (if (and org-completion-use-ido
10456 (fboundp 'ido-read-file-name)
10457 (boundp 'ido-mode) ido-mode
10458 (listp (second args)))
10459 (let ((ido-enter-matching-directory nil))
10460 (apply 'ido-read-file-name args))
10461 (apply 'read-file-name args))))
10463 (defun org-completing-read (&rest args)
10464 "Completing-read with SPACE being a normal character."
10465 (let ((enable-recursive-minibuffers t)
10466 (minibuffer-local-completion-map
10467 (copy-keymap minibuffer-local-completion-map)))
10468 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10469 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10470 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10471 (apply 'org-icompleting-read args)))
10473 (defun org-completing-read-no-i (&rest args)
10474 (let (org-completion-use-ido org-completion-use-iswitchb)
10475 (apply 'org-completing-read args)))
10477 (defun org-iswitchb-completing-read (prompt choices &rest args)
10478 "Use iswitch as a completing-read replacement to choose from choices.
10479 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10480 from."
10481 (let* ((iswitchb-use-virtual-buffers nil)
10482 (iswitchb-make-buflist-hook
10483 (lambda ()
10484 (setq iswitchb-temp-buflist choices))))
10485 (iswitchb-read-buffer prompt)))
10487 (defun org-icompleting-read (&rest args)
10488 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10489 (org-without-partial-completion
10490 (if (and org-completion-use-ido
10491 (fboundp 'ido-completing-read)
10492 (boundp 'ido-mode) ido-mode
10493 (listp (second args)))
10494 (let ((ido-enter-matching-directory nil))
10495 (apply 'ido-completing-read (concat (car args))
10496 (if (consp (car (nth 1 args)))
10497 (mapcar 'car (nth 1 args))
10498 (nth 1 args))
10499 (cddr args)))
10500 (if (and org-completion-use-iswitchb
10501 (boundp 'iswitchb-mode) iswitchb-mode
10502 (listp (second args)))
10503 (apply 'org-iswitchb-completing-read (concat (car args))
10504 (if (consp (car (nth 1 args)))
10505 (mapcar 'car (nth 1 args))
10506 (nth 1 args))
10507 (cddr args))
10508 (apply 'completing-read args)))))
10510 (defun org-extract-attributes (s)
10511 "Extract the attributes cookie from a string and set as text property."
10512 (let (a attr (start 0) key value)
10513 (save-match-data
10514 (when (string-match "{{\\([^}]+\\)}}$" s)
10515 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10516 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10517 (setq key (match-string 1 a) value (match-string 2 a)
10518 start (match-end 0)
10519 attr (plist-put attr (intern key) value))))
10520 (org-add-props s nil 'org-attr attr))
10523 ;;; Opening/following a link
10525 (defvar org-link-search-failed nil)
10527 (defvar org-open-link-functions nil
10528 "Hook for functions finding a plain text link.
10529 These functions must take a single argument, the link content.
10530 They will be called for links that look like [[link text][description]]
10531 when LINK TEXT does not have a protocol like \"http:\" and does not look
10532 like a filename (e.g. \"./blue.png\").
10534 These functions will be called *before* Org attempts to resolve the
10535 link by doing text searches in the current buffer - so if you want a
10536 link \"[[target]]\" to still find \"<<target>>\", your function should
10537 handle this as a special case.
10539 When the function does handle the link, it must return a non-nil value.
10540 If it decides that it is not responsible for this link, it must return
10541 nil to indicate that that Org-mode can continue with other options
10542 like exact and fuzzy text search.")
10544 (defun org-next-link (&optional search-backward)
10545 "Move forward to the next link.
10546 If the link is in hidden text, expose it."
10547 (interactive "P")
10548 (when (and org-link-search-failed (eq this-command last-command))
10549 (goto-char (point-min))
10550 (message "Link search wrapped back to beginning of buffer"))
10551 (setq org-link-search-failed nil)
10552 (let* ((pos (point))
10553 (ct (org-context))
10554 (a (assoc :link ct))
10555 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10556 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10557 ((looking-at org-any-link-re)
10558 ;; Don't stay stuck at link without an org-link face
10559 (forward-char (if search-backward -1 1))))
10560 (if (funcall srch-fun org-any-link-re nil t)
10561 (progn
10562 (goto-char (match-beginning 0))
10563 (if (outline-invisible-p) (org-show-context)))
10564 (goto-char pos)
10565 (setq org-link-search-failed t)
10566 (message "No further link found"))))
10568 (defun org-previous-link ()
10569 "Move backward to the previous link.
10570 If the link is in hidden text, expose it."
10571 (interactive)
10572 (funcall 'org-next-link t))
10574 (defun org-translate-link (s)
10575 "Translate a link string if a translation function has been defined."
10576 (if (and org-link-translation-function
10577 (fboundp org-link-translation-function)
10578 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10579 (progn
10580 (setq s (funcall org-link-translation-function
10581 (match-string 1 s) (match-string 2 s)))
10582 (concat (car s) ":" (cdr s)))
10585 (defun org-translate-link-from-planner (type path)
10586 "Translate a link from Emacs Planner syntax so that Org can follow it.
10587 This is still an experimental function, your mileage may vary."
10588 (cond
10589 ((member type '("http" "https" "news" "ftp"))
10590 ;; standard Internet links are the same.
10591 nil)
10592 ((and (equal type "irc") (string-match "^//" path))
10593 ;; Planner has two / at the beginning of an irc link, we have 1.
10594 ;; We should have zero, actually....
10595 (setq path (substring path 1)))
10596 ((and (equal type "lisp") (string-match "^/" path))
10597 ;; Planner has a slash, we do not.
10598 (setq type "elisp" path (substring path 1)))
10599 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10600 ;; A typical message link. Planner has the id after the final slash,
10601 ;; we separate it with a hash mark
10602 (setq path (concat (match-string 1 path) "#"
10603 (org-remove-angle-brackets (match-string 2 path))))))
10604 (cons type path))
10606 (defun org-find-file-at-mouse (ev)
10607 "Open file link or URL at mouse."
10608 (interactive "e")
10609 (mouse-set-point ev)
10610 (org-open-at-point 'in-emacs))
10612 (defun org-open-at-mouse (ev)
10613 "Open file link or URL at mouse.
10614 See the docstring of `org-open-file' for details."
10615 (interactive "e")
10616 (mouse-set-point ev)
10617 (if (eq major-mode 'org-agenda-mode)
10618 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10619 (org-open-at-point))
10621 (defvar org-window-config-before-follow-link nil
10622 "The window configuration before following a link.
10623 This is saved in case the need arises to restore it.")
10625 (defvar org-open-link-marker (make-marker)
10626 "Marker pointing to the location where `org-open-at-point' was called.")
10628 ;;;###autoload
10629 (defun org-open-at-point-global ()
10630 "Follow a link like Org-mode does.
10631 This command can be called in any mode to follow a link that has
10632 Org-mode syntax."
10633 (interactive)
10634 (org-run-like-in-org-mode 'org-open-at-point))
10636 ;;;###autoload
10637 (defun org-open-link-from-string (s &optional arg reference-buffer)
10638 "Open a link in the string S, as if it was in Org-mode."
10639 (interactive "sLink: \nP")
10640 (let ((reference-buffer (or reference-buffer (current-buffer))))
10641 (with-temp-buffer
10642 (let ((org-inhibit-startup (not reference-buffer)))
10643 (org-mode)
10644 (insert s)
10645 (goto-char (point-min))
10646 (when reference-buffer
10647 (setq org-link-abbrev-alist-local
10648 (with-current-buffer reference-buffer
10649 org-link-abbrev-alist-local)))
10650 (org-open-at-point arg reference-buffer)))))
10652 (defvar org-open-at-point-functions nil
10653 "Hook that is run when following a link at point.
10655 Functions in this hook must return t if they identify and follow
10656 a link at point. If they don't find anything interesting at point,
10657 they must return nil.")
10659 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10660 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10661 (defun org-open-at-point (&optional arg reference-buffer)
10662 "Open link, timestamp, footnote or tags at point.
10664 When point is on a link, follow it. Normally, files will be
10665 opened by an appropriate application. If the optional prefix
10666 argument ARG is non-nil, Emacs will visit the file. With
10667 a double prefix argument, try to open outside of Emacs, in the
10668 application the system uses for this file type.
10670 When point is on a timestamp, open the agenda at the day
10671 specified.
10673 When point is a footnote definition, move to the first reference
10674 found. If it is on a reference, move to the associated
10675 definition.
10677 When point is on a headline, display a list of every link in the
10678 entry, so it is possible to pick one, or all, of them. If point
10679 is on a tag, call `org-tags-view' instead.
10681 When optional argument REFERENCE-BUFFER is non-nil, it should
10682 specify a buffer from where the link search should happen. This
10683 is used internally by `org-open-link-from-string'.
10685 On top of syntactically correct links, this function will open
10686 the link at point in comments or comment blocks and the first
10687 link in a property drawer line."
10688 (interactive "P")
10689 ;; On a code block, open block's results.
10690 (unless (call-interactively 'org-babel-open-src-block-result)
10691 (org-load-modules-maybe)
10692 (move-marker org-open-link-marker (point))
10693 (setq org-window-config-before-follow-link (current-window-configuration))
10694 (org-remove-occur-highlights nil nil t)
10695 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10696 (let* ((context (org-element-context)) type value)
10697 ;; On an unsupported type, check if point is contained within
10698 ;; a support one.
10699 (while (and (not (memq (setq type (org-element-type context))
10700 '(comment comment-block
10701 headline inlinetask link
10702 footnote-definition footnote-reference
10703 node-property timestamp)))
10704 (setq context (org-element-property :parent context))))
10705 (setq value (org-element-property :value context))
10706 (cond
10707 ;; Blank lines at the beginning of buffer: bail out.
10708 ((not context) (user-error "No link found"))
10709 ;; Exception n°1: links in property drawers
10710 ((eq type 'node-property)
10711 (org-open-link-from-string
10712 (and (string-match org-any-link-re value)
10713 (match-string-no-properties 0 value))))
10714 ;; Exception n°2: links in comments.
10715 ((memq type '(comment comment-block))
10716 (save-excursion
10717 (skip-chars-forward "\\S-" (point-at-eol))
10718 (let ((string-rear (replace-regexp-in-string
10719 "^[ \t]*# [ \t]*" ""
10720 (buffer-substring (point) (line-beginning-position))))
10721 (string-front (buffer-substring (point) (line-end-position))))
10722 (with-temp-buffer
10723 (let ((org-inhibit-startup t)) (org-mode))
10724 (insert value)
10725 (goto-char (point-min))
10726 (when (and (search-forward string-rear nil t)
10727 (search-forward string-front (line-end-position) t))
10728 (goto-char (match-beginning 0))
10729 (org-open-at-point)
10730 (when (string= string-rear "") (forward-char)))))))
10731 ;; On a headline or an inlinetask, but not on a timestamp,
10732 ;; a link, a footnote reference or on tags.
10733 ((and (memq type '(headline inlinetask))
10734 ;; Not on tags.
10735 (progn (save-excursion (beginning-of-line)
10736 (looking-at org-complex-heading-regexp))
10737 (or (not (match-beginning 5))
10738 (< (point) (match-beginning 5)))))
10739 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10740 (links (car data))
10741 (links-end (cdr data)))
10742 (if links
10743 (dolist (link (if (stringp links) (list links) links))
10744 (search-forward link nil links-end)
10745 (goto-char (match-beginning 0))
10746 (org-open-at-point))
10747 (require 'org-attach)
10748 (org-attach-reveal 'if-exists))))
10749 ;; Do nothing on white spaces after an object, unless point
10750 ;; is right after it.
10751 ((> (point)
10752 (save-excursion
10753 (goto-char (org-element-property :end context))
10754 (skip-chars-backward " \t")
10755 (point)))
10756 (user-error "No link found"))
10757 ((eq type 'timestamp) (org-follow-timestamp-link))
10758 ;; On tags within a headline or an inlinetask.
10759 ((and (memq type '(headline inlinetask))
10760 (progn (save-excursion (beginning-of-line)
10761 (looking-at org-complex-heading-regexp))
10762 (and (match-beginning 5)
10763 (>= (point) (match-beginning 5)))))
10764 (org-tags-view arg (substring (match-string 5) 0 -1)))
10765 ((eq type 'link)
10766 (let ((type (org-element-property :type context))
10767 (path (org-link-unescape (org-element-property :path context))))
10768 ;; Switch back to REFERENCE-BUFFER needed when called in
10769 ;; a temporary buffer through `org-open-link-from-string'.
10770 (with-current-buffer (or reference-buffer (current-buffer))
10771 (cond
10772 ((equal type "file")
10773 (if (string-match "[*?{]" (file-name-nondirectory path))
10774 (dired path)
10775 ;; Look into `org-link-protocols' in order to find
10776 ;; a DEDICATED-FUNCTION to open file. The function
10777 ;; will be applied on raw link instead of parsed
10778 ;; link due to the limitation in `org-add-link-type'
10779 ;; ("open" function called with a single argument).
10780 ;; If no such function is found, fallback to
10781 ;; `org-open-file'.
10783 ;; Note : "file+emacs" and "file+sys" types are
10784 ;; hard-coded in order to escape the previous
10785 ;; limitation.
10786 (let* ((option (org-element-property :search-option context))
10787 (app (org-element-property :application context))
10788 (dedicated-function
10789 (nth 1 (assoc app org-link-protocols))))
10790 (if dedicated-function
10791 (funcall dedicated-function
10792 (concat path
10793 (and option (concat "::" option))))
10794 (apply 'org-open-file
10795 path
10796 (cond (arg)
10797 ((equal app "emacs") 'emacs)
10798 ((equal app "sys") 'system))
10799 (cond ((not option) nil)
10800 ((org-string-match-p "\\`[0-9]+\\'" option)
10801 (list (string-to-number option)))
10802 (t (list nil
10803 (org-link-unescape option)))))))))
10804 ((assoc type org-link-protocols)
10805 (funcall (nth 1 (assoc type org-link-protocols)) path))
10806 ((equal type "help")
10807 (let ((f-or-v (intern path)))
10808 (cond ((fboundp f-or-v) (describe-function f-or-v))
10809 ((boundp f-or-v) (describe-variable f-or-v))
10810 (t (error "Not a known function or variable")))))
10811 ((member type '("http" "https" "ftp" "mailto" "news"))
10812 (browse-url (org-link-escape-browser (concat type ":" path))))
10813 ((equal type "doi")
10814 (browse-url
10815 (org-link-escape-browser (concat org-doi-server-url path))))
10816 ((equal type "message") (browse-url (concat type ":" path)))
10817 ((equal type "shell")
10818 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10819 (cmd path))
10820 (if (or (and (org-string-nw-p
10821 org-confirm-shell-link-not-regexp)
10822 (string-match
10823 org-confirm-shell-link-not-regexp cmd))
10824 (not org-confirm-shell-link-function)
10825 (funcall org-confirm-shell-link-function
10826 (format "Execute \"%s\" in shell? "
10827 (org-add-props cmd nil
10828 'face 'org-warning))))
10829 (progn
10830 (message "Executing %s" cmd)
10831 (shell-command cmd buf)
10832 (when (featurep 'midnight)
10833 (setq clean-buffer-list-kill-buffer-names
10834 (cons buf
10835 clean-buffer-list-kill-buffer-names))))
10836 (user-error "Abort"))))
10837 ((equal type "elisp")
10838 (let ((cmd path))
10839 (if (or (and (org-string-nw-p
10840 org-confirm-elisp-link-not-regexp)
10841 (org-string-match-p
10842 org-confirm-elisp-link-not-regexp cmd))
10843 (not org-confirm-elisp-link-function)
10844 (funcall org-confirm-elisp-link-function
10845 (format "Execute \"%s\" as elisp? "
10846 (org-add-props cmd nil
10847 'face 'org-warning))))
10848 (message "%s => %s" cmd
10849 (if (eq (string-to-char cmd) ?\()
10850 (eval (read cmd))
10851 (call-interactively (read cmd))))
10852 (user-error "Abort"))))
10853 ((equal type "id")
10854 (require 'ord-id)
10855 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10856 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10857 (unless (run-hook-with-args-until-success
10858 'org-open-link-functions path)
10859 (if (not arg) (org-mark-ring-push)
10860 (switch-to-buffer-other-window
10861 (org-get-buffer-for-internal-link (current-buffer))))
10862 (let ((cmd `(org-link-search
10863 ,(if (member type '("custom-id" "coderef"))
10864 (org-element-property :raw-link context)
10865 path)
10866 ,(cond ((equal arg '(4)) 'occur)
10867 ((equal arg '(16)) 'org-occur))
10868 ,(org-element-property :begin context))))
10869 (condition-case nil
10870 (let ((org-link-search-inhibit-query t))
10871 (eval cmd))
10872 (error (progn (widen) (eval cmd)))))))
10873 (t (browse-url-at-point))))))
10874 ;; On a footnote reference or at a footnote definition's label.
10875 ((or (eq type 'footnote-reference)
10876 (and (eq type 'footnote-definition)
10877 (save-excursion
10878 ;; Do not validate action when point is on the
10879 ;; spaces right after the footnote label, in
10880 ;; order to be on par with behaviour on links.
10881 (skip-chars-forward " \t")
10882 (let ((begin
10883 (org-element-property :contents-begin context)))
10884 (if begin (< (point) begin)
10885 (= (org-element-property :post-affiliated context)
10886 (line-beginning-position)))))))
10887 (org-footnote-action))
10888 (t (user-error "No link found")))))
10889 (move-marker org-open-link-marker nil)
10890 (run-hook-with-args 'org-follow-link-hook)))
10892 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10893 "Offer links in the current entry and return the selected link.
10894 If there is only one link, return it.
10895 If NTH is an integer, return the NTH link found.
10896 If ZERO is a string, check also this string for a link, and if
10897 there is one, return it."
10898 (with-current-buffer buffer
10899 (save-excursion
10900 (save-restriction
10901 (widen)
10902 (goto-char marker)
10903 (let ((cnt ?0)
10904 (in-emacs (if (integerp nth) nil nth))
10905 have-zero end links link c)
10906 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10907 (push (match-string 0 zero) links)
10908 (setq cnt (1- cnt) have-zero t))
10909 (save-excursion
10910 (org-back-to-heading t)
10911 (setq end (save-excursion (outline-next-heading) (point)))
10912 (while (re-search-forward org-any-link-re end t)
10913 (push (match-string 0) links))
10914 (setq links (org-uniquify (reverse links))))
10915 (cond
10916 ((null links)
10917 (message "No links"))
10918 ((equal (length links) 1)
10919 (setq link (car links)))
10920 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10921 (setq link (nth (if have-zero nth (1- nth)) links)))
10922 (t ; we have to select a link
10923 (save-excursion
10924 (save-window-excursion
10925 (delete-other-windows)
10926 (with-output-to-temp-buffer "*Select Link*"
10927 (mapc (lambda (l)
10928 (if (not (string-match org-bracket-link-regexp l))
10929 (princ (format "[%c] %s\n" (incf cnt)
10930 (org-remove-angle-brackets l)))
10931 (if (match-end 3)
10932 (princ (format "[%c] %s (%s)\n" (incf cnt)
10933 (match-string 3 l) (match-string 1 l)))
10934 (princ (format "[%c] %s\n" (incf cnt)
10935 (match-string 1 l))))))
10936 links))
10937 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10938 (message "Select link to open, RET to open all:")
10939 (setq c (read-char-exclusive))
10940 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10941 (when (equal c ?q) (user-error "Abort"))
10942 (if (equal c ?\C-m)
10943 (setq link links)
10944 (setq nth (- c ?0))
10945 (if have-zero (setq nth (1+ nth)))
10946 (unless (and (integerp nth) (>= (length links) nth))
10947 (user-error "Invalid link selection"))
10948 (setq link (nth (1- nth) links)))))
10949 (cons link end))))))
10951 ;; TODO: These functions are deprecated since `org-open-at-point'
10952 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10953 (defun org-open-file-with-system (path)
10954 "Open file at PATH using the system way of opening it."
10955 (org-open-file path 'system))
10956 (defun org-open-file-with-emacs (path)
10957 "Open file at PATH in Emacs."
10958 (org-open-file path 'emacs))
10961 ;;; File search
10963 (defvar org-create-file-search-functions nil
10964 "List of functions to construct the right search string for a file link.
10965 These functions are called in turn with point at the location to
10966 which the link should point.
10968 A function in the hook should first test if it would like to
10969 handle this file type, for example by checking the `major-mode'
10970 or the file extension. If it decides not to handle this file, it
10971 should just return nil to give other functions a chance. If it
10972 does handle the file, it must return the search string to be used
10973 when following the link. The search string will be part of the
10974 file link, given after a double colon, and `org-open-at-point'
10975 will automatically search for it. If special measures must be
10976 taken to make the search successful, another function should be
10977 added to the companion hook `org-execute-file-search-functions',
10978 which see.
10980 A function in this hook may also use `setq' to set the variable
10981 `description' to provide a suggestion for the descriptive text to
10982 be used for this link when it gets inserted into an Org-mode
10983 buffer with \\[org-insert-link].")
10985 (defvar org-execute-file-search-functions nil
10986 "List of functions to execute a file search triggered by a link.
10988 Functions added to this hook must accept a single argument, the
10989 search string that was part of the file link, the part after the
10990 double colon. The function must first check if it would like to
10991 handle this search, for example by checking the `major-mode' or
10992 the file extension. If it decides not to handle this search, it
10993 should just return nil to give other functions a chance. If it
10994 does handle the search, it must return a non-nil value to keep
10995 other functions from trying.
10997 Each function can access the current prefix argument through the
10998 variable `current-prefix-arg'. Note that a single prefix is used
10999 to force opening a link in Emacs, so it may be good to only use a
11000 numeric or double prefix to guide the search function.
11002 In case this is needed, a function in this hook can also restore
11003 the window configuration before `org-open-at-point' was called using:
11005 (set-window-configuration org-window-config-before-follow-link)")
11007 (defun org-link-search (s &optional type avoid-pos stealth)
11008 "Search for a link search option.
11009 If S is surrounded by forward slashes, it is interpreted as a
11010 regular expression. In org-mode files, this will create an `org-occur'
11011 sparse tree. In ordinary files, `occur' will be used to list matches.
11012 If the current buffer is in `dired-mode', grep will be used to search
11013 in all files. If AVOID-POS is given, ignore matches near that position.
11015 When optional argument STEALTH is non-nil, do not modify
11016 visibility around point, thus ignoring
11017 `org-show-hierarchy-above', `org-show-following-heading' and
11018 `org-show-siblings' variables."
11019 (let ((case-fold-search t)
11020 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
11021 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
11022 (append '(("") (" ") ("\t") ("\n"))
11023 org-emphasis-alist)
11024 "\\|") "\\)"))
11025 (pos (point))
11026 (pre nil) (post nil)
11027 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
11028 (cond
11029 ;; First check if there are any special search functions
11030 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11031 ;; Now try the builtin stuff
11032 ((and (equal (string-to-char s0) ?#)
11033 (> (length s0) 1)
11034 (save-excursion
11035 (goto-char (point-min))
11036 (and
11037 (re-search-forward
11038 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
11039 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
11040 (setq type 'dedicated
11041 pos (match-beginning 0))))
11042 ;; There is an exact target for this
11043 (goto-char pos)
11044 (org-back-to-heading t)))
11045 ((save-excursion
11046 (goto-char (point-min))
11047 (and
11048 (re-search-forward
11049 (concat "<<" (regexp-quote s0) ">>") nil t)
11050 (setq type 'dedicated
11051 pos (match-beginning 0))))
11052 ;; There is an exact target for this
11053 (goto-char pos))
11054 ((save-excursion
11055 (goto-char (point-min))
11056 (and
11057 (re-search-forward
11058 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11059 (setq type 'dedicated pos (match-beginning 0))))
11060 ;; Found an element with a matching #+name affiliated keyword.
11061 (goto-char pos))
11062 ((and (string-match "^(\\(.*\\))$" s0)
11063 (save-excursion
11064 (goto-char (point-min))
11065 (and
11066 (re-search-forward
11067 (concat "[^[]" (regexp-quote
11068 (format org-coderef-label-format
11069 (match-string 1 s0))))
11070 nil t)
11071 (setq type 'dedicated
11072 pos (1+ (match-beginning 0))))))
11073 ;; There is a coderef target for this
11074 (goto-char pos))
11075 ((string-match "^/\\(.*\\)/$" s)
11076 ;; A regular expression
11077 (cond
11078 ((derived-mode-p 'org-mode)
11079 (org-occur (match-string 1 s)))
11080 (t (org-do-occur (match-string 1 s)))))
11081 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11082 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11083 (goto-char (point-min))
11084 (cond
11085 ((let (case-fold-search)
11086 (re-search-forward (format org-complex-heading-regexp-format
11087 (regexp-quote s))
11088 nil t))
11089 ;; OK, found a match
11090 (setq type 'dedicated)
11091 (goto-char (match-beginning 0)))
11092 ((and (not org-link-search-inhibit-query)
11093 (eq org-link-search-must-match-exact-headline 'query-to-create)
11094 (y-or-n-p "No match - create this as a new heading? "))
11095 (goto-char (point-max))
11096 (or (bolp) (newline))
11097 (insert "* " s "\n")
11098 (beginning-of-line 0))
11100 (goto-char pos)
11101 (error "No match"))))
11103 ;; A normal search string
11104 (when (equal (string-to-char s) ?*)
11105 ;; Anchor on headlines, post may include tags.
11106 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11107 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11108 s (substring s 1)))
11109 (remove-text-properties
11110 0 (length s)
11111 '(face nil mouse-face nil keymap nil fontified nil) s)
11112 ;; Make a series of regular expressions to find a match
11113 (setq words (org-split-string s "[ \n\r\t]+")
11115 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11116 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11117 "\\)" markers)
11118 re2a_ (concat "\\(" (mapconcat 'downcase words
11119 "[ \t\r\n]+") "\\)[ \t\r\n]")
11120 re2a (concat "[ \t\r\n]" re2a_)
11121 re4_ (concat "\\(" (mapconcat 'downcase words
11122 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11123 re4 (concat "[^a-zA-Z_]" re4_)
11125 re1 (concat pre re2 post)
11126 re3 (concat pre (if pre re4_ re4) post)
11127 re5 (concat pre ".*" re4)
11128 re2 (concat pre re2)
11129 re2a (concat pre (if pre re2a_ re2a))
11130 re4 (concat pre (if pre re4_ re4))
11131 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11132 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11133 re5 "\\)"))
11134 (cond
11135 ((eq type 'org-occur) (org-occur reall))
11136 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11137 (t (goto-char (point-min))
11138 (setq type 'fuzzy)
11139 (if (or (and (org-search-not-self 1 re0 nil t)
11140 (setq type 'dedicated))
11141 (org-search-not-self 1 re1 nil t)
11142 (org-search-not-self 1 re2 nil t)
11143 (org-search-not-self 1 re2a nil t)
11144 (org-search-not-self 1 re3 nil t)
11145 (org-search-not-self 1 re4 nil t)
11146 (org-search-not-self 1 re5 nil t))
11147 (goto-char (match-beginning 1))
11148 (goto-char pos)
11149 (error "No match"))))))
11150 (and (derived-mode-p 'org-mode)
11151 (not stealth)
11152 (org-show-context 'link-search))
11153 type))
11155 (defun org-search-not-self (group &rest args)
11156 "Execute `re-search-forward', but only accept matches that do not
11157 enclose the position of `org-open-link-marker'."
11158 (let ((m org-open-link-marker))
11159 (catch 'exit
11160 (while (apply 're-search-forward args)
11161 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11162 (goto-char (match-end group))
11163 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11164 (> (match-beginning 0) (marker-position m))
11165 (< (match-end 0) (marker-position m)))
11166 (save-match-data
11167 (or (not (org-in-regexp
11168 org-bracket-link-analytic-regexp 1))
11169 (not (match-end 4)) ; no description
11170 (and (<= (match-beginning 4) (point))
11171 (>= (match-end 4) (point))))))
11172 (throw 'exit (point))))))))
11174 (defun org-get-buffer-for-internal-link (buffer)
11175 "Return a buffer to be used for displaying the link target of internal links."
11176 (cond
11177 ((not org-display-internal-link-with-indirect-buffer)
11178 buffer)
11179 ((string-match "(Clone)$" (buffer-name buffer))
11180 (message "Buffer is already a clone, not making another one")
11181 ;; we also do not modify visibility in this case
11182 buffer)
11183 (t ; make a new indirect buffer for displaying the link
11184 (let* ((bn (buffer-name buffer))
11185 (ibn (concat bn "(Clone)"))
11186 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11187 (with-current-buffer ib (org-overview))
11188 ib))))
11190 (defun org-do-occur (regexp &optional cleanup)
11191 "Call the Emacs command `occur'.
11192 If CLEANUP is non-nil, remove the printout of the regular expression
11193 in the *Occur* buffer. This is useful if the regex is long and not useful
11194 to read."
11195 (occur regexp)
11196 (when cleanup
11197 (let ((cwin (selected-window)) win beg end)
11198 (when (setq win (get-buffer-window "*Occur*"))
11199 (select-window win))
11200 (goto-char (point-min))
11201 (when (re-search-forward "match[a-z]+" nil t)
11202 (setq beg (match-end 0))
11203 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11204 (setq end (1- (match-beginning 0)))))
11205 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11206 (goto-char (point-min))
11207 (select-window cwin))))
11209 ;;; The mark ring for links jumps
11211 (defvar org-mark-ring nil
11212 "Mark ring for positions before jumps in Org-mode.")
11213 (defvar org-mark-ring-last-goto nil
11214 "Last position in the mark ring used to go back.")
11215 ;; Fill and close the ring
11216 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11217 (loop for i from 1 to org-mark-ring-length do
11218 (push (make-marker) org-mark-ring))
11219 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11220 org-mark-ring)
11222 (defun org-mark-ring-push (&optional pos buffer)
11223 "Put the current position or POS into the mark ring and rotate it."
11224 (interactive)
11225 (setq pos (or pos (point)))
11226 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11227 (move-marker (car org-mark-ring)
11228 (or pos (point))
11229 (or buffer (current-buffer)))
11230 (message "%s"
11231 (substitute-command-keys
11232 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11234 (defun org-mark-ring-goto (&optional n)
11235 "Jump to the previous position in the mark ring.
11236 With prefix arg N, jump back that many stored positions. When
11237 called several times in succession, walk through the entire ring.
11238 Org-mode commands jumping to a different position in the current file,
11239 or to another Org-mode file, automatically push the old position
11240 onto the ring."
11241 (interactive "p")
11242 (let (p m)
11243 (if (eq last-command this-command)
11244 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11245 (setq p org-mark-ring))
11246 (setq org-mark-ring-last-goto p)
11247 (setq m (car p))
11248 (org-pop-to-buffer-same-window (marker-buffer m))
11249 (goto-char m)
11250 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11252 (defun org-remove-angle-brackets (s)
11253 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11254 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11256 (defun org-add-angle-brackets (s)
11257 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11258 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11260 (defun org-remove-double-quotes (s)
11261 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11262 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11265 ;;; Following specific links
11267 (defun org-follow-timestamp-link ()
11268 "Open an agenda view for the time-stamp date/range at point."
11269 (cond
11270 ((org-at-date-range-p t)
11271 (let ((org-agenda-start-on-weekday)
11272 (t1 (match-string 1))
11273 (t2 (match-string 2)) tt1 tt2)
11274 (setq tt1 (time-to-days (org-time-string-to-time t1))
11275 tt2 (time-to-days (org-time-string-to-time t2)))
11276 (let ((org-agenda-buffer-tmp-name
11277 (format "*Org Agenda(a:%s)"
11278 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11279 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11280 ((org-at-timestamp-p t)
11281 (let ((org-agenda-buffer-tmp-name
11282 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11283 (org-agenda-list nil (time-to-days (org-time-string-to-time
11284 (substring (match-string 1) 0 10)))
11285 1)))
11286 (t (error "This should not happen"))))
11289 ;;; Following file links
11290 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11291 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11292 (declare-function mailcap-mime-info
11293 "mailcap" (string &optional request no-decode))
11294 (defvar org-wait nil)
11295 (defun org-open-file (path &optional in-emacs line search)
11296 "Open the file at PATH.
11297 First, this expands any special file name abbreviations. Then the
11298 configuration variable `org-file-apps' is checked if it contains an
11299 entry for this file type, and if yes, the corresponding command is launched.
11301 If no application is found, Emacs simply visits the file.
11303 With optional prefix argument IN-EMACS, Emacs will visit the file.
11304 With a double \\[universal-argument] \\[universal-argument] \
11305 prefix arg, Org tries to avoid opening in Emacs
11306 and to use an external application to visit the file.
11308 Optional LINE specifies a line to go to, optional SEARCH a string
11309 to search for. If LINE or SEARCH is given, the file will be
11310 opened in Emacs, unless an entry from org-file-apps that makes
11311 use of groups in a regexp matches.
11313 If you want to change the way frames are used when following a
11314 link, please customize `org-link-frame-setup'.
11316 If the file does not exist, an error is thrown."
11317 (let* ((file (if (equal path "")
11318 buffer-file-name
11319 (substitute-in-file-name (expand-file-name path))))
11320 (file-apps (append org-file-apps (org-default-apps)))
11321 (apps (org-remove-if
11322 'org-file-apps-entry-match-against-dlink-p file-apps))
11323 (apps-dlink (org-remove-if-not
11324 'org-file-apps-entry-match-against-dlink-p file-apps))
11325 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11326 (dirp (if remp nil (file-directory-p file)))
11327 (file (if (and dirp org-open-directory-means-index-dot-org)
11328 (concat (file-name-as-directory file) "index.org")
11329 file))
11330 (a-m-a-p (assq 'auto-mode apps))
11331 (dfile (downcase file))
11332 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11333 (link (cond ((and (eq line nil)
11334 (eq search nil))
11335 file)
11336 (line
11337 (concat file "::" (number-to-string line)))
11338 (search
11339 (concat file "::" search))))
11340 (dlink (downcase link))
11341 (old-buffer (current-buffer))
11342 (old-pos (point))
11343 (old-mode major-mode)
11344 ext cmd link-match-data)
11345 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11346 (setq ext (match-string 1 dfile))
11347 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11348 (setq ext (match-string 1 dfile))))
11349 (cond
11350 ((member in-emacs '((16) system))
11351 (setq cmd (cdr (assoc 'system apps))))
11352 (in-emacs (setq cmd 'emacs))
11354 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11355 (and dirp (cdr (assoc 'directory apps)))
11356 ; first, try matching against apps-dlink
11357 ; if we get a match here, store the match data for later
11358 (let ((match (assoc-default dlink apps-dlink
11359 'string-match)))
11360 (if match
11361 (progn (setq link-match-data (match-data))
11362 match)
11363 (progn (setq in-emacs (or in-emacs line search))
11364 nil))) ; if we have no match in apps-dlink,
11365 ; always open the file in emacs if line or search
11366 ; is given (for backwards compatibility)
11367 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11368 'string-match)
11369 (cdr (assoc ext apps))
11370 (cdr (assoc t apps))))))
11371 (when (eq cmd 'system)
11372 (setq cmd (cdr (assoc 'system apps))))
11373 (when (eq cmd 'default)
11374 (setq cmd (cdr (assoc t apps))))
11375 (when (eq cmd 'mailcap)
11376 (require 'mailcap)
11377 (mailcap-parse-mailcaps)
11378 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11379 (command (mailcap-mime-info mime-type)))
11380 (if (stringp command)
11381 (setq cmd command)
11382 (setq cmd 'emacs))))
11383 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11384 (not (file-exists-p file))
11385 (not org-open-non-existing-files))
11386 (user-error "No such file: %s" file))
11387 (cond
11388 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11389 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11390 (while (string-match "['\"]%s['\"]" cmd)
11391 (setq cmd (replace-match "%s" t t cmd)))
11392 (while (string-match "%s" cmd)
11393 (setq cmd (replace-match
11394 (save-match-data
11395 (shell-quote-argument
11396 (convert-standard-filename file)))
11397 t t cmd)))
11399 ;; Replace "%1", "%2" etc. in command with group matches from regex
11400 (save-match-data
11401 (let ((match-index 1)
11402 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11403 (set-match-data link-match-data)
11404 (while (<= match-index number-of-groups)
11405 (let ((regex (concat "%" (number-to-string match-index)))
11406 (replace-with (match-string match-index dlink)))
11407 (while (string-match regex cmd)
11408 (setq cmd (replace-match replace-with t t cmd))))
11409 (setq match-index (+ match-index 1)))))
11411 (save-window-excursion
11412 (message "Running %s...done" cmd)
11413 (start-process-shell-command cmd nil cmd)
11414 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11415 ((or (stringp cmd)
11416 (eq cmd 'emacs))
11417 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11418 (widen)
11419 (if line (progn (org-goto-line line)
11420 (if (derived-mode-p 'org-mode)
11421 (org-reveal)))
11422 (if search (org-link-search search))))
11423 ((consp cmd)
11424 (let ((file (convert-standard-filename file)))
11425 (save-match-data
11426 (set-match-data link-match-data)
11427 (eval cmd))))
11428 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11429 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11430 (or (not (equal old-buffer (current-buffer)))
11431 (not (equal old-pos (point))))
11432 (org-mark-ring-push old-pos old-buffer))))
11434 (defun org-file-apps-entry-match-against-dlink-p (entry)
11435 "This function returns non-nil if `entry' uses a regular
11436 expression which should be matched against the whole link by
11437 org-open-file.
11439 It assumes that is the case when the entry uses a regular
11440 expression which has at least one grouping construct and the
11441 action is either a lisp form or a command string containing
11442 '%1', i.e. using at least one subexpression match as a
11443 parameter."
11444 (let ((selector (car entry))
11445 (action (cdr entry)))
11446 (if (stringp selector)
11447 (and (> (regexp-opt-depth selector) 0)
11448 (or (and (stringp action)
11449 (string-match "%[0-9]" action))
11450 (consp action)))
11451 nil)))
11453 (defun org-default-apps ()
11454 "Return the default applications for this operating system."
11455 (cond
11456 ((eq system-type 'darwin)
11457 org-file-apps-defaults-macosx)
11458 ((eq system-type 'windows-nt)
11459 org-file-apps-defaults-windowsnt)
11460 (t org-file-apps-defaults-gnu)))
11462 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11463 "Convert extensions to regular expressions in the cars of LIST.
11464 Also, weed out any non-string entries, because the return value is used
11465 only for regexp matching.
11466 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11467 point to the symbol `emacs', indicating that the file should
11468 be opened in Emacs."
11469 (append
11470 (delq nil
11471 (mapcar (lambda (x)
11472 (if (not (stringp (car x)))
11474 (if (string-match "\\W" (car x))
11476 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11477 list))
11478 (if add-auto-mode
11479 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11481 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11482 (defun org-file-remote-p (file)
11483 "Test whether FILE specifies a location on a remote system.
11484 Return non-nil if the location is indeed remote.
11486 For example, the filename \"/user@host:/foo\" specifies a location
11487 on the system \"/user@host:\"."
11488 (cond ((fboundp 'file-remote-p)
11489 (file-remote-p file))
11490 ((fboundp 'tramp-handle-file-remote-p)
11491 (tramp-handle-file-remote-p file))
11492 ((and (boundp 'ange-ftp-name-format)
11493 (string-match (car ange-ftp-name-format) file))
11494 t)))
11497 ;;;; Refiling
11499 (defun org-get-org-file ()
11500 "Read a filename, with default directory `org-directory'."
11501 (let ((default (or org-default-notes-file remember-data-file)))
11502 (read-file-name (format "File name [%s]: " default)
11503 (file-name-as-directory org-directory)
11504 default)))
11506 (defun org-notes-order-reversed-p ()
11507 "Check if the current file should receive notes in reversed order."
11508 (cond
11509 ((not org-reverse-note-order) nil)
11510 ((eq t org-reverse-note-order) t)
11511 ((not (listp org-reverse-note-order)) nil)
11512 (t (catch 'exit
11513 (let ((all org-reverse-note-order)
11514 entry)
11515 (while (setq entry (pop all))
11516 (if (string-match (car entry) buffer-file-name)
11517 (throw 'exit (cdr entry))))
11518 nil)))))
11520 (defvar org-refile-target-table nil
11521 "The list of refile targets, created by `org-refile'.")
11523 (defvar org-agenda-new-buffers nil
11524 "Buffers created to visit agenda files.")
11526 (defvar org-refile-cache nil
11527 "Cache for refile targets.")
11529 (defvar org-refile-markers nil
11530 "All the markers used for caching refile locations.")
11532 (defun org-refile-marker (pos)
11533 "Get a new refile marker, but only if caching is in use."
11534 (if (not org-refile-use-cache)
11536 (let ((m (make-marker)))
11537 (move-marker m pos)
11538 (push m org-refile-markers)
11539 m)))
11541 (defun org-refile-cache-clear ()
11542 "Clear the refile cache and disable all the markers."
11543 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11544 (setq org-refile-markers nil)
11545 (setq org-refile-cache nil)
11546 (message "Refile cache has been cleared"))
11548 (defun org-refile-cache-check-set (set)
11549 "Check if all the markers in the cache still have live buffers."
11550 (let (marker)
11551 (catch 'exit
11552 (while (and set (setq marker (nth 3 (pop set))))
11553 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11554 (when (and marker (null (marker-buffer marker)))
11555 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11556 (sit-for 3)
11557 (throw 'exit nil)))
11558 t)))
11560 (defun org-refile-cache-put (set &rest identifiers)
11561 "Push the refile targets SET into the cache, under IDENTIFIERS."
11562 (let* ((key (sha1 (prin1-to-string identifiers)))
11563 (entry (assoc key org-refile-cache)))
11564 (if entry
11565 (setcdr entry set)
11566 (push (cons key set) org-refile-cache))))
11568 (defun org-refile-cache-get (&rest identifiers)
11569 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11570 (cond
11571 ((not org-refile-cache) nil)
11572 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11574 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11575 org-refile-cache))))
11576 (and set (org-refile-cache-check-set set) set)))))
11578 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11579 "Produce a table with refile targets."
11580 (let ((case-fold-search nil)
11581 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11582 (entries (or org-refile-targets '((nil . (:level . 1)))))
11583 targets tgs txt re files f desc descre fast-path-p level pos0)
11584 (message "Getting targets...")
11585 (with-current-buffer (or default-buffer (current-buffer))
11586 (while (setq entry (pop entries))
11587 (setq files (car entry) desc (cdr entry))
11588 (setq fast-path-p nil)
11589 (cond
11590 ((null files) (setq files (list (current-buffer))))
11591 ((eq files 'org-agenda-files)
11592 (setq files (org-agenda-files 'unrestricted)))
11593 ((and (symbolp files) (fboundp files))
11594 (setq files (funcall files)))
11595 ((and (symbolp files) (boundp files))
11596 (setq files (symbol-value files))))
11597 (if (stringp files) (setq files (list files)))
11598 (cond
11599 ((eq (car desc) :tag)
11600 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11601 ((eq (car desc) :todo)
11602 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11603 ((eq (car desc) :regexp)
11604 (setq descre (cdr desc)))
11605 ((eq (car desc) :level)
11606 (setq descre (concat "^\\*\\{" (number-to-string
11607 (if org-odd-levels-only
11608 (1- (* 2 (cdr desc)))
11609 (cdr desc)))
11610 "\\}[ \t]")))
11611 ((eq (car desc) :maxlevel)
11612 (setq fast-path-p t)
11613 (setq descre (concat "^\\*\\{1," (number-to-string
11614 (if org-odd-levels-only
11615 (1- (* 2 (cdr desc)))
11616 (cdr desc)))
11617 "\\}[ \t]")))
11618 (t (error "Bad refiling target description %s" desc)))
11619 (while (setq f (pop files))
11620 (with-current-buffer
11621 (if (bufferp f) f (org-get-agenda-file-buffer f))
11623 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11624 (progn
11625 (if (bufferp f) (setq f (buffer-file-name
11626 (buffer-base-buffer f))))
11627 (setq f (and f (expand-file-name f)))
11628 (if (eq org-refile-use-outline-path 'file)
11629 (push (list (file-name-nondirectory f) f nil nil) tgs))
11630 (save-excursion
11631 (save-restriction
11632 (widen)
11633 (goto-char (point-min))
11634 (while (re-search-forward descre nil t)
11635 (goto-char (setq pos0 (point-at-bol)))
11636 (catch 'next
11637 (when org-refile-target-verify-function
11638 (save-match-data
11639 (or (funcall org-refile-target-verify-function)
11640 (throw 'next t))))
11641 (when (and (looking-at org-complex-heading-regexp)
11642 (not (member (match-string 4) excluded-entries))
11643 (match-string 4))
11644 (setq level (org-reduced-level
11645 (- (match-end 1) (match-beginning 1)))
11646 txt (org-link-display-format (match-string 4))
11647 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11648 re (format org-complex-heading-regexp-format
11649 (regexp-quote (match-string 4))))
11650 (when org-refile-use-outline-path
11651 (setq txt (mapconcat
11652 'org-protect-slash
11653 (append
11654 (if (eq org-refile-use-outline-path
11655 'file)
11656 (list (file-name-nondirectory
11657 (buffer-file-name
11658 (buffer-base-buffer))))
11659 (if (eq org-refile-use-outline-path
11660 'full-file-path)
11661 (list (buffer-file-name
11662 (buffer-base-buffer)))))
11663 (org-get-outline-path fast-path-p
11664 level txt)
11665 (list txt))
11666 "/")))
11667 (push (list txt f re (org-refile-marker (point)))
11668 tgs)))
11669 (when (= (point) pos0)
11670 ;; verification function has not moved point
11671 (goto-char (point-at-eol))))))))
11672 (when org-refile-use-cache
11673 (org-refile-cache-put tgs (buffer-file-name) descre))
11674 (setq targets (append tgs targets))))))
11675 (message "Getting targets...done")
11676 (nreverse targets)))
11678 (defun org-protect-slash (s)
11679 (while (string-match "/" s)
11680 (setq s (replace-match "\\" t t s)))
11683 (defvar org-olpa (make-vector 20 nil))
11685 (defun org-get-outline-path (&optional fastp level heading)
11686 "Return the outline path to the current entry, as a list.
11688 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11689 routine which makes outline path derivations for an entire file,
11690 avoiding backtracing. Refile target collection makes use of that."
11691 (if fastp
11692 (progn
11693 (if (> level 19)
11694 (error "Outline path failure, more than 19 levels"))
11695 (loop for i from level upto 19 do
11696 (aset org-olpa i nil))
11697 (prog1
11698 (delq nil (append org-olpa nil))
11699 (aset org-olpa level heading)))
11700 (let (rtn case-fold-search)
11701 (save-excursion
11702 (save-restriction
11703 (widen)
11704 (while (org-up-heading-safe)
11705 (when (looking-at org-complex-heading-regexp)
11706 (push (org-trim
11707 (replace-regexp-in-string
11708 ;; Remove statistical/checkboxes cookies
11709 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11710 (org-match-string-no-properties 4)))
11711 rtn)))
11712 rtn)))))
11714 (defun org-format-outline-path (path &optional width prefix separator)
11715 "Format the outline path PATH for display.
11716 WIDTH is the maximum number of characters that is available.
11717 PREFIX is a prefix to be included in the returned string,
11718 such as the file name.
11719 SEPARATOR is inserted between the different parts of the path,
11720 the default is \"/\"."
11721 (setq width (or width 79))
11722 (if prefix (setq width (- width (length prefix))))
11723 (if (not path)
11724 (or prefix "")
11725 (let* ((nsteps (length path))
11726 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11727 (maxwidth (if (<= total-width width)
11728 10000 ;; everything fits
11729 ;; we need to shorten the level headings
11730 (/ (- width nsteps) nsteps)))
11731 (org-odd-levels-only nil)
11732 (n 0)
11733 (total (1+ (length prefix))))
11734 (setq maxwidth (max maxwidth 10))
11735 (concat prefix
11736 (if prefix (or separator "/"))
11737 (mapconcat
11738 (lambda (h)
11739 (setq n (1+ n))
11740 (if (and (= n nsteps) (< maxwidth 10000))
11741 (setq maxwidth (- total-width total)))
11742 (if (< (length h) maxwidth)
11743 (progn (setq total (+ total (length h) 1)) h)
11744 (setq h (substring h 0 (- maxwidth 2))
11745 total (+ total maxwidth 1))
11746 (if (string-match "[ \t]+\\'" h)
11747 (setq h (substring h 0 (match-beginning 0))))
11748 (setq h (concat h "..")))
11749 (org-add-props h nil 'face
11750 (nth (% (1- n) org-n-level-faces)
11751 org-level-faces))
11753 path (or separator "/"))))))
11755 (defun org-display-outline-path (&optional file current separator just-return-string)
11756 "Display the current outline path in the echo area.
11758 If FILE is non-nil, prepend the output with the file name.
11759 If CURRENT is non-nil, append the current heading to the output.
11760 SEPARATOR is passed through to `org-format-outline-path'. It separates
11761 the different parts of the path and defaults to \"/\".
11762 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11763 (interactive "P")
11764 (let* (case-fold-search
11765 (bfn (buffer-file-name (buffer-base-buffer)))
11766 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11767 res)
11768 (if current (setq path (append path
11769 (save-excursion
11770 (org-back-to-heading t)
11771 (if (looking-at org-complex-heading-regexp)
11772 (list (match-string 4)))))))
11773 (setq res
11774 (org-format-outline-path
11775 path
11776 (1- (frame-width))
11777 (and file bfn (concat (file-name-nondirectory bfn) separator))
11778 separator))
11779 (if just-return-string
11780 (org-no-properties res)
11781 (org-unlogged-message "%s" res))))
11783 (defvar org-refile-history nil
11784 "History for refiling operations.")
11786 (defvar org-after-refile-insert-hook nil
11787 "Hook run after `org-refile' has inserted its stuff at the new location.
11788 Note that this is still *before* the stuff will be removed from
11789 the *old* location.")
11791 (defvar org-capture-last-stored-marker)
11792 (defvar org-refile-keep nil
11793 "Non-nil means `org-refile' will copy instead of refile.")
11795 (defun org-copy ()
11796 "Like `org-refile', but copy."
11797 (interactive)
11798 (let ((org-refile-keep t))
11799 (funcall 'org-refile nil nil nil "Copy")))
11801 (defun org-refile (&optional arg default-buffer rfloc msg)
11802 "Move the entry or entries at point to another heading.
11803 The list of target headings is compiled using the information in
11804 `org-refile-targets', which see.
11806 At the target location, the entry is filed as a subitem of the
11807 target heading. Depending on `org-reverse-note-order', the new
11808 subitem will either be the first or the last subitem.
11810 If there is an active region, all entries in that region will be
11811 refiled. However, the region must fulfill the requirement that
11812 the first heading sets the top-level of the moved text.
11814 With prefix arg ARG, the command will only visit the target
11815 location and not actually move anything.
11817 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11818 refiling operation has put the subtree.
11820 With a numeric prefix argument of `2', refile to the running clock.
11822 With a numeric prefix argument of `3', emulate `org-refile-keep'
11823 being set to `t' and copy to the target location, don't move it.
11824 Beware that keeping refiled entries may result in duplicated ID
11825 properties.
11827 RFLOC can be a refile location obtained in a different way.
11829 MSG is a string to replace \"Refile\" in the default prompt with
11830 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11832 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11834 If you are using target caching (see `org-refile-use-cache'), you
11835 have to clear the target cache in order to find new targets.
11836 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11837 prefix argument (`C-u C-u C-u C-c C-w')."
11838 (interactive "P")
11839 (if (member arg '(0 (64)))
11840 (org-refile-cache-clear)
11841 (let* ((actionmsg (cond (msg msg)
11842 ((equal arg 3) "Refile (and keep)")
11843 (t "Refile")))
11844 (cbuf (current-buffer))
11845 (regionp (org-region-active-p))
11846 (region-start (and regionp (region-beginning)))
11847 (region-end (and regionp (region-end)))
11848 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11849 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11850 pos it nbuf file re level reversed)
11851 (setq last-command nil)
11852 (when regionp
11853 (goto-char region-start)
11854 (or (bolp) (goto-char (point-at-bol)))
11855 (setq region-start (point))
11856 (unless (or (org-kill-is-subtree-p
11857 (buffer-substring region-start region-end))
11858 (prog1 org-refile-active-region-within-subtree
11859 (let ((s (point-at-eol)))
11860 (org-toggle-heading)
11861 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11862 (user-error "The region is not a (sequence of) subtree(s)")))
11863 (if (equal arg '(16))
11864 (org-refile-goto-last-stored)
11865 (when (or
11866 (and (equal arg 2)
11867 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11868 (prog1
11869 (setq it (list (or org-clock-heading "running clock")
11870 (buffer-file-name
11871 (marker-buffer org-clock-hd-marker))
11873 (marker-position org-clock-hd-marker)))
11874 (setq arg nil)))
11875 (setq it (or rfloc
11876 (let (heading-text)
11877 (save-excursion
11878 (unless (and arg (listp arg))
11879 (org-back-to-heading t)
11880 (setq heading-text
11881 (replace-regexp-in-string
11882 org-bracket-link-regexp
11883 "\\3"
11884 (nth 4 (org-heading-components)))))
11885 (org-refile-get-location
11886 (cond ((and arg (listp arg)) "Goto")
11887 (regionp (concat actionmsg " region to"))
11888 (t (concat actionmsg " subtree \""
11889 heading-text "\" to")))
11890 default-buffer
11891 (and (not (equal '(4) arg))
11892 org-refile-allow-creating-parent-nodes)
11893 arg))))))
11894 (setq file (nth 1 it)
11895 re (nth 2 it)
11896 pos (nth 3 it))
11897 (if (and (not arg)
11899 (equal (buffer-file-name) file)
11900 (if regionp
11901 (and (>= pos region-start)
11902 (<= pos region-end))
11903 (and (>= pos (point))
11904 (< pos (save-excursion
11905 (org-end-of-subtree t t))))))
11906 (error "Cannot refile to position inside the tree or region"))
11907 (setq nbuf (or (find-buffer-visiting file)
11908 (find-file-noselect file)))
11909 (if (and arg (not (equal arg 3)))
11910 (progn
11911 (org-pop-to-buffer-same-window nbuf)
11912 (goto-char pos)
11913 (org-show-context 'org-goto))
11914 (if regionp
11915 (progn
11916 (org-kill-new (buffer-substring region-start region-end))
11917 (org-save-markers-in-region region-start region-end))
11918 (org-copy-subtree 1 nil t))
11919 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11920 (find-file-noselect file)))
11921 (setq reversed (org-notes-order-reversed-p))
11922 (save-excursion
11923 (save-restriction
11924 (widen)
11925 (if pos
11926 (progn
11927 (goto-char pos)
11928 (looking-at org-outline-regexp)
11929 (setq level (org-get-valid-level (funcall outline-level) 1))
11930 (goto-char
11931 (if reversed
11932 (or (outline-next-heading) (point-max))
11933 (or (save-excursion (org-get-next-sibling))
11934 (org-end-of-subtree t t)
11935 (point-max)))))
11936 (setq level 1)
11937 (if (not reversed)
11938 (goto-char (point-max))
11939 (goto-char (point-min))
11940 (or (outline-next-heading) (goto-char (point-max)))))
11941 (if (not (bolp)) (newline))
11942 (org-paste-subtree level nil nil t)
11943 (when org-log-refile
11944 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11945 (unless (eq org-log-refile 'note)
11946 (save-excursion (org-add-log-note))))
11947 (and org-auto-align-tags
11948 (let ((org-loop-over-headlines-in-active-region nil))
11949 (org-set-tags nil t)))
11950 (let ((bookmark-name (plist-get org-bookmark-names-plist
11951 :last-refile)))
11952 (when bookmark-name
11953 (with-demoted-errors
11954 (bookmark-set bookmark-name))))
11955 ;; If we are refiling for capture, make sure that the
11956 ;; last-capture pointers point here
11957 (when (org-bound-and-true-p org-refile-for-capture)
11958 (let ((bookmark-name (plist-get org-bookmark-names-plist
11959 :last-capture-marker)))
11960 (when bookmark-name
11961 (with-demoted-errors
11962 (bookmark-set bookmark-name))))
11963 (move-marker org-capture-last-stored-marker (point)))
11964 (if (fboundp 'deactivate-mark) (deactivate-mark))
11965 (run-hooks 'org-after-refile-insert-hook))))
11966 (unless org-refile-keep
11967 (if regionp
11968 (delete-region (point) (+ (point) (- region-end region-start)))
11969 (delete-region
11970 (and (org-back-to-heading t) (point))
11971 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11972 (when (featurep 'org-inlinetask)
11973 (org-inlinetask-remove-END-maybe))
11974 (setq org-markers-to-move nil)
11975 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11977 (defun org-refile-goto-last-stored ()
11978 "Go to the location where the last refile was stored."
11979 (interactive)
11980 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11981 (message "This is the location of the last refile"))
11983 (defun org-refile--get-location (refloc tbl)
11984 "When user refile to REFLOC, find the associated target in TBL.
11985 Also check `org-refile-target-table'."
11986 (car (delq
11988 (mapcar
11989 (lambda (r) (or (assoc r tbl)
11990 (assoc r org-refile-target-table)))
11991 (list (replace-regexp-in-string "/$" "" refloc)
11992 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11994 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11995 no-exclude)
11996 "Prompt the user for a refile location, using PROMPT.
11997 PROMPT should not be suffixed with a colon and a space, because
11998 this function appends the default value from
11999 `org-refile-history' automatically, if that is not empty.
12000 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12001 this is used for the GOTO interface."
12002 (let ((org-refile-targets org-refile-targets)
12003 (org-refile-use-outline-path org-refile-use-outline-path)
12004 excluded-entries)
12005 (when (and (derived-mode-p 'org-mode)
12006 (not org-refile-use-cache)
12007 (not no-exclude))
12008 (org-map-tree
12009 (lambda()
12010 (setq excluded-entries
12011 (append excluded-entries (list (org-get-heading t t)))))))
12012 (setq org-refile-target-table
12013 (org-refile-get-targets default-buffer excluded-entries)))
12014 (unless org-refile-target-table
12015 (user-error "No refile targets"))
12016 (let* ((cbuf (current-buffer))
12017 (partial-completion-mode nil)
12018 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12019 (cfunc (if (and org-refile-use-outline-path
12020 org-outline-path-complete-in-steps)
12021 'org-olpath-completing-read
12022 'org-icompleting-read))
12023 (extra (if org-refile-use-outline-path "/" ""))
12024 (cbnex (concat (buffer-name) extra))
12025 (filename (and cfn (expand-file-name cfn)))
12026 (tbl (mapcar
12027 (lambda (x)
12028 (if (and (not (member org-refile-use-outline-path
12029 '(file full-file-path)))
12030 (not (equal filename (nth 1 x))))
12031 (cons (concat (car x) extra " ("
12032 (file-name-nondirectory (nth 1 x)) ")")
12033 (cdr x))
12034 (cons (concat (car x) extra) (cdr x))))
12035 org-refile-target-table))
12036 (completion-ignore-case t)
12037 cdef
12038 (prompt (concat prompt
12039 (or (and (car org-refile-history)
12040 (concat " (default " (car org-refile-history) ")"))
12041 (and (assoc cbnex tbl) (setq cdef cbnex)
12042 (concat " (default " cbnex ")"))) ": "))
12043 pa answ parent-target child parent old-hist)
12044 (setq old-hist org-refile-history)
12045 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12046 nil 'org-refile-history (or cdef (car org-refile-history))))
12047 (if (setq pa (org-refile--get-location answ tbl))
12048 (progn
12049 (org-refile-check-position pa)
12050 (when (or (not org-refile-history)
12051 (not (eq old-hist org-refile-history))
12052 (not (equal (car pa) (car org-refile-history))))
12053 (setq org-refile-history
12054 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12055 org-refile-history
12056 (cdr org-refile-history))))
12057 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12058 (pop org-refile-history)))
12060 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12061 (progn
12062 (setq parent (match-string 1 answ)
12063 child (match-string 2 answ))
12064 (setq parent-target (org-refile--get-location parent tbl))
12065 (when (and parent-target
12066 (or (eq new-nodes t)
12067 (and (eq new-nodes 'confirm)
12068 (y-or-n-p (format "Create new node \"%s\"? "
12069 child)))))
12070 (org-refile-new-child parent-target child)))
12071 (user-error "Invalid target location")))))
12073 (declare-function org-string-nw-p "org-macs" (s))
12074 (defun org-refile-check-position (refile-pointer)
12075 "Check if the refile pointer matches the headline to which it points."
12076 (let* ((file (nth 1 refile-pointer))
12077 (re (nth 2 refile-pointer))
12078 (pos (nth 3 refile-pointer))
12079 buffer)
12080 (if (and (not (markerp pos)) (not file))
12081 (user-error "Please indicate a target file in the refile path")
12082 (when (org-string-nw-p re)
12083 (setq buffer (if (markerp pos)
12084 (marker-buffer pos)
12085 (or (find-buffer-visiting file)
12086 (find-file-noselect file))))
12087 (with-current-buffer buffer
12088 (save-excursion
12089 (save-restriction
12090 (widen)
12091 (goto-char pos)
12092 (beginning-of-line 1)
12093 (unless (org-looking-at-p re)
12094 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12096 (defun org-refile-new-child (parent-target child)
12097 "Use refile target PARENT-TARGET to add new CHILD below it."
12098 (unless parent-target
12099 (error "Cannot find parent for new node"))
12100 (let ((file (nth 1 parent-target))
12101 (pos (nth 3 parent-target))
12102 level)
12103 (with-current-buffer (or (find-buffer-visiting file)
12104 (find-file-noselect file))
12105 (save-excursion
12106 (save-restriction
12107 (widen)
12108 (if pos
12109 (goto-char pos)
12110 (goto-char (point-max))
12111 (if (not (bolp)) (newline)))
12112 (when (looking-at org-outline-regexp)
12113 (setq level (funcall outline-level))
12114 (org-end-of-subtree t t))
12115 (org-back-over-empty-lines)
12116 (insert "\n" (make-string
12117 (if pos (org-get-valid-level level 1) 1) ?*)
12118 " " child "\n")
12119 (beginning-of-line 0)
12120 (list (concat (car parent-target) "/" child) file "" (point)))))))
12122 (defun org-olpath-completing-read (prompt collection &rest args)
12123 "Read an outline path like a file name."
12124 (let ((thetable collection)
12125 (org-completion-use-ido nil) ; does not work with ido.
12126 (org-completion-use-iswitchb nil)) ; or iswitchb
12127 (apply
12128 'org-icompleting-read prompt
12129 (lambda (string predicate &optional flag)
12130 (let (rtn r f (l (length string)))
12131 (cond
12132 ((eq flag nil)
12133 ;; try completion
12134 (try-completion string thetable))
12135 ((eq flag t)
12136 ;; all-completions
12137 (setq rtn (all-completions string thetable predicate))
12138 (mapcar
12139 (lambda (x)
12140 (setq r (substring x l))
12141 (if (string-match " ([^)]*)$" x)
12142 (setq f (match-string 0 x))
12143 (setq f ""))
12144 (if (string-match "/" r)
12145 (concat string (substring r 0 (match-end 0)) f)
12147 rtn))
12148 ((eq flag 'lambda)
12149 ;; exact match?
12150 (assoc string thetable)))))
12151 args)))
12153 ;;;; Dynamic blocks
12155 (defun org-find-dblock (name)
12156 "Find the first dynamic block with name NAME in the buffer.
12157 If not found, stay at current position and return nil."
12158 (let ((case-fold-search t) pos)
12159 (save-excursion
12160 (goto-char (point-min))
12161 (setq pos (and (re-search-forward
12162 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12163 (match-beginning 0))))
12164 (if pos (goto-char pos))
12165 pos))
12167 (defun org-create-dblock (plist)
12168 "Create a dynamic block section, with parameters taken from PLIST.
12169 PLIST must contain a :name entry which is used as the name of the block."
12170 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12171 (end-of-line 1)
12172 (newline))
12173 (let ((col (current-column))
12174 (name (plist-get plist :name)))
12175 (insert "#+BEGIN: " name)
12176 (while plist
12177 (if (eq (car plist) :name)
12178 (setq plist (cddr plist))
12179 (insert " " (prin1-to-string (pop plist)))))
12180 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12181 (beginning-of-line -2)))
12183 (defun org-prepare-dblock ()
12184 "Prepare dynamic block for refresh.
12185 This empties the block, puts the cursor at the insert position and returns
12186 the property list including an extra property :name with the block name."
12187 (unless (looking-at org-dblock-start-re)
12188 (user-error "Not at a dynamic block"))
12189 (let* ((begdel (1+ (match-end 0)))
12190 (name (org-no-properties (match-string 1)))
12191 (params (append (list :name name)
12192 (read (concat "(" (match-string 3) ")")))))
12193 (save-excursion
12194 (beginning-of-line 1)
12195 (skip-chars-forward " \t")
12196 (setq params (plist-put params :indentation-column (current-column))))
12197 (unless (re-search-forward org-dblock-end-re nil t)
12198 (error "Dynamic block not terminated"))
12199 (setq params
12200 (append params
12201 (list :content (buffer-substring
12202 begdel (match-beginning 0)))))
12203 (delete-region begdel (match-beginning 0))
12204 (goto-char begdel)
12205 (open-line 1)
12206 params))
12208 (defun org-map-dblocks (&optional command)
12209 "Apply COMMAND to all dynamic blocks in the current buffer.
12210 If COMMAND is not given, use `org-update-dblock'."
12211 (let ((cmd (or command 'org-update-dblock)))
12212 (save-excursion
12213 (goto-char (point-min))
12214 (while (re-search-forward org-dblock-start-re nil t)
12215 (goto-char (match-beginning 0))
12216 (save-excursion
12217 (condition-case nil
12218 (funcall cmd)
12219 (error (message "Error during update of dynamic block"))))
12220 (unless (re-search-forward org-dblock-end-re nil t)
12221 (error "Dynamic block not terminated"))))))
12223 (defun org-dblock-update (&optional arg)
12224 "User command for updating dynamic blocks.
12225 Update the dynamic block at point. With prefix ARG, update all dynamic
12226 blocks in the buffer."
12227 (interactive "P")
12228 (if arg
12229 (org-update-all-dblocks)
12230 (or (looking-at org-dblock-start-re)
12231 (org-beginning-of-dblock))
12232 (org-update-dblock)))
12234 (defun org-update-dblock ()
12235 "Update the dynamic block at point.
12236 This means to empty the block, parse for parameters and then call
12237 the correct writing function."
12238 (interactive)
12239 (save-excursion
12240 (let* ((win (selected-window))
12241 (pos (point))
12242 (line (org-current-line))
12243 (params (org-prepare-dblock))
12244 (name (plist-get params :name))
12245 (indent (plist-get params :indentation-column))
12246 (cmd (intern (concat "org-dblock-write:" name))))
12247 (message "Updating dynamic block `%s' at line %d..." name line)
12248 (funcall cmd params)
12249 (message "Updating dynamic block `%s' at line %d...done" name line)
12250 (goto-char pos)
12251 (when (and indent (> indent 0))
12252 (setq indent (make-string indent ?\ ))
12253 (save-excursion
12254 (select-window win)
12255 (org-beginning-of-dblock)
12256 (forward-line 1)
12257 (while (not (looking-at org-dblock-end-re))
12258 (insert indent)
12259 (beginning-of-line 2))
12260 (when (looking-at org-dblock-end-re)
12261 (and (looking-at "[ \t]+")
12262 (replace-match ""))
12263 (insert indent)))))))
12265 (defun org-beginning-of-dblock ()
12266 "Find the beginning of the dynamic block at point.
12267 Error if there is no such block at point."
12268 (let ((pos (point))
12269 beg)
12270 (end-of-line 1)
12271 (if (and (re-search-backward org-dblock-start-re nil t)
12272 (setq beg (match-beginning 0))
12273 (re-search-forward org-dblock-end-re nil t)
12274 (> (match-end 0) pos))
12275 (goto-char beg)
12276 (goto-char pos)
12277 (error "Not in a dynamic block"))))
12279 (defun org-update-all-dblocks ()
12280 "Update all dynamic blocks in the buffer.
12281 This function can be used in a hook."
12282 (interactive)
12283 (when (derived-mode-p 'org-mode)
12284 (org-map-dblocks 'org-update-dblock)))
12287 ;;;; Completion
12289 (declare-function org-export-backend-name "org-export" (cl-x))
12290 (declare-function org-export-backend-options "org-export" (cl-x))
12291 (defun org-get-export-keywords ()
12292 "Return a list of all currently understood export keywords.
12293 Export keywords include options, block names, attributes and
12294 keywords relative to each registered export back-end."
12295 (let (keywords)
12296 (dolist (backend
12297 (org-bound-and-true-p org-export--registered-backends)
12298 (delq nil keywords))
12299 ;; Back-end name (for keywords, like #+LATEX:)
12300 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12301 (dolist (option-entry (org-export-backend-options backend))
12302 ;; Back-end options.
12303 (push (nth 1 option-entry) keywords)))))
12305 (defconst org-options-keywords
12306 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12307 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12308 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12309 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12310 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12312 (defcustom org-structure-template-alist
12313 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12314 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12315 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12316 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12317 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12318 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12319 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12320 ("L" "#+LaTeX: ")
12321 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12322 ("H" "#+HTML: ")
12323 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12324 ("A" "#+ASCII: ")
12325 ("i" "#+INDEX: ?")
12326 ("I" "#+INCLUDE: %file ?"))
12327 "Structure completion elements.
12328 This is a list of abbreviation keys and values. The value gets inserted
12329 if you type `<' followed by the key and then press the completion key,
12330 usually `TAB'. %file will be replaced by a file name after prompting
12331 for the file using completion. The cursor will be placed at the position
12332 of the `?` in the template.
12333 There are two templates for each key, the first uses the original Org syntax,
12334 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12335 the default when the /org-mtags.el/ module has been loaded. See also the
12336 variable `org-mtags-prefer-muse-templates'."
12337 :group 'org-completion
12338 :type '(repeat
12339 (list
12340 (string :tag "Key")
12341 (string :tag "Template")))
12342 :version "25.1"
12343 :package-version '(Org . "8.3"))
12345 (defun org-try-structure-completion ()
12346 "Try to complete a structure template before point.
12347 This looks for strings like \"<e\" on an otherwise empty line and
12348 expands them."
12349 (let ((l (buffer-substring (point-at-bol) (point)))
12351 (when (and (looking-at "[ \t]*$")
12352 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12353 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12354 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12355 (match-beginning 1)) a)
12356 t)))
12358 (defun org-complete-expand-structure-template (start cell)
12359 "Expand a structure template."
12360 (let ((rpl (nth 1 cell))
12361 (ind ""))
12362 (delete-region start (point))
12363 (when (string-match "\\`[ \t]*#\\+" rpl)
12364 (cond
12365 ((bolp))
12366 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12367 (setq ind (buffer-substring (point-at-bol) (point))))
12368 (t (newline))))
12369 (setq start (point))
12370 (if (string-match "%file" rpl)
12371 (setq rpl (replace-match
12372 (concat
12373 "\""
12374 (save-match-data
12375 (abbreviate-file-name (read-file-name "Include file: ")))
12376 "\"")
12377 t t rpl)))
12378 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12379 (concat "\n" ind)))
12380 (insert rpl)
12381 (if (re-search-backward "\\?" start t) (delete-char 1))))
12383 ;;;; TODO, DEADLINE, Comments
12385 (defun org-toggle-comment ()
12386 "Change the COMMENT state of an entry."
12387 (interactive)
12388 (save-excursion
12389 (org-back-to-heading)
12390 (looking-at org-complex-heading-regexp)
12391 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12392 (skip-chars-forward " \t")
12393 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12394 (if (org-in-commented-heading-p t)
12395 (delete-region (point)
12396 (progn (search-forward " " (line-end-position) 'move)
12397 (skip-chars-forward " \t")
12398 (point)))
12399 (insert org-comment-string)
12400 (unless (eolp) (insert " ")))))
12402 (defvar org-last-todo-state-is-todo nil
12403 "This is non-nil when the last TODO state change led to a TODO state.
12404 If the last change removed the TODO tag or switched to DONE, then
12405 this is nil.")
12407 (defvar org-setting-tags nil) ; dynamically skipped
12409 (defvar org-todo-setup-filter-hook nil
12410 "Hook for functions that pre-filter todo specs.
12411 Each function takes a todo spec and returns either nil or the spec
12412 transformed into canonical form." )
12414 (defvar org-todo-get-default-hook nil
12415 "Hook for functions that get a default item for todo.
12416 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12417 nil or a string to be used for the todo mark." )
12419 (defvar org-agenda-headline-snapshot-before-repeat)
12421 (defun org-current-effective-time ()
12422 "Return current time adjusted for `org-extend-today-until' variable."
12423 (let* ((ct (org-current-time))
12424 (dct (decode-time ct))
12425 (ct1
12426 (cond
12427 (org-use-last-clock-out-time-as-effective-time
12428 (or (org-clock-get-last-clock-out-time) ct))
12429 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12430 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12431 (t ct))))
12432 ct1))
12434 (defun org-todo-yesterday (&optional arg)
12435 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12436 (interactive "P")
12437 (if (eq major-mode 'org-agenda-mode)
12438 (apply 'org-agenda-todo-yesterday arg)
12439 (let* ((hour (third (decode-time
12440 (org-current-time))))
12441 (org-extend-today-until (1+ hour)))
12442 (org-todo arg))))
12444 (defvar org-block-entry-blocking ""
12445 "First entry preventing the TODO state change.")
12447 (defun org-cancel-repeater ()
12448 "Cancel a repeater by setting its numeric value to zero."
12449 (interactive)
12450 (save-excursion
12451 (org-back-to-heading t)
12452 (let ((bound1 (point))
12453 (bound0 (save-excursion (outline-next-heading) (point))))
12454 (when (re-search-forward
12455 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12456 org-deadline-time-regexp "\\)\\|\\("
12457 org-ts-regexp "\\)")
12458 bound0 t)
12459 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12460 (replace-match "0" t nil nil 1))))))
12462 (defun org-todo (&optional arg)
12463 "Change the TODO state of an item.
12464 The state of an item is given by a keyword at the start of the heading,
12465 like
12466 *** TODO Write paper
12467 *** DONE Call mom
12469 The different keywords are specified in the variable `org-todo-keywords'.
12470 By default the available states are \"TODO\" and \"DONE\".
12471 So for this example: when the item starts with TODO, it is changed to DONE.
12472 When it starts with DONE, the DONE is removed. And when neither TODO nor
12473 DONE are present, add TODO at the beginning of the heading.
12475 With \\[universal-argument] prefix arg, use completion to determine the new \
12476 state.
12477 With numeric prefix arg, switch to that state.
12478 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12479 keywords (nextset).
12480 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12481 With a numeric prefix arg of 0, inhibit note taking for the change.
12482 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12484 When called through ELisp, arg is also interpreted in the following way:
12485 'none -> empty state
12486 \"\"(empty string) -> switch to empty state
12487 'done -> switch to DONE
12488 'nextset -> switch to the next set of keywords
12489 'previousset -> switch to the previous set of keywords
12490 \"WAITING\" -> switch to the specified keyword, but only if it
12491 really is a member of `org-todo-keywords'."
12492 (interactive "P")
12493 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12494 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12495 'region-start-level 'region))
12496 org-loop-over-headlines-in-active-region)
12497 (org-map-entries
12498 `(org-todo ,arg)
12499 org-loop-over-headlines-in-active-region
12500 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12501 (if (equal arg '(16)) (setq arg 'nextset))
12502 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12503 (let ((org-blocker-hook org-blocker-hook)
12504 commentp
12505 case-fold-search)
12506 (when (equal arg '(64))
12507 (setq arg nil org-blocker-hook nil))
12508 (when (and org-blocker-hook
12509 (or org-inhibit-blocking
12510 (org-entry-get nil "NOBLOCKING")))
12511 (setq org-blocker-hook nil))
12512 (save-excursion
12513 (catch 'exit
12514 (org-back-to-heading t)
12515 (when (org-in-commented-heading-p t)
12516 (org-toggle-comment)
12517 (setq commentp t))
12518 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12519 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12520 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12521 (let* ((match-data (match-data))
12522 (startpos (point-at-bol))
12523 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12524 (org-log-done org-log-done)
12525 (org-log-repeat org-log-repeat)
12526 (org-todo-log-states org-todo-log-states)
12527 (org-inhibit-logging
12528 (if (equal arg 0)
12529 (progn (setq arg nil) 'note) org-inhibit-logging))
12530 (this (match-string 1))
12531 (hl-pos (match-beginning 0))
12532 (head (org-get-todo-sequence-head this))
12533 (ass (assoc head org-todo-kwd-alist))
12534 (interpret (nth 1 ass))
12535 (done-word (nth 3 ass))
12536 (final-done-word (nth 4 ass))
12537 (org-last-state (or this ""))
12538 (completion-ignore-case t)
12539 (member (member this org-todo-keywords-1))
12540 (tail (cdr member))
12541 (org-state (cond
12542 ((and org-todo-key-trigger
12543 (or (and (equal arg '(4))
12544 (eq org-use-fast-todo-selection 'prefix))
12545 (and (not arg) org-use-fast-todo-selection
12546 (not (eq org-use-fast-todo-selection
12547 'prefix)))))
12548 ;; Use fast selection
12549 (org-fast-todo-selection))
12550 ((and (equal arg '(4))
12551 (or (not org-use-fast-todo-selection)
12552 (not org-todo-key-trigger)))
12553 ;; Read a state with completion
12554 (org-icompleting-read
12555 "State: " (mapcar 'list org-todo-keywords-1)
12556 nil t))
12557 ((eq arg 'right)
12558 (if this
12559 (if tail (car tail) nil)
12560 (car org-todo-keywords-1)))
12561 ((eq arg 'left)
12562 (if (equal member org-todo-keywords-1)
12564 (if this
12565 (nth (- (length org-todo-keywords-1)
12566 (length tail) 2)
12567 org-todo-keywords-1)
12568 (org-last org-todo-keywords-1))))
12569 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12570 (setq arg nil))) ; hack to fall back to cycling
12571 (arg
12572 ;; user or caller requests a specific state
12573 (cond
12574 ((equal arg "") nil)
12575 ((eq arg 'none) nil)
12576 ((eq arg 'done) (or done-word (car org-done-keywords)))
12577 ((eq arg 'nextset)
12578 (or (car (cdr (member head org-todo-heads)))
12579 (car org-todo-heads)))
12580 ((eq arg 'previousset)
12581 (let ((org-todo-heads (reverse org-todo-heads)))
12582 (or (car (cdr (member head org-todo-heads)))
12583 (car org-todo-heads))))
12584 ((car (member arg org-todo-keywords-1)))
12585 ((stringp arg)
12586 (user-error "State `%s' not valid in this file" arg))
12587 ((nth (1- (prefix-numeric-value arg))
12588 org-todo-keywords-1))))
12589 ((null member) (or head (car org-todo-keywords-1)))
12590 ((equal this final-done-word) nil) ;; -> make empty
12591 ((null tail) nil) ;; -> first entry
12592 ((memq interpret '(type priority))
12593 (if (eq this-command last-command)
12594 (car tail)
12595 (if (> (length tail) 0)
12596 (or done-word (car org-done-keywords))
12597 nil)))
12599 (car tail))))
12600 (org-state (or
12601 (run-hook-with-args-until-success
12602 'org-todo-get-default-hook org-state org-last-state)
12603 org-state))
12604 (next (if org-state (concat " " org-state " ") " "))
12605 (change-plist (list :type 'todo-state-change :from this :to org-state
12606 :position startpos))
12607 dolog now-done-p)
12608 (when org-blocker-hook
12609 (setq org-last-todo-state-is-todo
12610 (not (member this org-done-keywords)))
12611 (unless (save-excursion
12612 (save-match-data
12613 (org-with-wide-buffer
12614 (run-hook-with-args-until-failure
12615 'org-blocker-hook change-plist))))
12616 (if (org-called-interactively-p 'interactive)
12617 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12618 this org-state org-block-entry-blocking)
12619 ;; fail silently
12620 (message "TODO state change from %s to %s blocked (by \"%s\")"
12621 this org-state org-block-entry-blocking)
12622 (throw 'exit nil))))
12623 (store-match-data match-data)
12624 (replace-match next t t)
12625 (cond ((equal this org-state)
12626 (message "TODO state was already %s" (org-trim next)))
12627 ((pos-visible-in-window-p hl-pos)
12628 (message "TODO state changed to %s" (org-trim next))))
12629 (unless head
12630 (setq head (org-get-todo-sequence-head org-state)
12631 ass (assoc head org-todo-kwd-alist)
12632 interpret (nth 1 ass)
12633 done-word (nth 3 ass)
12634 final-done-word (nth 4 ass)))
12635 (when (memq arg '(nextset previousset))
12636 (message "Keyword-Set %d/%d: %s"
12637 (- (length org-todo-sets) -1
12638 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12639 (length org-todo-sets)
12640 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12641 (setq org-last-todo-state-is-todo
12642 (not (member org-state org-done-keywords)))
12643 (setq now-done-p (and (member org-state org-done-keywords)
12644 (not (member this org-done-keywords))))
12645 (and logging (org-local-logging logging))
12646 (when (and (or org-todo-log-states org-log-done)
12647 (not (eq org-inhibit-logging t))
12648 (not (memq arg '(nextset previousset))))
12649 ;; we need to look at recording a time and note
12650 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12651 (nth 2 (assoc this org-todo-log-states))))
12652 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12653 (setq dolog 'time))
12654 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12655 (and org-state
12656 (member org-state org-not-done-keywords)
12657 (not (member this org-not-done-keywords))))
12658 ;; This is now a todo state and was not one before
12659 ;; If there was a CLOSED time stamp, get rid of it.
12660 (org-add-planning-info nil nil 'closed))
12661 (when (and now-done-p org-log-done)
12662 ;; It is now done, and it was not done before
12663 (org-add-planning-info 'closed (org-current-effective-time))
12664 (if (and (not dolog) (eq 'note org-log-done))
12665 (org-add-log-setup 'done org-state this 'findpos 'note)))
12666 (when (and org-state dolog)
12667 ;; This is a non-nil state, and we need to log it
12668 (org-add-log-setup 'state org-state this 'findpos dolog)))
12669 ;; Fixup tag positioning
12670 (org-todo-trigger-tag-changes org-state)
12671 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12672 (when org-provide-todo-statistics
12673 (org-update-parent-todo-statistics))
12674 (run-hooks 'org-after-todo-state-change-hook)
12675 (if (and arg (not (member org-state org-done-keywords)))
12676 (setq head (org-get-todo-sequence-head org-state)))
12677 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12678 ;; Do we need to trigger a repeat?
12679 (when now-done-p
12680 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12681 ;; This is for the agenda, take a snapshot of the headline.
12682 (save-match-data
12683 (setq org-agenda-headline-snapshot-before-repeat
12684 (org-get-heading))))
12685 (org-auto-repeat-maybe org-state))
12686 ;; Fixup cursor location if close to the keyword
12687 (if (and (outline-on-heading-p)
12688 (not (bolp))
12689 (save-excursion (beginning-of-line 1)
12690 (looking-at org-todo-line-regexp))
12691 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12692 (progn
12693 (goto-char (or (match-end 2) (match-end 1)))
12694 (and (looking-at " ") (just-one-space))))
12695 (when org-trigger-hook
12696 (save-excursion
12697 (run-hook-with-args 'org-trigger-hook change-plist)))
12698 (when commentp (org-toggle-comment))))))))
12700 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12701 "Block turning an entry into a TODO, using the hierarchy.
12702 This checks whether the current task should be blocked from state
12703 changes. Such blocking occurs when:
12705 1. The task has children which are not all in a completed state.
12707 2. A task has a parent with the property :ORDERED:, and there
12708 are siblings prior to the current task with incomplete
12709 status.
12711 3. The parent of the task is blocked because it has siblings that should
12712 be done first, or is child of a block grandparent TODO entry."
12714 (if (not org-enforce-todo-dependencies)
12715 t ; if locally turned off don't block
12716 (catch 'dont-block
12717 ;; If this is not a todo state change, or if this entry is already DONE,
12718 ;; do not block
12719 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12720 (member (plist-get change-plist :from)
12721 (cons 'done org-done-keywords))
12722 (member (plist-get change-plist :to)
12723 (cons 'todo org-not-done-keywords))
12724 (not (plist-get change-plist :to)))
12725 (throw 'dont-block t))
12726 ;; If this task has children, and any are undone, it's blocked
12727 (save-excursion
12728 (org-back-to-heading t)
12729 (let ((this-level (funcall outline-level)))
12730 (outline-next-heading)
12731 (let ((child-level (funcall outline-level)))
12732 (while (and (not (eobp))
12733 (> child-level this-level))
12734 ;; this todo has children, check whether they are all
12735 ;; completed
12736 (if (and (not (org-entry-is-done-p))
12737 (org-entry-is-todo-p))
12738 (progn (setq org-block-entry-blocking (org-get-heading))
12739 (throw 'dont-block nil)))
12740 (outline-next-heading)
12741 (setq child-level (funcall outline-level))))))
12742 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12743 ;; any previous siblings are undone, it's blocked
12744 (save-excursion
12745 (org-back-to-heading t)
12746 (let* ((pos (point))
12747 (parent-pos (and (org-up-heading-safe) (point))))
12748 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12749 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12750 (forward-line 1)
12751 (re-search-forward org-not-done-heading-regexp pos t))
12752 (setq org-block-entry-blocking (match-string 0))
12753 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12754 ;; Search further up the hierarchy, to see if an ancestor is blocked
12755 (while t
12756 (goto-char parent-pos)
12757 (if (not (looking-at org-not-done-heading-regexp))
12758 (throw 'dont-block t)) ; do not block, parent is not a TODO
12759 (setq pos (point))
12760 (setq parent-pos (and (org-up-heading-safe) (point)))
12761 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12762 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12763 (forward-line 1)
12764 (re-search-forward org-not-done-heading-regexp pos t)
12765 (setq org-block-entry-blocking (org-get-heading)))
12766 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12768 (defcustom org-track-ordered-property-with-tag nil
12769 "Should the ORDERED property also be shown as a tag?
12770 The ORDERED property decides if an entry should require subtasks to be
12771 completed in sequence. Since a property is not very visible, setting
12772 this option means that toggling the ORDERED property with the command
12773 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12774 not relevant for the behavior, but it makes things more visible.
12776 Note that toggling the tag with tags commands will not change the property
12777 and therefore not influence behavior!
12779 This can be t, meaning the tag ORDERED should be used, It can also be a
12780 string to select a different tag for this task."
12781 :group 'org-todo
12782 :type '(choice
12783 (const :tag "No tracking" nil)
12784 (const :tag "Track with ORDERED tag" t)
12785 (string :tag "Use other tag")))
12787 (defun org-toggle-ordered-property ()
12788 "Toggle the ORDERED property of the current entry.
12789 For better visibility, you can track the value of this property with a tag.
12790 See variable `org-track-ordered-property-with-tag'."
12791 (interactive)
12792 (let* ((t1 org-track-ordered-property-with-tag)
12793 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12794 (save-excursion
12795 (org-back-to-heading)
12796 (if (org-entry-get nil "ORDERED")
12797 (progn
12798 (org-delete-property "ORDERED")
12799 (and tag (org-toggle-tag tag 'off))
12800 (message "Subtasks can be completed in arbitrary order"))
12801 (org-entry-put nil "ORDERED" "t")
12802 (and tag (org-toggle-tag tag 'on))
12803 (message "Subtasks must be completed in sequence")))))
12805 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12806 (defun org-block-todo-from-checkboxes (change-plist)
12807 "Block turning an entry into a TODO, using checkboxes.
12808 This checks whether the current task should be blocked from state
12809 changes because there are unchecked boxes in this entry."
12810 (if (not org-enforce-todo-checkbox-dependencies)
12811 t ; if locally turned off don't block
12812 (catch 'dont-block
12813 ;; If this is not a todo state change, or if this entry is already DONE,
12814 ;; do not block
12815 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12816 (member (plist-get change-plist :from)
12817 (cons 'done org-done-keywords))
12818 (member (plist-get change-plist :to)
12819 (cons 'todo org-not-done-keywords))
12820 (not (plist-get change-plist :to)))
12821 (throw 'dont-block t))
12822 ;; If this task has checkboxes that are not checked, it's blocked
12823 (save-excursion
12824 (org-back-to-heading t)
12825 (let ((beg (point)) end)
12826 (outline-next-heading)
12827 (setq end (point))
12828 (goto-char beg)
12829 (if (org-list-search-forward
12830 (concat (org-item-beginning-re)
12831 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12832 "\\[[- ]\\]")
12833 end t)
12834 (progn
12835 (if (boundp 'org-blocked-by-checkboxes)
12836 (setq org-blocked-by-checkboxes t))
12837 (throw 'dont-block nil)))))
12838 t))) ; do not block
12840 (defun org-entry-blocked-p ()
12841 "Is the current entry blocked?"
12842 (org-with-silent-modifications
12843 (if (org-entry-get nil "NOBLOCKING")
12844 nil ;; Never block this entry
12845 (not (run-hook-with-args-until-failure
12846 'org-blocker-hook
12847 (list :type 'todo-state-change
12848 :position (point)
12849 :from 'todo
12850 :to 'done))))))
12852 (defun org-update-statistics-cookies (all)
12853 "Update the statistics cookie, either from TODO or from checkboxes.
12854 This should be called with the cursor in a line with a statistics cookie."
12855 (interactive "P")
12856 (if all
12857 (progn
12858 (org-update-checkbox-count 'all)
12859 (org-map-entries 'org-update-parent-todo-statistics))
12860 (if (not (org-at-heading-p))
12861 (org-update-checkbox-count)
12862 (let ((pos (point-marker))
12863 end l1 l2)
12864 (ignore-errors (org-back-to-heading t))
12865 (if (not (org-at-heading-p))
12866 (org-update-checkbox-count)
12867 (setq l1 (org-outline-level))
12868 (setq end (save-excursion
12869 (outline-next-heading)
12870 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12871 (point)))
12872 (if (and (save-excursion
12873 (re-search-forward
12874 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12875 (not (save-excursion (re-search-forward
12876 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12877 (org-update-checkbox-count)
12878 (if (and l2 (> l2 l1))
12879 (progn
12880 (goto-char end)
12881 (org-update-parent-todo-statistics))
12882 (goto-char pos)
12883 (beginning-of-line 1)
12884 (while (re-search-forward
12885 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12886 (point-at-eol) t)
12887 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12888 (goto-char pos)
12889 (move-marker pos nil)))))
12891 (defvar org-entry-property-inherited-from) ;; defined below
12892 (defun org-update-parent-todo-statistics ()
12893 "Update any statistics cookie in the parent of the current headline.
12894 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12895 the entire subtree and this will travel up the hierarchy and update
12896 statistics everywhere."
12897 (let* ((prop (save-excursion (org-up-heading-safe)
12898 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12899 (recursive (or (not org-hierarchical-todo-statistics)
12900 (and prop (string-match "\\<recursive\\>" prop))))
12901 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12903 (first t)
12904 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12905 level ltoggle l1 new ndel
12906 (cnt-all 0) (cnt-done 0) is-percent kwd
12907 checkbox-beg ov ovs ove cookie-present)
12908 (catch 'exit
12909 (save-excursion
12910 (beginning-of-line 1)
12911 (setq ltoggle (funcall outline-level))
12912 ;; Three situations are to consider:
12914 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12915 ;; to the top-level ancestor on the headline;
12917 ;; 2. If parent has "recursive" property, repeat up to the
12918 ;; headline setting that property, taking inheritance into
12919 ;; account;
12921 ;; 3. Else, move up to direct parent and proceed only once.
12922 (while (and (setq level (org-up-heading-safe))
12923 (or recursive first)
12924 (>= (point) lim))
12925 (setq first nil cookie-present nil)
12926 (unless (and level
12927 (not (string-match
12928 "\\<checkbox\\>"
12929 (downcase (or (org-entry-get nil "COOKIE_DATA")
12930 "")))))
12931 (throw 'exit nil))
12932 (while (re-search-forward box-re (point-at-eol) t)
12933 (setq cnt-all 0 cnt-done 0 cookie-present t)
12934 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12935 (save-match-data
12936 (unless (outline-next-heading) (throw 'exit nil))
12937 (while (and (looking-at org-complex-heading-regexp)
12938 (> (setq l1 (length (match-string 1))) level))
12939 (setq kwd (and (or recursive (= l1 ltoggle))
12940 (match-string 2)))
12941 (if (or (eq org-provide-todo-statistics 'all-headlines)
12942 (and (eq org-provide-todo-statistics t)
12943 (or (member kwd org-done-keywords)))
12944 (and (listp org-provide-todo-statistics)
12945 (stringp (car org-provide-todo-statistics))
12946 (or (member kwd org-provide-todo-statistics)
12947 (member kwd org-done-keywords)))
12948 (and (listp org-provide-todo-statistics)
12949 (listp (car org-provide-todo-statistics))
12950 (or (member kwd (car org-provide-todo-statistics))
12951 (and (member kwd org-done-keywords)
12952 (member kwd (cadr org-provide-todo-statistics))))))
12953 (setq cnt-all (1+ cnt-all))
12954 (if (eq org-provide-todo-statistics t)
12955 (and kwd (setq cnt-all (1+ cnt-all)))))
12956 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12957 (member kwd org-done-keywords))
12958 (and (listp org-provide-todo-statistics)
12959 (listp (car org-provide-todo-statistics))
12960 (member kwd org-done-keywords)
12961 (member kwd (cadr org-provide-todo-statistics)))
12962 (and (listp org-provide-todo-statistics)
12963 (stringp (car org-provide-todo-statistics))
12964 (member kwd org-done-keywords)))
12965 (setq cnt-done (1+ cnt-done)))
12966 (outline-next-heading)))
12967 (setq new
12968 (if is-percent
12969 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12970 (format "[%d/%d]" cnt-done cnt-all))
12971 ndel (- (match-end 0) checkbox-beg))
12972 ;; handle overlays when updating cookie from column view
12973 (when (setq ov (car (overlays-at checkbox-beg)))
12974 (setq ovs (overlay-start ov) ove (overlay-end ov))
12975 (delete-overlay ov))
12976 (goto-char checkbox-beg)
12977 (insert new)
12978 (delete-region (point) (+ (point) ndel))
12979 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12980 (when ov (move-overlay ov ovs ove)))
12981 (when cookie-present
12982 (run-hook-with-args 'org-after-todo-statistics-hook
12983 cnt-done (- cnt-all cnt-done))))))
12984 (run-hooks 'org-todo-statistics-hook)))
12986 (defvar org-after-todo-statistics-hook nil
12987 "Hook that is called after a TODO statistics cookie has been updated.
12988 Each function is called with two arguments: the number of not-done entries
12989 and the number of done entries.
12991 For example, the following function, when added to this hook, will switch
12992 an entry to DONE when all children are done, and back to TODO when new
12993 entries are set to a TODO status. Note that this hook is only called
12994 when there is a statistics cookie in the headline!
12996 (defun org-summary-todo (n-done n-not-done)
12997 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12998 (let (org-log-done org-log-states) ; turn off logging
12999 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13002 (defvar org-todo-statistics-hook nil
13003 "Hook that is run whenever Org thinks TODO statistics should be updated.
13004 This hook runs even if there is no statistics cookie present, in which case
13005 `org-after-todo-statistics-hook' would not run.")
13007 (defun org-todo-trigger-tag-changes (state)
13008 "Apply the changes defined in `org-todo-state-tags-triggers'."
13009 (let ((l org-todo-state-tags-triggers)
13010 changes)
13011 (when (or (not state) (equal state ""))
13012 (setq changes (append changes (cdr (assoc "" l)))))
13013 (when (and (stringp state) (> (length state) 0))
13014 (setq changes (append changes (cdr (assoc state l)))))
13015 (when (member state org-not-done-keywords)
13016 (setq changes (append changes (cdr (assoc 'todo l)))))
13017 (when (member state org-done-keywords)
13018 (setq changes (append changes (cdr (assoc 'done l)))))
13019 (dolist (c changes)
13020 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13022 (defun org-local-logging (value)
13023 "Get logging settings from a property VALUE."
13024 (let* (words w a)
13025 ;; directly set the variables, they are already local.
13026 (setq org-log-done nil
13027 org-log-repeat nil
13028 org-todo-log-states nil)
13029 (setq words (org-split-string value))
13030 (while (setq w (pop words))
13031 (cond
13032 ((setq a (assoc w org-startup-options))
13033 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13034 (set (nth 1 a) (nth 2 a))))
13035 ((setq a (org-extract-log-state-settings w))
13036 (and (member (car a) org-todo-keywords-1)
13037 (push a org-todo-log-states)))))))
13039 (defun org-get-todo-sequence-head (kwd)
13040 "Return the head of the TODO sequence to which KWD belongs.
13041 If KWD is not set, check if there is a text property remembering the
13042 right sequence."
13043 (let (p)
13044 (cond
13045 ((not kwd)
13046 (or (get-text-property (point-at-bol) 'org-todo-head)
13047 (progn
13048 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13049 nil (point-at-eol)))
13050 (get-text-property p 'org-todo-head))))
13051 ((not (member kwd org-todo-keywords-1))
13052 (car org-todo-keywords-1))
13053 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13055 (defun org-fast-todo-selection ()
13056 "Fast TODO keyword selection with single keys.
13057 Returns the new TODO keyword, or nil if no state change should occur."
13058 (let* ((fulltable org-todo-key-alist)
13059 (done-keywords org-done-keywords) ;; needed for the faces.
13060 (maxlen (apply 'max (mapcar
13061 (lambda (x)
13062 (if (stringp (car x)) (string-width (car x)) 0))
13063 fulltable)))
13064 (expert nil)
13065 (fwidth (+ maxlen 3 1 3))
13066 (ncol (/ (- (window-width) 4) fwidth))
13067 tg cnt e c tbl
13068 groups ingroup)
13069 (save-excursion
13070 (save-window-excursion
13071 (if expert
13072 (set-buffer (get-buffer-create " *Org todo*"))
13073 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13074 (erase-buffer)
13075 (org-set-local 'org-done-keywords done-keywords)
13076 (setq tbl fulltable cnt 0)
13077 (while (setq e (pop tbl))
13078 (cond
13079 ((equal e '(:startgroup))
13080 (push '() groups) (setq ingroup t)
13081 (when (not (= cnt 0))
13082 (setq cnt 0)
13083 (insert "\n"))
13084 (insert "{ "))
13085 ((equal e '(:endgroup))
13086 (setq ingroup nil cnt 0)
13087 (insert "}\n"))
13088 ((equal e '(:newline))
13089 (when (not (= cnt 0))
13090 (setq cnt 0)
13091 (insert "\n")
13092 (setq e (car tbl))
13093 (while (equal (car tbl) '(:newline))
13094 (insert "\n")
13095 (setq tbl (cdr tbl)))))
13097 (setq tg (car e) c (cdr e))
13098 (if ingroup (push tg (car groups)))
13099 (setq tg (org-add-props tg nil 'face
13100 (org-get-todo-face tg)))
13101 (if (and (= cnt 0) (not ingroup)) (insert " "))
13102 (insert "[" c "] " tg (make-string
13103 (- fwidth 4 (length tg)) ?\ ))
13104 (when (= (setq cnt (1+ cnt)) ncol)
13105 (insert "\n")
13106 (if ingroup (insert " "))
13107 (setq cnt 0)))))
13108 (insert "\n")
13109 (goto-char (point-min))
13110 (if (not expert) (org-fit-window-to-buffer))
13111 (message "[a-z..]:Set [SPC]:clear")
13112 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13113 (cond
13114 ((or (= c ?\C-g)
13115 (and (= c ?q) (not (rassoc c fulltable))))
13116 (setq quit-flag t))
13117 ((= c ?\ ) nil)
13118 ((setq e (rassoc c fulltable) tg (car e))
13120 (t (setq quit-flag t)))))))
13122 (defun org-entry-is-todo-p ()
13123 (member (org-get-todo-state) org-not-done-keywords))
13125 (defun org-entry-is-done-p ()
13126 (member (org-get-todo-state) org-done-keywords))
13128 (defun org-get-todo-state ()
13129 "Return the TODO keyword of the current subtree."
13130 (save-excursion
13131 (org-back-to-heading t)
13132 (and (looking-at org-todo-line-regexp)
13133 (match-end 2)
13134 (match-string 2))))
13136 (defun org-at-date-range-p (&optional inactive-ok)
13137 "Is the cursor inside a date range?"
13138 (interactive)
13139 (save-excursion
13140 (catch 'exit
13141 (let ((pos (point)))
13142 (skip-chars-backward "^[<\r\n")
13143 (skip-chars-backward "<[")
13144 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13145 (>= (match-end 0) pos)
13146 (throw 'exit t))
13147 (skip-chars-backward "^<[\r\n")
13148 (skip-chars-backward "<[")
13149 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13150 (>= (match-end 0) pos)
13151 (throw 'exit t)))
13152 nil)))
13154 (defun org-get-repeat (&optional tagline)
13155 "Check if there is a deadline/schedule with repeater in this entry."
13156 (save-match-data
13157 (save-excursion
13158 (org-back-to-heading t)
13159 (and (re-search-forward (if tagline
13160 (concat tagline "\\s-*" org-repeat-re)
13161 org-repeat-re)
13162 (org-entry-end-position) t)
13163 (match-string-no-properties 1)))))
13165 (defvar org-last-changed-timestamp)
13166 (defvar org-last-inserted-timestamp)
13167 (defvar org-log-post-message)
13168 (defvar org-log-note-purpose)
13169 (defvar org-log-note-how nil)
13170 (defvar org-log-note-extra)
13171 (defun org-auto-repeat-maybe (done-word)
13172 "Check if the current headline contains a repeated deadline/schedule.
13173 If yes, set TODO state back to what it was and change the base date
13174 of repeating deadline/scheduled time stamps to new date.
13175 This function is run automatically after each state change to a DONE state."
13176 ;; last-state is dynamically scoped into this function
13177 (let* ((repeat (org-get-repeat))
13178 (aa (assoc org-last-state org-todo-kwd-alist))
13179 (interpret (nth 1 aa))
13180 (head (nth 2 aa))
13181 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13182 (msg "Entry repeats: ")
13183 (org-log-done nil)
13184 (org-todo-log-states nil)
13185 re type n what ts time to-state)
13186 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13187 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13188 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13189 org-todo-repeat-to-state))
13190 (unless (and to-state (member to-state org-todo-keywords-1))
13191 (setq to-state (if (eq interpret 'type) org-last-state head)))
13192 (org-todo to-state)
13193 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13194 (org-entry-put nil "LAST_REPEAT" (format-time-string
13195 (org-time-stamp-format t t))))
13196 (when org-log-repeat
13197 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13198 (memq 'org-add-log-note post-command-hook))
13199 ;; OK, we are already setup for some record
13200 (if (eq org-log-repeat 'note)
13201 ;; make sure we take a note, not only a time stamp
13202 (setq org-log-note-how 'note))
13203 ;; Set up for taking a record
13204 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13205 org-last-state
13206 'findpos org-log-repeat)))
13207 (org-back-to-heading t)
13208 (org-add-planning-info nil nil 'closed)
13209 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13210 org-deadline-time-regexp "\\)\\|\\("
13211 org-ts-regexp "\\)"))
13212 (while (re-search-forward
13213 re (save-excursion (outline-next-heading) (point)) t)
13214 (setq type (if (match-end 1) org-scheduled-string
13215 (if (match-end 3) org-deadline-string "Plain:"))
13216 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13217 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13218 (setq n (string-to-number (match-string 2 ts))
13219 what (match-string 3 ts))
13220 (if (equal what "w") (setq n (* n 7) what "d"))
13221 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13222 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13223 ;; Preparation, see if we need to modify the start date for the change
13224 (when (match-end 1)
13225 (setq time (save-match-data (org-time-string-to-time ts)))
13226 (cond
13227 ((equal (match-string 1 ts) ".")
13228 ;; Shift starting date to today
13229 (org-timestamp-change
13230 (- (org-today) (time-to-days time))
13231 'day))
13232 ((equal (match-string 1 ts) "+")
13233 (let ((nshiftmax 10) (nshift 0))
13234 (while (or (= nshift 0)
13235 (<= (time-to-days time)
13236 (time-to-days (current-time))))
13237 (when (= (incf nshift) nshiftmax)
13238 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13239 (user-error "Abort")))
13240 (org-timestamp-change n (cdr (assoc what whata)))
13241 (org-at-timestamp-p t)
13242 (setq ts (match-string 1))
13243 (setq time (save-match-data (org-time-string-to-time ts)))))
13244 (org-timestamp-change (- n) (cdr (assoc what whata)))
13245 ;; rematch, so that we have everything in place for the real shift
13246 (org-at-timestamp-p t)
13247 (setq ts (match-string 1))
13248 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13249 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13250 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13251 (setq org-log-post-message msg)
13252 (message "%s" msg))))
13254 (defun org-show-todo-tree (arg)
13255 "Make a compact tree which shows all headlines marked with TODO.
13256 The tree will show the lines where the regexp matches, and all higher
13257 headlines above the match.
13258 With a \\[universal-argument] prefix, prompt for a regexp to match.
13259 With a numeric prefix N, construct a sparse tree for the Nth element
13260 of `org-todo-keywords-1'."
13261 (interactive "P")
13262 (let ((case-fold-search nil)
13263 (kwd-re
13264 (cond ((null arg) org-not-done-regexp)
13265 ((equal arg '(4))
13266 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13267 (mapcar 'list org-todo-keywords-1))))
13268 (concat "\\("
13269 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13270 "\\)\\>")))
13271 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13272 (regexp-quote (nth (1- (prefix-numeric-value arg))
13273 org-todo-keywords-1)))
13274 (t (user-error "Invalid prefix argument: %s" arg)))))
13275 (message "%d TODO entries found"
13276 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13278 (defun org-deadline (arg &optional time)
13279 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13280 With one universal prefix argument, remove any deadline from the item.
13281 With two universal prefix arguments, prompt for a warning delay.
13282 With argument TIME, set the deadline at the corresponding date. TIME
13283 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13284 (interactive "P")
13285 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13286 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13287 'region-start-level 'region))
13288 org-loop-over-headlines-in-active-region)
13289 (org-map-entries
13290 `(org-deadline ',arg ,time)
13291 org-loop-over-headlines-in-active-region
13292 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13293 (let* ((old-date (org-entry-get nil "DEADLINE"))
13294 (old-date-time (if old-date (org-time-string-to-time old-date)))
13295 (repeater (and old-date
13296 (string-match
13297 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13298 old-date)
13299 (match-string 1 old-date))))
13300 (cond
13301 ((equal arg '(4))
13302 (when (and old-date org-log-redeadline)
13303 (org-add-log-setup 'deldeadline nil old-date 'findpos
13304 org-log-redeadline))
13305 (org-remove-timestamp-with-keyword org-deadline-string)
13306 (message "Item no longer has a deadline."))
13307 ((equal arg '(16))
13308 (save-excursion
13309 (org-back-to-heading t)
13310 (if (re-search-forward
13311 org-deadline-time-regexp
13312 (save-excursion (outline-next-heading) (point)) t)
13313 (let* ((rpl0 (match-string 1))
13314 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13315 (replace-match
13316 (concat org-deadline-string
13317 " <" rpl
13318 (format " -%dd"
13319 (abs
13320 (- (time-to-days
13321 (save-match-data
13322 (org-read-date nil t nil "Warn starting from" old-date-time)))
13323 (time-to-days old-date-time))))
13324 ">") t t))
13325 (user-error "No deadline information to update"))))
13327 (org-add-planning-info 'deadline time 'closed)
13328 (when (and old-date org-log-redeadline
13329 (not (equal old-date
13330 (substring org-last-inserted-timestamp 1 -1))))
13331 (org-add-log-setup 'redeadline nil old-date 'findpos
13332 org-log-redeadline))
13333 (when repeater
13334 (save-excursion
13335 (org-back-to-heading t)
13336 (when (re-search-forward (concat org-deadline-string " "
13337 org-last-inserted-timestamp)
13338 (save-excursion
13339 (outline-next-heading) (point)) t)
13340 (goto-char (1- (match-end 0)))
13341 (insert " " repeater)
13342 (setq org-last-inserted-timestamp
13343 (concat (substring org-last-inserted-timestamp 0 -1)
13344 " " repeater
13345 (substring org-last-inserted-timestamp -1))))))
13346 (message "Deadline on %s" org-last-inserted-timestamp))))))
13348 (defun org-schedule (arg &optional time)
13349 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13350 With one universal prefix argument, remove any scheduling date from the item.
13351 With two universal prefix arguments, prompt for a delay cookie.
13352 With argument TIME, scheduled at the corresponding date. TIME can
13353 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13354 (interactive "P")
13355 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13356 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13357 'region-start-level 'region))
13358 org-loop-over-headlines-in-active-region)
13359 (org-map-entries
13360 `(org-schedule ',arg ,time)
13361 org-loop-over-headlines-in-active-region
13362 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13363 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13364 (old-date-time (if old-date (org-time-string-to-time old-date)))
13365 (repeater (and old-date
13366 (string-match
13367 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13368 old-date)
13369 (match-string 1 old-date))))
13370 (cond
13371 ((equal arg '(4))
13372 (progn
13373 (when (and old-date org-log-reschedule)
13374 (org-add-log-setup 'delschedule nil old-date 'findpos
13375 org-log-reschedule))
13376 (org-remove-timestamp-with-keyword org-scheduled-string)
13377 (message "Item is no longer scheduled.")))
13378 ((equal arg '(16))
13379 (save-excursion
13380 (org-back-to-heading t)
13381 (if (re-search-forward
13382 org-scheduled-time-regexp
13383 (save-excursion (outline-next-heading) (point)) t)
13384 (let* ((rpl0 (match-string 1))
13385 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13386 (replace-match
13387 (concat org-scheduled-string
13388 " <" rpl
13389 (format " -%dd"
13390 (abs
13391 (- (time-to-days
13392 (save-match-data
13393 (org-read-date nil t nil "Delay until" old-date-time)))
13394 (time-to-days old-date-time))))
13395 ">") t t))
13396 (user-error "No scheduled information to update"))))
13398 (org-add-planning-info 'scheduled time 'closed)
13399 (when (and old-date org-log-reschedule
13400 (not (equal old-date
13401 (substring org-last-inserted-timestamp 1 -1))))
13402 (org-add-log-setup 'reschedule nil old-date 'findpos
13403 org-log-reschedule))
13404 (when repeater
13405 (save-excursion
13406 (org-back-to-heading t)
13407 (when (re-search-forward (concat org-scheduled-string " "
13408 org-last-inserted-timestamp)
13409 (save-excursion
13410 (outline-next-heading) (point)) t)
13411 (goto-char (1- (match-end 0)))
13412 (insert " " repeater)
13413 (setq org-last-inserted-timestamp
13414 (concat (substring org-last-inserted-timestamp 0 -1)
13415 " " repeater
13416 (substring org-last-inserted-timestamp -1))))))
13417 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13419 (defun org-get-scheduled-time (pom &optional inherit)
13420 "Get the scheduled time as a time tuple, of a format suitable
13421 for calling org-schedule with, or if there is no scheduling,
13422 returns nil."
13423 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13424 (when time
13425 (apply 'encode-time (org-parse-time-string time)))))
13427 (defun org-get-deadline-time (pom &optional inherit)
13428 "Get the deadline as a time tuple, of a format suitable for
13429 calling org-deadline with, or if there is no scheduling, returns
13430 nil."
13431 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13432 (when time
13433 (apply 'encode-time (org-parse-time-string time)))))
13435 (defun org-remove-timestamp-with-keyword (keyword)
13436 "Remove all time stamps with KEYWORD in the current entry."
13437 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13438 beg)
13439 (save-excursion
13440 (org-back-to-heading t)
13441 (setq beg (point))
13442 (outline-next-heading)
13443 (while (re-search-backward re beg t)
13444 (replace-match "")
13445 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13446 (equal (char-before) ?\ ))
13447 (backward-delete-char 1)
13448 (if (string-match "^[ \t]*$" (buffer-substring
13449 (point-at-bol) (point-at-eol)))
13450 (delete-region (point-at-bol)
13451 (min (point-max) (1+ (point-at-eol))))))))))
13453 (defvar org-time-was-given) ; dynamically scoped parameter
13454 (defvar org-end-time-was-given) ; dynamically scoped parameter
13456 (defun org-add-planning-info (what &optional time &rest remove)
13457 "Insert new timestamp with keyword in the line directly after the headline.
13458 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13459 If non is given, the user is prompted for a date.
13460 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13461 be removed."
13462 (interactive)
13463 (let (org-time-was-given org-end-time-was-given default-time default-input)
13464 (catch 'exit
13465 (when (and (memq what '(scheduled deadline))
13466 (or (not time)
13467 (and (stringp time)
13468 (string-match "^[-+]+[0-9]" time))))
13469 ;; Try to get a default date/time from existing timestamp
13470 (save-excursion
13471 (org-back-to-heading t)
13472 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13473 (when (re-search-forward (if (eq what 'scheduled)
13474 org-scheduled-time-regexp
13475 org-deadline-time-regexp)
13476 end t)
13477 (setq ts (match-string 1)
13478 default-time (apply 'encode-time (org-parse-time-string ts))
13479 default-input (and ts (org-get-compact-tod ts)))))))
13480 (when what
13481 (setq time
13482 (if (stringp time)
13483 ;; This is a string (relative or absolute), set proper date
13484 (apply 'encode-time
13485 (org-read-date-analyze
13486 time default-time (decode-time default-time)))
13487 ;; If necessary, get the time from the user
13488 (or time (org-read-date nil 'to-time nil nil
13489 default-time default-input)))))
13491 (when (and org-insert-labeled-timestamps-at-point
13492 (memq what '(scheduled deadline)))
13493 (insert
13494 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13495 (org-insert-time-stamp time org-time-was-given
13496 nil nil nil (list org-end-time-was-given))
13497 (setq what nil))
13498 (org-with-wide-buffer
13499 (let (col list elt ts buffer-invisibility-spec)
13500 (org-back-to-heading t)
13501 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13502 (goto-char (match-end 1))
13503 (setq col (current-column))
13504 (goto-char (match-end 0))
13505 (if (eobp) (insert "\n") (forward-char 1))
13506 (unless (or what (org-looking-at-p org-planning-line-re))
13507 ;; Nothing to add, nothing to remove...... :-)
13508 (throw 'exit nil))
13509 (if (and (not (looking-at org-outline-regexp))
13510 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13511 "[^\r\n]*"))
13512 (not (equal (match-string 1) org-clock-string)))
13513 (narrow-to-region (match-beginning 0) (match-end 0))
13514 (insert-before-markers "\n")
13515 (backward-char 1)
13516 (narrow-to-region (point) (point))
13517 (and org-adapt-indentation (org-indent-to-column col)))
13518 ;; Check if we have to remove something.
13519 (setq list (cons what remove))
13520 (while list
13521 (setq elt (pop list))
13522 (when (or (and (eq elt 'scheduled)
13523 (re-search-forward org-scheduled-time-regexp nil t))
13524 (and (eq elt 'deadline)
13525 (re-search-forward org-deadline-time-regexp nil t))
13526 (and (eq elt 'closed)
13527 (re-search-forward org-closed-time-regexp nil t)))
13528 (replace-match "")
13529 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13530 (and (looking-at "[ \t]+") (replace-match ""))
13531 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13532 (when what
13533 (insert
13534 (if (or (bolp) (eq (char-before) ?\s)) "" " ")
13535 (cond ((eq what 'scheduled) org-scheduled-string)
13536 ((eq what 'deadline) org-deadline-string)
13537 ((eq what 'closed) org-closed-string))
13538 " ")
13539 (setq ts (org-insert-time-stamp
13540 time
13541 (or org-time-was-given
13542 (and (eq what 'closed) org-log-done-with-time))
13543 (eq what 'closed)
13544 nil nil (list org-end-time-was-given)))
13545 (unless (or (bolp)
13546 (eq (char-before) ?\s)
13547 (memq (char-after) '(?\n ?\s))
13548 (eobp))
13549 (insert " "))
13550 (end-of-line 1))
13551 (goto-char (point-min))
13552 (widen)
13553 (when (and (looking-at "[ \t]*\n") (eq (char-before) ?\n))
13554 (delete-region (1- (point)) (line-end-position)))
13555 ts)))))
13557 (defvar org-log-note-marker (make-marker))
13558 (defvar org-log-note-purpose nil)
13559 (defvar org-log-note-state nil)
13560 (defvar org-log-note-previous-state nil)
13561 (defvar org-log-note-extra nil)
13562 (defvar org-log-note-window-configuration nil)
13563 (defvar org-log-note-return-to (make-marker))
13564 (defvar org-log-note-effective-time nil
13565 "Remembered current time so that dynamically scoped
13566 `org-extend-today-until' affects tha timestamps in state change
13567 log")
13569 (defvar org-log-post-message nil
13570 "Message to be displayed after a log note has been stored.
13571 The auto-repeater uses this.")
13573 (defun org-add-note ()
13574 "Add a note to the current entry.
13575 This is done in the same way as adding a state change note."
13576 (interactive)
13577 (org-add-log-setup 'note nil nil 'findpos nil))
13579 (defun org-log-beginning (&optional create)
13580 "Return expected start of log notes in current entry.
13581 When optional argument CREATE is non-nil, the function creates
13582 a drawer to store notes, if necessary. Returned position ignores
13583 narrowing."
13584 (org-with-wide-buffer
13585 (org-back-to-heading t)
13586 ;; Skip planning info and property drawer.
13587 (forward-line)
13588 (when (org-looking-at-p org-planning-line-re) (forward-line))
13589 (when (looking-at org-property-drawer-re)
13590 (goto-char (match-end 0))
13591 (forward-line))
13592 (if (org-at-heading-p) (point)
13593 (let ((end (save-excursion (outline-next-heading) (point)))
13594 (drawer (cond ((stringp org-log-into-drawer) org-log-into-drawer)
13595 (org-log-into-drawer "LOGBOOK"))))
13596 (cond
13597 (drawer
13598 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13599 (case-fold-search t))
13600 (catch 'exit
13601 ;; Try to find existing drawer.
13602 (while (re-search-forward regexp end t)
13603 (let ((element (org-element-at-point)))
13604 (when (eq (org-element-type element) 'drawer)
13605 (let ((cend (org-element-property :contents-end element)))
13606 (when (and (not org-log-states-order-reversed) cend)
13607 (goto-char cend)))
13608 (throw 'exit nil))))
13609 ;; No drawer found. Create one, if permitted.
13610 (when create
13611 (unless (bolp) (insert "\n"))
13612 (let ((beg (point)))
13613 (insert ":" drawer ":\n:END:\n")
13614 (org-indent-region beg (point)))
13615 (end-of-line -1)))))
13616 (org-log-state-notes-insert-after-drawers
13617 (while (and (looking-at org-drawer-regexp)
13618 (progn (goto-char (match-end 0))
13619 (re-search-forward org-property-end-re end t)))
13620 (forward-line)))))
13621 (if (bolp) (point) (line-beginning-position 2)))))
13623 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13624 "Set up the post command hook to take a note.
13625 If this is about to TODO state change, the new state is expected in STATE.
13626 When FINDPOS is non-nil, find the correct position for the note in
13627 the current entry. If not, assume that it can be inserted at point.
13628 HOW is an indicator what kind of note should be created.
13629 EXTRA is additional text that will be inserted into the notes buffer."
13630 (org-with-wide-buffer
13631 (when findpos
13632 (goto-char (org-log-beginning t))
13633 (unless org-log-states-order-reversed
13634 (org-skip-over-state-notes)
13635 (skip-chars-backward " \t\n\r")
13636 (forward-line)))
13637 (move-marker org-log-note-marker (point))
13638 (setq org-log-note-purpose purpose
13639 org-log-note-state state
13640 org-log-note-previous-state prev-state
13641 org-log-note-how how
13642 org-log-note-extra extra
13643 org-log-note-effective-time (org-current-effective-time))
13644 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13646 (defun org-skip-over-state-notes ()
13647 "Skip past the list of State notes in an entry."
13648 (when (ignore-errors (goto-char (org-in-item-p)))
13649 (let* ((struct (org-list-struct))
13650 (prevs (org-list-prevs-alist struct))
13651 (regexp
13652 (concat "[ \t]*- +"
13653 (replace-regexp-in-string
13654 " +" " +"
13655 (org-replace-escapes
13656 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13657 `(("%d" . ,org-ts-regexp-inactive)
13658 ("%D" . ,org-ts-regexp)
13659 ("%s" . "\"\\S-+\"")
13660 ("%S" . "\"\\S-+\"")
13661 ("%t" . ,org-ts-regexp-inactive)
13662 ("%T" . ,org-ts-regexp)
13663 ("%u" . ".*?")
13664 ("%U" . ".*?")))))))
13665 (while (org-looking-at-p regexp)
13666 (goto-char (or (org-list-get-next-item (point) struct prevs)
13667 (org-list-get-item-end (point) struct)))))))
13669 (defun org-add-log-note (&optional purpose)
13670 "Pop up a window for taking a note, and add this note later at point."
13671 (remove-hook 'post-command-hook 'org-add-log-note)
13672 (setq org-log-note-window-configuration (current-window-configuration))
13673 (delete-other-windows)
13674 (move-marker org-log-note-return-to (point))
13675 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13676 (goto-char org-log-note-marker)
13677 (org-switch-to-buffer-other-window "*Org Note*")
13678 (erase-buffer)
13679 (if (memq org-log-note-how '(time state))
13680 (let (current-prefix-arg) (org-store-log-note))
13681 (let ((org-inhibit-startup t)) (org-mode))
13682 (insert (format "# Insert note for %s.
13683 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13684 (cond
13685 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13686 ((eq org-log-note-purpose 'done) "closed todo item")
13687 ((eq org-log-note-purpose 'state)
13688 (format "state change from \"%s\" to \"%s\""
13689 (or org-log-note-previous-state "")
13690 (or org-log-note-state "")))
13691 ((eq org-log-note-purpose 'reschedule)
13692 "rescheduling")
13693 ((eq org-log-note-purpose 'delschedule)
13694 "no longer scheduled")
13695 ((eq org-log-note-purpose 'redeadline)
13696 "changing deadline")
13697 ((eq org-log-note-purpose 'deldeadline)
13698 "removing deadline")
13699 ((eq org-log-note-purpose 'refile)
13700 "refiling")
13701 ((eq org-log-note-purpose 'note)
13702 "this entry")
13703 (t (error "This should not happen")))))
13704 (if org-log-note-extra (insert org-log-note-extra))
13705 (org-set-local 'org-finish-function 'org-store-log-note)
13706 (run-hooks 'org-log-buffer-setup-hook)))
13708 (defvar org-note-abort nil) ; dynamically scoped
13709 (defun org-store-log-note ()
13710 "Finish taking a log note, and insert it to where it belongs."
13711 (let ((txt (buffer-string)))
13712 (kill-buffer (current-buffer))
13713 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13714 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13715 (setq txt (replace-match "" t t txt)))
13716 (if (string-match "\\s-+\\'" txt)
13717 (setq txt (replace-match "" t t txt)))
13718 (setq lines (org-split-string txt "\n"))
13719 (when (and note (string-match "\\S-" note))
13720 (setq note
13721 (org-replace-escapes
13722 note
13723 (list (cons "%u" (user-login-name))
13724 (cons "%U" user-full-name)
13725 (cons "%t" (format-time-string
13726 (org-time-stamp-format 'long 'inactive)
13727 org-log-note-effective-time))
13728 (cons "%T" (format-time-string
13729 (org-time-stamp-format 'long nil)
13730 org-log-note-effective-time))
13731 (cons "%d" (format-time-string
13732 (org-time-stamp-format nil 'inactive)
13733 org-log-note-effective-time))
13734 (cons "%D" (format-time-string
13735 (org-time-stamp-format nil nil)
13736 org-log-note-effective-time))
13737 (cons "%s" (if org-log-note-state
13738 (concat "\"" org-log-note-state "\"")
13739 ""))
13740 (cons "%S" (if org-log-note-previous-state
13741 (concat "\"" org-log-note-previous-state "\"")
13742 "\"\"")))))
13743 (when lines (setq note (concat note " \\\\")))
13744 (push note lines))
13745 (when (or current-prefix-arg org-note-abort)
13746 (when (org-log-into-drawer)
13747 (org-remove-empty-drawer-at org-log-note-marker))
13748 (setq lines nil))
13749 (when lines
13750 (with-current-buffer (marker-buffer org-log-note-marker)
13751 (save-excursion
13752 (goto-char org-log-note-marker)
13753 (move-marker org-log-note-marker nil)
13754 ;; Make sure point is at the beginning of an empty line.
13755 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13756 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13757 ;; In an existing list, add a new item at the top level.
13758 ;; Otherwise, indent line like a regular one.
13759 (let ((itemp (org-in-item-p)))
13760 (if itemp
13761 (org-indent-line-to
13762 (let ((struct (save-excursion
13763 (goto-char itemp) (org-list-struct))))
13764 (org-list-get-ind (org-list-get-top-point struct) struct)))
13765 (org-indent-line)))
13766 (insert (org-list-bullet-string "-") (pop lines))
13767 (let ((ind (org-list-item-body-column (line-beginning-position))))
13768 (dolist (line lines)
13769 (insert "\n")
13770 (org-indent-line-to ind)
13771 (insert line)))
13772 (message "Note stored")
13773 (org-back-to-heading t)
13774 (org-cycle-hide-drawers 'children))
13775 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13776 ;; from within `org-add-log-note' because `buffer-undo-list'
13777 ;; is then modified outside of `org-with-remote-undo'.
13778 (when (eq this-command 'org-agenda-todo)
13779 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13780 ;; Don't add undo information when called from `org-agenda-todo'
13781 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13782 (set-window-configuration org-log-note-window-configuration)
13783 (with-current-buffer (marker-buffer org-log-note-return-to)
13784 (goto-char org-log-note-return-to))
13785 (move-marker org-log-note-return-to nil)
13786 (and org-log-post-message (message "%s" org-log-post-message))))
13788 (defun org-remove-empty-drawer-at (pos)
13789 "Remove an empty drawer at position POS.
13790 POS may also be a marker."
13791 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13792 (org-with-wide-buffer
13793 (goto-char pos)
13794 (let ((drawer (org-element-at-point)))
13795 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13796 (not (org-element-property :contents-begin drawer)))
13797 (delete-region (org-element-property :begin drawer)
13798 (progn (goto-char (org-element-property :end drawer))
13799 (skip-chars-backward " \r\t\n")
13800 (forward-line)
13801 (point))))))))
13803 (defvar org-ts-type nil)
13804 (defun org-sparse-tree (&optional arg type)
13805 "Create a sparse tree, prompt for the details.
13806 This command can create sparse trees. You first need to select the type
13807 of match used to create the tree:
13809 t Show all TODO entries.
13810 T Show entries with a specific TODO keyword.
13811 m Show entries selected by a tags/property match.
13812 p Enter a property name and its value (both with completion on existing
13813 names/values) and show entries with that property.
13814 r Show entries matching a regular expression (`/' can be used as well).
13815 b Show deadlines and scheduled items before a date.
13816 a Show deadlines and scheduled items after a date.
13817 d Show deadlines due within `org-deadline-warning-days'.
13818 D Show deadlines and scheduled items between a date range."
13819 (interactive "P")
13820 (setq type (or type org-sparse-tree-default-date-type))
13821 (setq org-ts-type type)
13822 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13823 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13824 [c]ycle through date types: %s"
13825 (case type
13826 (all "all timestamps")
13827 (scheduled "only scheduled")
13828 (deadline "only deadline")
13829 (active "only active timestamps")
13830 (inactive "only inactive timestamps")
13831 (scheduled-or-deadline "scheduled/deadline")
13832 (closed "with a closed time-stamp")
13833 (otherwise "scheduled/deadline")))
13834 (let ((answer (read-char-exclusive)))
13835 (case answer
13837 (org-sparse-tree
13839 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13840 inactive closed)))))
13841 (?d (call-interactively 'org-check-deadlines))
13842 (?b (call-interactively 'org-check-before-date))
13843 (?a (call-interactively 'org-check-after-date))
13844 (?D (call-interactively 'org-check-dates-range))
13845 (?t (call-interactively 'org-show-todo-tree))
13846 (?T (org-show-todo-tree '(4)))
13847 (?m (call-interactively 'org-match-sparse-tree))
13848 ((?p ?P)
13849 (let* ((kwd (org-icompleting-read
13850 "Property: " (mapcar 'list (org-buffer-property-keys))))
13851 (value (org-icompleting-read
13852 "Value: " (mapcar 'list (org-property-values kwd)))))
13853 (unless (string-match "\\`{.*}\\'" value)
13854 (setq value (concat "\"" value "\"")))
13855 (org-match-sparse-tree arg (concat kwd "=" value))))
13856 ((?r ?R ?/) (call-interactively 'org-occur))
13857 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13859 (defvar org-occur-highlights nil
13860 "List of overlays used for occur matches.")
13861 (make-variable-buffer-local 'org-occur-highlights)
13862 (defvar org-occur-parameters nil
13863 "Parameters of the active org-occur calls.
13864 This is a list, each call to org-occur pushes as cons cell,
13865 containing the regular expression and the callback, onto the list.
13866 The list can contain several entries if `org-occur' has been called
13867 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13868 will only contain one set of parameters. When the highlights are
13869 removed (for example with `C-c C-c', or with the next edit (depending
13870 on `org-remove-highlights-with-change'), this variable is emptied
13871 as well.")
13872 (make-variable-buffer-local 'org-occur-parameters)
13874 (defun org-occur (regexp &optional keep-previous callback)
13875 "Make a compact tree which shows all matches of REGEXP.
13876 The tree will show the lines where the regexp matches, and all higher
13877 headlines above the match. It will also show the heading after the match,
13878 to make sure editing the matching entry is easy.
13879 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13880 call to `org-occur' will be kept, to allow stacking of calls to this
13881 command.
13882 If CALLBACK is non-nil, it is a function which is called to confirm
13883 that the match should indeed be shown."
13884 (interactive "sRegexp: \nP")
13885 (when (equal regexp "")
13886 (user-error "Regexp cannot be empty"))
13887 (unless keep-previous
13888 (org-remove-occur-highlights nil nil t))
13889 (push (cons regexp callback) org-occur-parameters)
13890 (let ((cnt 0))
13891 (save-excursion
13892 (goto-char (point-min))
13893 (if (or (not keep-previous) ; do not want to keep
13894 (not org-occur-highlights)) ; no previous matches
13895 ;; hide everything
13896 (org-overview))
13897 (while (re-search-forward regexp nil t)
13898 (when (or (not callback)
13899 (save-match-data (funcall callback)))
13900 (setq cnt (1+ cnt))
13901 (when org-highlight-sparse-tree-matches
13902 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13903 (org-show-context 'occur-tree))))
13904 (when org-remove-highlights-with-change
13905 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13906 nil 'local))
13907 (unless org-sparse-tree-open-archived-trees
13908 (org-hide-archived-subtrees (point-min) (point-max)))
13909 (run-hooks 'org-occur-hook)
13910 (if (org-called-interactively-p 'interactive)
13911 (message "%d match(es) for regexp %s" cnt regexp))
13912 cnt))
13914 (defun org-occur-next-match (&optional n reset)
13915 "Function for `next-error-function' to find sparse tree matches.
13916 N is the number of matches to move, when negative move backwards.
13917 RESET is entirely ignored - this function always goes back to the
13918 starting point when no match is found."
13919 (let* ((limit (if (< n 0) (point-min) (point-max)))
13920 (search-func (if (< n 0)
13921 'previous-single-char-property-change
13922 'next-single-char-property-change))
13923 (n (abs n))
13924 (pos (point))
13926 (catch 'exit
13927 (while (setq p1 (funcall search-func (point) 'org-type))
13928 (when (equal p1 limit)
13929 (goto-char pos)
13930 (user-error "No more matches"))
13931 (when (equal (get-char-property p1 'org-type) 'org-occur)
13932 (setq n (1- n))
13933 (when (= n 0)
13934 (goto-char p1)
13935 (throw 'exit (point))))
13936 (goto-char p1))
13937 (goto-char p1)
13938 (user-error "No more matches"))))
13940 (defun org-show-context (&optional key)
13941 "Make sure point and context are visible.
13942 How much context is shown depends upon the variables
13943 `org-show-hierarchy-above', `org-show-following-heading',
13944 `org-show-entry-below' and `org-show-siblings'."
13945 (let ((heading-p (org-at-heading-p t))
13946 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13947 (following-p (org-get-alist-option org-show-following-heading key))
13948 (entry-p (org-get-alist-option org-show-entry-below key))
13949 (siblings-p (org-get-alist-option org-show-siblings key)))
13950 ;; Show heading or entry text
13951 (if (and heading-p (not entry-p))
13952 (org-flag-heading nil) ; only show the heading
13953 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13954 (org-show-hidden-entry))) ; show entire entry
13955 (when following-p
13956 ;; Show next sibling, or heading below text
13957 (save-excursion
13958 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13959 (org-flag-heading nil))))
13960 (when siblings-p (org-show-siblings))
13961 (when hierarchy-p
13962 ;; show all higher headings, possibly with siblings
13963 (save-excursion
13964 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13965 (not (bobp)))
13966 (org-flag-heading nil)
13967 (when siblings-p (org-show-siblings)))))))
13969 (defvar org-reveal-start-hook nil
13970 "Hook run before revealing a location.")
13972 (defun org-reveal (&optional siblings)
13973 "Show current entry, hierarchy above it, and the following headline.
13974 This can be used to show a consistent set of context around locations
13975 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13976 not t for the search context.
13978 With optional argument SIBLINGS, on each level of the hierarchy all
13979 siblings are shown. This repairs the tree structure to what it would
13980 look like when opened with hierarchical calls to `org-cycle'.
13981 With double optional argument \\[universal-argument] \\[universal-argument], \
13982 go to the parent and show the
13983 entire tree."
13984 (interactive "P")
13985 (run-hooks 'org-reveal-start-hook)
13986 (let ((org-show-hierarchy-above t)
13987 (org-show-following-heading t)
13988 (org-show-siblings (if siblings t org-show-siblings)))
13989 (org-show-context nil))
13990 (when (equal siblings '(16))
13991 (save-excursion
13992 (when (org-up-heading-safe)
13993 (org-show-subtree)
13994 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13996 (defun org-highlight-new-match (beg end)
13997 "Highlight from BEG to END and mark the highlight is an occur headline."
13998 (let ((ov (make-overlay beg end)))
13999 (overlay-put ov 'face 'secondary-selection)
14000 (overlay-put ov 'org-type 'org-occur)
14001 (push ov org-occur-highlights)))
14003 (defun org-remove-occur-highlights (&optional beg end noremove)
14004 "Remove the occur highlights from the buffer.
14005 BEG and END are ignored. If NOREMOVE is nil, remove this function
14006 from the `before-change-functions' in the current buffer."
14007 (interactive)
14008 (unless org-inhibit-highlight-removal
14009 (mapc 'delete-overlay org-occur-highlights)
14010 (setq org-occur-highlights nil)
14011 (setq org-occur-parameters nil)
14012 (unless noremove
14013 (remove-hook 'before-change-functions
14014 'org-remove-occur-highlights 'local))))
14016 ;;;; Priorities
14018 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14019 "Regular expression matching the priority indicator.")
14021 (defvar org-remove-priority-next-time nil)
14023 (defun org-priority-up ()
14024 "Increase the priority of the current item."
14025 (interactive)
14026 (org-priority 'up))
14028 (defun org-priority-down ()
14029 "Decrease the priority of the current item."
14030 (interactive)
14031 (org-priority 'down))
14033 (defun org-priority (&optional action show)
14034 "Change the priority of an item.
14035 ACTION can be `set', `up', `down', or a character."
14036 (interactive "P")
14037 (if (equal action '(4))
14038 (org-show-priority)
14039 (unless org-enable-priority-commands
14040 (user-error "Priority commands are disabled"))
14041 (setq action (or action 'set))
14042 (let (current new news have remove)
14043 (save-excursion
14044 (org-back-to-heading t)
14045 (if (looking-at org-priority-regexp)
14046 (setq current (string-to-char (match-string 2))
14047 have t))
14048 (cond
14049 ((eq action 'remove)
14050 (setq remove t new ?\ ))
14051 ((or (eq action 'set)
14052 (if (featurep 'xemacs) (characterp action) (integerp action)))
14053 (if (not (eq action 'set))
14054 (setq new action)
14055 (message "Priority %c-%c, SPC to remove: "
14056 org-highest-priority org-lowest-priority)
14057 (save-match-data
14058 (setq new (read-char-exclusive))))
14059 (if (and (= (upcase org-highest-priority) org-highest-priority)
14060 (= (upcase org-lowest-priority) org-lowest-priority))
14061 (setq new (upcase new)))
14062 (cond ((equal new ?\ ) (setq remove t))
14063 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14064 (user-error "Priority must be between `%c' and `%c'"
14065 org-highest-priority org-lowest-priority))))
14066 ((eq action 'up)
14067 (setq new (if have
14068 (1- current) ; normal cycling
14069 ;; last priority was empty
14070 (if (eq last-command this-command)
14071 org-lowest-priority ; wrap around empty to lowest
14072 ;; default
14073 (if org-priority-start-cycle-with-default
14074 org-default-priority
14075 (1- org-default-priority))))))
14076 ((eq action 'down)
14077 (setq new (if have
14078 (1+ current) ; normal cycling
14079 ;; last priority was empty
14080 (if (eq last-command this-command)
14081 org-highest-priority ; wrap around empty to highest
14082 ;; default
14083 (if org-priority-start-cycle-with-default
14084 org-default-priority
14085 (1+ org-default-priority))))))
14086 (t (user-error "Invalid action")))
14087 (if (or (< (upcase new) org-highest-priority)
14088 (> (upcase new) org-lowest-priority))
14089 (if (and (memq action '(up down))
14090 (not have) (not (eq last-command this-command)))
14091 ;; `new' is from default priority
14092 (error
14093 "The default can not be set, see `org-default-priority' why")
14094 ;; normal cycling: `new' is beyond highest/lowest priority
14095 ;; and is wrapped around to the empty priority
14096 (setq remove t)))
14097 (setq news (format "%c" new))
14098 (if have
14099 (if remove
14100 (replace-match "" t t nil 1)
14101 (replace-match news t t nil 2))
14102 (if remove
14103 (user-error "No priority cookie found in line")
14104 (let ((case-fold-search nil))
14105 (looking-at org-todo-line-regexp))
14106 (if (match-end 2)
14107 (progn
14108 (goto-char (match-end 2))
14109 (insert " [#" news "]"))
14110 (goto-char (match-beginning 3))
14111 (insert "[#" news "] "))))
14112 (org-set-tags nil 'align))
14113 (if remove
14114 (message "Priority removed")
14115 (message "Priority of current item set to %s" news)))))
14117 (defun org-show-priority ()
14118 "Show the priority of the current item.
14119 This priority is composed of the main priority given with the [#A] cookies,
14120 and by additional input from the age of a schedules or deadline entry."
14121 (interactive)
14122 (let ((pri (if (eq major-mode 'org-agenda-mode)
14123 (org-get-at-bol 'priority)
14124 (save-excursion
14125 (save-match-data
14126 (beginning-of-line)
14127 (and (looking-at org-heading-regexp)
14128 (org-get-priority (match-string 0))))))))
14129 (message "Priority is %d" (if pri pri -1000))))
14131 (defun org-get-priority (s)
14132 "Find priority cookie and return priority."
14133 (save-match-data
14134 (if (functionp org-get-priority-function)
14135 (funcall org-get-priority-function)
14136 (if (not (string-match org-priority-regexp s))
14137 (* 1000 (- org-lowest-priority org-default-priority))
14138 (* 1000 (- org-lowest-priority
14139 (string-to-char (match-string 2 s))))))))
14141 ;;;; Tags
14143 (defvar org-agenda-archives-mode)
14144 (defvar org-map-continue-from nil
14145 "Position from where mapping should continue.
14146 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14148 (defvar org-scanner-tags nil
14149 "The current tag list while the tags scanner is running.")
14150 (defvar org-trust-scanner-tags nil
14151 "Should `org-get-tags-at' use the tags for the scanner.
14152 This is for internal dynamical scoping only.
14153 When this is non-nil, the function `org-get-tags-at' will return the value
14154 of `org-scanner-tags' instead of building the list by itself. This
14155 can lead to large speed-ups when the tags scanner is used in a file with
14156 many entries, and when the list of tags is retrieved, for example to
14157 obtain a list of properties. Building the tags list for each entry in such
14158 a file becomes an N^2 operation - but with this variable set, it scales
14159 as N.")
14161 (defun org-scan-tags (action matcher todo-only &optional start-level)
14162 "Scan headline tags with inheritance and produce output ACTION.
14164 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14165 or `agenda' to produce an entry list for an agenda view. It can also be
14166 a Lisp form or a function that should be called at each matched headline, in
14167 this case the return value is a list of all return values from these calls.
14169 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14170 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14171 only lines with a not-done TODO keyword are included in the output.
14172 This should be the same variable that was scoped into
14173 and set by `org-make-tags-matcher' when it constructed MATCHER.
14175 START-LEVEL can be a string with asterisks, reducing the scope to
14176 headlines matching this string."
14177 (require 'org-agenda)
14178 (let* ((re (concat "^"
14179 (if start-level
14180 ;; Get the correct level to match
14181 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14182 org-outline-regexp)
14183 " *\\(\\<\\("
14184 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14185 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14186 (props (list 'face 'default
14187 'done-face 'org-agenda-done
14188 'undone-face 'default
14189 'mouse-face 'highlight
14190 'org-not-done-regexp org-not-done-regexp
14191 'org-todo-regexp org-todo-regexp
14192 'org-complex-heading-regexp org-complex-heading-regexp
14193 'help-echo
14194 (format "mouse-2 or RET jump to org file %s"
14195 (abbreviate-file-name
14196 (or (buffer-file-name (buffer-base-buffer))
14197 (buffer-name (buffer-base-buffer)))))))
14198 (org-map-continue-from nil)
14199 lspos tags tags-list
14200 (tags-alist (list (cons 0 org-file-tags)))
14201 (llast 0) rtn rtn1 level category i txt
14202 todo marker entry priority)
14203 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14204 (setq action (list 'lambda nil action)))
14205 (save-excursion
14206 (goto-char (point-min))
14207 (when (eq action 'sparse-tree)
14208 (org-overview)
14209 (org-remove-occur-highlights))
14210 (while (let (case-fold-search)
14211 (re-search-forward re nil t))
14212 (setq org-map-continue-from nil)
14213 (catch :skip
14214 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14215 tags (if (match-end 4) (org-match-string-no-properties 4)))
14216 (goto-char (setq lspos (match-beginning 0)))
14217 (setq level (org-reduced-level (org-outline-level))
14218 category (org-get-category))
14219 (setq i llast llast level)
14220 ;; remove tag lists from same and sublevels
14221 (while (>= i level)
14222 (when (setq entry (assoc i tags-alist))
14223 (setq tags-alist (delete entry tags-alist)))
14224 (setq i (1- i)))
14225 ;; add the next tags
14226 (when tags
14227 (setq tags (org-split-string tags ":")
14228 tags-alist
14229 (cons (cons level tags) tags-alist)))
14230 ;; compile tags for current headline
14231 (setq tags-list
14232 (if org-use-tag-inheritance
14233 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14234 tags)
14235 org-scanner-tags tags-list)
14236 (when org-use-tag-inheritance
14237 (setcdr (car tags-alist)
14238 (mapcar (lambda (x)
14239 (setq x (copy-sequence x))
14240 (org-add-prop-inherited x))
14241 (cdar tags-alist))))
14242 (when (and tags org-use-tag-inheritance
14243 (or (not (eq t org-use-tag-inheritance))
14244 org-tags-exclude-from-inheritance))
14245 ;; selective inheritance, remove uninherited ones
14246 (setcdr (car tags-alist)
14247 (org-remove-uninherited-tags (cdar tags-alist))))
14248 (when (and
14250 ;; eval matcher only when the todo condition is OK
14251 (and (or (not todo-only) (member todo org-not-done-keywords))
14252 (let ((case-fold-search t) (org-trust-scanner-tags t))
14253 (eval matcher)))
14255 ;; Call the skipper, but return t if it does not skip,
14256 ;; so that the `and' form continues evaluating
14257 (progn
14258 (unless (eq action 'sparse-tree) (org-agenda-skip))
14261 ;; Check if timestamps are deselecting this entry
14262 (or (not todo-only)
14263 (and (member todo org-not-done-keywords)
14264 (or (not org-agenda-tags-todo-honor-ignore-options)
14265 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14267 ;; select this headline
14268 (cond
14269 ((eq action 'sparse-tree)
14270 (and org-highlight-sparse-tree-matches
14271 (org-get-heading) (match-end 0)
14272 (org-highlight-new-match
14273 (match-beginning 1) (match-end 1)))
14274 (org-show-context 'tags-tree))
14275 ((eq action 'agenda)
14276 (setq txt (org-agenda-format-item
14278 (concat
14279 (if (eq org-tags-match-list-sublevels 'indented)
14280 (make-string (1- level) ?.) "")
14281 (org-get-heading))
14282 level category
14283 tags-list)
14284 priority (org-get-priority txt))
14285 (goto-char lspos)
14286 (setq marker (org-agenda-new-marker))
14287 (org-add-props txt props
14288 'org-marker marker 'org-hd-marker marker 'org-category category
14289 'todo-state todo
14290 'priority priority 'type "tagsmatch")
14291 (push txt rtn))
14292 ((functionp action)
14293 (setq org-map-continue-from nil)
14294 (save-excursion
14295 (setq rtn1 (funcall action))
14296 (push rtn1 rtn)))
14297 (t (user-error "Invalid action")))
14299 ;; if we are to skip sublevels, jump to end of subtree
14300 (unless org-tags-match-list-sublevels
14301 (org-end-of-subtree t)
14302 (backward-char 1))))
14303 ;; Get the correct position from where to continue
14304 (if org-map-continue-from
14305 (goto-char org-map-continue-from)
14306 (and (= (point) lspos) (end-of-line 1)))))
14307 (when (and (eq action 'sparse-tree)
14308 (not org-sparse-tree-open-archived-trees))
14309 (org-hide-archived-subtrees (point-min) (point-max)))
14310 (nreverse rtn)))
14312 (defun org-remove-uninherited-tags (tags)
14313 "Remove all tags that are not inherited from the list TAGS."
14314 (cond
14315 ((eq org-use-tag-inheritance t)
14316 (if org-tags-exclude-from-inheritance
14317 (org-delete-all org-tags-exclude-from-inheritance tags)
14318 tags))
14319 ((not org-use-tag-inheritance) nil)
14320 ((stringp org-use-tag-inheritance)
14321 (delq nil (mapcar
14322 (lambda (x)
14323 (if (and (string-match org-use-tag-inheritance x)
14324 (not (member x org-tags-exclude-from-inheritance)))
14325 x nil))
14326 tags)))
14327 ((listp org-use-tag-inheritance)
14328 (delq nil (mapcar
14329 (lambda (x)
14330 (if (member x org-use-tag-inheritance) x nil))
14331 tags)))))
14333 (defun org-match-sparse-tree (&optional todo-only match)
14334 "Create a sparse tree according to tags string MATCH.
14335 MATCH can contain positive and negative selection of tags, like
14336 \"+WORK+URGENT-WITHBOSS\".
14337 If optional argument TODO-ONLY is non-nil, only select lines that are
14338 also TODO lines."
14339 (interactive "P")
14340 (org-agenda-prepare-buffers (list (current-buffer)))
14341 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14343 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14345 (defvar org-cached-props nil)
14346 (defun org-cached-entry-get (pom property)
14347 (if (or (eq t org-use-property-inheritance)
14348 (and (stringp org-use-property-inheritance)
14349 (string-match org-use-property-inheritance property))
14350 (and (listp org-use-property-inheritance)
14351 (member property org-use-property-inheritance)))
14352 ;; Caching is not possible, check it directly
14353 (org-entry-get pom property 'inherit)
14354 ;; Get all properties, so that we can do complicated checks easily
14355 (cdr (assoc property (or org-cached-props
14356 (setq org-cached-props
14357 (org-entry-properties pom)))))))
14359 (defun org-global-tags-completion-table (&optional files)
14360 "Return the list of all tags in all agenda buffer/files.
14361 Optional FILES argument is a list of files which can be used
14362 instead of the agenda files."
14363 (save-excursion
14364 (org-uniquify
14365 (delq nil
14366 (apply 'append
14367 (mapcar
14368 (lambda (file)
14369 (set-buffer (find-file-noselect file))
14370 (append (org-get-buffer-tags)
14371 (mapcar (lambda (x) (if (stringp (car-safe x))
14372 (list (car-safe x)) nil))
14373 org-tag-alist)))
14374 (if (and files (car files))
14375 files
14376 (org-agenda-files))))))))
14378 (defun org-make-tags-matcher (match)
14379 "Create the TAGS/TODO matcher form for the selection string MATCH.
14381 The variable `todo-only' is scoped dynamically into this function.
14382 It will be set to t if the matcher restricts matching to TODO entries,
14383 otherwise will not be touched.
14385 Returns a cons of the selection string MATCH and the constructed
14386 lisp form implementing the matcher. The matcher is to be evaluated
14387 at an Org entry, with point on the headline, and returns t if the
14388 entry matches the selection string MATCH. The returned lisp form
14389 references two variables with information about the entry, which
14390 must be bound around the form's evaluation: todo, the TODO keyword
14391 at the entry (or nil of none); and tags-list, the list of all tags
14392 at the entry including inherited ones. Additionally, the category
14393 of the entry (if any) must be specified as the text property
14394 'org-category on the headline.
14396 See also `org-scan-tags'.
14398 (declare (special todo-only))
14399 (unless (boundp 'todo-only)
14400 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14401 (unless match
14402 ;; Get a new match request, with completion against the global
14403 ;; tags table and the local tags in current buffer
14404 (let ((org-last-tags-completion-table
14405 (org-uniquify
14406 (delq nil (append (org-get-buffer-tags)
14407 (org-global-tags-completion-table))))))
14408 (setq match (org-completing-read-no-i
14409 "Match: " 'org-tags-completion-function nil nil nil
14410 'org-tags-history))))
14412 ;; Parse the string and create a lisp form
14413 (let ((match0 match)
14414 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14415 minus tag mm
14416 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14417 orterms term orlist re-p str-p level-p level-op time-p
14418 prop-p pn pv po gv rest (start 0) (ss 0))
14419 ;; Expand group tags
14420 (setq match (org-tags-expand match))
14422 ;; Check if there is a TODO part of this match, which would be the
14423 ;; part after a "/". TO make sure that this slash is not part of
14424 ;; a property value to be matched against, we also check that there
14425 ;; is no " after that slash.
14426 ;; First, find the last slash
14427 (while (string-match "/+" match ss)
14428 (setq start (match-beginning 0) ss (match-end 0)))
14429 (if (and (string-match "/+" match start)
14430 (not (save-match-data (string-match "\"" match start))))
14431 ;; match contains also a todo-matching request
14432 (progn
14433 (setq tagsmatch (substring match 0 (match-beginning 0))
14434 todomatch (substring match (match-end 0)))
14435 (if (string-match "^!" todomatch)
14436 (setq todo-only t todomatch (substring todomatch 1)))
14437 (if (string-match "^\\s-*$" todomatch)
14438 (setq todomatch nil)))
14439 ;; only matching tags
14440 (setq tagsmatch match todomatch nil))
14442 ;; Make the tags matcher
14443 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14444 (setq tagsmatcher t)
14445 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14446 (while (setq term (pop orterms))
14447 (while (and (equal (substring term -1) "\\") orterms)
14448 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14449 (while (string-match re term)
14450 (setq rest (substring term (match-end 0))
14451 minus (and (match-end 1)
14452 (equal (match-string 1 term) "-"))
14453 tag (save-match-data (replace-regexp-in-string
14454 "\\\\-" "-"
14455 (match-string 2 term)))
14456 re-p (equal (string-to-char tag) ?{)
14457 level-p (match-end 4)
14458 prop-p (match-end 5)
14459 mm (cond
14460 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14461 (level-p
14462 (setq level-op (org-op-to-function (match-string 3 term)))
14463 `(,level-op level ,(string-to-number
14464 (match-string 4 term))))
14465 (prop-p
14466 (setq pn (match-string 5 term)
14467 po (match-string 6 term)
14468 pv (match-string 7 term)
14469 re-p (equal (string-to-char pv) ?{)
14470 str-p (equal (string-to-char pv) ?\")
14471 time-p (save-match-data
14472 (string-match "^\"[[<].*[]>]\"$" pv))
14473 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14474 (if time-p (setq pv (org-matcher-time pv)))
14475 (setq po (org-op-to-function po (if time-p 'time str-p)))
14476 (cond
14477 ((equal pn "CATEGORY")
14478 (setq gv '(get-text-property (point) 'org-category)))
14479 ((equal pn "TODO")
14480 (setq gv 'todo))
14482 (setq gv `(org-cached-entry-get nil ,pn))))
14483 (if re-p
14484 (if (eq po 'org<>)
14485 `(not (string-match ,pv (or ,gv "")))
14486 `(string-match ,pv (or ,gv "")))
14487 (if str-p
14488 `(,po (or ,gv "") ,pv)
14489 `(,po (string-to-number (or ,gv ""))
14490 ,(string-to-number pv) ))))
14491 (t `(member ,tag tags-list)))
14492 mm (if minus (list 'not mm) mm)
14493 term rest)
14494 (push mm tagsmatcher))
14495 (push (if (> (length tagsmatcher) 1)
14496 (cons 'and tagsmatcher)
14497 (car tagsmatcher))
14498 orlist)
14499 (setq tagsmatcher nil))
14500 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14501 (setq tagsmatcher
14502 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14503 ;; Make the todo matcher
14504 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14505 (setq todomatcher t)
14506 (setq orterms (org-split-string todomatch "|") orlist nil)
14507 (while (setq term (pop orterms))
14508 (while (string-match re term)
14509 (setq minus (and (match-end 1)
14510 (equal (match-string 1 term) "-"))
14511 kwd (match-string 2 term)
14512 re-p (equal (string-to-char kwd) ?{)
14513 term (substring term (match-end 0))
14514 mm (if re-p
14515 `(string-match ,(substring kwd 1 -1) todo)
14516 (list 'equal 'todo kwd))
14517 mm (if minus (list 'not mm) mm))
14518 (push mm todomatcher))
14519 (push (if (> (length todomatcher) 1)
14520 (cons 'and todomatcher)
14521 (car todomatcher))
14522 orlist)
14523 (setq todomatcher nil))
14524 (setq todomatcher (if (> (length orlist) 1)
14525 (cons 'or orlist) (car orlist))))
14527 ;; Return the string and lisp forms of the matcher
14528 (setq matcher (if todomatcher
14529 (list 'and tagsmatcher todomatcher)
14530 tagsmatcher))
14531 (when todo-only
14532 (setq matcher (list 'and '(member todo org-not-done-keywords)
14533 matcher)))
14534 (cons match0 matcher)))
14536 (defun org-tags-expand (match &optional single-as-list downcased)
14537 "Expand group tags in MATCH.
14539 This replaces every group tag in MATCH with a regexp tag search.
14540 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14541 will be replaced like this:
14543 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14544 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14545 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14547 Replacing by a regexp preserves the structure of the match.
14548 E.g., this expansion
14550 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14552 will match anything tagged with \"Lab\" and \"Home\", or tagged
14553 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14555 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14556 assumed to be a single group tag, and the function will return
14557 the list of tags in this group.
14559 When DOWNCASE is non-nil, expand downcased TAGS."
14560 (if org-group-tags
14561 (let* ((case-fold-search t)
14562 (stable org-mode-syntax-table)
14563 (tal (or org-tag-groups-alist-for-agenda
14564 org-tag-groups-alist))
14565 (tal (if downcased
14566 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14567 (tml (mapcar 'car tal))
14568 (rtnmatch match) rpl)
14569 ;; @ and _ are allowed as word-components in tags
14570 (modify-syntax-entry ?@ "w" stable)
14571 (modify-syntax-entry ?_ "w" stable)
14572 (while (and tml
14573 (with-syntax-table stable
14574 (string-match
14575 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14576 (regexp-opt tml) "\\>\\)") rtnmatch)))
14577 (let* ((dir (match-string 1 rtnmatch))
14578 (tag (match-string 2 rtnmatch))
14579 (tag (if downcased (downcase tag) tag)))
14580 (setq tml (delete tag tml))
14581 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14582 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14583 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14584 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14585 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14586 (if single-as-list
14587 (or (reverse rpl) (list rtnmatch))
14588 rtnmatch))
14589 (if single-as-list (list (if downcased (downcase match) match))
14590 match)))
14592 (defun org-op-to-function (op &optional stringp)
14593 "Turn an operator into the appropriate function."
14594 (setq op
14595 (cond
14596 ((equal op "<" ) '(< string< org-time<))
14597 ((equal op ">" ) '(> org-string> org-time>))
14598 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14599 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14600 ((member op '("=" "==")) '(= string= org-time=))
14601 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14602 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14604 (defun org<> (a b) (not (= a b)))
14605 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14606 (defun org-string>= (a b) (not (string< a b)))
14607 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14608 (defun org-string<> (a b) (not (string= a b)))
14609 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14610 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14611 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14612 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14613 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14614 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14615 (defun org-2ft (s)
14616 "Convert S to a floating point time.
14617 If S is already a number, just return it. If it is a string, parse
14618 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14619 (cond
14620 ((numberp s) s)
14621 ((stringp s)
14622 (condition-case nil
14623 (float-time (apply 'encode-time (org-parse-time-string s)))
14624 (error 0.)))
14625 (t 0.)))
14627 (defun org-time-today ()
14628 "Time in seconds today at 0:00.
14629 Returns the float number of seconds since the beginning of the
14630 epoch to the beginning of today (00:00)."
14631 (float-time (apply 'encode-time
14632 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14634 (defun org-matcher-time (s)
14635 "Interpret a time comparison value."
14636 (save-match-data
14637 (cond
14638 ((string= s "<now>") (float-time))
14639 ((string= s "<today>") (org-time-today))
14640 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14641 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14642 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14643 (+ (org-time-today)
14644 (* (string-to-number (match-string 1 s))
14645 (cdr (assoc (match-string 2 s)
14646 '(("d" . 86400.0) ("w" . 604800.0)
14647 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14648 (t (org-2ft s)))))
14650 (defun org-match-any-p (re list)
14651 "Does re match any element of list?"
14652 (setq list (mapcar (lambda (x) (string-match re x)) list))
14653 (delq nil list))
14655 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14656 (defvar org-tags-overlay (make-overlay 1 1))
14657 (org-detach-overlay org-tags-overlay)
14659 (defun org-get-local-tags-at (&optional pos)
14660 "Get a list of tags defined in the current headline."
14661 (org-get-tags-at pos 'local))
14663 (defun org-get-local-tags ()
14664 "Get a list of tags defined in the current headline."
14665 (org-get-tags-at nil 'local))
14667 (defun org-get-tags-at (&optional pos local)
14668 "Get a list of all headline tags applicable at POS.
14669 POS defaults to point. If tags are inherited, the list contains
14670 the targets in the same sequence as the headlines appear, i.e.
14671 the tags of the current headline come last.
14672 When LOCAL is non-nil, only return tags from the current headline,
14673 ignore inherited ones."
14674 (interactive)
14675 (if (and org-trust-scanner-tags
14676 (or (not pos) (equal pos (point)))
14677 (not local))
14678 org-scanner-tags
14679 (let (tags ltags lastpos parent)
14680 (save-excursion
14681 (save-restriction
14682 (widen)
14683 (goto-char (or pos (point)))
14684 (save-match-data
14685 (catch 'done
14686 (condition-case nil
14687 (progn
14688 (org-back-to-heading t)
14689 (while (not (equal lastpos (point)))
14690 (setq lastpos (point))
14691 (when (looking-at
14692 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14693 (setq ltags (org-split-string
14694 (org-match-string-no-properties 1) ":"))
14695 (when parent
14696 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14697 (setq tags (append
14698 (if parent
14699 (org-remove-uninherited-tags ltags)
14700 ltags)
14701 tags)))
14702 (or org-use-tag-inheritance (throw 'done t))
14703 (if local (throw 'done t))
14704 (or (org-up-heading-safe) (error nil))
14705 (setq parent t)))
14706 (error nil)))))
14707 (if local
14708 tags
14709 (reverse (delete-dups
14710 (reverse (append
14711 (org-remove-uninherited-tags
14712 org-file-tags) tags)))))))))
14714 (defun org-add-prop-inherited (s)
14715 (add-text-properties 0 (length s) '(inherited t) s)
14718 (defun org-toggle-tag (tag &optional onoff)
14719 "Toggle the tag TAG for the current line.
14720 If ONOFF is `on' or `off', don't toggle but set to this state."
14721 (let (res current)
14722 (save-excursion
14723 (org-back-to-heading t)
14724 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14725 (point-at-eol) t)
14726 (progn
14727 (setq current (match-string 1))
14728 (replace-match ""))
14729 (setq current ""))
14730 (setq current (nreverse (org-split-string current ":")))
14731 (cond
14732 ((eq onoff 'on)
14733 (setq res t)
14734 (or (member tag current) (push tag current)))
14735 ((eq onoff 'off)
14736 (or (not (member tag current)) (setq current (delete tag current))))
14737 (t (if (member tag current)
14738 (setq current (delete tag current))
14739 (setq res t)
14740 (push tag current))))
14741 (end-of-line 1)
14742 (if current
14743 (progn
14744 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14745 (org-set-tags nil t))
14746 (delete-horizontal-space))
14747 (run-hooks 'org-after-tags-change-hook))
14748 res))
14750 (defun org-align-tags-here (to-col)
14751 ;; Assumes that this is a headline
14752 "Align tags on the current headline to TO-COL."
14753 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14754 (beginning-of-line 1)
14755 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14756 (< pos (match-beginning 2)))
14757 (progn
14758 (setq tags-l (- (match-end 2) (match-beginning 2)))
14759 (goto-char (match-beginning 1))
14760 (insert " ")
14761 (delete-region (point) (1+ (match-beginning 2)))
14762 (setq ncol (max (current-column)
14763 (1+ col)
14764 (if (> to-col 0)
14765 to-col
14766 (- (abs to-col) tags-l))))
14767 (setq p (point))
14768 (insert (make-string (- ncol (current-column)) ?\ ))
14769 (setq ncol (current-column))
14770 (when indent-tabs-mode (tabify p (point-at-eol)))
14771 (org-move-to-column (min ncol col)))
14772 (goto-char pos))))
14774 (defun org-set-tags-command (&optional arg just-align)
14775 "Call the set-tags command for the current entry."
14776 (interactive "P")
14777 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14778 (org-set-tags arg just-align)
14779 (save-excursion
14780 (unless (and (org-region-active-p)
14781 org-loop-over-headlines-in-active-region)
14782 (org-back-to-heading t))
14783 (org-set-tags arg just-align))))
14785 (defun org-set-tags-to (data)
14786 "Set the tags of the current entry to DATA, replacing the current tags.
14787 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14788 If DATA is nil or the empty string, any tags will be removed."
14789 (interactive "sTags: ")
14790 (setq data
14791 (cond
14792 ((eq data nil) "")
14793 ((equal data "") "")
14794 ((stringp data)
14795 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14796 ":"))
14797 ((listp data)
14798 (concat ":" (mapconcat 'identity data ":") ":"))))
14799 (when data
14800 (save-excursion
14801 (org-back-to-heading t)
14802 (when (looking-at org-complex-heading-regexp)
14803 (if (match-end 5)
14804 (progn
14805 (goto-char (match-beginning 5))
14806 (insert data)
14807 (delete-region (point) (point-at-eol))
14808 (org-set-tags nil 'align))
14809 (goto-char (point-at-eol))
14810 (insert " " data)
14811 (org-set-tags nil 'align)))
14812 (beginning-of-line 1)
14813 (if (looking-at ".*?\\([ \t]+\\)$")
14814 (delete-region (match-beginning 1) (match-end 1))))))
14816 (defun org-align-all-tags ()
14817 "Align the tags i all headings."
14818 (interactive)
14819 (save-excursion
14820 (or (ignore-errors (org-back-to-heading t))
14821 (outline-next-heading))
14822 (if (org-at-heading-p)
14823 (org-set-tags t)
14824 (message "No headings"))))
14826 (defvar org-indent-indentation-per-level)
14827 (defun org-set-tags (&optional arg just-align)
14828 "Set the tags for the current headline.
14829 With prefix ARG, realign all tags in headings in the current buffer.
14830 When JUST-ALIGN is non-nil, only align tags."
14831 (interactive "P")
14832 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14833 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14834 'region-start-level 'region))
14835 org-loop-over-headlines-in-active-region)
14836 (org-map-entries
14837 ;; We don't use ARG and JUST-ALIGN here because these args
14838 ;; are not useful when looping over headlines.
14839 `(org-set-tags)
14840 org-loop-over-headlines-in-active-region
14841 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14842 (let* ((re org-outline-regexp-bol)
14843 (current (unless arg (org-get-tags-string)))
14844 (col (current-column))
14845 (org-setting-tags t)
14846 table current-tags inherited-tags ; computed below when needed
14847 tags p0 c0 c1 rpl di tc level)
14848 (if arg
14849 (save-excursion
14850 (goto-char (point-min))
14851 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14852 (while (re-search-forward re nil t)
14853 (org-set-tags nil t)
14854 (end-of-line 1)))
14855 (message "All tags realigned to column %d" org-tags-column))
14856 (if just-align
14857 (setq tags current)
14858 ;; Get a new set of tags from the user
14859 (save-excursion
14860 (setq table (append org-tag-persistent-alist
14861 (or org-tag-alist (org-get-buffer-tags))
14862 (and
14863 org-complete-tags-always-offer-all-agenda-tags
14864 (org-global-tags-completion-table
14865 (org-agenda-files))))
14866 org-last-tags-completion-table table
14867 current-tags (org-split-string current ":")
14868 inherited-tags (nreverse
14869 (nthcdr (length current-tags)
14870 (nreverse (org-get-tags-at))))
14871 tags
14872 (if (or (eq t org-use-fast-tag-selection)
14873 (and org-use-fast-tag-selection
14874 (delq nil (mapcar 'cdr table))))
14875 (org-fast-tag-selection
14876 current-tags inherited-tags table
14877 (if org-fast-tag-selection-include-todo
14878 org-todo-key-alist))
14879 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14880 (org-trim
14881 (org-icompleting-read "Tags: "
14882 'org-tags-completion-function
14883 nil nil current 'org-tags-history))))))
14884 (while (string-match "[-+&]+" tags)
14885 ;; No boolean logic, just a list
14886 (setq tags (replace-match ":" t t tags))))
14888 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14890 (if org-tags-sort-function
14891 (setq tags (mapconcat 'identity
14892 (sort (org-split-string
14893 tags (org-re "[^[:alnum:]_@#%]+"))
14894 org-tags-sort-function) ":")))
14896 (if (string-match "\\`[\t ]*\\'" tags)
14897 (setq tags "")
14898 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14899 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14901 ;; Insert new tags at the correct column
14902 (beginning-of-line 1)
14903 (setq level (or (and (looking-at org-outline-regexp)
14904 (- (match-end 0) (point) 1))
14906 (cond
14907 ((and (equal current "") (equal tags "")))
14908 ((re-search-forward
14909 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14910 (point-at-eol) t)
14911 (if (equal tags "")
14912 (setq rpl "")
14913 (goto-char (match-beginning 0))
14914 (setq c0 (current-column)
14915 ;; compute offset for the case of org-indent-mode active
14916 di (if (org-bound-and-true-p org-indent-mode)
14917 (* (1- org-indent-indentation-per-level) (1- level))
14919 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14920 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14921 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14922 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14923 (replace-match rpl t t)
14924 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14925 tags)
14926 (t (error "Tags alignment failed")))
14927 (org-move-to-column col)
14928 (unless just-align
14929 (run-hooks 'org-after-tags-change-hook))))))
14931 (defun org-change-tag-in-region (beg end tag off)
14932 "Add or remove TAG for each entry in the region.
14933 This works in the agenda, and also in an org-mode buffer."
14934 (interactive
14935 (list (region-beginning) (region-end)
14936 (let ((org-last-tags-completion-table
14937 (if (derived-mode-p 'org-mode)
14938 (org-uniquify
14939 (delq nil (append (org-get-buffer-tags)
14940 (org-global-tags-completion-table))))
14941 (org-global-tags-completion-table))))
14942 (org-icompleting-read
14943 "Tag: " 'org-tags-completion-function nil nil nil
14944 'org-tags-history))
14945 (progn
14946 (message "[s]et or [r]emove? ")
14947 (equal (read-char-exclusive) ?r))))
14948 (if (fboundp 'deactivate-mark) (deactivate-mark))
14949 (let ((agendap (equal major-mode 'org-agenda-mode))
14950 l1 l2 m buf pos newhead (cnt 0))
14951 (goto-char end)
14952 (setq l2 (1- (org-current-line)))
14953 (goto-char beg)
14954 (setq l1 (org-current-line))
14955 (loop for l from l1 to l2 do
14956 (org-goto-line l)
14957 (setq m (get-text-property (point) 'org-hd-marker))
14958 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14959 (and agendap m))
14960 (setq buf (if agendap (marker-buffer m) (current-buffer))
14961 pos (if agendap m (point)))
14962 (with-current-buffer buf
14963 (save-excursion
14964 (save-restriction
14965 (goto-char pos)
14966 (setq cnt (1+ cnt))
14967 (org-toggle-tag tag (if off 'off 'on))
14968 (setq newhead (org-get-heading)))))
14969 (and agendap (org-agenda-change-all-lines newhead m))))
14970 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14972 (defun org-tags-completion-function (string predicate &optional flag)
14973 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14974 (confirm (lambda (x) (stringp (car x)))))
14975 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14976 (setq s1 (match-string 1 string)
14977 s2 (match-string 2 string))
14978 (setq s1 "" s2 string))
14979 (cond
14980 ((eq flag nil)
14981 ;; try completion
14982 (setq rtn (try-completion s2 ctable confirm))
14983 (if (stringp rtn)
14984 (setq rtn
14985 (concat s1 s2 (substring rtn (length s2))
14986 (if (and org-add-colon-after-tag-completion
14987 (assoc rtn ctable))
14988 ":" ""))))
14989 rtn)
14990 ((eq flag t)
14991 ;; all-completions
14992 (all-completions s2 ctable confirm))
14993 ((eq flag 'lambda)
14994 ;; exact match?
14995 (assoc s2 ctable)))))
14997 (defun org-fast-tag-insert (kwd tags face &optional end)
14998 "Insert KDW, and the TAGS, the latter with face FACE.
14999 Also insert END."
15000 (insert (format "%-12s" (concat kwd ":"))
15001 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15002 (or end "")))
15004 (defun org-fast-tag-show-exit (flag)
15005 (save-excursion
15006 (org-goto-line 3)
15007 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15008 (replace-match ""))
15009 (when flag
15010 (end-of-line 1)
15011 (org-move-to-column (- (window-width) 19) t)
15012 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15014 (defun org-set-current-tags-overlay (current prefix)
15015 "Add an overlay to CURRENT tag with PREFIX."
15016 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15017 (if (featurep 'xemacs)
15018 (org-overlay-display org-tags-overlay (concat prefix s)
15019 'secondary-selection)
15020 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15021 (org-overlay-display org-tags-overlay (concat prefix s)))))
15023 (defvar org-last-tag-selection-key nil)
15024 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15025 "Fast tag selection with single keys.
15026 CURRENT is the current list of tags in the headline, INHERITED is the
15027 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15028 possibly with grouping information. TODO-TABLE is a similar table with
15029 TODO keywords, should these have keys assigned to them.
15030 If the keys are nil, a-z are automatically assigned.
15031 Returns the new tags string, or nil to not change the current settings."
15032 (let* ((fulltable (append table todo-table))
15033 (maxlen (apply 'max (mapcar
15034 (lambda (x)
15035 (if (stringp (car x)) (string-width (car x)) 0))
15036 fulltable)))
15037 (buf (current-buffer))
15038 (expert (eq org-fast-tag-selection-single-key 'expert))
15039 (buffer-tags nil)
15040 (fwidth (+ maxlen 3 1 3))
15041 (ncol (/ (- (window-width) 4) fwidth))
15042 (i-face 'org-done)
15043 (c-face 'org-todo)
15044 tg cnt e c char c1 c2 ntable tbl rtn
15045 ov-start ov-end ov-prefix
15046 (exit-after-next org-fast-tag-selection-single-key)
15047 (done-keywords org-done-keywords)
15048 groups ingroup)
15049 (save-excursion
15050 (beginning-of-line 1)
15051 (if (looking-at
15052 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15053 (setq ov-start (match-beginning 1)
15054 ov-end (match-end 1)
15055 ov-prefix "")
15056 (setq ov-start (1- (point-at-eol))
15057 ov-end (1+ ov-start))
15058 (skip-chars-forward "^\n\r")
15059 (setq ov-prefix
15060 (concat
15061 (buffer-substring (1- (point)) (point))
15062 (if (> (current-column) org-tags-column)
15064 (make-string (- org-tags-column (current-column)) ?\ ))))))
15065 (move-overlay org-tags-overlay ov-start ov-end)
15066 (save-window-excursion
15067 (if expert
15068 (set-buffer (get-buffer-create " *Org tags*"))
15069 (delete-other-windows)
15070 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15071 (org-switch-to-buffer-other-window " *Org tags*"))
15072 (erase-buffer)
15073 (org-set-local 'org-done-keywords done-keywords)
15074 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15075 (org-fast-tag-insert "Current" current c-face "\n\n")
15076 (org-fast-tag-show-exit exit-after-next)
15077 (org-set-current-tags-overlay current ov-prefix)
15078 (setq tbl fulltable char ?a cnt 0)
15079 (while (setq e (pop tbl))
15080 (cond
15081 ((equal (car e) :startgroup)
15082 (push '() groups) (setq ingroup t)
15083 (when (not (= cnt 0))
15084 (setq cnt 0)
15085 (insert "\n"))
15086 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15087 ((equal (car e) :endgroup)
15088 (setq ingroup nil cnt 0)
15089 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15090 ((equal e '(:newline))
15091 (when (not (= cnt 0))
15092 (setq cnt 0)
15093 (insert "\n")
15094 (setq e (car tbl))
15095 (while (equal (car tbl) '(:newline))
15096 (insert "\n")
15097 (setq tbl (cdr tbl)))))
15098 ((equal e '(:grouptags)) nil)
15100 (setq tg (copy-sequence (car e)) c2 nil)
15101 (if (cdr e)
15102 (setq c (cdr e))
15103 ;; automatically assign a character.
15104 (setq c1 (string-to-char
15105 (downcase (substring
15106 tg (if (= (string-to-char tg) ?@) 1 0)))))
15107 (if (or (rassoc c1 ntable) (rassoc c1 table))
15108 (while (or (rassoc char ntable) (rassoc char table))
15109 (setq char (1+ char)))
15110 (setq c2 c1))
15111 (setq c (or c2 char)))
15112 (if ingroup (push tg (car groups)))
15113 (setq tg (org-add-props tg nil 'face
15114 (cond
15115 ((not (assoc tg table))
15116 (org-get-todo-face tg))
15117 ((member tg current) c-face)
15118 ((member tg inherited) i-face))))
15119 (if (equal (caar tbl) :grouptags)
15120 (org-add-props tg nil 'face 'org-tag-group))
15121 (if (and (= cnt 0) (not ingroup)) (insert " "))
15122 (insert "[" c "] " tg (make-string
15123 (- fwidth 4 (length tg)) ?\ ))
15124 (push (cons tg c) ntable)
15125 (when (= (setq cnt (1+ cnt)) ncol)
15126 (insert "\n")
15127 (if ingroup (insert " "))
15128 (setq cnt 0)))))
15129 (setq ntable (nreverse ntable))
15130 (insert "\n")
15131 (goto-char (point-min))
15132 (if (not expert) (org-fit-window-to-buffer))
15133 (setq rtn
15134 (catch 'exit
15135 (while t
15136 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15137 (if (not groups) "no " "")
15138 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15139 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15140 (setq org-last-tag-selection-key c)
15141 (cond
15142 ((= c ?\r) (throw 'exit t))
15143 ((= c ?!)
15144 (setq groups (not groups))
15145 (goto-char (point-min))
15146 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15147 ((= c ?\C-c)
15148 (if (not expert)
15149 (org-fast-tag-show-exit
15150 (setq exit-after-next (not exit-after-next)))
15151 (setq expert nil)
15152 (delete-other-windows)
15153 (set-window-buffer (split-window-vertically) " *Org tags*")
15154 (org-switch-to-buffer-other-window " *Org tags*")
15155 (org-fit-window-to-buffer)))
15156 ((or (= c ?\C-g)
15157 (and (= c ?q) (not (rassoc c ntable))))
15158 (org-detach-overlay org-tags-overlay)
15159 (setq quit-flag t))
15160 ((= c ?\ )
15161 (setq current nil)
15162 (if exit-after-next (setq exit-after-next 'now)))
15163 ((= c ?\t)
15164 (condition-case nil
15165 (setq tg (org-icompleting-read
15166 "Tag: "
15167 (or buffer-tags
15168 (with-current-buffer buf
15169 (org-get-buffer-tags)))))
15170 (quit (setq tg "")))
15171 (when (string-match "\\S-" tg)
15172 (add-to-list 'buffer-tags (list tg))
15173 (if (member tg current)
15174 (setq current (delete tg current))
15175 (push tg current)))
15176 (if exit-after-next (setq exit-after-next 'now)))
15177 ((setq e (rassoc c todo-table) tg (car e))
15178 (with-current-buffer buf
15179 (save-excursion (org-todo tg)))
15180 (if exit-after-next (setq exit-after-next 'now)))
15181 ((setq e (rassoc c ntable) tg (car e))
15182 (if (member tg current)
15183 (setq current (delete tg current))
15184 (loop for g in groups do
15185 (if (member tg g)
15186 (mapc (lambda (x)
15187 (setq current (delete x current)))
15188 g)))
15189 (push tg current))
15190 (if exit-after-next (setq exit-after-next 'now))))
15192 ;; Create a sorted list
15193 (setq current
15194 (sort current
15195 (lambda (a b)
15196 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15197 (if (eq exit-after-next 'now) (throw 'exit t))
15198 (goto-char (point-min))
15199 (beginning-of-line 2)
15200 (delete-region (point) (point-at-eol))
15201 (org-fast-tag-insert "Current" current c-face)
15202 (org-set-current-tags-overlay current ov-prefix)
15203 (while (re-search-forward
15204 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15205 (setq tg (match-string 1))
15206 (add-text-properties
15207 (match-beginning 1) (match-end 1)
15208 (list 'face
15209 (cond
15210 ((member tg current) c-face)
15211 ((member tg inherited) i-face)
15212 (t (get-text-property (match-beginning 1) 'face))))))
15213 (goto-char (point-min)))))
15214 (org-detach-overlay org-tags-overlay)
15215 (if rtn
15216 (mapconcat 'identity current ":")
15217 nil))))
15219 (defun org-get-tags-string ()
15220 "Get the TAGS string in the current headline."
15221 (unless (org-at-heading-p t)
15222 (user-error "Not on a heading"))
15223 (save-excursion
15224 (beginning-of-line 1)
15225 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15226 (org-match-string-no-properties 1)
15227 "")))
15229 (defun org-get-tags ()
15230 "Get the list of tags specified in the current headline."
15231 (org-split-string (org-get-tags-string) ":"))
15233 (defun org-get-buffer-tags ()
15234 "Get a table of all tags used in the buffer, for completion."
15235 (let (tags)
15236 (save-excursion
15237 (goto-char (point-min))
15238 (while (re-search-forward
15239 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
15240 (when (equal (char-after (point-at-bol 0)) ?*)
15241 (mapc (lambda (x) (add-to-list 'tags x))
15242 (org-split-string (org-match-string-no-properties 1) ":")))))
15243 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
15244 (mapcar 'list tags)))
15246 ;;;; The mapping API
15248 (defun org-map-entries (func &optional match scope &rest skip)
15249 "Call FUNC at each headline selected by MATCH in SCOPE.
15251 FUNC is a function or a lisp form. The function will be called without
15252 arguments, with the cursor positioned at the beginning of the headline.
15253 The return values of all calls to the function will be collected and
15254 returned as a list.
15256 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15257 does not need to preserve point. After evaluation, the cursor will be
15258 moved to the end of the line (presumably of the headline of the
15259 processed entry) and search continues from there. Under some
15260 circumstances, this may not produce the wanted results. For example,
15261 if you have removed (e.g. archived) the current (sub)tree it could
15262 mean that the next entry will be skipped entirely. In such cases, you
15263 can specify the position from where search should continue by making
15264 FUNC set the variable `org-map-continue-from' to the desired buffer
15265 position.
15267 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15268 Only headlines that are matched by this query will be considered during
15269 the iteration. When MATCH is nil or t, all headlines will be
15270 visited by the iteration.
15272 SCOPE determines the scope of this command. It can be any of:
15274 nil The current buffer, respecting the restriction if any
15275 tree The subtree started with the entry at point
15276 region The entries within the active region, if any
15277 region-start-level
15278 The entries within the active region, but only those at
15279 the same level than the first one.
15280 file The current buffer, without restriction
15281 file-with-archives
15282 The current buffer, and any archives associated with it
15283 agenda All agenda files
15284 agenda-with-archives
15285 All agenda files with any archive files associated with them
15286 \(file1 file2 ...)
15287 If this is a list, all files in the list will be scanned
15289 The remaining args are treated as settings for the skipping facilities of
15290 the scanner. The following items can be given here:
15292 archive skip trees with the archive tag
15293 comment skip trees with the COMMENT keyword
15294 function or Emacs Lisp form:
15295 will be used as value for `org-agenda-skip-function', so
15296 whenever the function returns a position, FUNC will not be
15297 called for that entry and search will continue from the
15298 position returned
15300 If your function needs to retrieve the tags including inherited tags
15301 at the *current* entry, you can use the value of the variable
15302 `org-scanner-tags' which will be much faster than getting the value
15303 with `org-get-tags-at'. If your function gets properties with
15304 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15305 to t around the call to `org-entry-properties' to get the same speedup.
15306 Note that if your function moves around to retrieve tags and properties at
15307 a *different* entry, you cannot use these techniques."
15308 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15309 (not (org-region-active-p)))
15310 (let* ((org-agenda-archives-mode nil) ; just to make sure
15311 (org-agenda-skip-archived-trees (memq 'archive skip))
15312 (org-agenda-skip-comment-trees (memq 'comment skip))
15313 (org-agenda-skip-function
15314 (car (org-delete-all '(comment archive) skip)))
15315 (org-tags-match-list-sublevels t)
15316 (start-level (eq scope 'region-start-level))
15317 matcher file res
15318 org-todo-keywords-for-agenda
15319 org-done-keywords-for-agenda
15320 org-todo-keyword-alist-for-agenda
15321 org-tag-alist-for-agenda
15322 todo-only)
15324 (cond
15325 ((eq match t) (setq matcher t))
15326 ((eq match nil) (setq matcher t))
15327 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15329 (save-excursion
15330 (save-restriction
15331 (cond ((eq scope 'tree)
15332 (org-back-to-heading t)
15333 (org-narrow-to-subtree)
15334 (setq scope nil))
15335 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15336 (org-region-active-p))
15337 ;; If needed, set start-level to a string like "2"
15338 (when start-level
15339 (save-excursion
15340 (goto-char (region-beginning))
15341 (unless (org-at-heading-p) (outline-next-heading))
15342 (setq start-level (org-current-level))))
15343 (narrow-to-region (region-beginning)
15344 (save-excursion
15345 (goto-char (region-end))
15346 (unless (and (bolp) (org-at-heading-p))
15347 (outline-next-heading))
15348 (point)))
15349 (setq scope nil)))
15351 (if (not scope)
15352 (progn
15353 (org-agenda-prepare-buffers
15354 (list (buffer-file-name (current-buffer))))
15355 (setq res (org-scan-tags func matcher todo-only start-level)))
15356 ;; Get the right scope
15357 (cond
15358 ((and scope (listp scope) (symbolp (car scope)))
15359 (setq scope (eval scope)))
15360 ((eq scope 'agenda)
15361 (setq scope (org-agenda-files t)))
15362 ((eq scope 'agenda-with-archives)
15363 (setq scope (org-agenda-files t))
15364 (setq scope (org-add-archive-files scope)))
15365 ((eq scope 'file)
15366 (setq scope (list (buffer-file-name))))
15367 ((eq scope 'file-with-archives)
15368 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15369 (org-agenda-prepare-buffers scope)
15370 (while (setq file (pop scope))
15371 (with-current-buffer (org-find-base-buffer-visiting file)
15372 (save-excursion
15373 (save-restriction
15374 (widen)
15375 (goto-char (point-min))
15376 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15377 res)))
15379 ;;; Properties API
15381 (defconst org-special-properties
15382 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOSED" "PRIORITY"
15383 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15384 "The special properties valid in Org-mode.
15385 These are properties that are not defined in the property drawer,
15386 but in some other way.")
15388 (defconst org-default-properties
15389 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15390 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15391 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15392 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15393 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15394 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15395 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15396 "Some properties that are used by Org mode for various purposes.
15397 Being in this list makes sure that they are offered for completion.")
15399 (defun org--update-property-plist (key val props)
15400 "Associate KEY to VAL in alist PROPS.
15401 Modifications are made by side-effect. Return new alist."
15402 (let* ((appending (string= (substring key -1) "+"))
15403 (key (if appending (substring key 0 -1) key))
15404 (old (assoc-string key props t)))
15405 (if (not old) (cons (cons key val) props)
15406 (setcdr old (if appending (concat (cdr old) " " val) val))
15407 props)))
15409 (defun org-get-property-block (&optional beg force)
15410 "Return the (beg . end) range of the body of the property drawer.
15411 BEG is the beginning of the current subtree, or of the part
15412 before the first headline. If it is not given, it will be found.
15413 If the drawer does not exist, create it if FORCE is non-nil, or
15414 return nil."
15415 (org-with-wide-buffer
15416 (when beg (goto-char beg))
15417 (unless (org-before-first-heading-p)
15418 (let ((beg (cond (beg)
15419 ((or (not (featurep 'org-inlinetask))
15420 (org-inlinetask-in-task-p))
15421 (org-back-to-heading t))
15422 (t (org-with-limited-levels (org-back-to-heading t))))))
15423 (forward-line)
15424 (when (org-looking-at-p org-planning-line-re) (forward-line))
15425 (cond ((looking-at org-property-drawer-re)
15426 (forward-line)
15427 (cons (point) (progn (goto-char (match-end 0))
15428 (line-beginning-position))))
15429 (force
15430 (goto-char beg)
15431 (org-insert-property-drawer)
15432 (let ((pos (save-excursion (search-forward ":END:")
15433 (line-beginning-position))))
15434 (cons pos pos))))))))
15436 (defun org-at-property-p ()
15437 "Non-nil when point is inside a property drawer.
15438 See `org-property-re' for match data, if applicable."
15439 (save-excursion
15440 (beginning-of-line)
15441 (and (looking-at org-property-re)
15442 (let ((property-drawer (save-match-data (org-get-property-block))))
15443 (and property-drawer (< (point) (cdr property-drawer)))))))
15445 (defun org-property-action ()
15446 "Do an action on properties."
15447 (interactive)
15448 (unless (org-at-property-p) (user-error "Not at a property"))
15449 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15450 (let ((c (read-char-exclusive)))
15451 (case c
15452 (?s (call-interactively #'org-set-property))
15453 (?d (call-interactively #'org-delete-property))
15454 (?D (call-interactively #'org-delete-property-globally))
15455 (?c (call-interactively #'org-compute-property-at-point))
15456 (otherwise (user-error "No such property action %c" c)))))
15458 (defun org-inc-effort ()
15459 "Increment the value of the effort property in the current entry."
15460 (interactive)
15461 (org-set-effort nil t))
15463 (defvar org-clock-effort) ; Defined in org-clock.el.
15464 (defvar org-clock-current-task) ; Defined in org-clock.el.
15465 (defun org-set-effort (&optional value increment)
15466 "Set the effort property of the current entry.
15467 With numerical prefix arg, use the nth allowed value, 0 stands for the
15468 10th allowed value.
15470 When INCREMENT is non-nil, set the property to the next allowed value."
15471 (interactive "P")
15472 (if (equal value 0) (setq value 10))
15473 (let* ((completion-ignore-case t)
15474 (prop org-effort-property)
15475 (cur (org-entry-get nil prop))
15476 (allowed (org-property-get-allowed-values nil prop 'table))
15477 (existing (mapcar 'list (org-property-values prop)))
15478 (heading (nth 4 (org-heading-components)))
15480 (val (cond
15481 ((stringp value) value)
15482 ((and allowed (integerp value))
15483 (or (car (nth (1- value) allowed))
15484 (car (org-last allowed))))
15485 ((and allowed increment)
15486 (or (caadr (member (list cur) allowed))
15487 (user-error "Allowed effort values are not set")))
15488 (allowed
15489 (message "Select 1-9,0, [RET%s]: %s"
15490 (if cur (concat "=" cur) "")
15491 (mapconcat 'car allowed " "))
15492 (setq rpl (read-char-exclusive))
15493 (if (equal rpl ?\r)
15495 (setq rpl (- rpl ?0))
15496 (if (equal rpl 0) (setq rpl 10))
15497 (if (and (> rpl 0) (<= rpl (length allowed)))
15498 (car (nth (1- rpl) allowed))
15499 (org-completing-read "Effort: " allowed nil))))
15501 (let (org-completion-use-ido org-completion-use-iswitchb)
15502 (org-completing-read
15503 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15504 (concat "[" cur "]") "")
15505 ": ")
15506 existing nil nil "" nil cur))))))
15507 (unless (equal (org-entry-get nil prop) val)
15508 (org-entry-put nil prop val))
15509 (org-refresh-property
15510 '((effort . identity)
15511 (effort-minutes . org-duration-string-to-minutes))
15512 val)
15513 (when (string= heading org-clock-current-task)
15514 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15515 (org-clock-update-mode-line))
15516 (message "%s is now %s" prop val)))
15518 (defun org-entry-properties (&optional pom which)
15519 "Get all properties of the current entry.
15521 When POM is a buffer position, get all properties from the entry
15522 there instead.
15524 This includes the TODO keyword, the tags, time strings for
15525 deadline, scheduled, and clocking, and any additional properties
15526 defined in the entry.
15528 If WHICH is nil or `all', get all properties. If WHICH is
15529 `special' or `standard', only get that subclass. If WHICH is
15530 a string, only get that property.
15532 Return value is an alist. Keys are properties, as upcased
15533 strings."
15534 (org-with-point-at pom
15535 (when (and (derived-mode-p 'org-mode)
15536 (ignore-errors (org-back-to-heading t)))
15537 (catch 'exit
15538 (let* ((beg (point))
15539 (specific (and (stringp which) (upcase which)))
15540 (which (cond ((not specific) which)
15541 ((member specific org-special-properties) 'special)
15542 (t 'standard)))
15543 props)
15544 ;; Get the special properties, like TODO and TAGS.
15545 (when (memq which '(nil all special))
15546 (when (or (not specific) (string= specific "CLOCKSUM"))
15547 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15548 (when clocksum
15549 (push (cons "CLOCKSUM"
15550 (org-columns-number-to-string
15551 (/ (float clocksum) 60.) 'add_times))
15552 props)))
15553 (when specific (throw 'exit props)))
15554 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15555 (let ((clocksumt (get-text-property (point)
15556 :org-clock-minutes-today)))
15557 (when clocksumt
15558 (push (cons "CLOCKSUM_T"
15559 (org-columns-number-to-string
15560 (/ (float clocksumt) 60.) 'add_times))
15561 props)))
15562 (when specific (throw 'exit props)))
15563 (when (or (not specific) (string= specific "TODO"))
15564 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15565 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15566 (when specific (throw 'exit props)))
15567 (when (or (not specific) (string= specific "PRIORITY"))
15568 (when (looking-at org-priority-regexp)
15569 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15570 (when specific (throw 'exit props)))
15571 (when (or (not specific) (string= specific "FILE"))
15572 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15573 props)
15574 (when specific (throw 'exit props)))
15575 (when (or (not specific) (string= specific "TAGS"))
15576 (let ((value (org-string-nw-p (org-get-tags-string))))
15577 (when value (push (cons "TAGS" value) props)))
15578 (when specific (throw 'exit props)))
15579 (when (or (not specific) (string= specific "ALLTAGS"))
15580 (let ((value (org-get-tags-at)))
15581 (when value
15582 (push (cons "ALLTAGS"
15583 (format ":%s:" (mapconcat #'identity value ":")))
15584 props)))
15585 (when specific (throw 'exit props)))
15586 (when (or (not specific) (string= specific "BLOCKED"))
15587 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15588 (when specific (throw 'exit props)))
15589 (when (or (not specific)
15590 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15591 (forward-line)
15592 (when (org-looking-at-p org-planning-line-re)
15593 (end-of-line)
15594 (let ((bol (line-beginning-position)))
15595 ;; Backward compatibility: time keywords used to be
15596 ;; configurable (before 8.3). Make sure we get the
15597 ;; correct keyword.
15598 (dolist (k (if (not specific)
15599 (list org-closed-string
15600 org-deadline-string
15601 org-scheduled-string)
15602 (list (cond ((string= specific "CLOSED")
15603 org-closed-string)
15604 ((string= specific "DEADLINE")
15605 org-deadline-string)
15606 (t org-scheduled-string)))))
15607 (save-excursion
15608 (when (search-backward k bol t)
15609 (goto-char (match-end 0))
15610 (skip-chars-forward " \t")
15611 (and (looking-at org-ts-regexp-both)
15612 (push (cons specific (match-string 0)) props)))))))
15613 (when specific (throw 'exit props)))
15614 (when (or (not specific)
15615 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15616 (let ((find-ts
15617 (lambda (end ts)
15618 (let ((regexp (if (or (string= specific "TIMESTAMP")
15619 (assoc "TIMESTAMP_IA" ts))
15620 org-ts-regexp
15621 org-ts-regexp-both)))
15622 (catch 'next
15623 (while (re-search-forward regexp end t)
15624 (backward-char)
15625 (let ((object (org-element-context)))
15626 ;; Accept to match timestamps in node
15627 ;; properties, too.
15628 (when (memq (org-element-type object)
15629 '(node-property timestamp))
15630 (let ((type
15631 (org-element-property :type object)))
15632 (cond
15633 ((and (memq type '(active active-range))
15634 (not (equal specific "TIMESTAMP_IA")))
15635 (unless (assoc "TIMESTAMP" ts)
15636 (push (cons "TIMESTAMP"
15637 (org-element-property
15638 :raw-value object))
15640 (when specific (throw 'exit ts))))
15641 ((and (memq type '(inactive inactive-range))
15642 (not (string= specific "TIMESTAMP")))
15643 (unless (assoc "TIMESTAMP_IA" ts)
15644 (push (cons "TIMESTAMP_IA"
15645 (org-element-property
15646 :raw-value object))
15648 (when specific (throw 'exit ts))))))
15649 ;; Both timestamp types are found,
15650 ;; move to next part.
15651 (when (= (length ts) 2) (throw 'next ts)))))
15652 ts)))))
15653 (goto-char beg)
15654 ;; First look for timestamps within headline.
15655 (let ((ts (funcall find-ts (line-end-position) nil)))
15656 (if (= (length ts) 2) (setq props (nconc ts props))
15657 (forward-line)
15658 ;; Then find timestamps in the section, skipping
15659 ;; planning line.
15660 (when (org-looking-at-p org-planning-line-re)
15661 (forward-line))
15662 (let ((end (save-excursion (outline-next-heading))))
15663 (setq props (nconc (funcall find-ts end ts) props))))))))
15664 ;; Get the standard properties, like :PROP:.
15665 (when (memq which '(nil all standard))
15666 ;; If we are looking after a specific property, delegate
15667 ;; to `org-entry-get', which is faster. However, make an
15668 ;; exception for "CATEGORY", since it can be also set
15669 ;; through keywords (i.e. #+CATEGORY).
15670 (if (and specific (not (equal specific "CATEGORY")))
15671 (let ((value (org-entry-get beg specific nil t)))
15672 (throw 'exit (and value (list (cons specific value)))))
15673 (let ((range (org-get-property-block beg)))
15674 (when range
15675 (let ((end (cdr range)) seen-base)
15676 (goto-char (car range))
15677 ;; Unlike to `org--update-property-plist', we
15678 ;; handle the case where base values is found
15679 ;; after its extension. We also forbid standard
15680 ;; properties to be named as special properties.
15681 (while (re-search-forward org-property-re end t)
15682 (let* ((key (upcase (org-match-string-no-properties 2)))
15683 (extendp (org-string-match-p "\\+\\'" key))
15684 (key-base (if extendp (substring key 0 -1) key))
15685 (value (org-match-string-no-properties 3)))
15686 (cond
15687 ((member-ignore-case key-base org-special-properties))
15688 (extendp
15689 (setq props
15690 (org--update-property-plist key value props)))
15691 ((member key seen-base))
15692 (t (push key seen-base)
15693 (let ((p (assoc-string key props t)))
15694 (if p (setcdr p (concat value " " (cdr p)))
15695 (push (cons key value) props))))))))))))
15696 (unless (assoc "CATEGORY" props)
15697 (push (cons "CATEGORY" (org-get-category)) props)
15698 (when (string= specific "CATEGORY") (throw 'exit props)))
15699 ;; Return value.
15700 (append (get-text-property beg 'org-summaries) props))))))
15702 (defun org-entry-get (pom property &optional inherit literal-nil)
15703 "Get value of PROPERTY for entry or content at point-or-marker POM.
15705 If INHERIT is non-nil and the entry does not have the property,
15706 then also check higher levels of the hierarchy. If INHERIT is
15707 the symbol `selective', use inheritance only if the setting in
15708 `org-use-property-inheritance' selects PROPERTY for inheritance.
15710 If the property is present but empty, the return value is the
15711 empty string. If the property is not present at all, nil is
15712 returned. In any other case, return the value as a string.
15713 Search is case-insensitive.
15715 If LITERAL-NIL is set, return the string value \"nil\" as
15716 a string, do not interpret it as the list atom nil. This is used
15717 for inheritance when a \"nil\" value can supersede a non-nil
15718 value higher up the hierarchy."
15719 (org-with-point-at pom
15720 (cond
15721 ((and inherit
15722 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15723 (org-entry-get-with-inheritance property literal-nil))
15724 ((member-ignore-case property org-special-properties)
15725 ;; We need a special property. Use `org-entry-properties' to
15726 ;; retrieve it, but specify the wanted property.
15727 (cdr (assoc-string property (org-entry-properties nil property))))
15729 (let ((range (org-get-property-block)))
15730 (when range
15731 (let* ((case-fold-search t)
15732 (end (cdr range))
15733 (props
15734 (let ((global
15735 (or (assoc-string property org-file-properties t)
15736 (assoc-string property org-global-properties t)
15737 (assoc-string
15738 property org-global-properties-fixed t))))
15739 ;; Make sure to not re-use GLOBAL as
15740 ;; `org--update-property-plist' would alter it by
15741 ;; side-effect.
15742 (and global (list (cons property (cdr global))))))
15743 (find-value
15744 (lambda (key)
15745 (when (re-search-forward (org-re-property key nil t) end t)
15746 (setq props
15747 (org--update-property-plist
15748 key (org-match-string-no-properties 3) props))))))
15749 (goto-char (car range))
15750 ;; Find base value.
15751 (save-excursion (funcall find-value property))
15752 ;; Find additional values.
15753 (let ((property+ (concat property "+")))
15754 (while (funcall find-value property+)))
15755 ;; Return final value.
15756 (let ((val (cdr (assoc-string property props t))))
15757 (if literal-nil val (org-not-nil val))))))))))
15759 (defun org-property-or-variable-value (var &optional inherit)
15760 "Check if there is a property fixing the value of VAR.
15761 If yes, return this value. If not, return the current value of the variable."
15762 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15763 (if (and prop (stringp prop) (string-match "\\S-" prop))
15764 (read prop)
15765 (symbol-value var))))
15767 (defun org-entry-delete (pom property)
15768 "Delete the property PROPERTY from entry at point-or-marker POM."
15769 (unless (member property org-special-properties)
15770 (org-with-point-at pom
15771 (let ((range (org-get-property-block)))
15772 (when range
15773 (let ((begin (car range))
15774 (end (copy-marker (cdr range))))
15775 (goto-char begin)
15776 (when (re-search-forward (org-re-property property nil t) end t)
15777 (delete-region (match-beginning 0) (line-beginning-position 2))
15778 ;; If drawer is empty, remove it altogether.
15779 (when (= begin end)
15780 (delete-region (line-beginning-position 0)
15781 (line-beginning-position 2)))
15782 (set-marker end nil))))))))
15784 ;; Multi-values properties are properties that contain multiple values
15785 ;; These values are assumed to be single words, separated by whitespace.
15786 (defun org-entry-add-to-multivalued-property (pom property value)
15787 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15788 (let* ((old (org-entry-get pom property))
15789 (values (and old (org-split-string old "[ \t]"))))
15790 (setq value (org-entry-protect-space value))
15791 (unless (member value values)
15792 (setq values (append values (list value)))
15793 (org-entry-put pom property
15794 (mapconcat 'identity values " ")))))
15796 (defun org-entry-remove-from-multivalued-property (pom property value)
15797 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15798 (let* ((old (org-entry-get pom property))
15799 (values (and old (org-split-string old "[ \t]"))))
15800 (setq value (org-entry-protect-space value))
15801 (when (member value values)
15802 (setq values (delete value values))
15803 (org-entry-put pom property
15804 (mapconcat 'identity values " ")))))
15806 (defun org-entry-member-in-multivalued-property (pom property value)
15807 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15808 (let* ((old (org-entry-get pom property))
15809 (values (and old (org-split-string old "[ \t]"))))
15810 (setq value (org-entry-protect-space value))
15811 (member value values)))
15813 (defun org-entry-get-multivalued-property (pom property)
15814 "Return a list of values in a multivalued property."
15815 (let* ((value (org-entry-get pom property))
15816 (values (and value (org-split-string value "[ \t]"))))
15817 (mapcar 'org-entry-restore-space values)))
15819 (defun org-entry-put-multivalued-property (pom property &rest values)
15820 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15821 VALUES should be a list of strings. Spaces will be protected."
15822 (org-entry-put pom property
15823 (mapconcat 'org-entry-protect-space values " "))
15824 (let* ((value (org-entry-get pom property))
15825 (values (and value (org-split-string value "[ \t]"))))
15826 (mapcar 'org-entry-restore-space values)))
15828 (defun org-entry-protect-space (s)
15829 "Protect spaces and newline in string S."
15830 (while (string-match " " s)
15831 (setq s (replace-match "%20" t t s)))
15832 (while (string-match "\n" s)
15833 (setq s (replace-match "%0A" t t s)))
15836 (defun org-entry-restore-space (s)
15837 "Restore spaces and newline in string S."
15838 (while (string-match "%20" s)
15839 (setq s (replace-match " " t t s)))
15840 (while (string-match "%0A" s)
15841 (setq s (replace-match "\n" t t s)))
15844 (defvar org-entry-property-inherited-from (make-marker)
15845 "Marker pointing to the entry from where a property was inherited.
15846 Each call to `org-entry-get-with-inheritance' will set this marker to the
15847 location of the entry where the inheritance search matched. If there was
15848 no match, the marker will point nowhere.
15849 Note that also `org-entry-get' calls this function, if the INHERIT flag
15850 is set.")
15852 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15853 "Get PROPERTY of entry or content at point, search higher levels if needed.
15854 The search will stop at the first ancestor which has the property defined.
15855 If the value found is \"nil\", return nil to show that the property
15856 should be considered as undefined (this is the meaning of nil here).
15857 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15858 (move-marker org-entry-property-inherited-from nil)
15859 (let (value)
15860 (org-with-wide-buffer
15861 (catch 'exit
15862 (while t
15863 (when (setq value (org-entry-get nil property nil literal-nil))
15864 (org-back-to-heading t)
15865 (move-marker org-entry-property-inherited-from (point))
15866 (throw 'exit nil))
15867 (or (org-up-heading-safe) (throw 'exit nil)))))
15868 (unless value
15869 (setq value
15870 (cdr (or (assoc-string property org-file-properties t)
15871 (assoc-string property org-global-properties t)
15872 (assoc-string property org-global-properties-fixed t)))))
15873 (if literal-nil value (org-not-nil value))))
15875 (defvar org-property-changed-functions nil
15876 "Hook called when the value of a property has changed.
15877 Each hook function should accept two arguments, the name of the property
15878 and the new value.")
15880 (defun org-entry-put (pom property value)
15881 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15883 If the value is `nil', it is converted to the empty string. If
15884 it is not a string, an error is raised.
15886 PROPERTY can be any regular property (see
15887 `org-special-properties'). It can also be \"TODO\",
15888 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15890 For the last two properties, VALUE may have any of the special
15891 values \"earlier\" and \"later\". The function then increases or
15892 decreases scheduled or deadline date by one day."
15893 (cond ((null value) (setq value ""))
15894 ((not (stringp value)) (error "Properties values should be strings")))
15895 (org-with-point-at pom
15896 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15897 (org-back-to-heading t)
15898 (org-with-limited-levels (org-back-to-heading t)))
15899 (let ((beg (point)))
15900 (cond
15901 ((equal property "TODO")
15902 (cond ((not (org-string-nw-p value)) (setq value 'none))
15903 ((not (member value org-todo-keywords-1))
15904 (user-error "\"%s\" is not a valid TODO state" value)))
15905 (org-todo value)
15906 (org-set-tags nil 'align))
15907 ((equal property "PRIORITY")
15908 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15909 (org-set-tags nil 'align))
15910 ((equal property "SCHEDULED")
15911 (forward-line)
15912 (if (and (org-looking-at-p org-planning-line-re)
15913 (re-search-forward
15914 org-scheduled-time-regexp (line-end-position) t))
15915 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15916 ((string= value "later") (org-timestamp-change 1 'day))
15917 ((string= value "") (org-schedule '(4)))
15918 (t (org-schedule nil value)))
15919 (if (member value '("earlier" "later" ""))
15920 (call-interactively #'org-schedule)
15921 (org-schedule nil value))))
15922 ((equal property "DEADLINE")
15923 (forward-line)
15924 (if (and (org-looking-at-p org-planning-line-re)
15925 (re-search-forward
15926 org-deadline-time-regexp (line-end-position) t))
15927 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15928 ((string= value "later") (org-timestamp-change 1 'day))
15929 ((string= value "") (org-deadline '(4)))
15930 (t (org-deadline nil value)))
15931 (if (member value '("earlier" "later" ""))
15932 (call-interactively #'org-deadline)
15933 (org-deadline nil value))))
15934 ((member property org-special-properties)
15935 (error "The %s property cannot be set with `org-entry-put'" property))
15937 (let* ((range (org-get-property-block beg 'force))
15938 (end (cdr range))
15939 (case-fold-search t))
15940 (goto-char (car range))
15941 (if (re-search-forward (org-re-property property nil t) end t)
15942 (progn (delete-region (match-beginning 0) (match-end 0))
15943 (goto-char (match-beginning 0)))
15944 (goto-char end)
15945 (insert "\n")
15946 (backward-char))
15947 (insert ":" property ":")
15948 (when value (insert " " value))
15949 (org-indent-line)))))
15950 (run-hook-with-args 'org-property-changed-functions property value)))
15952 (defun org-buffer-property-keys (&optional specials defaults columns)
15953 "Get all property keys in the current buffer.
15955 When SPECIALS is non-nil, also list the special properties that
15956 reflect things like tags and TODO state.
15958 When DEFAULTS is non-nil, also include properties that has
15959 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15960 DESCRIPTION, LOCATION, and LOGGING and others.
15962 When COLUMNS in non-nil, also include property names given in
15963 COLUMN formats in the current buffer."
15964 (let ((case-fold-search t)
15965 (props (append
15966 (and specials org-special-properties)
15967 (and defaults (cons org-effort-property org-default-properties))
15968 nil)))
15969 (org-with-wide-buffer
15970 (goto-char (point-min))
15971 (while (re-search-forward org-property-start-re nil t)
15972 (let ((range (org-get-property-block)))
15973 (catch 'skip
15974 (unless range
15975 (when (and (not (org-before-first-heading-p))
15976 (y-or-n-p (format "Malformed drawer at %d, repair?"
15977 (line-beginning-position))))
15978 (org-get-property-block nil t))
15979 (throw 'skip nil))
15980 (goto-char (car range))
15981 (let ((begin (car range))
15982 (end (cdr range)))
15983 ;; Make sure that found property block is not located
15984 ;; before current point, as it would generate an infloop.
15985 ;; It can happen, for example, in the following
15986 ;; situation:
15988 ;; * Headline
15989 ;; :PROPERTIES:
15990 ;; ...
15991 ;; :END:
15992 ;; *************** Inlinetask
15993 ;; #+BEGIN_EXAMPLE
15994 ;; :PROPERTIES:
15995 ;; #+END_EXAMPLE
15997 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
15998 (while (< (point) end)
15999 (let ((p (progn (looking-at org-property-re)
16000 (org-match-string-no-properties 2))))
16001 ;; Only add true property name, not extension symbol.
16002 (add-to-list 'props
16003 (if (not (org-string-match-p "\\+\\'" p)) p
16004 (substring p 0 -1))))
16005 (forward-line))))
16006 (outline-next-heading)))
16007 (when columns
16008 (goto-char (point-min))
16009 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16010 (let ((element (org-element-at-point)))
16011 (when (memq (org-element-type element) '(keyword node-property))
16012 (let ((value (org-element-property :value element))
16013 (start 0))
16014 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16015 (setq start (match-end 0))
16016 (let ((p (org-match-string-no-properties 1 value)))
16017 (unless (member-ignore-case
16018 p (cons "ITEM" org-special-properties))
16019 (add-to-list 'props p))))))))))
16020 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16022 (defun org-property-values (key)
16023 "List all non-nil values of property KEY in current buffer."
16024 (org-with-wide-buffer
16025 (goto-char (point-min))
16026 (let ((case-fold-search t)
16027 (re (org-re-property key))
16028 values)
16029 (while (re-search-forward re nil t)
16030 (add-to-list 'values (org-entry-get (point) key)))
16031 values)))
16033 (defun org-insert-property-drawer ()
16034 "Insert a property drawer into the current entry."
16035 (org-with-wide-buffer
16036 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16037 (org-back-to-heading t)
16038 (org-with-limited-levels (org-back-to-heading t)))
16039 (forward-line)
16040 (when (org-looking-at-p org-planning-line-re) (forward-line))
16041 (unless (org-looking-at-p org-property-drawer-re)
16042 (let ((inhibit-read-only t))
16043 (unless (bolp) (insert "\n"))
16044 (let ((begin (point)))
16045 (insert ":PROPERTIES:\n:END:\n")
16046 (org-indent-region begin (point)))))))
16048 (defun org-insert-drawer (&optional arg drawer)
16049 "Insert a drawer at point.
16051 When optional argument ARG is non-nil, insert a property drawer.
16053 Optional argument DRAWER, when non-nil, is a string representing
16054 drawer's name. Otherwise, the user is prompted for a name.
16056 If a region is active, insert the drawer around that region
16057 instead.
16059 Point is left between drawer's boundaries."
16060 (interactive "P")
16061 (let* ((drawer (if arg "PROPERTIES"
16062 (or drawer (read-from-minibuffer "Drawer: ")))))
16063 (cond
16064 ;; With C-u, fall back on `org-insert-property-drawer'
16065 (arg (org-insert-property-drawer))
16066 ;; Check validity of suggested drawer's name.
16067 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16068 (user-error "Invalid drawer name"))
16069 ;; With an active region, insert a drawer at point.
16070 ((not (org-region-active-p))
16071 (progn
16072 (unless (bolp) (insert "\n"))
16073 (insert (format ":%s:\n\n:END:\n" drawer))
16074 (forward-line -2)))
16075 ;; Otherwise, insert the drawer at point
16077 (let ((rbeg (region-beginning))
16078 (rend (copy-marker (region-end))))
16079 (unwind-protect
16080 (progn
16081 (goto-char rbeg)
16082 (beginning-of-line)
16083 (when (save-excursion
16084 (re-search-forward org-outline-regexp-bol rend t))
16085 (user-error "Drawers cannot contain headlines"))
16086 ;; Position point at the beginning of the first
16087 ;; non-blank line in region. Insert drawer's opening
16088 ;; there, then indent it.
16089 (org-skip-whitespace)
16090 (beginning-of-line)
16091 (insert ":" drawer ":\n")
16092 (forward-line -1)
16093 (indent-for-tab-command)
16094 ;; Move point to the beginning of the first blank line
16095 ;; after the last non-blank line in region. Insert
16096 ;; drawer's closing, then indent it.
16097 (goto-char rend)
16098 (skip-chars-backward " \r\t\n")
16099 (insert "\n:END:")
16100 (deactivate-mark t)
16101 (indent-for-tab-command)
16102 (unless (eolp) (insert "\n")))
16103 ;; Clear marker, whatever the outcome of insertion is.
16104 (set-marker rend nil)))))))
16106 (defvar org-property-set-functions-alist nil
16107 "Property set function alist.
16108 Each entry should have the following format:
16110 (PROPERTY . READ-FUNCTION)
16112 The read function will be called with the same argument as
16113 `org-completing-read'.")
16115 (defun org-set-property-function (property)
16116 "Get the function that should be used to set PROPERTY.
16117 This is computed according to `org-property-set-functions-alist'."
16118 (or (cdr (assoc property org-property-set-functions-alist))
16119 'org-completing-read))
16121 (defun org-read-property-value (property)
16122 "Read PROPERTY value from user."
16123 (let* ((completion-ignore-case t)
16124 (allowed (org-property-get-allowed-values nil property 'table))
16125 (cur (org-entry-get nil property))
16126 (prompt (concat property " value"
16127 (if (and cur (string-match "\\S-" cur))
16128 (concat " [" cur "]") "") ": "))
16129 (set-function (org-set-property-function property))
16130 (val (if allowed
16131 (funcall set-function prompt allowed nil
16132 (not (get-text-property 0 'org-unrestricted
16133 (caar allowed))))
16134 (let (org-completion-use-ido org-completion-use-iswitchb)
16135 (funcall set-function prompt
16136 (mapcar 'list (org-property-values property))
16137 nil nil "" nil cur)))))
16138 (org-trim val)))
16140 (defvar org-last-set-property nil)
16141 (defvar org-last-set-property-value nil)
16142 (defun org-read-property-name ()
16143 "Read a property name."
16144 (let* ((completion-ignore-case t)
16145 (keys (org-buffer-property-keys nil t t))
16146 (default-prop (or (save-excursion
16147 (save-match-data
16148 (beginning-of-line)
16149 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16150 (null (string= (match-string 1) "END"))
16151 (match-string 1))))
16152 org-last-set-property))
16153 (property (org-icompleting-read
16154 (concat "Property"
16155 (if default-prop (concat " [" default-prop "]") "")
16156 ": ")
16157 (mapcar 'list keys)
16158 nil nil nil nil
16159 default-prop)))
16160 (if (member property keys)
16161 property
16162 (or (cdr (assoc (downcase property)
16163 (mapcar (lambda (x) (cons (downcase x) x))
16164 keys)))
16165 property))))
16167 (defun org-set-property-and-value (use-last)
16168 "Allow to set [PROPERTY]: [value] direction from prompt.
16169 When use-default, don't even ask, just use the last
16170 \"[PROPERTY]: [value]\" string from the history."
16171 (interactive "P")
16172 (let* ((completion-ignore-case t)
16173 (pv (or (and use-last org-last-set-property-value)
16174 (org-completing-read
16175 "Enter a \"[Property]: [value]\" pair: "
16176 nil nil nil nil nil
16177 org-last-set-property-value)))
16178 prop val)
16179 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16180 (setq prop (match-string 1 pv)
16181 val (match-string 2 pv))
16182 (org-set-property prop val))))
16184 (defun org-set-property (property value)
16185 "In the current entry, set PROPERTY to VALUE.
16186 When called interactively, this will prompt for a property name, offering
16187 completion on existing and default properties. And then it will prompt
16188 for a value, offering completion either on allowed values (via an inherited
16189 xxx_ALL property) or on existing values in other instances of this property
16190 in the current file."
16191 (interactive (list nil nil))
16192 (let* ((property (or property (org-read-property-name)))
16193 (value (or value (org-read-property-value property)))
16194 (fn (cdr (assoc property org-properties-postprocess-alist))))
16195 (setq org-last-set-property property)
16196 (setq org-last-set-property-value (concat property ": " value))
16197 ;; Possibly postprocess the inserted value:
16198 (when fn (setq value (funcall fn value)))
16199 (unless (equal (org-entry-get nil property) value)
16200 (org-entry-put nil property value))))
16202 (defun org-delete-property (property)
16203 "In the current entry, delete PROPERTY."
16204 (interactive
16205 (let* ((completion-ignore-case t)
16206 (cat (org-entry-get (point) "CATEGORY"))
16207 (props0 (org-entry-properties nil 'standard))
16208 (props (if cat props0
16209 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16210 (prop (if (< 1 (length props))
16211 (org-icompleting-read "Property: " props nil t)
16212 (caar props))))
16213 (list prop)))
16214 (if (not property)
16215 (message "No property to delete in this entry")
16216 (org-entry-delete nil property)
16217 (message "Property \"%s\" deleted" property)))
16219 (defun org-delete-property-globally (property)
16220 "Remove PROPERTY globally, from all entries."
16221 (interactive
16222 (let* ((completion-ignore-case t)
16223 (prop (org-icompleting-read
16224 "Globally remove property: "
16225 (mapcar 'list (org-buffer-property-keys)))))
16226 (list prop)))
16227 (save-excursion
16228 (save-restriction
16229 (widen)
16230 (goto-char (point-min))
16231 (let ((cnt 0))
16232 (while (re-search-forward
16233 (org-re-property property)
16234 nil t)
16235 (setq cnt (1+ cnt))
16236 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16237 (message "Property \"%s\" removed from %d entries" property cnt)))))
16239 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16241 (defun org-compute-property-at-point ()
16242 "Compute the property at point.
16243 This looks for an enclosing column format, extracts the operator and
16244 then applies it to the property in the column format's scope."
16245 (interactive)
16246 (unless (org-at-property-p)
16247 (user-error "Not at a property"))
16248 (let ((prop (org-match-string-no-properties 2)))
16249 (org-columns-get-format-and-top-level)
16250 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16251 (user-error "No operator defined for property %s" prop))
16252 (org-columns-compute prop)))
16254 (defvar org-property-allowed-value-functions nil
16255 "Hook for functions supplying allowed values for a specific property.
16256 The functions must take a single argument, the name of the property, and
16257 return a flat list of allowed values. If \":ETC\" is one of
16258 the values, this means that these values are intended as defaults for
16259 completion, but that other values should be allowed too.
16260 The functions must return nil if they are not responsible for this
16261 property.")
16263 (defun org-property-get-allowed-values (pom property &optional table)
16264 "Get allowed values for the property PROPERTY.
16265 When TABLE is non-nil, return an alist that can directly be used for
16266 completion."
16267 (let (vals)
16268 (cond
16269 ((equal property "TODO")
16270 (setq vals (org-with-point-at pom
16271 (append org-todo-keywords-1 '("")))))
16272 ((equal property "PRIORITY")
16273 (let ((n org-lowest-priority))
16274 (while (>= n org-highest-priority)
16275 (push (char-to-string n) vals)
16276 (setq n (1- n)))))
16277 ((member property org-special-properties))
16278 ((setq vals (run-hook-with-args-until-success
16279 'org-property-allowed-value-functions property)))
16281 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16282 (when (and vals (string-match "\\S-" vals))
16283 (setq vals (car (read-from-string (concat "(" vals ")"))))
16284 (setq vals (mapcar (lambda (x)
16285 (cond ((stringp x) x)
16286 ((numberp x) (number-to-string x))
16287 ((symbolp x) (symbol-name x))
16288 (t "???")))
16289 vals)))))
16290 (when (member ":ETC" vals)
16291 (setq vals (remove ":ETC" vals))
16292 (org-add-props (car vals) '(org-unrestricted t)))
16293 (if table (mapcar 'list vals) vals)))
16295 (defun org-property-previous-allowed-value (&optional previous)
16296 "Switch to the next allowed value for this property."
16297 (interactive)
16298 (org-property-next-allowed-value t))
16300 (defun org-property-next-allowed-value (&optional previous)
16301 "Switch to the next allowed value for this property."
16302 (interactive)
16303 (unless (org-at-property-p)
16304 (user-error "Not at a property"))
16305 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16306 (key (match-string 2))
16307 (value (match-string 3))
16308 (allowed (or (org-property-get-allowed-values (point) key)
16309 (and (member value '("[ ]" "[-]" "[X]"))
16310 '("[ ]" "[X]"))))
16311 (heading (save-match-data (nth 4 (org-heading-components))))
16312 nval)
16313 (unless allowed
16314 (user-error "Allowed values for this property have not been defined"))
16315 (if previous (setq allowed (reverse allowed)))
16316 (if (member value allowed)
16317 (setq nval (car (cdr (member value allowed)))))
16318 (setq nval (or nval (car allowed)))
16319 (if (equal nval value)
16320 (user-error "Only one allowed value for this property"))
16321 (org-at-property-p)
16322 (replace-match (concat " :" key ": " nval) t t)
16323 (org-indent-line)
16324 (beginning-of-line 1)
16325 (skip-chars-forward " \t")
16326 (when (equal prop org-effort-property)
16327 (org-refresh-property
16328 '((effort . identity)
16329 (effort-minutes . org-duration-string-to-minutes))
16330 nval)
16331 (when (string= org-clock-current-task heading)
16332 (setq org-clock-effort nval)
16333 (org-clock-update-mode-line)))
16334 (run-hook-with-args 'org-property-changed-functions key nval)))
16336 (defun org-find-olp (path &optional this-buffer)
16337 "Return a marker pointing to the entry at outline path OLP.
16338 If anything goes wrong, throw an error.
16339 You can wrap this call to catch the error like this:
16341 (condition-case msg
16342 (org-mobile-locate-entry (match-string 4))
16343 (error (nth 1 msg)))
16345 The return value will then be either a string with the error message,
16346 or a marker if everything is OK.
16348 If THIS-BUFFER is set, the outline path does not contain a file,
16349 only headings."
16350 (let* ((file (if this-buffer buffer-file-name (pop path)))
16351 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16352 (level 1)
16353 (lmin 1)
16354 (lmax 1)
16355 limit re end found pos heading cnt flevel)
16356 (unless buffer (error "File not found :%s" file))
16357 (with-current-buffer buffer
16358 (save-excursion
16359 (save-restriction
16360 (widen)
16361 (setq limit (point-max))
16362 (goto-char (point-min))
16363 (while (setq heading (pop path))
16364 (setq re (format org-complex-heading-regexp-format
16365 (regexp-quote heading)))
16366 (setq cnt 0 pos (point))
16367 (while (re-search-forward re end t)
16368 (setq level (- (match-end 1) (match-beginning 1)))
16369 (if (and (>= level lmin) (<= level lmax))
16370 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16371 (when (= cnt 0) (error "Heading not found on level %d: %s"
16372 lmax heading))
16373 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16374 lmax heading))
16375 (goto-char found)
16376 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16377 (setq end (save-excursion (org-end-of-subtree t t))))
16378 (when (org-at-heading-p)
16379 (point-marker)))))))
16381 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16382 "Find node HEADING in BUFFER.
16383 Return a marker to the heading if it was found, or nil if not.
16384 If POS-ONLY is set, return just the position instead of a marker.
16386 The heading text must match exact, but it may have a TODO keyword,
16387 a priority cookie and tags in the standard locations."
16388 (with-current-buffer (or buffer (current-buffer))
16389 (save-excursion
16390 (save-restriction
16391 (widen)
16392 (goto-char (point-min))
16393 (let (case-fold-search)
16394 (if (re-search-forward
16395 (format org-complex-heading-regexp-format
16396 (regexp-quote heading)) nil t)
16397 (if pos-only
16398 (match-beginning 0)
16399 (move-marker (make-marker) (match-beginning 0)))))))))
16401 (defun org-find-exact-heading-in-directory (heading &optional dir)
16402 "Find Org node headline HEADING in all .org files in directory DIR.
16403 When the target headline is found, return a marker to this location."
16404 (let ((files (directory-files (or dir default-directory)
16405 t "\\`[^.#].*\\.org\\'"))
16406 file visiting m buffer)
16407 (catch 'found
16408 (while (setq file (pop files))
16409 (message "trying %s" file)
16410 (setq visiting (org-find-base-buffer-visiting file))
16411 (setq buffer (or visiting (find-file-noselect file)))
16412 (setq m (org-find-exact-headline-in-buffer
16413 heading buffer))
16414 (when (and (not m) (not visiting)) (kill-buffer buffer))
16415 (and m (throw 'found m))))))
16417 (defun org-find-entry-with-id (ident)
16418 "Locate the entry that contains the ID property with exact value IDENT.
16419 IDENT can be a string, a symbol or a number, this function will search for
16420 the string representation of it.
16421 Return the position where this entry starts, or nil if there is no such entry."
16422 (interactive "sID: ")
16423 (let ((id (cond
16424 ((stringp ident) ident)
16425 ((symbol-name ident) (symbol-name ident))
16426 ((numberp ident) (number-to-string ident))
16427 (t (error "IDENT %s must be a string, symbol or number" ident))))
16428 (case-fold-search nil))
16429 (save-excursion
16430 (save-restriction
16431 (widen)
16432 (goto-char (point-min))
16433 (when (re-search-forward
16434 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16435 nil t)
16436 (org-back-to-heading t)
16437 (point))))))
16439 ;;;; Timestamps
16441 (defvar org-last-changed-timestamp nil)
16442 (defvar org-last-inserted-timestamp nil
16443 "The last time stamp inserted with `org-insert-time-stamp'.")
16444 (defvar org-ts-what) ; dynamically scoped parameter
16446 (defun org-time-stamp (arg &optional inactive)
16447 "Prompt for a date/time and insert a time stamp.
16448 If the user specifies a time like HH:MM or if this command is
16449 called with at least one prefix argument, the time stamp contains
16450 the date and the time. Otherwise, only the date is be included.
16452 All parts of a date not specified by the user is filled in from
16453 the current date/time. So if you just press return without
16454 typing anything, the time stamp will represent the current
16455 date/time.
16457 If there is already a timestamp at the cursor, it will be
16458 modified.
16460 With two universal prefix arguments, insert an active timestamp
16461 with the current time without prompting the user.
16463 When called from lisp, the timestamp is inactive if INACTIVE is
16464 non-nil."
16465 (interactive "P")
16466 (let* ((ts nil)
16467 (default-time
16468 ;; Default time is either today, or, when entering a range,
16469 ;; the range start.
16470 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16471 (save-excursion
16472 (re-search-backward
16473 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16474 (- (point) 20) t)))
16475 (apply 'encode-time (org-parse-time-string (match-string 1)))
16476 (current-time)))
16477 (default-input (and ts (org-get-compact-tod ts)))
16478 (repeater (save-excursion
16479 (save-match-data
16480 (beginning-of-line)
16481 (when (re-search-forward
16482 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16483 (save-excursion (progn (end-of-line) (point))) t)
16484 (match-string 0)))))
16485 org-time-was-given org-end-time-was-given time)
16486 (cond
16487 ((and (org-at-timestamp-p t)
16488 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16489 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16490 (insert "--")
16491 (setq time (let ((this-command this-command))
16492 (org-read-date arg 'totime nil nil
16493 default-time default-input inactive)))
16494 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16495 ((org-at-timestamp-p t)
16496 (setq time (let ((this-command this-command))
16497 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16498 (when (org-at-timestamp-p t) ; just to get the match data
16499 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16500 (replace-match "")
16501 (setq org-last-changed-timestamp
16502 (org-insert-time-stamp
16503 time (or org-time-was-given arg)
16504 inactive nil nil (list org-end-time-was-given)))
16505 (when repeater (goto-char (1- (point))) (insert " " repeater)
16506 (setq org-last-changed-timestamp
16507 (concat (substring org-last-inserted-timestamp 0 -1)
16508 " " repeater ">"))))
16509 (message "Timestamp updated"))
16510 ((equal arg '(16))
16511 (org-insert-time-stamp (current-time) t inactive))
16513 (setq time (let ((this-command this-command))
16514 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16515 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16516 nil nil (list org-end-time-was-given))))))
16518 ;; FIXME: can we use this for something else, like computing time differences?
16519 (defun org-get-compact-tod (s)
16520 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16521 (let* ((t1 (match-string 1 s))
16522 (h1 (string-to-number (match-string 2 s)))
16523 (m1 (string-to-number (match-string 3 s)))
16524 (t2 (and (match-end 4) (match-string 5 s)))
16525 (h2 (and t2 (string-to-number (match-string 6 s))))
16526 (m2 (and t2 (string-to-number (match-string 7 s))))
16527 dh dm)
16528 (if (not t2)
16530 (setq dh (- h2 h1) dm (- m2 m1))
16531 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16532 (concat t1 "+" (number-to-string dh)
16533 (and (/= 0 dm) (format ":%02d" dm)))))))
16535 (defun org-time-stamp-inactive (&optional arg)
16536 "Insert an inactive time stamp.
16537 An inactive time stamp is enclosed in square brackets instead of angle
16538 brackets. It is inactive in the sense that it does not trigger agenda entries,
16539 does not link to the calendar and cannot be changed with the S-cursor keys.
16540 So these are more for recording a certain time/date."
16541 (interactive "P")
16542 (org-time-stamp arg 'inactive))
16544 (defvar org-date-ovl (make-overlay 1 1))
16545 (overlay-put org-date-ovl 'face 'org-date-selected)
16546 (org-detach-overlay org-date-ovl)
16548 (defvar org-ans1) ; dynamically scoped parameter
16549 (defvar org-ans2) ; dynamically scoped parameter
16551 (defvar org-plain-time-of-day-regexp) ; defined below
16553 (defvar org-overriding-default-time nil) ; dynamically scoped
16554 (defvar org-read-date-overlay nil)
16555 (defvar org-dcst nil) ; dynamically scoped
16556 (defvar org-read-date-history nil)
16557 (defvar org-read-date-final-answer nil)
16558 (defvar org-read-date-analyze-futurep nil)
16559 (defvar org-read-date-analyze-forced-year nil)
16560 (defvar org-read-date-inactive)
16562 (defvar org-read-date-minibuffer-local-map
16563 (let* ((org-replace-disputed-keys nil)
16564 (map (make-sparse-keymap)))
16565 (set-keymap-parent map minibuffer-local-map)
16566 (org-defkey map (kbd ".")
16567 (lambda () (interactive)
16568 ;; Are we at the beginning of the prompt?
16569 (if (looking-back "^[^:]+: ")
16570 (org-eval-in-calendar '(calendar-goto-today))
16571 (insert "."))))
16572 (org-defkey map (kbd "C-.")
16573 (lambda () (interactive)
16574 (org-eval-in-calendar '(calendar-goto-today))))
16575 (org-defkey map [(meta shift left)]
16576 (lambda () (interactive)
16577 (org-eval-in-calendar '(calendar-backward-month 1))))
16578 (org-defkey map [(meta shift right)]
16579 (lambda () (interactive)
16580 (org-eval-in-calendar '(calendar-forward-month 1))))
16581 (org-defkey map [(meta shift up)]
16582 (lambda () (interactive)
16583 (org-eval-in-calendar '(calendar-backward-year 1))))
16584 (org-defkey map [(meta shift down)]
16585 (lambda () (interactive)
16586 (org-eval-in-calendar '(calendar-forward-year 1))))
16587 (org-defkey map [?\e (shift left)]
16588 (lambda () (interactive)
16589 (org-eval-in-calendar '(calendar-backward-month 1))))
16590 (org-defkey map [?\e (shift right)]
16591 (lambda () (interactive)
16592 (org-eval-in-calendar '(calendar-forward-month 1))))
16593 (org-defkey map [?\e (shift up)]
16594 (lambda () (interactive)
16595 (org-eval-in-calendar '(calendar-backward-year 1))))
16596 (org-defkey map [?\e (shift down)]
16597 (lambda () (interactive)
16598 (org-eval-in-calendar '(calendar-forward-year 1))))
16599 (org-defkey map [(shift up)]
16600 (lambda () (interactive)
16601 (org-eval-in-calendar '(calendar-backward-week 1))))
16602 (org-defkey map [(shift down)]
16603 (lambda () (interactive)
16604 (org-eval-in-calendar '(calendar-forward-week 1))))
16605 (org-defkey map [(shift left)]
16606 (lambda () (interactive)
16607 (org-eval-in-calendar '(calendar-backward-day 1))))
16608 (org-defkey map [(shift right)]
16609 (lambda () (interactive)
16610 (org-eval-in-calendar '(calendar-forward-day 1))))
16611 (org-defkey map "!"
16612 (lambda () (interactive)
16613 (org-eval-in-calendar '(diary-view-entries))
16614 (message "")))
16615 (org-defkey map ">"
16616 (lambda () (interactive)
16617 (org-eval-in-calendar '(calendar-scroll-left 1))))
16618 (org-defkey map "<"
16619 (lambda () (interactive)
16620 (org-eval-in-calendar '(calendar-scroll-right 1))))
16621 (org-defkey map "\C-v"
16622 (lambda () (interactive)
16623 (org-eval-in-calendar
16624 '(calendar-scroll-left-three-months 1))))
16625 (org-defkey map "\M-v"
16626 (lambda () (interactive)
16627 (org-eval-in-calendar
16628 '(calendar-scroll-right-three-months 1))))
16629 map)
16630 "Keymap for minibuffer commands when using `org-read-date'.")
16632 (defvar org-def)
16633 (defvar org-defdecode)
16634 (defvar org-with-time)
16636 (defun org-read-date (&optional org-with-time to-time from-string prompt
16637 default-time default-input inactive)
16638 "Read a date, possibly a time, and make things smooth for the user.
16639 The prompt will suggest to enter an ISO date, but you can also enter anything
16640 which will at least partially be understood by `parse-time-string'.
16641 Unrecognized parts of the date will default to the current day, month, year,
16642 hour and minute. If this command is called to replace a timestamp at point,
16643 or to enter the second timestamp of a range, the default time is taken
16644 from the existing stamp. Furthermore, the command prefers the future,
16645 so if you are giving a date where the year is not given, and the day-month
16646 combination is already past in the current year, it will assume you
16647 mean next year. For details, see the manual. A few examples:
16649 3-2-5 --> 2003-02-05
16650 feb 15 --> currentyear-02-15
16651 2/15 --> currentyear-02-15
16652 sep 12 9 --> 2009-09-12
16653 12:45 --> today 12:45
16654 22 sept 0:34 --> currentyear-09-22 0:34
16655 12 --> currentyear-currentmonth-12
16656 Fri --> nearest Friday after today
16657 -Tue --> last Tuesday
16658 etc.
16660 Furthermore you can specify a relative date by giving, as the *first* thing
16661 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16662 change in days weeks, months, years.
16663 With a single plus or minus, the date is relative to today. With a double
16664 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16665 +4d --> four days from today
16666 +4 --> same as above
16667 +2w --> two weeks from today
16668 ++5 --> five days from default date
16670 The function understands only English month and weekday abbreviations.
16672 While prompting, a calendar is popped up - you can also select the
16673 date with the mouse (button 1). The calendar shows a period of three
16674 months. To scroll it to other months, use the keys `>' and `<'.
16675 If you don't like the calendar, turn it off with
16676 \(setq org-read-date-popup-calendar nil)
16678 With optional argument TO-TIME, the date will immediately be converted
16679 to an internal time.
16680 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16681 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16682 still enter a time, and this function will inform the calling routine
16683 about this change. The calling routine may then choose to change the
16684 format used to insert the time stamp into the buffer to include the time.
16685 With optional argument FROM-STRING, read from this string instead from
16686 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16687 the time/date that is used for everything that is not specified by the
16688 user."
16689 (require 'parse-time)
16690 (let* ((org-time-stamp-rounding-minutes
16691 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16692 (org-dcst org-display-custom-times)
16693 (ct (org-current-time))
16694 (org-def (or org-overriding-default-time default-time ct))
16695 (org-defdecode (decode-time org-def))
16696 (dummy (progn
16697 (when (< (nth 2 org-defdecode) org-extend-today-until)
16698 (setcar (nthcdr 2 org-defdecode) -1)
16699 (setcar (nthcdr 1 org-defdecode) 59)
16700 (setq org-def (apply 'encode-time org-defdecode)
16701 org-defdecode (decode-time org-def)))))
16702 (mouse-autoselect-window nil) ; Don't let the mouse jump
16703 (calendar-frame-setup nil)
16704 (calendar-setup nil)
16705 (calendar-move-hook nil)
16706 (calendar-view-diary-initially-flag nil)
16707 (calendar-view-holidays-initially-flag nil)
16708 (timestr (format-time-string
16709 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16710 (prompt (concat (if prompt (concat prompt " ") "")
16711 (format "Date+time [%s]: " timestr)))
16712 ans (org-ans0 "") org-ans1 org-ans2 final)
16714 (cond
16715 (from-string (setq ans from-string))
16716 (org-read-date-popup-calendar
16717 (save-excursion
16718 (save-window-excursion
16719 (calendar)
16720 (org-eval-in-calendar '(setq cursor-type nil) t)
16721 (unwind-protect
16722 (progn
16723 (calendar-forward-day (- (time-to-days org-def)
16724 (calendar-absolute-from-gregorian
16725 (calendar-current-date))))
16726 (org-eval-in-calendar nil t)
16727 (let* ((old-map (current-local-map))
16728 (map (copy-keymap calendar-mode-map))
16729 (minibuffer-local-map
16730 (copy-keymap org-read-date-minibuffer-local-map)))
16731 (org-defkey map (kbd "RET") 'org-calendar-select)
16732 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16733 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16734 (unwind-protect
16735 (progn
16736 (use-local-map map)
16737 (setq org-read-date-inactive inactive)
16738 (add-hook 'post-command-hook 'org-read-date-display)
16739 (setq org-ans0 (read-string prompt default-input
16740 'org-read-date-history nil))
16741 ;; org-ans0: from prompt
16742 ;; org-ans1: from mouse click
16743 ;; org-ans2: from calendar motion
16744 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16745 (remove-hook 'post-command-hook 'org-read-date-display)
16746 (use-local-map old-map)
16747 (when org-read-date-overlay
16748 (delete-overlay org-read-date-overlay)
16749 (setq org-read-date-overlay nil)))))
16750 (bury-buffer "*Calendar*")))))
16752 (t ; Naked prompt only
16753 (unwind-protect
16754 (setq ans (read-string prompt default-input
16755 'org-read-date-history timestr))
16756 (when org-read-date-overlay
16757 (delete-overlay org-read-date-overlay)
16758 (setq org-read-date-overlay nil)))))
16760 (setq final (org-read-date-analyze ans org-def org-defdecode))
16762 (when org-read-date-analyze-forced-year
16763 (message "Year was forced into %s"
16764 (if org-read-date-force-compatible-dates
16765 "compatible range (1970-2037)"
16766 "range representable on this machine"))
16767 (ding))
16769 ;; One round trip to get rid of 34th of August and stuff like that....
16770 (setq final (decode-time (apply 'encode-time final)))
16772 (setq org-read-date-final-answer ans)
16774 (if to-time
16775 (apply 'encode-time final)
16776 (if (and (boundp 'org-time-was-given) org-time-was-given)
16777 (format "%04d-%02d-%02d %02d:%02d"
16778 (nth 5 final) (nth 4 final) (nth 3 final)
16779 (nth 2 final) (nth 1 final))
16780 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16782 (defun org-read-date-display ()
16783 "Display the current date prompt interpretation in the minibuffer."
16784 (when org-read-date-display-live
16785 (when org-read-date-overlay
16786 (delete-overlay org-read-date-overlay))
16787 (when (minibufferp (current-buffer))
16788 (save-excursion
16789 (end-of-line 1)
16790 (while (not (equal (buffer-substring
16791 (max (point-min) (- (point) 4)) (point))
16792 " "))
16793 (insert " ")))
16794 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16795 " " (or org-ans1 org-ans2)))
16796 (org-end-time-was-given nil)
16797 (f (org-read-date-analyze ans org-def org-defdecode))
16798 (fmts (if org-dcst
16799 org-time-stamp-custom-formats
16800 org-time-stamp-formats))
16801 (fmt (if (or org-with-time
16802 (and (boundp 'org-time-was-given) org-time-was-given))
16803 (cdr fmts)
16804 (car fmts)))
16805 (txt (format-time-string fmt (apply 'encode-time f)))
16806 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16807 (txt (concat "=> " txt)))
16808 (when (and org-end-time-was-given
16809 (string-match org-plain-time-of-day-regexp txt))
16810 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16811 org-end-time-was-given
16812 (substring txt (match-end 0)))))
16813 (when org-read-date-analyze-futurep
16814 (setq txt (concat txt " (=>F)")))
16815 (setq org-read-date-overlay
16816 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16817 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16819 (defun org-read-date-analyze (ans org-def org-defdecode)
16820 "Analyze the combined answer of the date prompt."
16821 ;; FIXME: cleanup and comment
16822 (let ((nowdecode (decode-time (current-time)))
16823 delta deltan deltaw deltadef year month day
16824 hour minute second wday pm h2 m2 tl wday1
16825 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16826 (setq org-read-date-analyze-futurep nil
16827 org-read-date-analyze-forced-year nil)
16828 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16829 (setq ans "+0"))
16831 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16832 (setq ans (replace-match "" t t ans)
16833 deltan (car delta)
16834 deltaw (nth 1 delta)
16835 deltadef (nth 2 delta)))
16837 ;; Check if there is an iso week date in there. If yes, store the
16838 ;; info and postpone interpreting it until the rest of the parsing
16839 ;; is done.
16840 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16841 (setq iso-year (if (match-end 1)
16842 (org-small-year-to-year
16843 (string-to-number (match-string 1 ans))))
16844 iso-weekday (if (match-end 3)
16845 (string-to-number (match-string 3 ans)))
16846 iso-week (string-to-number (match-string 2 ans)))
16847 (setq ans (replace-match "" t t ans)))
16849 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16850 (when (string-match
16851 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16852 (setq year (if (match-end 2)
16853 (string-to-number (match-string 2 ans))
16854 (progn (setq kill-year t)
16855 (string-to-number (format-time-string "%Y"))))
16856 month (string-to-number (match-string 3 ans))
16857 day (string-to-number (match-string 4 ans)))
16858 (if (< year 100) (setq year (+ 2000 year)))
16859 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16860 t nil ans)))
16862 ;; Help matching dotted european dates
16863 (when (string-match
16864 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16865 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16866 (setq kill-year t)
16867 (string-to-number (format-time-string "%Y")))
16868 day (string-to-number (match-string 1 ans))
16869 month (string-to-number (match-string 2 ans))
16870 ans (replace-match (format "%04d-%02d-%02d" year month day)
16871 t nil ans)))
16873 ;; Help matching american dates, like 5/30 or 5/30/7
16874 (when (string-match
16875 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16876 (setq year (if (match-end 4)
16877 (string-to-number (match-string 4 ans))
16878 (progn (setq kill-year t)
16879 (string-to-number (format-time-string "%Y"))))
16880 month (string-to-number (match-string 1 ans))
16881 day (string-to-number (match-string 2 ans)))
16882 (if (< year 100) (setq year (+ 2000 year)))
16883 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16884 t nil ans)))
16885 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16886 ;; If there is a time with am/pm, and *no* time without it, we convert
16887 ;; so that matching will be successful.
16888 (loop for i from 1 to 2 do ; twice, for end time as well
16889 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16890 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16891 (setq hour (string-to-number (match-string 1 ans))
16892 minute (if (match-end 3)
16893 (string-to-number (match-string 3 ans))
16895 pm (equal ?p
16896 (string-to-char (downcase (match-string 4 ans)))))
16897 (if (and (= hour 12) (not pm))
16898 (setq hour 0)
16899 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16900 (setq ans (replace-match (format "%02d:%02d" hour minute)
16901 t t ans))))
16903 ;; Check if a time range is given as a duration
16904 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16905 (setq hour (string-to-number (match-string 1 ans))
16906 h2 (+ hour (string-to-number (match-string 3 ans)))
16907 minute (string-to-number (match-string 2 ans))
16908 m2 (+ minute (if (match-end 5) (string-to-number
16909 (match-string 5 ans))0)))
16910 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16911 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16912 t t ans)))
16914 ;; Check if there is a time range
16915 (when (boundp 'org-end-time-was-given)
16916 (setq org-time-was-given nil)
16917 (when (and (string-match org-plain-time-of-day-regexp ans)
16918 (match-end 8))
16919 (setq org-end-time-was-given (match-string 8 ans))
16920 (setq ans (concat (substring ans 0 (match-beginning 7))
16921 (substring ans (match-end 7))))))
16923 (setq tl (parse-time-string ans)
16924 day (or (nth 3 tl) (nth 3 org-defdecode))
16925 month (or (nth 4 tl)
16926 (if (and org-read-date-prefer-future
16927 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16928 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16929 (nth 4 org-defdecode)))
16930 year (or (and (not kill-year) (nth 5 tl))
16931 (if (and org-read-date-prefer-future
16932 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16933 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16934 (nth 5 org-defdecode)))
16935 hour (or (nth 2 tl) (nth 2 org-defdecode))
16936 minute (or (nth 1 tl) (nth 1 org-defdecode))
16937 second (or (nth 0 tl) 0)
16938 wday (nth 6 tl))
16940 (when (and (eq org-read-date-prefer-future 'time)
16941 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16942 (equal day (nth 3 nowdecode))
16943 (equal month (nth 4 nowdecode))
16944 (equal year (nth 5 nowdecode))
16945 (nth 2 tl)
16946 (or (< (nth 2 tl) (nth 2 nowdecode))
16947 (and (= (nth 2 tl) (nth 2 nowdecode))
16948 (nth 1 tl)
16949 (< (nth 1 tl) (nth 1 nowdecode)))))
16950 (setq day (1+ day)
16951 futurep t))
16953 ;; Special date definitions below
16954 (cond
16955 (iso-week
16956 ;; There was an iso week
16957 (require 'cal-iso)
16958 (setq futurep nil)
16959 (setq year (or iso-year year)
16960 day (or iso-weekday wday 1)
16961 wday nil ; to make sure that the trigger below does not match
16962 iso-date (calendar-gregorian-from-absolute
16963 (calendar-absolute-from-iso
16964 (list iso-week day year))))
16965 ; FIXME: Should we also push ISO weeks into the future?
16966 ; (when (and org-read-date-prefer-future
16967 ; (not iso-year)
16968 ; (< (calendar-absolute-from-gregorian iso-date)
16969 ; (time-to-days (current-time))))
16970 ; (setq year (1+ year)
16971 ; iso-date (calendar-gregorian-from-absolute
16972 ; (calendar-absolute-from-iso
16973 ; (list iso-week day year)))))
16974 (setq month (car iso-date)
16975 year (nth 2 iso-date)
16976 day (nth 1 iso-date)))
16977 (deltan
16978 (setq futurep nil)
16979 (unless deltadef
16980 (let ((now (decode-time (current-time))))
16981 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16982 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16983 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16984 ((equal deltaw "m") (setq month (+ month deltan)))
16985 ((equal deltaw "y") (setq year (+ year deltan)))))
16986 ((and wday (not (nth 3 tl)))
16987 ;; Weekday was given, but no day, so pick that day in the week
16988 ;; on or after the derived date.
16989 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16990 (unless (equal wday wday1)
16991 (setq day (+ day (% (- wday wday1 -7) 7))))))
16992 (if (and (boundp 'org-time-was-given)
16993 (nth 2 tl))
16994 (setq org-time-was-given t))
16995 (if (< year 100) (setq year (+ 2000 year)))
16996 ;; Check of the date is representable
16997 (if org-read-date-force-compatible-dates
16998 (progn
16999 (if (< year 1970)
17000 (setq year 1970 org-read-date-analyze-forced-year t))
17001 (if (> year 2037)
17002 (setq year 2037 org-read-date-analyze-forced-year t)))
17003 (condition-case nil
17004 (ignore (encode-time second minute hour day month year))
17005 (error
17006 (setq year (nth 5 org-defdecode))
17007 (setq org-read-date-analyze-forced-year t))))
17008 (setq org-read-date-analyze-futurep futurep)
17009 (list second minute hour day month year)))
17011 (defvar parse-time-weekdays)
17012 (defun org-read-date-get-relative (s today default)
17013 "Check string S for special relative date string.
17014 TODAY and DEFAULT are internal times, for today and for a default.
17015 Return shift list (N what def-flag)
17016 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17017 N is the number of WHATs to shift.
17018 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17019 the DEFAULT date rather than TODAY."
17020 (require 'parse-time)
17021 (when (and
17022 (string-match
17023 (concat
17024 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17025 "\\([0-9]+\\)?"
17026 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17027 "\\([ \t]\\|$\\)") s)
17028 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17029 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17030 (string-to-char (substring (match-string 1 s) -1))
17031 ?+))
17032 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17033 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17034 (what (if (match-end 3) (match-string 3 s) "d"))
17035 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17036 (date (if rel default today))
17037 (wday (nth 6 (decode-time date)))
17038 delta)
17039 (if wday1
17040 (progn
17041 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17042 (if (= delta 0) (setq delta 7))
17043 (if (= dir ?-)
17044 (progn
17045 (setq delta (- delta 7))
17046 (if (= delta 0) (setq delta -7))))
17047 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17048 (list delta "d" rel))
17049 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17051 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17052 "Turn a user-specified date into the internal representation.
17053 The internal representation needed by the calendar is (month day year).
17054 This is a wrapper to handle the brain-dead convention in calendar that
17055 user function argument order change dependent on argument order."
17056 (if (boundp 'calendar-date-style)
17057 (cond
17058 ((eq calendar-date-style 'american)
17059 (list arg1 arg2 arg3))
17060 ((eq calendar-date-style 'european)
17061 (list arg2 arg1 arg3))
17062 ((eq calendar-date-style 'iso)
17063 (list arg2 arg3 arg1)))
17064 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17065 (if (org-bound-and-true-p european-calendar-style)
17066 (list arg2 arg1 arg3)
17067 (list arg1 arg2 arg3)))))
17069 (defun org-eval-in-calendar (form &optional keepdate)
17070 "Eval FORM in the calendar window and return to current window.
17071 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17072 otherwise stick to the current value of `org-ans2'."
17073 (let ((sf (selected-frame))
17074 (sw (selected-window)))
17075 (select-window (get-buffer-window "*Calendar*" t))
17076 (eval form)
17077 (when (and (not keepdate) (calendar-cursor-to-date))
17078 (let* ((date (calendar-cursor-to-date))
17079 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17080 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17081 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17082 (select-window sw)
17083 (org-select-frame-set-input-focus sf)))
17085 (defun org-calendar-select ()
17086 "Return to `org-read-date' with the date currently selected.
17087 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17088 (interactive)
17089 (when (calendar-cursor-to-date)
17090 (let* ((date (calendar-cursor-to-date))
17091 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17092 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17093 (if (active-minibuffer-window) (exit-minibuffer))))
17095 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17096 "Insert a date stamp for the date given by the internal TIME.
17097 WITH-HM means use the stamp format that includes the time of the day.
17098 INACTIVE means use square brackets instead of angular ones, so that the
17099 stamp will not contribute to the agenda.
17100 PRE and POST are optional strings to be inserted before and after the
17101 stamp.
17102 The command returns the inserted time stamp."
17103 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17104 stamp)
17105 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17106 (insert-before-markers (or pre ""))
17107 (when (listp extra)
17108 (setq extra (car extra))
17109 (if (and (stringp extra)
17110 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17111 (setq extra (format "-%02d:%02d"
17112 (string-to-number (match-string 1 extra))
17113 (string-to-number (match-string 2 extra))))
17114 (setq extra nil)))
17115 (when extra
17116 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17117 (insert-before-markers (setq stamp (format-time-string fmt time)))
17118 (insert-before-markers (or post ""))
17119 (setq org-last-inserted-timestamp stamp)))
17121 (defun org-toggle-time-stamp-overlays ()
17122 "Toggle the use of custom time stamp formats."
17123 (interactive)
17124 (setq org-display-custom-times (not org-display-custom-times))
17125 (unless org-display-custom-times
17126 (let ((p (point-min)) (bmp (buffer-modified-p)))
17127 (while (setq p (next-single-property-change p 'display))
17128 (if (and (get-text-property p 'display)
17129 (eq (get-text-property p 'face) 'org-date))
17130 (remove-text-properties
17131 p (setq p (next-single-property-change p 'display))
17132 '(display t))))
17133 (set-buffer-modified-p bmp)))
17134 (if (featurep 'xemacs)
17135 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17136 (org-restart-font-lock)
17137 (setq org-table-may-need-update t)
17138 (if org-display-custom-times
17139 (message "Time stamps are overlaid with custom format")
17140 (message "Time stamp overlays removed")))
17142 (defun org-display-custom-time (beg end)
17143 "Overlay modified time stamp format over timestamp between BEG and END."
17144 (let* ((ts (buffer-substring beg end))
17145 t1 w1 with-hm tf time str w2 (off 0))
17146 (save-match-data
17147 (setq t1 (org-parse-time-string ts t))
17148 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17149 (setq off (- (match-end 0) (match-beginning 0)))))
17150 (setq end (- end off))
17151 (setq w1 (- end beg)
17152 with-hm (and (nth 1 t1) (nth 2 t1))
17153 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17154 time (org-fix-decoded-time t1)
17155 str (org-add-props
17156 (format-time-string
17157 (substring tf 1 -1) (apply 'encode-time time))
17158 nil 'mouse-face 'highlight)
17159 w2 (length str))
17160 (if (not (= w2 w1))
17161 (add-text-properties (1+ beg) (+ 2 beg)
17162 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17163 (if (featurep 'xemacs)
17164 (progn
17165 (put-text-property beg end 'invisible t)
17166 (put-text-property beg end 'end-glyph (make-glyph str)))
17167 (put-text-property beg end 'display str))))
17169 (defun org-translate-time (string)
17170 "Translate all timestamps in STRING to custom format.
17171 But do this only if the variable `org-display-custom-times' is set."
17172 (when org-display-custom-times
17173 (save-match-data
17174 (let* ((start 0)
17175 (re org-ts-regexp-both)
17176 t1 with-hm inactive tf time str beg end)
17177 (while (setq start (string-match re string start))
17178 (setq beg (match-beginning 0)
17179 end (match-end 0)
17180 t1 (save-match-data
17181 (org-parse-time-string (substring string beg end) t))
17182 with-hm (and (nth 1 t1) (nth 2 t1))
17183 inactive (equal (substring string beg (1+ beg)) "[")
17184 tf (funcall (if with-hm 'cdr 'car)
17185 org-time-stamp-custom-formats)
17186 time (org-fix-decoded-time t1)
17187 str (format-time-string
17188 (concat
17189 (if inactive "[" "<") (substring tf 1 -1)
17190 (if inactive "]" ">"))
17191 (apply 'encode-time time))
17192 string (replace-match str t t string)
17193 start (+ start (length str)))))))
17194 string)
17196 (defun org-fix-decoded-time (time)
17197 "Set 0 instead of nil for the first 6 elements of time.
17198 Don't touch the rest."
17199 (let ((n 0))
17200 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17202 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17204 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17205 "Difference between TIMESTAMP-STRING and now in days.
17206 If SECONDS is non-nil, return the difference in seconds."
17207 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17208 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17209 (funcall fdiff (current-time)))))
17211 (defun org-deadline-close (timestamp-string &optional ndays)
17212 "Is the time in TIMESTAMP-STRING close to the current date?"
17213 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17214 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17215 (not (org-entry-is-done-p))))
17217 (defun org-get-wdays (ts &optional delay zero-delay)
17218 "Get the deadline lead time appropriate for timestring TS.
17219 When DELAY is non-nil, get the delay time for scheduled items
17220 instead of the deadline lead time. When ZERO-DELAY is non-nil
17221 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17222 don't try to find the delay cookie in the scheduled timestamp."
17223 (let ((tv (if delay org-scheduled-delay-days
17224 org-deadline-warning-days)))
17225 (cond
17226 ((or (and delay (< tv 0))
17227 (and delay zero-delay (<= tv 0))
17228 (and (not delay) (<= tv 0)))
17229 ;; Enforce this value no matter what
17230 (- tv))
17231 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17232 ;; lead time is specified.
17233 (floor (* (string-to-number (match-string 1 ts))
17234 (cdr (assoc (match-string 2 ts)
17235 '(("d" . 1) ("w" . 7)
17236 ("m" . 30.4) ("y" . 365.25)
17237 ("h" . 0.041667)))))))
17238 ;; go for the default.
17239 (t tv))))
17241 (defun org-calendar-select-mouse (ev)
17242 "Return to `org-read-date' with the date currently selected.
17243 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17244 (interactive "e")
17245 (mouse-set-point ev)
17246 (when (calendar-cursor-to-date)
17247 (let* ((date (calendar-cursor-to-date))
17248 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17249 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17250 (if (active-minibuffer-window) (exit-minibuffer))))
17252 (defun org-check-deadlines (ndays)
17253 "Check if there are any deadlines due or past due.
17254 A deadline is considered due if it happens within `org-deadline-warning-days'
17255 days from today's date. If the deadline appears in an entry marked DONE,
17256 it is not shown. The prefix arg NDAYS can be used to test that many
17257 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17258 (interactive "P")
17259 (let* ((org-warn-days
17260 (cond
17261 ((equal ndays '(4)) 100000)
17262 (ndays (prefix-numeric-value ndays))
17263 (t (abs org-deadline-warning-days))))
17264 (case-fold-search nil)
17265 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17266 (callback
17267 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17269 (message "%d deadlines past-due or due within %d days"
17270 (org-occur regexp nil callback)
17271 org-warn-days)))
17273 (defsubst org-re-timestamp (type)
17274 "Return a regexp for timestamp TYPE.
17275 Allowed values for TYPE are:
17277 all: all timestamps
17278 active: only active timestamps (<...>)
17279 inactive: only inactive timestamps ([...])
17280 scheduled: only scheduled timestamps
17281 deadline: only deadline timestamps
17282 closed: only closed time-stamps
17284 When TYPE is nil, fall back on returning a regexp that matches
17285 both scheduled and deadline timestamps."
17286 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17287 ((eq type 'active) org-ts-regexp)
17288 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
17289 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17290 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17291 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
17292 ((eq type 'scheduled-or-deadline)
17293 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17295 (defun org-check-before-date (date)
17296 "Check if there are deadlines or scheduled entries before DATE."
17297 (interactive (list (org-read-date)))
17298 (let ((case-fold-search nil)
17299 (regexp (org-re-timestamp org-ts-type))
17300 (callback
17301 (lambda () (time-less-p
17302 (org-time-string-to-time (match-string 1))
17303 (org-time-string-to-time date)))))
17304 (message "%d entries before %s"
17305 (org-occur regexp nil callback) date)))
17307 (defun org-check-after-date (date)
17308 "Check if there are deadlines or scheduled entries after DATE."
17309 (interactive (list (org-read-date)))
17310 (let ((case-fold-search nil)
17311 (regexp (org-re-timestamp org-ts-type))
17312 (callback
17313 (lambda () (not
17314 (time-less-p
17315 (org-time-string-to-time (match-string 1))
17316 (org-time-string-to-time date))))))
17317 (message "%d entries after %s"
17318 (org-occur regexp nil callback) date)))
17320 (defun org-check-dates-range (start-date end-date)
17321 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17322 (interactive (list (org-read-date nil nil nil "Range starts")
17323 (org-read-date nil nil nil "Range end")))
17324 (let ((case-fold-search nil)
17325 (regexp (org-re-timestamp org-ts-type))
17326 (callback
17327 (lambda ()
17328 (let ((match (match-string 1)))
17329 (and
17330 (not (time-less-p
17331 (org-time-string-to-time match)
17332 (org-time-string-to-time start-date)))
17333 (time-less-p
17334 (org-time-string-to-time match)
17335 (org-time-string-to-time end-date)))))))
17336 (message "%d entries between %s and %s"
17337 (org-occur regexp nil callback) start-date end-date)))
17339 (defun org-evaluate-time-range (&optional to-buffer)
17340 "Evaluate a time range by computing the difference between start and end.
17341 Normally the result is just printed in the echo area, but with prefix arg
17342 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17343 If the time range is actually in a table, the result is inserted into the
17344 next column.
17345 For time difference computation, a year is assumed to be exactly 365
17346 days in order to avoid rounding problems."
17347 (interactive "P")
17349 (org-clock-update-time-maybe)
17350 (save-excursion
17351 (unless (org-at-date-range-p t)
17352 (goto-char (point-at-bol))
17353 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17354 (if (not (org-at-date-range-p t))
17355 (user-error "Not at a time-stamp range, and none found in current line")))
17356 (let* ((ts1 (match-string 1))
17357 (ts2 (match-string 2))
17358 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17359 (match-end (match-end 0))
17360 (time1 (org-time-string-to-time ts1))
17361 (time2 (org-time-string-to-time ts2))
17362 (t1 (org-float-time time1))
17363 (t2 (org-float-time time2))
17364 (diff (abs (- t2 t1)))
17365 (negative (< (- t2 t1) 0))
17366 ;; (ys (floor (* 365 24 60 60)))
17367 (ds (* 24 60 60))
17368 (hs (* 60 60))
17369 (fy "%dy %dd %02d:%02d")
17370 (fy1 "%dy %dd")
17371 (fd "%dd %02d:%02d")
17372 (fd1 "%dd")
17373 (fh "%02d:%02d")
17374 y d h m align)
17375 (if havetime
17376 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17378 d (floor (/ diff ds)) diff (mod diff ds)
17379 h (floor (/ diff hs)) diff (mod diff hs)
17380 m (floor (/ diff 60)))
17381 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17383 d (floor (+ (/ diff ds) 0.5))
17384 h 0 m 0))
17385 (if (not to-buffer)
17386 (message "%s" (org-make-tdiff-string y d h m))
17387 (if (org-at-table-p)
17388 (progn
17389 (goto-char match-end)
17390 (setq align t)
17391 (and (looking-at " *|") (goto-char (match-end 0))))
17392 (goto-char match-end))
17393 (if (looking-at
17394 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17395 (replace-match ""))
17396 (if negative (insert " -"))
17397 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17398 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17399 (insert " " (format fh h m))))
17400 (if align (org-table-align))
17401 (message "Time difference inserted")))))
17403 (defun org-make-tdiff-string (y d h m)
17404 (let ((fmt "")
17405 (l nil))
17406 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17407 l (push y l)))
17408 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17409 l (push d l)))
17410 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17411 l (push h l)))
17412 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17413 l (push m l)))
17414 (apply 'format fmt (nreverse l))))
17416 (defun org-time-string-to-time (s &optional buffer pos)
17417 "Convert a timestamp string into internal time."
17418 (condition-case errdata
17419 (apply 'encode-time (org-parse-time-string s))
17420 (error (error "Bad timestamp `%s'%s\nError was: %s"
17421 s (if (not (and buffer pos))
17423 (format " at %d in buffer `%s'" pos buffer))
17424 (cdr errdata)))))
17426 (defun org-time-string-to-seconds (s)
17427 "Convert a timestamp string to a number of seconds."
17428 (org-float-time (org-time-string-to-time s)))
17430 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17431 "Convert a time stamp to an absolute day number.
17432 If there is a specifier for a cyclic time stamp, get the closest
17433 date to DAYNR.
17434 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17435 The variable `date' is bound by the calendar when this is called."
17436 (cond
17437 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17438 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17439 daynr
17440 (+ daynr 1000)))
17441 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17442 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17443 (time-to-days (current-time))) (match-string 0 s)
17444 prefer show-all))
17445 (t (time-to-days
17446 (condition-case errdata
17447 (apply 'encode-time (org-parse-time-string s))
17448 (error (error "Bad timestamp `%s'%s\nError was: %s"
17449 s (if (not (and buffer pos))
17451 (format " at %d in buffer `%s'" pos buffer))
17452 (cdr errdata))))))))
17454 (defun org-days-to-iso-week (days)
17455 "Return the iso week number."
17456 (require 'cal-iso)
17457 (car (calendar-iso-from-absolute days)))
17459 (defun org-small-year-to-year (year)
17460 "Convert 2-digit years into 4-digit years.
17461 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17462 The year 2000 cannot be abbreviated. Any year larger than 99
17463 is returned unchanged."
17464 (if (< year 38)
17465 (setq year (+ 2000 year))
17466 (if (< year 100)
17467 (setq year (+ 1900 year))))
17468 year)
17470 (defun org-time-from-absolute (d)
17471 "Return the time corresponding to date D.
17472 D may be an absolute day number, or a calendar-type list (month day year)."
17473 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17474 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17476 (defun org-calendar-holiday ()
17477 "List of holidays, for Diary display in Org-mode."
17478 (require 'holidays)
17479 (let ((hl (funcall
17480 (if (fboundp 'calendar-check-holidays)
17481 'calendar-check-holidays 'check-calendar-holidays) date)))
17482 (if hl (mapconcat 'identity hl "; "))))
17484 (defun org-diary-sexp-entry (sexp entry date)
17485 "Process a SEXP diary ENTRY for DATE."
17486 (require 'diary-lib)
17487 (let ((result (if calendar-debug-sexp
17488 (let ((stack-trace-on-error t))
17489 (eval (car (read-from-string sexp))))
17490 (condition-case nil
17491 (eval (car (read-from-string sexp)))
17492 (error
17493 (beep)
17494 (message "Bad sexp at line %d in %s: %s"
17495 (org-current-line)
17496 (buffer-file-name) sexp)
17497 (sleep-for 2))))))
17498 (cond ((stringp result) (split-string result "; "))
17499 ((and (consp result)
17500 (not (consp (cdr result)))
17501 (stringp (cdr result))) (cdr result))
17502 ((and (consp result)
17503 (stringp (car result))) result)
17504 (result entry))))
17506 (defun org-diary-to-ical-string (frombuf)
17507 "Get iCalendar entries from diary entries in buffer FROMBUF.
17508 This uses the icalendar.el library."
17509 (let* ((tmpdir (if (featurep 'xemacs)
17510 (temp-directory)
17511 temporary-file-directory))
17512 (tmpfile (make-temp-name
17513 (expand-file-name "orgics" tmpdir)))
17514 buf rtn b e)
17515 (with-current-buffer frombuf
17516 (icalendar-export-region (point-min) (point-max) tmpfile)
17517 (setq buf (find-buffer-visiting tmpfile))
17518 (set-buffer buf)
17519 (goto-char (point-min))
17520 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17521 (setq b (match-beginning 0)))
17522 (goto-char (point-max))
17523 (if (re-search-backward "^END:VEVENT" nil t)
17524 (setq e (match-end 0)))
17525 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17526 (kill-buffer buf)
17527 (delete-file tmpfile)
17528 rtn))
17530 (defun org-closest-date (start current change prefer show-all)
17531 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17532 When PREFER is `past', return a date that is either CURRENT or past.
17533 When PREFER is `future', return a date that is either CURRENT or future.
17534 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17535 ;; Make the proper lists from the dates
17536 (catch 'exit
17537 (let ((a1 '(("h" . hour)
17538 ("d" . day)
17539 ("w" . week)
17540 ("m" . month)
17541 ("y" . year)))
17542 (shour (nth 2 (org-parse-time-string start)))
17543 dn dw sday cday n1 n2 n0
17544 d m y y1 y2 date1 date2 nmonths nm ny m2)
17546 (setq start (org-date-to-gregorian start)
17547 current (org-date-to-gregorian
17548 (if show-all
17549 current
17550 (time-to-days (current-time))))
17551 sday (calendar-absolute-from-gregorian start)
17552 cday (calendar-absolute-from-gregorian current))
17554 (if (<= cday sday) (throw 'exit sday))
17556 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17557 (setq dn (string-to-number (match-string 1 change))
17558 dw (cdr (assoc (match-string 2 change) a1)))
17559 (user-error "Invalid change specifier: %s" change))
17560 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17561 (cond
17562 ((eq dw 'hour)
17563 (let ((missing-hours
17564 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17565 dn)))
17566 (setq n1 (if (zerop missing-hours) cday
17567 (- cday (1+ (floor (/ missing-hours 24)))))
17568 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17569 ((eq dw 'day)
17570 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17571 n2 (+ n1 dn)))
17572 ((eq dw 'year)
17573 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17574 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17575 (setq date1 (list m d y1)
17576 n1 (calendar-absolute-from-gregorian date1)
17577 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17578 n2 (calendar-absolute-from-gregorian date2)))
17579 ((eq dw 'month)
17580 ;; approx number of month between the two dates
17581 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17582 ;; How often does dn fit in there?
17583 (setq d (nth 1 start) m (car start) y (nth 2 start)
17584 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17585 m (+ m nm)
17586 ny (floor (/ m 12))
17587 y (+ y ny)
17588 m (- m (* ny 12)))
17589 (while (> m 12) (setq m (- m 12) y (1+ y)))
17590 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17591 (setq m2 (+ m dn) y2 y)
17592 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17593 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17594 (while (<= n2 cday)
17595 (setq n1 n2 m m2 y y2)
17596 (setq m2 (+ m dn) y2 y)
17597 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17598 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17599 ;; Make sure n1 is the earlier date
17600 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17601 (if show-all
17602 (cond
17603 ((eq prefer 'past) (if (= cday n2) n2 n1))
17604 ((eq prefer 'future) (if (= cday n1) n1 n2))
17605 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17606 (cond
17607 ((eq prefer 'past) (if (= cday n2) n2 n1))
17608 ((eq prefer 'future) (if (= cday n1) n1 n2))
17609 (t (if (= cday n1) n1 n2)))))))
17611 (defun org-date-to-gregorian (date)
17612 "Turn any specification of DATE into a Gregorian date for the calendar."
17613 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17614 ((and (listp date) (= (length date) 3)) date)
17615 ((stringp date)
17616 (setq date (org-parse-time-string date))
17617 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17618 ((listp date)
17619 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17621 (defun org-parse-time-string (s &optional nodefault)
17622 "Parse the standard Org-mode time string.
17623 This should be a lot faster than the normal `parse-time-string'.
17624 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17625 hour and minute fields will be nil if not given."
17626 (cond ((string-match org-ts-regexp0 s)
17627 (list 0
17628 (if (or (match-beginning 8) (not nodefault))
17629 (string-to-number (or (match-string 8 s) "0")))
17630 (if (or (match-beginning 7) (not nodefault))
17631 (string-to-number (or (match-string 7 s) "0")))
17632 (string-to-number (match-string 4 s))
17633 (string-to-number (match-string 3 s))
17634 (string-to-number (match-string 2 s))
17635 nil nil nil))
17636 ((string-match "^<[^>]+>$" s)
17637 (decode-time (seconds-to-time (org-matcher-time s))))
17638 (t (error "Not a standard Org-mode time string: %s" s))))
17640 (defun org-timestamp-up (&optional arg)
17641 "Increase the date item at the cursor by one.
17642 If the cursor is on the year, change the year. If it is on the month,
17643 the day or the time, change that.
17644 With prefix ARG, change by that many units."
17645 (interactive "p")
17646 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17648 (defun org-timestamp-down (&optional arg)
17649 "Decrease the date item at the cursor by one.
17650 If the cursor is on the year, change the year. If it is on the month,
17651 the day or the time, change that.
17652 With prefix ARG, change by that many units."
17653 (interactive "p")
17654 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17656 (defun org-timestamp-up-day (&optional arg)
17657 "Increase the date in the time stamp by one day.
17658 With prefix ARG, change that many days."
17659 (interactive "p")
17660 (if (and (not (org-at-timestamp-p t))
17661 (org-at-heading-p))
17662 (org-todo 'up)
17663 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17665 (defun org-timestamp-down-day (&optional arg)
17666 "Decrease the date in the time stamp by one day.
17667 With prefix ARG, change that many days."
17668 (interactive "p")
17669 (if (and (not (org-at-timestamp-p t))
17670 (org-at-heading-p))
17671 (org-todo 'down)
17672 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17674 (defun org-at-timestamp-p (&optional inactive-ok)
17675 "Determine if the cursor is in or at a timestamp."
17676 (interactive)
17677 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17678 (pos (point))
17679 (ans (or (looking-at tsr)
17680 (save-excursion
17681 (skip-chars-backward "^[<\n\r\t")
17682 (if (> (point) (point-min)) (backward-char 1))
17683 (and (looking-at tsr)
17684 (> (- (match-end 0) pos) -1))))))
17685 (and ans
17686 (boundp 'org-ts-what)
17687 (setq org-ts-what
17688 (cond
17689 ((= pos (match-beginning 0)) 'bracket)
17690 ;; Point is considered to be "on the bracket" whether
17691 ;; it's really on it or right after it.
17692 ((= pos (1- (match-end 0))) 'bracket)
17693 ((= pos (match-end 0)) 'after)
17694 ((org-pos-in-match-range pos 2) 'year)
17695 ((org-pos-in-match-range pos 3) 'month)
17696 ((org-pos-in-match-range pos 7) 'hour)
17697 ((org-pos-in-match-range pos 8) 'minute)
17698 ((or (org-pos-in-match-range pos 4)
17699 (org-pos-in-match-range pos 5)) 'day)
17700 ((and (> pos (or (match-end 8) (match-end 5)))
17701 (< pos (match-end 0)))
17702 (- pos (or (match-end 8) (match-end 5))))
17703 (t 'day))))
17704 ans))
17706 (defun org-toggle-timestamp-type ()
17707 "Toggle the type (<active> or [inactive]) of a time stamp."
17708 (interactive)
17709 (when (org-at-timestamp-p t)
17710 (let ((beg (match-beginning 0)) (end (match-end 0))
17711 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17712 (save-excursion
17713 (goto-char beg)
17714 (while (re-search-forward "[][<>]" end t)
17715 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17716 t t)))
17717 (message "Timestamp is now %sactive"
17718 (if (equal (char-after beg) ?<) "" "in")))))
17720 (defun org-at-clock-log-p nil
17721 "Is the cursor on the clock log line?"
17722 (save-excursion
17723 (move-beginning-of-line 1)
17724 (looking-at org-clock-line-re)))
17726 (defvar org-clock-history) ; defined in org-clock.el
17727 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17728 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17729 "Change the date in the time stamp at point.
17730 The date will be changed by N times WHAT. WHAT can be `day', `month',
17731 `year', `minute', `second'. If WHAT is not given, the cursor position
17732 in the timestamp determines what will be changed.
17733 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17734 (let ((origin (point)) origin-cat
17735 with-hm inactive
17736 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17737 org-ts-what
17738 extra rem
17739 ts time time0 fixnext clrgx)
17740 (if (not (org-at-timestamp-p t))
17741 (user-error "Not at a timestamp"))
17742 (if (and (not what) (eq org-ts-what 'bracket))
17743 (org-toggle-timestamp-type)
17744 ;; Point isn't on brackets. Remember the part of the time-stamp
17745 ;; the point was in. Indeed, size of time-stamps may change,
17746 ;; but point must be kept in the same category nonetheless.
17747 (setq origin-cat org-ts-what)
17748 (if (and (not what) (not (eq org-ts-what 'day))
17749 org-display-custom-times
17750 (get-text-property (point) 'display)
17751 (not (get-text-property (1- (point)) 'display)))
17752 (setq org-ts-what 'day))
17753 (setq org-ts-what (or what org-ts-what)
17754 inactive (= (char-after (match-beginning 0)) ?\[)
17755 ts (match-string 0))
17756 (replace-match "")
17757 (when (string-match
17758 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17760 (setq extra (match-string 1 ts))
17761 (if suppress-tmp-delay
17762 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17763 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17764 (setq with-hm t))
17765 (setq time0 (org-parse-time-string ts))
17766 (when (and updown
17767 (eq org-ts-what 'minute)
17768 (not current-prefix-arg))
17769 ;; This looks like s-up and s-down. Change by one rounding step.
17770 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17771 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17772 (setcar (cdr time0) (+ (nth 1 time0)
17773 (if (> n 0) (- rem) (- dm rem))))))
17774 (setq time
17775 (encode-time (or (car time0) 0)
17776 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17777 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17778 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17779 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17780 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17781 (nthcdr 6 time0)))
17782 (when (and (member org-ts-what '(hour minute))
17783 extra
17784 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17785 (setq extra (org-modify-ts-extra
17786 extra
17787 (if (eq org-ts-what 'hour) 2 5)
17788 n dm)))
17789 (when (integerp org-ts-what)
17790 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17791 (if (eq what 'calendar)
17792 (let ((cal-date (org-get-date-from-calendar)))
17793 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17794 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17795 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17796 (setcar time0 (or (car time0) 0))
17797 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17798 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17799 (setq time (apply 'encode-time time0))))
17800 ;; Insert the new time-stamp, and ensure point stays in the same
17801 ;; category as before (i.e. not after the last position in that
17802 ;; category).
17803 (let ((pos (point)))
17804 ;; Stay before inserted string. `save-excursion' is of no use.
17805 (setq org-last-changed-timestamp
17806 (org-insert-time-stamp time with-hm inactive nil nil extra))
17807 (goto-char pos))
17808 (save-match-data
17809 (looking-at org-ts-regexp3)
17810 (goto-char (cond
17811 ;; `day' category ends before `hour' if any, or at
17812 ;; the end of the day name.
17813 ((eq origin-cat 'day)
17814 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17815 ((eq origin-cat 'hour) (min (match-end 7) origin))
17816 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17817 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17818 ;; `year' and `month' have both fixed size: point
17819 ;; couldn't have moved into another part.
17820 (t origin))))
17821 ;; Update clock if on a CLOCK line.
17822 (org-clock-update-time-maybe)
17823 ;; Maybe adjust the closest clock in `org-clock-history'
17824 (when org-clock-adjust-closest
17825 (if (not (and (org-at-clock-log-p)
17826 (< 1 (length (delq nil (mapcar 'marker-position
17827 org-clock-history))))))
17828 (message "No clock to adjust")
17829 (cond ((save-excursion ; fix previous clock?
17830 (re-search-backward org-ts-regexp0 nil t)
17831 (org-looking-back (concat org-clock-string " \\[")))
17832 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17833 ((save-excursion ; fix next clock?
17834 (re-search-backward org-ts-regexp0 nil t)
17835 (looking-at (concat org-ts-regexp0 "\\] =>")))
17836 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17837 (save-window-excursion
17838 ;; Find closest clock to point, adjust the previous/next one in history
17839 (let* ((p (save-excursion (org-back-to-heading t)))
17840 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17841 (clfixnth
17842 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17843 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17844 (if (not clfixpos)
17845 (message "No clock to adjust")
17846 (save-excursion
17847 (org-goto-marker-or-bmk clfixpos)
17848 (org-show-subtree)
17849 (when (re-search-forward clrgx nil t)
17850 (goto-char (match-beginning 1))
17851 (let (org-clock-adjust-closest)
17852 (org-timestamp-change n org-ts-what updown))
17853 (message "Clock adjusted in %s for heading: %s"
17854 (file-name-nondirectory (buffer-file-name))
17855 (org-get-heading t t)))))))))
17856 ;; Try to recenter the calendar window, if any.
17857 (if (and org-calendar-follow-timestamp-change
17858 (get-buffer-window "*Calendar*" t)
17859 (memq org-ts-what '(day month year)))
17860 (org-recenter-calendar (time-to-days time))))))
17862 (defun org-modify-ts-extra (s pos n dm)
17863 "Change the different parts of the lead-time and repeat fields in timestamp."
17864 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17865 ng h m new rem)
17866 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17867 (cond
17868 ((or (org-pos-in-match-range pos 2)
17869 (org-pos-in-match-range pos 3))
17870 (setq m (string-to-number (match-string 3 s))
17871 h (string-to-number (match-string 2 s)))
17872 (if (org-pos-in-match-range pos 2)
17873 (setq h (+ h n))
17874 (setq n (* dm (org-no-warnings (signum n))))
17875 (when (not (= 0 (setq rem (% m dm))))
17876 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17877 (setq m (+ m n)))
17878 (if (< m 0) (setq m (+ m 60) h (1- h)))
17879 (if (> m 59) (setq m (- m 60) h (1+ h)))
17880 (setq h (min 24 (max 0 h)))
17881 (setq ng 1 new (format "-%02d:%02d" h m)))
17882 ((org-pos-in-match-range pos 6)
17883 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17884 ((org-pos-in-match-range pos 5)
17885 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17887 ((org-pos-in-match-range pos 9)
17888 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17889 ((org-pos-in-match-range pos 8)
17890 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17892 (when ng
17893 (setq s (concat
17894 (substring s 0 (match-beginning ng))
17896 (substring s (match-end ng))))))
17899 (defun org-recenter-calendar (date)
17900 "If the calendar is visible, recenter it to DATE."
17901 (let ((cwin (get-buffer-window "*Calendar*" t)))
17902 (when cwin
17903 (let ((calendar-move-hook nil))
17904 (with-selected-window cwin
17905 (calendar-goto-date (if (listp date) date
17906 (calendar-gregorian-from-absolute date))))))))
17908 (defun org-goto-calendar (&optional arg)
17909 "Go to the Emacs calendar at the current date.
17910 If there is a time stamp in the current line, go to that date.
17911 A prefix ARG can be used to force the current date."
17912 (interactive "P")
17913 (let ((tsr org-ts-regexp) diff
17914 (calendar-move-hook nil)
17915 (calendar-view-holidays-initially-flag nil)
17916 (calendar-view-diary-initially-flag nil))
17917 (if (or (org-at-timestamp-p)
17918 (save-excursion
17919 (beginning-of-line 1)
17920 (looking-at (concat ".*" tsr))))
17921 (let ((d1 (time-to-days (current-time)))
17922 (d2 (time-to-days
17923 (org-time-string-to-time (match-string 1)))))
17924 (setq diff (- d2 d1))))
17925 (calendar)
17926 (calendar-goto-today)
17927 (if (and diff (not arg)) (calendar-forward-day diff))))
17929 (defun org-get-date-from-calendar ()
17930 "Return a list (month day year) of date at point in calendar."
17931 (with-current-buffer "*Calendar*"
17932 (save-match-data
17933 (calendar-cursor-to-date))))
17935 (defun org-date-from-calendar ()
17936 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17937 If there is already a time stamp at the cursor position, update it."
17938 (interactive)
17939 (if (org-at-timestamp-p t)
17940 (org-timestamp-change 0 'calendar)
17941 (let ((cal-date (org-get-date-from-calendar)))
17942 (org-insert-time-stamp
17943 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17945 (defcustom org-effort-durations
17946 `(("min" . 1)
17947 ("h" . 60)
17948 ("d" . ,(* 60 8))
17949 ("w" . ,(* 60 8 5))
17950 ("m" . ,(* 60 8 5 4))
17951 ("y" . ,(* 60 8 5 40)))
17952 "Conversion factor to minutes for an effort modifier.
17954 Each entry has the form (MODIFIER . MINUTES).
17956 In an effort string, a number followed by MODIFIER is multiplied
17957 by the specified number of MINUTES to obtain an effort in
17958 minutes.
17960 For example, if the value of this variable is ((\"hours\" . 60)), then an
17961 effort string \"2hours\" is equivalent to 120 minutes."
17962 :group 'org-agenda
17963 :version "25.1"
17964 :package-version '(Org . "8.3")
17965 :type '(alist :key-type (string :tag "Modifier")
17966 :value-type (number :tag "Minutes")))
17968 (defun org-minutes-to-clocksum-string (m)
17969 "Format number of minutes as a clocksum string.
17970 The format is determined by `org-time-clocksum-format',
17971 `org-time-clocksum-use-fractional' and
17972 `org-time-clocksum-fractional-format' and
17973 `org-time-clocksum-use-effort-durations'."
17974 (let ((clocksum "")
17975 (m (round m)) ; Don't allow fractions of minutes
17976 h d w mo y fmt n)
17977 (setq h (if org-time-clocksum-use-effort-durations
17978 (cdr (assoc "h" org-effort-durations)) 60)
17979 d (if org-time-clocksum-use-effort-durations
17980 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17981 w (if org-time-clocksum-use-effort-durations
17982 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17983 mo (if org-time-clocksum-use-effort-durations
17984 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17985 y (if org-time-clocksum-use-effort-durations
17986 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17987 ;; fractional format
17988 (if org-time-clocksum-use-fractional
17989 (cond
17990 ;; single format string
17991 ((stringp org-time-clocksum-fractional-format)
17992 (format org-time-clocksum-fractional-format (/ m (float h))))
17993 ;; choice of fractional formats for different time units
17994 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17995 (> (/ (truncate m) (* y d h)) 0))
17996 (format fmt (/ m (* y d (float h)))))
17997 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17998 (> (/ (truncate m) (* mo d h)) 0))
17999 (format fmt (/ m (* mo d (float h)))))
18000 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18001 (> (/ (truncate m) (* w d h)) 0))
18002 (format fmt (/ m (* w d (float h)))))
18003 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18004 (> (/ (truncate m) (* d h)) 0))
18005 (format fmt (/ m (* d (float h)))))
18006 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18007 (> (/ (truncate m) h) 0))
18008 (format fmt (/ m (float h))))
18009 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18010 (format fmt m))
18011 ;; fall back to smallest time unit with a format
18012 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18013 (format fmt (/ m (float h))))
18014 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18015 (format fmt (/ m (* d (float h)))))
18016 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18017 (format fmt (/ m (* w d (float h)))))
18018 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18019 (format fmt (/ m (* mo d (float h)))))
18020 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18021 (format fmt (/ m (* y d (float h))))))
18022 ;; standard (non-fractional) format, with single format string
18023 (if (stringp org-time-clocksum-format)
18024 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18025 ;; separate formats components
18026 (and (setq fmt (plist-get org-time-clocksum-format :years))
18027 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18028 (plist-get org-time-clocksum-format :require-years))
18029 (setq clocksum (concat clocksum (format fmt n))
18030 m (- m (* n y d h))))
18031 (and (setq fmt (plist-get org-time-clocksum-format :months))
18032 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18033 (plist-get org-time-clocksum-format :require-months))
18034 (setq clocksum (concat clocksum (format fmt n))
18035 m (- m (* n mo d h))))
18036 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18037 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18038 (plist-get org-time-clocksum-format :require-weeks))
18039 (setq clocksum (concat clocksum (format fmt n))
18040 m (- m (* n w d h))))
18041 (and (setq fmt (plist-get org-time-clocksum-format :days))
18042 (or (> (setq n (/ (truncate m) (* d h))) 0)
18043 (plist-get org-time-clocksum-format :require-days))
18044 (setq clocksum (concat clocksum (format fmt n))
18045 m (- m (* n d h))))
18046 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18047 (or (> (setq n (/ (truncate m) h)) 0)
18048 (plist-get org-time-clocksum-format :require-hours))
18049 (setq clocksum (concat clocksum (format fmt n))
18050 m (- m (* n h))))
18051 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18052 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18053 (setq clocksum (concat clocksum (format fmt m))))
18054 ;; return formatted time duration
18055 clocksum))))
18057 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18058 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18059 "Org mode version 8.0")
18061 (defun org-hours-to-clocksum-string (n)
18062 (org-minutes-to-clocksum-string (* n 60)))
18064 (defun org-hh:mm-string-to-minutes (s)
18065 "Convert a string H:MM to a number of minutes.
18066 If the string is just a number, interpret it as minutes.
18067 In fact, the first hh:mm or number in the string will be taken,
18068 there can be extra stuff in the string.
18069 If no number is found, the return value is 0."
18070 (cond
18071 ((integerp s) s)
18072 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18073 (+ (* (string-to-number (match-string 1 s)) 60)
18074 (string-to-number (match-string 2 s))))
18075 ((string-match "\\([0-9]+\\)" s)
18076 (string-to-number (match-string 1 s)))
18077 (t 0)))
18079 (defcustom org-image-actual-width t
18080 "Should we use the actual width of images when inlining them?
18082 When set to `t', always use the image width.
18084 When set to a number, use imagemagick (when available) to set
18085 the image's width to this value.
18087 When set to a number in a list, try to get the width from any
18088 #+ATTR.* keyword if it matches a width specification like
18090 #+ATTR_HTML: :width 300px
18092 and fall back on that number if none is found.
18094 When set to nil, try to get the width from an #+ATTR.* keyword
18095 and fall back on the original width if none is found.
18097 This requires Emacs >= 24.1, build with imagemagick support."
18098 :group 'org-appearance
18099 :version "24.4"
18100 :package-version '(Org . "8.0")
18101 :type '(choice
18102 (const :tag "Use the image width" t)
18103 (integer :tag "Use a number of pixels")
18104 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18105 (const :tag "Use #+ATTR* or don't resize" nil)))
18107 (defcustom org-agenda-inhibit-startup nil
18108 "Inhibit startup when preparing agenda buffers.
18109 When this variable is `t', the initialization of the Org agenda
18110 buffers is inhibited: e.g. the visibility state is not set, the
18111 tables are not re-aligned, etc."
18112 :type 'boolean
18113 :version "24.3"
18114 :group 'org-agenda)
18116 (define-obsolete-variable-alias
18117 'org-agenda-ignore-drawer-properties
18118 'org-agenda-ignore-properties "25.1")
18120 (defcustom org-agenda-ignore-properties nil
18121 "Avoid updating text properties when building the agenda.
18122 Properties are used to prepare buffers for effort estimates,
18123 appointments, statistics and subtree-local categories.
18124 If you don't use these in the agenda, you can add them to this
18125 list and agenda building will be a bit faster.
18126 The value is a list, with zero or more of the symbols `effort', `appt',
18127 `stats' or `category'."
18128 :type '(set :greedy t
18129 (const effort)
18130 (const appt)
18131 (const stats)
18132 (const category))
18133 :version "25.1"
18134 :package-version '(Org . "8.3")
18135 :group 'org-agenda)
18137 (defun org-duration-string-to-minutes (s &optional output-to-string)
18138 "Convert a duration string S to minutes.
18140 A bare number is interpreted as minutes, modifiers can be set by
18141 customizing `org-effort-durations' (which see).
18143 Entries containing a colon are interpreted as H:MM by
18144 `org-hh:mm-string-to-minutes'."
18145 (let ((result 0)
18146 (re (concat "\\([0-9.]+\\) *\\("
18147 (regexp-opt (mapcar 'car org-effort-durations))
18148 "\\)")))
18149 (while (string-match re s)
18150 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18151 (string-to-number (match-string 1 s))))
18152 (setq s (replace-match "" nil t s)))
18153 (setq result (floor result))
18154 (incf result (org-hh:mm-string-to-minutes s))
18155 (if output-to-string (number-to-string result) result)))
18157 ;;;; Files
18159 (defun org-save-all-org-buffers ()
18160 "Save all Org-mode buffers without user confirmation."
18161 (interactive)
18162 (message "Saving all Org-mode buffers...")
18163 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18164 (when (featurep 'org-id) (org-id-locations-save))
18165 (message "Saving all Org-mode buffers... done"))
18167 (defun org-revert-all-org-buffers ()
18168 "Revert all Org-mode buffers.
18169 Prompt for confirmation when there are unsaved changes.
18170 Be sure you know what you are doing before letting this function
18171 overwrite your changes.
18173 This function is useful in a setup where one tracks org files
18174 with a version control system, to revert on one machine after pulling
18175 changes from another. I believe the procedure must be like this:
18177 1. M-x org-save-all-org-buffers
18178 2. Pull changes from the other machine, resolve conflicts
18179 3. M-x org-revert-all-org-buffers"
18180 (interactive)
18181 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18182 (user-error "Abort"))
18183 (save-excursion
18184 (save-window-excursion
18185 (mapc
18186 (lambda (b)
18187 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18188 (with-current-buffer b buffer-file-name))
18189 (org-pop-to-buffer-same-window b)
18190 (revert-buffer t 'no-confirm)))
18191 (buffer-list))
18192 (when (and (featurep 'org-id) org-id-track-globally)
18193 (org-id-locations-load)))))
18195 ;;;; Agenda files
18197 ;;;###autoload
18198 (defun org-switchb (&optional arg)
18199 "Switch between Org buffers.
18200 With one prefix argument, restrict available buffers to files.
18201 With two prefix arguments, restrict available buffers to agenda files.
18203 Defaults to `iswitchb' for buffer name completion.
18204 Set `org-completion-use-ido' to make it use ido instead."
18205 (interactive "P")
18206 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18207 ((equal arg '(16)) (org-buffer-list 'agenda))
18208 (t (org-buffer-list))))
18209 (org-completion-use-iswitchb org-completion-use-iswitchb)
18210 (org-completion-use-ido org-completion-use-ido))
18211 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18212 (setq org-completion-use-iswitchb t))
18213 (org-pop-to-buffer-same-window
18214 (org-icompleting-read "Org buffer: "
18215 (mapcar 'list (mapcar 'buffer-name blist))
18216 nil t))))
18218 ;;; Define some older names previously used for this functionality
18219 ;;;###autoload
18220 (defalias 'org-ido-switchb 'org-switchb)
18221 ;;;###autoload
18222 (defalias 'org-iswitchb 'org-switchb)
18224 (defun org-buffer-list (&optional predicate exclude-tmp)
18225 "Return a list of Org buffers.
18226 PREDICATE can be `export', `files' or `agenda'.
18228 export restrict the list to Export buffers.
18229 files restrict the list to buffers visiting Org files.
18230 agenda restrict the list to buffers visiting agenda files.
18232 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18233 (let* ((bfn nil)
18234 (agenda-files (and (eq predicate 'agenda)
18235 (mapcar 'file-truename (org-agenda-files t))))
18236 (filter
18237 (cond
18238 ((eq predicate 'files)
18239 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18240 ((eq predicate 'export)
18241 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18242 ((eq predicate 'agenda)
18243 (lambda (b)
18244 (with-current-buffer b
18245 (and (derived-mode-p 'org-mode)
18246 (setq bfn (buffer-file-name b))
18247 (member (file-truename bfn) agenda-files)))))
18248 (t (lambda (b) (with-current-buffer b
18249 (or (derived-mode-p 'org-mode)
18250 (string-match "\*Org .*Export"
18251 (buffer-name b)))))))))
18252 (delq nil
18253 (mapcar
18254 (lambda(b)
18255 (if (and (funcall filter b)
18256 (or (not exclude-tmp)
18257 (not (string-match "tmp" (buffer-name b)))))
18259 nil))
18260 (buffer-list)))))
18262 (defun org-agenda-files (&optional unrestricted archives)
18263 "Get the list of agenda files.
18264 Optional UNRESTRICTED means return the full list even if a restriction
18265 is currently in place.
18266 When ARCHIVES is t, include all archive files that are really being
18267 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18268 `org-agenda-archives-mode' is t."
18269 (let ((files
18270 (cond
18271 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18272 ((stringp org-agenda-files) (org-read-agenda-file-list))
18273 ((listp org-agenda-files) org-agenda-files)
18274 (t (error "Invalid value of `org-agenda-files'")))))
18275 (setq files (apply 'append
18276 (mapcar (lambda (f)
18277 (if (file-directory-p f)
18278 (directory-files
18279 f t org-agenda-file-regexp)
18280 (list f)))
18281 files)))
18282 (when org-agenda-skip-unavailable-files
18283 (setq files (delq nil
18284 (mapcar (function
18285 (lambda (file)
18286 (and (file-readable-p file) file)))
18287 files))))
18288 (when (or (eq archives t)
18289 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18290 (setq files (org-add-archive-files files)))
18291 files))
18293 (defun org-agenda-file-p (&optional file)
18294 "Return non-nil, if FILE is an agenda file.
18295 If FILE is omitted, use the file associated with the current
18296 buffer."
18297 (let ((fname (or file (buffer-file-name))))
18298 (and fname
18299 (member (file-truename fname)
18300 (mapcar #'file-truename (org-agenda-files t))))))
18302 (defun org-edit-agenda-file-list ()
18303 "Edit the list of agenda files.
18304 Depending on setup, this either uses customize to edit the variable
18305 `org-agenda-files', or it visits the file that is holding the list. In the
18306 latter case, the buffer is set up in a way that saving it automatically kills
18307 the buffer and restores the previous window configuration."
18308 (interactive)
18309 (if (stringp org-agenda-files)
18310 (let ((cw (current-window-configuration)))
18311 (find-file org-agenda-files)
18312 (org-set-local 'org-window-configuration cw)
18313 (org-add-hook 'after-save-hook
18314 (lambda ()
18315 (set-window-configuration
18316 (prog1 org-window-configuration
18317 (kill-buffer (current-buffer))))
18318 (org-install-agenda-files-menu)
18319 (message "New agenda file list installed"))
18320 nil 'local)
18321 (message "%s" (substitute-command-keys
18322 "Edit list and finish with \\[save-buffer]")))
18323 (customize-variable 'org-agenda-files)))
18325 (defun org-store-new-agenda-file-list (list)
18326 "Set new value for the agenda file list and save it correctly."
18327 (if (stringp org-agenda-files)
18328 (let ((fe (org-read-agenda-file-list t)) b u)
18329 (while (setq b (find-buffer-visiting org-agenda-files))
18330 (kill-buffer b))
18331 (with-temp-file org-agenda-files
18332 (insert
18333 (mapconcat
18334 (lambda (f) ;; Keep un-expanded entries.
18335 (if (setq u (assoc f fe))
18336 (cdr u)
18338 list "\n")
18339 "\n")))
18340 (let ((org-mode-hook nil) (org-inhibit-startup t)
18341 (org-insert-mode-line-in-empty-file nil))
18342 (setq org-agenda-files list)
18343 (customize-save-variable 'org-agenda-files org-agenda-files))))
18345 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18346 "Read the list of agenda files from a file.
18347 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18348 filenames, used by `org-store-new-agenda-file-list' to write back
18349 un-expanded file names."
18350 (when (file-directory-p org-agenda-files)
18351 (error "`org-agenda-files' cannot be a single directory"))
18352 (when (stringp org-agenda-files)
18353 (with-temp-buffer
18354 (insert-file-contents org-agenda-files)
18355 (mapcar
18356 (lambda (f)
18357 (let ((e (expand-file-name (substitute-in-file-name f)
18358 org-directory)))
18359 (if pair-with-expansion
18360 (cons e f)
18361 e)))
18362 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18364 ;;;###autoload
18365 (defun org-cycle-agenda-files ()
18366 "Cycle through the files in `org-agenda-files'.
18367 If the current buffer visits an agenda file, find the next one in the list.
18368 If the current buffer does not, find the first agenda file."
18369 (interactive)
18370 (let* ((fs (org-agenda-files t))
18371 (files (append fs (list (car fs))))
18372 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18373 file)
18374 (unless files (user-error "No agenda files"))
18375 (catch 'exit
18376 (while (setq file (pop files))
18377 (if (equal (file-truename file) tcf)
18378 (when (car files)
18379 (find-file (car files))
18380 (throw 'exit t))))
18381 (find-file (car fs)))
18382 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18384 (defun org-agenda-file-to-front (&optional to-end)
18385 "Move/add the current file to the top of the agenda file list.
18386 If the file is not present in the list, it is added to the front. If it is
18387 present, it is moved there. With optional argument TO-END, add/move to the
18388 end of the list."
18389 (interactive "P")
18390 (let ((org-agenda-skip-unavailable-files nil)
18391 (file-alist (mapcar (lambda (x)
18392 (cons (file-truename x) x))
18393 (org-agenda-files t)))
18394 (ctf (file-truename
18395 (or buffer-file-name
18396 (user-error "Please save the current buffer to a file"))))
18397 x had)
18398 (setq x (assoc ctf file-alist) had x)
18400 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18401 (if to-end
18402 (setq file-alist (append (delq x file-alist) (list x)))
18403 (setq file-alist (cons x (delq x file-alist))))
18404 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18405 (org-install-agenda-files-menu)
18406 (message "File %s to %s of agenda file list"
18407 (if had "moved" "added") (if to-end "end" "front"))))
18409 (defun org-remove-file (&optional file)
18410 "Remove current file from the list of files in variable `org-agenda-files'.
18411 These are the files which are being checked for agenda entries.
18412 Optional argument FILE means use this file instead of the current."
18413 (interactive)
18414 (let* ((org-agenda-skip-unavailable-files nil)
18415 (file (or file buffer-file-name
18416 (user-error "Current buffer does not visit a file")))
18417 (true-file (file-truename file))
18418 (afile (abbreviate-file-name file))
18419 (files (delq nil (mapcar
18420 (lambda (x)
18421 (if (equal true-file
18422 (file-truename x))
18423 nil x))
18424 (org-agenda-files t)))))
18425 (if (not (= (length files) (length (org-agenda-files t))))
18426 (progn
18427 (org-store-new-agenda-file-list files)
18428 (org-install-agenda-files-menu)
18429 (message "Removed file: %s" afile))
18430 (message "File was not in list: %s (not removed)" afile))))
18432 (defun org-file-menu-entry (file)
18433 (vector file (list 'find-file file) t))
18435 (defun org-check-agenda-file (file)
18436 "Make sure FILE exists. If not, ask user what to do."
18437 (when (not (file-exists-p file))
18438 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18439 (abbreviate-file-name file))
18440 (let ((r (downcase (read-char-exclusive))))
18441 (cond
18442 ((equal r ?r)
18443 (org-remove-file file)
18444 (throw 'nextfile t))
18445 (t (user-error "Abort"))))))
18447 (defun org-get-agenda-file-buffer (file)
18448 "Get an agenda buffer visiting FILE.
18449 If the buffer needs to be created, add it to the list of buffers
18450 which might be released later."
18451 (let ((buf (org-find-base-buffer-visiting file)))
18452 (if buf
18453 buf ; just return it
18454 ;; Make a new buffer and remember it
18455 (setq buf (find-file-noselect file))
18456 (if buf (push buf org-agenda-new-buffers))
18457 buf)))
18459 (defun org-release-buffers (blist)
18460 "Release all buffers in list, asking the user for confirmation when needed.
18461 When a buffer is unmodified, it is just killed. When modified, it is saved
18462 \(if the user agrees) and then killed."
18463 (let (buf file)
18464 (while (setq buf (pop blist))
18465 (setq file (buffer-file-name buf))
18466 (when (and (buffer-modified-p buf)
18467 file
18468 (y-or-n-p (format "Save file %s? " file)))
18469 (with-current-buffer buf (save-buffer)))
18470 (kill-buffer buf))))
18472 (defun org-agenda-prepare-buffers (files)
18473 "Create buffers for all agenda files, protect archived trees and comments."
18474 (interactive)
18475 (let ((pa '(:org-archived t))
18476 (pc '(:org-comment t))
18477 (pall '(:org-archived t :org-comment t))
18478 (inhibit-read-only t)
18479 (org-inhibit-startup org-agenda-inhibit-startup)
18480 (rea (concat ":" org-archive-tag ":"))
18481 file re pos)
18482 (setq org-tag-alist-for-agenda nil
18483 org-tag-groups-alist-for-agenda nil)
18484 (save-excursion
18485 (save-restriction
18486 (while (setq file (pop files))
18487 (catch 'nextfile
18488 (if (bufferp file)
18489 (set-buffer file)
18490 (org-check-agenda-file file)
18491 (set-buffer (org-get-agenda-file-buffer file)))
18492 (widen)
18493 (org-set-regexps-and-options 'tags-only)
18494 (setq pos (point))
18495 (or (memq 'category org-agenda-ignore-properties)
18496 (org-refresh-category-properties))
18497 (or (memq 'stats org-agenda-ignore-properties)
18498 (org-refresh-stats-properties))
18499 (or (memq 'effort org-agenda-ignore-properties)
18500 (org-refresh-effort-properties))
18501 (or (memq 'appt org-agenda-ignore-properties)
18502 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18503 (setq org-todo-keywords-for-agenda
18504 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18505 (setq org-done-keywords-for-agenda
18506 (append org-done-keywords-for-agenda org-done-keywords))
18507 (setq org-todo-keyword-alist-for-agenda
18508 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18509 (setq org-tag-alist-for-agenda
18510 (org-uniquify
18511 (append org-tag-alist-for-agenda
18512 org-tag-alist
18513 org-tag-persistent-alist)))
18514 (if org-group-tags
18515 (setq org-tag-groups-alist-for-agenda
18516 (org-uniquify-alist
18517 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18518 (org-with-silent-modifications
18519 (save-excursion
18520 (remove-text-properties (point-min) (point-max) pall)
18521 (when org-agenda-skip-archived-trees
18522 (goto-char (point-min))
18523 (while (re-search-forward rea nil t)
18524 (if (org-at-heading-p t)
18525 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18526 (goto-char (point-min))
18527 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18528 (while (re-search-forward re nil t)
18529 (when (save-match-data (org-in-commented-heading-p t))
18530 (add-text-properties
18531 (match-beginning 0) (org-end-of-subtree t) pc)))))
18532 (goto-char pos)))))
18533 (setq org-todo-keywords-for-agenda
18534 (org-uniquify org-todo-keywords-for-agenda))
18535 (setq org-todo-keyword-alist-for-agenda
18536 (org-uniquify org-todo-keyword-alist-for-agenda))))
18539 ;;;; CDLaTeX minor mode
18541 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18542 "Keymap for the minor `org-cdlatex-mode'.")
18544 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18545 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18546 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18547 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18548 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18550 (defvar org-cdlatex-texmathp-advice-is-done nil
18551 "Flag remembering if we have applied the advice to texmathp already.")
18553 (define-minor-mode org-cdlatex-mode
18554 "Toggle the minor `org-cdlatex-mode'.
18555 This mode supports entering LaTeX environment and math in LaTeX fragments
18556 in Org-mode.
18557 \\{org-cdlatex-mode-map}"
18558 nil " OCDL" nil
18559 (when org-cdlatex-mode
18560 (require 'cdlatex)
18561 (run-hooks 'cdlatex-mode-hook)
18562 (cdlatex-compute-tables))
18563 (unless org-cdlatex-texmathp-advice-is-done
18564 (setq org-cdlatex-texmathp-advice-is-done t)
18565 (defadvice texmathp (around org-math-always-on activate)
18566 "Always return t in org-mode buffers.
18567 This is because we want to insert math symbols without dollars even outside
18568 the LaTeX math segments. If Orgmode thinks that point is actually inside
18569 an embedded LaTeX fragment, let texmathp do its job.
18570 \\[org-cdlatex-mode-map]"
18571 (interactive)
18572 (let (p)
18573 (cond
18574 ((not (derived-mode-p 'org-mode)) ad-do-it)
18575 ((eq this-command 'cdlatex-math-symbol)
18576 (setq ad-return-value t
18577 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18579 (let ((p (org-inside-LaTeX-fragment-p)))
18580 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18581 (setq ad-return-value t
18582 texmathp-why '("Org-mode embedded math" . 0))
18583 (if p ad-do-it)))))))))
18585 (defun turn-on-org-cdlatex ()
18586 "Unconditionally turn on `org-cdlatex-mode'."
18587 (org-cdlatex-mode 1))
18589 (defun org-try-cdlatex-tab ()
18590 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18591 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18592 - inside a LaTeX fragment, or
18593 - after the first word in a line, where an abbreviation expansion could
18594 insert a LaTeX environment."
18595 (when org-cdlatex-mode
18596 (cond
18597 ;; Before any word on the line: No expansion possible.
18598 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18599 ;; Just after first word on the line: Expand it. Make sure it
18600 ;; cannot happen on headlines, though.
18601 ((save-excursion
18602 (skip-chars-backward "a-zA-Z0-9*")
18603 (skip-chars-backward " \t")
18604 (and (bolp) (not (org-at-heading-p))))
18605 (cdlatex-tab) t)
18606 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18608 (defun org-cdlatex-underscore-caret (&optional arg)
18609 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18610 Revert to the normal definition outside of these fragments."
18611 (interactive "P")
18612 (if (org-inside-LaTeX-fragment-p)
18613 (call-interactively 'cdlatex-sub-superscript)
18614 (let (org-cdlatex-mode)
18615 (call-interactively (key-binding (vector last-input-event))))))
18617 (defun org-cdlatex-math-modify (&optional arg)
18618 "Execute `cdlatex-math-modify' in LaTeX fragments.
18619 Revert to the normal definition outside of these fragments."
18620 (interactive "P")
18621 (if (org-inside-LaTeX-fragment-p)
18622 (call-interactively 'cdlatex-math-modify)
18623 (let (org-cdlatex-mode)
18624 (call-interactively (key-binding (vector last-input-event))))))
18626 (defun org-cdlatex-environment-indent (&optional environment item)
18627 "Execute `cdlatex-environment' and indent the inserted environment."
18628 (interactive)
18629 (cdlatex-environment environment item)
18630 (let ((element (org-element-at-point)))
18631 (org-indent-region (org-element-property :begin element)
18632 (org-element-property :end element))))
18635 ;;;; LaTeX fragments
18637 (defun org-inside-LaTeX-fragment-p ()
18638 "Test if point is inside a LaTeX fragment.
18639 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18640 sequence appearing also before point.
18641 Even though the matchers for math are configurable, this function assumes
18642 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18643 delimiters are skipped when they have been removed by customization.
18644 The return value is nil, or a cons cell with the delimiter and the
18645 position of this delimiter.
18647 This function does a reasonably good job, but can locally be fooled by
18648 for example currency specifications. For example it will assume being in
18649 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18650 fragments that are properly closed, but during editing, we have to live
18651 with the uncertainty caused by missing closing delimiters. This function
18652 looks only before point, not after."
18653 (catch 'exit
18654 (let ((pos (point))
18655 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18656 (lim (progn
18657 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18658 (point)))
18659 dd-on str (start 0) m re)
18660 (goto-char pos)
18661 (when dodollar
18662 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18663 re (nth 1 (assoc "$" org-latex-regexps)))
18664 (while (string-match re str start)
18665 (cond
18666 ((= (match-end 0) (length str))
18667 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18668 ((= (match-end 0) (- (length str) 5))
18669 (throw 'exit nil))
18670 (t (setq start (match-end 0))))))
18671 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18672 (goto-char pos)
18673 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18674 (and (match-beginning 2) (throw 'exit nil))
18675 ;; count $$
18676 (while (re-search-backward "\\$\\$" lim t)
18677 (setq dd-on (not dd-on)))
18678 (goto-char pos)
18679 (if dd-on (cons "$$" m))))))
18681 (defun org-inside-latex-macro-p ()
18682 "Is point inside a LaTeX macro or its arguments?"
18683 (save-match-data
18684 (org-in-regexp
18685 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18687 (defvar org-latex-fragment-image-overlays nil
18688 "List of overlays carrying the images of latex fragments.")
18689 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18691 (defun org-remove-latex-fragment-image-overlays ()
18692 "Remove all overlays with LaTeX fragment images in current buffer."
18693 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18694 (setq org-latex-fragment-image-overlays nil))
18696 (define-obsolete-function-alias
18697 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18698 (defun org-toggle-latex-fragment (&optional subtree)
18699 "Preview the LaTeX fragment at point, or all locally or globally.
18700 If the cursor is in a LaTeX fragment, create the image and overlay
18701 it over the source code. If there is no fragment at point, display
18702 all fragments in the current text, from one headline to the next. With
18703 prefix SUBTREE, display all fragments in the current subtree. With a
18704 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18705 the cursor is before the first headline,
18706 display all fragments in the buffer.
18707 The images can be removed again with \\[org-toggle-latex-fragment]."
18708 (interactive "P")
18709 (unless (buffer-file-name (buffer-base-buffer))
18710 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18711 (if org-latex-fragment-image-overlays
18712 (progn (org-remove-latex-fragment-image-overlays)
18713 (message "LaTeX fragments images removed"))
18714 (when (display-graphic-p)
18715 (org-remove-latex-fragment-image-overlays)
18716 (org-with-wide-buffer
18717 (let (beg end msg)
18718 (cond
18719 ((equal subtree '(16))
18720 (setq beg (point-min) end (point-max)
18721 msg "Creating images for buffer...%s"))
18722 ((equal subtree '(4))
18723 (org-back-to-heading)
18724 (setq beg (point) end (org-end-of-subtree t)
18725 msg "Creating images for subtree...%s"))
18726 ((let ((context (org-element-context)))
18727 (when (memq (org-element-type context)
18728 '(latex-environment latex-fragment))
18729 (setq beg (org-element-property :begin context)
18730 end (org-element-property :end context)
18731 msg "Creating image...%s"))))
18732 ((org-before-first-heading-p)
18733 (setq beg (point-min) end (point-max)
18734 msg "Creating images for buffer...%s"))
18736 (org-back-to-heading)
18737 (setq beg (point) end (progn (outline-next-heading) (point))
18738 msg "Creating images for entry...%s")))
18739 (message msg "")
18740 (narrow-to-region beg end)
18741 (goto-char beg)
18742 (org-format-latex
18743 (concat org-latex-preview-ltxpng-directory
18744 (file-name-sans-extension
18745 (file-name-nondirectory
18746 (buffer-file-name (buffer-base-buffer)))))
18747 default-directory 'overlays msg 'forbuffer
18748 org-latex-create-formula-image-program)
18749 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18751 (defun org-format-latex
18752 (prefix &optional dir overlays msg forbuffer processing-type)
18753 "Replace LaTeX fragments with links to an image, and produce images.
18754 Some of the options can be changed using the variable
18755 `org-format-latex-options'."
18756 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18757 (unless (eq processing-type 'verbatim)
18758 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18759 (cnt 0)
18760 checkdir-flag)
18761 (goto-char (point-min))
18762 (while (re-search-forward math-regexp nil t)
18763 (unless (and overlays
18764 (eq (get-char-property (point) 'org-overlay-type)
18765 'org-latex-overlay))
18766 (let* ((context (org-element-context))
18767 (type (org-element-type context)))
18768 (when (memq type '(latex-environment latex-fragment))
18769 (let ((block-type (eq type 'latex-environment))
18770 (value (org-element-property :value context))
18771 (beg (org-element-property :begin context))
18772 (end (save-excursion
18773 (goto-char (org-element-property :end context))
18774 (skip-chars-backward " \r\t\n")
18775 (point))))
18776 (case processing-type
18777 (mathjax
18778 ;; Prepare for MathJax processing.
18779 (if (eq (char-after beg) ?$)
18780 (save-excursion
18781 (delete-region beg end)
18782 (insert "\\(" (substring value 1 -1) "\\)"))
18783 (goto-char end)))
18784 ((dvipng imagemagick)
18785 ;; Process to an image.
18786 (incf cnt)
18787 (goto-char beg)
18788 (let* ((face (face-at-point))
18789 ;; Get the colors from the face at point.
18791 (let ((color (plist-get org-format-latex-options
18792 :foreground)))
18793 (if (and forbuffer (eq color 'auto))
18794 (face-attribute face :foreground nil 'default)
18795 color)))
18797 (let ((color (plist-get org-format-latex-options
18798 :background)))
18799 (if (and forbuffer (eq color 'auto))
18800 (face-attribute face :background nil 'default)
18801 color)))
18802 (hash (sha1 (prin1-to-string
18803 (list org-format-latex-header
18804 org-latex-default-packages-alist
18805 org-latex-packages-alist
18806 org-format-latex-options
18807 forbuffer value fg bg))))
18808 (absprefix (expand-file-name prefix dir))
18809 (linkfile (format "%s_%s.png" prefix hash))
18810 (movefile (format "%s_%s.png" absprefix hash))
18811 (sep (and block-type "\n\n"))
18812 (link (concat sep "[[file:" linkfile "]]" sep))
18813 (options
18814 (org-combine-plists
18815 org-format-latex-options
18816 `(:foreground ,fg :background ,bg))))
18817 (when msg (message msg cnt))
18818 (unless checkdir-flag ; Ensure the directory exists.
18819 (setq checkdir-flag t)
18820 (let ((todir (file-name-directory absprefix)))
18821 (unless (file-directory-p todir)
18822 (make-directory todir t))))
18823 (unless (file-exists-p movefile)
18824 (org-create-formula-image
18825 value movefile options forbuffer processing-type))
18826 (if overlays
18827 (progn
18828 (dolist (o (overlays-in beg end))
18829 (when (eq (overlay-get o 'org-overlay-type)
18830 'org-latex-overlay)
18831 (delete-overlay o)))
18832 (let ((ov (make-overlay beg end)))
18833 (overlay-put ov
18834 'org-overlay-type
18835 'org-latex-overlay)
18836 (if (featurep 'xemacs)
18837 (progn
18838 (overlay-put ov 'invisible t)
18839 (overlay-put
18840 ov 'end-glyph
18841 (make-glyph
18842 (vector 'png :file movefile))))
18843 (overlay-put
18844 ov 'display
18845 (list 'image
18846 :type 'png
18847 :file movefile
18848 :ascent 'center)))
18849 (push ov org-latex-fragment-image-overlays))
18850 (goto-char end))
18851 (delete-region beg end)
18852 (insert
18853 (org-add-props link
18854 (list 'org-latex-src
18855 (replace-regexp-in-string "\"" "" value)
18856 'org-latex-src-embed-type
18857 (if block-type 'paragraph 'character)))))))
18858 (mathml
18859 ;; Process to MathML.
18860 (unless (org-format-latex-mathml-available-p)
18861 (user-error "LaTeX to MathML converter not configured"))
18862 (incf cnt)
18863 (when msg (message msg cnt))
18864 (goto-char beg)
18865 (delete-region beg end)
18866 (insert (org-format-latex-as-mathml
18867 value block-type prefix dir)))
18868 (otherwise
18869 (error "Unknown conversion type %s for LaTeX fragments"
18870 processing-type)))))))))))
18872 (defun org-create-math-formula (latex-frag &optional mathml-file)
18873 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18874 Use `org-latex-to-mathml-convert-command'. If the conversion is
18875 sucessful, return the portion between \"<math...> </math>\"
18876 elements otherwise return nil. When MATHML-FILE is specified,
18877 write the results in to that file. When invoked as an
18878 interactive command, prompt for LATEX-FRAG, with initial value
18879 set to the current active region and echo the results for user
18880 inspection."
18881 (interactive (list (let ((frag (when (org-region-active-p)
18882 (buffer-substring-no-properties
18883 (region-beginning) (region-end)))))
18884 (read-string "LaTeX Fragment: " frag nil frag))))
18885 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18886 (let* ((tmp-in-file (file-relative-name
18887 (make-temp-name (expand-file-name "ltxmathml-in"))))
18888 (ignore (write-region latex-frag nil tmp-in-file))
18889 (tmp-out-file (file-relative-name
18890 (make-temp-name (expand-file-name "ltxmathml-out"))))
18891 (cmd (format-spec
18892 org-latex-to-mathml-convert-command
18893 `((?j . ,(shell-quote-argument
18894 (expand-file-name org-latex-to-mathml-jar-file)))
18895 (?I . ,(shell-quote-argument tmp-in-file))
18896 (?o . ,(shell-quote-argument tmp-out-file)))))
18897 mathml shell-command-output)
18898 (when (org-called-interactively-p 'any)
18899 (unless (org-format-latex-mathml-available-p)
18900 (user-error "LaTeX to MathML converter not configured")))
18901 (message "Running %s" cmd)
18902 (setq shell-command-output (shell-command-to-string cmd))
18903 (setq mathml
18904 (when (file-readable-p tmp-out-file)
18905 (with-current-buffer (find-file-noselect tmp-out-file t)
18906 (goto-char (point-min))
18907 (when (re-search-forward
18908 (concat
18909 (regexp-quote
18910 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18911 "\\(.\\|\n\\)*"
18912 (regexp-quote "</math>")) nil t)
18913 (prog1 (match-string 0) (kill-buffer))))))
18914 (cond
18915 (mathml
18916 (setq mathml
18917 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18918 (when mathml-file
18919 (write-region mathml nil mathml-file))
18920 (when (org-called-interactively-p 'any)
18921 (message mathml)))
18922 ((message "LaTeX to MathML conversion failed")
18923 (message shell-command-output)))
18924 (delete-file tmp-in-file)
18925 (when (file-exists-p tmp-out-file)
18926 (delete-file tmp-out-file))
18927 mathml))
18929 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18930 prefix &optional dir)
18931 "Use `org-create-math-formula' but check local cache first."
18932 (let* ((absprefix (expand-file-name prefix dir))
18933 (print-length nil) (print-level nil)
18934 (formula-id (concat
18935 "formula-"
18936 (sha1
18937 (prin1-to-string
18938 (list latex-frag
18939 org-latex-to-mathml-convert-command)))))
18940 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18941 (formula-cache-dir (file-name-directory formula-cache)))
18943 (unless (file-directory-p formula-cache-dir)
18944 (make-directory formula-cache-dir t))
18946 (unless (file-exists-p formula-cache)
18947 (org-create-math-formula latex-frag formula-cache))
18949 (if (file-exists-p formula-cache)
18950 ;; Successful conversion. Return the link to MathML file.
18951 (org-add-props
18952 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18953 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18954 'org-latex-src-embed-type (if latex-frag-type
18955 'paragraph 'character)))
18956 ;; Failed conversion. Return the LaTeX fragment verbatim
18957 latex-frag)))
18959 (defun org-create-formula-image (string tofile options buffer &optional type)
18960 "Create an image from LaTeX source using dvipng or convert.
18961 This function calls either `org-create-formula-image-with-dvipng'
18962 or `org-create-formula-image-with-imagemagick' depending on the
18963 value of `org-latex-create-formula-image-program' or on the value
18964 of the optional TYPE variable.
18966 Note: ultimately these two function should be combined as they
18967 share a good deal of logic."
18968 (org-check-external-command
18969 "latex" "needed to convert LaTeX fragments to images")
18970 (funcall
18971 (case (or type org-latex-create-formula-image-program)
18972 ('dvipng
18973 (org-check-external-command
18974 "dvipng" "needed to convert LaTeX fragments to images")
18975 'org-create-formula-image-with-dvipng)
18976 ('imagemagick
18977 (org-check-external-command
18978 "convert" "you need to install imagemagick")
18979 'org-create-formula-image-with-imagemagick)
18980 (t (error
18981 "Invalid value of `org-latex-create-formula-image-program'")))
18982 string tofile options buffer))
18984 (declare-function org-export-get-backend "ox" (name))
18985 (declare-function org-export--get-global-options "ox" (&optional backend))
18986 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18987 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18988 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18989 (defun org-create-formula--latex-header ()
18990 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18991 (let ((info (org-combine-plists (org-export--get-global-options
18992 (org-export-get-backend 'latex))
18993 (org-export--get-inbuffer-options
18994 (org-export-get-backend 'latex)))))
18995 (org-latex-guess-babel-language
18996 (org-latex-guess-inputenc
18997 (org-splice-latex-header
18998 org-format-latex-header
18999 org-latex-default-packages-alist
19000 org-latex-packages-alist t
19001 (plist-get info :latex-header)))
19002 info)))
19004 ;; This function borrows from Ganesh Swami's latex2png.el
19005 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19006 "This calls dvipng."
19007 (require 'ox-latex)
19008 (let* ((tmpdir (if (featurep 'xemacs)
19009 (temp-directory)
19010 temporary-file-directory))
19011 (texfilebase (make-temp-name
19012 (expand-file-name "orgtex" tmpdir)))
19013 (texfile (concat texfilebase ".tex"))
19014 (dvifile (concat texfilebase ".dvi"))
19015 (pngfile (concat texfilebase ".png"))
19016 (fnh (if (featurep 'xemacs)
19017 (font-height (face-font 'default))
19018 (face-attribute 'default :height nil)))
19019 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19020 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
19021 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19022 "Black"))
19023 (bg (or (plist-get options (if buffer :background :html-background))
19024 "Transparent")))
19025 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19026 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19027 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19028 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19029 (let ((latex-header (org-create-formula--latex-header)))
19030 (with-temp-file texfile
19031 (insert latex-header)
19032 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19033 (let ((dir default-directory))
19034 (ignore-errors
19035 (cd tmpdir)
19036 (call-process "latex" nil nil nil texfile))
19037 (cd dir))
19038 (if (not (file-exists-p dvifile))
19039 (progn (message "Failed to create dvi file from %s" texfile) nil)
19040 (ignore-errors
19041 (if (featurep 'xemacs)
19042 (call-process "dvipng" nil nil nil
19043 "-fg" fg "-bg" bg
19044 "-T" "tight"
19045 "-o" pngfile
19046 dvifile)
19047 (call-process "dvipng" nil nil nil
19048 "-fg" fg "-bg" bg
19049 "-D" dpi
19050 ;;"-x" scale "-y" scale
19051 "-T" "tight"
19052 "-o" pngfile
19053 dvifile)))
19054 (if (not (file-exists-p pngfile))
19055 (if org-format-latex-signal-error
19056 (error "Failed to create png file from %s" texfile)
19057 (message "Failed to create png file from %s" texfile)
19058 nil)
19059 ;; Use the requested file name and clean up
19060 (copy-file pngfile tofile 'replace)
19061 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19062 (if (file-exists-p (concat texfilebase e))
19063 (delete-file (concat texfilebase e))))
19064 pngfile))))
19066 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19067 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19068 "This calls convert, which is included into imagemagick."
19069 (require 'ox-latex)
19070 (let* ((tmpdir (if (featurep 'xemacs)
19071 (temp-directory)
19072 temporary-file-directory))
19073 (texfilebase (make-temp-name
19074 (expand-file-name "orgtex" tmpdir)))
19075 (texfile (concat texfilebase ".tex"))
19076 (pdffile (concat texfilebase ".pdf"))
19077 (pngfile (concat texfilebase ".png"))
19078 (fnh (if (featurep 'xemacs)
19079 (font-height (face-font 'default))
19080 (face-attribute 'default :height nil)))
19081 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19082 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
19083 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19084 "black"))
19085 (bg (or (plist-get options (if buffer :background :html-background))
19086 "white")))
19087 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19088 (setq fg (org-latex-color-format fg)))
19089 (if (eq bg 'default) (setq bg (org-latex-color :background))
19090 (setq bg (org-latex-color-format
19091 (if (string= bg "Transparent") "white" bg))))
19092 (let ((latex-header (org-create-formula--latex-header)))
19093 (with-temp-file texfile
19094 (insert latex-header)
19095 (insert "\n\\begin{document}\n"
19096 "\\definecolor{fg}{rgb}{" fg "}\n"
19097 "\\definecolor{bg}{rgb}{" bg "}\n"
19098 "\n\\pagecolor{bg}\n"
19099 "\n{\\color{fg}\n"
19100 string
19101 "\n}\n"
19102 "\n\\end{document}\n")))
19103 (org-latex-compile texfile t)
19104 (if (not (file-exists-p pdffile))
19105 (progn (message "Failed to create pdf file from %s" texfile) nil)
19106 (ignore-errors
19107 (if (featurep 'xemacs)
19108 (call-process "convert" nil nil nil
19109 "-density" "96"
19110 "-trim"
19111 "-antialias"
19112 pdffile
19113 "-quality" "100"
19114 ;; "-sharpen" "0x1.0"
19115 pngfile)
19116 (call-process "convert" nil nil nil
19117 "-density" dpi
19118 "-trim"
19119 "-antialias"
19120 pdffile
19121 "-quality" "100"
19122 ;; "-sharpen" "0x1.0"
19123 pngfile)))
19124 (if (not (file-exists-p pngfile))
19125 (if org-format-latex-signal-error
19126 (error "Failed to create png file from %s" texfile)
19127 (message "Failed to create png file from %s" texfile)
19128 nil)
19129 ;; Use the requested file name and clean up
19130 (copy-file pngfile tofile 'replace)
19131 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19132 (if (file-exists-p (concat texfilebase e))
19133 (delete-file (concat texfilebase e))))
19134 pngfile))))
19136 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19137 "Fill a LaTeX header template TPL.
19138 In the template, the following place holders will be recognized:
19140 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19141 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19142 [PACKAGES] \\usepackage statements for PKG
19143 [NO-PACKAGES] do not include PKG
19144 [EXTRA] the string EXTRA
19145 [NO-EXTRA] do not include EXTRA
19147 For backward compatibility, if both the positive and the negative place
19148 holder is missing, the positive one (without the \"NO-\") will be
19149 assumed to be present at the end of the template.
19150 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19151 EXTRA is a string.
19152 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19153 (let (rpl (end ""))
19154 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19155 (setq rpl (if (or (match-end 1) (not def-pkg))
19156 "" (org-latex-packages-to-string def-pkg snippets-p t))
19157 tpl (replace-match rpl t t tpl))
19158 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19160 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19161 (setq rpl (if (or (match-end 1) (not pkg))
19162 "" (org-latex-packages-to-string pkg snippets-p t))
19163 tpl (replace-match rpl t t tpl))
19164 (if pkg (setq end
19165 (concat end "\n"
19166 (org-latex-packages-to-string pkg snippets-p)))))
19168 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19169 (setq rpl (if (or (match-end 1) (not extra))
19170 "" (concat extra "\n"))
19171 tpl (replace-match rpl t t tpl))
19172 (if (and extra (string-match "\\S-" extra))
19173 (setq end (concat end "\n" extra))))
19175 (if (string-match "\\S-" end)
19176 (concat tpl "\n" end)
19177 tpl)))
19179 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19180 "Turn an alist of packages into a string with the \\usepackage macros."
19181 (setq pkg (mapconcat (lambda(p)
19182 (cond
19183 ((stringp p) p)
19184 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19185 (format "%% Package %s omitted" (cadr p)))
19186 ((equal "" (car p))
19187 (format "\\usepackage{%s}" (cadr p)))
19189 (format "\\usepackage[%s]{%s}"
19190 (car p) (cadr p)))))
19192 "\n"))
19193 (if newline (concat pkg "\n") pkg))
19195 (defun org-dvipng-color (attr)
19196 "Return a RGB color specification for dvipng."
19197 (apply 'format "rgb %s %s %s"
19198 (mapcar 'org-normalize-color
19199 (if (featurep 'xemacs)
19200 (color-rgb-components
19201 (face-property 'default
19202 (cond ((eq attr :foreground) 'foreground)
19203 ((eq attr :background) 'background))))
19204 (color-values (face-attribute 'default attr nil))))))
19206 (defun org-dvipng-color-format (color-name)
19207 "Convert COLOR-NAME to a RGB color value for dvipng."
19208 (apply 'format "rgb %s %s %s"
19209 (mapcar 'org-normalize-color
19210 (color-values color-name))))
19212 (defun org-latex-color (attr)
19213 "Return a RGB color for the LaTeX color package."
19214 (apply 'format "%s,%s,%s"
19215 (mapcar 'org-normalize-color
19216 (if (featurep 'xemacs)
19217 (color-rgb-components
19218 (face-property 'default
19219 (cond ((eq attr :foreground) 'foreground)
19220 ((eq attr :background) 'background))))
19221 (color-values (face-attribute 'default attr nil))))))
19223 (defun org-latex-color-format (color-name)
19224 "Convert COLOR-NAME to a RGB color value."
19225 (apply 'format "%s,%s,%s"
19226 (mapcar 'org-normalize-color
19227 (color-values color-name))))
19229 (defun org-normalize-color (value)
19230 "Return string to be used as color value for an RGB component."
19231 (format "%g" (/ value 65535.0)))
19235 ;; Image display
19237 (defvar org-inline-image-overlays nil)
19238 (make-variable-buffer-local 'org-inline-image-overlays)
19240 (defun org-toggle-inline-images (&optional include-linked)
19241 "Toggle the display of inline images.
19242 INCLUDE-LINKED is passed to `org-display-inline-images'."
19243 (interactive "P")
19244 (if org-inline-image-overlays
19245 (progn
19246 (org-remove-inline-images)
19247 (message "Inline image display turned off"))
19248 (org-display-inline-images include-linked)
19249 (if (and (org-called-interactively-p)
19250 org-inline-image-overlays)
19251 (message "%d images displayed inline"
19252 (length org-inline-image-overlays))
19253 (message "No images to display inline"))))
19255 (defun org-redisplay-inline-images ()
19256 "Refresh the display of inline images."
19257 (interactive)
19258 (if (not org-inline-image-overlays)
19259 (org-toggle-inline-images)
19260 (org-toggle-inline-images)
19261 (org-toggle-inline-images)))
19263 (defun org-display-inline-images (&optional include-linked refresh beg end)
19264 "Display inline images.
19266 An inline image is a link which follows either of these
19267 conventions:
19269 1. Its path is a file with an extension matching return value
19270 from `image-file-name-regexp' and it has no contents.
19272 2. Its description consists in a single link of the previous
19273 type.
19275 When optional argument INCLUDE-LINKED is non-nil, also links with
19276 a text description part will be inlined. This can be nice for
19277 a quick look at those images, but it does not reflect what
19278 exported files will look like.
19280 When optional argument REFRESH is non-nil, refresh existing
19281 images between BEG and END. This will create new image displays
19282 only if necessary. BEG and END default to the buffer
19283 boundaries."
19284 (interactive "P")
19285 (when (display-graphic-p)
19286 (unless refresh
19287 (org-remove-inline-images)
19288 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19289 (org-with-wide-buffer
19290 (goto-char (or beg (point-min)))
19291 (let ((case-fold-search t)
19292 (file-extension-re (org-image-file-name-regexp)))
19293 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19294 (let ((link (save-match-data (org-element-context))))
19295 ;; Check if we're at an inline image.
19296 (when (and (equal (org-element-property :type link) "file")
19297 (or include-linked
19298 (not (org-element-property :contents-begin link)))
19299 (let ((parent (org-element-property :parent link)))
19300 (or (not (eq (org-element-type parent) 'link))
19301 (not (cdr (org-element-contents parent)))))
19302 (org-string-match-p file-extension-re
19303 (org-element-property :path link)))
19304 (let ((file (expand-file-name (org-element-property :path link))))
19305 (when (file-exists-p file)
19306 (let ((width
19307 ;; Apply `org-image-actual-width' specifications.
19308 (cond
19309 ((not (image-type-available-p 'imagemagick)) nil)
19310 ((eq org-image-actual-width t) nil)
19311 ((listp org-image-actual-width)
19313 ;; First try to find a width among
19314 ;; attributes associated to the paragraph
19315 ;; containing link.
19316 (let ((paragraph
19317 (let ((e link))
19318 (while (and (setq e (org-element-property
19319 :parent e))
19320 (not (eq (org-element-type e)
19321 'paragraph))))
19322 e)))
19323 (when paragraph
19324 (save-excursion
19325 (goto-char (org-element-property :begin paragraph))
19326 (when
19327 (re-search-forward
19328 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19329 (org-element-property
19330 :post-affiliated paragraph)
19332 (string-to-number (match-string 1))))))
19333 ;; Otherwise, fall-back to provided number.
19334 (car org-image-actual-width)))
19335 ((numberp org-image-actual-width)
19336 org-image-actual-width)))
19337 (old (get-char-property-and-overlay
19338 (org-element-property :begin link)
19339 'org-image-overlay)))
19340 (if (and (car-safe old) refresh)
19341 (image-refresh (overlay-get (cdr old) 'display))
19342 (let ((image (create-image file
19343 (and width 'imagemagick)
19345 :width width)))
19346 (when image
19347 (let* ((link
19348 ;; If inline image is the description
19349 ;; of another link, be sure to
19350 ;; consider the latter as the one to
19351 ;; apply the overlay on.
19352 (let ((parent
19353 (org-element-property :parent link)))
19354 (if (eq (org-element-type parent) 'link)
19355 parent
19356 link)))
19357 (ov (make-overlay
19358 (org-element-property :begin link)
19359 (progn
19360 (goto-char
19361 (org-element-property :end link))
19362 (skip-chars-backward " \t")
19363 (point)))))
19364 (overlay-put ov 'display image)
19365 (overlay-put ov 'face 'default)
19366 (overlay-put ov 'org-image-overlay t)
19367 (overlay-put
19368 ov 'modification-hooks
19369 (list 'org-display-inline-remove-overlay))
19370 (push ov org-inline-image-overlays)))))))))))))))
19372 (define-obsolete-function-alias
19373 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19375 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19376 "Remove inline-display overlay if a corresponding region is modified."
19377 (let ((inhibit-modification-hooks t))
19378 (when (and ov after)
19379 (delete ov org-inline-image-overlays)
19380 (delete-overlay ov))))
19382 (defun org-remove-inline-images ()
19383 "Remove inline display of images."
19384 (interactive)
19385 (mapc 'delete-overlay org-inline-image-overlays)
19386 (setq org-inline-image-overlays nil))
19388 ;;;; Key bindings
19390 ;; Outline functions from `outline-mode-prefix-map'
19391 ;; that can be remapped in Org:
19392 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19393 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19394 (define-key org-mode-map [remap outline-forward-same-level]
19395 'org-forward-heading-same-level)
19396 (define-key org-mode-map [remap outline-backward-same-level]
19397 'org-backward-heading-same-level)
19398 (define-key org-mode-map [remap show-branches]
19399 'org-kill-note-or-show-branches)
19400 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19401 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19402 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19404 ;; Outline functions from `outline-mode-prefix-map' that can not
19405 ;; be remapped in Org:
19407 ;; - the column "key binding" shows whether the Outline function is still
19408 ;; available in Org mode on the same key that it has been bound to in
19409 ;; Outline mode:
19410 ;; - "overridden": key used for a different functionality in Org mode
19411 ;; - else: key still bound to the same Outline function in Org mode
19413 ;; | Outline function | key binding | Org replacement |
19414 ;; |------------------------------------+-------------+-----------------------|
19415 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19416 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19417 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19418 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19419 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19420 ;; | `show-entry' | overridden | no replacement |
19421 ;; | `show-children' | `C-c C-i' | visibility cycling |
19422 ;; | `show-branches' | `C-c C-k' | still same function |
19423 ;; | `show-subtree' | overridden | visibility cycling |
19424 ;; | `show-all' | overridden | no replacement |
19425 ;; | `hide-subtree' | overridden | visibility cycling |
19426 ;; | `hide-body' | overridden | no replacement |
19427 ;; | `hide-entry' | overridden | visibility cycling |
19428 ;; | `hide-leaves' | overridden | no replacement |
19429 ;; | `hide-sublevels' | overridden | no replacement |
19430 ;; | `hide-other' | overridden | no replacement |
19432 ;; Make `C-c C-x' a prefix key
19433 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19435 ;; TAB key with modifiers
19436 (org-defkey org-mode-map "\C-i" 'org-cycle)
19437 (org-defkey org-mode-map [(tab)] 'org-cycle)
19438 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19439 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19440 ;; The following line is necessary under Suse GNU/Linux
19441 (unless (featurep 'xemacs)
19442 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19443 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19444 (define-key org-mode-map [backtab] 'org-shifttab)
19446 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19447 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19448 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19450 ;; Cursor keys with modifiers
19451 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19452 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19453 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19454 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19456 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19457 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19458 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19459 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19460 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19461 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19463 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19464 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19465 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19466 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19468 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19469 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19470 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19471 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19473 ;; Babel keys
19474 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19475 (mapc (lambda (pair)
19476 (define-key org-babel-map (car pair) (cdr pair)))
19477 org-babel-key-bindings)
19479 ;;; Extra keys for tty access.
19480 ;; We only set them when really needed because otherwise the
19481 ;; menus don't show the simple keys
19483 (when (or org-use-extra-keys
19484 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19485 (not window-system))
19486 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19487 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19488 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19489 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19490 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19491 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19492 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19493 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19494 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19495 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19496 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19497 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19498 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19499 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19500 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19501 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19502 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19503 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19504 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19505 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19506 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19507 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19508 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19509 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19510 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19511 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19512 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19513 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19515 ;; All the other keys
19517 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19518 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19519 (if (boundp 'narrow-map)
19520 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19521 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19522 (if (boundp 'narrow-map)
19523 (org-defkey narrow-map "b" 'org-narrow-to-block)
19524 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19525 (if (boundp 'narrow-map)
19526 (org-defkey narrow-map "e" 'org-narrow-to-element)
19527 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19528 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19529 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19530 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19531 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19532 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19533 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19534 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19535 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19536 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19537 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19538 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19539 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19540 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19541 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19542 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19543 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19544 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19545 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19546 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19547 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19548 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19549 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19550 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19551 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19552 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19553 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19554 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19555 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19556 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19557 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19558 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19559 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19560 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19561 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19562 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19563 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19564 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19565 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19566 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19567 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19568 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19569 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19570 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19571 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19572 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19573 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19574 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19575 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19576 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19577 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19578 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19579 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19580 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19581 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19582 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19583 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19584 (org-defkey org-mode-map "\C-c^" 'org-sort)
19585 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19586 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19587 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19588 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19589 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19590 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19591 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19592 (org-defkey org-mode-map "\C-m" 'org-return)
19593 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19594 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19595 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19596 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19597 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19598 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19599 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19600 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19601 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19602 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19603 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19604 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19605 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19606 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19607 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19608 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19609 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19610 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19611 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19612 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19613 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19614 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19615 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19616 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19617 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19619 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19620 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19621 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19623 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19624 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19625 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19626 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19627 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19628 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19629 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19630 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19631 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19632 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19633 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19634 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19635 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19636 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19637 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19638 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19639 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19640 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19641 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19642 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19643 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19644 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19645 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19647 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19648 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19649 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19650 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19651 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19653 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19655 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19657 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19658 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19660 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19663 (when (featurep 'xemacs)
19664 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19667 (defconst org-speed-commands-default
19669 ("Outline Navigation")
19670 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19671 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19672 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19673 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19674 ("F" . org-next-block)
19675 ("B" . org-previous-block)
19676 ("u" . (org-speed-move-safe 'outline-up-heading))
19677 ("j" . org-goto)
19678 ("g" . (org-refile t))
19679 ("Outline Visibility")
19680 ("c" . org-cycle)
19681 ("C" . org-shifttab)
19682 (" " . org-display-outline-path)
19683 ("s" . org-narrow-to-subtree)
19684 ("=" . org-columns)
19685 ("Outline Structure Editing")
19686 ("U" . org-metaup)
19687 ("D" . org-metadown)
19688 ("r" . org-metaright)
19689 ("l" . org-metaleft)
19690 ("R" . org-shiftmetaright)
19691 ("L" . org-shiftmetaleft)
19692 ("i" . (progn (forward-char 1) (call-interactively
19693 'org-insert-heading-respect-content)))
19694 ("^" . org-sort)
19695 ("w" . org-refile)
19696 ("a" . org-archive-subtree-default-with-confirmation)
19697 ("@" . org-mark-subtree)
19698 ("#" . org-toggle-comment)
19699 ("Clock Commands")
19700 ("I" . org-clock-in)
19701 ("O" . org-clock-out)
19702 ("Meta Data Editing")
19703 ("t" . org-todo)
19704 ("," . (org-priority))
19705 ("0" . (org-priority ?\ ))
19706 ("1" . (org-priority ?A))
19707 ("2" . (org-priority ?B))
19708 ("3" . (org-priority ?C))
19709 (":" . org-set-tags-command)
19710 ("e" . org-set-effort)
19711 ("E" . org-inc-effort)
19712 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19713 (org-entry-put (point) "APPT_WARNTIME" m)))
19714 ("Agenda Views etc")
19715 ("v" . org-agenda)
19716 ("/" . org-sparse-tree)
19717 ("Misc")
19718 ("o" . org-open-at-point)
19719 ("?" . org-speed-command-help)
19720 ("<" . (org-agenda-set-restriction-lock 'subtree))
19721 (">" . (org-agenda-remove-restriction-lock))
19723 "The default speed commands.")
19725 (defun org-print-speed-command (e)
19726 (if (> (length (car e)) 1)
19727 (progn
19728 (princ "\n")
19729 (princ (car e))
19730 (princ "\n")
19731 (princ (make-string (length (car e)) ?-))
19732 (princ "\n"))
19733 (princ (car e))
19734 (princ " ")
19735 (if (symbolp (cdr e))
19736 (princ (symbol-name (cdr e)))
19737 (prin1 (cdr e)))
19738 (princ "\n")))
19740 (defun org-speed-command-help ()
19741 "Show the available speed commands."
19742 (interactive)
19743 (if (not org-use-speed-commands)
19744 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19745 (with-output-to-temp-buffer "*Help*"
19746 (princ "User-defined Speed commands\n===========================\n")
19747 (mapc 'org-print-speed-command org-speed-commands-user)
19748 (princ "\n")
19749 (princ "Built-in Speed commands\n=======================\n")
19750 (mapc 'org-print-speed-command org-speed-commands-default))
19751 (with-current-buffer "*Help*"
19752 (setq truncate-lines t))))
19754 (defun org-speed-move-safe (cmd)
19755 "Execute CMD, but make sure that the cursor always ends up in a headline.
19756 If not, return to the original position and throw an error."
19757 (interactive)
19758 (let ((pos (point)))
19759 (call-interactively cmd)
19760 (unless (and (bolp) (org-at-heading-p))
19761 (goto-char pos)
19762 (error "Boundary reached while executing %s" cmd))))
19764 (defvar org-self-insert-command-undo-counter 0)
19766 (defvar org-table-auto-blank-field) ; defined in org-table.el
19767 (defvar org-speed-command nil)
19769 (define-obsolete-function-alias
19770 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19772 (defun org-speed-command-activate (keys)
19773 "Hook for activating single-letter speed commands.
19774 `org-speed-commands-default' specifies a minimal command set.
19775 Use `org-speed-commands-user' for further customization."
19776 (when (or (and (bolp) (looking-at org-outline-regexp))
19777 (and (functionp org-use-speed-commands)
19778 (funcall org-use-speed-commands)))
19779 (cdr (assoc keys (append org-speed-commands-user
19780 org-speed-commands-default)))))
19782 (define-obsolete-function-alias
19783 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19785 (defun org-babel-speed-command-activate (keys)
19786 "Hook for activating single-letter code block commands."
19787 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19788 (cdr (assoc keys org-babel-key-bindings))))
19790 (defcustom org-speed-command-hook
19791 '(org-speed-command-default-hook org-babel-speed-command-hook)
19792 "Hook for activating speed commands at strategic locations.
19793 Hook functions are called in sequence until a valid handler is
19794 found.
19796 Each hook takes a single argument, a user-pressed command key
19797 which is also a `self-insert-command' from the global map.
19799 Within the hook, examine the cursor position and the command key
19800 and return nil or a valid handler as appropriate. Handler could
19801 be one of an interactive command, a function, or a form.
19803 Set `org-use-speed-commands' to non-nil value to enable this
19804 hook. The default setting is `org-speed-command-activate'."
19805 :group 'org-structure
19806 :version "24.1"
19807 :type 'hook)
19809 (defun org-self-insert-command (N)
19810 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19811 If the cursor is in a table looking at whitespace, the whitespace is
19812 overwritten, and the table is not marked as requiring realignment."
19813 (interactive "p")
19814 (org-check-before-invisible-edit 'insert)
19815 (cond
19816 ((and org-use-speed-commands
19817 (let ((kv (this-command-keys-vector)))
19818 (setq org-speed-command
19819 (run-hook-with-args-until-success
19820 'org-speed-command-hook
19821 (make-string 1 (aref kv (1- (length kv))))))))
19822 (cond
19823 ((commandp org-speed-command)
19824 (setq this-command org-speed-command)
19825 (call-interactively org-speed-command))
19826 ((functionp org-speed-command)
19827 (funcall org-speed-command))
19828 ((and org-speed-command (listp org-speed-command))
19829 (eval org-speed-command))
19830 (t (let (org-use-speed-commands)
19831 (call-interactively 'org-self-insert-command)))))
19832 ((and
19833 (org-table-p)
19834 (progn
19835 ;; check if we blank the field, and if that triggers align
19836 (and (featurep 'org-table) org-table-auto-blank-field
19837 (member last-command
19838 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas-expand))
19839 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19840 ;; got extra space, this field does not determine column width
19841 (let (org-table-may-need-update) (org-table-blank-field))
19842 ;; no extra space, this field may determine column width
19843 (org-table-blank-field)))
19845 (eq N 1)
19846 (looking-at "[^|\n]* |"))
19847 (let (org-table-may-need-update)
19848 (goto-char (1- (match-end 0)))
19849 (backward-delete-char 1)
19850 (goto-char (match-beginning 0))
19851 (self-insert-command N)))
19853 (setq org-table-may-need-update t)
19854 (self-insert-command N)
19855 (org-fix-tags-on-the-fly)
19856 (if org-self-insert-cluster-for-undo
19857 (if (not (eq last-command 'org-self-insert-command))
19858 (setq org-self-insert-command-undo-counter 1)
19859 (if (>= org-self-insert-command-undo-counter 20)
19860 (setq org-self-insert-command-undo-counter 1)
19861 (and (> org-self-insert-command-undo-counter 0)
19862 buffer-undo-list (listp buffer-undo-list)
19863 (not (cadr buffer-undo-list)) ; remove nil entry
19864 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19865 (setq org-self-insert-command-undo-counter
19866 (1+ org-self-insert-command-undo-counter))))))))
19868 (defun org-check-before-invisible-edit (kind)
19869 "Check is editing if kind KIND would be dangerous with invisible text around.
19870 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19871 ;; First, try to get out of here as quickly as possible, to reduce overhead
19872 (if (and org-catch-invisible-edits
19873 (or (not (boundp 'visible-mode)) (not visible-mode))
19874 (or (get-char-property (point) 'invisible)
19875 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19876 ;; OK, we need to take a closer look
19877 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19878 (invisible-before-point (if (bobp) nil (get-char-property
19879 (1- (point)) 'invisible)))
19880 (border-and-ok-direction
19882 ;; Check if we are acting predictably before invisible text
19883 (and invisible-at-point (not invisible-before-point)
19884 (memq kind '(insert delete-backward)))
19885 ;; Check if we are acting predictably after invisible text
19886 ;; This works not well, and I have turned it off. It seems
19887 ;; better to always show and stop after invisible text.
19888 ;; (and (not invisible-at-point) invisible-before-point
19889 ;; (memq kind '(insert delete)))
19891 (when (or (memq invisible-at-point '(outline org-hide-block t))
19892 (memq invisible-before-point '(outline org-hide-block t)))
19893 (if (eq org-catch-invisible-edits 'error)
19894 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19895 (if (and org-custom-properties-overlays
19896 (y-or-n-p "Display invisible properties in this buffer? "))
19897 (org-toggle-custom-properties-visibility)
19898 ;; Make the area visible
19899 (save-excursion
19900 (if invisible-before-point
19901 (goto-char (previous-single-char-property-change
19902 (point) 'invisible)))
19903 (show-subtree))
19904 (cond
19905 ((eq org-catch-invisible-edits 'show)
19906 ;; That's it, we do the edit after showing
19907 (message
19908 "Unfolding invisible region around point before editing")
19909 (sit-for 1))
19910 ((and (eq org-catch-invisible-edits 'smart)
19911 border-and-ok-direction)
19912 (message "Unfolding invisible region around point before editing"))
19914 ;; Don't do the edit, make the user repeat it in full visibility
19915 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19917 (defun org-fix-tags-on-the-fly ()
19918 (when (and (equal (char-after (point-at-bol)) ?*)
19919 (org-at-heading-p))
19920 (org-align-tags-here org-tags-column)))
19922 (defun org-delete-backward-char (N)
19923 "Like `delete-backward-char', insert whitespace at field end in tables.
19924 When deleting backwards, in tables this function will insert whitespace in
19925 front of the next \"|\" separator, to keep the table aligned. The table will
19926 still be marked for re-alignment if the field did fill the entire column,
19927 because, in this case the deletion might narrow the column."
19928 (interactive "p")
19929 (save-match-data
19930 (org-check-before-invisible-edit 'delete-backward)
19931 (if (and (org-table-p)
19932 (eq N 1)
19933 (string-match "|" (buffer-substring (point-at-bol) (point)))
19934 (looking-at ".*?|"))
19935 (let ((pos (point))
19936 (noalign (looking-at "[^|\n\r]* |"))
19937 (c org-table-may-need-update))
19938 (backward-delete-char N)
19939 (if (not overwrite-mode)
19940 (progn
19941 (skip-chars-forward "^|")
19942 (insert " ")
19943 (goto-char (1- pos))))
19944 ;; noalign: if there were two spaces at the end, this field
19945 ;; does not determine the width of the column.
19946 (if noalign (setq org-table-may-need-update c)))
19947 (backward-delete-char N)
19948 (org-fix-tags-on-the-fly))))
19950 (defun org-delete-char (N)
19951 "Like `delete-char', but insert whitespace at field end in tables.
19952 When deleting characters, in tables this function will insert whitespace in
19953 front of the next \"|\" separator, to keep the table aligned. The table will
19954 still be marked for re-alignment if the field did fill the entire column,
19955 because, in this case the deletion might narrow the column."
19956 (interactive "p")
19957 (save-match-data
19958 (org-check-before-invisible-edit 'delete)
19959 (if (and (org-table-p)
19960 (not (bolp))
19961 (not (= (char-after) ?|))
19962 (eq N 1))
19963 (if (looking-at ".*?|")
19964 (let ((pos (point))
19965 (noalign (looking-at "[^|\n\r]* |"))
19966 (c org-table-may-need-update))
19967 (replace-match
19968 (concat (substring (match-string 0) 1 -1) " |") nil t)
19969 (goto-char pos)
19970 ;; noalign: if there were two spaces at the end, this field
19971 ;; does not determine the width of the column.
19972 (if noalign (setq org-table-may-need-update c)))
19973 (delete-char N))
19974 (delete-char N)
19975 (org-fix-tags-on-the-fly))))
19977 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19978 (put 'org-self-insert-command 'delete-selection
19979 (lambda ()
19980 (not (run-hook-with-args-until-success
19981 'self-insert-uses-region-functions))))
19982 (put 'orgtbl-self-insert-command 'delete-selection
19983 (lambda ()
19984 (not (run-hook-with-args-until-success
19985 'self-insert-uses-region-functions))))
19986 (put 'org-delete-char 'delete-selection 'supersede)
19987 (put 'org-delete-backward-char 'delete-selection 'supersede)
19988 (put 'org-yank 'delete-selection 'yank)
19990 ;; Make `flyspell-mode' delay after some commands
19991 (put 'org-self-insert-command 'flyspell-delayed t)
19992 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19993 (put 'org-delete-char 'flyspell-delayed t)
19994 (put 'org-delete-backward-char 'flyspell-delayed t)
19996 ;; Make pabbrev-mode expand after org-mode commands
19997 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19998 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20000 (defun org-remap (map &rest commands)
20001 "In MAP, remap the functions given in COMMANDS.
20002 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20003 (let (new old)
20004 (while commands
20005 (setq old (pop commands) new (pop commands))
20006 (if (fboundp 'command-remapping)
20007 (org-defkey map (vector 'remap old) new)
20008 (substitute-key-definition old new map global-map)))))
20010 (defun org-transpose-words ()
20011 "Transpose words for Org.
20012 This uses the `org-mode-transpose-word-syntax-table' syntax
20013 table, which interprets characters in `org-emphasis-alist' as
20014 word constituents."
20015 (interactive)
20016 (with-syntax-table org-mode-transpose-word-syntax-table
20017 (call-interactively 'transpose-words)))
20018 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20020 (when (eq org-enable-table-editor 'optimized)
20021 ;; If the user wants maximum table support, we need to hijack
20022 ;; some standard editing functions
20023 (org-remap org-mode-map
20024 'self-insert-command 'org-self-insert-command
20025 'delete-char 'org-delete-char
20026 'delete-backward-char 'org-delete-backward-char)
20027 (org-defkey org-mode-map "|" 'org-force-self-insert))
20029 (defvar org-ctrl-c-ctrl-c-hook nil
20030 "Hook for functions attaching themselves to `C-c C-c'.
20032 This can be used to add additional functionality to the C-c C-c
20033 key which executes context-dependent commands. This hook is run
20034 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20035 run after the last test.
20037 Each function will be called with no arguments. The function
20038 must check if the context is appropriate for it to act. If yes,
20039 it should do its thing and then return a non-nil value. If the
20040 context is wrong, just do nothing and return nil.")
20042 (defvar org-ctrl-c-ctrl-c-final-hook nil
20043 "Hook for functions attaching themselves to `C-c C-c'.
20045 This can be used to add additional functionality to the C-c C-c
20046 key which executes context-dependent commands. This hook is run
20047 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20048 before the first test.
20050 Each function will be called with no arguments. The function
20051 must check if the context is appropriate for it to act. If yes,
20052 it should do its thing and then return a non-nil value. If the
20053 context is wrong, just do nothing and return nil.")
20055 (defvar org-tab-first-hook nil
20056 "Hook for functions to attach themselves to TAB.
20057 See `org-ctrl-c-ctrl-c-hook' for more information.
20058 This hook runs as the first action when TAB is pressed, even before
20059 `org-cycle' messes around with the `outline-regexp' to cater for
20060 inline tasks and plain list item folding.
20061 If any function in this hook returns t, any other actions that
20062 would have been caused by TAB (such as table field motion or visibility
20063 cycling) will not occur.")
20065 (defvar org-tab-after-check-for-table-hook nil
20066 "Hook for functions to attach themselves to TAB.
20067 See `org-ctrl-c-ctrl-c-hook' for more information.
20068 This hook runs after it has been established that the cursor is not in a
20069 table, but before checking if the cursor is in a headline or if global cycling
20070 should be done.
20071 If any function in this hook returns t, not other actions like visibility
20072 cycling will be done.")
20074 (defvar org-tab-after-check-for-cycling-hook nil
20075 "Hook for functions to attach themselves to TAB.
20076 See `org-ctrl-c-ctrl-c-hook' for more information.
20077 This hook runs after it has been established that not table field motion and
20078 not visibility should be done because of current context. This is probably
20079 the place where a package like yasnippets can hook in.")
20081 (defvar org-tab-before-tab-emulation-hook nil
20082 "Hook for functions to attach themselves to TAB.
20083 See `org-ctrl-c-ctrl-c-hook' for more information.
20084 This hook runs after every other options for TAB have been exhausted, but
20085 before indentation and \t insertion takes place.")
20087 (defvar org-metaleft-hook nil
20088 "Hook for functions attaching themselves to `M-left'.
20089 See `org-ctrl-c-ctrl-c-hook' for more information.")
20090 (defvar org-metaright-hook nil
20091 "Hook for functions attaching themselves to `M-right'.
20092 See `org-ctrl-c-ctrl-c-hook' for more information.")
20093 (defvar org-metaup-hook nil
20094 "Hook for functions attaching themselves to `M-up'.
20095 See `org-ctrl-c-ctrl-c-hook' for more information.")
20096 (defvar org-metadown-hook nil
20097 "Hook for functions attaching themselves to `M-down'.
20098 See `org-ctrl-c-ctrl-c-hook' for more information.")
20099 (defvar org-shiftmetaleft-hook nil
20100 "Hook for functions attaching themselves to `M-S-left'.
20101 See `org-ctrl-c-ctrl-c-hook' for more information.")
20102 (defvar org-shiftmetaright-hook nil
20103 "Hook for functions attaching themselves to `M-S-right'.
20104 See `org-ctrl-c-ctrl-c-hook' for more information.")
20105 (defvar org-shiftmetaup-hook nil
20106 "Hook for functions attaching themselves to `M-S-up'.
20107 See `org-ctrl-c-ctrl-c-hook' for more information.")
20108 (defvar org-shiftmetadown-hook nil
20109 "Hook for functions attaching themselves to `M-S-down'.
20110 See `org-ctrl-c-ctrl-c-hook' for more information.")
20111 (defvar org-metareturn-hook nil
20112 "Hook for functions attaching themselves to `M-RET'.
20113 See `org-ctrl-c-ctrl-c-hook' for more information.")
20114 (defvar org-shiftup-hook nil
20115 "Hook for functions attaching themselves to `S-up'.
20116 See `org-ctrl-c-ctrl-c-hook' for more information.")
20117 (defvar org-shiftup-final-hook nil
20118 "Hook for functions attaching themselves to `S-up'.
20119 This one runs after all other options except shift-select have been excluded.
20120 See `org-ctrl-c-ctrl-c-hook' for more information.")
20121 (defvar org-shiftdown-hook nil
20122 "Hook for functions attaching themselves to `S-down'.
20123 See `org-ctrl-c-ctrl-c-hook' for more information.")
20124 (defvar org-shiftdown-final-hook nil
20125 "Hook for functions attaching themselves to `S-down'.
20126 This one runs after all other options except shift-select have been excluded.
20127 See `org-ctrl-c-ctrl-c-hook' for more information.")
20128 (defvar org-shiftleft-hook nil
20129 "Hook for functions attaching themselves to `S-left'.
20130 See `org-ctrl-c-ctrl-c-hook' for more information.")
20131 (defvar org-shiftleft-final-hook nil
20132 "Hook for functions attaching themselves to `S-left'.
20133 This one runs after all other options except shift-select have been excluded.
20134 See `org-ctrl-c-ctrl-c-hook' for more information.")
20135 (defvar org-shiftright-hook nil
20136 "Hook for functions attaching themselves to `S-right'.
20137 See `org-ctrl-c-ctrl-c-hook' for more information.")
20138 (defvar org-shiftright-final-hook nil
20139 "Hook for functions attaching themselves to `S-right'.
20140 This one runs after all other options except shift-select have been excluded.
20141 See `org-ctrl-c-ctrl-c-hook' for more information.")
20143 (defun org-modifier-cursor-error ()
20144 "Throw an error, a modified cursor command was applied in wrong context."
20145 (user-error "This command is active in special context like tables, headlines or items"))
20147 (defun org-shiftselect-error ()
20148 "Throw an error because Shift-Cursor command was applied in wrong context."
20149 (if (and (boundp 'shift-select-mode) shift-select-mode)
20150 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20151 (user-error "This command works only in special context like headlines or timestamps")))
20153 (defun org-call-for-shift-select (cmd)
20154 (let ((this-command-keys-shift-translated t))
20155 (call-interactively cmd)))
20157 (defun org-shifttab (&optional arg)
20158 "Global visibility cycling or move to previous table field.
20159 Call `org-table-previous-field' within a table.
20160 When ARG is nil, cycle globally through visibility states.
20161 When ARG is a numeric prefix, show contents of this level."
20162 (interactive "P")
20163 (cond
20164 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20165 ((integerp arg)
20166 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20167 (message "Content view to level: %d" arg)
20168 (org-content (prefix-numeric-value arg2))
20169 (org-cycle-show-empty-lines t)
20170 (setq org-cycle-global-status 'overview)))
20171 (t (call-interactively 'org-global-cycle))))
20173 (defun org-shiftmetaleft ()
20174 "Promote subtree or delete table column.
20175 Calls `org-promote-subtree', `org-outdent-item-tree', or
20176 `org-table-delete-column', depending on context. See the
20177 individual commands for more information."
20178 (interactive)
20179 (cond
20180 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20181 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20182 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20183 ((if (not (org-region-active-p)) (org-at-item-p)
20184 (save-excursion (goto-char (region-beginning))
20185 (org-at-item-p)))
20186 (call-interactively 'org-outdent-item-tree))
20187 (t (org-modifier-cursor-error))))
20189 (defun org-shiftmetaright ()
20190 "Demote subtree or insert table column.
20191 Calls `org-demote-subtree', `org-indent-item-tree', or
20192 `org-table-insert-column', depending on context. See the
20193 individual commands for more information."
20194 (interactive)
20195 (cond
20196 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20197 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20198 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20199 ((if (not (org-region-active-p)) (org-at-item-p)
20200 (save-excursion (goto-char (region-beginning))
20201 (org-at-item-p)))
20202 (call-interactively 'org-indent-item-tree))
20203 (t (org-modifier-cursor-error))))
20205 (defun org-shiftmetaup (&optional arg)
20206 "Drag the line at point up.
20207 In a table, kill the current row.
20208 On a clock timestamp, update the value of the timestamp like `S-<up>'
20209 but also adjust the previous clocked item in the clock history.
20210 Everywhere else, drag the line at point up."
20211 (interactive "P")
20212 (cond
20213 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20214 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20215 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20216 (call-interactively 'org-timestamp-up)))
20217 (t (call-interactively 'org-drag-line-backward))))
20219 (defun org-shiftmetadown (&optional arg)
20220 "Drag the line at point down.
20221 In a table, insert an empty row at the current line.
20222 On a clock timestamp, update the value of the timestamp like `S-<down>'
20223 but also adjust the previous clocked item in the clock history.
20224 Everywhere else, drag the line at point down."
20225 (interactive "P")
20226 (cond
20227 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20228 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20229 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20230 (call-interactively 'org-timestamp-down)))
20231 (t (call-interactively 'org-drag-line-forward))))
20233 (defsubst org-hidden-tree-error ()
20234 (user-error
20235 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20237 (defun org-metaleft (&optional arg)
20238 "Promote heading or move table column to left.
20239 Calls `org-do-promote' or `org-table-move-column', depending on context.
20240 With no specific context, calls the Emacs default `backward-word'.
20241 See the individual commands for more information."
20242 (interactive "P")
20243 (cond
20244 ((run-hook-with-args-until-success 'org-metaleft-hook))
20245 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20246 ((org-with-limited-levels
20247 (or (org-at-heading-p)
20248 (and (org-region-active-p)
20249 (save-excursion
20250 (goto-char (region-beginning))
20251 (org-at-heading-p)))))
20252 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20253 (call-interactively 'org-do-promote))
20254 ;; At an inline task.
20255 ((org-at-heading-p)
20256 (call-interactively 'org-inlinetask-promote))
20257 ((or (org-at-item-p)
20258 (and (org-region-active-p)
20259 (save-excursion
20260 (goto-char (region-beginning))
20261 (org-at-item-p))))
20262 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20263 (call-interactively 'org-outdent-item))
20264 (t (call-interactively 'backward-word))))
20266 (defun org-metaright (&optional arg)
20267 "Demote a subtree, a list item or move table column to right.
20268 In front of a drawer or a block keyword, indent it correctly.
20269 With no specific context, calls the Emacs default `forward-word'.
20270 See the individual commands for more information."
20271 (interactive "P")
20272 (cond
20273 ((run-hook-with-args-until-success 'org-metaright-hook))
20274 ((org-at-table-p) (call-interactively 'org-table-move-column))
20275 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20276 ((org-at-block-p) (call-interactively 'org-indent-block))
20277 ((org-with-limited-levels
20278 (or (org-at-heading-p)
20279 (and (org-region-active-p)
20280 (save-excursion
20281 (goto-char (region-beginning))
20282 (org-at-heading-p)))))
20283 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20284 (call-interactively 'org-do-demote))
20285 ;; At an inline task.
20286 ((org-at-heading-p)
20287 (call-interactively 'org-inlinetask-demote))
20288 ((or (org-at-item-p)
20289 (and (org-region-active-p)
20290 (save-excursion
20291 (goto-char (region-beginning))
20292 (org-at-item-p))))
20293 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20294 (call-interactively 'org-indent-item))
20295 (t (call-interactively 'forward-word))))
20297 (defun org-check-for-hidden (what)
20298 "Check if there are hidden headlines/items in the current visual line.
20299 WHAT can be either `headlines' or `items'. If the current line is
20300 an outline or item heading and it has a folded subtree below it,
20301 this function returns t, nil otherwise."
20302 (let ((re (cond
20303 ((eq what 'headlines) org-outline-regexp-bol)
20304 ((eq what 'items) (org-item-beginning-re))
20305 (t (error "This should not happen"))))
20306 beg end)
20307 (save-excursion
20308 (catch 'exit
20309 (unless (org-region-active-p)
20310 (setq beg (point-at-bol))
20311 (beginning-of-line 2)
20312 (while (and (not (eobp)) ;; this is like `next-line'
20313 (get-char-property (1- (point)) 'invisible))
20314 (beginning-of-line 2))
20315 (setq end (point))
20316 (goto-char beg)
20317 (goto-char (point-at-eol))
20318 (setq end (max end (point)))
20319 (while (re-search-forward re end t)
20320 (if (get-char-property (match-beginning 0) 'invisible)
20321 (throw 'exit t))))
20322 nil))))
20324 (defun org-metaup (&optional arg)
20325 "Move subtree up or move table row up.
20326 Calls `org-move-subtree-up' or `org-table-move-row' or
20327 `org-move-item-up', depending on context. See the individual commands
20328 for more information."
20329 (interactive "P")
20330 (cond
20331 ((run-hook-with-args-until-success 'org-metaup-hook))
20332 ((org-region-active-p)
20333 (let* ((a (min (region-beginning) (region-end)))
20334 (b (1- (max (region-beginning) (region-end))))
20335 (c (save-excursion (goto-char a)
20336 (move-beginning-of-line 0)))
20337 (d (save-excursion (goto-char a)
20338 (move-end-of-line 0) (point))))
20339 (transpose-regions a b c d)
20340 (goto-char c)))
20341 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20342 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20343 ((org-at-item-p) (call-interactively 'org-move-item-up))
20344 (t (org-drag-element-backward))))
20346 (defun org-metadown (&optional arg)
20347 "Move subtree down or move table row down.
20348 Calls `org-move-subtree-down' or `org-table-move-row' or
20349 `org-move-item-down', depending on context. See the individual
20350 commands for more information."
20351 (interactive "P")
20352 (cond
20353 ((run-hook-with-args-until-success 'org-metadown-hook))
20354 ((org-region-active-p)
20355 (let* ((a (min (region-beginning) (region-end)))
20356 (b (max (region-beginning) (region-end)))
20357 (c (save-excursion (goto-char b)
20358 (move-beginning-of-line 1)))
20359 (d (save-excursion (goto-char b)
20360 (move-end-of-line 1) (1+ (point)))))
20361 (transpose-regions a b c d)
20362 (goto-char d)))
20363 ((org-at-table-p) (call-interactively 'org-table-move-row))
20364 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20365 ((org-at-item-p) (call-interactively 'org-move-item-down))
20366 (t (org-drag-element-forward))))
20368 (defun org-shiftup (&optional arg)
20369 "Increase item in timestamp or increase priority of current headline.
20370 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20371 depending on context. See the individual commands for more information."
20372 (interactive "P")
20373 (cond
20374 ((run-hook-with-args-until-success 'org-shiftup-hook))
20375 ((and org-support-shift-select (org-region-active-p))
20376 (org-call-for-shift-select 'previous-line))
20377 ((org-at-timestamp-p t)
20378 (call-interactively (if org-edit-timestamp-down-means-later
20379 'org-timestamp-down 'org-timestamp-up)))
20380 ((and (not (eq org-support-shift-select 'always))
20381 org-enable-priority-commands
20382 (org-at-heading-p))
20383 (call-interactively 'org-priority-up))
20384 ((and (not org-support-shift-select) (org-at-item-p))
20385 (call-interactively 'org-previous-item))
20386 ((org-clocktable-try-shift 'up arg))
20387 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20388 (org-support-shift-select
20389 (org-call-for-shift-select 'previous-line))
20390 (t (org-shiftselect-error))))
20392 (defun org-shiftdown (&optional arg)
20393 "Decrease item in timestamp or decrease priority of current headline.
20394 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20395 depending on context. See the individual commands for more information."
20396 (interactive "P")
20397 (cond
20398 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20399 ((and org-support-shift-select (org-region-active-p))
20400 (org-call-for-shift-select 'next-line))
20401 ((org-at-timestamp-p t)
20402 (call-interactively (if org-edit-timestamp-down-means-later
20403 'org-timestamp-up 'org-timestamp-down)))
20404 ((and (not (eq org-support-shift-select 'always))
20405 org-enable-priority-commands
20406 (org-at-heading-p))
20407 (call-interactively 'org-priority-down))
20408 ((and (not org-support-shift-select) (org-at-item-p))
20409 (call-interactively 'org-next-item))
20410 ((org-clocktable-try-shift 'down arg))
20411 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20412 (org-support-shift-select
20413 (org-call-for-shift-select 'next-line))
20414 (t (org-shiftselect-error))))
20416 (defun org-shiftright (&optional arg)
20417 "Cycle the thing at point or in the current line, depending on context.
20418 Depending on context, this does one of the following:
20420 - switch a timestamp at point one day into the future
20421 - on a headline, switch to the next TODO keyword.
20422 - on an item, switch entire list to the next bullet type
20423 - on a property line, switch to the next allowed value
20424 - on a clocktable definition line, move time block into the future"
20425 (interactive "P")
20426 (cond
20427 ((run-hook-with-args-until-success 'org-shiftright-hook))
20428 ((and org-support-shift-select (org-region-active-p))
20429 (org-call-for-shift-select 'forward-char))
20430 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20431 ((and (not (eq org-support-shift-select 'always))
20432 (org-at-heading-p))
20433 (let ((org-inhibit-logging
20434 (not org-treat-S-cursor-todo-selection-as-state-change))
20435 (org-inhibit-blocking
20436 (not org-treat-S-cursor-todo-selection-as-state-change)))
20437 (org-call-with-arg 'org-todo 'right)))
20438 ((or (and org-support-shift-select
20439 (not (eq org-support-shift-select 'always))
20440 (org-at-item-bullet-p))
20441 (and (not org-support-shift-select) (org-at-item-p)))
20442 (org-call-with-arg 'org-cycle-list-bullet nil))
20443 ((and (not (eq org-support-shift-select 'always))
20444 (org-at-property-p))
20445 (call-interactively 'org-property-next-allowed-value))
20446 ((org-clocktable-try-shift 'right arg))
20447 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20448 (org-support-shift-select
20449 (org-call-for-shift-select 'forward-char))
20450 (t (org-shiftselect-error))))
20452 (defun org-shiftleft (&optional arg)
20453 "Cycle the thing at point or in the current line, depending on context.
20454 Depending on context, this does one of the following:
20456 - switch a timestamp at point one day into the past
20457 - on a headline, switch to the previous TODO keyword.
20458 - on an item, switch entire list to the previous bullet type
20459 - on a property line, switch to the previous allowed value
20460 - on a clocktable definition line, move time block into the past"
20461 (interactive "P")
20462 (cond
20463 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20464 ((and org-support-shift-select (org-region-active-p))
20465 (org-call-for-shift-select 'backward-char))
20466 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20467 ((and (not (eq org-support-shift-select 'always))
20468 (org-at-heading-p))
20469 (let ((org-inhibit-logging
20470 (not org-treat-S-cursor-todo-selection-as-state-change))
20471 (org-inhibit-blocking
20472 (not org-treat-S-cursor-todo-selection-as-state-change)))
20473 (org-call-with-arg 'org-todo 'left)))
20474 ((or (and org-support-shift-select
20475 (not (eq org-support-shift-select 'always))
20476 (org-at-item-bullet-p))
20477 (and (not org-support-shift-select) (org-at-item-p)))
20478 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20479 ((and (not (eq org-support-shift-select 'always))
20480 (org-at-property-p))
20481 (call-interactively 'org-property-previous-allowed-value))
20482 ((org-clocktable-try-shift 'left arg))
20483 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20484 (org-support-shift-select
20485 (org-call-for-shift-select 'backward-char))
20486 (t (org-shiftselect-error))))
20488 (defun org-shiftcontrolright ()
20489 "Switch to next TODO set."
20490 (interactive)
20491 (cond
20492 ((and org-support-shift-select (org-region-active-p))
20493 (org-call-for-shift-select 'forward-word))
20494 ((and (not (eq org-support-shift-select 'always))
20495 (org-at-heading-p))
20496 (org-call-with-arg 'org-todo 'nextset))
20497 (org-support-shift-select
20498 (org-call-for-shift-select 'forward-word))
20499 (t (org-shiftselect-error))))
20501 (defun org-shiftcontrolleft ()
20502 "Switch to previous TODO set."
20503 (interactive)
20504 (cond
20505 ((and org-support-shift-select (org-region-active-p))
20506 (org-call-for-shift-select 'backward-word))
20507 ((and (not (eq org-support-shift-select 'always))
20508 (org-at-heading-p))
20509 (org-call-with-arg 'org-todo 'previousset))
20510 (org-support-shift-select
20511 (org-call-for-shift-select 'backward-word))
20512 (t (org-shiftselect-error))))
20514 (defun org-shiftcontrolup (&optional n)
20515 "Change timestamps synchronously up in CLOCK log lines.
20516 Optional argument N tells to change by that many units."
20517 (interactive "P")
20518 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20519 (let (org-support-shift-select)
20520 (org-clock-timestamps-up n))
20521 (user-error "Not at a clock log")))
20523 (defun org-shiftcontroldown (&optional n)
20524 "Change timestamps synchronously down in CLOCK log lines.
20525 Optional argument N tells to change by that many units."
20526 (interactive "P")
20527 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20528 (let (org-support-shift-select)
20529 (org-clock-timestamps-down n))
20530 (user-error "Not at a clock log")))
20532 (defun org-increase-number-at-point (&optional inc)
20533 "Increment the number at point.
20534 With an optional prefix numeric argument INC, increment using
20535 this numeric value."
20536 (interactive "p")
20537 (if (not (number-at-point))
20538 (user-error "Not on a number")
20539 (unless inc (setq inc 1))
20540 (let ((pos (point))
20541 (beg (skip-chars-backward "-+^/*0-9eE."))
20542 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20543 (setq nap (buffer-substring-no-properties
20544 (+ pos beg) (+ pos beg end)))
20545 (delete-region (+ pos beg) (+ pos beg end))
20546 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20547 (when (org-at-table-p)
20548 (org-table-align)
20549 (org-table-end-of-field 1))))
20551 (defun org-decrease-number-at-point (&optional inc)
20552 "Decrement the number at point.
20553 With an optional prefix numeric argument INC, decrement using
20554 this numeric value."
20555 (interactive "p")
20556 (org-increase-number-at-point (- inc)))
20558 (defun org-ctrl-c-ret ()
20559 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20560 (interactive)
20561 (cond
20562 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20563 (t (call-interactively 'org-insert-heading))))
20565 (defun org-find-visible ()
20566 (let ((s (point)))
20567 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20568 (get-char-property s 'invisible)))
20570 (defun org-find-invisible ()
20571 (let ((s (point)))
20572 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20573 (not (get-char-property s 'invisible))))
20576 (defun org-copy-visible (beg end)
20577 "Copy the visible parts of the region."
20578 (interactive "r")
20579 (let (snippets s)
20580 (save-excursion
20581 (save-restriction
20582 (narrow-to-region beg end)
20583 (setq s (goto-char (point-min)))
20584 (while (not (= (point) (point-max)))
20585 (goto-char (org-find-invisible))
20586 (push (buffer-substring s (point)) snippets)
20587 (setq s (goto-char (org-find-visible))))))
20588 (kill-new (apply 'concat (nreverse snippets)))))
20590 (defun org-copy-special ()
20591 "Copy region in table or copy current subtree.
20592 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20593 See the individual commands for more information."
20594 (interactive)
20595 (call-interactively
20596 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20598 (defun org-cut-special ()
20599 "Cut region in table or cut current subtree.
20600 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20601 See the individual commands for more information."
20602 (interactive)
20603 (call-interactively
20604 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20606 (defun org-paste-special (arg)
20607 "Paste rectangular region into table, or past subtree relative to level.
20608 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20609 See the individual commands for more information."
20610 (interactive "P")
20611 (if (org-at-table-p)
20612 (org-table-paste-rectangle)
20613 (org-paste-subtree arg)))
20615 (defsubst org-in-fixed-width-region-p ()
20616 "Is point in a fixed-width region?"
20617 (save-match-data
20618 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20620 (defun org-edit-special (&optional arg)
20621 "Call a special editor for the element at point.
20622 When at a table, call the formula editor with `org-table-edit-formulas'.
20623 When in a source code block, call `org-edit-src-code'.
20624 When in a fixed-width region, call `org-edit-fixed-width-region'.
20625 When at an #+INCLUDE keyword, visit the included file.
20626 On a link, call `ffap' to visit the link at point.
20627 Otherwise, return a user error."
20628 (interactive "P")
20629 (let ((element (org-element-at-point)))
20630 (assert (not buffer-read-only) nil
20631 "Buffer is read-only: %s" (buffer-name))
20632 (case (org-element-type element)
20633 (src-block
20634 (if (not arg) (org-edit-src-code)
20635 (let* ((info (org-babel-get-src-block-info))
20636 (lang (nth 0 info))
20637 (params (nth 2 info))
20638 (session (cdr (assq :session params))))
20639 (if (not session) (org-edit-src-code)
20640 ;; At a src-block with a session and function called with
20641 ;; an ARG: switch to the buffer related to the inferior
20642 ;; process.
20643 (switch-to-buffer
20644 (funcall (intern (concat "org-babel-prep-session:" lang))
20645 session params))))))
20646 (keyword
20647 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20648 (org-open-link-from-string
20649 (format "[[%s]]"
20650 (expand-file-name
20651 (let ((value (org-element-property :value element)))
20652 (cond ((not (org-string-nw-p value))
20653 (user-error "No file to edit"))
20654 ((string-match "\\`\"\\(.*?\\)\"" value)
20655 (match-string 1 value))
20656 ((string-match "\\`[^ \t\"]\\S-*" value)
20657 (match-string 0 value))
20658 (t (user-error "No valid file specified")))))))
20659 (user-error "No special environment to edit here")))
20660 (table
20661 (if (eq (org-element-property :type element) 'table.el)
20662 (org-edit-src-code)
20663 (call-interactively 'org-table-edit-formulas)))
20664 ;; Only Org tables contain `table-row' type elements.
20665 (table-row (call-interactively 'org-table-edit-formulas))
20666 ((example-block export-block) (org-edit-src-code))
20667 (fixed-width (org-edit-fixed-width-region))
20668 (otherwise
20669 ;; No notable element at point. Though, we may be at a link,
20670 ;; which is an object. Thus, scan deeper.
20671 (if (eq (org-element-type (org-element-context element)) 'link)
20672 (call-interactively 'ffap)
20673 (user-error "No special environment to edit here"))))))
20675 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20676 (defun org-ctrl-c-ctrl-c (&optional arg)
20677 "Set tags in headline, or update according to changed information at point.
20679 This command does many different things, depending on context:
20681 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20682 this is what we do.
20684 - If the cursor is on a statistics cookie, update it.
20686 - If the cursor is in a headline, prompt for tags and insert them
20687 into the current line, aligned to `org-tags-column'. When called
20688 with prefix arg, realign all tags in the current buffer.
20690 - If the cursor is in one of the special #+KEYWORD lines, this
20691 triggers scanning the buffer for these lines and updating the
20692 information.
20694 - If the cursor is inside a table, realign the table. This command
20695 works even if the automatic table editor has been turned off.
20697 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20698 the entire table.
20700 - If the cursor is at a footnote reference or definition, jump to
20701 the corresponding definition or references, respectively.
20703 - If the cursor is a the beginning of a dynamic block, update it.
20705 - If the current buffer is a capture buffer, close note and file it.
20707 - If the cursor is on a <<<target>>>, update radio targets and
20708 corresponding links in this buffer.
20710 - If the cursor is on a numbered item in a plain list, renumber the
20711 ordered list.
20713 - If the cursor is on a checkbox, toggle it.
20715 - If the cursor is on a code block, evaluate it. The variable
20716 `org-confirm-babel-evaluate' can be used to control prompting
20717 before code block evaluation, by default every code block
20718 evaluation requires confirmation. Code block evaluation can be
20719 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20720 (interactive "P")
20721 (cond
20722 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20723 org-occur-highlights)
20724 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20725 (org-remove-occur-highlights)
20726 (message "Temporary highlights/overlays removed from current buffer"))
20727 ((and (local-variable-p 'org-finish-function (current-buffer))
20728 (fboundp org-finish-function))
20729 (funcall org-finish-function))
20730 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20732 (let* ((context (org-element-context)) (type (org-element-type context)))
20733 ;; Test if point is within a blank line.
20734 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20735 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20736 (user-error "C-c C-c can do nothing useful at this location"))
20737 (case type
20738 ;; When at a link, act according to the parent instead.
20739 (link (setq context (org-element-property :parent context))
20740 (setq type (org-element-type context)))
20741 ;; Unsupported object types: refer to the first supported
20742 ;; element or object containing it.
20743 ((bold code entity export-snippet inline-babel-call inline-src-block
20744 italic latex-fragment line-break macro strike-through subscript
20745 superscript underline verbatim)
20746 (while (and (setq context (org-element-property :parent context))
20747 (not (memq (setq type (org-element-type context))
20748 '(radio-target paragraph verse-block
20749 table-cell)))))))
20750 ;; For convenience: at the first line of a paragraph on the
20751 ;; same line as an item, apply function on that item instead.
20752 (when (eq type 'paragraph)
20753 (let ((parent (org-element-property :parent context)))
20754 (when (and (eq (org-element-type parent) 'item)
20755 (= (point-at-bol) (org-element-property :begin parent)))
20756 (setq context parent type 'item))))
20757 ;; Act according to type of element or object at point.
20758 (case type
20759 (clock (org-clock-update-time-maybe))
20760 (dynamic-block
20761 (save-excursion
20762 (goto-char (org-element-property :post-affiliated context))
20763 (org-update-dblock)))
20764 (footnote-definition
20765 (goto-char (org-element-property :post-affiliated context))
20766 (call-interactively 'org-footnote-action))
20767 (footnote-reference (call-interactively 'org-footnote-action))
20768 ((headline inlinetask)
20769 (save-excursion (goto-char (org-element-property :begin context))
20770 (call-interactively 'org-set-tags)))
20771 (item
20772 ;; At an item: a double C-u set checkbox to "[-]"
20773 ;; unconditionally, whereas a single one will toggle its
20774 ;; presence. Without an universal argument, if the item
20775 ;; has a checkbox, toggle it. Otherwise repair the list.
20776 (let* ((box (org-element-property :checkbox context))
20777 (struct (org-element-property :structure context))
20778 (old-struct (copy-tree struct))
20779 (parents (org-list-parents-alist struct))
20780 (prevs (org-list-prevs-alist struct))
20781 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20782 (org-list-set-checkbox
20783 (org-element-property :begin context) struct
20784 (cond ((equal arg '(16)) "[-]")
20785 ((and (not box) (equal arg '(4))) "[ ]")
20786 ((or (not box) (equal arg '(4))) nil)
20787 ((eq box 'on) "[ ]")
20788 (t "[X]")))
20789 ;; Mimic `org-list-write-struct' but with grabbing
20790 ;; a return value from `org-list-struct-fix-box'.
20791 (org-list-struct-fix-ind struct parents 2)
20792 (org-list-struct-fix-item-end struct)
20793 (org-list-struct-fix-bul struct prevs)
20794 (org-list-struct-fix-ind struct parents)
20795 (let ((block-item
20796 (org-list-struct-fix-box struct parents prevs orderedp)))
20797 (if (and box (equal struct old-struct))
20798 (if (equal arg '(16))
20799 (message "Checkboxes already reset")
20800 (user-error "Cannot toggle this checkbox: %s"
20801 (if (eq box 'on)
20802 "all subitems checked"
20803 "unchecked subitems")))
20804 (org-list-struct-apply-struct struct old-struct)
20805 (org-update-checkbox-count-maybe))
20806 (when block-item
20807 (message "Checkboxes were removed due to empty box at line %d"
20808 (org-current-line block-item))))))
20809 (keyword
20810 (let ((org-inhibit-startup-visibility-stuff t)
20811 (org-startup-align-all-tables nil))
20812 (when (boundp 'org-table-coordinate-overlays)
20813 (mapc 'delete-overlay org-table-coordinate-overlays)
20814 (setq org-table-coordinate-overlays nil))
20815 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20816 (message "Local setup has been refreshed"))
20817 (plain-list
20818 ;; At a plain list, with a double C-u argument, set
20819 ;; checkboxes of each item to "[-]", whereas a single one
20820 ;; will toggle their presence according to the state of the
20821 ;; first item in the list. Without an argument, repair the
20822 ;; list.
20823 (let* ((begin (org-element-property :contents-begin context))
20824 (beginm (move-marker (make-marker) begin))
20825 (struct (org-element-property :structure context))
20826 (old-struct (copy-tree struct))
20827 (first-box (save-excursion
20828 (goto-char begin)
20829 (looking-at org-list-full-item-re)
20830 (match-string-no-properties 3)))
20831 (new-box (cond ((equal arg '(16)) "[-]")
20832 ((equal arg '(4)) (unless first-box "[ ]"))
20833 ((equal first-box "[X]") "[ ]")
20834 (t "[X]"))))
20835 (cond
20836 (arg
20837 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20838 (org-list-get-all-items
20839 begin struct (org-list-prevs-alist struct))))
20840 ((and first-box (eq (point) begin))
20841 ;; For convenience, when point is at bol on the first
20842 ;; item of the list and no argument is provided, simply
20843 ;; toggle checkbox of that item, if any.
20844 (org-list-set-checkbox begin struct new-box)))
20845 (org-list-write-struct
20846 struct (org-list-parents-alist struct) old-struct)
20847 (org-update-checkbox-count-maybe)
20848 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20849 ((property-drawer node-property)
20850 (call-interactively 'org-property-action))
20851 ((radio-target target)
20852 (call-interactively 'org-update-radio-target-regexp))
20853 (statistics-cookie
20854 (call-interactively 'org-update-statistics-cookies))
20855 ((table table-cell table-row)
20856 ;; At a table, recalculate every field and align it. Also
20857 ;; send the table if necessary. If the table has
20858 ;; a `table.el' type, just give up. At a table row or
20859 ;; cell, maybe recalculate line but always align table.
20860 (if (eq (org-element-property :type context) 'table.el)
20861 (message "Use C-c ' to edit table.el tables")
20862 (let ((org-enable-table-editor t))
20863 (if (or (eq type 'table)
20864 ;; Check if point is at a TBLFM line.
20865 (and (eq type 'table-row)
20866 (= (point) (org-element-property :end context))))
20867 (save-excursion
20868 (if (org-at-TBLFM-p)
20869 (progn (require 'org-table)
20870 (org-table-calc-current-TBLFM))
20871 (goto-char (org-element-property :contents-begin context))
20872 (org-call-with-arg 'org-table-recalculate (or arg t))
20873 (orgtbl-send-table 'maybe)))
20874 (org-table-maybe-eval-formula)
20875 (cond (arg (call-interactively 'org-table-recalculate))
20876 ((org-table-maybe-recalculate-line))
20877 (t (org-table-align)))))))
20878 (timestamp (org-timestamp-change 0 'day))
20879 (otherwise
20880 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20881 (user-error
20882 "C-c C-c can do nothing useful at this location")))))))))
20884 (defun org-mode-restart ()
20885 (interactive)
20886 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20887 (funcall major-mode)
20888 (hack-local-variables)
20889 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20890 (org-indent-mode -1)))
20891 (message "%s restarted" major-mode))
20893 (defun org-kill-note-or-show-branches ()
20894 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20895 (interactive)
20896 (if (not org-finish-function)
20897 (progn
20898 (hide-subtree)
20899 (call-interactively 'show-branches))
20900 (let ((org-note-abort t))
20901 (funcall org-finish-function))))
20903 (defun org-open-line (n)
20904 "Insert a new row in tables, call `open-line' elsewhere.
20905 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20906 (interactive "*p")
20907 (cond
20908 ((not org-special-ctrl-o)
20909 (open-line n))
20910 ((org-at-table-p)
20911 (org-table-insert-row))
20913 (open-line n))))
20915 (defun org-return (&optional indent)
20916 "Goto next table row or insert a newline.
20917 Calls `org-table-next-row' or `newline', depending on context.
20918 See the individual commands for more information."
20919 (interactive)
20920 (let (org-ts-what)
20921 (cond
20922 ((or (bobp) (org-in-src-block-p))
20923 (if indent (newline-and-indent) (newline)))
20924 ((org-at-table-p)
20925 (org-table-justify-field-maybe)
20926 (call-interactively 'org-table-next-row))
20927 ;; when `newline-and-indent' is called within a list, make sure
20928 ;; text moved stays inside the item.
20929 ((and (org-in-item-p) indent)
20930 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20931 (progn
20932 (save-match-data (newline))
20933 (org-indent-line-to (length (match-string 0))))
20934 (let ((ind (org-get-indentation)))
20935 (newline)
20936 (if (org-looking-back org-list-end-re)
20937 (org-indent-line)
20938 (org-indent-line-to ind)))))
20939 ((and org-return-follows-link
20940 (org-at-timestamp-p t)
20941 (not (eq org-ts-what 'after)))
20942 (org-follow-timestamp-link))
20943 ((and org-return-follows-link
20944 (let ((tprop (get-text-property (point) 'face)))
20945 (or (eq tprop 'org-link)
20946 (and (listp tprop) (memq 'org-link tprop)))))
20947 (call-interactively 'org-open-at-point))
20948 ((and (org-at-heading-p)
20949 (looking-at
20950 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20951 (org-show-entry)
20952 (end-of-line 1)
20953 (newline))
20954 (t (if indent (newline-and-indent) (newline))))))
20956 (defun org-return-indent ()
20957 "Goto next table row or insert a newline and indent.
20958 Calls `org-table-next-row' or `newline-and-indent', depending on
20959 context. See the individual commands for more information."
20960 (interactive)
20961 (org-return t))
20963 (defun org-ctrl-c-star ()
20964 "Compute table, or change heading status of lines.
20965 Calls `org-table-recalculate' or `org-toggle-heading',
20966 depending on context."
20967 (interactive)
20968 (cond
20969 ((org-at-table-p)
20970 (call-interactively 'org-table-recalculate))
20972 ;; Convert all lines in region to list items
20973 (call-interactively 'org-toggle-heading))))
20975 (defun org-ctrl-c-minus ()
20976 "Insert separator line in table or modify bullet status of line.
20977 Also turns a plain line or a region of lines into list items.
20978 Calls `org-table-insert-hline', `org-toggle-item', or
20979 `org-cycle-list-bullet', depending on context."
20980 (interactive)
20981 (cond
20982 ((org-at-table-p)
20983 (call-interactively 'org-table-insert-hline))
20984 ((org-region-active-p)
20985 (call-interactively 'org-toggle-item))
20986 ((org-in-item-p)
20987 (call-interactively 'org-cycle-list-bullet))
20989 (call-interactively 'org-toggle-item))))
20991 (defun org-toggle-item (arg)
20992 "Convert headings or normal lines to items, items to normal lines.
20993 If there is no active region, only the current line is considered.
20995 If the first non blank line in the region is a headline, convert
20996 all headlines to items, shifting text accordingly.
20998 If it is an item, convert all items to normal lines.
21000 If it is normal text, change region into a list of items.
21001 With a prefix argument ARG, change the region in a single item."
21002 (interactive "P")
21003 (let ((shift-text
21004 (function
21005 ;; Shift text in current section to IND, from point to END.
21006 ;; The function leaves point to END line.
21007 (lambda (ind end)
21008 (let ((min-i 1000) (end (copy-marker end)))
21009 ;; First determine the minimum indentation (MIN-I) of
21010 ;; the text.
21011 (save-excursion
21012 (catch 'exit
21013 (while (< (point) end)
21014 (let ((i (org-get-indentation)))
21015 (cond
21016 ;; Skip blank lines and inline tasks.
21017 ((looking-at "^[ \t]*$"))
21018 ((looking-at org-outline-regexp-bol))
21019 ;; We can't find less than 0 indentation.
21020 ((zerop i) (throw 'exit (setq min-i 0)))
21021 ((< i min-i) (setq min-i i))))
21022 (forward-line))))
21023 ;; Then indent each line so that a line indented to
21024 ;; MIN-I becomes indented to IND. Ignore blank lines
21025 ;; and inline tasks in the process.
21026 (let ((delta (- ind min-i)))
21027 (while (< (point) end)
21028 (unless (or (looking-at "^[ \t]*$")
21029 (looking-at org-outline-regexp-bol))
21030 (org-indent-line-to (+ (org-get-indentation) delta)))
21031 (forward-line)))))))
21032 (skip-blanks
21033 (function
21034 ;; Return beginning of first non-blank line, starting from
21035 ;; line at POS.
21036 (lambda (pos)
21037 (save-excursion
21038 (goto-char pos)
21039 (skip-chars-forward " \r\t\n")
21040 (point-at-bol)))))
21041 beg end)
21042 ;; Determine boundaries of changes.
21043 (if (org-region-active-p)
21044 (setq beg (funcall skip-blanks (region-beginning))
21045 end (copy-marker (region-end)))
21046 (setq beg (funcall skip-blanks (point-at-bol))
21047 end (copy-marker (point-at-eol))))
21048 ;; Depending on the starting line, choose an action on the text
21049 ;; between BEG and END.
21050 (org-with-limited-levels
21051 (save-excursion
21052 (goto-char beg)
21053 (cond
21054 ;; Case 1. Start at an item: de-itemize. Note that it only
21055 ;; happens when a region is active: `org-ctrl-c-minus'
21056 ;; would call `org-cycle-list-bullet' otherwise.
21057 ((org-at-item-p)
21058 (while (< (point) end)
21059 (when (org-at-item-p)
21060 (skip-chars-forward " \t")
21061 (delete-region (point) (match-end 0)))
21062 (forward-line)))
21063 ;; Case 2. Start at an heading: convert to items.
21064 ((org-at-heading-p)
21065 (let* ((bul (org-list-bullet-string "-"))
21066 (bul-len (length bul))
21067 (done (org-entry-is-done-p))
21068 (todo (org-entry-is-todo-p))
21069 ;; Indentation of the first heading. It should be
21070 ;; relative to the indentation of its parent, if any.
21071 (start-ind (save-excursion
21072 (cond
21073 ((not org-adapt-indentation) 0)
21074 ((not (outline-previous-heading)) 0)
21075 (t (length (match-string 0))))))
21076 ;; Level of first heading. Further headings will be
21077 ;; compared to it to determine hierarchy in the list.
21078 (ref-level (org-reduced-level (org-outline-level))))
21079 (when (or done todo) (org-todo ""))
21080 (while (< (point) end)
21081 (let* ((level (org-reduced-level (org-outline-level)))
21082 (delta (max 0 (- level ref-level))))
21083 ;; If current headline is less indented than the first
21084 ;; one, set it as reference, in order to preserve
21085 ;; subtrees.
21086 (when (< level ref-level) (setq ref-level level))
21087 (replace-match bul t t)
21088 (org-indent-line-to (+ start-ind (* delta bul-len)))
21089 (when (or done todo)
21090 (let* ((struct (org-list-struct))
21091 (old (copy-tree struct)))
21092 (org-list-set-checkbox (line-beginning-position)
21093 struct
21094 (if done "[X]" "[ ]"))
21095 (org-list-write-struct struct
21096 (org-list-parents-alist struct)
21097 old)))
21098 ;; Ensure all text down to END (or SECTION-END) belongs
21099 ;; to the newly created item.
21100 (let ((section-end (save-excursion
21101 (or (outline-next-heading) (point)))))
21102 (forward-line)
21103 (funcall shift-text
21104 (+ start-ind (* (1+ delta) bul-len))
21105 (min end section-end)))))))
21106 ;; Case 3. Normal line with ARG: make the first line of region
21107 ;; an item, and shift indentation of others lines to
21108 ;; set them as item's body.
21109 (arg (let* ((bul (org-list-bullet-string "-"))
21110 (bul-len (length bul))
21111 (ref-ind (org-get-indentation)))
21112 (skip-chars-forward " \t")
21113 (insert bul)
21114 (forward-line)
21115 (while (< (point) end)
21116 ;; Ensure that lines less indented than first one
21117 ;; still get included in item body.
21118 (funcall shift-text
21119 (+ ref-ind bul-len)
21120 (min end (save-excursion (or (outline-next-heading)
21121 (point)))))
21122 (forward-line))))
21123 ;; Case 4. Normal line without ARG: turn each non-item line
21124 ;; into an item.
21126 (while (< (point) end)
21127 (unless (or (org-at-heading-p) (org-at-item-p))
21128 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21129 (replace-match
21130 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21131 (forward-line))))))))
21133 (defun org-toggle-heading (&optional nstars)
21134 "Convert headings to normal text, or items or text to headings.
21135 If there is no active region, only convert the current line.
21137 With a \\[universal-argument] prefix, convert the whole list at
21138 point into heading.
21140 In a region:
21142 - If the first non blank line is a headline, remove the stars
21143 from all headlines in the region.
21145 - If it is a normal line, turn each and every normal line (i.e.,
21146 not an heading or an item) in the region into headings. If you
21147 want to convert only the first line of this region, use one
21148 universal prefix argument.
21150 - If it is a plain list item, turn all plain list items into headings.
21152 When converting a line into a heading, the number of stars is chosen
21153 such that the lines become children of the current entry. However,
21154 when a numeric prefix argument is given, its value determines the
21155 number of stars to add."
21156 (interactive "P")
21157 (let ((skip-blanks
21158 (function
21159 ;; Return beginning of first non-blank line, starting from
21160 ;; line at POS.
21161 (lambda (pos)
21162 (save-excursion
21163 (goto-char pos)
21164 (while (org-at-comment-p) (forward-line))
21165 (skip-chars-forward " \r\t\n")
21166 (point-at-bol)))))
21167 beg end toggled)
21168 ;; Determine boundaries of changes. If a universal prefix has
21169 ;; been given, put the list in a region. If region ends at a bol,
21170 ;; do not consider the last line to be in the region.
21172 (when (and current-prefix-arg (org-at-item-p))
21173 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21174 (org-mark-element))
21176 (if (org-region-active-p)
21177 (setq beg (funcall skip-blanks (region-beginning))
21178 end (copy-marker (save-excursion
21179 (goto-char (region-end))
21180 (if (bolp) (point) (point-at-eol)))))
21181 (setq beg (funcall skip-blanks (point-at-bol))
21182 end (copy-marker (point-at-eol))))
21183 ;; Ensure inline tasks don't count as headings.
21184 (org-with-limited-levels
21185 (save-excursion
21186 (goto-char beg)
21187 (cond
21188 ;; Case 1. Started at an heading: de-star headings.
21189 ((org-at-heading-p)
21190 (while (< (point) end)
21191 (when (org-at-heading-p t)
21192 (looking-at org-outline-regexp) (replace-match "")
21193 (setq toggled t))
21194 (forward-line)))
21195 ;; Case 2. Started at an item: change items into headlines.
21196 ;; One star will be added by `org-list-to-subtree'.
21197 ((org-at-item-p)
21198 (let* ((stars (make-string
21199 ;; subtract the star that will be added again by
21200 ;; `org-list-to-subtree'
21201 (if (numberp nstars) (1- nstars)
21202 (or (org-current-level) 0))
21203 ?*))
21204 (add-stars
21205 (cond (nstars "") ; stars from prefix only
21206 ((equal stars "") "") ; before first heading
21207 (org-odd-levels-only "*") ; inside heading, odd
21208 (t "")))) ; inside heading, oddeven
21209 (while (< (point) end)
21210 (when (org-at-item-p)
21211 ;; Pay attention to cases when region ends before list.
21212 (let* ((struct (org-list-struct))
21213 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21214 (save-restriction
21215 (narrow-to-region (point) list-end)
21216 (insert
21217 (org-list-to-subtree
21218 (org-list-parse-list t)
21219 '(:istart (concat stars add-stars (funcall get-stars depth))
21220 :icount (concat stars add-stars (funcall get-stars depth)))))))
21221 (setq toggled t))
21222 (forward-line))))
21223 ;; Case 3. Started at normal text: make every line an heading,
21224 ;; skipping headlines and items.
21225 (t (let* ((stars
21226 (make-string
21227 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21228 (add-stars
21229 (cond (nstars "") ; stars from prefix only
21230 ((equal stars "") "*") ; before first heading
21231 (org-odd-levels-only "**") ; inside heading, odd
21232 (t "*"))) ; inside heading, oddeven
21233 (rpl (concat stars add-stars " "))
21234 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21235 (while (< (point) (if (equal nstars '(4)) lend end))
21236 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21237 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21238 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21239 (forward-line)))))))
21240 (unless toggled (message "Cannot toggle heading from here"))))
21242 (defun org-meta-return (&optional arg)
21243 "Insert a new heading or wrap a region in a table.
21244 Calls `org-insert-heading' or `org-table-wrap-region', depending
21245 on context. See the individual commands for more information."
21246 (interactive "P")
21247 (org-check-before-invisible-edit 'insert)
21248 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21249 (let* ((element (org-element-at-point))
21250 (type (org-element-type element)))
21251 (when (eq type 'table-row)
21252 (setq element (org-element-property :parent element))
21253 (setq type 'table))
21254 (if (and (eq type 'table)
21255 (eq (org-element-property :type element) 'org)
21256 (>= (point) (org-element-property :contents-begin element))
21257 (< (point) (org-element-property :contents-end element)))
21258 (call-interactively 'org-table-wrap-region)
21259 (call-interactively 'org-insert-heading)))))
21261 ;;; Menu entries
21263 (defsubst org-in-subtree-not-table-p ()
21264 "Are we in a subtree and not in a table?"
21265 (and (not (org-before-first-heading-p))
21266 (not (org-at-table-p))))
21268 ;; Define the Org-mode menus
21269 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21270 '("Tbl"
21271 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21272 ["Next Field" org-cycle (org-at-table-p)]
21273 ["Previous Field" org-shifttab (org-at-table-p)]
21274 ["Next Row" org-return (org-at-table-p)]
21275 "--"
21276 ["Blank Field" org-table-blank-field (org-at-table-p)]
21277 ["Edit Field" org-table-edit-field (org-at-table-p)]
21278 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21279 "--"
21280 ("Column"
21281 ["Move Column Left" org-metaleft (org-at-table-p)]
21282 ["Move Column Right" org-metaright (org-at-table-p)]
21283 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21284 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21285 ("Row"
21286 ["Move Row Up" org-metaup (org-at-table-p)]
21287 ["Move Row Down" org-metadown (org-at-table-p)]
21288 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21289 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21290 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21291 "--"
21292 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21293 ("Rectangle"
21294 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21295 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21296 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21297 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21298 "--"
21299 ("Calculate"
21300 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21301 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21302 ["Edit Formulas" org-edit-special (org-at-table-p)]
21303 "--"
21304 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21305 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21306 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21307 "--"
21308 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21309 "--"
21310 ["Sum Column/Rectangle" org-table-sum
21311 (or (org-at-table-p) (org-region-active-p))]
21312 ["Which Column?" org-table-current-column (org-at-table-p)])
21313 ["Debug Formulas"
21314 org-table-toggle-formula-debugger
21315 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21316 ["Show Col/Row Numbers"
21317 org-table-toggle-coordinate-overlays
21318 :style toggle
21319 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21320 "--"
21321 ["Create" org-table-create (and (not (org-at-table-p))
21322 org-enable-table-editor)]
21323 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21324 ["Import from File" org-table-import (not (org-at-table-p))]
21325 ["Export to File" org-table-export (org-at-table-p)]
21326 "--"
21327 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21328 "--"
21329 ("Plot"
21330 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21331 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21333 (easy-menu-define org-org-menu org-mode-map "Org menu"
21334 '("Org"
21335 ("Show/Hide"
21336 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21337 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21338 ["Sparse Tree..." org-sparse-tree t]
21339 ["Reveal Context" org-reveal t]
21340 ["Show All" show-all t]
21341 "--"
21342 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21343 "--"
21344 ["New Heading" org-insert-heading t]
21345 ("Navigate Headings"
21346 ["Up" outline-up-heading t]
21347 ["Next" outline-next-visible-heading t]
21348 ["Previous" outline-previous-visible-heading t]
21349 ["Next Same Level" outline-forward-same-level t]
21350 ["Previous Same Level" outline-backward-same-level t]
21351 "--"
21352 ["Jump" org-goto t])
21353 ("Edit Structure"
21354 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21355 "--"
21356 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21357 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21358 "--"
21359 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21360 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21361 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21362 "--"
21363 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21364 "--"
21365 ["Copy visible text" org-copy-visible t]
21366 "--"
21367 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21368 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21369 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21370 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21371 "--"
21372 ["Sort Region/Children" org-sort t]
21373 "--"
21374 ["Convert to odd levels" org-convert-to-odd-levels t]
21375 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21376 ("Editing"
21377 ["Emphasis..." org-emphasize t]
21378 ["Edit Source Example" org-edit-special t]
21379 "--"
21380 ["Footnote new/jump" org-footnote-action t]
21381 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21382 ("Archive"
21383 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21384 "--"
21385 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21386 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21387 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21389 "--"
21390 ("Hyperlinks"
21391 ["Store Link (Global)" org-store-link t]
21392 ["Find existing link to here" org-occur-link-in-agenda-files t]
21393 ["Insert Link" org-insert-link t]
21394 ["Follow Link" org-open-at-point t]
21395 "--"
21396 ["Next link" org-next-link t]
21397 ["Previous link" org-previous-link t]
21398 "--"
21399 ["Descriptive Links"
21400 org-toggle-link-display
21401 :style radio
21402 :selected org-descriptive-links
21404 ["Literal Links"
21405 org-toggle-link-display
21406 :style radio
21407 :selected (not org-descriptive-links)])
21408 "--"
21409 ("TODO Lists"
21410 ["TODO/DONE/-" org-todo t]
21411 ("Select keyword"
21412 ["Next keyword" org-shiftright (org-at-heading-p)]
21413 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21414 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21415 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21416 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21417 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21418 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21419 "--"
21420 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21421 :selected org-enforce-todo-dependencies :style toggle :active t]
21422 "Settings for tree at point"
21423 ["Do Children sequentially" org-toggle-ordered-property :style radio
21424 :selected (org-entry-get nil "ORDERED")
21425 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21426 ["Do Children parallel" org-toggle-ordered-property :style radio
21427 :selected (not (org-entry-get nil "ORDERED"))
21428 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21429 "--"
21430 ["Set Priority" org-priority t]
21431 ["Priority Up" org-shiftup t]
21432 ["Priority Down" org-shiftdown t]
21433 "--"
21434 ["Get news from all feeds" org-feed-update-all t]
21435 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21436 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21437 ("TAGS and Properties"
21438 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21439 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21440 "--"
21441 ["Set property" org-set-property (not (org-before-first-heading-p))]
21442 ["Column view of properties" org-columns t]
21443 ["Insert Column View DBlock" org-insert-columns-dblock t])
21444 ("Dates and Scheduling"
21445 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21446 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21447 ("Change Date"
21448 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21449 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21450 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21451 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21452 ["Compute Time Range" org-evaluate-time-range t]
21453 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21454 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21455 "--"
21456 ["Custom time format" org-toggle-time-stamp-overlays
21457 :style radio :selected org-display-custom-times]
21458 "--"
21459 ["Goto Calendar" org-goto-calendar t]
21460 ["Date from Calendar" org-date-from-calendar t]
21461 "--"
21462 ["Start/Restart Timer" org-timer-start t]
21463 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21464 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21465 ["Insert Timer String" org-timer t]
21466 ["Insert Timer Item" org-timer-item t])
21467 ("Logging work"
21468 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21469 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21470 ["Clock out" org-clock-out t]
21471 ["Clock cancel" org-clock-cancel t]
21472 "--"
21473 ["Mark as default task" org-clock-mark-default-task t]
21474 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21475 ["Goto running clock" org-clock-goto t]
21476 "--"
21477 ["Display times" org-clock-display t]
21478 ["Create clock table" org-clock-report t]
21479 "--"
21480 ["Record DONE time"
21481 (progn (setq org-log-done (not org-log-done))
21482 (message "Switching to %s will %s record a timestamp"
21483 (car org-done-keywords)
21484 (if org-log-done "automatically" "not")))
21485 :style toggle :selected org-log-done])
21486 "--"
21487 ["Agenda Command..." org-agenda t]
21488 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21489 ("File List for Agenda")
21490 ("Special views current file"
21491 ["TODO Tree" org-show-todo-tree t]
21492 ["Check Deadlines" org-check-deadlines t]
21493 ["Timeline" org-timeline t]
21494 ["Tags/Property tree" org-match-sparse-tree t])
21495 "--"
21496 ["Export/Publish..." org-export-dispatch t]
21497 ("LaTeX"
21498 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21499 :selected org-cdlatex-mode]
21500 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21501 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21502 ["Modify math symbol" org-cdlatex-math-modify
21503 (org-inside-LaTeX-fragment-p)]
21504 ["Insert citation" org-reftex-citation t]
21505 "--"
21506 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21507 "--"
21508 ("MobileOrg"
21509 ["Push Files and Views" org-mobile-push t]
21510 ["Get Captured and Flagged" org-mobile-pull t]
21511 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21512 "--"
21513 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21514 "--"
21515 ("Documentation"
21516 ["Show Version" org-version t]
21517 ["Info Documentation" org-info t])
21518 ("Customize"
21519 ["Browse Org Group" org-customize t]
21520 "--"
21521 ["Expand This Menu" org-create-customize-menu
21522 (fboundp 'customize-menu-create)])
21523 ["Send bug report" org-submit-bug-report t]
21524 "--"
21525 ("Refresh/Reload"
21526 ["Refresh setup current buffer" org-mode-restart t]
21527 ["Reload Org (after update)" org-reload t]
21528 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21531 (defun org-info (&optional node)
21532 "Read documentation for Org-mode in the info system.
21533 With optional NODE, go directly to that node."
21534 (interactive)
21535 (info (format "(org)%s" (or node ""))))
21537 ;;;###autoload
21538 (defun org-submit-bug-report ()
21539 "Submit a bug report on Org-mode via mail.
21541 Don't hesitate to report any problems or inaccurate documentation.
21543 If you don't have setup sending mail from (X)Emacs, please copy the
21544 output buffer into your mail program, as it gives us important
21545 information about your Org-mode version and configuration."
21546 (interactive)
21547 (require 'reporter)
21548 (org-load-modules-maybe)
21549 (org-require-autoloaded-modules)
21550 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21551 (reporter-submit-bug-report
21552 "emacs-orgmode@gnu.org"
21553 (org-version nil 'full)
21554 (let (list)
21555 (save-window-excursion
21556 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21557 (delete-other-windows)
21558 (erase-buffer)
21559 (insert "You are about to submit a bug report to the Org-mode mailing list.
21561 We would like to add your full Org-mode and Outline configuration to the
21562 bug report. This greatly simplifies the work of the maintainer and
21563 other experts on the mailing list.
21565 HOWEVER, some variables you have customized may contain private
21566 information. The names of customers, colleagues, or friends, might
21567 appear in the form of file names, tags, todo states, or search strings.
21568 If you answer yes to the prompt, you might want to check and remove
21569 such private information before sending the email.")
21570 (add-text-properties (point-min) (point-max) '(face org-warning))
21571 (when (yes-or-no-p "Include your Org-mode configuration ")
21572 (mapatoms
21573 (lambda (v)
21574 (and (boundp v)
21575 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21576 (or (and (symbol-value v)
21577 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21578 (and
21579 (get v 'custom-type) (get v 'standard-value)
21580 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21581 (push v list)))))
21582 (kill-buffer (get-buffer "*Warn about privacy*"))
21583 list))
21584 nil nil
21585 "Remember to cover the basics, that is, what you expected to happen and
21586 what in fact did happen. You don't know how to make a good report? See
21588 http://orgmode.org/manual/Feedback.html#Feedback
21590 Your bug report will be posted to the Org-mode mailing list.
21591 ------------------------------------------------------------------------")
21592 (save-excursion
21593 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21594 (replace-match "\\1Bug: \\3 [\\2]")))))
21597 (defun org-install-agenda-files-menu ()
21598 (let ((bl (buffer-list)))
21599 (save-excursion
21600 (while bl
21601 (set-buffer (pop bl))
21602 (if (derived-mode-p 'org-mode) (setq bl nil)))
21603 (when (derived-mode-p 'org-mode)
21604 (easy-menu-change
21605 '("Org") "File List for Agenda"
21606 (append
21607 (list
21608 ["Edit File List" (org-edit-agenda-file-list) t]
21609 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21610 ["Remove Current File from List" org-remove-file t]
21611 ["Cycle through agenda files" org-cycle-agenda-files t]
21612 ["Occur in all agenda files" org-occur-in-agenda-files t]
21613 "--")
21614 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21616 ;;;; Documentation
21618 (defun org-require-autoloaded-modules ()
21619 (interactive)
21620 (mapc 'require
21621 '(org-agenda org-archive org-attach org-clock org-colview org-id
21622 org-table org-timer)))
21624 ;;;###autoload
21625 (defun org-reload (&optional uncompiled)
21626 "Reload all org lisp files.
21627 With prefix arg UNCOMPILED, load the uncompiled versions."
21628 (interactive "P")
21629 (require 'loadhist)
21630 (let* ((org-dir (org-find-library-dir "org"))
21631 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21632 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21633 (remove-re (mapconcat 'identity
21634 (mapcar (lambda (f) (concat "^" f "$"))
21635 (list (if (featurep 'xemacs)
21636 "org-colview"
21637 "org-colview-xemacs")
21638 "org" "org-loaddefs" "org-version"))
21639 "\\|"))
21640 (feats (delete-dups
21641 (mapcar 'file-name-sans-extension
21642 (mapcar 'file-name-nondirectory
21643 (delq nil
21644 (mapcar 'feature-file
21645 features))))))
21646 (lfeat (append
21647 (sort
21648 (setq feats
21649 (delq nil (mapcar
21650 (lambda (f)
21651 (if (and (string-match feature-re f)
21652 (not (string-match remove-re f)))
21653 f nil))
21654 feats)))
21655 'string-lessp)
21656 (list "org-version" "org")))
21657 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21658 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21659 load-uncore load-misses)
21660 (setq load-misses
21661 (delq 't
21662 (mapcar (lambda (f)
21663 (or (org-load-noerror-mustsuffix (concat org-dir f))
21664 (and (string= org-dir contrib-dir)
21665 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21666 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21667 (add-to-list 'load-uncore f 'append)
21670 lfeat)))
21671 (if load-uncore
21672 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21673 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21674 (if load-misses
21675 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21676 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21677 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21679 ;;;###autoload
21680 (defun org-customize ()
21681 "Call the customize function with org as argument."
21682 (interactive)
21683 (org-load-modules-maybe)
21684 (org-require-autoloaded-modules)
21685 (customize-browse 'org))
21687 (defun org-create-customize-menu ()
21688 "Create a full customization menu for Org-mode, insert it into the menu."
21689 (interactive)
21690 (org-load-modules-maybe)
21691 (org-require-autoloaded-modules)
21692 (if (fboundp 'customize-menu-create)
21693 (progn
21694 (easy-menu-change
21695 '("Org") "Customize"
21696 `(["Browse Org group" org-customize t]
21697 "--"
21698 ,(customize-menu-create 'org)
21699 ["Set" Custom-set t]
21700 ["Save" Custom-save t]
21701 ["Reset to Current" Custom-reset-current t]
21702 ["Reset to Saved" Custom-reset-saved t]
21703 ["Reset to Standard Settings" Custom-reset-standard t]))
21704 (message "\"Org\"-menu now contains full customization menu"))
21705 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21707 ;;;; Miscellaneous stuff
21709 ;;; Generally useful functions
21711 (defsubst org-get-at-eol (property n)
21712 "Get text property PROPERTY at the end of line less N characters."
21713 (get-text-property (- (point-at-eol) n) property))
21715 (defun org-find-text-property-in-string (prop s)
21716 "Return the first non-nil value of property PROP in string S."
21717 (or (get-text-property 0 prop s)
21718 (get-text-property (or (next-single-property-change 0 prop s) 0)
21719 prop s)))
21721 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21722 "Display the given MESSAGE as a warning."
21723 (if (fboundp 'display-warning)
21724 (display-warning 'org message
21725 (if (featurep 'xemacs) 'warning :warning))
21726 (let ((buf (get-buffer-create "*Org warnings*")))
21727 (with-current-buffer buf
21728 (goto-char (point-max))
21729 (insert "Warning (Org): " message)
21730 (unless (bolp)
21731 (newline)))
21732 (display-buffer buf)
21733 (sit-for 0))))
21735 (defun org-eval (form)
21736 "Eval FORM and return result."
21737 (condition-case error
21738 (eval form)
21739 (error (format "%%![Error: %s]" error))))
21741 (defun org-in-clocktable-p ()
21742 "Check if the cursor is in a clocktable."
21743 (let ((pos (point)) start)
21744 (save-excursion
21745 (end-of-line 1)
21746 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21747 (setq start (match-beginning 0))
21748 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21749 (>= (match-end 0) pos)
21750 start))))
21752 (defun org-in-verbatim-emphasis ()
21753 (save-match-data
21754 (and (org-in-regexp org-emph-re 2)
21755 (>= (point) (match-beginning 3))
21756 (<= (point) (match-end 4))
21757 (member (match-string 3) '("=" "~")))))
21759 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21760 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21761 (if (and marker (marker-buffer marker)
21762 (buffer-live-p (marker-buffer marker)))
21763 (progn
21764 (org-pop-to-buffer-same-window (marker-buffer marker))
21765 (if (or (> marker (point-max)) (< marker (point-min)))
21766 (widen))
21767 (goto-char marker)
21768 (org-show-context 'org-goto))
21769 (if bookmark
21770 (bookmark-jump bookmark)
21771 (error "Cannot find location"))))
21773 (defun org-quote-csv-field (s)
21774 "Quote field for inclusion in CSV material."
21775 (if (string-match "[\",]" s)
21776 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21779 (defun org-force-self-insert (N)
21780 "Needed to enforce self-insert under remapping."
21781 (interactive "p")
21782 (self-insert-command N))
21784 (defun org-string-width (s)
21785 "Compute width of string, ignoring invisible characters.
21786 This ignores character with invisibility property `org-link', and also
21787 characters with property `org-cwidth', because these will become invisible
21788 upon the next fontification round."
21789 (let (b l)
21790 (when (or (eq t buffer-invisibility-spec)
21791 (assq 'org-link buffer-invisibility-spec))
21792 (while (setq b (text-property-any 0 (length s)
21793 'invisible 'org-link s))
21794 (setq s (concat (substring s 0 b)
21795 (substring s (or (next-single-property-change
21796 b 'invisible s) (length s)))))))
21797 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21798 (setq s (concat (substring s 0 b)
21799 (substring s (or (next-single-property-change
21800 b 'org-cwidth s) (length s))))))
21801 (setq l (string-width s) b -1)
21802 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21803 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21806 (defun org-shorten-string (s maxlength)
21807 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21808 If the string is shorter or has length MAXLENGTH, just return the
21809 original string. If it is longer, the functions finds a space in the
21810 string, breaks this string off at that locations and adds three dots
21811 as ellipsis. Including the ellipsis, the string will not be longer
21812 than MAXLENGTH. If finding a good breaking point in the string does
21813 not work, the string is just chopped off in the middle of a word
21814 if necessary."
21815 (if (<= (length s) maxlength)
21817 (let* ((n (max (- maxlength 4) 1))
21818 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21819 (if (string-match re s)
21820 (concat (match-string 1 s) "...")
21821 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21823 (defun org-get-indentation (&optional line)
21824 "Get the indentation of the current line, interpreting tabs.
21825 When LINE is given, assume it represents a line and compute its indentation."
21826 (if line
21827 (if (string-match "^ *" (org-remove-tabs line))
21828 (match-end 0))
21829 (save-excursion
21830 (beginning-of-line 1)
21831 (skip-chars-forward " \t")
21832 (current-column))))
21834 (defun org-get-string-indentation (s)
21835 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21836 (let ((n -1) (i 0) (w tab-width) c)
21837 (catch 'exit
21838 (while (< (setq n (1+ n)) (length s))
21839 (setq c (aref s n))
21840 (cond ((= c ?\ ) (setq i (1+ i)))
21841 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21842 (t (throw 'exit t)))))
21845 (defun org-remove-tabs (s &optional width)
21846 "Replace tabulators in S with spaces.
21847 Assumes that s is a single line, starting in column 0."
21848 (setq width (or width tab-width))
21849 (while (string-match "\t" s)
21850 (setq s (replace-match
21851 (make-string
21852 (- (* width (/ (+ (match-beginning 0) width) width))
21853 (match-beginning 0)) ?\ )
21854 t t s)))
21857 (defun org-fix-indentation (line ind)
21858 "Fix indentation in LINE.
21859 IND is a cons cell with target and minimum indentation.
21860 If the current indentation in LINE is smaller than the minimum,
21861 leave it alone. If it is larger than ind, set it to the target."
21862 (let* ((l (org-remove-tabs line))
21863 (i (org-get-indentation l))
21864 (i1 (car ind)) (i2 (cdr ind)))
21865 (if (>= i i2) (setq l (substring line i2)))
21866 (if (> i1 0)
21867 (concat (make-string i1 ?\ ) l)
21868 l)))
21870 (defun org-remove-indentation (code &optional n)
21871 "Remove the maximum common indentation from the lines in CODE.
21872 N may optionally be the number of spaces to remove."
21873 (with-temp-buffer
21874 (insert code)
21875 (org-do-remove-indentation n)
21876 (buffer-string)))
21878 (defun org-do-remove-indentation (&optional n)
21879 "Remove the maximum common indentation from the buffer."
21880 (untabify (point-min) (point-max))
21881 (let ((min 10000) re)
21882 (if n
21883 (setq min n)
21884 (goto-char (point-min))
21885 (while (re-search-forward "^ *[^ \n]" nil t)
21886 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21887 (unless (or (= min 0) (= min 10000))
21888 (setq re (format "^ \\{%d\\}" min))
21889 (goto-char (point-min))
21890 (while (re-search-forward re nil t)
21891 (replace-match "")
21892 (end-of-line 1))
21893 min)))
21895 (defun org-fill-template (template alist)
21896 "Find each %key of ALIST in TEMPLATE and replace it."
21897 (let ((case-fold-search nil)
21898 entry key value)
21899 (setq alist (sort (copy-sequence alist)
21900 (lambda (a b) (< (length (car a)) (length (car b))))))
21901 (while (setq entry (pop alist))
21902 (setq template
21903 (replace-regexp-in-string
21904 (concat "%" (regexp-quote (car entry)))
21905 (or (cdr entry) "") template t t)))
21906 template))
21908 (defun org-base-buffer (buffer)
21909 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21910 (if (not buffer)
21911 buffer
21912 (or (buffer-base-buffer buffer)
21913 buffer)))
21915 (defun org-wrap (string &optional width lines)
21916 "Wrap string to either a number of lines, or a width in characters.
21917 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21918 that costs. If there is a word longer than WIDTH, the text is actually
21919 wrapped to the length of that word.
21920 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21921 many lines, whatever width that takes.
21922 The return value is a list of lines, without newlines at the end."
21923 (let* ((words (org-split-string string "[ \t\n]+"))
21924 (maxword (apply 'max (mapcar 'org-string-width words)))
21925 w ll)
21926 (cond (width
21927 (org-do-wrap words (max maxword width)))
21928 (lines
21929 (setq w maxword)
21930 (setq ll (org-do-wrap words maxword))
21931 (if (<= (length ll) lines)
21933 (setq ll words)
21934 (while (> (length ll) lines)
21935 (setq w (1+ w))
21936 (setq ll (org-do-wrap words w)))
21937 ll))
21938 (t (error "Cannot wrap this")))))
21940 (defun org-do-wrap (words width)
21941 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21942 (let (lines line)
21943 (while words
21944 (setq line (pop words))
21945 (while (and words (< (+ (length line) (length (car words))) width))
21946 (setq line (concat line " " (pop words))))
21947 (setq lines (push line lines)))
21948 (nreverse lines)))
21950 (defun org-split-string (string &optional separators)
21951 "Splits STRING into substrings at SEPARATORS.
21952 No empty strings are returned if there are matches at the beginning
21953 and end of string."
21954 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21955 (start 0)
21956 notfirst
21957 (list nil))
21958 (while (and (string-match rexp string
21959 (if (and notfirst
21960 (= start (match-beginning 0))
21961 (< start (length string)))
21962 (1+ start) start))
21963 (< (match-beginning 0) (length string)))
21964 (setq notfirst t)
21965 (or (eq (match-beginning 0) 0)
21966 (and (eq (match-beginning 0) (match-end 0))
21967 (eq (match-beginning 0) start))
21968 (setq list
21969 (cons (substring string start (match-beginning 0))
21970 list)))
21971 (setq start (match-end 0)))
21972 (or (eq start (length string))
21973 (setq list
21974 (cons (substring string start)
21975 list)))
21976 (nreverse list)))
21978 (defun org-quote-vert (s)
21979 "Replace \"|\" with \"\\vert\"."
21980 (while (string-match "|" s)
21981 (setq s (replace-match "\\vert" t t s)))
21984 (defun org-uuidgen-p (s)
21985 "Is S an ID created by UUIDGEN?"
21986 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21988 (defun org-in-src-block-p (&optional inside)
21989 "Whether point is in a code source block.
21990 When INSIDE is non-nil, don't consider we are within a src block
21991 when point is at #+BEGIN_SRC or #+END_SRC."
21992 (let ((case-fold-search t) ov)
21993 (or (and (eq (get-char-property (point) 'src-block) t))
21994 (and (not inside)
21995 (save-match-data
21996 (save-excursion
21997 (beginning-of-line)
21998 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22000 (defun org-context ()
22001 "Return a list of contexts of the current cursor position.
22002 If several contexts apply, all are returned.
22003 Each context entry is a list with a symbol naming the context, and
22004 two positions indicating start and end of the context. Possible
22005 contexts are:
22007 :headline anywhere in a headline
22008 :headline-stars on the leading stars in a headline
22009 :todo-keyword on a TODO keyword (including DONE) in a headline
22010 :tags on the TAGS in a headline
22011 :priority on the priority cookie in a headline
22012 :item on the first line of a plain list item
22013 :item-bullet on the bullet/number of a plain list item
22014 :checkbox on the checkbox in a plain list item
22015 :table in an org-mode table
22016 :table-special on a special filed in a table
22017 :table-table in a table.el table
22018 :clocktable in a clocktable
22019 :src-block in a source block
22020 :link on a hyperlink
22021 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22022 :target on a <<target>>
22023 :radio-target on a <<<radio-target>>>
22024 :latex-fragment on a LaTeX fragment
22025 :latex-preview on a LaTeX fragment with overlaid preview image
22027 This function expects the position to be visible because it uses font-lock
22028 faces as a help to recognize the following contexts: :table-special, :link,
22029 and :keyword."
22030 (let* ((f (get-text-property (point) 'face))
22031 (faces (if (listp f) f (list f)))
22032 (case-fold-search t)
22033 (p (point)) clist o)
22034 ;; First the large context
22035 (cond
22036 ((org-at-heading-p t)
22037 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22038 (when (progn
22039 (beginning-of-line 1)
22040 (looking-at org-todo-line-tags-regexp))
22041 (push (org-point-in-group p 1 :headline-stars) clist)
22042 (push (org-point-in-group p 2 :todo-keyword) clist)
22043 (push (org-point-in-group p 4 :tags) clist))
22044 (goto-char p)
22045 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22046 (if (looking-at "\\[#[A-Z0-9]\\]")
22047 (push (org-point-in-group p 0 :priority) clist)))
22049 ((org-at-item-p)
22050 (push (org-point-in-group p 2 :item-bullet) clist)
22051 (push (list :item (point-at-bol)
22052 (save-excursion (org-end-of-item) (point)))
22053 clist)
22054 (and (org-at-item-checkbox-p)
22055 (push (org-point-in-group p 0 :checkbox) clist)))
22057 ((org-at-table-p)
22058 (push (list :table (org-table-begin) (org-table-end)) clist)
22059 (if (memq 'org-formula faces)
22060 (push (list :table-special
22061 (previous-single-property-change p 'face)
22062 (next-single-property-change p 'face)) clist)))
22063 ((org-at-table-p 'any)
22064 (push (list :table-table) clist)))
22065 (goto-char p)
22067 (let ((case-fold-search t))
22068 ;; New the "medium" contexts: clocktables, source blocks
22069 (cond ((org-in-clocktable-p)
22070 (push (list :clocktable
22071 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22072 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22073 (match-beginning 1))
22074 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22075 (match-end 0))) clist))
22076 ((org-in-src-block-p)
22077 (push (list :src-block
22078 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22079 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22080 (match-beginning 1))
22081 (and (search-forward "#+END_SRC" nil t)
22082 (match-beginning 0))) clist))))
22083 (goto-char p)
22085 ;; Now the small context
22086 (cond
22087 ((org-at-timestamp-p)
22088 (push (org-point-in-group p 0 :timestamp) clist))
22089 ((memq 'org-link faces)
22090 (push (list :link
22091 (previous-single-property-change p 'face)
22092 (next-single-property-change p 'face)) clist))
22093 ((memq 'org-special-keyword faces)
22094 (push (list :keyword
22095 (previous-single-property-change p 'face)
22096 (next-single-property-change p 'face)) clist))
22097 ((org-at-target-p)
22098 (push (org-point-in-group p 0 :target) clist)
22099 (goto-char (1- (match-beginning 0)))
22100 (if (looking-at org-radio-target-regexp)
22101 (push (org-point-in-group p 0 :radio-target) clist))
22102 (goto-char p))
22103 ((setq o (car (delq nil
22104 (mapcar
22105 (lambda (x)
22106 (if (memq x org-latex-fragment-image-overlays) x))
22107 (overlays-at (point))))))
22108 (push (list :latex-fragment
22109 (overlay-start o) (overlay-end o)) clist)
22110 (push (list :latex-preview
22111 (overlay-start o) (overlay-end o)) clist))
22112 ((org-inside-LaTeX-fragment-p)
22113 ;; FIXME: positions wrong.
22114 (push (list :latex-fragment (point) (point)) clist)))
22116 (setq clist (nreverse (delq nil clist)))
22117 clist))
22119 ;; FIXME: Compare with at-regexp-p Do we need both?
22120 (defun org-in-regexp (re &optional nlines visually)
22121 "Check if point is inside a match of regexp.
22122 Normally only the current line is checked, but you can include NLINES extra
22123 lines both before and after point into the search.
22124 If VISUALLY is set, require that the cursor is not after the match but
22125 really on, so that the block visually is on the match."
22126 (catch 'exit
22127 (let ((pos (point))
22128 (eol (point-at-eol (+ 1 (or nlines 0))))
22129 (inc (if visually 1 0)))
22130 (save-excursion
22131 (beginning-of-line (- 1 (or nlines 0)))
22132 (while (re-search-forward re eol t)
22133 (if (and (<= (match-beginning 0) pos)
22134 (>= (+ inc (match-end 0)) pos))
22135 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22137 (defun org-at-regexp-p (regexp)
22138 "Is point inside a match of REGEXP in the current line?"
22139 (catch 'exit
22140 (save-excursion
22141 (let ((pos (point)) (end (point-at-eol)))
22142 (beginning-of-line 1)
22143 (while (re-search-forward regexp end t)
22144 (if (and (<= (match-beginning 0) pos)
22145 (>= (match-end 0) pos))
22146 (throw 'exit t)))
22147 nil))))
22149 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22150 "Non-nil when point is between matches of START-RE and END-RE.
22152 Also return a non-nil value when point is on one of the matches.
22154 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22155 buffer positions. Default values are the positions of headlines
22156 surrounding the point.
22158 The functions returns a cons cell whose car (resp. cdr) is the
22159 position before START-RE (resp. after END-RE)."
22160 (save-match-data
22161 (let ((pos (point))
22162 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22163 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22164 beg end)
22165 (save-excursion
22166 ;; Point is on a block when on START-RE or if START-RE can be
22167 ;; found before it...
22168 (and (or (org-at-regexp-p start-re)
22169 (re-search-backward start-re limit-up t))
22170 (setq beg (match-beginning 0))
22171 ;; ... and END-RE after it...
22172 (goto-char (match-end 0))
22173 (re-search-forward end-re limit-down t)
22174 (> (setq end (match-end 0)) pos)
22175 ;; ... without another START-RE in-between.
22176 (goto-char (match-beginning 0))
22177 (not (re-search-backward start-re (1+ beg) t))
22178 ;; Return value.
22179 (cons beg end))))))
22181 (defun org-in-block-p (names)
22182 "Non-nil when point belongs to a block whose name belongs to NAMES.
22184 NAMES is a list of strings containing names of blocks.
22186 Return first block name matched, or nil. Beware that in case of
22187 nested blocks, the returned name may not belong to the closest
22188 block from point."
22189 (save-match-data
22190 (catch 'exit
22191 (let ((case-fold-search t)
22192 (lim-up (save-excursion (outline-previous-heading)))
22193 (lim-down (save-excursion (outline-next-heading))))
22194 (mapc (lambda (name)
22195 (let ((n (regexp-quote name)))
22196 (when (org-between-regexps-p
22197 (concat "^[ \t]*#\\+begin_" n)
22198 (concat "^[ \t]*#\\+end_" n)
22199 lim-up lim-down)
22200 (throw 'exit n))))
22201 names))
22202 nil)))
22204 (defun org-in-drawer-p ()
22205 "Non-nil if point is within a drawer.
22206 If point is within a drawer, return it, as parsed data."
22207 (let ((element (save-match-data (org-element-at-point))))
22208 (while (and element (not (memq (org-element-type element)
22209 '(drawer property-drawer))))
22210 (setq element (org-element-property :parent element)))
22211 element))
22213 (defun org-occur-in-agenda-files (regexp &optional nlines)
22214 "Call `multi-occur' with buffers for all agenda files."
22215 (interactive "sOrg-files matching: \np")
22216 (let* ((files (org-agenda-files))
22217 (tnames (mapcar 'file-truename files))
22218 (extra org-agenda-text-search-extra-files)
22220 (when (eq (car extra) 'agenda-archives)
22221 (setq extra (cdr extra))
22222 (setq files (org-add-archive-files files)))
22223 (while (setq f (pop extra))
22224 (unless (member (file-truename f) tnames)
22225 (add-to-list 'files f 'append)
22226 (add-to-list 'tnames (file-truename f) 'append)))
22227 (multi-occur
22228 (mapcar (lambda (x)
22229 (with-current-buffer
22230 (or (get-file-buffer x) (find-file-noselect x))
22231 (widen)
22232 (current-buffer)))
22233 files)
22234 regexp)))
22236 (if (boundp 'occur-mode-find-occurrence-hook)
22237 ;; Emacs 23
22238 (add-hook 'occur-mode-find-occurrence-hook
22239 (lambda ()
22240 (when (derived-mode-p 'org-mode)
22241 (org-reveal))))
22242 ;; Emacs 22
22243 (defadvice occur-mode-goto-occurrence
22244 (after org-occur-reveal activate)
22245 (and (derived-mode-p 'org-mode) (org-reveal)))
22246 (defadvice occur-mode-goto-occurrence-other-window
22247 (after org-occur-reveal activate)
22248 (and (derived-mode-p 'org-mode) (org-reveal)))
22249 (defadvice occur-mode-display-occurrence
22250 (after org-occur-reveal activate)
22251 (when (derived-mode-p 'org-mode)
22252 (let ((pos (occur-mode-find-occurrence)))
22253 (with-current-buffer (marker-buffer pos)
22254 (save-excursion
22255 (goto-char pos)
22256 (org-reveal)))))))
22258 (defun org-occur-link-in-agenda-files ()
22259 "Create a link and search for it in the agendas.
22260 The link is not stored in `org-stored-links', it is just created
22261 for the search purpose."
22262 (interactive)
22263 (let ((link (condition-case nil
22264 (org-store-link nil)
22265 (error "Unable to create a link to here"))))
22266 (org-occur-in-agenda-files (regexp-quote link))))
22268 (defun org-reverse-string (string)
22269 "Return the reverse of STRING."
22270 (apply 'string (reverse (string-to-list string))))
22272 ;; defsubst org-uniquify must be defined before first use
22274 (defun org-uniquify-alist (alist)
22275 "Merge elements of ALIST with the same key.
22277 For example, in this alist:
22279 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22280 => '((a 1 3) (b 2))
22282 merge (a 1) and (a 3) into (a 1 3).
22284 The function returns the new ALIST."
22285 (let (rtn)
22286 (mapc
22287 (lambda (e)
22288 (let (n)
22289 (if (not (assoc (car e) rtn))
22290 (push e rtn)
22291 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22292 (setq rtn (assq-delete-all (car e) rtn))
22293 (push n rtn))))
22294 alist)
22295 rtn))
22297 (defun org-delete-all (elts list)
22298 "Remove all elements in ELTS from LIST."
22299 (while elts
22300 (setq list (delete (pop elts) list)))
22301 list)
22303 (defun org-count (cl-item cl-seq)
22304 "Count the number of occurrences of ITEM in SEQ.
22305 Taken from `count' in cl-seq.el with all keyword arguments removed."
22306 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22307 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22308 (while (< cl-start cl-end)
22309 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22310 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22311 (setq cl-start (1+ cl-start)))
22312 cl-count))
22314 (defun org-remove-if (predicate seq)
22315 "Remove everything from SEQ that fulfills PREDICATE."
22316 (let (res e)
22317 (while seq
22318 (setq e (pop seq))
22319 (if (not (funcall predicate e)) (push e res)))
22320 (nreverse res)))
22322 (defun org-remove-if-not (predicate seq)
22323 "Remove everything from SEQ that does not fulfill PREDICATE."
22324 (let (res e)
22325 (while seq
22326 (setq e (pop seq))
22327 (if (funcall predicate e) (push e res)))
22328 (nreverse res)))
22330 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22331 "Reduce two-argument FUNCTION across SEQ.
22332 Taken from `reduce' in cl-seq.el with all keyword arguments but
22333 \":initial-value\" removed."
22334 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22335 (cadr (memq :initial-value cl-keys)))
22336 (cl-seq (pop cl-seq))
22337 (t (funcall cl-func)))))
22338 (while cl-seq
22339 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22340 cl-accum))
22342 (defun org-every (pred seq)
22343 "Return true if PREDICATE is true of every element of SEQ.
22344 Adapted from `every' in cl.el."
22345 (catch 'org-every
22346 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22349 (defun org-some (pred seq)
22350 "Return true if PREDICATE is true of any element of SEQ.
22351 Adapted from `some' in cl.el."
22352 (catch 'org-some
22353 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22354 nil))
22356 (defun org-back-over-empty-lines ()
22357 "Move backwards over whitespace, to the beginning of the first empty line.
22358 Returns the number of empty lines passed."
22359 (let ((pos (point)))
22360 (if (cdr (assoc 'heading org-blank-before-new-entry))
22361 (skip-chars-backward " \t\n\r")
22362 (unless (eobp)
22363 (forward-line -1)))
22364 (beginning-of-line 2)
22365 (goto-char (min (point) pos))
22366 (count-lines (point) pos)))
22368 (defun org-skip-whitespace ()
22369 (skip-chars-forward " \t\n\r"))
22371 (defun org-point-in-group (point group &optional context)
22372 "Check if POINT is in match-group GROUP.
22373 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22374 match. If the match group does not exist or point is not inside it,
22375 return nil."
22376 (and (match-beginning group)
22377 (>= point (match-beginning group))
22378 (<= point (match-end group))
22379 (if context
22380 (list context (match-beginning group) (match-end group))
22381 t)))
22383 (defun org-switch-to-buffer-other-window (&rest args)
22384 "Switch to buffer in a second window on the current frame.
22385 In particular, do not allow pop-up frames.
22386 Returns the newly created buffer."
22387 (org-no-popups
22388 (apply 'switch-to-buffer-other-window args)))
22390 (defun org-combine-plists (&rest plists)
22391 "Create a single property list from all plists in PLISTS.
22392 The process starts by copying the first list, and then setting properties
22393 from the other lists. Settings in the last list are the most significant
22394 ones and overrule settings in the other lists."
22395 (let ((rtn (copy-sequence (pop plists)))
22396 p v ls)
22397 (while plists
22398 (setq ls (pop plists))
22399 (while ls
22400 (setq p (pop ls) v (pop ls))
22401 (setq rtn (plist-put rtn p v))))
22402 rtn))
22404 (defun org-replace-escapes (string table)
22405 "Replace %-escapes in STRING with values in TABLE.
22406 TABLE is an association list with keys like \"%a\" and string values.
22407 The sequences in STRING may contain normal field width and padding information,
22408 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22409 so values can contain further %-escapes if they are define later in TABLE."
22410 (let ((tbl (copy-alist table))
22411 (case-fold-search nil)
22412 (pchg 0)
22413 e re rpl)
22414 (while (setq e (pop tbl))
22415 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22416 (when (and (cdr e) (string-match re (cdr e)))
22417 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22418 (safe "SREF"))
22419 (add-text-properties 0 3 (list 'sref sref) safe)
22420 (setcdr e (replace-match safe t t (cdr e)))))
22421 (while (string-match re string)
22422 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22423 (cdr e)))
22424 (setq string (replace-match rpl t t string))))
22425 (while (setq pchg (next-property-change pchg string))
22426 (let ((sref (get-text-property pchg 'sref string)))
22427 (when (and sref (string-match "SREF" string pchg))
22428 (setq string (replace-match sref t t string)))))
22429 string))
22431 (defun org-sublist (list start end)
22432 "Return a section of LIST, from START to END.
22433 Counting starts at 1."
22434 (let (rtn (c start))
22435 (setq list (nthcdr (1- start) list))
22436 (while (and list (<= c end))
22437 (push (pop list) rtn)
22438 (setq c (1+ c)))
22439 (nreverse rtn)))
22441 (defun org-find-base-buffer-visiting (file)
22442 "Like `find-buffer-visiting' but always return the base buffer and
22443 not an indirect buffer."
22444 (let ((buf (or (get-file-buffer file)
22445 (find-buffer-visiting file))))
22446 (if buf
22447 (or (buffer-base-buffer buf) buf)
22448 nil)))
22450 (defun org-image-file-name-regexp (&optional extensions)
22451 "Return regexp matching the file names of images.
22452 If EXTENSIONS is given, only match these."
22453 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22454 (image-file-name-regexp)
22455 (let ((image-file-name-extensions
22456 (or extensions
22457 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22458 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22459 (concat "\\."
22460 (regexp-opt (nconc (mapcar 'upcase
22461 image-file-name-extensions)
22462 image-file-name-extensions)
22464 "\\'"))))
22466 (defun org-file-image-p (file &optional extensions)
22467 "Return non-nil if FILE is an image."
22468 (save-match-data
22469 (string-match (org-image-file-name-regexp extensions) file)))
22471 (defun org-get-cursor-date (&optional with-time)
22472 "Return the date at cursor in as a time.
22473 This works in the calendar and in the agenda, anywhere else it just
22474 returns the current time.
22475 If WITH-TIME is non-nil, returns the time of the event at point (in
22476 the agenda) or the current time of the day."
22477 (let (date day defd tp tm hod mod)
22478 (when with-time
22479 (setq tp (get-text-property (point) 'time))
22480 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22481 (setq hod (string-to-number (match-string 1 tp))
22482 mod (string-to-number (match-string 2 tp))))
22483 (or tp (setq hod (nth 2 (decode-time (current-time)))
22484 mod (nth 1 (decode-time (current-time))))))
22485 (cond
22486 ((eq major-mode 'calendar-mode)
22487 (setq date (calendar-cursor-to-date)
22488 defd (encode-time 0 (or mod 0) (or hod 0)
22489 (nth 1 date) (nth 0 date) (nth 2 date))))
22490 ((eq major-mode 'org-agenda-mode)
22491 (setq day (get-text-property (point) 'day))
22492 (if day
22493 (setq date (calendar-gregorian-from-absolute day)
22494 defd (encode-time 0 (or mod 0) (or hod 0)
22495 (nth 1 date) (nth 0 date) (nth 2 date))))))
22496 (or defd (current-time))))
22498 (defun org-mark-subtree (&optional up)
22499 "Mark the current subtree.
22500 This puts point at the start of the current subtree, and mark at
22501 the end. If a numeric prefix UP is given, move up into the
22502 hierarchy of headlines by UP levels before marking the subtree."
22503 (interactive "P")
22504 (org-with-limited-levels
22505 (cond ((org-at-heading-p) (beginning-of-line))
22506 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22507 (t (outline-previous-visible-heading 1))))
22508 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22509 (if (org-called-interactively-p 'any)
22510 (call-interactively 'org-mark-element)
22511 (org-mark-element)))
22514 ;;; Indentation
22516 (defun org--get-expected-indentation (element contentsp)
22517 "Expected indentation column for current line, according to ELEMENT.
22518 ELEMENT is an element containing point. CONTENTSP is non-nil
22519 when indentation is to be computed according to contents of
22520 ELEMENT."
22521 (let ((type (org-element-type element))
22522 (start (org-element-property :begin element)))
22523 (org-with-wide-buffer
22524 (cond
22525 (contentsp
22526 (case type
22527 (footnote-definition 0)
22528 ((headline inlinetask nil)
22529 (if (not org-adapt-indentation) 0
22530 (let ((level (org-current-level)))
22531 (if level (1+ level) 0))))
22532 (item
22533 (org-list-item-body-column
22534 (org-element-property :post-affiliated element)))
22535 (plain-list
22536 (save-excursion
22537 (goto-char (org-element-property :post-affiliated element))
22538 (org-get-indentation)))
22539 (otherwise
22540 (goto-char start)
22541 (org-get-indentation))))
22542 ((memq type '(headline inlinetask nil))
22543 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22544 (org--get-expected-indentation element t)
22546 ((eq type 'footnote-definition) 0)
22547 ;; First paragraph of a footnote definition or an item.
22548 ;; Indent like parent.
22549 ((< (line-beginning-position) start)
22550 (org--get-expected-indentation
22551 (org-element-property :parent element) t))
22552 ;; At first line: indent according to previous sibling, if any,
22553 ;; ignoring footnote definitions and inline tasks, or parent's
22554 ;; contents.
22555 ((= (line-beginning-position) start)
22556 (catch 'exit
22557 (while t
22558 (if (= (point-min) start) (throw 'exit 0)
22559 (goto-char (1- start))
22560 (let* ((previous (org-element-at-point))
22561 (parent previous))
22562 (while (and parent (<= (org-element-property :end parent) start))
22563 (setq previous parent
22564 parent (org-element-property :parent parent)))
22565 (cond
22566 ((not previous) (throw 'exit 0))
22567 ((> (org-element-property :end previous) start)
22568 (throw 'exit (org--get-expected-indentation previous t)))
22569 ((memq (org-element-type previous)
22570 '(footnote-definition inlinetask))
22571 (setq start (org-element-property :begin previous)))
22572 (t (goto-char (org-element-property :begin previous))
22573 (throw 'exit
22574 (if (bolp) (org-get-indentation)
22575 ;; At first paragraph in an item or
22576 ;; a footnote definition.
22577 (org--get-expected-indentation
22578 (org-element-property :parent previous) t))))))))))
22579 ;; Otherwise, move to the first non-blank line above.
22581 (beginning-of-line)
22582 (let ((pos (point)))
22583 (skip-chars-backward " \r\t\n")
22584 (cond
22585 ;; Two blank lines end a footnote definition or a plain
22586 ;; list. When we indent an empty line after them, the
22587 ;; containing list or footnote definition is over, so it
22588 ;; qualifies as a previous sibling. Therefore, we indent
22589 ;; like its first line.
22590 ((and (memq type '(footnote-definition plain-list))
22591 (> (count-lines (point) pos) 2))
22592 (goto-char start)
22593 (org-get-indentation))
22594 ;; Line above is the first one of a paragraph at the
22595 ;; beginning of an item or a footnote definition. Indent
22596 ;; like parent.
22597 ((< (line-beginning-position) start)
22598 (org--get-expected-indentation
22599 (org-element-property :parent element) t))
22600 ;; POS is after contents in a greater element. Indent like
22601 ;; the beginning of the element.
22603 ;; As a special case, if point is at the end of a footnote
22604 ;; definition or an item, indent like the very last element
22605 ;; within.
22606 ((let ((cend (org-element-property :contents-end element)))
22607 (and cend (<= cend pos)))
22608 (if (memq type '(footnote-definition item plain-list))
22609 (org--get-expected-indentation (org-element-at-point) nil)
22610 (goto-char start)
22611 (org-get-indentation)))
22612 ;; In any other case, indent like the current line.
22613 (t (org-get-indentation)))))))))
22615 (defun org--align-node-property ()
22616 "Align node property at point.
22617 Alignment is done according to `org-property-format', which see."
22618 (when (save-excursion
22619 (beginning-of-line)
22620 (looking-at org-property-re))
22621 (replace-match
22622 (concat (match-string 4)
22623 (org-trim
22624 (format org-property-format (match-string 1) (match-string 3))))
22625 t t)))
22627 (defun org-indent-line ()
22628 "Indent line depending on context.
22630 Indentation is done according to the following rules:
22632 - Footnote definitions, headlines and inline tasks have to
22633 start at column 0.
22635 - On the very first line of an element, consider, in order, the
22636 next rules until one matches:
22638 1. If there's a sibling element before, ignoring footnote
22639 definitions and inline tasks, indent like its first line.
22641 2. If element has a parent, indent like its contents. More
22642 precisely, if parent is an item, indent after the
22643 description part, if any, or the bullet (see
22644 ``org-list-description-max-indent'). Else, indent like
22645 parent's first line.
22647 3. Otherwise, indent relatively to current level, if
22648 `org-adapt-indentation' is non-nil, or to left margin.
22650 - On a blank line at the end of a plain list, an item, or
22651 a footnote definition, indent like the very last element
22652 within.
22654 - In the code part of a source block, use language major mode
22655 to indent current line if `org-src-tab-acts-natively' is
22656 non-nil. If it is nil, do nothing.
22658 - Otherwise, indent like the first non-blank line above.
22660 The function doesn't indent an item as it could break the whole
22661 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22662 \\[org-shiftmetaright].
22664 Also align node properties according to `org-property-format'."
22665 (interactive)
22666 (cond
22667 (orgstruct-is-++
22668 (let ((indent-line-function
22669 (cadadr (assq 'indent-line-function org-fb-vars))))
22670 (indent-according-to-mode)))
22671 ((org-at-heading-p) 'noindent)
22673 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22674 (type (org-element-type element)))
22675 (cond ((and (memq type '(plain-list item))
22676 (= (line-beginning-position)
22677 (org-element-property :post-affiliated element)))
22678 'noindent)
22679 ((and (eq type 'src-block)
22680 org-src-tab-acts-natively
22681 (> (line-beginning-position)
22682 (org-element-property :post-affiliated element))
22683 (< (line-beginning-position)
22684 (org-with-wide-buffer
22685 (goto-char (org-element-property :end element))
22686 (skip-chars-backward " \r\t\n")
22687 (line-beginning-position))))
22688 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22689 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22691 (let ((column (org--get-expected-indentation element nil)))
22692 ;; Preserve current column.
22693 (if (<= (current-column) (current-indentation))
22694 (org-indent-line-to column)
22695 (save-excursion (org-indent-line-to column))))
22696 ;; Align node property. Also preserve current column.
22697 (when (eq type 'node-property)
22698 (let ((column (current-column)))
22699 (org--align-node-property)
22700 (org-move-to-column column)))))))))
22702 (defun org-indent-region (start end)
22703 "Indent each non-blank line in the region.
22704 Called from a program, START and END specify the region to
22705 indent. The function will not indent contents of example blocks,
22706 verse blocks and export blocks as leading white spaces are
22707 assumed to be significant there."
22708 (interactive "r")
22709 (save-excursion
22710 (goto-char start)
22711 (skip-chars-forward " \r\t\n")
22712 (unless (eobp) (beginning-of-line))
22713 (let ((indent-to
22714 (lambda (ind pos)
22715 ;; Set IND as indentation for all lines between point and
22716 ;; POS or END, whichever comes first. Blank lines are
22717 ;; ignored. Leave point after POS once done.
22718 (let ((limit (copy-marker (min end pos))))
22719 (while (< (point) limit)
22720 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22721 (forward-line))
22722 (set-marker limit nil))))
22723 (end (copy-marker end)))
22724 (while (< (point) end)
22725 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22726 (let* ((element (org-element-at-point))
22727 (type (org-element-type element))
22728 (element-end (copy-marker (org-element-property :end element)))
22729 (ind (org--get-expected-indentation element nil)))
22730 (cond
22731 ((or (memq type '(paragraph table table-row))
22732 (not (or (org-element-property :contents-begin element)
22733 (memq type
22734 '(example-block export-block src-block)))))
22735 ;; Elements here are indented as a single block. Also
22736 ;; align node properties.
22737 (when (eq type 'node-property)
22738 (org--align-node-property)
22739 (beginning-of-line))
22740 (funcall indent-to ind element-end))
22742 ;; Elements in this category consist of three parts:
22743 ;; before the contents, the contents, and after the
22744 ;; contents. The contents are treated specially,
22745 ;; according to the element type, or not indented at
22746 ;; all. Other parts are indented as a single block.
22747 (let* ((post (copy-marker
22748 (org-element-property :post-affiliated element)))
22749 (cbeg
22750 (copy-marker
22751 (cond
22752 ((not (org-element-property :contents-begin element))
22753 ;; Fake contents for source blocks.
22754 (org-with-wide-buffer
22755 (goto-char post)
22756 (forward-line)
22757 (point)))
22758 ((memq type '(footnote-definition item plain-list))
22759 ;; Contents in these elements could start on
22760 ;; the same line as the beginning of the
22761 ;; element. Make sure we start indenting
22762 ;; from the second line.
22763 (org-with-wide-buffer
22764 (goto-char post)
22765 (end-of-line)
22766 (skip-chars-forward " \r\t\n")
22767 (if (eobp) (point) (line-beginning-position))))
22768 (t (org-element-property :contents-begin element)))))
22769 (cend (copy-marker
22770 (or (org-element-property :contents-end element)
22771 ;; Fake contents for source blocks.
22772 (org-with-wide-buffer
22773 (goto-char element-end)
22774 (skip-chars-backward " \r\t\n")
22775 (line-beginning-position))))))
22776 ;; Do not change items indentation individually as it
22777 ;; might break the list as a whole. On the other
22778 ;; hand, when at a plain list, indent it as a whole.
22779 (cond ((eq type 'plain-list)
22780 (let ((offset (- ind (org-get-indentation))))
22781 (unless (zerop offset)
22782 (indent-rigidly (org-element-property :begin element)
22783 (org-element-property :end element)
22784 offset))
22785 (goto-char cbeg)))
22786 ((eq type 'item) (goto-char cbeg))
22787 (t (funcall indent-to ind cbeg)))
22788 (when (< (point) end)
22789 (case type
22790 ((example-block export-block verse-block))
22791 (src-block
22792 ;; In a source block, indent source code
22793 ;; according to language major mode, but only if
22794 ;; `org-src-tab-acts-natively' is non-nil.
22795 (when (and (< (point) end) org-src-tab-acts-natively)
22796 (ignore-errors
22797 (let (org-src-strip-leading-and-trailing-blank-lines
22798 ;; Region boundaries in edit buffer.
22799 (start (1+ (- (point) cbeg)))
22800 (end (- (min cend end) cbeg)))
22801 (org-babel-do-in-edit-buffer
22802 (indent-region start end))))))
22803 (t (org-indent-region (point) (min cend end))))
22804 (goto-char (min cend end))
22805 (when (< (point) end) (funcall indent-to ind element-end)))
22806 (set-marker post nil)
22807 (set-marker cbeg nil)
22808 (set-marker cend nil))))
22809 (set-marker element-end nil))))
22810 (set-marker end nil))))
22812 (defun org-indent-drawer ()
22813 "Indent the drawer at point."
22814 (interactive)
22815 (unless (save-excursion
22816 (beginning-of-line)
22817 (org-looking-at-p org-drawer-regexp))
22818 (user-error "Not at a drawer"))
22819 (let ((element (org-element-at-point)))
22820 (unless (memq (org-element-type element) '(drawer property-drawer))
22821 (user-error "Not at a drawer"))
22822 (org-with-wide-buffer
22823 (org-indent-region (org-element-property :begin element)
22824 (org-element-property :end element))))
22825 (message "Drawer at point indented"))
22827 (defun org-indent-block ()
22828 "Indent the block at point."
22829 (interactive)
22830 (unless (save-excursion
22831 (beginning-of-line)
22832 (let ((case-fold-search t))
22833 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22834 (user-error "Not at a block"))
22835 (let ((element (org-element-at-point)))
22836 (unless (memq (org-element-type element)
22837 '(comment-block center-block dynamic-block example-block
22838 export-block quote-block special-block
22839 src-block verse-block))
22840 (user-error "Not at a block"))
22841 (org-with-wide-buffer
22842 (org-indent-region (org-element-property :begin element)
22843 (org-element-property :end element))))
22844 (message "Block at point indented"))
22847 ;;; Filling
22849 ;; We use our own fill-paragraph and auto-fill functions.
22851 ;; `org-fill-paragraph' relies on adaptive filling and context
22852 ;; checking. Appropriate `fill-prefix' is computed with
22853 ;; `org-adaptive-fill-function'.
22855 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22856 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22857 ;; `org-adaptive-fill-function' value. Internally,
22858 ;; `org-comment-line-break-function' breaks the line.
22860 ;; `org-setup-filling' installs filling and auto-filling related
22861 ;; variables during `org-mode' initialization.
22863 (defvar org-element-paragraph-separate) ; org-element.el
22864 (defun org-setup-filling ()
22865 (require 'org-element)
22866 ;; Prevent auto-fill from inserting unwanted new items.
22867 (when (boundp 'fill-nobreak-predicate)
22868 (org-set-local
22869 'fill-nobreak-predicate
22870 (org-uniquify
22871 (append fill-nobreak-predicate
22872 '(org-fill-line-break-nobreak-p
22873 org-fill-paragraph-with-timestamp-nobreak-p)))))
22874 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22875 (org-set-local 'paragraph-start paragraph-ending)
22876 (org-set-local 'paragraph-separate paragraph-ending))
22877 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22878 (org-set-local 'auto-fill-inhibit-regexp nil)
22879 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22880 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22881 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22883 (defun org-fill-line-break-nobreak-p ()
22884 "Non-nil when a new line at point would create an Org line break."
22885 (save-excursion
22886 (skip-chars-backward "[ \t]")
22887 (skip-chars-backward "\\\\")
22888 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22890 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22891 "Non-nil when a new line at point would split a timestamp."
22892 (and (org-at-timestamp-p t)
22893 (not (looking-at org-ts-regexp-both))))
22895 (declare-function message-in-body-p "message" ())
22896 (defvar orgtbl-line-start-regexp) ; From org-table.el
22897 (defun org-adaptive-fill-function ()
22898 "Compute a fill prefix for the current line.
22899 Return fill prefix, as a string, or nil if current line isn't
22900 meant to be filled. For convenience, if `adaptive-fill-regexp'
22901 matches in paragraphs or comments, use it."
22902 (catch 'exit
22903 (when (derived-mode-p 'message-mode)
22904 (save-excursion
22905 (beginning-of-line)
22906 (cond ((or (not (message-in-body-p))
22907 (looking-at orgtbl-line-start-regexp))
22908 (throw 'exit nil))
22909 ((looking-at message-cite-prefix-regexp)
22910 (throw 'exit (match-string-no-properties 0)))
22911 ((looking-at org-outline-regexp)
22912 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22913 (org-with-wide-buffer
22914 (unless (org-at-heading-p)
22915 (let* ((p (line-beginning-position))
22916 (element (save-excursion
22917 (beginning-of-line)
22918 (org-element-at-point)))
22919 (type (org-element-type element))
22920 (post-affiliated (org-element-property :post-affiliated element)))
22921 (unless (< p post-affiliated)
22922 (case type
22923 (comment
22924 (save-excursion
22925 (beginning-of-line)
22926 (looking-at "[ \t]*")
22927 (concat (match-string 0) "# ")))
22928 (footnote-definition "")
22929 ((item plain-list)
22930 (make-string (org-list-item-body-column post-affiliated) ?\s))
22931 (paragraph
22932 ;; Fill prefix is usually the same as the current line,
22933 ;; unless the paragraph is at the beginning of an item.
22934 (let ((parent (org-element-property :parent element)))
22935 (save-excursion
22936 (beginning-of-line)
22937 (cond ((eq (org-element-type parent) 'item)
22938 (make-string (org-list-item-body-column
22939 (org-element-property :begin parent))
22940 ?\s))
22941 ((and adaptive-fill-regexp
22942 ;; Locally disable
22943 ;; `adaptive-fill-function' to let
22944 ;; `fill-context-prefix' handle
22945 ;; `adaptive-fill-regexp' variable.
22946 (let (adaptive-fill-function)
22947 (fill-context-prefix
22948 post-affiliated
22949 (org-element-property :end element)))))
22950 ((looking-at "[ \t]+") (match-string 0))
22951 (t "")))))
22952 (comment-block
22953 ;; Only fill contents if P is within block boundaries.
22954 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22955 (forward-line)
22956 (point)))
22957 (cend (save-excursion
22958 (goto-char (org-element-property :end element))
22959 (skip-chars-backward " \r\t\n")
22960 (line-beginning-position))))
22961 (when (and (>= p cbeg) (< p cend))
22962 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22963 (match-string 0)
22964 "")))))))))))
22966 (declare-function message-goto-body "message" ())
22967 (defvar message-cite-prefix-regexp) ; From message.el
22968 (defun org-fill-paragraph (&optional justify)
22969 "Fill element at point, when applicable.
22971 This function only applies to comment blocks, comments, example
22972 blocks and paragraphs. Also, as a special case, re-align table
22973 when point is at one.
22975 If JUSTIFY is non-nil (interactively, with prefix argument),
22976 justify as well. If `sentence-end-double-space' is non-nil, then
22977 period followed by one space does not end a sentence, so don't
22978 break a line there. The variable `fill-column' controls the
22979 width for filling.
22981 For convenience, when point is at a plain list, an item or
22982 a footnote definition, try to fill the first paragraph within."
22983 (interactive)
22984 (if (and (derived-mode-p 'message-mode)
22985 (or (not (message-in-body-p))
22986 (save-excursion (move-beginning-of-line 1)
22987 (looking-at message-cite-prefix-regexp))))
22988 ;; First ensure filling is correct in message-mode.
22989 (let ((fill-paragraph-function
22990 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22991 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22992 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22993 (paragraph-separate
22994 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22995 (fill-paragraph nil))
22996 (with-syntax-table org-mode-transpose-word-syntax-table
22997 ;; Move to end of line in order to get the first paragraph
22998 ;; within a plain list or a footnote definition.
22999 (let ((element (save-excursion
23000 (end-of-line)
23001 (or (ignore-errors (org-element-at-point))
23002 (user-error "An element cannot be parsed line %d"
23003 (line-number-at-pos (point)))))))
23004 ;; First check if point is in a blank line at the beginning of
23005 ;; the buffer. In that case, ignore filling.
23006 (case (org-element-type element)
23007 ;; Use major mode filling function is src blocks.
23008 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23009 ;; Align Org tables, leave table.el tables as-is.
23010 (table-row (org-table-align) t)
23011 (table
23012 (when (eq (org-element-property :type element) 'org)
23013 (save-excursion
23014 (goto-char (org-element-property :post-affiliated element))
23015 (org-table-align)))
23017 (paragraph
23018 ;; Paragraphs may contain `line-break' type objects.
23019 (let ((beg (max (point-min)
23020 (org-element-property :contents-begin element)))
23021 (end (min (point-max)
23022 (org-element-property :contents-end element))))
23023 ;; Do nothing if point is at an affiliated keyword.
23024 (if (< (line-end-position) beg) t
23025 (when (derived-mode-p 'message-mode)
23026 ;; In `message-mode', do not fill following citation
23027 ;; in current paragraph nor text before message body.
23028 (let ((body-start (save-excursion (message-goto-body))))
23029 (when body-start (setq beg (max body-start beg))))
23030 (when (save-excursion
23031 (re-search-forward
23032 (concat "^" message-cite-prefix-regexp) end t))
23033 (setq end (match-beginning 0))))
23034 ;; Fill paragraph, taking line breaks into account.
23035 (save-excursion
23036 (goto-char beg)
23037 (let ((cuts (list beg)))
23038 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23039 (when (eq 'line-break
23040 (org-element-type
23041 (save-excursion (backward-char)
23042 (org-element-context))))
23043 (push (point) cuts)))
23044 (dolist (c (delq end cuts))
23045 (fill-region-as-paragraph c end justify)
23046 (setq end c))))
23047 t)))
23048 ;; Contents of `comment-block' type elements should be
23049 ;; filled as plain text, but only if point is within block
23050 ;; markers.
23051 (comment-block
23052 (let* ((case-fold-search t)
23053 (beg (save-excursion
23054 (goto-char (org-element-property :begin element))
23055 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23056 (forward-line)
23057 (point)))
23058 (end (save-excursion
23059 (goto-char (org-element-property :end element))
23060 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23061 (line-beginning-position))))
23062 (if (or (< (point) beg) (> (point) end)) t
23063 (fill-region-as-paragraph
23064 (save-excursion (end-of-line)
23065 (re-search-backward "^[ \t]*$" beg 'move)
23066 (line-beginning-position))
23067 (save-excursion (beginning-of-line)
23068 (re-search-forward "^[ \t]*$" end 'move)
23069 (line-beginning-position))
23070 justify))))
23071 ;; Fill comments.
23072 (comment
23073 (let ((begin (org-element-property :post-affiliated element))
23074 (end (org-element-property :end element)))
23075 (when (and (>= (point) begin) (<= (point) end))
23076 (let ((begin (save-excursion
23077 (end-of-line)
23078 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23079 (progn (forward-line) (point))
23080 begin)))
23081 (end (save-excursion
23082 (end-of-line)
23083 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23084 (1- (line-beginning-position))
23085 (skip-chars-backward " \r\t\n")
23086 (line-end-position)))))
23087 ;; Do not fill comments when at a blank line.
23088 (when (> end begin)
23089 (let ((fill-prefix
23090 (save-excursion
23091 (beginning-of-line)
23092 (looking-at "[ \t]*#")
23093 (let ((comment-prefix (match-string 0)))
23094 (goto-char (match-end 0))
23095 (if (looking-at adaptive-fill-regexp)
23096 (concat comment-prefix (match-string 0))
23097 (concat comment-prefix " "))))))
23098 (save-excursion
23099 (fill-region-as-paragraph begin end justify))))))
23101 ;; Ignore every other element.
23102 (otherwise t))))))
23104 (defun org-auto-fill-function ()
23105 "Auto-fill function."
23106 ;; Check if auto-filling is meaningful.
23107 (let ((fc (current-fill-column)))
23108 (when (and fc (> (current-column) fc))
23109 (let* ((fill-prefix (org-adaptive-fill-function))
23110 ;; Enforce empty fill prefix, if required. Otherwise, it
23111 ;; will be computed again.
23112 (adaptive-fill-mode (not (equal fill-prefix ""))))
23113 (when fill-prefix (do-auto-fill))))))
23115 (defun org-comment-line-break-function (&optional soft)
23116 "Break line at point and indent, continuing comment if within one.
23117 The inserted newline is marked hard if variable
23118 `use-hard-newlines' is true, unless optional argument SOFT is
23119 non-nil."
23120 (if soft (insert-and-inherit ?\n) (newline 1))
23121 (save-excursion (forward-char -1) (delete-horizontal-space))
23122 (delete-horizontal-space)
23123 (indent-to-left-margin)
23124 (insert-before-markers-and-inherit fill-prefix))
23127 ;;; Fixed Width Areas
23129 (defun org-toggle-fixed-width ()
23130 "Toggle fixed-width markup.
23132 Add or remove fixed-width markup on current line, whenever it
23133 makes sense. Return an error otherwise.
23135 If a region is active and if it contains only fixed-width areas
23136 or blank lines, remove all fixed-width markup in it. If the
23137 region contains anything else, convert all non-fixed-width lines
23138 to fixed-width ones.
23140 Blank lines at the end of the region are ignored unless the
23141 region only contains such lines."
23142 (interactive)
23143 (if (not (org-region-active-p))
23144 ;; No region:
23146 ;; Remove fixed width marker only in a fixed-with element.
23148 ;; Add fixed width maker in paragraphs, in blank lines after
23149 ;; elements or at the beginning of a headline or an inlinetask,
23150 ;; and before any one-line elements (e.g., a clock).
23151 (progn
23152 (beginning-of-line)
23153 (let* ((element (org-element-at-point))
23154 (type (org-element-type element)))
23155 (cond
23156 ((and (eq type 'fixed-width)
23157 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23158 (replace-match
23159 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23160 ((and (memq type '(babel-call clock comment diary-sexp headline
23161 horizontal-rule keyword paragraph
23162 planning))
23163 (<= (org-element-property :post-affiliated element) (point)))
23164 (skip-chars-forward " \t")
23165 (insert ": "))
23166 ((and (org-looking-at-p "[ \t]*$")
23167 (or (eq type 'inlinetask)
23168 (save-excursion
23169 (skip-chars-forward " \r\t\n")
23170 (<= (org-element-property :end element) (point)))))
23171 (delete-region (point) (line-end-position))
23172 (org-indent-line)
23173 (insert ": "))
23174 (t (user-error "Cannot insert a fixed-width line here")))))
23175 ;; Region active.
23176 (let* ((begin (save-excursion
23177 (goto-char (region-beginning))
23178 (line-beginning-position)))
23179 (end (copy-marker
23180 (save-excursion
23181 (goto-char (region-end))
23182 (unless (eolp) (beginning-of-line))
23183 (if (save-excursion (re-search-backward "\\S-" begin t))
23184 (progn (skip-chars-backward " \r\t\n") (point))
23185 (point)))))
23186 (all-fixed-width-p
23187 (catch 'not-all-p
23188 (save-excursion
23189 (goto-char begin)
23190 (skip-chars-forward " \r\t\n")
23191 (when (eobp) (throw 'not-all-p nil))
23192 (while (< (point) end)
23193 (let ((element (org-element-at-point)))
23194 (if (eq (org-element-type element) 'fixed-width)
23195 (goto-char (org-element-property :end element))
23196 (throw 'not-all-p nil))))
23197 t))))
23198 (if all-fixed-width-p
23199 (save-excursion
23200 (goto-char begin)
23201 (while (< (point) end)
23202 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23203 (replace-match
23204 "" nil nil nil
23205 (if (= (line-end-position) (match-end 0)) 0 1)))
23206 (forward-line)))
23207 (let ((min-ind (point-max)))
23208 ;; Find minimum indentation across all lines.
23209 (save-excursion
23210 (goto-char begin)
23211 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23212 (setq min-ind 0)
23213 (catch 'zerop
23214 (while (< (point) end)
23215 (unless (org-looking-at-p "[ \t]*$")
23216 (let ((ind (org-get-indentation)))
23217 (setq min-ind (min min-ind ind))
23218 (when (zerop ind) (throw 'zerop t))))
23219 (forward-line)))))
23220 ;; Loop over all lines and add fixed-width markup everywhere
23221 ;; but in fixed-width lines.
23222 (save-excursion
23223 (goto-char begin)
23224 (while (< (point) end)
23225 (cond
23226 ((org-at-heading-p)
23227 (insert ": ")
23228 (forward-line)
23229 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23230 (insert ":")
23231 (forward-line)))
23232 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23233 (let* ((element (org-element-at-point))
23234 (element-end (org-element-property :end element)))
23235 (if (eq (org-element-type element) 'fixed-width)
23236 (progn (goto-char element-end)
23237 (skip-chars-backward " \r\t\n")
23238 (forward-line))
23239 (let ((limit (min end element-end)))
23240 (while (< (point) limit)
23241 (org-move-to-column min-ind t)
23242 (insert ": ")
23243 (forward-line))))))
23245 (org-move-to-column min-ind t)
23246 (insert ": ")
23247 (forward-line)))))))
23248 (set-marker end nil))))
23251 ;;; Comments
23253 ;; Org comments syntax is quite complex. It requires the entire line
23254 ;; to be just a comment. Also, even with the right syntax at the
23255 ;; beginning of line, some some elements (i.e. verse-block or
23256 ;; example-block) don't accept comments. Usual Emacs comment commands
23257 ;; cannot cope with those requirements. Therefore, Org replaces them.
23259 ;; Org still relies on `comment-dwim', but cannot trust
23260 ;; `comment-only-p'. So, `comment-region-function' and
23261 ;; `uncomment-region-function' both point
23262 ;; to`org-comment-or-uncomment-region'. Eventually,
23263 ;; `org-insert-comment' takes care of insertion of comments at the
23264 ;; beginning of line.
23266 ;; `org-setup-comments-handling' install comments related variables
23267 ;; during `org-mode' initialization.
23269 (defun org-setup-comments-handling ()
23270 (interactive)
23271 (org-set-local 'comment-use-syntax nil)
23272 (org-set-local 'comment-start "# ")
23273 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23274 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23275 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23276 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23278 (defun org-insert-comment ()
23279 "Insert an empty comment above current line.
23280 If the line is empty, insert comment at its beginning. When
23281 point is within a source block, comment according to the related
23282 major mode."
23283 (if (let ((element (org-element-at-point)))
23284 (and (eq (org-element-type element) 'src-block)
23285 (< (save-excursion
23286 (goto-char (org-element-property :post-affiliated element))
23287 (line-end-position))
23288 (point))
23289 (> (save-excursion
23290 (goto-char (org-element-property :end element))
23291 (skip-chars-backward " \r\t\n")
23292 (line-beginning-position))
23293 (point))))
23294 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23295 (beginning-of-line)
23296 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23297 (open-line 1))
23298 (org-indent-line)
23299 (insert "# ")))
23301 (defvar comment-empty-lines) ; From newcomment.el.
23302 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23303 "Comment or uncomment each non-blank line in the region.
23304 Uncomment each non-blank line between BEG and END if it only
23305 contains commented lines. Otherwise, comment them. If region is
23306 strictly within a source block, use appropriate comment syntax."
23307 (if (let ((element (org-element-at-point)))
23308 (and (eq (org-element-type element) 'src-block)
23309 (< (save-excursion
23310 (goto-char (org-element-property :post-affiliated element))
23311 (line-end-position))
23312 beg)
23313 (>= (save-excursion
23314 (goto-char (org-element-property :end element))
23315 (skip-chars-backward " \r\t\n")
23316 (line-beginning-position))
23317 end)))
23318 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23319 (save-restriction
23320 ;; Restrict region
23321 (narrow-to-region (save-excursion (goto-char beg)
23322 (skip-chars-forward " \r\t\n" end)
23323 (line-beginning-position))
23324 (save-excursion (goto-char end)
23325 (skip-chars-backward " \r\t\n" beg)
23326 (line-end-position)))
23327 (let ((uncommentp
23328 ;; UNCOMMENTP is non-nil when every non blank line between
23329 ;; BEG and END is a comment.
23330 (save-excursion
23331 (goto-char (point-min))
23332 (while (and (not (eobp))
23333 (let ((element (org-element-at-point)))
23334 (and (eq (org-element-type element) 'comment)
23335 (goto-char (min (point-max)
23336 (org-element-property
23337 :end element)))))))
23338 (eobp))))
23339 (if uncommentp
23340 ;; Only blank lines and comments in region: uncomment it.
23341 (save-excursion
23342 (goto-char (point-min))
23343 (while (not (eobp))
23344 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23345 (replace-match "" nil nil nil 1))
23346 (forward-line)))
23347 ;; Comment each line in region.
23348 (let ((min-indent (point-max)))
23349 ;; First find the minimum indentation across all lines.
23350 (save-excursion
23351 (goto-char (point-min))
23352 (while (and (not (eobp)) (not (zerop min-indent)))
23353 (unless (looking-at "[ \t]*$")
23354 (setq min-indent (min min-indent (current-indentation))))
23355 (forward-line)))
23356 ;; Then loop over all lines.
23357 (save-excursion
23358 (goto-char (point-min))
23359 (while (not (eobp))
23360 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23361 ;; Don't get fooled by invisible text (e.g. link path)
23362 ;; when moving to column MIN-INDENT.
23363 (let ((buffer-invisibility-spec nil))
23364 (org-move-to-column min-indent t))
23365 (insert comment-start))
23366 (forward-line)))))))))
23368 (defun org-comment-dwim (arg)
23369 "Call `comment-dwim' within a source edit buffer if needed."
23370 (interactive "*P")
23371 (if (org-in-src-block-p)
23372 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23373 (call-interactively 'comment-dwim)))
23376 ;;; Planning
23378 ;; This section contains tools to operate on timestamp objects, as
23379 ;; returned by, e.g. `org-element-context'.
23381 (defun org-timestamp-has-time-p (timestamp)
23382 "Non-nil when TIMESTAMP has a time specified."
23383 (org-element-property :hour-start timestamp))
23385 (defun org-timestamp-format (timestamp format &optional end utc)
23386 "Format a TIMESTAMP element into a string.
23388 FORMAT is a format specifier to be passed to
23389 `format-time-string'.
23391 When optional argument END is non-nil, use end of date-range or
23392 time-range, if possible.
23394 When optional argument UTC is non-nil, time will be expressed as
23395 Universal Time."
23396 (format-time-string
23397 format
23398 (apply 'encode-time
23399 (cons 0
23400 (mapcar
23401 (lambda (prop) (or (org-element-property prop timestamp) 0))
23402 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23403 '(:minute-start :hour-start :day-start :month-start
23404 :year-start)))))
23405 utc))
23407 (defun org-timestamp-split-range (timestamp &optional end)
23408 "Extract a timestamp object from a date or time range.
23410 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23411 the end of the range. Otherwise, extract its start.
23413 Return a new timestamp object sharing the same parent as
23414 TIMESTAMP."
23415 (let ((type (org-element-property :type timestamp)))
23416 (if (memq type '(active inactive diary)) timestamp
23417 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23418 ;; Set new type.
23419 (org-element-put-property
23420 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23421 ;; Copy start properties over end properties if END is
23422 ;; non-nil. Otherwise, copy end properties over `start' ones.
23423 (let ((p-alist '((:minute-start . :minute-end)
23424 (:hour-start . :hour-end)
23425 (:day-start . :day-end)
23426 (:month-start . :month-end)
23427 (:year-start . :year-end))))
23428 (dolist (p-cell p-alist)
23429 (org-element-put-property
23430 split-ts
23431 (funcall (if end 'car 'cdr) p-cell)
23432 (org-element-property
23433 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23434 ;; Eventually refresh `:raw-value'.
23435 (org-element-put-property split-ts :raw-value nil)
23436 (org-element-put-property
23437 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23439 (defun org-timestamp-translate (timestamp &optional boundary)
23440 "Apply `org-translate-time' on a TIMESTAMP object.
23441 When optional argument BOUNDARY is non-nil, it is either the
23442 symbol `start' or `end'. In this case, only translate the
23443 starting or ending part of TIMESTAMP if it is a date or time
23444 range. Otherwise, translate both parts."
23445 (if (and (not boundary)
23446 (memq (org-element-property :type timestamp)
23447 '(active-range inactive-range)))
23448 (concat
23449 (org-translate-time
23450 (org-element-property :raw-value
23451 (org-timestamp-split-range timestamp)))
23452 "--"
23453 (org-translate-time
23454 (org-element-property :raw-value
23455 (org-timestamp-split-range timestamp t))))
23456 (org-translate-time
23457 (org-element-property
23458 :raw-value
23459 (if (not boundary) timestamp
23460 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23464 ;;; Other stuff.
23466 (defun org-reftex-citation ()
23467 "Use reftex-citation to insert a citation into the buffer.
23468 This looks for a line like
23470 #+BIBLIOGRAPHY: foo plain option:-d
23472 and derives from it that foo.bib is the bibliography file relevant
23473 for this document. It then installs the necessary environment for RefTeX
23474 to work in this buffer and calls `reftex-citation' to insert a citation
23475 into the buffer.
23477 Export of such citations to both LaTeX and HTML is handled by the contributed
23478 package ox-bibtex by Taru Karttunen."
23479 (interactive)
23480 (let ((reftex-docstruct-symbol 'rds)
23481 (reftex-cite-format "\\cite{%l}")
23482 rds bib)
23483 (save-excursion
23484 (save-restriction
23485 (widen)
23486 (let ((case-fold-search t)
23487 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23488 (if (not (save-excursion
23489 (or (re-search-forward re nil t)
23490 (re-search-backward re nil t))))
23491 (user-error "No bibliography defined in file")
23492 (setq bib (concat (match-string 1) ".bib")
23493 rds (list (list 'bib bib)))))))
23494 (call-interactively 'reftex-citation)))
23496 ;;;; Functions extending outline functionality
23498 (defun org-beginning-of-line (&optional arg)
23499 "Go to the beginning of the current line. If that is invisible, continue
23500 to a visible line beginning. This makes the function of C-a more intuitive.
23501 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23502 first attempt, and only move to after the tags when the cursor is already
23503 beyond the end of the headline."
23504 (interactive "P")
23505 (let ((pos (point))
23506 (special (if (consp org-special-ctrl-a/e)
23507 (car org-special-ctrl-a/e)
23508 org-special-ctrl-a/e))
23509 deactivate-mark refpos)
23510 (if (org-bound-and-true-p visual-line-mode)
23511 (beginning-of-visual-line 1)
23512 (beginning-of-line 1))
23513 (if (and arg (fboundp 'move-beginning-of-line))
23514 (call-interactively 'move-beginning-of-line)
23515 (if (bobp)
23517 (backward-char 1)
23518 (if (org-truely-invisible-p)
23519 (while (and (not (bobp)) (org-truely-invisible-p))
23520 (backward-char 1)
23521 (beginning-of-line 1))
23522 (forward-char 1))))
23523 (when special
23524 (cond
23525 ((and (looking-at org-complex-heading-regexp)
23526 (= (char-after (match-end 1)) ?\ ))
23527 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23528 (point-at-eol)))
23529 (goto-char
23530 (if (eq special t)
23531 (cond ((> pos refpos) refpos)
23532 ((= pos (point)) refpos)
23533 (t (point)))
23534 (cond ((> pos (point)) (point))
23535 ((not (eq last-command this-command)) (point))
23536 (t refpos)))))
23537 ((org-at-item-p)
23538 ;; Being at an item and not looking at an the item means point
23539 ;; was previously moved to beginning of a visual line, which
23540 ;; doesn't contain the item. Therefore, do nothing special,
23541 ;; just stay here.
23542 (when (looking-at org-list-full-item-re)
23543 ;; Set special position at first white space character after
23544 ;; bullet, and check-box, if any.
23545 (let ((after-bullet
23546 (let ((box (match-end 3)))
23547 (if (not box) (match-end 1)
23548 (let ((after (char-after box)))
23549 (if (and after (= after ? )) (1+ box) box))))))
23550 ;; Special case: Move point to special position when
23551 ;; currently after it or at beginning of line.
23552 (if (eq special t)
23553 (when (or (> pos after-bullet) (= (point) pos))
23554 (goto-char after-bullet))
23555 ;; Reversed case: Move point to special position when
23556 ;; point was already at beginning of line and command is
23557 ;; repeated.
23558 (when (and (= (point) pos) (eq last-command this-command))
23559 (goto-char after-bullet))))))))
23560 (org-no-warnings
23561 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23562 (setq disable-point-adjustment
23563 (or (not (invisible-p (point)))
23564 (not (invisible-p (max (point-min) (1- (point))))))))
23566 (defun org-end-of-line (&optional arg)
23567 "Go to the end of the line.
23568 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23569 tags on the first attempt, and only move to after the tags when
23570 the cursor is already beyond the end of the headline."
23571 (interactive "P")
23572 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23573 org-special-ctrl-a/e))
23574 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23575 'end-of-visual-line)
23576 ((fboundp 'move-end-of-line) 'move-end-of-line)
23577 (t 'end-of-line)))
23578 deactivate-mark)
23579 (if (or (not special) arg) (call-interactively move-fun)
23580 (let* ((element (save-excursion (beginning-of-line)
23581 (org-element-at-point)))
23582 (type (org-element-type element)))
23583 (cond
23584 ((memq type '(headline inlinetask))
23585 (let ((pos (point)))
23586 (beginning-of-line 1)
23587 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23588 (if (eq special t)
23589 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23590 (goto-char (match-beginning 1))
23591 (goto-char (match-end 0)))
23592 (if (or (< pos (match-end 0))
23593 (not (eq this-command last-command)))
23594 (goto-char (match-end 0))
23595 (goto-char (match-beginning 1))))
23596 (call-interactively move-fun))))
23597 ((outline-invisible-p (line-end-position))
23598 ;; If element is hidden, `move-end-of-line' would put point
23599 ;; after it. Use `end-of-line' to stay on current line.
23600 (call-interactively 'end-of-line))
23601 (t (call-interactively move-fun)))))
23602 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23603 (setq disable-point-adjustment
23604 (or (not (invisible-p (point)))
23605 (not (invisible-p (max (point-min) (1- (point))))))))
23607 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23608 (define-key org-mode-map "\C-e" 'org-end-of-line)
23610 (defun org-backward-sentence (&optional arg)
23611 "Go to beginning of sentence, or beginning of table field.
23612 This will call `backward-sentence' or `org-table-beginning-of-field',
23613 depending on context."
23614 (interactive "P")
23615 (cond
23616 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23617 (t (call-interactively 'backward-sentence))))
23619 (defun org-forward-sentence (&optional arg)
23620 "Go to end of sentence, or end of table field.
23621 This will call `forward-sentence' or `org-table-end-of-field',
23622 depending on context."
23623 (interactive "P")
23624 (cond
23625 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23626 (t (call-interactively 'forward-sentence))))
23628 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23629 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23631 (defun org-kill-line (&optional arg)
23632 "Kill line, to tags or end of line."
23633 (interactive "P")
23634 (cond
23635 ((or (not org-special-ctrl-k)
23636 (bolp)
23637 (not (org-at-heading-p)))
23638 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23639 org-ctrl-k-protect-subtree)
23640 (if (or (eq org-ctrl-k-protect-subtree 'error)
23641 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23642 (user-error "C-k aborted as it would kill a hidden subtree")))
23643 (call-interactively
23644 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23645 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23646 (kill-region (point) (match-beginning 1))
23647 (org-set-tags nil t))
23648 (t (kill-region (point) (point-at-eol)))))
23650 (define-key org-mode-map "\C-k" 'org-kill-line)
23652 (defun org-yank (&optional arg)
23653 "Yank. If the kill is a subtree, treat it specially.
23654 This command will look at the current kill and check if is a single
23655 subtree, or a series of subtrees[1]. If it passes the test, and if the
23656 cursor is at the beginning of a line or after the stars of a currently
23657 empty headline, then the yank is handled specially. How exactly depends
23658 on the value of the following variables, both set by default.
23660 `org-yank-folded-subtrees'
23661 When set, the subtree(s) will be folded after insertion, but only
23662 if doing so would now swallow text after the yanked text.
23664 `org-yank-adjusted-subtrees'
23665 When set, the subtree will be promoted or demoted in order to
23666 fit into the local outline tree structure, which means that the
23667 level will be adjusted so that it becomes the smaller one of the
23668 two *visible* surrounding headings.
23670 Any prefix to this command will cause `yank' to be called directly with
23671 no special treatment. In particular, a simple \\[universal-argument] prefix \
23672 will just
23673 plainly yank the text as it is.
23675 \[1] The test checks if the first non-white line is a heading
23676 and if there are no other headings with fewer stars."
23677 (interactive "P")
23678 (org-yank-generic 'yank arg))
23680 (defun org-yank-generic (command arg)
23681 "Perform some yank-like command.
23683 This function implements the behavior described in the `org-yank'
23684 documentation. However, it has been generalized to work for any
23685 interactive command with similar behavior."
23687 ;; pretend to be command COMMAND
23688 (setq this-command command)
23690 (if arg
23691 (call-interactively command)
23693 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23694 (and (org-kill-is-subtree-p)
23695 (or (bolp)
23696 (and (looking-at "[ \t]*$")
23697 (string-match
23698 "\\`\\*+\\'"
23699 (buffer-substring (point-at-bol) (point)))))))
23700 swallowp)
23701 (cond
23702 ((and subtreep org-yank-folded-subtrees)
23703 (let ((beg (point))
23704 end)
23705 (if (and subtreep org-yank-adjusted-subtrees)
23706 (org-paste-subtree nil nil 'for-yank)
23707 (call-interactively command))
23709 (setq end (point))
23710 (goto-char beg)
23711 (when (and (bolp) subtreep
23712 (not (setq swallowp
23713 (org-yank-folding-would-swallow-text beg end))))
23714 (org-with-limited-levels
23715 (or (looking-at org-outline-regexp)
23716 (re-search-forward org-outline-regexp-bol end t))
23717 (while (and (< (point) end) (looking-at org-outline-regexp))
23718 (hide-subtree)
23719 (org-cycle-show-empty-lines 'folded)
23720 (condition-case nil
23721 (outline-forward-same-level 1)
23722 (error (goto-char end))))))
23723 (when swallowp
23724 (message
23725 "Inserted text not folded because that would swallow text"))
23727 (goto-char end)
23728 (skip-chars-forward " \t\n\r")
23729 (beginning-of-line 1)
23730 (push-mark beg 'nomsg)))
23731 ((and subtreep org-yank-adjusted-subtrees)
23732 (let ((beg (point-at-bol)))
23733 (org-paste-subtree nil nil 'for-yank)
23734 (push-mark beg 'nomsg)))
23736 (call-interactively command))))))
23738 (defun org-yank-folding-would-swallow-text (beg end)
23739 "Would hide-subtree at BEG swallow any text after END?"
23740 (let (level)
23741 (org-with-limited-levels
23742 (save-excursion
23743 (goto-char beg)
23744 (when (or (looking-at org-outline-regexp)
23745 (re-search-forward org-outline-regexp-bol end t))
23746 (setq level (org-outline-level)))
23747 (goto-char end)
23748 (skip-chars-forward " \t\r\n\v\f")
23749 (if (or (eobp)
23750 (and (bolp) (looking-at org-outline-regexp)
23751 (<= (org-outline-level) level)))
23752 nil ; Nothing would be swallowed
23753 t))))) ; something would swallow
23755 (define-key org-mode-map "\C-y" 'org-yank)
23757 (defun org-truely-invisible-p ()
23758 "Check if point is at a character currently not visible.
23759 This version does not only check the character property, but also
23760 `visible-mode'."
23761 ;; Early versions of noutline don't have `outline-invisible-p'.
23762 (if (org-bound-and-true-p visible-mode)
23764 (outline-invisible-p)))
23766 (defun org-invisible-p2 ()
23767 "Check if point is at a character currently not visible."
23768 (save-excursion
23769 (if (and (eolp) (not (bobp))) (backward-char 1))
23770 ;; Early versions of noutline don't have `outline-invisible-p'.
23771 (outline-invisible-p)))
23773 (defun org-back-to-heading (&optional invisible-ok)
23774 "Call `outline-back-to-heading', but provide a better error message."
23775 (condition-case nil
23776 (outline-back-to-heading invisible-ok)
23777 (error (error "Before first headline at position %d in buffer %s"
23778 (point) (current-buffer)))))
23780 (defun org-before-first-heading-p ()
23781 "Before first heading?"
23782 (save-excursion
23783 (end-of-line)
23784 (null (re-search-backward org-outline-regexp-bol nil t))))
23786 (defun org-at-heading-p (&optional ignored)
23787 (outline-on-heading-p t))
23788 ;; Compatibility alias with Org versions < 7.8.03
23789 (defalias 'org-on-heading-p 'org-at-heading-p)
23791 (defun org-in-commented-heading-p (&optional no-inheritance)
23792 "Non-nil if point is under a commented heading.
23793 This function also checks ancestors of the current headline,
23794 unless optional argument NO-INHERITANCE is non-nil."
23795 (cond
23796 ((org-before-first-heading-p) nil)
23797 ((let ((headline (nth 4 (org-heading-components))))
23798 (and headline
23799 (let ((case-fold-search nil))
23800 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23801 headline)))))
23802 (no-inheritance nil)
23804 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23806 (defun org-at-comment-p nil
23807 "Is cursor in a commented line?"
23808 (save-excursion
23809 (save-match-data
23810 (beginning-of-line)
23811 (looking-at "^[ \t]*# "))))
23813 (defun org-at-drawer-p nil
23814 "Is cursor at a drawer keyword?"
23815 (save-excursion
23816 (move-beginning-of-line 1)
23817 (looking-at org-drawer-regexp)))
23819 (defun org-at-block-p nil
23820 "Is cursor at a block keyword?"
23821 (save-excursion
23822 (move-beginning-of-line 1)
23823 (looking-at org-block-regexp)))
23825 (defun org-point-at-end-of-empty-headline ()
23826 "If point is at the end of an empty headline, return t, else nil.
23827 If the heading only contains a TODO keyword, it is still still considered
23828 empty."
23829 (and (looking-at "[ \t]*$")
23830 (when org-todo-line-regexp
23831 (save-excursion
23832 (beginning-of-line 1)
23833 (let ((case-fold-search nil))
23834 (looking-at org-todo-line-regexp)
23835 (string= (match-string 3) ""))))))
23837 (defun org-at-heading-or-item-p ()
23838 (or (org-at-heading-p) (org-at-item-p)))
23840 (defun org-at-target-p ()
23841 (or (org-in-regexp org-radio-target-regexp)
23842 (org-in-regexp org-target-regexp)))
23843 ;; Compatibility alias with Org versions < 7.8.03
23844 (defalias 'org-on-target-p 'org-at-target-p)
23846 (defun org-up-heading-all (arg)
23847 "Move to the heading line of which the present line is a subheading.
23848 This function considers both visible and invisible heading lines.
23849 With argument, move up ARG levels."
23850 (if (fboundp 'outline-up-heading-all)
23851 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23852 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23854 (defun org-up-heading-safe ()
23855 "Move to the heading line of which the present line is a subheading.
23856 This version will not throw an error. It will return the level of the
23857 headline found, or nil if no higher level is found.
23859 Also, this function will be a lot faster than `outline-up-heading',
23860 because it relies on stars being the outline starters. This can really
23861 make a significant difference in outlines with very many siblings."
23862 (when (ignore-errors (org-back-to-heading t))
23863 (let ((level-up (1- (funcall outline-level))))
23864 (and (> level-up 0)
23865 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23866 (funcall outline-level)))))
23868 (defun org-first-sibling-p ()
23869 "Is this heading the first child of its parents?"
23870 (interactive)
23871 (let ((re org-outline-regexp-bol)
23872 level l)
23873 (unless (org-at-heading-p t)
23874 (user-error "Not at a heading"))
23875 (setq level (funcall outline-level))
23876 (save-excursion
23877 (if (not (re-search-backward re nil t))
23879 (setq l (funcall outline-level))
23880 (< l level)))))
23882 (defun org-goto-sibling (&optional previous)
23883 "Goto the next sibling, even if it is invisible.
23884 When PREVIOUS is set, go to the previous sibling instead. Returns t
23885 when a sibling was found. When none is found, return nil and don't
23886 move point."
23887 (let ((fun (if previous 're-search-backward 're-search-forward))
23888 (pos (point))
23889 (re org-outline-regexp-bol)
23890 level l)
23891 (when (ignore-errors (org-back-to-heading t))
23892 (setq level (funcall outline-level))
23893 (catch 'exit
23894 (or previous (forward-char 1))
23895 (while (funcall fun re nil t)
23896 (setq l (funcall outline-level))
23897 (when (< l level) (goto-char pos) (throw 'exit nil))
23898 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23899 (goto-char pos)
23900 nil))))
23902 (defun org-show-siblings ()
23903 "Show all siblings of the current headline."
23904 (save-excursion
23905 (while (org-goto-sibling) (org-flag-heading nil)))
23906 (save-excursion
23907 (while (org-goto-sibling 'previous)
23908 (org-flag-heading nil))))
23910 (defun org-goto-first-child ()
23911 "Goto the first child, even if it is invisible.
23912 Return t when a child was found. Otherwise don't move point and
23913 return nil."
23914 (let (level (pos (point)) (re org-outline-regexp-bol))
23915 (when (ignore-errors (org-back-to-heading t))
23916 (setq level (outline-level))
23917 (forward-char 1)
23918 (if (and (re-search-forward re nil t) (> (outline-level) level))
23919 (progn (goto-char (match-beginning 0)) t)
23920 (goto-char pos) nil))))
23922 (defun org-show-hidden-entry ()
23923 "Show an entry where even the heading is hidden."
23924 (save-excursion
23925 (org-show-entry)))
23927 (defun org-flag-heading (flag &optional entry)
23928 "Flag the current heading. FLAG non-nil means make invisible.
23929 When ENTRY is non-nil, show the entire entry."
23930 (save-excursion
23931 (org-back-to-heading t)
23932 ;; Check if we should show the entire entry
23933 (if entry
23934 (progn
23935 (org-show-entry)
23936 (save-excursion
23937 (and (outline-next-heading)
23938 (org-flag-heading nil))))
23939 (outline-flag-region (max (point-min) (1- (point)))
23940 (save-excursion (outline-end-of-heading) (point))
23941 flag))))
23943 (defun org-get-next-sibling ()
23944 "Move to next heading of the same level, and return point.
23945 If there is no such heading, return nil.
23946 This is like outline-next-sibling, but invisible headings are ok."
23947 (let ((level (funcall outline-level)))
23948 (outline-next-heading)
23949 (while (and (not (eobp)) (> (funcall outline-level) level))
23950 (outline-next-heading))
23951 (if (or (eobp) (< (funcall outline-level) level))
23953 (point))))
23955 (defun org-get-last-sibling ()
23956 "Move to previous heading of the same level, and return point.
23957 If there is no such heading, return nil."
23958 (let ((opoint (point))
23959 (level (funcall outline-level)))
23960 (outline-previous-heading)
23961 (when (and (/= (point) opoint) (outline-on-heading-p t))
23962 (while (and (> (funcall outline-level) level)
23963 (not (bobp)))
23964 (outline-previous-heading))
23965 (if (< (funcall outline-level) level)
23967 (point)))))
23969 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23970 "Goto to the end of a subtree."
23971 ;; This contains an exact copy of the original function, but it uses
23972 ;; `org-back-to-heading', to make it work also in invisible
23973 ;; trees. And is uses an invisible-ok argument.
23974 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23975 ;; Furthermore, when used inside Org, finding the end of a large subtree
23976 ;; with many children and grandchildren etc, this can be much faster
23977 ;; than the outline version.
23978 (org-back-to-heading invisible-ok)
23979 (let ((first t)
23980 (level (funcall outline-level)))
23981 (if (and (derived-mode-p 'org-mode) (< level 1000))
23982 ;; A true heading (not a plain list item), in Org-mode
23983 ;; This means we can easily find the end by looking
23984 ;; only for the right number of stars. Using a regexp to do
23985 ;; this is so much faster than using a Lisp loop.
23986 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23987 (forward-char 1)
23988 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23989 ;; something else, do it the slow way
23990 (while (and (not (eobp))
23991 (or first (> (funcall outline-level) level)))
23992 (setq first nil)
23993 (outline-next-heading)))
23994 (unless to-heading
23995 (if (memq (preceding-char) '(?\n ?\^M))
23996 (progn
23997 ;; Go to end of line before heading
23998 (forward-char -1)
23999 (if (memq (preceding-char) '(?\n ?\^M))
24000 ;; leave blank line before heading
24001 (forward-char -1))))))
24002 (point))
24004 (defun org-end-of-meta-data-and-drawers ()
24005 "Jump to the first text after meta data and drawers in the current entry.
24006 This will move over empty lines, lines with planning time stamps,
24007 clocking lines, and drawers."
24008 (org-back-to-heading t)
24009 (let ((end (save-excursion (outline-next-heading) (point)))
24010 (re (concat "\\(" org-drawer-regexp "\\)"
24011 "\\|" "[ \t]*" org-keyword-time-regexp)))
24012 (forward-line 1)
24013 (while (re-search-forward re end t)
24014 (if (not (match-end 1))
24015 ;; empty or planning line
24016 (forward-line 1)
24017 ;; a drawer, find the end
24018 (re-search-forward "^[ \t]*:END:" end 'move)
24019 (forward-line 1)))
24020 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
24021 (point)))
24023 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24024 "Move forward to the ARG'th subheading at same level as this one.
24025 Stop at the first and last subheadings of a superior heading.
24026 Normally this only looks at visible headings, but when INVISIBLE-OK is
24027 non-nil it will also look at invisible ones."
24028 (interactive "p")
24029 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24030 (if (and arg (< arg 0))
24031 (goto-char (point-min))
24032 (outline-next-heading))
24033 (org-at-heading-p)
24034 (let ((level (- (match-end 0) (match-beginning 0) 1))
24035 (f (if (and arg (< arg 0))
24036 're-search-backward
24037 're-search-forward))
24038 (count (if arg (abs arg) 1))
24039 (result (point)))
24040 (while (and (prog1 (> count 0)
24041 (forward-char (if (and arg (< arg 0)) -1 1)))
24042 (funcall f org-outline-regexp-bol nil 'move))
24043 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24044 (cond ((< l level) (setq count 0))
24045 ((and (= l level)
24046 (or invisible-ok
24047 (progn
24048 (goto-char (line-beginning-position))
24049 (not (outline-invisible-p)))))
24050 (setq count (1- count))
24051 (when (eq l level)
24052 (setq result (point)))))))
24053 (goto-char result))
24054 (beginning-of-line 1)))
24056 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24057 "Move backward to the ARG'th subheading at same level as this one.
24058 Stop at the first and last subheadings of a superior heading."
24059 (interactive "p")
24060 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24062 (defun org-next-block (arg &optional backward block-regexp)
24063 "Jump to the next block.
24064 With a prefix argument ARG, jump forward ARG many source blocks.
24065 When BACKWARD is non-nil, jump to the previous block.
24066 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24067 (interactive "p")
24068 (let ((re (or block-regexp org-block-regexp))
24069 (re-search-fn (or (and backward 're-search-backward)
24070 're-search-forward)))
24071 (if (looking-at re) (forward-char 1))
24072 (condition-case nil
24073 (funcall re-search-fn re nil nil arg)
24074 (error (user-error "No %s code blocks"
24075 (if backward "previous" "further" ))))
24076 (goto-char (match-beginning 0)) (org-show-context)))
24078 (defun org-previous-block (arg &optional block-regexp)
24079 "Jump to the previous block.
24080 With a prefix argument ARG, jump backward ARG many source blocks.
24081 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24082 (interactive "p")
24083 (org-next-block arg t block-regexp))
24085 (defun org-forward-paragraph ()
24086 "Move forward to beginning of next paragraph or equivalent.
24088 The function moves point to the beginning of the next visible
24089 structural element, which can be a paragraph, a table, a list
24090 item, etc. It also provides some special moves for convenience:
24092 - On an affiliated keyword, jump to the beginning of the
24093 relative element.
24094 - On an item or a footnote definition, move to the second
24095 element inside, if any.
24096 - On a table or a property drawer, jump after it.
24097 - On a verse or source block, stop after blank lines."
24098 (interactive)
24099 (when (eobp) (user-error "Cannot move further down"))
24100 (let* ((deactivate-mark nil)
24101 (element (org-element-at-point))
24102 (type (org-element-type element))
24103 (post-affiliated (org-element-property :post-affiliated element))
24104 (contents-begin (org-element-property :contents-begin element))
24105 (contents-end (org-element-property :contents-end element))
24106 (end (let ((end (org-element-property :end element)) (parent element))
24107 (while (and (setq parent (org-element-property :parent parent))
24108 (= (org-element-property :contents-end parent) end))
24109 (setq end (org-element-property :end parent)))
24110 end)))
24111 (cond ((not element)
24112 (skip-chars-forward " \r\t\n")
24113 (or (eobp) (beginning-of-line)))
24114 ;; On affiliated keywords, move to element's beginning.
24115 ((< (point) post-affiliated)
24116 (goto-char post-affiliated))
24117 ;; At a table row, move to the end of the table. Similarly,
24118 ;; at a node property, move to the end of the property
24119 ;; drawer.
24120 ((memq type '(node-property table-row))
24121 (goto-char (org-element-property
24122 :end (org-element-property :parent element))))
24123 ((memq type '(property-drawer table)) (goto-char end))
24124 ;; Consider blank lines as separators in verse and source
24125 ;; blocks to ease editing.
24126 ((memq type '(src-block verse-block))
24127 (when (eq type 'src-block)
24128 (setq contents-end
24129 (save-excursion (goto-char end)
24130 (skip-chars-backward " \r\t\n")
24131 (line-beginning-position))))
24132 (beginning-of-line)
24133 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24134 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24135 (goto-char end)
24136 (skip-chars-forward " \r\t\n")
24137 (if (= (point) contents-end) (goto-char end)
24138 (beginning-of-line))))
24139 ;; With no contents, just skip element.
24140 ((not contents-begin) (goto-char end))
24141 ;; If contents are invisible, skip the element altogether.
24142 ((outline-invisible-p (line-end-position))
24143 (case type
24144 (headline
24145 (org-with-limited-levels (outline-next-visible-heading 1)))
24146 ;; At a plain list, make sure we move to the next item
24147 ;; instead of skipping the whole list.
24148 (plain-list (forward-char)
24149 (org-forward-paragraph))
24150 (otherwise (goto-char end))))
24151 ((>= (point) contents-end) (goto-char end))
24152 ((>= (point) contents-begin)
24153 ;; This can only happen on paragraphs and plain lists.
24154 (case type
24155 (paragraph (goto-char end))
24156 ;; At a plain list, try to move to second element in
24157 ;; first item, if possible.
24158 (plain-list (end-of-line)
24159 (org-forward-paragraph))))
24160 ;; When contents start on the middle of a line (e.g. in
24161 ;; items and footnote definitions), try to reach first
24162 ;; element starting after current line.
24163 ((> (line-end-position) contents-begin)
24164 (end-of-line)
24165 (org-forward-paragraph))
24166 (t (goto-char contents-begin)))))
24168 (defun org-backward-paragraph ()
24169 "Move backward to start of previous paragraph or equivalent.
24171 The function moves point to the beginning of the current
24172 structural element, which can be a paragraph, a table, a list
24173 item, etc., or to the beginning of the previous visible one if
24174 point is already there. It also provides some special moves for
24175 convenience:
24177 - On an affiliated keyword, jump to the first one.
24178 - On a table or a property drawer, move to its beginning.
24179 - On a verse or source block, stop before blank lines."
24180 (interactive)
24181 (when (bobp) (user-error "Cannot move further up"))
24182 (let* ((deactivate-mark nil)
24183 (element (org-element-at-point))
24184 (type (org-element-type element))
24185 (contents-begin (org-element-property :contents-begin element))
24186 (contents-end (org-element-property :contents-end element))
24187 (post-affiliated (org-element-property :post-affiliated element))
24188 (begin (org-element-property :begin element)))
24189 (cond
24190 ((not element) (goto-char (point-min)))
24191 ((= (point) begin)
24192 (backward-char)
24193 (org-backward-paragraph))
24194 ((<= (point) post-affiliated) (goto-char begin))
24195 ((memq type '(node-property table-row))
24196 (goto-char (org-element-property
24197 :post-affiliated (org-element-property :parent element))))
24198 ((memq type '(property-drawer table)) (goto-char begin))
24199 ((memq type '(src-block verse-block))
24200 (when (eq type 'src-block)
24201 (setq contents-begin
24202 (save-excursion (goto-char begin) (forward-line) (point))))
24203 (if (= (point) contents-begin) (goto-char post-affiliated)
24204 ;; Inside a verse block, see blank lines as paragraph
24205 ;; separators.
24206 (let ((origin (point)))
24207 (skip-chars-backward " \r\t\n" contents-begin)
24208 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24209 (skip-chars-forward " \r\t\n" origin)
24210 (if (= (point) origin) (goto-char contents-begin)
24211 (beginning-of-line))))))
24212 ((not contents-begin) (goto-char (or post-affiliated begin)))
24213 ((eq type 'paragraph)
24214 (goto-char contents-begin)
24215 ;; When at first paragraph in an item or a footnote definition,
24216 ;; move directly to beginning of line.
24217 (let ((parent-contents
24218 (org-element-property
24219 :contents-begin (org-element-property :parent element))))
24220 (when (and parent-contents (= parent-contents contents-begin))
24221 (beginning-of-line))))
24222 ;; At the end of a greater element, move to the beginning of the
24223 ;; last element within.
24224 ((>= (point) contents-end)
24225 (goto-char (1- contents-end))
24226 (org-backward-paragraph))
24227 (t (goto-char (or post-affiliated begin))))
24228 ;; Ensure we never leave point invisible.
24229 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24231 (defun org-forward-element ()
24232 "Move forward by one element.
24233 Move to the next element at the same level, when possible."
24234 (interactive)
24235 (cond ((eobp) (user-error "Cannot move further down"))
24236 ((org-with-limited-levels (org-at-heading-p))
24237 (let ((origin (point)))
24238 (goto-char (org-end-of-subtree nil t))
24239 (unless (org-with-limited-levels (org-at-heading-p))
24240 (goto-char origin)
24241 (user-error "Cannot move further down"))))
24243 (let* ((elem (org-element-at-point))
24244 (end (org-element-property :end elem))
24245 (parent (org-element-property :parent elem)))
24246 (cond ((and parent (= (org-element-property :contents-end parent) end))
24247 (goto-char (org-element-property :end parent)))
24248 ((integer-or-marker-p end) (goto-char end))
24249 (t (message "No element at point")))))))
24251 (defun org-backward-element ()
24252 "Move backward by one element.
24253 Move to the previous element at the same level, when possible."
24254 (interactive)
24255 (cond ((bobp) (user-error "Cannot move further up"))
24256 ((org-with-limited-levels (org-at-heading-p))
24257 ;; At a headline, move to the previous one, if any, or stay
24258 ;; here.
24259 (let ((origin (point)))
24260 (org-with-limited-levels (org-backward-heading-same-level 1))
24261 ;; When current headline has no sibling above, move to its
24262 ;; parent.
24263 (when (= (point) origin)
24264 (or (org-with-limited-levels (org-up-heading-safe))
24265 (progn (goto-char origin)
24266 (user-error "Cannot move further up"))))))
24268 (let* ((elem (org-element-at-point))
24269 (beg (org-element-property :begin elem)))
24270 (cond
24271 ;; Move to beginning of current element if point isn't
24272 ;; there already.
24273 ((null beg) (message "No element at point"))
24274 ((/= (point) beg) (goto-char beg))
24275 (t (goto-char beg)
24276 (skip-chars-backward " \r\t\n")
24277 (unless (bobp)
24278 (let ((prev (org-element-at-point)))
24279 (goto-char (org-element-property :begin prev))
24280 (while (and (setq prev (org-element-property :parent prev))
24281 (<= (org-element-property :end prev) beg))
24282 (goto-char (org-element-property :begin prev)))))))))))
24284 (defun org-up-element ()
24285 "Move to upper element."
24286 (interactive)
24287 (if (org-with-limited-levels (org-at-heading-p))
24288 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24289 (let* ((elem (org-element-at-point))
24290 (parent (org-element-property :parent elem)))
24291 (if parent (goto-char (org-element-property :begin parent))
24292 (if (org-with-limited-levels (org-before-first-heading-p))
24293 (user-error "No surrounding element")
24294 (org-with-limited-levels (org-back-to-heading)))))))
24296 (defvar org-element-greater-elements)
24297 (defun org-down-element ()
24298 "Move to inner element."
24299 (interactive)
24300 (let ((element (org-element-at-point)))
24301 (cond
24302 ((memq (org-element-type element) '(plain-list table))
24303 (goto-char (org-element-property :contents-begin element))
24304 (forward-char))
24305 ((memq (org-element-type element) org-element-greater-elements)
24306 ;; If contents are hidden, first disclose them.
24307 (when (outline-invisible-p (line-end-position)) (org-cycle))
24308 (goto-char (or (org-element-property :contents-begin element)
24309 (user-error "No content for this element"))))
24310 (t (user-error "No inner element")))))
24312 (defun org-drag-element-backward ()
24313 "Move backward element at point."
24314 (interactive)
24315 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24316 (let* ((elem (org-element-at-point))
24317 (prev-elem
24318 (save-excursion
24319 (goto-char (org-element-property :begin elem))
24320 (skip-chars-backward " \r\t\n")
24321 (unless (bobp)
24322 (let* ((beg (org-element-property :begin elem))
24323 (prev (org-element-at-point))
24324 (up prev))
24325 (while (and (setq up (org-element-property :parent up))
24326 (<= (org-element-property :end up) beg))
24327 (setq prev up))
24328 prev)))))
24329 ;; Error out if no previous element or previous element is
24330 ;; a parent of the current one.
24331 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24332 (user-error "Cannot drag element backward")
24333 (let ((pos (point)))
24334 (org-element-swap-A-B prev-elem elem)
24335 (goto-char (+ (org-element-property :begin prev-elem)
24336 (- pos (org-element-property :begin elem)))))))))
24338 (defun org-drag-element-forward ()
24339 "Move forward element at point."
24340 (interactive)
24341 (let* ((pos (point))
24342 (elem (org-element-at-point)))
24343 (when (= (point-max) (org-element-property :end elem))
24344 (user-error "Cannot drag element forward"))
24345 (goto-char (org-element-property :end elem))
24346 (let ((next-elem (org-element-at-point)))
24347 (when (or (org-element-nested-p elem next-elem)
24348 (and (eq (org-element-type next-elem) 'headline)
24349 (not (eq (org-element-type elem) 'headline))))
24350 (goto-char pos)
24351 (user-error "Cannot drag element forward"))
24352 ;; Compute new position of point: it's shifted by NEXT-ELEM
24353 ;; body's length (without final blanks) and by the length of
24354 ;; blanks between ELEM and NEXT-ELEM.
24355 (let ((size-next (- (save-excursion
24356 (goto-char (org-element-property :end next-elem))
24357 (skip-chars-backward " \r\t\n")
24358 (forward-line)
24359 ;; Small correction if buffer doesn't end
24360 ;; with a newline character.
24361 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24362 (org-element-property :begin next-elem)))
24363 (size-blank (- (org-element-property :end elem)
24364 (save-excursion
24365 (goto-char (org-element-property :end elem))
24366 (skip-chars-backward " \r\t\n")
24367 (forward-line)
24368 (point)))))
24369 (org-element-swap-A-B elem next-elem)
24370 (goto-char (+ pos size-next size-blank))))))
24372 (defun org-drag-line-forward (arg)
24373 "Drag the line at point ARG lines forward."
24374 (interactive "p")
24375 (dotimes (n (abs arg))
24376 (let ((c (current-column)))
24377 (if (< 0 arg)
24378 (progn
24379 (beginning-of-line 2)
24380 (transpose-lines 1)
24381 (beginning-of-line 0))
24382 (transpose-lines 1)
24383 (beginning-of-line -1))
24384 (org-move-to-column c))))
24386 (defun org-drag-line-backward (arg)
24387 "Drag the line at point ARG lines backward."
24388 (interactive "p")
24389 (org-drag-line-forward (- arg)))
24391 (defun org-mark-element ()
24392 "Put point at beginning of this element, mark at end.
24394 Interactively, if this command is repeated or (in Transient Mark
24395 mode) if the mark is active, it marks the next element after the
24396 ones already marked."
24397 (interactive)
24398 (let (deactivate-mark)
24399 (if (and (org-called-interactively-p 'any)
24400 (or (and (eq last-command this-command) (mark t))
24401 (and transient-mark-mode mark-active)))
24402 (set-mark
24403 (save-excursion
24404 (goto-char (mark))
24405 (goto-char (org-element-property :end (org-element-at-point)))))
24406 (let ((element (org-element-at-point)))
24407 (end-of-line)
24408 (push-mark (org-element-property :end element) t t)
24409 (goto-char (org-element-property :begin element))))))
24411 (defun org-narrow-to-element ()
24412 "Narrow buffer to current element."
24413 (interactive)
24414 (let ((elem (org-element-at-point)))
24415 (cond
24416 ((eq (car elem) 'headline)
24417 (narrow-to-region
24418 (org-element-property :begin elem)
24419 (org-element-property :end elem)))
24420 ((memq (car elem) org-element-greater-elements)
24421 (narrow-to-region
24422 (org-element-property :contents-begin elem)
24423 (org-element-property :contents-end elem)))
24425 (narrow-to-region
24426 (org-element-property :begin elem)
24427 (org-element-property :end elem))))))
24429 (defun org-transpose-element ()
24430 "Transpose current and previous elements, keeping blank lines between.
24431 Point is moved after both elements."
24432 (interactive)
24433 (org-skip-whitespace)
24434 (let ((end (org-element-property :end (org-element-at-point))))
24435 (org-drag-element-backward)
24436 (goto-char end)))
24438 (defun org-unindent-buffer ()
24439 "Un-indent the visible part of the buffer.
24440 Relative indentation (between items, inside blocks, etc.) isn't
24441 modified."
24442 (interactive)
24443 (unless (eq major-mode 'org-mode)
24444 (user-error "Cannot un-indent a buffer not in Org mode"))
24445 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24446 unindent-tree ; For byte-compiler.
24447 (unindent-tree
24448 (function
24449 (lambda (contents)
24450 (mapc
24451 (lambda (element)
24452 (if (memq (org-element-type element) '(headline section))
24453 (funcall unindent-tree (org-element-contents element))
24454 (save-excursion
24455 (save-restriction
24456 (narrow-to-region
24457 (org-element-property :begin element)
24458 (org-element-property :end element))
24459 (org-do-remove-indentation)))))
24460 (reverse contents))))))
24461 (funcall unindent-tree (org-element-contents parse-tree))))
24463 (defun org-show-subtree ()
24464 "Show everything after this heading at deeper levels."
24465 (interactive)
24466 (outline-flag-region
24467 (point)
24468 (save-excursion
24469 (org-end-of-subtree t t))
24470 nil))
24472 (defun org-show-entry ()
24473 "Show the body directly following this heading.
24474 Show the heading too, if it is currently invisible."
24475 (interactive)
24476 (save-excursion
24477 (ignore-errors
24478 (org-back-to-heading t)
24479 (outline-flag-region
24480 (max (point-min) (1- (point)))
24481 (save-excursion
24482 (if (re-search-forward
24483 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24484 (match-beginning 1)
24485 (point-max)))
24486 nil)
24487 (org-cycle-hide-drawers 'children))))
24489 (defun org-make-options-regexp (kwds &optional extra)
24490 "Make a regular expression for keyword lines.
24491 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24492 when non-nil, is a regexp matching keywords names."
24493 (concat "^[ \t]*#\\+\\("
24494 (regexp-opt kwds)
24495 (and extra (concat (and kwds "\\|") extra))
24496 "\\):[ \t]*\\(.*\\)"))
24498 ;; Make isearch reveal the necessary context
24499 (defun org-isearch-end ()
24500 "Reveal context after isearch exits."
24501 (when isearch-success ; only if search was successful
24502 (if (featurep 'xemacs)
24503 ;; Under XEmacs, the hook is run in the correct place,
24504 ;; we directly show the context.
24505 (org-show-context 'isearch)
24506 ;; In Emacs the hook runs *before* restoring the overlays.
24507 ;; So we have to use a one-time post-command-hook to do this.
24508 ;; (Emacs 22 has a special variable, see function `org-mode')
24509 (unless (and (boundp 'isearch-mode-end-hook-quit)
24510 isearch-mode-end-hook-quit)
24511 ;; Only when the isearch was not quitted.
24512 (org-add-hook 'post-command-hook 'org-isearch-post-command
24513 'append 'local)))))
24515 (defun org-isearch-post-command ()
24516 "Remove self from hook, and show context."
24517 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24518 (org-show-context 'isearch))
24521 ;;;; Integration with and fixes for other packages
24523 ;;; Imenu support
24525 (defvar org-imenu-markers nil
24526 "All markers currently used by Imenu.")
24527 (make-variable-buffer-local 'org-imenu-markers)
24529 (defun org-imenu-new-marker (&optional pos)
24530 "Return a new marker for use by Imenu, and remember the marker."
24531 (let ((m (make-marker)))
24532 (move-marker m (or pos (point)))
24533 (push m org-imenu-markers)
24536 (defun org-imenu-get-tree ()
24537 "Produce the index for Imenu."
24538 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24539 (setq org-imenu-markers nil)
24540 (let* ((n org-imenu-depth)
24541 (re (concat "^" (org-get-limited-outline-regexp)))
24542 (subs (make-vector (1+ n) nil))
24543 (last-level 0)
24544 m level head0 head)
24545 (save-excursion
24546 (save-restriction
24547 (widen)
24548 (goto-char (point-max))
24549 (while (re-search-backward re nil t)
24550 (setq level (org-reduced-level (funcall outline-level)))
24551 (when (and (<= level n)
24552 (looking-at org-complex-heading-regexp)
24553 (setq head0 (org-match-string-no-properties 4)))
24554 (setq head (org-link-display-format head0)
24555 m (org-imenu-new-marker))
24556 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24557 (if (>= level last-level)
24558 (push (cons head m) (aref subs level))
24559 (push (cons head (aref subs (1+ level))) (aref subs level))
24560 (loop for i from (1+ level) to n do (aset subs i nil)))
24561 (setq last-level level)))))
24562 (aref subs 1)))
24564 (eval-after-load "imenu"
24565 '(progn
24566 (add-hook 'imenu-after-jump-hook
24567 (lambda ()
24568 (if (derived-mode-p 'org-mode)
24569 (org-show-context 'org-goto))))))
24571 (defun org-link-display-format (link)
24572 "Replace a link with its the description.
24573 If there is no description, use the link target."
24574 (save-match-data
24575 (if (string-match org-bracket-link-analytic-regexp link)
24576 (replace-match (if (match-end 5)
24577 (match-string 5 link)
24578 (concat (match-string 1 link)
24579 (match-string 3 link)))
24580 nil t link)
24581 link)))
24583 (defun org-toggle-link-display ()
24584 "Toggle the literal or descriptive display of links."
24585 (interactive)
24586 (if org-descriptive-links
24587 (progn (org-remove-from-invisibility-spec '(org-link))
24588 (org-restart-font-lock)
24589 (setq org-descriptive-links nil))
24590 (progn (add-to-invisibility-spec '(org-link))
24591 (org-restart-font-lock)
24592 (setq org-descriptive-links t))))
24594 ;; Speedbar support
24596 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24597 "Overlay marking the agenda restriction line in speedbar.")
24598 (overlay-put org-speedbar-restriction-lock-overlay
24599 'face 'org-agenda-restriction-lock)
24600 (overlay-put org-speedbar-restriction-lock-overlay
24601 'help-echo "Agendas are currently limited to this item.")
24602 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24604 (defun org-speedbar-set-agenda-restriction ()
24605 "Restrict future agenda commands to the location at point in speedbar.
24606 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24607 (interactive)
24608 (require 'org-agenda)
24609 (let (p m tp np dir txt)
24610 (cond
24611 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24612 'org-imenu t))
24613 (setq m (get-text-property p 'org-imenu-marker))
24614 (with-current-buffer (marker-buffer m)
24615 (goto-char m)
24616 (org-agenda-set-restriction-lock 'subtree)))
24617 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24618 'speedbar-function 'speedbar-find-file))
24619 (setq tp (previous-single-property-change
24620 (1+ p) 'speedbar-function)
24621 np (next-single-property-change
24622 tp 'speedbar-function)
24623 dir (speedbar-line-directory)
24624 txt (buffer-substring-no-properties (or tp (point-min))
24625 (or np (point-max))))
24626 (with-current-buffer (find-file-noselect
24627 (let ((default-directory dir))
24628 (expand-file-name txt)))
24629 (unless (derived-mode-p 'org-mode)
24630 (user-error "Cannot restrict to non-Org-mode file"))
24631 (org-agenda-set-restriction-lock 'file)))
24632 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24633 (move-overlay org-speedbar-restriction-lock-overlay
24634 (point-at-bol) (point-at-eol))
24635 (setq current-prefix-arg nil)
24636 (org-agenda-maybe-redo)))
24638 (defvar speedbar-file-key-map)
24639 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24640 (eval-after-load "speedbar"
24641 '(progn
24642 (speedbar-add-supported-extension ".org")
24643 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24644 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24645 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24646 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24647 (add-hook 'speedbar-visiting-tag-hook
24648 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24650 ;;; Fixes and Hacks for problems with other packages
24652 (defun org--flyspell-object-check-p (element)
24653 "Non-nil when Flyspell can check object at point.
24654 ELEMENT is the element at point."
24655 (let ((object (save-excursion
24656 (when (org-looking-at-p "\\>") (backward-char))
24657 (org-element-context element))))
24658 (case (org-element-type object)
24659 ;; Prevent checks in links due to keybinding conflict with
24660 ;; Flyspell.
24661 ((code entity export-snippet inline-babel-call
24662 inline-src-block line-break latex-fragment link macro
24663 statistics-cookie target timestamp verbatim)
24664 nil)
24665 (footnote-reference
24666 ;; Only in inline footnotes, within the definition.
24667 (and (eq (org-element-property :type object) 'inline)
24668 (< (save-excursion
24669 (goto-char (org-element-property :begin object))
24670 (search-forward ":" nil t 2))
24671 (point))))
24672 (otherwise t))))
24674 (defun org-mode-flyspell-verify ()
24675 "Function used for `flyspell-generic-check-word-predicate'."
24676 (if (org-at-heading-p)
24677 ;; At a headline or an inlinetask, check title only. This is
24678 ;; faster than relying on `org-element-at-point'.
24679 (and (save-excursion (beginning-of-line)
24680 (and (let ((case-fold-search t))
24681 (not (looking-at "\\*+ END[ \t]*$")))
24682 (looking-at org-complex-heading-regexp)))
24683 (match-beginning 4)
24684 (>= (point) (match-beginning 4))
24685 (or (not (match-beginning 5))
24686 (< (point) (match-beginning 5))))
24687 (let* ((element (org-element-at-point))
24688 (post-affiliated (org-element-property :post-affiliated element)))
24689 (cond
24690 ;; Ignore checks in all affiliated keywords but captions.
24691 ((< (point) post-affiliated)
24692 (and (save-excursion
24693 (beginning-of-line)
24694 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24695 (> (point) (match-end 0))
24696 (org--flyspell-object-check-p element)))
24697 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24698 ((and org-log-into-drawer
24699 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24700 (parent element))
24701 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24702 (setq parent (org-element-property :parent parent)))
24703 (and parent
24704 (eq (compare-strings
24705 log nil nil
24706 (org-element-property :drawer-name parent) nil nil t)
24707 t))))
24708 nil)
24710 (case (org-element-type element)
24711 ((comment quote-section) t)
24712 (comment-block
24713 ;; Allow checks between block markers, not on them.
24714 (and (> (line-beginning-position) post-affiliated)
24715 (save-excursion
24716 (end-of-line)
24717 (skip-chars-forward " \r\t\n")
24718 (< (point) (org-element-property :end element)))))
24719 ;; Arbitrary list of keywords where checks are meaningful.
24720 ;; Make sure point is on the value part of the element.
24721 (keyword
24722 (and (member (org-element-property :key element)
24723 '("DESCRIPTION" "TITLE"))
24724 (< (save-excursion
24725 (beginning-of-line) (search-forward ":") (point))
24726 (point))))
24727 ;; Check is globally allowed in paragraphs verse blocks and
24728 ;; table rows (after affiliated keywords) but some objects
24729 ;; must not be affected.
24730 ((paragraph table-row verse-block)
24731 (let ((cbeg (org-element-property :contents-begin element))
24732 (cend (org-element-property :contents-end element)))
24733 (and cbeg (>= (point) cbeg) (< (point) cend)
24734 (org--flyspell-object-check-p element))))))))))
24735 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24737 (defun org-remove-flyspell-overlays-in (beg end)
24738 "Remove flyspell overlays in region."
24739 (and (org-bound-and-true-p flyspell-mode)
24740 (fboundp 'flyspell-delete-region-overlays)
24741 (flyspell-delete-region-overlays beg end)))
24743 (defvar flyspell-delayed-commands)
24744 (eval-after-load "flyspell"
24745 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24747 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24748 (eval-after-load "bookmark"
24749 '(if (boundp 'bookmark-after-jump-hook)
24750 ;; We can use the hook
24751 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24752 ;; Hook not available, use advice
24753 (defadvice bookmark-jump (after org-make-visible activate)
24754 "Make the position visible."
24755 (org-bookmark-jump-unhide))))
24757 ;; Make sure saveplace shows the location if it was hidden
24758 (eval-after-load "saveplace"
24759 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24760 "Make the position visible."
24761 (org-bookmark-jump-unhide)))
24763 ;; Make sure ecb shows the location if it was hidden
24764 (eval-after-load "ecb"
24765 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24766 "Make hierarchy visible when jumping into location from ECB tree buffer."
24767 (if (derived-mode-p 'org-mode)
24768 (org-show-context))))
24770 (defun org-bookmark-jump-unhide ()
24771 "Unhide the current position, to show the bookmark location."
24772 (and (derived-mode-p 'org-mode)
24773 (or (outline-invisible-p)
24774 (save-excursion (goto-char (max (point-min) (1- (point))))
24775 (outline-invisible-p)))
24776 (org-show-context 'bookmark-jump)))
24778 (defun org-mark-jump-unhide ()
24779 "Make the point visible with `org-show-context' after jumping to the mark."
24780 (when (and (derived-mode-p 'org-mode)
24781 (outline-invisible-p))
24782 (org-show-context 'mark-goto)))
24784 (eval-after-load "simple"
24785 '(defadvice pop-to-mark-command (after org-make-visible activate)
24786 "Make the point visible with `org-show-context'."
24787 (org-mark-jump-unhide)))
24789 (eval-after-load "simple"
24790 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24791 "Make the point visible with `org-show-context'."
24792 (org-mark-jump-unhide)))
24794 (eval-after-load "simple"
24795 '(defadvice pop-global-mark (after org-make-visible activate)
24796 "Make the point visible with `org-show-context'."
24797 (org-mark-jump-unhide)))
24799 ;; Make session.el ignore our circular variable
24800 (defvar session-globals-exclude)
24801 (eval-after-load "session"
24802 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24804 ;;;; Finish up
24806 (provide 'org)
24808 (run-hooks 'org-load-hook)
24810 ;;; org.el ends here